@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/api.ts 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).
@@ -576,6 +576,30 @@ export interface EnquiryTracking {
576
576
  'utmTerm': string | null;
577
577
  'utmContent': string | null;
578
578
  }
579
+ export interface ExcludeEmailDomainRequest {
580
+ /**
581
+ * The email domain to exclude
582
+ */
583
+ 'domain': string;
584
+ }
585
+ export interface ExcludedEmailDomain {
586
+ /**
587
+ * Unique object identifier
588
+ */
589
+ 'id': string;
590
+ /**
591
+ * The email domain to exclude
592
+ */
593
+ 'domain': string;
594
+ /**
595
+ * Reference to the user resource
596
+ */
597
+ 'userRef': string;
598
+ /**
599
+ * ISO 8601 Timestamp
600
+ */
601
+ 'createdAt': string;
602
+ }
579
603
  export interface ExportOrders202Response {
580
604
  /**
581
605
  * A message describing the export status
@@ -638,7 +662,7 @@ export interface Fulfillment {
638
662
  */
639
663
  'frozen'?: boolean;
640
664
  /**
641
- * List of reason codes why this fulfillment is frozen. - `moderation` - Held for content moderation review. - `internal_screen_print` - Awaiting internal screen print processing. - `manual` - Manually frozen by a user. - `client_credit_control` - The client is under credit control. - `factory_credit_control` - The factory fulfilling the order is under credit control. - `billing_failed` - Payment for this order failed. - `pickface_flagged` - Flagged on the pickface for review. - `flow_frozen` - Frozen by internal production flow handling. - `fraud` - Frozen due to fraud checks.
665
+ * List of reason codes why this fulfillment is frozen. - `moderation` - Held for content moderation review. - `internal_screen_print` - Awaiting internal screen print processing. - `manual` - Manually frozen by a user. - `credit_control` - Client is under credit control. - `billing_failed` - Payment for this order failed. - `pickface_flagged` - Flagged on the pickface for review. - `flow_frozen` - Frozen by internal production flow handling. - `fraud` - Frozen due to fraud checks.
642
666
  */
643
667
  'frozenReasons'?: Array<FulfillmentFrozenReasonsEnum>;
644
668
  }
