@teemill/platform 0.68.0 → 0.70.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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.68.0
7
+ * The version of the OpenAPI document: 0.70.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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
@@ -1052,6 +1076,10 @@ export interface Platform {
1052
1076
  * The maximum number of days it can take to dispatch an order to adjust the comms in cart, receipt and CX.
1053
1077
  */
1054
1078
  'slaFloat': number;
1079
+ /**
1080
+ * The maximum number of days it can take to dispatch an order containing products with application technologies, to adjust the comms in cart, receipt and CX.
1081
+ */
1082
+ 'slaApplicationFloat': number;
1055
1083
  }
1056
1084
  export interface PlatformLogo {
1057
1085
  'url': string;
@@ -1338,6 +1366,10 @@ export interface UpdatePlatformRequest {
1338
1366
  * Set the maximum number of days it can take to dispatch an order to adjust the comms in cart, receipt and CX.
1339
1367
  */
1340
1368
  'slaFloat'?: number;
1369
+ /**
1370
+ * Set the maximum number of days it can take to dispatch an order containing products with application technologies, to adjust the comms in cart, receipt and CX.
1371
+ */
1372
+ 'slaApplicationFloat'?: number;
1341
1373
  }
1342
1374
  export interface ValidationError {
1343
1375
  'message': string;
@@ -1383,8 +1415,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1383
1415
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1384
1416
  assertParamExists('approveConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1385
1417
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}/approve`
1386
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1387
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1418
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1419
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1388
1420
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1389
1421
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1390
1422
  let baseOptions;
@@ -1435,8 +1467,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1435
1467
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1436
1468
  assertParamExists('deleteConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1437
1469
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
1438
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1439
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1470
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1471
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1440
1472
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1441
1473
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1442
1474
  let baseOptions;
@@ -1470,6 +1502,59 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1470
1502
  options: localVarRequestOptions,
1471
1503
  };
1472
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
+ },
1473
1558
  /**
1474
1559
  * Get a concierge candidate by a given concierge candidate ID.
1475
1560
  * @summary Get concierge candidate
@@ -1487,8 +1572,8 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1487
1572
  // verify required parameter 'conciergeCandidateId' is not null or undefined
1488
1573
  assertParamExists('getConciergeCandidate', 'conciergeCandidateId', conciergeCandidateId)
1489
1574
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates/{conciergeCandidateId}`
1490
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1491
- .replace(`{${"conciergeCandidateId"}}`, encodeURIComponent(String(conciergeCandidateId)));
1575
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
1576
+ .replace('{conciergeCandidateId}', encodeURIComponent(String(conciergeCandidateId)));
1492
1577
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1493
1578
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1494
1579
  let baseOptions;
@@ -1539,7 +1624,7 @@ export const ConciergeCandidatesApiAxiosParamCreator = function (configuration?:
1539
1624
  // verify required parameter 'platformId' is not null or undefined
1540
1625
  assertParamExists('listConciergeCandidates', 'platformId', platformId)
1541
1626
  const localVarPath = `/v1/platform/{platformId}/concierge-candidates`
1542
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
1627
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1543
1628
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1544
1629
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1545
1630
  let baseOptions;
@@ -1624,6 +1709,21 @@ export const ConciergeCandidatesApiFp = function(configuration?: Configuration)
1624
1709
  const localVarOperationServerBasePath = operationServerMap['ConciergeCandidatesApi.deleteConciergeCandidate']?.[localVarOperationServerIndex]?.url;
1625
1710
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1626
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
+ },
1627
1727
  /**
1628
1728
  * Get a concierge candidate by a given concierge candidate ID.
1629
1729
  * @summary Get concierge candidate
@@ -1685,6 +1785,16 @@ export const ConciergeCandidatesApiFactory = function (configuration?: Configura
1685
1785
  deleteConciergeCandidate(requestParameters: ConciergeCandidatesApiDeleteConciergeCandidateRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1686
1786
  return localVarFp.deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(axios, basePath));
1687
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
+ },
1688
1798
  /**
1689
1799
  * Get a concierge candidate by a given concierge candidate ID.
1690
1800
  * @summary Get concierge candidate
@@ -1748,6 +1858,26 @@ export interface ConciergeCandidatesApiDeleteConciergeCandidateRequest {
1748
1858
  readonly conciergeCandidateId: string
1749
1859
  }
1750
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
+
1751
1881
  /**
1752
1882
  * Request parameters for getConciergeCandidate operation in ConciergeCandidatesApi.
1753
1883
  */
@@ -1824,6 +1954,17 @@ export class ConciergeCandidatesApi extends BaseAPI {
1824
1954
  return ConciergeCandidatesApiFp(this.configuration).deleteConciergeCandidate(requestParameters.project, requestParameters.platformId, requestParameters.conciergeCandidateId, options).then((request) => request(this.axios, this.basePath));
1825
1955
  }
1826
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
+
1827
1968
  /**
1828
1969
  * Get a concierge candidate by a given concierge candidate ID.
1829
1970
  * @summary Get concierge candidate
@@ -1871,8 +2012,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1871
2012
  // verify required parameter 'customerId' is not null or undefined
1872
2013
  assertParamExists('createCustomerChatChannel', 'customerId', customerId)
1873
2014
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/chat-channel`
1874
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1875
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2015
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2016
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
1876
2017
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1877
2018
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1878
2019
  let baseOptions;
@@ -1923,8 +2064,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1923
2064
  // verify required parameter 'customerId' is not null or undefined
1924
2065
  assertParamExists('createCustomerDataDeletionRequest', 'customerId', customerId)
1925
2066
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
1926
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
1927
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2067
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2068
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
1928
2069
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1929
2070
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1930
2071
  let baseOptions;
@@ -1988,7 +2129,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
1988
2129
  // verify required parameter 'platformId' is not null or undefined
1989
2130
  assertParamExists('exportCustomers', 'platformId', platformId)
1990
2131
  const localVarPath = `/v1/platform/{platformId}/customers/export`
1991
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2132
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
1992
2133
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1993
2134
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1994
2135
  let baseOptions;
@@ -2105,8 +2246,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2105
2246
  // verify required parameter 'customerId' is not null or undefined
2106
2247
  assertParamExists('getCustomer', 'customerId', customerId)
2107
2248
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
2108
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2109
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2249
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2250
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2110
2251
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2111
2252
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2112
2253
  let baseOptions;
@@ -2157,8 +2298,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2157
2298
  // verify required parameter 'customerId' is not null or undefined
2158
2299
  assertParamExists('getCustomerDataDeletionRequest', 'customerId', customerId)
2159
2300
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}/data-deletion-request`
2160
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2161
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2301
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2302
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2162
2303
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2163
2304
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2164
2305
  let baseOptions;
@@ -2209,7 +2350,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2209
2350
  // verify required parameter 'platformId' is not null or undefined
2210
2351
  assertParamExists('listCustomerTags', 'platformId', platformId)
2211
2352
  const localVarPath = `/v1/platform/{platformId}/customers/tags`
2212
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2353
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2213
2354
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2214
2355
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2215
2356
  let baseOptions;
@@ -2288,7 +2429,7 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2288
2429
  // verify required parameter 'platformId' is not null or undefined
2289
2430
  assertParamExists('listCustomers', 'platformId', platformId)
2290
2431
  const localVarPath = `/v1/platform/{platformId}/customers`
2291
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
2432
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
2292
2433
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2293
2434
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2294
2435
  let baseOptions;
@@ -2418,8 +2559,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
2418
2559
  // verify required parameter 'customerId' is not null or undefined
2419
2560
  assertParamExists('updateCustomer', 'customerId', customerId)
2420
2561
  const localVarPath = `/v1/platform/{platformId}/customers/{customerId}`
2421
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
2422
- .replace(`{${"customerId"}}`, encodeURIComponent(String(customerId)));
2562
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
2563
+ .replace('{customerId}', encodeURIComponent(String(customerId)));
2423
2564
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2424
2565
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2425
2566
  let baseOptions;
@@ -3199,7 +3340,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
3199
3340
  // verify required parameter 'platformId' is not null or undefined
3200
3341
  assertParamExists('getDashboard', 'platformId', platformId)
3201
3342
  const localVarPath = `/v1/platform/{platformId}/dashboard`
3202
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3343
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3203
3344
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3204
3345
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3205
3346
  let baseOptions;
@@ -3250,7 +3391,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
3250
3391
  // verify required parameter 'saveDashboardRequest' is not null or undefined
3251
3392
  assertParamExists('saveDashboard', 'saveDashboardRequest', saveDashboardRequest)
3252
3393
  const localVarPath = `/v1/platform/{platformId}/dashboard`
3253
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3394
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3254
3395
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3255
3396
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3256
3397
  let baseOptions;
@@ -3442,8 +3583,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3442
3583
  // verify required parameter 'enquiryId' is not null or undefined
3443
3584
  assertParamExists('createCustomerEnquiryChatChannel', 'enquiryId', enquiryId)
3444
3585
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/chat-channel`
3445
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3446
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3586
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3587
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3447
3588
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3448
3589
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3449
3590
  let baseOptions;
@@ -3494,8 +3635,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3494
3635
  // verify required parameter 'enquiryId' is not null or undefined
3495
3636
  assertParamExists('getCustomerEnquiry', 'enquiryId', enquiryId)
3496
3637
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
3497
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3498
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3638
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3639
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3499
3640
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3500
3641
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3501
3642
  let baseOptions;
@@ -3548,7 +3689,7 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3548
3689
  // verify required parameter 'platformId' is not null or undefined
3549
3690
  assertParamExists('listCustomerEnquiries', 'platformId', platformId)
3550
3691
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries`
3551
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
3692
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
3552
3693
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3553
3694
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3554
3695
  let baseOptions;
@@ -3623,8 +3764,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3623
3764
  // verify required parameter 'enquiryId' is not null or undefined
3624
3765
  assertParamExists('listCustomerEnquiryLogs', 'enquiryId', enquiryId)
3625
3766
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}/logs`
3626
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3627
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3767
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3768
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3628
3769
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3629
3770
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3630
3771
  let baseOptions;
@@ -3678,8 +3819,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
3678
3819
  // verify required parameter 'updateCustomerEnquiryRequest' is not null or undefined
3679
3820
  assertParamExists('updateCustomerEnquiry', 'updateCustomerEnquiryRequest', updateCustomerEnquiryRequest)
3680
3821
  const localVarPath = `/v1/platform/{platformId}/customers/enquiries/{enquiryId}`
3681
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
3682
- .replace(`{${"enquiryId"}}`, encodeURIComponent(String(enquiryId)));
3822
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
3823
+ .replace('{enquiryId}', encodeURIComponent(String(enquiryId)));
3683
3824
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3684
3825
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3685
3826
  let baseOptions;
@@ -4073,7 +4214,7 @@ export const ModerationApiAxiosParamCreator = function (configuration?: Configur
4073
4214
  // verify required parameter 'moderationItemId' is not null or undefined
4074
4215
  assertParamExists('updateModerationItem', 'moderationItemId', moderationItemId)
4075
4216
  const localVarPath = `/v1/platform/moderate/{moderationItemId}`
4076
- .replace(`{${"moderationItemId"}}`, encodeURIComponent(String(moderationItemId)));
4217
+ .replace('{moderationItemId}', encodeURIComponent(String(moderationItemId)));
4077
4218
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4078
4219
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4079
4220
  let baseOptions;
@@ -4215,8 +4356,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4215
4356
  // verify required parameter 'amendOrderRequest' is not null or undefined
4216
4357
  assertParamExists('amendOrder', 'amendOrderRequest', amendOrderRequest)
4217
4358
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/amend`
4218
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4219
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4359
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4360
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4220
4361
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4221
4362
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4222
4363
  let baseOptions;
@@ -4272,8 +4413,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4272
4413
  // verify required parameter 'confirmOrderRequest' is not null or undefined
4273
4414
  assertParamExists('confirmOrder', 'confirmOrderRequest', confirmOrderRequest)
4274
4415
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/confirm`
4275
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4276
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4416
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4417
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4277
4418
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4278
4419
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4279
4420
  let baseOptions;
@@ -4326,7 +4467,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4326
4467
  // verify required parameter 'createOrder' is not null or undefined
4327
4468
  assertParamExists('createOrder', 'createOrder', createOrder)
4328
4469
  const localVarPath = `/v1/platform/{platformId}/orders`
4329
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4470
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4330
4471
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4331
4472
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4332
4473
  let baseOptions;
@@ -4379,8 +4520,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4379
4520
  // verify required parameter 'orderId' is not null or undefined
4380
4521
  assertParamExists('createOrderChatChannel', 'orderId', orderId)
4381
4522
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/chat-channel`
4382
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4383
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4523
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4524
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4384
4525
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4385
4526
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4386
4527
  let baseOptions;
@@ -4434,7 +4575,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4434
4575
  // verify required parameter 'start' is not null or undefined
4435
4576
  assertParamExists('exportOrders', 'start', start)
4436
4577
  const localVarPath = `/v1/platform/{platformId}/orders/export`
4437
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4578
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4438
4579
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4439
4580
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4440
4581
  let baseOptions;
@@ -4505,8 +4646,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4505
4646
  // verify required parameter 'fulfillmentId' is not null or undefined
4506
4647
  assertParamExists('getFulfillment', 'fulfillmentId', fulfillmentId)
4507
4648
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
4508
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4509
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
4649
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4650
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4510
4651
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4511
4652
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4512
4653
  let baseOptions;
@@ -4557,8 +4698,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4557
4698
  // verify required parameter 'orderId' is not null or undefined
4558
4699
  assertParamExists('getOrder', 'orderId', orderId)
4559
4700
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
4560
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4561
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4701
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4702
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4562
4703
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4563
4704
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4564
4705
  let baseOptions;
@@ -4609,8 +4750,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4609
4750
  // verify required parameter 'orderId' is not null or undefined
4610
4751
  assertParamExists('getOrderReceipt', 'orderId', orderId)
4611
4752
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt`
4612
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4613
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4753
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4754
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4614
4755
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4615
4756
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4616
4757
  let baseOptions;
@@ -4661,8 +4802,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4661
4802
  // verify required parameter 'fulfillmentId' is not null or undefined
4662
4803
  assertParamExists('listAvailableFulfillers', 'fulfillmentId', fulfillmentId)
4663
4804
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}/available-fulfillers`
4664
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4665
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
4805
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4806
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4666
4807
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4667
4808
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4668
4809
  let baseOptions;
@@ -4719,7 +4860,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4719
4860
  // verify required parameter 'platformId' is not null or undefined
4720
4861
  assertParamExists('listOrders', 'platformId', platformId)
4721
4862
  const localVarPath = `/v1/platform/{platformId}/orders`
4722
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
4863
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
4723
4864
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4724
4865
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4725
4866
  let baseOptions;
@@ -4810,8 +4951,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4810
4951
  // verify required parameter 'orderId' is not null or undefined
4811
4952
  assertParamExists('retryPlatformPayment', 'orderId', orderId)
4812
4953
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/retryPlatformPayment`
4813
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4814
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
4954
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
4955
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4815
4956
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4816
4957
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4817
4958
  let baseOptions;
@@ -4865,8 +5006,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4865
5006
  // verify required parameter 'returnOrderRequest' is not null or undefined
4866
5007
  assertParamExists('returnOrder', 'returnOrderRequest', returnOrderRequest)
4867
5008
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/return`
4868
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4869
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5009
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5010
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4870
5011
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4871
5012
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4872
5013
  let baseOptions;
@@ -4919,8 +5060,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4919
5060
  // verify required parameter 'orderId' is not null or undefined
4920
5061
  assertParamExists('sendOrderReceipt', 'orderId', orderId)
4921
5062
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}/receipt/send`
4922
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4923
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5063
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5064
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
4924
5065
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4925
5066
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4926
5067
  let baseOptions;
@@ -4974,8 +5115,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
4974
5115
  // verify required parameter 'updateFulfillmentRequest' is not null or undefined
4975
5116
  assertParamExists('updateFulfillment', 'updateFulfillmentRequest', updateFulfillmentRequest)
4976
5117
  const localVarPath = `/v1/platform/{platformId}/fulfillments/{fulfillmentId}`
4977
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
4978
- .replace(`{${"fulfillmentId"}}`, encodeURIComponent(String(fulfillmentId)));
5118
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5119
+ .replace('{fulfillmentId}', encodeURIComponent(String(fulfillmentId)));
4979
5120
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4980
5121
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4981
5122
  let baseOptions;
@@ -5029,8 +5170,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
5029
5170
  // verify required parameter 'orderId' is not null or undefined
5030
5171
  assertParamExists('updateOrder', 'orderId', orderId)
5031
5172
  const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
5032
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5033
- .replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
5173
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5174
+ .replace('{orderId}', encodeURIComponent(String(orderId)));
5034
5175
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5035
5176
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5036
5177
  let baseOptions;
@@ -5089,9 +5230,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
5089
5230
  // verify required parameter 'updatePlatformFulfillmentStyleApplicationRequest' is not null or undefined
5090
5231
  assertParamExists('updatePlatformFulfillmentStyleApplication', 'updatePlatformFulfillmentStyleApplicationRequest', updatePlatformFulfillmentStyleApplicationRequest)
5091
5232
  const localVarPath = `/v1/platform/{platformId}/styles/{styleId}/applications/{applicationId}`
5092
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
5093
- .replace(`{${"styleId"}}`, encodeURIComponent(String(styleId)))
5094
- .replace(`{${"applicationId"}}`, encodeURIComponent(String(applicationId)));
5233
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
5234
+ .replace('{styleId}', encodeURIComponent(String(styleId)))
5235
+ .replace('{applicationId}', encodeURIComponent(String(applicationId)));
5095
5236
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5096
5237
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
5097
5238
  let baseOptions;
@@ -6493,7 +6634,7 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6493
6634
  // verify required parameter 'platformId' is not null or undefined
6494
6635
  assertParamExists('createPixel', 'platformId', platformId)
6495
6636
  const localVarPath = `/v1/platform/{platformId}/pixels`
6496
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
6637
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
6497
6638
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6498
6639
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6499
6640
  let baseOptions;
@@ -6558,8 +6699,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6558
6699
  // verify required parameter 'pixelId' is not null or undefined
6559
6700
  assertParamExists('deletePixel', 'pixelId', pixelId)
6560
6701
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6561
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6562
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6702
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6703
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6563
6704
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6564
6705
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6565
6706
  let baseOptions;
@@ -6610,8 +6751,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6610
6751
  // verify required parameter 'pixelId' is not null or undefined
6611
6752
  assertParamExists('getPixel', 'pixelId', pixelId)
6612
6753
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6613
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6614
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6754
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6755
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6615
6756
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6616
6757
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6617
6758
  let baseOptions;
@@ -6662,7 +6803,7 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6662
6803
  // verify required parameter 'platformId' is not null or undefined
6663
6804
  assertParamExists('listPixels', 'platformId', platformId)
6664
6805
  const localVarPath = `/v1/platform/{platformId}/pixels`
6665
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
6806
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
6666
6807
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6667
6808
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6668
6809
  let baseOptions;
@@ -6726,8 +6867,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
6726
6867
  // verify required parameter 'pixelId' is not null or undefined
6727
6868
  assertParamExists('updatePixel', 'pixelId', pixelId)
6728
6869
  const localVarPath = `/v1/platform/{platformId}/pixels/{pixelId}`
6729
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
6730
- .replace(`{${"pixelId"}}`, encodeURIComponent(String(pixelId)));
6870
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
6871
+ .replace('{pixelId}', encodeURIComponent(String(pixelId)));
6731
6872
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
6732
6873
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
6733
6874
  let baseOptions;
@@ -7214,7 +7355,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
7214
7355
  // verify required parameter 'domain' is not null or undefined
7215
7356
  assertParamExists('deleteClientDomain', 'domain', domain)
7216
7357
  const localVarPath = `/v1/platform/client/domains/{domain}`
7217
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
7358
+ .replace('{domain}', encodeURIComponent(String(domain)));
7218
7359
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7219
7360
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7220
7361
  let baseOptions;
@@ -7262,7 +7403,7 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
7262
7403
  // verify required parameter 'domain' is not null or undefined
7263
7404
  assertParamExists('deleteDomain', 'domain', domain)
7264
7405
  const localVarPath = `/v1/platform/domains/{domain}`
7265
- .replace(`{${"domain"}}`, encodeURIComponent(String(domain)));
7406
+ .replace('{domain}', encodeURIComponent(String(domain)));
7266
7407
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7267
7408
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7268
7409
  let baseOptions;
@@ -7906,7 +8047,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
7906
8047
  // verify required parameter 'createReviewRequest' is not null or undefined
7907
8048
  assertParamExists('createReview', 'createReviewRequest', createReviewRequest)
7908
8049
  const localVarPath = `/v1/platform/{platformId}/reviews`
7909
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8050
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
7910
8051
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7911
8052
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7912
8053
  let baseOptions;
@@ -7988,7 +8129,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
7988
8129
  // verify required parameter 'start' is not null or undefined
7989
8130
  assertParamExists('exportReviews', 'start', start)
7990
8131
  const localVarPath = `/v1/platform/{platformId}/reviews/export`
7991
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8132
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
7992
8133
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7993
8134
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7994
8135
  let baseOptions;
@@ -8051,8 +8192,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8051
8192
  // verify required parameter 'reviewId' is not null or undefined
8052
8193
  assertParamExists('getReview', 'reviewId', reviewId)
8053
8194
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}`
8054
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
8055
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
8195
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
8196
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
8056
8197
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8057
8198
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8058
8199
  let baseOptions;
@@ -8106,7 +8247,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8106
8247
  // verify required parameter 'platformId' is not null or undefined
8107
8248
  assertParamExists('listReviews', 'platformId', platformId)
8108
8249
  const localVarPath = `/v1/platform/{platformId}/reviews`
8109
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8250
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8110
8251
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8111
8252
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8112
8253
  let baseOptions;
@@ -8186,8 +8327,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
8186
8327
  // verify required parameter 'reviewId' is not null or undefined
8187
8328
  assertParamExists('moderateReview', 'reviewId', reviewId)
8188
8329
  const localVarPath = `/v1/platform/{platformId}/reviews/{reviewId}/moderate`
8189
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
8190
- .replace(`{${"reviewId"}}`, encodeURIComponent(String(reviewId)));
8330
+ .replace('{platformId}', encodeURIComponent(String(platformId)))
8331
+ .replace('{reviewId}', encodeURIComponent(String(reviewId)));
8191
8332
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8192
8333
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8193
8334
  let baseOptions;
@@ -8622,7 +8763,7 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
8622
8763
  // verify required parameter 'platformId' is not null or undefined
8623
8764
  assertParamExists('getTerms', 'platformId', platformId)
8624
8765
  const localVarPath = `/v1/platform/{platformId}/terms`
8625
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8766
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8626
8767
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8627
8768
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8628
8769
  let baseOptions;
@@ -8673,7 +8814,7 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
8673
8814
  // verify required parameter 'saveTermsRequest' is not null or undefined
8674
8815
  assertParamExists('saveTerms', 'saveTermsRequest', saveTermsRequest)
8675
8816
  const localVarPath = `/v1/platform/{platformId}/terms`
8676
- .replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)));
8817
+ .replace('{platformId}', encodeURIComponent(String(platformId)));
8677
8818
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
8678
8819
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8679
8820
  let baseOptions;