* Combines the base url with version and the relative url * @method enrichUrl * @memberof StreamClient.prototype * @private * @param {string} relativeUrl * @param {string} [serviceName] * @return {string}
(relativeUrl: string, serviceName?: string)
| 532 | * @return {string} |
| 533 | */ |
| 534 | enrichUrl(relativeUrl: string, serviceName?: string) { |
| 535 | return `${this.getBaseUrl(serviceName)}${this.version}/${relativeUrl}`; |
| 536 | } |
| 537 | |
| 538 | replaceReactionOptions = (options: { |
| 539 | rankingVars?: string | Record<string, string | number>; |
no test coverage detected