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