@teemill/platform 0.69.0 → 0.70.0

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