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