@@ -647,8 +671,7 @@ export const FulfillmentFrozenReasonsEnum = {
647
671
  Moderation: 'moderation',
648
672
  InternalScreenPrint: 'internal_screen_print',
649
673
  Manual: 'manual',
650
- ClientCreditControl: 'client_credit_control',
651
- FactoryCreditControl: 'factory_credit_control',
674
+ CreditControl: 'credit_control',
652
675
  BillingFailed: 'billing_failed',
653
676
  PickfaceFlagged: 'pickface_flagged',
654
677
  FlowFrozen: 'flow_frozen',
@@ -1391,8 +1414,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1391
1414
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1392
1415
  assertParamExists('approveConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1393
1416
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}/approve`
1394
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1395
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1417
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1418
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1396
1419
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1397
1420
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1398
1421
  let baseOptions;
@@ -1443,8 +1466,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1443
1466
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1444
1467
  assertParamExists('deleteConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1445
1468
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
1446
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1447
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1469
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1470
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1448
1471
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1449
1472
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1450
1473
  let baseOptions;
@@ -1478,6 +1501,59 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1478
1501
  options: localVarRequestOptions,
1479
1502
  };
1480
1503
  },
1504
+ /**
1505
+ * 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.
1506
+ * @summary Exclude an email domain from concierge candidates
1507
+ * @param {string} project Project unique identifier
1508
+ * @param {string} platformId The platform identifier
1509
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
1510
+ * @param {*} [options] Override http request option.
1511
+ * @throws {RequiredError}
1512
+ */
1513
+ excludeEmailDomain: async (project: string, platformId: string, excludeEmailDomainRequest: ExcludeEmailDomainRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1514
+ // verify required parameter 'project' is not null or undefined
1515
+ assertParamExists('excludeEmailDomain', 'project', project)
1516
+ // verify required parameter 'platformId' is not null or undefined
1517
+ assertParamExists('excludeEmailDomain', 'platformId', platformId)
1518
+ // verify required parameter 'excludeEmailDomainRequest' is not null or undefined
1519
+ assertParamExists('excludeEmailDomain', 'excludeEmailDomainRequest', excludeEmailDomainRequest)
1520
+ const localVarPath = `/v1/platform/{platformId}/concierge-candidates/exclude-email-domains`
1521
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1522
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1523
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1524
+ let baseOptions;
1525
+ if (configuration) {
1526
+ baseOptions = configuration.baseOptions;
1527
+ }
1528
+
1529
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
1530
+ const localVarHeaderParameter = {} as any;
1531
+ const localVarQueryParameter = {} as any;
1532
+
1533
+ // authentication session-oauth required
1534
+ // oauth required
1535
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1536
+
1537
+ // authentication api-key required
1538
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1539
+
1540
+ if (project !== undefined) {
1541
+ localVarQueryParameter['project'] = project;
1542
+ }
1543
+
1544
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1545
+ localVarHeaderParameter['Accept'] = 'application/json';
1546
+
1547
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1548
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1549
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1550
+ localVarRequestOptions.data = serializeDataIfNeeded(excludeEmailDomainRequest, localVarRequestOptions, configuration)
1551
+
1552
+ return {
1553
+ url: toPathString(localVarUrlObj),
1554
+ options: localVarRequestOptions,
1555
+ };
1556
+ },
1481
1557
  /**
1482
1558
  * Get a concierge candidate by a given concierge candidate ID.
1483
1559
  * @summary Get concierge candidate
@@ -1495,8 +1571,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1495
1571
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1496
1572
  assertParamExists('getConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1497
1573
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
1498
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1499
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1574
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1575
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1500
1576
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1501
1577
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1502
1578
  let baseOptions;
@@ -1547,7 +1623,7 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1547
1623
  // verify required parameter 'platformId' is not null or undefined
1548
1624
  assertParamExists('listConciergeCandidates', 'platformId', platformId)
1549
1625
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates`
1550
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1626
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1551
1627
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1552
1628
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1553
1629
  let baseOptions;
@@ -1632,6 +1708,21 @@ export const ConciergeCandidatesApiFp = function(configuration?: Configuration)
1632
1708
  const localVarOperationServerBasePath = operationServerMap['ConciergeCandidatesApi.deleteConciergeCandidate']?.[localVarOperationServerIndex]?.url;
1633
1709
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1634
1710
  },
