@teemill/platform 0.69.0 → 0.71.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/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.69.0
8
+ * The version of the OpenAPI document: 0.71.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -66,8 +66,7 @@ exports.FulfillmentFrozenReasonsEnum = {
66
66
  Moderation: 'moderation',
67
67
  InternalScreenPrint: 'internal_screen_print',
68
68
  Manual: 'manual',
69
- ClientCreditControl: 'client_credit_control',
70
- FactoryCreditControl: 'factory_credit_control',
69
+ CreditControl: 'credit_control',
71
70
  BillingFailed: 'billing_failed',
72
71
  PickfaceFlagged: 'pickface_flagged',
73
72
  FlowFrozen: 'flow_frozen',
@@ -130,8 +129,8 @@ const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
130
129
  // verify required parameter 'conciergeCandidateId' is not null or undefined
131
130
  (0, common_1.assertParamExists)('approveConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
132
131
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}/approve`
133
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
134
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
132
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
133
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
135
134
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
136
135
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
137
136
  let baseOptions;
@@ -175,8 +174,8 @@ const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
175
174
  // verify required parameter 'conciergeCandidateId' is not null or undefined
176
175
  (0, common_1.assertParamExists)('deleteConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
177
176
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
178
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
179
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
177
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
178
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
180
179
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
181
180
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
182
181
  let baseOptions;
@@ -203,6 +202,52 @@ const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
203
202
  options: localVarRequestOptions,
204
203
  };
205
204
  }),
205
+ /**
206
+ * 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.
207
+ * @summary Exclude an email domain from concierge candidates
208
+ * @param {string} project Project unique identifier
209
+ * @param {string} platformId The platform identifier
210
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
211
+ * @param {*} [options] Override http request option.
212
+ * @throws {RequiredError}
213
+ */
214
+ 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 = {}) {
215
+ // verify required parameter 'project' is not null or undefined
216
+ (0, common_1.assertParamExists)('excludeEmailDomain', 'project', project);
217
+ // verify required parameter 'platformId' is not null or undefined
218
+ (0, common_1.assertParamExists)('excludeEmailDomain', 'platformId', platformId);
219
+ // verify required parameter 'excludeEmailDomainRequest' is not null or undefined
220
+ (0, common_1.assertParamExists)('excludeEmailDomain', 'excludeEmailDomainRequest', excludeEmailDomainRequest);
221
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates/exclude-email-domains`
222
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
223
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
224
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
225
+ let baseOptions;
226
+ if (configuration) {
227
+ baseOptions = configuration.baseOptions;
228
+ }
229
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
230
+ const localVarHeaderParameter = {};
231
+ const localVarQueryParameter = {};
232
+ // authentication session-oauth required
233
+ // oauth required
234
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
235
+ // authentication api-key required
236
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
237
+ if (project !== undefined) {
238
+ localVarQueryParameter['project'] = project;
239
+ }
240
+ localVarHeaderParameter['Content-Type'] = 'application/json';
241
+ localVarHeaderParameter['Accept'] = 'application/json';
242
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
243
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
244
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
245
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(excludeEmailDomainRequest, localVarRequestOptions, configuration);
246
+ return {
247
+ url: (0, common_1.toPathString)(localVarUrlObj),
248
+ options: localVarRequestOptions,
249
+ };
250
+ }),
206
251
  /**
207
252
  * Get a concierge candidate by a given concierge candidate ID.
208
253
  * @summary Get concierge candidate
@@ -220,8 +265,8 @@ const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
220
265
  // verify required parameter 'conciergeCandidateId' is not null or undefined
221
266
  (0, common_1.assertParamExists)('getConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId);
222
267
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
223
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
224
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
268
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
269
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
225
270
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
226
271
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
227
272
  let baseOptions;
@@ -265,7 +310,7 @@ const ConciergeCandidatesApiAxiosParamCreator = function (configuration) {
265
310
  // verify required parameter 'platformId' is not null or undefined
266
311
  (0, common_1.assertParamExists)('listConciergeCandidates', 'platformId', platformId);
267
312
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates`
268
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
313
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
269
314
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
270
315
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
271
316
  let baseOptions;
@@ -346,6 +391,24 @@ const ConciergeCandidatesApiFp = function (configuration) {
346
391
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
347
392
  });
348
393
  },
394
+ /**
395
+ * 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.
396
+ * @summary Exclude an email domain from concierge candidates
397
+ * @param {string} project Project unique identifier
398
+ * @param {string} platformId The platform identifier
399
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
400
+ * @param {*} [options] Override http request option.
401
+ * @throws {RequiredError}
402
+ */
403
+ excludeEmailDomain(project, platformId, excludeEmailDomainRequest, options) {
404
+ return __awaiter(this, void 0, void 0, function* () {
405
+ var _a, _b, _c;
406
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.excludeEmailDomain(project, platformId, excludeEmailDomainRequest, options);
407
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
408
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ConciergeCandidatesApi.excludeEmailDomain']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
409
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
410
+ });
411
+ },
349
412
  /**
350
413
  * Get a concierge candidate by a given concierge candidate ID.
351
414
  * @summary Get concierge candidate
@@ -413,6 +476,16 @@ const ConciergeCandidatesApiFactory = function (configuration, basePath, axios)
413
476
  deleteConciergeCandidate(requestParameters, options) {
414
477
  return localVarFp.deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(axios, basePath));
415
478
  },
479
+ /**
480
+ * 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.
481
+ * @summary Exclude an email domain from concierge candidates
482
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
483
+ * @param {*} [options] Override http request option.
484
+ * @throws {RequiredError}
485
+ */
486
+ excludeEmailDomain(requestParameters, options) {
487
+ return localVarFp.excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(axios, basePath));
488
+ },
416
489
  /**
417
490
  * Get a concierge candidate by a given concierge candidate ID.
418
491
  * @summary Get concierge candidate
@@ -460,6 +533,16 @@ class ConciergeCandidatesApi extends base_1.BaseAPI {
460
533
  deleteConciergeCandidate(requestParameters, options) {
461
534
  return (0, exports.ConciergeCandidatesApiFp)(this.configuration).deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(this.axios, this.basePath));
462
535
  }
536
+ /**
537
+ * 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.
538
+ * @summary Exclude an email domain from concierge candidates
539
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
540
+ * @param {*} [options] Override http request option.
541
+ * @throws {RequiredError}
542
+ */
543
+ excludeEmailDomain(requestParameters, options) {
544
+ return (0, exports.ConciergeCandidatesApiFp)(this.configuration).excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(this.axios, this.basePath));
545
+ }
463
546
  /**
464
547
  * Get a concierge candidate by a given concierge candidate ID.
465
548
  * @summary Get concierge candidate
@@ -504,8 +587,8 @@ const CustomersApiAxiosParamCreator = function (configuration) {
504
587
  // verify required parameter 'customerId' is not null or undefined
505
588
  (0, common_1.assertParamExists)('createCustomerChatChannel', 'customerId', customerId);
506
589
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/chat-channel`
507
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
508
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
590
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
591
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
509
592
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
510
593
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
511
594
  let baseOptions;
@@ -549,8 +632,8 @@ const CustomersApiAxiosParamCreator = function (configuration) {
549
632
  // verify required parameter 'customerId' is not null or undefined
550
633
  (0, common_1.assertParamExists)('createCustomerDataDeletionRequest', 'customerId', customerId);
551
634
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
552
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
553
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
635
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
636
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
554
637
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
555
638
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
556
639
  let baseOptions;
@@ -607,7 +690,7 @@ const CustomersApiAxiosParamCreator = function (configuration) {
607
690
  // verify required parameter 'platformId' is not null or undefined
608
691
  (0, common_1.assertParamExists)('exportCustomers', 'platformId', platformId);
609
692
  const localVarPath = `/v1/platform/{platformId}/customers/export`
610
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
693
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
611
694
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
612
695
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
613
696
  let baseOptions;
@@ -701,8 +784,8 @@ const CustomersApiAxiosParamCreator = function (configuration) {
701
784
  // verify required parameter 'customerId' is not null or undefined
702
785
  (0, common_1.assertParamExists)('getCustomer', 'customerId', customerId);
703
786
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
704
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
705
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
787
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
788
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
706
789
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
707
790
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
708
791
  let baseOptions;
@@ -746,8 +829,8 @@ const CustomersApiAxiosParamCreator = function (configuration) {
746
829
  // verify required parameter 'customerId' is not null or undefined
747
830
  (0, common_1.assertParamExists)('getCustomerDataDeletionRequest', 'customerId', customerId);
748
831
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
749
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
750
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
832
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
833
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
751
834
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
752
835
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
753
836
  let baseOptions;
@@ -791,7 +874,7 @@ const CustomersApiAxiosParamCreator = function (configuration) {
791
874
  // verify required parameter 'platformId' is not null or undefined
792
875
  (0, common_1.assertParamExists)('listCustomerTags', 'platformId', platformId);
793
876
  const localVarPath = `/v1/platform/{platformId}/customers/tags`
794
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
877
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
795
878
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
796
879
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
797
880
  let baseOptions;
@@ -860,7 +943,7 @@ const CustomersApiAxiosParamCreator = function (configuration) {
860
943
  // verify required parameter 'platformId' is not null or undefined
861
944
  (0, common_1.assertParamExists)('listCustomers', 'platformId', platformId);
862
945
  const localVarPath = `/v1/platform/{platformId}/customers`
863
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
946
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
864
947
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
865
948
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
866
949
  let baseOptions;
@@ -964,8 +1047,8 @@ const CustomersApiAxiosParamCreator = function (configuration) {
964
1047
  // verify required parameter 'customerId' is not null or undefined
965
1048
  (0, common_1.assertParamExists)('updateCustomer', 'customerId', customerId);
966
1049
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
967
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
968
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
1050
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1051
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
969
1052
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
970
1053
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
971
1054
  let baseOptions;
@@ -1412,7 +1495,7 @@ const DashboardApiAxiosParamCreator = function (configuration) {
1412
1495
  // verify required parameter 'platformId' is not null or undefined
1413
1496
  (0, common_1.assertParamExists)('getDashboard', 'platformId', platformId);
1414
1497
  const localVarPath = `/v1/platform/{platformId}/dashboard`
1415
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1498
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1416
1499
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1417
1500
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1418
1501
  let baseOptions;
@@ -1456,7 +1539,7 @@ const DashboardApiAxiosParamCreator = function (configuration) {
1456
1539
  // verify required parameter 'saveDashboardRequest' is not null or undefined
1457
1540
  (0, common_1.assertParamExists)('saveDashboard', 'saveDashboardRequest', saveDashboardRequest);
1458
1541
  const localVarPath = `/v1/platform/{platformId}/dashboard`
1459
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1542
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1460
1543
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1461
1544
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1462
1545
  let baseOptions;
@@ -1609,8 +1692,8 @@ const EnquiriesApiAxiosParamCreator = function (configuration) {
1609
1692
  // verify required parameter 'enquiryId' is not null or undefined
1610
1693
  (0, common_1.assertParamExists)('createCustomerEnquiryChatChannel', 'enquiryId', enquiryId);
1611
1694
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel`
1612
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1613
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1695
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1696
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1614
1697
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1615
1698
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1616
1699
  let baseOptions;
@@ -1654,8 +1737,8 @@ const EnquiriesApiAxiosParamCreator = function (configuration) {
1654
1737
  // verify required parameter 'enquiryId' is not null or undefined
1655
1738
  (0, common_1.assertParamExists)('getCustomerEnquiry', 'enquiryId', enquiryId);
1656
1739
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
1657
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1658
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1740
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1741
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1659
1742
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1660
1743
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1661
1744
  let baseOptions;
@@ -1701,7 +1784,7 @@ const EnquiriesApiAxiosParamCreator = function (configuration) {
1701
1784
  // verify required parameter 'platformId' is not null or undefined
1702
1785
  (0, common_1.assertParamExists)('listCustomerEnquiries', 'platformId', platformId);
1703
1786
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries`
1704
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1787
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1705
1788
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1706
1789
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1707
1790
  let baseOptions;
@@ -1764,8 +1847,8 @@ const EnquiriesApiAxiosParamCreator = function (configuration) {
1764
1847
  // verify required parameter 'enquiryId' is not null or undefined
1765
1848
  (0, common_1.assertParamExists)('listCustomerEnquiryLogs', 'enquiryId', enquiryId);
1766
1849
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs`
1767
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1768
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1850
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1851
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1769
1852
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1770
1853
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1771
1854
  let baseOptions;
@@ -1812,8 +1895,8 @@ const EnquiriesApiAxiosParamCreator = function (configuration) {
1812
1895
  // verify required parameter 'updateCustomerEnquiryRequest' is not null or undefined
1813
1896
  (0, common_1.assertParamExists)('updateCustomerEnquiry', 'updateCustomerEnquiryRequest', updateCustomerEnquiryRequest);
1814
1897
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
1815
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1816
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
1898
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1899
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
1817
1900
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1818
1901
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1819
1902
  let baseOptions;
@@ -2084,7 +2167,7 @@ const ModerationApiAxiosParamCreator = function (configuration) {
2084
2167
  // verify required parameter 'moderationItemId' is not null or undefined
2085
2168
  (0, common_1.assertParamExists)('updateModerationItem', 'moderationItemId', moderationItemId);
2086
2169
  const localVarPath = `/v1/platform/moderate/{moderationItemId}`
2087
- .replace(`{${"moderationItemId"}}`, encodeURIComponent(String(moderationItemId)));
2170
+ .replace('{moderationItemId}', encodeURIComponent(String(moderationItemId)));
2088
2171
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2089
2172
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2090
2173
  let baseOptions;
@@ -2203,8 +2286,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2203
2286
  // verify required parameter 'amendOrderRequest' is not null or undefined
2204
2287
  (0, common_1.assertParamExists)('amendOrder', 'amendOrderRequest', amendOrderRequest);
2205
2288
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/amend`
2206
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2207
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2289
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2290
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2208
2291
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2209
2292
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2210
2293
  let baseOptions;
@@ -2253,8 +2336,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2253
2336
  // verify required parameter 'confirmOrderRequest' is not null or undefined
2254
2337
  (0, common_1.assertParamExists)('confirmOrder', 'confirmOrderRequest', confirmOrderRequest);
2255
2338
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/confirm`
2256
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2257
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2339
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2340
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2258
2341
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2259
2342
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2260
2343
  let baseOptions;
@@ -2300,7 +2383,7 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2300
2383
  // verify required parameter 'createOrder' is not null or undefined
2301
2384
  (0, common_1.assertParamExists)('createOrder', 'createOrder', createOrder);
2302
2385
  const localVarPath = `/v1/platform/{platformId}/orders`
2303
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2386
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2304
2387
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2305
2388
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2306
2389
  let baseOptions;
@@ -2346,8 +2429,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2346
2429
  // verify required parameter 'orderId' is not null or undefined
2347
2430
  (0, common_1.assertParamExists)('createOrderChatChannel', 'orderId', orderId);
2348
2431
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/chat-channel`
2349
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2350
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2432
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2433
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2351
2434
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2352
2435
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2353
2436
  let baseOptions;
@@ -2394,7 +2477,7 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2394
2477
  // verify required parameter 'start' is not null or undefined
2395
2478
  (0, common_1.assertParamExists)('exportOrders', 'start', start);
2396
2479
  const localVarPath = `/v1/platform/{platformId}/orders/export`
2397
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2480
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2398
2481
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2399
2482
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2400
2483
  let baseOptions;
@@ -2454,8 +2537,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2454
2537
  // verify required parameter 'fulfillmentId' is not null or undefined
2455
2538
  (0, common_1.assertParamExists)('getFulfillment', 'fulfillmentId', fulfillmentId);
2456
2539
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
2457
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2458
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2540
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2541
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2459
2542
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2460
2543
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2461
2544
  let baseOptions;
@@ -2499,8 +2582,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2499
2582
  // verify required parameter 'orderId' is not null or undefined
2500
2583
  (0, common_1.assertParamExists)('getOrder', 'orderId', orderId);
2501
2584
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
2502
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2503
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2585
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2586
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2504
2587
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2505
2588
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2506
2589
  let baseOptions;
@@ -2544,8 +2627,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2544
2627
  // verify required parameter 'orderId' is not null or undefined
2545
2628
  (0, common_1.assertParamExists)('getOrderReceipt', 'orderId', orderId);
2546
2629
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt`
2547
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2548
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2630
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2631
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2549
2632
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2550
2633
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2551
2634
  let baseOptions;
@@ -2589,8 +2672,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2589
2672
  // verify required parameter 'fulfillmentId' is not null or undefined
2590
2673
  (0, common_1.assertParamExists)('listAvailableFulfillers', 'fulfillmentId', fulfillmentId);
2591
2674
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}/available-fulfillers`
2592
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2593
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2675
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2676
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2594
2677
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2595
2678
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2596
2679
  let baseOptions;
@@ -2640,7 +2723,7 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2640
2723
  // verify required parameter 'platformId' is not null or undefined
2641
2724
  (0, common_1.assertParamExists)('listOrders', 'platformId', platformId);
2642
2725
  const localVarPath = `/v1/platform/{platformId}/orders`
2643
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2726
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2644
2727
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2645
2728
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2646
2729
  let baseOptions;
@@ -2715,8 +2798,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2715
2798
  // verify required parameter 'orderId' is not null or undefined
2716
2799
  (0, common_1.assertParamExists)('retryPlatformPayment', 'orderId', orderId);
2717
2800
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/retryPlatformPayment`
2718
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2719
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2801
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2802
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2720
2803
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2721
2804
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2722
2805
  let baseOptions;
@@ -2763,8 +2846,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2763
2846
  // verify required parameter 'returnOrderRequest' is not null or undefined
2764
2847
  (0, common_1.assertParamExists)('returnOrder', 'returnOrderRequest', returnOrderRequest);
2765
2848
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/return`
2766
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2767
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2849
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2850
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2768
2851
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2769
2852
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2770
2853
  let baseOptions;
@@ -2810,8 +2893,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2810
2893
  // verify required parameter 'orderId' is not null or undefined
2811
2894
  (0, common_1.assertParamExists)('sendOrderReceipt', 'orderId', orderId);
2812
2895
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt/send`
2813
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2814
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2896
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2897
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2815
2898
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2816
2899
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2817
2900
  let baseOptions;
@@ -2858,8 +2941,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2858
2941
  // verify required parameter 'updateFulfillmentRequest' is not null or undefined
2859
2942
  (0, common_1.assertParamExists)('updateFulfillment', 'updateFulfillmentRequest', updateFulfillmentRequest);
2860
2943
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
2861
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2862
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
2944
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2945
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
2863
2946
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2864
2947
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2865
2948
  let baseOptions;
@@ -2906,8 +2989,8 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2906
2989
  // verify required parameter 'orderId' is not null or undefined
2907
2990
  (0, common_1.assertParamExists)('updateOrder', 'orderId', orderId);
2908
2991
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
2909
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2910
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
2992
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2993
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
2911
2994
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2912
2995
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2913
2996
  let baseOptions;
@@ -2959,9 +3042,9 @@ const OrdersApiAxiosParamCreator = function (configuration) {
2959
3042
  // verify required parameter 'updatePlatformFulfillmentStyleApplicationRequest' is not null or undefined
2960
3043
  (0, common_1.assertParamExists)('updatePlatformFulfillmentStyleApplication', 'updatePlatformFulfillmentStyleApplicationRequest', updatePlatformFulfillmentStyleApplicationRequest);
2961
3044
  const localVarPath = `/v1/platform/{platformId}/styles/{styleId}/applications/{applicationId}`
2962
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2963
- .replace(`{${"styleId"}}`, encodeURIComponent(String(styleId)))
2964
- .replace(`{${"applicationId"}}`, encodeURIComponent(String(applicationId)));
3045
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3046
+ .replace('{styleId}', encodeURIComponent(String(styleId)))
3047
+ .replace('{applicationId}', encodeURIComponent(String(applicationId)));
2965
3048
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2966
3049
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2967
3050
  let baseOptions;
@@ -3937,7 +4020,7 @@ const PixelsApiAxiosParamCreator = function (configuration) {
3937
4020
  // verify required parameter 'platformId' is not null or undefined
3938
4021
  (0, common_1.assertParamExists)('createPixel', 'platformId', platformId);
3939
4022
  const localVarPath = `/v1/platform/{platformId}/pixels`
3940
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4023
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3941
4024
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3942
4025
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
3943
4026
  let baseOptions;
@@ -3992,8 +4075,8 @@ const PixelsApiAxiosParamCreator = function (configuration) {
3992
4075
  // verify required parameter 'pixelId' is not null or undefined
3993
4076
  (0, common_1.assertParamExists)('deletePixel', 'pixelId', pixelId);
3994
4077
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
3995
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3996
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4078
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4079
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
3997
4080
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3998
4081
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
3999
4082
  let baseOptions;
@@ -4037,8 +4120,8 @@ const PixelsApiAxiosParamCreator = function (configuration) {
4037
4120
  // verify required parameter 'pixelId' is not null or undefined
4038
4121
  (0, common_1.assertParamExists)('getPixel', 'pixelId', pixelId);
4039
4122
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
4040
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4041
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4123
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4124
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
4042
4125
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4043
4126
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4044
4127
  let baseOptions;
@@ -4082,7 +4165,7 @@ const PixelsApiAxiosParamCreator = function (configuration) {
4082
4165
  // verify required parameter 'platformId' is not null or undefined
4083
4166
  (0, common_1.assertParamExists)('listPixels', 'platformId', platformId);
4084
4167
  const localVarPath = `/v1/platform/{platformId}/pixels`
4085
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4168
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4086
4169
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4087
4170
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4088
4171
  let baseOptions;
@@ -4136,8 +4219,8 @@ const PixelsApiAxiosParamCreator = function (configuration) {
4136
4219
  // verify required parameter 'pixelId' is not null or undefined
4137
4220
  (0, common_1.assertParamExists)('updatePixel', 'pixelId', pixelId);
4138
4221
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
4139
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4140
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
4222
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4223
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
4141
4224
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4142
4225
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4143
4226
  let baseOptions;
@@ -4488,7 +4571,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
4488
4571
  // verify required parameter 'domain' is not null or undefined
4489
4572
  (0, common_1.assertParamExists)('deleteClientDomain', 'domain', domain);
4490
4573
  const localVarPath = `/v1/platform/client/domains/{domain}`
4491
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
4574
+ .replace('{domain}', encodeURIComponent(String(domain)));
4492
4575
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4493
4576
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4494
4577
  let baseOptions;
@@ -4529,7 +4612,7 @@ const PlatformApiAxiosParamCreator = function (configuration) {
4529
4612
  // verify required parameter 'domain' is not null or undefined
4530
4613
  (0, common_1.assertParamExists)('deleteDomain', 'domain', domain);
4531
4614
  const localVarPath = `/v1/platform/domains/{domain}`
4532
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
4615
+ .replace('{domain}', encodeURIComponent(String(domain)));
4533
4616
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4534
4617
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
4535
4618
  let baseOptions;
@@ -5057,7 +5140,7 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
5057
5140
  // verify required parameter 'createReviewRequest' is not null or undefined
5058
5141
  (0, common_1.assertParamExists)('createReview', 'createReviewRequest', createReviewRequest);
5059
5142
  const localVarPath = `/v1/platform/{platformId}/reviews`
5060
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5143
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5061
5144
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5062
5145
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5063
5146
  let baseOptions;
@@ -5126,7 +5209,7 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
5126
5209
  // verify required parameter 'start' is not null or undefined
5127
5210
  (0, common_1.assertParamExists)('exportReviews', 'start', start);
5128
5211
  const localVarPath = `/v1/platform/{platformId}/reviews/export`
5129
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5212
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5130
5213
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5131
5214
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5132
5215
  let baseOptions;
@@ -5180,8 +5263,8 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
5180
5263
  // verify required parameter 'reviewId' is not null or undefined
5181
5264
  (0, common_1.assertParamExists)('getReview', 'reviewId', reviewId);
5182
5265
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}`
5183
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5184
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
5266
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5267
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
5185
5268
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5186
5269
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5187
5270
  let baseOptions;
@@ -5228,7 +5311,7 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
5228
5311
  // verify required parameter 'platformId' is not null or undefined
5229
5312
  (0, common_1.assertParamExists)('listReviews', 'platformId', platformId);
5230
5313
  const localVarPath = `/v1/platform/{platformId}/reviews`
5231
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5314
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5232
5315
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5233
5316
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5234
5317
  let baseOptions;
@@ -5295,8 +5378,8 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
5295
5378
  // verify required parameter 'reviewId' is not null or undefined
5296
5379
  (0, common_1.assertParamExists)('moderateReview', 'reviewId', reviewId);
5297
5380
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}/moderate`
5298
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5299
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
5381
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5382
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
5300
5383
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5301
5384
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5302
5385
  let baseOptions;
@@ -5574,7 +5657,7 @@ const TermsApiAxiosParamCreator = function (configuration) {
5574
5657
  // verify required parameter 'platformId' is not null or undefined
5575
5658
  (0, common_1.assertParamExists)('getTerms', 'platformId', platformId);
5576
5659
  const localVarPath = `/v1/platform/{platformId}/terms`
5577
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5660
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5578
5661
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5579
5662
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5580
5663
  let baseOptions;
@@ -5618,7 +5701,7 @@ const TermsApiAxiosParamCreator = function (configuration) {
5618
5701
  // verify required parameter 'saveTermsRequest' is not null or undefined
5619
5702
  (0, common_1.assertParamExists)('saveTerms', 'saveTermsRequest', saveTermsRequest);
5620
5703
  const localVarPath = `/v1/platform/{platformId}/terms`
5621
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
5704
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
5622
5705
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5623
5706
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
5624
5707
  let baseOptions;