@teemill/platform 0.68.0 → 0.70.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.68.0
7
+ * The version of the OpenAPI document: 0.70.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -126,8 +126,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration)
126
126
  // verify required parameter 'conciergeCandidateId' is not null or undefined
127
127
  assertParamExists('approveConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
128
128
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}/approve`
129
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
130
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
129
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
130
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
131
131
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
132
132
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
133
133
  let baseOptions;
@@ -171,8 +171,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration)
171
171
  // verify required parameter 'conciergeCandidateId' is not null or undefined
172
172
  assertParamExists('deleteConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
173
173
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
174
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
175
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
174
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
175
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
176
176
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
177
177
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
178
178
  let baseOptions;
@@ -199,6 +199,52 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration)
199
199
  options: localVarRequestOptions,
200
200
  };
201
201
  }),
202
+ /**
203
+ * Exclude an email domain from concierge candidates. This will prevent new concierge candidates being created if they have an email address that contains this domain.
204
+ * @summary Exclude an email domain from concierge candidates
205
+ * @param {string} project Project unique identifier
206
+ * @param {string} platformId The platform identifier
207
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
208
+ * @param {*} [options] Override http request option.
209
+ * @throws {RequiredError}
210
+ */
211
+ excludeEmailDomain: (project_1, platformId_1, excludeEmailDomainRequest_1, ...args_1) => __awaiter(this, [project_1, platformId_1, excludeEmailDomainRequest_1, ...args_1], void 0, function* (project, platformId, excludeEmailDomainRequest, options = {}) {
212
+ // verify required parameter 'project' is not null or undefined
213
+ assertParamExists('excludeEmailDomain', 'project', project);
214
+ // verify required parameter 'platformId' is not null or undefined
215
+ assertParamExists('excludeEmailDomain', 'platformId', platformId);
216
+ // verify required parameter 'excludeEmailDomainRequest' is not null or undefined
217
+ assertParamExists('excludeEmailDomain', 'excludeEmailDomainRequest', excludeEmailDomainRequest);
218
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates/exclude-email-domains`
219
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
220
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
221
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
222
+ let baseOptions;
223
+ if (configuration) {
224
+ baseOptions = configuration.baseOptions;
225
+ }
226
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
227
+ const localVarHeaderParameter = {};
228
+ const localVarQueryParameter = {};
229
+ // authentication session-oauth required
230
+ // oauth required
231
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
232
+ // authentication api-key required
233
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
234
+ if (project !== undefined) {
235
+ localVarQueryParameter['project'] = project;
236
+ }
237
+ localVarHeaderParameter['Content-Type'] = 'application/json';
238
+ localVarHeaderParameter['Accept'] = 'application/json';
239
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
240
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
241
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
242
+ localVarRequestOptions.data = serializeDataIfNeeded(excludeEmailDomainRequest, localVarRequestOptions, configuration);
243
+ return {
244
+ url: toPathString(localVarUrlObj),
245
+ options: localVarRequestOptions,
246
+ };
247
+ }),
202
248
  /**
203
249
  * Get a concierge candidate by a given concierge candidate ID.
204
250
  * @summary Get concierge candidate
@@ -216,8 +262,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration)
216
262
  // verify required parameter 'conciergeCandidateId' is not null or undefined
217
263
  assertParamExists('getConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
218
264
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
219
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
220
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
265
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
266
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
221
267
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
222
268
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
223
269
  let baseOptions;
@@ -261,7 +307,7 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration)
261
307
  // verify required parameter 'platformId' is not null or undefined
262
308
  assertParamExists('listConciergeCandidates', 'platformId', platformId);
263
309
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates`
264
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
310
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
265
311
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
266
312
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
267
313
  let baseOptions;
@@ -341,6 +387,24 @@ export const ConciergeCandidatesApiFp = function (configuration) {
341
387
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
342
388
  });
343
389
  },
390
+ /**
391
+ * Exclude an email domain from concierge candidates. This will prevent new concierge candidates being created if they have an email address that contains this domain.
392
+ * @summary Exclude an email domain from concierge candidates
393
+ * @param {string} project Project unique identifier
394
+ * @param {string} platformId The platform identifier
395
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
396
+ * @param {*} [options] Override http request option.
397
+ * @throws {RequiredError}
398
+ */
399
+ excludeEmailDomain(project, platformId, excludeEmailDomainRequest, options) {
400
+ return __awaiter(this, void 0, void 0, function* () {
401
+ var _a, _b, _c;
402
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.excludeEmailDomain(project, platformId, excludeEmailDomainRequest, options);
403
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
404
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ConciergeCandidatesApi.excludeEmailDomain']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
405
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
406
+ });
407
+ },
344
408
  /**
345
409
  * Get a concierge candidate by a given concierge candidate ID.
346
410
  * @summary Get concierge candidate
@@ -407,6 +471,16 @@ export const ConciergeCandidatesApiFactory = function (configuration, basePath,
407
471
  deleteConciergeCandidate(requestParameters, options) {
408
472
  return localVarFp.deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(axios, basePath));
409
473
  },
474
+ /**
475
+ * Exclude an email domain from concierge candidates. This will prevent new concierge candidates being created if they have an email address that contains this domain.
476
+ * @summary Exclude an email domain from concierge candidates
477
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
478
+ * @param {*} [options] Override http request option.
479
+ * @throws {RequiredError}
480
+ */
481
+ excludeEmailDomain(requestParameters, options) {
482
+ return localVarFp.excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(axios, basePath));
483
+ },
410
484
  /**
411
485
  * Get a concierge candidate by a given concierge candidate ID.
412
486
  * @summary Get concierge candidate
@@ -453,6 +527,16 @@ export class ConciergeCandidatesApi extends BaseAPI {
453
527
  deleteConciergeCandidate(requestParameters, options) {
454
528
  return ConciergeCandidatesApiFp(this.configuration).deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(this.axios, this.basePath));
455
529
  }
530
+ /**
531
+ * Exclude an email domain from concierge candidates. This will prevent new concierge candidates being created if they have an email address that contains this domain.
532
+ * @summary Exclude an email domain from concierge candidates
533
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
534
+ * @param {*} [options] Override http request option.
535
+ * @throws {RequiredError}
536
+ */
537
+ excludeEmailDomain(requestParameters, options) {
538
+ return ConciergeCandidatesApiFp(this.configuration).excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(this.axios, this.basePath));
539
+ }
456
540
  /**
457
541
  * Get a concierge candidate by a given concierge candidate ID.
458
542
  * @summary Get concierge candidate
@@ -496,8 +580,8 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
496
580
  // verify required parameter 'customerId' is not null or undefined
497
581
  assertParamExists('createCustomerChatChannel', 'customerId', customerId);
498
582
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/chat-channel`
499
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
500
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
583
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
584
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
501
585
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
502
586
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
503
587
  let baseOptions;
@@ -541,8 +625,8 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
541
625
  // verify required parameter 'customerId' is not null or undefined
542
626
  assertParamExists('createCustomerDataDeletionRequest', 'customerId', customerId);
543
627
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
544
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
545
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
628
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
629
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
546
630
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
547
631
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
548
632
  let baseOptions;
@@ -599,7 +683,7 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
599
683
  // verify required parameter 'platformId' is not null or undefined
600
684
  assertParamExists('exportCustomers', 'platformId', platformId);
601
685
  const localVarPath = `/v1/platform/{platformId}/customers/export`
602
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
686
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
603
687
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
604
688
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
605
689
  let baseOptions;
@@ -693,8 +777,8 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
693
777
  // verify required parameter 'customerId' is not null or undefined
694
778
  assertParamExists('getCustomer', 'customerId', customerId);
695
779
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
696
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
697
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
780
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
781
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
698
782
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
699
783
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
700
784
  let baseOptions;
@@ -738,8 +822,8 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
738
822
  // verify required parameter 'customerId' is not null or undefined
739
823
  assertParamExists('getCustomerDataDeletionRequest', 'customerId', customerId);
740
824
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
741
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
742
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
825
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
826
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
743
827
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
744
828
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
745
829
  let baseOptions;
@@ -783,7 +867,7 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
783
867
  // verify required parameter 'platformId' is not null or undefined
784
868
  assertParamExists('listCustomerTags', 'platformId', platformId);
785
869
  const localVarPath = `/v1/platform/{platformId}/customers/tags`
786
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
870
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
787
871
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
788
872
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
789
873
  let baseOptions;
@@ -852,7 +936,7 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
852
936
  // verify required parameter 'platformId' is not null or undefined
853
937
  assertParamExists('listCustomers', 'platformId', platformId);
854
938
  const localVarPath = `/v1/platform/{platformId}/customers`
855
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
939
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
856
940
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
857
941
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
858
942
  let baseOptions;
@@ -956,8 +1040,8 @@ export const CustomersApiAxiosParamCreator = function (configuration) {
956
1040
  // verify required parameter 'customerId' is not null or undefined
957
1041
  assertParamExists('updateCustomer', 'customerId', customerId);
958
1042
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
959
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
960
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
1043
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1044
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
961
1045
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
962
1046
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
963
1047
  let baseOptions;
@@ -1400,7 +1484,7 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
1400
1484
  // verify required parameter 'platformId' is not null or undefined
1401
1485
  assertParamExists('getDashboard', 'platformId', platformId);
1402
1486
  const localVarPath = `/v1/platform/{platformId}/dashboard`
1403
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1487
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1404
1488
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1405
1489
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1406
1490
  let baseOptions;
@@ -1444,7 +1528,7 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
1444
1528
  // verify required parameter 'saveDashboardRequest' is not null or undefined
1445
1529
  assertParamExists('saveDashboard', 'saveDashboardRequest', saveDashboardRequest);
1446
1530
  const localVarPath = `/v1/platform/{platformId}/dashboard`
1447
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1531
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1448
1532
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1449
1533
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1450
1534
  let baseOptions;
@@ -1593,8 +1677,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration) {
1593
1677
  // verify required parameter 'enquiryId' is not null or undefined
1594
1678
  assertParamExists('createCustomerEnquiryChatChannel', 'enquiryId', enquiryId);
1595
1679
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel`
1596
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1597
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1680
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1681
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1598
1682
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1599
1683
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1600
1684
  let baseOptions;
@@ -1638,8 +1722,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration) {
1638
1722
  // verify required parameter 'enquiryId' is not null or undefined
1639
1723
  assertParamExists('getCustomerEnquiry', 'enquiryId', enquiryId);
1640
1724
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
1641
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1642
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1725
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1726
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1643
1727
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1644
1728
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1645
1729
  let baseOptions;
@@ -1685,7 +1769,7 @@ export const EnquiriesApiAxiosParamCreator = function (configuration) {
1685
1769
  // verify required parameter 'platformId' is not null or undefined
1686
1770
  assertParamExists('listCustomerEnquiries', 'platformId', platformId);
1687
1771
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries`
1688
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1772
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1689
1773
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1690
1774
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1691
1775
  let baseOptions;
@@ -1748,8 +1832,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration) {
1748
1832
  // verify required parameter 'enquiryId' is not null or undefined
1749
1833
  assertParamExists('listCustomerEnquiryLogs', 'enquiryId', enquiryId);
1750
1834
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs`
1751
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1752
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1835
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1836
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1753
1837
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1754
1838
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1755
1839
  let baseOptions;
@@ -1796,8 +1880,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration) {
1796
1880
  // verify required parameter 'updateCustomerEnquiryRequest' is not null or undefined
1797
1881
  assertParamExists('updateCustomerEnquiry', 'updateCustomerEnquiryRequest', updateCustomerEnquiryRequest);
1798
1882
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
1799
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1800
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1883
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1884
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1801
1885
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1802
1886
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1803
1887
  let baseOptions;
@@ -2064,7 +2148,7 @@ export const ModerationApiAxiosParamCreator = function (configuration) {
2064
2148
  // verify required parameter 'moderationItemId' is not null or undefined
2065
2149
  assertParamExists('updateModerationItem', 'moderationItemId', moderationItemId);
2066
2150
  const localVarPath = `/v1/platform/moderate/{moderationItemId}`
2067
- .replace(`{${"moderationItemId"}}`, encodeURIComponent(String(moderationItemId)));
2151
+ .replace('{moderationItemId}', encodeURIComponent(String(moderationItemId)));
2068
2152
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2069
2153
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2070
2154
  let baseOptions;
@@ -2179,8 +2263,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2179
2263
  // verify required parameter 'amendOrderRequest' is not null or undefined
2180
2264
  assertParamExists('amendOrder', 'amendOrderRequest', amendOrderRequest);
2181
2265
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/amend`
2182
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2183
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2266
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2267
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2184
2268
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2185
2269
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2186
2270
  let baseOptions;
@@ -2229,8 +2313,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2229
2313
  // verify required parameter 'confirmOrderRequest' is not null or undefined
2230
2314
  assertParamExists('confirmOrder', 'confirmOrderRequest', confirmOrderRequest);
2231
2315
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/confirm`
2232
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2233
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2316
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2317
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2234
2318
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2235
2319
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2236
2320
  let baseOptions;
@@ -2276,7 +2360,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2276
2360
  // verify required parameter 'createOrder' is not null or undefined
2277
2361
  assertParamExists('createOrder', 'createOrder', createOrder);
2278
2362
  const localVarPath = `/v1/platform/{platformId}/orders`
2279
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2363
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2280
2364
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2281
2365
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2282
2366
  let baseOptions;
@@ -2322,8 +2406,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2322
2406
  // verify required parameter 'orderId' is not null or undefined
2323
2407
  assertParamExists('createOrderChatChannel', 'orderId', orderId);
2324
2408
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/chat-channel`
2325
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2326
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2409
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2410
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2327
2411
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2328
2412
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2329
2413
  let baseOptions;
@@ -2370,7 +2454,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2370
2454
  // verify required parameter 'start' is not null or undefined
2371
2455
  assertParamExists('exportOrders', 'start', start);
2372
2456
  const localVarPath = `/v1/platform/{platformId}/orders/export`
2373
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2457
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2374
2458
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2375
2459
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2376
2460
  let baseOptions;
@@ -2430,8 +2514,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2430
2514
  // verify required parameter 'fulfillmentId' is not null or undefined
2431
2515
  assertParamExists('getFulfillment', 'fulfillmentId', fulfillmentId);
2432
2516
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
2433
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2434
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2517
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2518
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2435
2519
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2436
2520
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2437
2521
  let baseOptions;
@@ -2475,8 +2559,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2475
2559
  // verify required parameter 'orderId' is not null or undefined
2476
2560
  assertParamExists('getOrder', 'orderId', orderId);
2477
2561
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
2478
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2479
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2562
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2563
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2480
2564
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2481
2565
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2482
2566
  let baseOptions;
@@ -2520,8 +2604,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2520
2604
  // verify required parameter 'orderId' is not null or undefined
2521
2605
  assertParamExists('getOrderReceipt', 'orderId', orderId);
2522
2606
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt`
2523
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2524
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2607
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2608
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2525
2609
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2526
2610
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2527
2611
  let baseOptions;
@@ -2565,8 +2649,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2565
2649
  // verify required parameter 'fulfillmentId' is not null or undefined
2566
2650
  assertParamExists('listAvailableFulfillers', 'fulfillmentId', fulfillmentId);
2567
2651
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}/available-fulfillers`
2568
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2569
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2652
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2653
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2570
2654
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2571
2655
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2572
2656
  let baseOptions;
@@ -2616,7 +2700,7 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2616
2700
  // verify required parameter 'platformId' is not null or undefined
2617
2701
  assertParamExists('listOrders', 'platformId', platformId);
2618
2702
  const localVarPath = `/v1/platform/{platformId}/orders`
2619
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2703
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2620
2704
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2621
2705
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2622
2706
  let baseOptions;
@@ -2691,8 +2775,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2691
2775
  // verify required parameter 'orderId' is not null or undefined
2692
2776
  assertParamExists('retryPlatformPayment', 'orderId', orderId);
2693
2777
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/retryPlatformPayment`
2694
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2695
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2778
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2779
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2696
2780
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2697
2781
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2698
2782
  let baseOptions;
@@ -2739,8 +2823,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2739
2823
  // verify required parameter 'returnOrderRequest' is not null or undefined
2740
2824
  assertParamExists('returnOrder', 'returnOrderRequest', returnOrderRequest);
2741
2825
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/return`
2742
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2743
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2826
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2827
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2744
2828
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2745
2829
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2746
2830
  let baseOptions;
@@ -2786,8 +2870,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2786
2870
  // verify required parameter 'orderId' is not null or undefined
2787
2871
  assertParamExists('sendOrderReceipt', 'orderId', orderId);
2788
2872
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt/send`
2789
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2790
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2873
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2874
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2791
2875
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2792
2876
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2793
2877
  let baseOptions;
@@ -2834,8 +2918,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2834
2918
  // verify required parameter 'updateFulfillmentRequest' is not null or undefined
2835
2919
  assertParamExists('updateFulfillment', 'updateFulfillmentRequest', updateFulfillmentRequest);
2836
2920
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
2837
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2838
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2921
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2922
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2839
2923
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2840
2924
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2841
2925
  let baseOptions;
@@ -2882,8 +2966,8 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2882
2966
  // verify required parameter 'orderId' is not null or undefined
2883
2967
  assertParamExists('updateOrder', 'orderId', orderId);
2884
2968
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
2885
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2886
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2969
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2970
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2887
2971
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2888
2972
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2889
2973
  let baseOptions;
@@ -2935,9 +3019,9 @@ export const OrdersApiAxiosParamCreator = function (configuration) {
2935
3019
  // verify required parameter 'updatePlatformFulfillmentStyleApplicationRequest' is not null or undefined
2936
3020
  assertParamExists('updatePlatformFulfillmentStyleApplication', 'updatePlatformFulfillmentStyleApplicationRequest', updatePlatformFulfillmentStyleApplicationRequest);
2937
3021
  const localVarPath = `/v1/platform/{platformId}/styles/{styleId}/applications/{applicationId}`
2938
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2939
- .replace(`{${"styleId"}}`, encodeURIComponent(String(styleId)))
2940
- .replace(`{${"applicationId"}}`, encodeURIComponent(String(applicationId)));
3022
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3023
+ .replace('{styleId}', encodeURIComponent(String(styleId)))
3024
+ .replace('{applicationId}', encodeURIComponent(String(applicationId)));
2941
3025
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2942
3026
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2943
3027
  let baseOptions;
@@ -3905,7 +3989,7 @@ export const PixelsApiAxiosParamCreator = function (configuration) {
3905
3989
  // verify required parameter 'platformId' is not null or undefined
3906
3990
  assertParamExists('createPixel', 'platformId', platformId);
3907
3991
  const localVarPath = `/v1/platform/{platformId}/pixels`
3908
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3992
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3909
3993
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3910
3994
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3911
3995
  let baseOptions;
@@ -3960,8 +4044,8 @@ export const PixelsApiAxiosParamCreator = function (configuration) {
3960
4044
  // verify required parameter 'pixelId' is not null or undefined
3961
4045
  assertParamExists('deletePixel', 'pixelId', pixelId);
3962
4046
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
3963
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3964
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4047
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4048
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
3965
4049
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3966
4050
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3967
4051
  let baseOptions;
@@ -4005,8 +4089,8 @@ export const PixelsApiAxiosParamCreator = function (configuration) {
4005
4089
  // verify required parameter 'pixelId' is not null or undefined
4006
4090
  assertParamExists('getPixel', 'pixelId', pixelId);
4007
4091
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
4008
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4009
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4092
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4093
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
4010
4094
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4011
4095
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4012
4096
  let baseOptions;
@@ -4050,7 +4134,7 @@ export const PixelsApiAxiosParamCreator = function (configuration) {
4050
4134
  // verify required parameter 'platformId' is not null or undefined
4051
4135
  assertParamExists('listPixels', 'platformId', platformId);
4052
4136
  const localVarPath = `/v1/platform/{platformId}/pixels`
4053
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4137
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4054
4138
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4055
4139
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4056
4140
  let baseOptions;
@@ -4104,8 +4188,8 @@ export const PixelsApiAxiosParamCreator = function (configuration) {
4104
4188
  // verify required parameter 'pixelId' is not null or undefined
4105
4189
  assertParamExists('updatePixel', 'pixelId', pixelId);
4106
4190
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
4107
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4108
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4191
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4192
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
4109
4193
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4110
4194
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4111
4195
  let baseOptions;
@@ -4452,7 +4536,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
4452
4536
  // verify required parameter 'domain' is not null or undefined
4453
4537
  assertParamExists('deleteClientDomain', 'domain', domain);
4454
4538
  const localVarPath = `/v1/platform/client/domains/{domain}`
4455
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
4539
+ .replace('{domain}', encodeURIComponent(String(domain)));
4456
4540
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4457
4541
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4458
4542
  let baseOptions;
@@ -4493,7 +4577,7 @@ export const PlatformApiAxiosParamCreator = function (configuration) {
4493
4577
  // verify required parameter 'domain' is not null or undefined
4494
4578
  assertParamExists('deleteDomain', 'domain', domain);
4495
4579
  const localVarPath = `/v1/platform/domains/{domain}`
4496
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
4580
+ .replace('{domain}', encodeURIComponent(String(domain)));
4497
4581
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4498
4582
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4499
4583
  let baseOptions;
@@ -5017,7 +5101,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration) {
5017
5101
  // verify required parameter 'createReviewRequest' is not null or undefined
5018
5102
  assertParamExists('createReview', 'createReviewRequest', createReviewRequest);
5019
5103
  const localVarPath = `/v1/platform/{platformId}/reviews`
5020
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5104
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5021
5105
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5022
5106
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5023
5107
  let baseOptions;
@@ -5086,7 +5170,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration) {
5086
5170
  // verify required parameter 'start' is not null or undefined
5087
5171
  assertParamExists('exportReviews', 'start', start);
5088
5172
  const localVarPath = `/v1/platform/{platformId}/reviews/export`
5089
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5173
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5090
5174
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5091
5175
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5092
5176
  let baseOptions;
@@ -5140,8 +5224,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration) {
5140
5224
  // verify required parameter 'reviewId' is not null or undefined
5141
5225
  assertParamExists('getReview', 'reviewId', reviewId);
5142
5226
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}`
5143
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5144
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
5227
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5228
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
5145
5229
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5146
5230
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5147
5231
  let baseOptions;
@@ -5188,7 +5272,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration) {
5188
5272
  // verify required parameter 'platformId' is not null or undefined
5189
5273
  assertParamExists('listReviews', 'platformId', platformId);
5190
5274
  const localVarPath = `/v1/platform/{platformId}/reviews`
5191
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5275
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5192
5276
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5193
5277
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5194
5278
  let baseOptions;
@@ -5255,8 +5339,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration) {
5255
5339
  // verify required parameter 'reviewId' is not null or undefined
5256
5340
  assertParamExists('moderateReview', 'reviewId', reviewId);
5257
5341
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}/moderate`
5258
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5259
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
5342
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5343
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
5260
5344
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5261
5345
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5262
5346
  let baseOptions;
@@ -5530,7 +5614,7 @@ export const TermsApiAxiosParamCreator = function (configuration) {
5530
5614
  // verify required parameter 'platformId' is not null or undefined
5531
5615
  assertParamExists('getTerms', 'platformId', platformId);
5532
5616
  const localVarPath = `/v1/platform/{platformId}/terms`
5533
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5617
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5534
5618
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5535
5619
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5536
5620
  let baseOptions;
@@ -5574,7 +5658,7 @@ export const TermsApiAxiosParamCreator = function (configuration) {
5574
5658
  // verify required parameter 'saveTermsRequest' is not null or undefined
5575
5659
  assertParamExists('saveTerms', 'saveTermsRequest', saveTermsRequest);
5576
5660
  const localVarPath = `/v1/platform/{platformId}/terms`
5577
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5661
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5578
5662
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5579
5663
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5580
5664
  let baseOptions;