1711
+ /**
1712
+ * 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.
1713
+ * @summary Exclude an email domain from concierge candidates
1714
+ * @param {string} project Project unique identifier
1715
+ * @param {string} platformId The platform identifier
1716
+ * @param {ExcludeEmailDomainRequest} excludeEmailDomainRequest Create an excluded email domain
1717
+ * @param {*} [options] Override http request option.
1718
+ * @throws {RequiredError}
1719
+ */
1720
+ async excludeEmailDomain(project: string, platformId: string, excludeEmailDomainRequest: ExcludeEmailDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExcludedEmailDomain>> {
1721
+ const localVarAxiosArgs = await localVarAxiosParamCreator.excludeEmailDomain(project, platformId, excludeEmailDomainRequest, options);
1722
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1723
+ const localVarOperationServerBasePath = operationServerMap['ConciergeCandidatesApi.excludeEmailDomain']?.[localVarOperationServerIndex]?.url;
1724
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1725
+ },
1635
1726
  /**
1636
1727
  * Get a concierge candidate by a given concierge candidate ID.
1637
1728
  * @summary Get concierge candidate
@@ -1693,6 +1784,16 @@ export const ConciergeCandidatesApiFactory = function (configuration?: Configura
1693
1784
  deleteConciergeCandidate(requestParameters: ConciergeCandidatesApiDeleteConciergeCandidateRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1694
1785
  return localVarFp.deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(axios, basePath));
1695
1786
  },
1787
+ /**
1788
+ * 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.
1789
+ * @summary Exclude an email domain from concierge candidates
1790
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
1791
+ * @param {*} [options] Override http request option.
1792
+ * @throws {RequiredError}
1793
+ */
1794
+ excludeEmailDomain(requestParameters: ConciergeCandidatesApiExcludeEmailDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExcludedEmailDomain> {
1795
+ return localVarFp.excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(axios, basePath));
1796
+ },
1696
1797
  /**
1697
1798
  * Get a concierge candidate by a given concierge candidate ID.
1698
1799
  * @summary Get concierge candidate
@@ -1756,6 +1857,26 @@ export interface ConciergeCandidatesApiDeleteConciergeCandidateRequest {
1756
1857
  readonly conciergeCandidateId: string
1757
1858
  }
1758
1859
 
1860
+ /**
1861
+ * Request parameters for excludeEmailDomain operation in ConciergeCandidatesApi.
1862
+ */
1863
+ export interface ConciergeCandidatesApiExcludeEmailDomainRequest {
1864
+ /**
1865
+ * Project unique identifier
1866
+ */
1867
+ readonly project: string
1868
+
1869
+ /**
1870
+ * The platform identifier
1871
+ */
1872
+ readonly platformId: string
1873
+
1874
+ /**
1875
+ * Create an excluded email domain
1876
+ */
1877
+ readonly excludeEmailDomainRequest: ExcludeEmailDomainRequest
1878
+ }
1879
+
1759
1880
  /**
1760
1881
  * Request parameters for getConciergeCandidate operation in ConciergeCandidatesApi.
1761
1882
  */
@@ -1832,6 +1953,17 @@ export class ConciergeCandidatesApi extends BaseAPI {
1832
1953
  return ConciergeCandidatesApiFp(this.configuration).deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(this.axios, this.basePath));
1833
1954
  }
1834
1955
 
1956
+ /**
1957
+ * 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.
1958
+ * @summary Exclude an email domain from concierge candidates
1959
+ * @param {ConciergeCandidatesApiExcludeEmailDomainRequest} requestParameters Request parameters.
1960
+ * @param {*} [options] Override http request option.
1961
+ * @throws {RequiredError}
1962
+ */
1963
+ public excludeEmailDomain(requestParameters: ConciergeCandidatesApiExcludeEmailDomainRequest, options?: RawAxiosRequestConfig) {
1964
+ return ConciergeCandidatesApiFp(this.configuration).excludeEmailDomain(requestParameters.project, requestParameters.platformId, requestParameters.excludeEmailDomainRequest, options).then((request) => request(this.axios, this.basePath));
1965
+ }
1966
+
1835
1967
  /**
1836
1968
  * Get a concierge candidate by a given concierge candidate ID.
1837
1969
  * @summary Get concierge candidate
@@ -1879,8 +2011,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1879
2011
  // verify required parameter 'customerId' is not null or undefined
1880
2012
  assertParamExists('createCustomerChatChannel', 'customerId', customerId)
1881
2013
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/chat-channel`
1882
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1883
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2014
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2015
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
1884
2016
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1885
2017
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1886
2018
  let baseOptions;
@@ -1931,8 +2063,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1931
2063
  // verify required parameter 'customerId' is not null or undefined
1932
2064
  assertParamExists('createCustomerDataDeletionRequest', 'customerId', customerId)
1933
2065
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
1934
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1935
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2066
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2067
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
1936
2068
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1937
2069
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1938
2070
  let baseOptions;
@@ -1996,7 +2128,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1996
2128
  // verify required parameter 'platformId' is not null or undefined
1997
2129
  assertParamExists('exportCustomers', 'platformId', platformId)
1998
2130
  const localVarPath = `/v1/platform/{platformId}/customers/export`
1999
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2131
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2000
2132
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2001
2133
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2002
2134
  let baseOptions;
@@ -2113,8 +2245,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2113
2245
  // verify required parameter 'customerId' is not null or undefined
2114
2246
  assertParamExists('getCustomer', 'customerId', customerId)
2115
2247
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
2116
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2117
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2248
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2249
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2118
2250
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2119
2251
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2120
2252
  let baseOptions;
@@ -2165,8 +2297,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2165
2297
  // verify required parameter 'customerId' is not null or undefined
2166
2298
  assertParamExists('getCustomerDataDeletionRequest', 'customerId', customerId)
2167
2299
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
2168
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2169
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2300
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2301
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2170
2302
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2171
2303
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2172
2304
  let baseOptions;
@@ -2217,7 +2349,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2217
2349
  // verify required parameter 'platformId' is not null or undefined
2218
2350
  assertParamExists('listCustomerTags', 'platformId', platformId)
2219
2351
  const localVarPath = `/v1/platform/{platformId}/customers/tags`
2220
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2352
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2221
2353
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2222
2354
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2223
2355
  let baseOptions;
@@ -2296,7 +2428,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2296
2428
  // verify required parameter 'platformId' is not null or undefined
2297
2429
  assertParamExists('listCustomers', 'platformId', platformId)
2298
2430
  const localVarPath = `/v1/platform/{platformId}/customers`
2299
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2431
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2300
2432
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2301
2433
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2302
2434
  let baseOptions;
@@ -2426,8 +2558,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2426
2558
  // verify required parameter 'customerId' is not null or undefined
2427
2559
  assertParamExists('updateCustomer', 'customerId', customerId)
2428
2560
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
2429
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2430
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2561
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2562
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2431
2563
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2432
2564
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2433
2565
  let baseOptions;
@@ -3207,7 +3339,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
3207
3339
  // verify required parameter 'platformId' is not null or undefined
3208
3340
  assertParamExists('getDashboard', 'platformId', platformId)
3209
3341
  const localVarPath = `/v1/platform/{platformId}/dashboard`
3210
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3342
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3211
3343
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3212
3344
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3213
3345
  let baseOptions;
@@ -3258,7 +3390,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
3258
3390
  // verify required parameter 'saveDashboardRequest' is not null or undefined
3259
3391
  assertParamExists('saveDashboard', 'saveDashboardRequest', saveDashboardRequest)
3260
3392
  const localVarPath = `/v1/platform/{platformId}/dashboard`
3261
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3393
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3262
3394
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3263
3395
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3264
3396
  let baseOptions;
@@ -3450,8 +3582,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3450
3582
  // verify required parameter 'enquiryId' is not null or undefined
3451
3583
  assertParamExists('createCustomerEnquiryChatChannel', 'enquiryId', enquiryId)
3452
3584
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel`
3453
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3454
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3585
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3586
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3455
3587
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3456
3588
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3457
3589
  let baseOptions;
@@ -3502,8 +3634,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3502
3634
  // verify required parameter 'enquiryId' is not null or undefined
3503
3635
  assertParamExists('getCustomerEnquiry', 'enquiryId', enquiryId)
3504
3636
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
3505
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3506
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3637
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3638
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3507
3639
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3508
3640
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3509
3641
  let baseOptions;
@@ -3556,7 +3688,7 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3556
3688
  // verify required parameter 'platformId' is not null or undefined
3557
3689
  assertParamExists('listCustomerEnquiries', 'platformId', platformId)
3558
3690
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries`
3559
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3691
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3560
3692
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3561
3693
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3562
3694
  let baseOptions;
@@ -3631,8 +3763,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3631
3763
  // verify required parameter 'enquiryId' is not null or undefined
3632
3764
  assertParamExists('listCustomerEnquiryLogs', 'enquiryId', enquiryId)
3633
3765
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs`
3634
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3635
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3766
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3767
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3636
3768
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3637
3769
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3638
3770
  let baseOptions;
@@ -3686,8 +3818,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3686
3818
  // verify required parameter 'updateCustomerEnquiryRequest' is not null or undefined
3687
3819
  assertParamExists('updateCustomerEnquiry', 'updateCustomerEnquiryRequest', updateCustomerEnquiryRequest)
3688
3820
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
3689
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3690
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3821
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3822
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3691
3823
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3692
3824
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3693
3825
  let baseOptions;
@@ -4081,7 +4213,7 @@ export const ModerationApiAxiosParamCreator = function (configuration?: Configur
4081
4213
  // verify required parameter 'moderationItemId' is not null or undefined
4082
4214
  assertParamExists('updateModerationItem', 'moderationItemId', moderationItemId)
4083
4215
  const localVarPath = `/v1/platform/moderate/{moderationItemId}`
4084
- .replace(`{${"moderationItemId"}}`, encodeURIComponent(String(moderationItemId)));
4216
+ .replace('{moderationItemId}', encodeURIComponent(String(moderationItemId)));
4085
4217
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4086
4218
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4087
4219
  let baseOptions;
@@ -4223,8 +4355,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4223
4355
  // verify required parameter 'amendOrderRequest' is not null or undefined
4224
4356
  assertParamExists('amendOrder', 'amendOrderRequest', amendOrderRequest)
4225
4357
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/amend`
4226
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4227
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4358
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4359
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4228
4360
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4229
4361
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4230
4362
  let baseOptions;
@@ -4280,8 +4412,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4280
4412
  // verify required parameter 'confirmOrderRequest' is not null or undefined
4281
4413
  assertParamExists('confirmOrder', 'confirmOrderRequest', confirmOrderRequest)
4282
4414
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/confirm`
4283
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4284
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4415
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4416
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4285
4417
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4286
4418
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4287
4419
  let baseOptions;
@@ -4334,7 +4466,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4334
4466
  // verify required parameter 'createOrder' is not null or undefined
4335
4467
  assertParamExists('createOrder', 'createOrder', createOrder)
4336
4468
  const localVarPath = `/v1/platform/{platformId}/orders`
4337
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4469
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4338
4470
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4339
4471
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4340
4472
  let baseOptions;
@@ -4387,8 +4519,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4387
4519
  // verify required parameter 'orderId' is not null or undefined
4388
4520
  assertParamExists('createOrderChatChannel', 'orderId', orderId)
4389
4521
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/chat-channel`
4390
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4391
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4522
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4523
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4392
4524
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4393
4525
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4394
4526
  let baseOptions;
@@ -4442,7 +4574,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4442
4574
  // verify required parameter 'start' is not null or undefined
4443
4575
  assertParamExists('exportOrders', 'start', start)
4444
4576
  const localVarPath = `/v1/platform/{platformId}/orders/export`
4445
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4577
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4446
4578
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4447
4579
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4448
4580
  let baseOptions;
@@ -4513,8 +4645,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4513
4645
  // verify required parameter 'fulfillmentId' is not null or undefined
4514
4646
  assertParamExists('getFulfillment', 'fulfillmentId', fulfillmentId)
4515
4647
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
4516
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4517
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
4648
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4649
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4518
4650
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4519
4651
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4520
4652
  let baseOptions;
@@ -4565,8 +4697,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4565
4697
  // verify required parameter 'orderId' is not null or undefined
4566
4698
  assertParamExists('getOrder', 'orderId', orderId)
4567
4699
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
4568
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4569
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4700
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4701
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4570
4702
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4571
4703
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4572
4704
  let baseOptions;
@@ -4617,8 +4749,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4617
4749
  // verify required parameter 'orderId' is not null or undefined
4618
4750
  assertParamExists('getOrderReceipt', 'orderId', orderId)
4619
4751
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt`
4620
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4621
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4752
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4753
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4622
4754
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4623
4755
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4624
4756
  let baseOptions;
@@ -4669,8 +4801,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4669
4801
  // verify required parameter 'fulfillmentId' is not null or undefined
4670
4802
  assertParamExists('listAvailableFulfillers', 'fulfillmentId', fulfillmentId)
4671
4803
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}/available-fulfillers`
4672
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4673
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
4804
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4805
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4674
4806
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4675
4807
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4676
4808
  let baseOptions;
@@ -4727,7 +4859,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4727
4859
  // verify required parameter 'platformId' is not null or undefined
4728
4860
  assertParamExists('listOrders', 'platformId', platformId)
4729
4861
  const localVarPath = `/v1/platform/{platformId}/orders`
4730
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4862
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4731
4863
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4732
4864
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4733
4865
  let baseOptions;
@@ -4818,8 +4950,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4818
4950
  // verify required parameter 'orderId' is not null or undefined
4819
4951
  assertParamExists('retryPlatformPayment', 'orderId', orderId)
4820
4952
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/retryPlatformPayment`
4821
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4822
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4953
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4954
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4823
4955
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4824
4956
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4825
4957
  let baseOptions;
@@ -4873,8 +5005,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4873
5005
  // verify required parameter 'returnOrderRequest' is not null or undefined
4874
5006
  assertParamExists('returnOrder', 'returnOrderRequest', returnOrderRequest)
4875
5007
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/return`
4876
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4877
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5008
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5009
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4878
5010
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4879
5011
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4880
5012
  let baseOptions;
@@ -4927,8 +5059,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4927
5059
  // verify required parameter 'orderId' is not null or undefined
4928
5060
  assertParamExists('sendOrderReceipt', 'orderId', orderId)
4929
5061
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt/send`
4930
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4931
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5062
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5063
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4932
5064
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4933
5065
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4934
5066
  let baseOptions;
@@ -4982,8 +5114,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4982
5114
  // verify required parameter 'updateFulfillmentRequest' is not null or undefined
4983
5115
  assertParamExists('updateFulfillment', 'updateFulfillmentRequest', updateFulfillmentRequest)
4984
5116
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
4985
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4986
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
5117
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5118
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4987
5119
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4988
5120
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4989
5121
  let baseOptions;
@@ -5037,8 +5169,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
5037
5169
  // verify required parameter 'orderId' is not null or undefined
5038
5170
  assertParamExists('updateOrder', 'orderId', orderId)
5039
5171
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
5040
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5041
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5172
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5173
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
5042
5174
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5043
5175
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5044
5176
  let baseOptions;
@@ -5097,9 +5229,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
5097
5229
  // verify required parameter 'updatePlatformFulfillmentStyleApplicationRequest' is not null or undefined
5098
5230
  assertParamExists('updatePlatformFulfillmentStyleApplication', 'updatePlatformFulfillmentStyleApplicationRequest', updatePlatformFulfillmentStyleApplicationRequest)
5099
5231
  const localVarPath = `/v1/platform/{platformId}/styles/{styleId}/applications/{applicationId}`
5100
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5101
- .replace(`{${"styleId"}}`, encodeURIComponent(String(styleId)))
5102
- .replace(`{${"applicationId"}}`, encodeURIComponent(String(applicationId)));
5232
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5233
+ .replace('{styleId}', encodeURIComponent(String(styleId)))
5234
+ .replace('{applicationId}', encodeURIComponent(String(applicationId)));
5103
5235
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5104
5236
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5105
5237
  let baseOptions;
@@ -6501,7 +6633,7 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6501
6633
  // verify required parameter 'platformId' is not null or undefined
6502
6634
  assertParamExists('createPixel', 'platformId', platformId)
6503
6635
  const localVarPath = `/v1/platform/{platformId}/pixels`
6504
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
6636
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
6505
6637
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6506
6638
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6507
6639
  let baseOptions;
@@ -6566,8 +6698,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6566
6698
  // verify required parameter 'pixelId' is not null or undefined
6567
6699
  assertParamExists('deletePixel', 'pixelId', pixelId)
6568
6700
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6569
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6570
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6701
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6702
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6571
6703
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6572
6704
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6573
6705
  let baseOptions;
@@ -6618,8 +6750,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6618
6750
  // verify required parameter 'pixelId' is not null or undefined
6619
6751
  assertParamExists('getPixel', 'pixelId', pixelId)
6620
6752
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6621
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6622
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6753
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6754
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6623
6755
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6624
6756
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6625
6757
  let baseOptions;
@@ -6670,7 +6802,7 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6670
6802
  // verify required parameter 'platformId' is not null or undefined
6671
6803
  assertParamExists('listPixels', 'platformId', platformId)
6672
6804
  const localVarPath = `/v1/platform/{platformId}/pixels`
6673
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
6805
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
6674
6806
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6675
6807
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6676
6808
  let baseOptions;
@@ -6734,8 +6866,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6734
6866
  // verify required parameter 'pixelId' is not null or undefined
6735
6867
  assertParamExists('updatePixel', 'pixelId', pixelId)
6736
6868
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6737
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6738
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6869
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6870
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6739
6871
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6740
6872
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6741
6873
  let baseOptions;
@@ -7222,7 +7354,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
7222
7354
  // verify required parameter 'domain' is not null or undefined
7223
7355
  assertParamExists('deleteClientDomain', 'domain', domain)
7224
7356
  const localVarPath = `/v1/platform/client/domains/{domain}`
7225
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
7357
+ .replace('{domain}', encodeURIComponent(String(domain)));
7226
7358
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7227
7359
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7228
7360
  let baseOptions;
@@ -7270,7 +7402,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
7270
7402
  // verify required parameter 'domain' is not null or undefined
7271
7403
  assertParamExists('deleteDomain', 'domain', domain)
7272
7404
  const localVarPath = `/v1/platform/domains/{domain}`
7273
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
7405
+ .replace('{domain}', encodeURIComponent(String(domain)));
7274
7406
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7275
7407
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7276
7408
  let baseOptions;
@@ -7914,7 +8046,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
7914
8046
  // verify required parameter 'createReviewRequest' is not null or undefined
7915
8047
  assertParamExists('createReview', 'createReviewRequest', createReviewRequest)
7916
8048
  const localVarPath = `/v1/platform/{platformId}/reviews`
7917
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8049
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
7918
8050
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7919
8051
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7920
8052
  let baseOptions;
@@ -7996,7 +8128,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
7996
8128
  // verify required parameter 'start' is not null or undefined
7997
8129
  assertParamExists('exportReviews', 'start', start)
7998
8130
  const localVarPath = `/v1/platform/{platformId}/reviews/export`
7999
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8131
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8000
8132
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8001
8133
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8002
8134
  let baseOptions;
@@ -8059,8 +8191,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8059
8191
  // verify required parameter 'reviewId' is not null or undefined
8060
8192
  assertParamExists('getReview', 'reviewId', reviewId)
8061
8193
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}`
8062
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
8063
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
8194
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
8195
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
8064
8196
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8065
8197
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8066
8198
  let baseOptions;
@@ -8114,7 +8246,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8114
8246
  // verify required parameter 'platformId' is not null or undefined
8115
8247
  assertParamExists('listReviews', 'platformId', platformId)
8116
8248
  const localVarPath = `/v1/platform/{platformId}/reviews`
8117
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8249
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8118
8250
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8119
8251
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8120
8252
  let baseOptions;
@@ -8194,8 +8326,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8194
8326
  // verify required parameter 'reviewId' is not null or undefined
8195
8327
  assertParamExists('moderateReview', 'reviewId', reviewId)
8196
8328
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}/moderate`
8197
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
8198
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
8329
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
8330
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
8199
8331
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8200
8332
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8201
8333
  let baseOptions;
@@ -8630,7 +8762,7 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
8630
8762
  // verify required parameter 'platformId' is not null or undefined
8631
8763
  assertParamExists('getTerms', 'platformId', platformId)
8632
8764
  const localVarPath = `/v1/platform/{platformId}/terms`
8633
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8765
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8634
8766
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8635
8767
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8636
8768
  let baseOptions;
@@ -8681,7 +8813,7 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
8681
8813
  // verify required parameter 'saveTermsRequest' is not null or undefined
8682
8814
  assertParamExists('saveTerms', 'saveTermsRequest', saveTermsRequest)
8683
8815
  const localVarPath = `/v1/platform/{platformId}/terms`
8684
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8816
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8685
8817
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8686
8818
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8687
8819
  let baseOptions;