yellowgrid-api-ts 3.2.117 → 3.2.118
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/VERSION +1 -1
- package/api.ts +173 -149
- package/configuration.ts +2 -2
- package/dist/api.d.ts +29 -5
- package/dist/api.js +144 -144
- package/dist/configuration.js +2 -2
- package/docs/AbstractOrderRequestDTO.md +1 -1
- package/docs/AdminOrderRequestDTO.md +1 -1
- package/docs/CustomerOrderRequestDTO.md +1 -1
- package/docs/DetailedOrderRequestDTO.md +1 -1
- package/docs/ProductSummaryDTO.md +2 -2
- package/docs/ProspectDTO.md +2 -2
- package/docs/RecordingsBackupInfoDTO.md +2 -2
- package/docs/ShipmentRequestDTO.md +2 -2
- package/docs/TcxKeySummaryDTO.md +1 -1
- package/openapitools.json +1 -1
- package/package.json +2 -2
package/api.ts
CHANGED
|
@@ -40,6 +40,9 @@ export interface AbstractOrderRequestDTO {
|
|
|
40
40
|
* Provisioning URL
|
|
41
41
|
*/
|
|
42
42
|
'provisioningUrl'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
* Shipping Address
|
|
45
|
+
*/
|
|
43
46
|
'shippingAddress'?: AddressModel | null;
|
|
44
47
|
/**
|
|
45
48
|
* Part Ship Order
|
|
@@ -546,6 +549,9 @@ export interface AdminOrderRequestDTO {
|
|
|
546
549
|
* Provisioning URL
|
|
547
550
|
*/
|
|
548
551
|
'provisioningUrl'?: string | null;
|
|
552
|
+
/**
|
|
553
|
+
* Shipping Address
|
|
554
|
+
*/
|
|
549
555
|
'shippingAddress'?: AddressModel | null;
|
|
550
556
|
/**
|
|
551
557
|
* Part Ship Order
|
|
@@ -1666,6 +1672,9 @@ export interface CustomerOrderRequestDTO {
|
|
|
1666
1672
|
* Provisioning URL
|
|
1667
1673
|
*/
|
|
1668
1674
|
'provisioningUrl'?: string | null;
|
|
1675
|
+
/**
|
|
1676
|
+
* Shipping Address
|
|
1677
|
+
*/
|
|
1669
1678
|
'shippingAddress'?: AddressModel | null;
|
|
1670
1679
|
/**
|
|
1671
1680
|
* Part Ship Order
|
|
@@ -1815,6 +1824,9 @@ export interface DetailedOrderRequestDTO {
|
|
|
1815
1824
|
* Provisioning URL
|
|
1816
1825
|
*/
|
|
1817
1826
|
'provisioningUrl'?: string | null;
|
|
1827
|
+
/**
|
|
1828
|
+
* Shipping Address
|
|
1829
|
+
*/
|
|
1818
1830
|
'shippingAddress'?: AddressModel | null;
|
|
1819
1831
|
/**
|
|
1820
1832
|
* Part Ship Order
|
|
@@ -4315,7 +4327,7 @@ export interface ProductSummaryDTO {
|
|
|
4315
4327
|
*/
|
|
4316
4328
|
'stockProduct'?: boolean;
|
|
4317
4329
|
/**
|
|
4318
|
-
* Date
|
|
4330
|
+
* Due Date
|
|
4319
4331
|
*/
|
|
4320
4332
|
'dueDate'?: string | null;
|
|
4321
4333
|
/**
|
|
@@ -4330,6 +4342,9 @@ export interface ProductSummaryDTO {
|
|
|
4330
4342
|
* RRP Price
|
|
4331
4343
|
*/
|
|
4332
4344
|
'rrp'?: number | null;
|
|
4345
|
+
/**
|
|
4346
|
+
* 3CX Licence Details
|
|
4347
|
+
*/
|
|
4333
4348
|
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4334
4349
|
/**
|
|
4335
4350
|
* 3CX Hosting
|
|
@@ -4439,11 +4454,11 @@ export interface ProspectDTO {
|
|
|
4439
4454
|
*/
|
|
4440
4455
|
'telephone'?: string | null;
|
|
4441
4456
|
/**
|
|
4442
|
-
* Date
|
|
4457
|
+
* Last Order Date
|
|
4443
4458
|
*/
|
|
4444
4459
|
'lastOrderDate'?: string | null;
|
|
4445
4460
|
/**
|
|
4446
|
-
* Date
|
|
4461
|
+
* Call Back Date
|
|
4447
4462
|
*/
|
|
4448
4463
|
'callbackDate'?: string | null;
|
|
4449
4464
|
/**
|
|
@@ -4602,7 +4617,13 @@ export interface RecordingBackupAzureModel {
|
|
|
4602
4617
|
* Recordings Backup Info
|
|
4603
4618
|
*/
|
|
4604
4619
|
export interface RecordingsBackupInfoDTO {
|
|
4620
|
+
/**
|
|
4621
|
+
* Azure Backup Storage
|
|
4622
|
+
*/
|
|
4605
4623
|
'backup'?: RecordingBackupAzureModel | null;
|
|
4624
|
+
/**
|
|
4625
|
+
* 3CX Remote Storage
|
|
4626
|
+
*/
|
|
4606
4627
|
'storage'?: TcxRemoteStorageModel | null;
|
|
4607
4628
|
}
|
|
4608
4629
|
/**
|
|
@@ -5083,6 +5104,9 @@ export interface ShipmentRequestDTO {
|
|
|
5083
5104
|
* Courier
|
|
5084
5105
|
*/
|
|
5085
5106
|
'courier'?: ShipmentRequestDTOCourierEnum;
|
|
5107
|
+
/**
|
|
5108
|
+
* Address
|
|
5109
|
+
*/
|
|
5086
5110
|
'address'?: AddressModel | null;
|
|
5087
5111
|
/**
|
|
5088
5112
|
* Scanned Lines
|
|
@@ -5093,7 +5117,7 @@ export interface ShipmentRequestDTO {
|
|
|
5093
5117
|
*/
|
|
5094
5118
|
'service'?: string;
|
|
5095
5119
|
/**
|
|
5096
|
-
* Date
|
|
5120
|
+
* Ship Date
|
|
5097
5121
|
*/
|
|
5098
5122
|
'shipDate'?: string | null;
|
|
5099
5123
|
/**
|
|
@@ -6911,7 +6935,7 @@ export interface TcxKeySummaryDTO {
|
|
|
6911
6935
|
*/
|
|
6912
6936
|
'edition'?: string;
|
|
6913
6937
|
/**
|
|
6914
|
-
* Date
|
|
6938
|
+
* Expiry Date
|
|
6915
6939
|
*/
|
|
6916
6940
|
'expiry'?: string | null;
|
|
6917
6941
|
}
|
|
@@ -8086,7 +8110,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8086
8110
|
// verify required parameter 'id' is not null or undefined
|
|
8087
8111
|
assertParamExists('deleteDeleteClientCredentials', 'id', id)
|
|
8088
8112
|
const localVarPath = `/accounts/me/contacts/credentials/{id}`
|
|
8089
|
-
.replace(
|
|
8113
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
8090
8114
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8091
8115
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8092
8116
|
let baseOptions;
|
|
@@ -8119,7 +8143,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8119
8143
|
// verify required parameter 'email' is not null or undefined
|
|
8120
8144
|
assertParamExists('deleteUpdateAccountContact', 'email', email)
|
|
8121
8145
|
const localVarPath = `/accounts/me/contacts/{email}`
|
|
8122
|
-
.replace(
|
|
8146
|
+
.replace('{email}', encodeURIComponent(String(email)));
|
|
8123
8147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8124
8148
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8125
8149
|
let baseOptions;
|
|
@@ -8217,7 +8241,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8217
8241
|
// verify required parameter 'id' is not null or undefined
|
|
8218
8242
|
assertParamExists('getGetAccountDetailedSummary', 'id', id)
|
|
8219
8243
|
const localVarPath = `/accounts/{id}/summary`
|
|
8220
|
-
.replace(
|
|
8244
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
8221
8245
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8222
8246
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8223
8247
|
let baseOptions;
|
|
@@ -8595,7 +8619,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8595
8619
|
// verify required parameter 'email' is not null or undefined
|
|
8596
8620
|
assertParamExists('postSendEmailVerificationEmail', 'email', email)
|
|
8597
8621
|
const localVarPath = `/accounts/contacts/verify/{email}`
|
|
8598
|
-
.replace(
|
|
8622
|
+
.replace('{email}', encodeURIComponent(String(email)));
|
|
8599
8623
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8600
8624
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8601
8625
|
let baseOptions;
|
|
@@ -8709,7 +8733,7 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
8709
8733
|
// verify required parameter 'email' is not null or undefined
|
|
8710
8734
|
assertParamExists('putUpdateAccountContact', 'email', email)
|
|
8711
8735
|
const localVarPath = `/accounts/me/contacts/{email}`
|
|
8712
|
-
.replace(
|
|
8736
|
+
.replace('{email}', encodeURIComponent(String(email)));
|
|
8713
8737
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8714
8738
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8715
8739
|
let baseOptions;
|
|
@@ -9907,7 +9931,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
|
|
|
9907
9931
|
// verify required parameter 'id' is not null or undefined
|
|
9908
9932
|
assertParamExists('getGetDdisTcxWizard', 'id', id)
|
|
9909
9933
|
const localVarPath = `/tcx/wizards/sip/trunks/{id}/ddis`
|
|
9910
|
-
.replace(
|
|
9934
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
9911
9935
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
9912
9936
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
9913
9937
|
let baseOptions;
|
|
@@ -10116,7 +10140,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
|
|
|
10116
10140
|
// verify required parameter 'id' is not null or undefined
|
|
10117
10141
|
assertParamExists('getGetSipTrunkTcxWizard', 'id', id)
|
|
10118
10142
|
const localVarPath = `/tcx/wizards/sip/trunks/{id}`
|
|
10119
|
-
.replace(
|
|
10143
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
10120
10144
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10121
10145
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10122
10146
|
let baseOptions;
|
|
@@ -10701,7 +10725,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
|
|
|
10701
10725
|
// verify required parameter 'id' is not null or undefined
|
|
10702
10726
|
assertParamExists('postGetDdisTcxWizard', 'id', id)
|
|
10703
10727
|
const localVarPath = `/tcx/wizards/sip/trunks/{id}/ddis`
|
|
10704
|
-
.replace(
|
|
10728
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
10705
10729
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10706
10730
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10707
10731
|
let baseOptions;
|
|
@@ -12076,7 +12100,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12076
12100
|
// verify required parameter 'wizardId' is not null or undefined
|
|
12077
12101
|
assertParamExists('getGetDetails', 'wizardId', wizardId)
|
|
12078
12102
|
const localVarPath = `/tcx/installations/{wizard_id}/details`
|
|
12079
|
-
.replace(
|
|
12103
|
+
.replace('{wizard_id}', encodeURIComponent(String(wizardId)));
|
|
12080
12104
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12081
12105
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12082
12106
|
let baseOptions;
|
|
@@ -12178,7 +12202,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12178
12202
|
// verify required parameter 'customerId' is not null or undefined
|
|
12179
12203
|
assertParamExists('patchChangeInstanceOwner', 'customerId', customerId)
|
|
12180
12204
|
const localVarPath = `/tcx/installations/{instance_id}/owner`
|
|
12181
|
-
.replace(
|
|
12205
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12182
12206
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12183
12207
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12184
12208
|
let baseOptions;
|
|
@@ -12218,7 +12242,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12218
12242
|
// verify required parameter 'enable' is not null or undefined
|
|
12219
12243
|
assertParamExists('patchUpdateAutoFailover', 'enable', enable)
|
|
12220
12244
|
const localVarPath = `/tcx/installations/{instance_id}/failover/auto`
|
|
12221
|
-
.replace(
|
|
12245
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12222
12246
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12223
12247
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12224
12248
|
let baseOptions;
|
|
@@ -12258,7 +12282,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12258
12282
|
// verify required parameter 'gigabytes' is not null or undefined
|
|
12259
12283
|
assertParamExists('postAddDisk', 'gigabytes', gigabytes)
|
|
12260
12284
|
const localVarPath = `/tcx/installations/{instance_id}/disk`
|
|
12261
|
-
.replace(
|
|
12285
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12262
12286
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12263
12287
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12264
12288
|
let baseOptions;
|
|
@@ -12301,7 +12325,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12301
12325
|
// verify required parameter 'ipAddress' is not null or undefined
|
|
12302
12326
|
assertParamExists('postCreateSshUser', 'ipAddress', ipAddress)
|
|
12303
12327
|
const localVarPath = `/tcx/installations/{instance_id}/create/user/root`
|
|
12304
|
-
.replace(
|
|
12328
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12305
12329
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12306
12330
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12307
12331
|
let baseOptions;
|
|
@@ -12343,7 +12367,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12343
12367
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12344
12368
|
assertParamExists('postDeleteInstance', 'instanceId', instanceId)
|
|
12345
12369
|
const localVarPath = `/tcx/installations/{instance_id}/delete`
|
|
12346
|
-
.replace(
|
|
12370
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12347
12371
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12348
12372
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12349
12373
|
let baseOptions;
|
|
@@ -12380,7 +12404,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12380
12404
|
// verify required parameter 'gigabytes' is not null or undefined
|
|
12381
12405
|
assertParamExists('postExtendDisk', 'gigabytes', gigabytes)
|
|
12382
12406
|
const localVarPath = `/tcx/installations/{instance_id}/disk/extend`
|
|
12383
|
-
.replace(
|
|
12407
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12384
12408
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12385
12409
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12386
12410
|
let baseOptions;
|
|
@@ -12424,7 +12448,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12424
12448
|
// verify required parameter 'type' is not null or undefined
|
|
12425
12449
|
assertParamExists('postFailoverInstance', 'type', type)
|
|
12426
12450
|
const localVarPath = `/tcx/installations/{instance_id}/failover`
|
|
12427
|
-
.replace(
|
|
12451
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12428
12452
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12429
12453
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12430
12454
|
let baseOptions;
|
|
@@ -12461,7 +12485,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12461
12485
|
// verify required parameter 'sbcId' is not null or undefined
|
|
12462
12486
|
assertParamExists('postInstallTcxSbc', 'sbcId', sbcId)
|
|
12463
12487
|
const localVarPath = `/tcx/installations/sbcs/{sbc_id}/install`
|
|
12464
|
-
.replace(
|
|
12488
|
+
.replace('{sbc_id}', encodeURIComponent(String(sbcId)));
|
|
12465
12489
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12466
12490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12467
12491
|
let baseOptions;
|
|
@@ -12495,7 +12519,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12495
12519
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12496
12520
|
assertParamExists('postRebootInstance', 'instanceId', instanceId)
|
|
12497
12521
|
const localVarPath = `/tcx/installations/{instance_id}/reboot`
|
|
12498
|
-
.replace(
|
|
12522
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12499
12523
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12500
12524
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12501
12525
|
let baseOptions;
|
|
@@ -12532,7 +12556,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12532
12556
|
// verify required parameter 'size' is not null or undefined
|
|
12533
12557
|
assertParamExists('postResizeInstance', 'size', size)
|
|
12534
12558
|
const localVarPath = `/tcx/installations/{instance_id}/resize`
|
|
12535
|
-
.replace(
|
|
12559
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12536
12560
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12537
12561
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12538
12562
|
let baseOptions;
|
|
@@ -12574,7 +12598,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12574
12598
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12575
12599
|
assertParamExists('postRestartServices', 'instanceId', instanceId)
|
|
12576
12600
|
const localVarPath = `/tcx/installations/{instance_id}/services/restart`
|
|
12577
|
-
.replace(
|
|
12601
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12578
12602
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12579
12603
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12580
12604
|
let baseOptions;
|
|
@@ -12612,7 +12636,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12612
12636
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12613
12637
|
assertParamExists('postScheduledReboot', 'instanceId', instanceId)
|
|
12614
12638
|
const localVarPath = `/tcx/installations/{instance_id}/reboot/scheduled`
|
|
12615
|
-
.replace(
|
|
12639
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12616
12640
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12617
12641
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12618
12642
|
let baseOptions;
|
|
@@ -12650,7 +12674,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12650
12674
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12651
12675
|
assertParamExists('postSuspendInstance', 'instanceId', instanceId)
|
|
12652
12676
|
const localVarPath = `/tcx/installations/{instance_id}/suspend`
|
|
12653
|
-
.replace(
|
|
12677
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12654
12678
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12655
12679
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12656
12680
|
let baseOptions;
|
|
@@ -12687,7 +12711,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12687
12711
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12688
12712
|
assertParamExists('postTestLoginCredentials', 'instanceId', instanceId)
|
|
12689
12713
|
const localVarPath = `/tcx/installations/{instance_id}/tests/login`
|
|
12690
|
-
.replace(
|
|
12714
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12691
12715
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12692
12716
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12693
12717
|
let baseOptions;
|
|
@@ -12720,7 +12744,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12720
12744
|
// verify required parameter 'instanceId' is not null or undefined
|
|
12721
12745
|
assertParamExists('postUnsuspendInstance', 'instanceId', instanceId)
|
|
12722
12746
|
const localVarPath = `/tcx/installations/{instance_id}/unsuspend`
|
|
12723
|
-
.replace(
|
|
12747
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12724
12748
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12725
12749
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12726
12750
|
let baseOptions;
|
|
@@ -12756,7 +12780,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12756
12780
|
// verify required parameter 'schedule' is not null or undefined
|
|
12757
12781
|
assertParamExists('postUpgradeDebian', 'schedule', schedule)
|
|
12758
12782
|
const localVarPath = `/tcx/installations/{instance_id}/debian/upgrade`
|
|
12759
|
-
.replace(
|
|
12783
|
+
.replace('{instance_id}', encodeURIComponent(String(instanceId)));
|
|
12760
12784
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12761
12785
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12762
12786
|
let baseOptions;
|
|
@@ -12794,7 +12818,7 @@ export const Class3CXInstallationsApiAxiosParamCreator = function (configuration
|
|
|
12794
12818
|
// verify required parameter 'wizardId' is not null or undefined
|
|
12795
12819
|
assertParamExists('putGetDetails', 'wizardId', wizardId)
|
|
12796
12820
|
const localVarPath = `/tcx/installations/{wizard_id}/details`
|
|
12797
|
-
.replace(
|
|
12821
|
+
.replace('{wizard_id}', encodeURIComponent(String(wizardId)));
|
|
12798
12822
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12799
12823
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12800
12824
|
let baseOptions;
|
|
@@ -13727,8 +13751,8 @@ export const Class3CXIntegrationsApiAxiosParamCreator = function (configuration?
|
|
|
13727
13751
|
// verify required parameter 'ref' is not null or undefined
|
|
13728
13752
|
assertParamExists('patchUpdateEtpOrderReference', 'ref', ref)
|
|
13729
13753
|
const localVarPath = `/tcx/integrations/edtechpro/{clientId}/schools/{schoolId}/orderReference`
|
|
13730
|
-
.replace(
|
|
13731
|
-
.replace(
|
|
13754
|
+
.replace('{clientId}', encodeURIComponent(String(clientId)))
|
|
13755
|
+
.replace('{schoolId}', encodeURIComponent(String(schoolId)));
|
|
13732
13756
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13733
13757
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13734
13758
|
let baseOptions;
|
|
@@ -14070,7 +14094,7 @@ export const Class3CXMultiTenantApiAxiosParamCreator = function (configuration?:
|
|
|
14070
14094
|
// verify required parameter 'reference' is not null or undefined
|
|
14071
14095
|
assertParamExists('deleteGetTenant', 'reference', reference)
|
|
14072
14096
|
const localVarPath = `/tcx/mt/tenants/{reference}`
|
|
14073
|
-
.replace(
|
|
14097
|
+
.replace('{reference}', encodeURIComponent(String(reference)));
|
|
14074
14098
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14075
14099
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14076
14100
|
let baseOptions;
|
|
@@ -14140,7 +14164,7 @@ export const Class3CXMultiTenantApiAxiosParamCreator = function (configuration?:
|
|
|
14140
14164
|
// verify required parameter 'reference' is not null or undefined
|
|
14141
14165
|
assertParamExists('getGetTenant', 'reference', reference)
|
|
14142
14166
|
const localVarPath = `/tcx/mt/tenants/{reference}`
|
|
14143
|
-
.replace(
|
|
14167
|
+
.replace('{reference}', encodeURIComponent(String(reference)));
|
|
14144
14168
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14145
14169
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14146
14170
|
let baseOptions;
|
|
@@ -14794,7 +14818,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
14794
14818
|
// verify required parameter 'id' is not null or undefined
|
|
14795
14819
|
assertParamExists('deleteGetAdminNumberPort', 'id', id)
|
|
14796
14820
|
const localVarPath = `/admin/sip/numbers/ports/{id}`
|
|
14797
|
-
.replace(
|
|
14821
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
14798
14822
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14799
14823
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14800
14824
|
let baseOptions;
|
|
@@ -14870,7 +14894,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
14870
14894
|
// verify required parameter 'id' is not null or undefined
|
|
14871
14895
|
assertParamExists('getGetAdminNumberPort', 'id', id)
|
|
14872
14896
|
const localVarPath = `/admin/sip/numbers/ports/{id}`
|
|
14873
|
-
.replace(
|
|
14897
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
14874
14898
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14875
14899
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14876
14900
|
let baseOptions;
|
|
@@ -14947,7 +14971,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
14947
14971
|
// verify required parameter 'id' is not null or undefined
|
|
14948
14972
|
assertParamExists('getUpdateNumberPort', 'id', id)
|
|
14949
14973
|
const localVarPath = `/sip/numbers/ports/{id}`
|
|
14950
|
-
.replace(
|
|
14974
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
14951
14975
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14952
14976
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14953
14977
|
let baseOptions;
|
|
@@ -14980,7 +15004,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
14980
15004
|
// verify required parameter 'id' is not null or undefined
|
|
14981
15005
|
assertParamExists('patchCancelAdminNumberPort', 'id', id)
|
|
14982
15006
|
const localVarPath = `/admin/sip/numbers/ports/{id}/cancel`
|
|
14983
|
-
.replace(
|
|
15007
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
14984
15008
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14985
15009
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14986
15010
|
let baseOptions;
|
|
@@ -15013,7 +15037,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
15013
15037
|
// verify required parameter 'id' is not null or undefined
|
|
15014
15038
|
assertParamExists('patchCloseAdminNumberPort', 'id', id)
|
|
15015
15039
|
const localVarPath = `/admin/sip/numbers/ports/{id}/close`
|
|
15016
|
-
.replace(
|
|
15040
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
15017
15041
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15018
15042
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15019
15043
|
let baseOptions;
|
|
@@ -15049,7 +15073,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
15049
15073
|
// verify required parameter 'postAddAdminNoteRequest' is not null or undefined
|
|
15050
15074
|
assertParamExists('postAddAdminNote', 'postAddAdminNoteRequest', postAddAdminNoteRequest)
|
|
15051
15075
|
const localVarPath = `/admin/sip/numbers/ports/{id}/notes`
|
|
15052
|
-
.replace(
|
|
15076
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
15053
15077
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15054
15078
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15055
15079
|
let baseOptions;
|
|
@@ -15188,7 +15212,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
15188
15212
|
// verify required parameter 'id' is not null or undefined
|
|
15189
15213
|
assertParamExists('postSubmitNumberPort', 'id', id)
|
|
15190
15214
|
const localVarPath = `/sip/numbers/ports/{id}/submit`
|
|
15191
|
-
.replace(
|
|
15215
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
15192
15216
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15193
15217
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15194
15218
|
let baseOptions;
|
|
@@ -15284,7 +15308,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
15284
15308
|
// verify required parameter 'id' is not null or undefined
|
|
15285
15309
|
assertParamExists('postUpdateNumberPort', 'id', id)
|
|
15286
15310
|
const localVarPath = `/sip/numbers/ports/{id}`
|
|
15287
|
-
.replace(
|
|
15311
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
15288
15312
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15289
15313
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15290
15314
|
let baseOptions;
|
|
@@ -15371,7 +15395,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
15371
15395
|
// verify required parameter 'numberPortDTO' is not null or undefined
|
|
15372
15396
|
assertParamExists('putGetAdminNumberPort', 'numberPortDTO', numberPortDTO)
|
|
15373
15397
|
const localVarPath = `/admin/sip/numbers/ports/{id}`
|
|
15374
|
-
.replace(
|
|
15398
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
15375
15399
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15376
15400
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15377
15401
|
let baseOptions;
|
|
@@ -16579,8 +16603,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16579
16603
|
// verify required parameter 'batchId' is not null or undefined
|
|
16580
16604
|
assertParamExists('deleteDeleteBatch', 'batchId', batchId)
|
|
16581
16605
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}`
|
|
16582
|
-
.replace(
|
|
16583
|
-
.replace(
|
|
16606
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
16607
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)));
|
|
16584
16608
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16585
16609
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16586
16610
|
let baseOptions;
|
|
@@ -16613,7 +16637,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16613
16637
|
// verify required parameter 'id' is not null or undefined
|
|
16614
16638
|
assertParamExists('deleteUpdateOrder', 'id', id)
|
|
16615
16639
|
const localVarPath = `/orders/{id}`
|
|
16616
|
-
.replace(
|
|
16640
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16617
16641
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16618
16642
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16619
16643
|
let baseOptions;
|
|
@@ -16652,9 +16676,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16652
16676
|
// verify required parameter 'shipmentId' is not null or undefined
|
|
16653
16677
|
assertParamExists('deleteUpdateShipment', 'shipmentId', shipmentId)
|
|
16654
16678
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}`
|
|
16655
|
-
.replace(
|
|
16656
|
-
.replace(
|
|
16657
|
-
.replace(
|
|
16679
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
16680
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)))
|
|
16681
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
16658
16682
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16659
16683
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16660
16684
|
let baseOptions;
|
|
@@ -16687,7 +16711,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16687
16711
|
// verify required parameter 'id' is not null or undefined
|
|
16688
16712
|
assertParamExists('getGetAdminEditableOrder', 'id', id)
|
|
16689
16713
|
const localVarPath = `/admin/orders/{id}/views/editable`
|
|
16690
|
-
.replace(
|
|
16714
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16691
16715
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16692
16716
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16693
16717
|
let baseOptions;
|
|
@@ -16721,7 +16745,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16721
16745
|
// verify required parameter 'id' is not null or undefined
|
|
16722
16746
|
assertParamExists('getGetAdminOrderDetails', 'id', id)
|
|
16723
16747
|
const localVarPath = `/admin/orders/{id}/details`
|
|
16724
|
-
.replace(
|
|
16748
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16725
16749
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16726
16750
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16727
16751
|
let baseOptions;
|
|
@@ -16761,9 +16785,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16761
16785
|
// verify required parameter 'shipmentId' is not null or undefined
|
|
16762
16786
|
assertParamExists('getGetCommercialInvoice', 'shipmentId', shipmentId)
|
|
16763
16787
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/pdf`
|
|
16764
|
-
.replace(
|
|
16765
|
-
.replace(
|
|
16766
|
-
.replace(
|
|
16788
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
16789
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)))
|
|
16790
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
16767
16791
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16768
16792
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16769
16793
|
let baseOptions;
|
|
@@ -16797,7 +16821,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16797
16821
|
// verify required parameter 'id' is not null or undefined
|
|
16798
16822
|
assertParamExists('getGetEditableOrder', 'id', id)
|
|
16799
16823
|
const localVarPath = `/orders/{id}/views/editable`
|
|
16800
|
-
.replace(
|
|
16824
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16801
16825
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16802
16826
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16803
16827
|
let baseOptions;
|
|
@@ -16834,8 +16858,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16834
16858
|
// verify required parameter 'itemId' is not null or undefined
|
|
16835
16859
|
assertParamExists('getGetItemSerialInfo', 'itemId', itemId)
|
|
16836
16860
|
const localVarPath = `/admin/orders/{id}/items/{item_id}/info`
|
|
16837
|
-
.replace(
|
|
16838
|
-
.replace(
|
|
16861
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
16862
|
+
.replace('{item_id}', encodeURIComponent(String(itemId)));
|
|
16839
16863
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16840
16864
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16841
16865
|
let baseOptions;
|
|
@@ -16869,7 +16893,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16869
16893
|
// verify required parameter 'id' is not null or undefined
|
|
16870
16894
|
assertParamExists('getGetOrderPdf', 'id', id)
|
|
16871
16895
|
const localVarPath = `/orders/{id}/pdf`
|
|
16872
|
-
.replace(
|
|
16896
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16873
16897
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16874
16898
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16875
16899
|
let baseOptions;
|
|
@@ -16903,7 +16927,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
16903
16927
|
// verify required parameter 'id' is not null or undefined
|
|
16904
16928
|
assertParamExists('getGetOrderSummary', 'id', id)
|
|
16905
16929
|
const localVarPath = `/admin/orders/{id}/summary`
|
|
16906
|
-
.replace(
|
|
16930
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
16907
16931
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
16908
16932
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16909
16933
|
let baseOptions;
|
|
@@ -17002,7 +17026,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17002
17026
|
// verify required parameter 'id' is not null or undefined
|
|
17003
17027
|
assertParamExists('patchCompleteOrder', 'id', id)
|
|
17004
17028
|
const localVarPath = `/admin/orders/{id}/complete`
|
|
17005
|
-
.replace(
|
|
17029
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17006
17030
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17007
17031
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17008
17032
|
let baseOptions;
|
|
@@ -17037,7 +17061,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17037
17061
|
// verify required parameter 'id' is not null or undefined
|
|
17038
17062
|
assertParamExists('postAddOrderNote', 'id', id)
|
|
17039
17063
|
const localVarPath = `/admin/orders/{id}/notes`
|
|
17040
|
-
.replace(
|
|
17064
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17041
17065
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17042
17066
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17043
17067
|
let baseOptions;
|
|
@@ -17115,8 +17139,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17115
17139
|
// verify required parameter 'shipmentId' is not null or undefined
|
|
17116
17140
|
assertParamExists('postCreateConsignment', 'shipmentId', shipmentId)
|
|
17117
17141
|
const localVarPath = `/admin/orders/{id}/shipments/{shipment_id}/consignment`
|
|
17118
|
-
.replace(
|
|
17119
|
-
.replace(
|
|
17142
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17143
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
17120
17144
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17121
17145
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17122
17146
|
let baseOptions;
|
|
@@ -17189,8 +17213,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17189
17213
|
// verify required parameter 'batchId' is not null or undefined
|
|
17190
17214
|
assertParamExists('postCreateShipment', 'batchId', batchId)
|
|
17191
17215
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments`
|
|
17192
|
-
.replace(
|
|
17193
|
-
.replace(
|
|
17216
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17217
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)));
|
|
17194
17218
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17195
17219
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17196
17220
|
let baseOptions;
|
|
@@ -17265,7 +17289,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17265
17289
|
// verify required parameter 'id' is not null or undefined
|
|
17266
17290
|
assertParamExists('postIssueCredit', 'id', id)
|
|
17267
17291
|
const localVarPath = `/admin/orders/{id}/credit`
|
|
17268
|
-
.replace(
|
|
17292
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17269
17293
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17270
17294
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17271
17295
|
let baseOptions;
|
|
@@ -17307,8 +17331,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17307
17331
|
// verify required parameter 'printer' is not null or undefined
|
|
17308
17332
|
assertParamExists('postPrintShippingLabel', 'printer', printer)
|
|
17309
17333
|
const localVarPath = `/admin/orders/{id}/shipments/{shipment_id}/label/print`
|
|
17310
|
-
.replace(
|
|
17311
|
-
.replace(
|
|
17334
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17335
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
17312
17336
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17313
17337
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17314
17338
|
let baseOptions;
|
|
@@ -17349,8 +17373,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17349
17373
|
// verify required parameter 'batchId' is not null or undefined
|
|
17350
17374
|
assertParamExists('postProcessTcxLicences', 'batchId', batchId)
|
|
17351
17375
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/licences/process`
|
|
17352
|
-
.replace(
|
|
17353
|
-
.replace(
|
|
17376
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17377
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)));
|
|
17354
17378
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17355
17379
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17356
17380
|
let baseOptions;
|
|
@@ -17387,7 +17411,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17387
17411
|
// verify required parameter 'email' is not null or undefined
|
|
17388
17412
|
assertParamExists('postSendOrderEmail', 'email', email)
|
|
17389
17413
|
const localVarPath = `/admin/orders/{id}/email/send`
|
|
17390
|
-
.replace(
|
|
17414
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17391
17415
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17392
17416
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17393
17417
|
let baseOptions;
|
|
@@ -17433,9 +17457,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17433
17457
|
// verify required parameter 'email' is not null or undefined
|
|
17434
17458
|
assertParamExists('postSendShipmentEmail', 'email', email)
|
|
17435
17459
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/send/email`
|
|
17436
|
-
.replace(
|
|
17437
|
-
.replace(
|
|
17438
|
-
.replace(
|
|
17460
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17461
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)))
|
|
17462
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
17439
17463
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17440
17464
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17441
17465
|
let baseOptions;
|
|
@@ -17475,8 +17499,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17475
17499
|
// verify required parameter 'batchId' is not null or undefined
|
|
17476
17500
|
assertParamExists('postSendSupplierEmail', 'batchId', batchId)
|
|
17477
17501
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/email/send`
|
|
17478
|
-
.replace(
|
|
17479
|
-
.replace(
|
|
17502
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17503
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)));
|
|
17480
17504
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17481
17505
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17482
17506
|
let baseOptions;
|
|
@@ -17510,7 +17534,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17510
17534
|
// verify required parameter 'id' is not null or undefined
|
|
17511
17535
|
assertParamExists('postSplitOrder', 'id', id)
|
|
17512
17536
|
const localVarPath = `/admin/orders/{id}/split`
|
|
17513
|
-
.replace(
|
|
17537
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17514
17538
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17515
17539
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17516
17540
|
let baseOptions;
|
|
@@ -17550,7 +17574,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17550
17574
|
// verify required parameter 'supplierId' is not null or undefined
|
|
17551
17575
|
assertParamExists('putAllocateItems', 'supplierId', supplierId)
|
|
17552
17576
|
const localVarPath = `/admin/orders/{id}/items/allocate`
|
|
17553
|
-
.replace(
|
|
17577
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17554
17578
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17555
17579
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17556
17580
|
let baseOptions;
|
|
@@ -17592,7 +17616,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17592
17616
|
// verify required parameter 'id' is not null or undefined
|
|
17593
17617
|
assertParamExists('putUpdateAdminOrder', 'id', id)
|
|
17594
17618
|
const localVarPath = `/admin/orders/{id}`
|
|
17595
|
-
.replace(
|
|
17619
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17596
17620
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17597
17621
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17598
17622
|
let baseOptions;
|
|
@@ -17639,9 +17663,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17639
17663
|
// verify required parameter 'itemId' is not null or undefined
|
|
17640
17664
|
assertParamExists('putUpdateBatchItem', 'itemId', itemId)
|
|
17641
17665
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/items/{item_id}`
|
|
17642
|
-
.replace(
|
|
17643
|
-
.replace(
|
|
17644
|
-
.replace(
|
|
17666
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17667
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)))
|
|
17668
|
+
.replace('{item_id}', encodeURIComponent(String(itemId)));
|
|
17645
17669
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17646
17670
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17647
17671
|
let baseOptions;
|
|
@@ -17679,7 +17703,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17679
17703
|
// verify required parameter 'id' is not null or undefined
|
|
17680
17704
|
assertParamExists('putUpdateOrder', 'id', id)
|
|
17681
17705
|
const localVarPath = `/orders/{id}`
|
|
17682
|
-
.replace(
|
|
17706
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17683
17707
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17684
17708
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17685
17709
|
let baseOptions;
|
|
@@ -17722,7 +17746,7 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17722
17746
|
// verify required parameter 'paid' is not null or undefined
|
|
17723
17747
|
assertParamExists('putUpdatePaymentStatus', 'paid', paid)
|
|
17724
17748
|
const localVarPath = `/admin/orders/{id}/paid`
|
|
17725
|
-
.replace(
|
|
17749
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
17726
17750
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17727
17751
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17728
17752
|
let baseOptions;
|
|
@@ -17767,9 +17791,9 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
17767
17791
|
// verify required parameter 'shipmentId' is not null or undefined
|
|
17768
17792
|
assertParamExists('putUpdateShipment', 'shipmentId', shipmentId)
|
|
17769
17793
|
const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}`
|
|
17770
|
-
.replace(
|
|
17771
|
-
.replace(
|
|
17772
|
-
.replace(
|
|
17794
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
17795
|
+
.replace('{batch_id}', encodeURIComponent(String(batchId)))
|
|
17796
|
+
.replace('{shipment_id}', encodeURIComponent(String(shipmentId)));
|
|
17773
17797
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17774
17798
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
17775
17799
|
let baseOptions;
|
|
@@ -19595,7 +19619,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
19595
19619
|
// verify required parameter 'quantity' is not null or undefined
|
|
19596
19620
|
assertParamExists('patchAddQuantityToStock', 'quantity', quantity)
|
|
19597
19621
|
const localVarPath = `/products/{sku}/stock/add`
|
|
19598
|
-
.replace(
|
|
19622
|
+
.replace('{sku}', encodeURIComponent(String(sku)));
|
|
19599
19623
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19600
19624
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
19601
19625
|
let baseOptions;
|
|
@@ -19635,7 +19659,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
19635
19659
|
// verify required parameter 'postGetProductForCustomerRequest' is not null or undefined
|
|
19636
19660
|
assertParamExists('postGetProduct', 'postGetProductForCustomerRequest', postGetProductForCustomerRequest)
|
|
19637
19661
|
const localVarPath = `/products/{sku}`
|
|
19638
|
-
.replace(
|
|
19662
|
+
.replace('{sku}', encodeURIComponent(String(sku)));
|
|
19639
19663
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19640
19664
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
19641
19665
|
let baseOptions;
|
|
@@ -19677,7 +19701,7 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
19677
19701
|
// verify required parameter 'postGetProductForCustomerRequest' is not null or undefined
|
|
19678
19702
|
assertParamExists('postGetProductForCustomer', 'postGetProductForCustomerRequest', postGetProductForCustomerRequest)
|
|
19679
19703
|
const localVarPath = `/admin/products/{sku}`
|
|
19680
|
-
.replace(
|
|
19704
|
+
.replace('{sku}', encodeURIComponent(String(sku)));
|
|
19681
19705
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19682
19706
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
19683
19707
|
let baseOptions;
|
|
@@ -20101,7 +20125,7 @@ export const ProspectsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20101
20125
|
// verify required parameter 'xeroId' is not null or undefined
|
|
20102
20126
|
assertParamExists('getGetProspect', 'xeroId', xeroId)
|
|
20103
20127
|
const localVarPath = `/accounts/prospects/{xero_id}`
|
|
20104
|
-
.replace(
|
|
20128
|
+
.replace('{xero_id}', encodeURIComponent(String(xeroId)));
|
|
20105
20129
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20106
20130
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20107
20131
|
let baseOptions;
|
|
@@ -20168,7 +20192,7 @@ export const ProspectsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20168
20192
|
// verify required parameter 'status' is not null or undefined
|
|
20169
20193
|
assertParamExists('getRemoveFromProspects', 'status', status)
|
|
20170
20194
|
const localVarPath = `/accounts/prospects/{xero_id}/remove`
|
|
20171
|
-
.replace(
|
|
20195
|
+
.replace('{xero_id}', encodeURIComponent(String(xeroId)));
|
|
20172
20196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20173
20197
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20174
20198
|
let baseOptions;
|
|
@@ -20209,7 +20233,7 @@ export const ProspectsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20209
20233
|
// verify required parameter 'date' is not null or undefined
|
|
20210
20234
|
assertParamExists('getSetCallback', 'date', date)
|
|
20211
20235
|
const localVarPath = `/accounts/prospects/{xero_id}/date`
|
|
20212
|
-
.replace(
|
|
20236
|
+
.replace('{xero_id}', encodeURIComponent(String(xeroId)));
|
|
20213
20237
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20214
20238
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20215
20239
|
let baseOptions;
|
|
@@ -20422,8 +20446,8 @@ export const ProvisioningApiAxiosParamCreator = function (configuration?: Config
|
|
|
20422
20446
|
// verify required parameter 'mac' is not null or undefined
|
|
20423
20447
|
assertParamExists('deleteAddFanvilMac', 'mac', mac)
|
|
20424
20448
|
const localVarPath = `/provisioning/fanvil/groups/{id}/macs/{mac}`
|
|
20425
|
-
.replace(
|
|
20426
|
-
.replace(
|
|
20449
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
20450
|
+
.replace('{mac}', encodeURIComponent(String(mac)));
|
|
20427
20451
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20428
20452
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20429
20453
|
let baseOptions;
|
|
@@ -20456,7 +20480,7 @@ export const ProvisioningApiAxiosParamCreator = function (configuration?: Config
|
|
|
20456
20480
|
// verify required parameter 'id' is not null or undefined
|
|
20457
20481
|
assertParamExists('deleteDeleteFanvilGroup', 'id', id)
|
|
20458
20482
|
const localVarPath = `/provisioning/fanvil/groups/{id}`
|
|
20459
|
-
.replace(
|
|
20483
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
20460
20484
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20461
20485
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20462
20486
|
let baseOptions;
|
|
@@ -20492,8 +20516,8 @@ export const ProvisioningApiAxiosParamCreator = function (configuration?: Config
|
|
|
20492
20516
|
// verify required parameter 'mac' is not null or undefined
|
|
20493
20517
|
assertParamExists('getGetFanvilEncryptionKey', 'mac', mac)
|
|
20494
20518
|
const localVarPath = `/provisioning/fanvil/groups/{id}/macs/{mac}/key`
|
|
20495
|
-
.replace(
|
|
20496
|
-
.replace(
|
|
20519
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
20520
|
+
.replace('{mac}', encodeURIComponent(String(mac)));
|
|
20497
20521
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20498
20522
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20499
20523
|
let baseOptions;
|
|
@@ -20527,7 +20551,7 @@ export const ProvisioningApiAxiosParamCreator = function (configuration?: Config
|
|
|
20527
20551
|
// verify required parameter 'id' is not null or undefined
|
|
20528
20552
|
assertParamExists('getGetFanvilGroupMacs', 'id', id)
|
|
20529
20553
|
const localVarPath = `/provisioning/fanvil/groups/{id}/macs`
|
|
20530
|
-
.replace(
|
|
20554
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
20531
20555
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20532
20556
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20533
20557
|
let baseOptions;
|
|
@@ -20632,8 +20656,8 @@ export const ProvisioningApiAxiosParamCreator = function (configuration?: Config
|
|
|
20632
20656
|
// verify required parameter 'mac' is not null or undefined
|
|
20633
20657
|
assertParamExists('postAddFanvilMac', 'mac', mac)
|
|
20634
20658
|
const localVarPath = `/provisioning/fanvil/groups/{id}/macs/{mac}`
|
|
20635
|
-
.replace(
|
|
20636
|
-
.replace(
|
|
20659
|
+
.replace('{id}', encodeURIComponent(String(id)))
|
|
20660
|
+
.replace('{mac}', encodeURIComponent(String(mac)));
|
|
20637
20661
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20638
20662
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20639
20663
|
let baseOptions;
|
|
@@ -20946,7 +20970,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20946
20970
|
// verify required parameter 'id' is not null or undefined
|
|
20947
20971
|
assertParamExists('deleteGetSipTrunk', 'id', id)
|
|
20948
20972
|
const localVarPath = `/sip/trunks/{id}`
|
|
20949
|
-
.replace(
|
|
20973
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
20950
20974
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20951
20975
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20952
20976
|
let baseOptions;
|
|
@@ -20980,7 +21004,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
20980
21004
|
// verify required parameter 'id' is not null or undefined
|
|
20981
21005
|
assertParamExists('getCanDivert', 'id', id)
|
|
20982
21006
|
const localVarPath = `/sip/trunks/{id}/diverts/allowed`
|
|
20983
|
-
.replace(
|
|
21007
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
20984
21008
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
20985
21009
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
20986
21010
|
let baseOptions;
|
|
@@ -21014,7 +21038,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21014
21038
|
// verify required parameter 'id' is not null or undefined
|
|
21015
21039
|
assertParamExists('getGetAddress', 'id', id)
|
|
21016
21040
|
const localVarPath = `/sip/trunks/{id}/address`
|
|
21017
|
-
.replace(
|
|
21041
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21018
21042
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21019
21043
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21020
21044
|
let baseOptions;
|
|
@@ -21112,7 +21136,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21112
21136
|
// verify required parameter 'id' is not null or undefined
|
|
21113
21137
|
assertParamExists('getGetCliFlexibility', 'id', id)
|
|
21114
21138
|
const localVarPath = `/sip/trunks/{id}/cli/flexibility`
|
|
21115
|
-
.replace(
|
|
21139
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21116
21140
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21117
21141
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21118
21142
|
let baseOptions;
|
|
@@ -21146,7 +21170,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21146
21170
|
// verify required parameter 'id' is not null or undefined
|
|
21147
21171
|
assertParamExists('getGetDdis', 'id', id)
|
|
21148
21172
|
const localVarPath = `/sip/trunks/{id}/ddis`
|
|
21149
|
-
.replace(
|
|
21173
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21150
21174
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21151
21175
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21152
21176
|
let baseOptions;
|
|
@@ -21181,7 +21205,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21181
21205
|
// verify required parameter 'id' is not null or undefined
|
|
21182
21206
|
assertParamExists('getGetDiverts', 'id', id)
|
|
21183
21207
|
const localVarPath = `/sip/trunks/{id}/diverts`
|
|
21184
|
-
.replace(
|
|
21208
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21185
21209
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21186
21210
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21187
21211
|
let baseOptions;
|
|
@@ -21219,7 +21243,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21219
21243
|
// verify required parameter 'id' is not null or undefined
|
|
21220
21244
|
assertParamExists('getGetSipTrunk', 'id', id)
|
|
21221
21245
|
const localVarPath = `/sip/trunks/{id}`
|
|
21222
|
-
.replace(
|
|
21246
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21223
21247
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21224
21248
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21225
21249
|
let baseOptions;
|
|
@@ -21301,7 +21325,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21301
21325
|
// verify required parameter 'enabled' is not null or undefined
|
|
21302
21326
|
assertParamExists('patchGetCliFlexibility', 'enabled', enabled)
|
|
21303
21327
|
const localVarPath = `/sip/trunks/{id}/cli/flexibility`
|
|
21304
|
-
.replace(
|
|
21328
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21305
21329
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21306
21330
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21307
21331
|
let baseOptions;
|
|
@@ -21339,7 +21363,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21339
21363
|
// verify required parameter 'id' is not null or undefined
|
|
21340
21364
|
assertParamExists('patchSetAsAvailable', 'id', id)
|
|
21341
21365
|
const localVarPath = `/sip/trunks/{id}/available`
|
|
21342
|
-
.replace(
|
|
21366
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21343
21367
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21344
21368
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21345
21369
|
let baseOptions;
|
|
@@ -21376,7 +21400,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21376
21400
|
// verify required parameter 'ownerId' is not null or undefined
|
|
21377
21401
|
assertParamExists('patchSetOwnership', 'ownerId', ownerId)
|
|
21378
21402
|
const localVarPath = `/sip/trunks/{id}/owner`
|
|
21379
|
-
.replace(
|
|
21403
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21380
21404
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21381
21405
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21382
21406
|
let baseOptions;
|
|
@@ -21420,7 +21444,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21420
21444
|
// verify required parameter 'channels' is not null or undefined
|
|
21421
21445
|
assertParamExists('patchUpdateChannelCount', 'channels', channels)
|
|
21422
21446
|
const localVarPath = `/sip/trunks/{id}/channels`
|
|
21423
|
-
.replace(
|
|
21447
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21424
21448
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21425
21449
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21426
21450
|
let baseOptions;
|
|
@@ -21461,7 +21485,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21461
21485
|
// verify required parameter 'company' is not null or undefined
|
|
21462
21486
|
assertParamExists('patchUpdateCompanyName', 'company', company)
|
|
21463
21487
|
const localVarPath = `/sip/trunks/{id}/company`
|
|
21464
|
-
.replace(
|
|
21488
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21465
21489
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21466
21490
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21467
21491
|
let baseOptions;
|
|
@@ -21502,7 +21526,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21502
21526
|
// verify required parameter 'number' is not null or undefined
|
|
21503
21527
|
assertParamExists('patchUpdateMainTrunkNumber', 'number', number)
|
|
21504
21528
|
const localVarPath = `/sip/trunks/{id}/number`
|
|
21505
|
-
.replace(
|
|
21529
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21506
21530
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21507
21531
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21508
21532
|
let baseOptions;
|
|
@@ -21543,7 +21567,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21543
21567
|
// verify required parameter 'ipAddress' is not null or undefined
|
|
21544
21568
|
assertParamExists('patchUpdatePbxIPAddress', 'ipAddress', ipAddress)
|
|
21545
21569
|
const localVarPath = `/sip/trunks/{id}/pbx/ip`
|
|
21546
|
-
.replace(
|
|
21570
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21547
21571
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21548
21572
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21549
21573
|
let baseOptions;
|
|
@@ -21582,7 +21606,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21582
21606
|
// verify required parameter 'id' is not null or undefined
|
|
21583
21607
|
assertParamExists('postGetDdis', 'id', id)
|
|
21584
21608
|
const localVarPath = `/sip/trunks/{id}/ddis`
|
|
21585
|
-
.replace(
|
|
21609
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21586
21610
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21587
21611
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21588
21612
|
let baseOptions;
|
|
@@ -21718,7 +21742,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21718
21742
|
// verify required parameter 'id' is not null or undefined
|
|
21719
21743
|
assertParamExists('putGetAddress', 'id', id)
|
|
21720
21744
|
const localVarPath = `/sip/trunks/{id}/address`
|
|
21721
|
-
.replace(
|
|
21745
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21722
21746
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21723
21747
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21724
21748
|
let baseOptions;
|
|
@@ -21758,7 +21782,7 @@ export const SIPTrunksApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21758
21782
|
// verify required parameter 'enabled' is not null or undefined
|
|
21759
21783
|
assertParamExists('putGetDiverts', 'enabled', enabled)
|
|
21760
21784
|
const localVarPath = `/sip/trunks/{id}/diverts`
|
|
21761
|
-
.replace(
|
|
21785
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
21762
21786
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21763
21787
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
21764
21788
|
let baseOptions;
|
|
@@ -22887,7 +22911,7 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
22887
22911
|
// verify required parameter 'id' is not null or undefined
|
|
22888
22912
|
assertParamExists('patchArchiveEvent', 'id', id)
|
|
22889
22913
|
const localVarPath = `/services/events/{id}/archive`
|
|
22890
|
-
.replace(
|
|
22914
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
22891
22915
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22892
22916
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
22893
22917
|
let baseOptions;
|
|
@@ -22921,7 +22945,7 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
22921
22945
|
// verify required parameter 'id' is not null or undefined
|
|
22922
22946
|
assertParamExists('patchUpdateEvent', 'id', id)
|
|
22923
22947
|
const localVarPath = `/services/events/{id}`
|
|
22924
|
-
.replace(
|
|
22948
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
22925
22949
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22926
22950
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
22927
22951
|
let baseOptions;
|
|
@@ -22989,7 +23013,7 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
22989
23013
|
// verify required parameter 'id' is not null or undefined
|
|
22990
23014
|
assertParamExists('postCreateEventUpdate', 'id', id)
|
|
22991
23015
|
const localVarPath = `/services/events/{id}/updates`
|
|
22992
|
-
.replace(
|
|
23016
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
22993
23017
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
22994
23018
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
22995
23019
|
let baseOptions;
|
|
@@ -23491,7 +23515,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23491
23515
|
// verify required parameter 'id' is not null or undefined
|
|
23492
23516
|
assertParamExists('deleteDeleteStockOrder', 'id', id)
|
|
23493
23517
|
const localVarPath = `/stock/orders/{id}`
|
|
23494
|
-
.replace(
|
|
23518
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23495
23519
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23496
23520
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23497
23521
|
let baseOptions;
|
|
@@ -23527,8 +23551,8 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23527
23551
|
// verify required parameter 'deductionId' is not null or undefined
|
|
23528
23552
|
assertParamExists('deleteDeleteStockOrderDeduction', 'deductionId', deductionId)
|
|
23529
23553
|
const localVarPath = `/stock/orders/{order_id}/deductions/{deduction_id}`
|
|
23530
|
-
.replace(
|
|
23531
|
-
.replace(
|
|
23554
|
+
.replace('{order_id}', encodeURIComponent(String(orderId)))
|
|
23555
|
+
.replace('{deduction_id}', encodeURIComponent(String(deductionId)));
|
|
23532
23556
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23533
23557
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23534
23558
|
let baseOptions;
|
|
@@ -23564,8 +23588,8 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23564
23588
|
// verify required parameter 'itemId' is not null or undefined
|
|
23565
23589
|
assertParamExists('deleteDeleteStockOrderItem', 'itemId', itemId)
|
|
23566
23590
|
const localVarPath = `/stock/orders/{order_id}/items/{item_id}`
|
|
23567
|
-
.replace(
|
|
23568
|
-
.replace(
|
|
23591
|
+
.replace('{order_id}', encodeURIComponent(String(orderId)))
|
|
23592
|
+
.replace('{item_id}', encodeURIComponent(String(itemId)));
|
|
23569
23593
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23570
23594
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23571
23595
|
let baseOptions;
|
|
@@ -23598,7 +23622,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23598
23622
|
// verify required parameter 'id' is not null or undefined
|
|
23599
23623
|
assertParamExists('deleteGetStockProduct', 'id', id)
|
|
23600
23624
|
const localVarPath = `/stock/products/{id}`
|
|
23601
|
-
.replace(
|
|
23625
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23602
23626
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23603
23627
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23604
23628
|
let baseOptions;
|
|
@@ -23631,7 +23655,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23631
23655
|
// verify required parameter 'id' is not null or undefined
|
|
23632
23656
|
assertParamExists('getDeleteStockOrder', 'id', id)
|
|
23633
23657
|
const localVarPath = `/stock/orders/{id}`
|
|
23634
|
-
.replace(
|
|
23658
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23635
23659
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23636
23660
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23637
23661
|
let baseOptions;
|
|
@@ -23665,7 +23689,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23665
23689
|
// verify required parameter 'sku' is not null or undefined
|
|
23666
23690
|
assertParamExists('getGetProductDetails', 'sku', sku)
|
|
23667
23691
|
const localVarPath = `/stock/products/{sku}/details`
|
|
23668
|
-
.replace(
|
|
23692
|
+
.replace('{sku}', encodeURIComponent(String(sku)));
|
|
23669
23693
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23670
23694
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23671
23695
|
let baseOptions;
|
|
@@ -23699,7 +23723,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23699
23723
|
// verify required parameter 'id' is not null or undefined
|
|
23700
23724
|
assertParamExists('getGetStockOrderPurchaseOrder', 'id', id)
|
|
23701
23725
|
const localVarPath = `/stock/orders/{id}/po`
|
|
23702
|
-
.replace(
|
|
23726
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23703
23727
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23704
23728
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23705
23729
|
let baseOptions;
|
|
@@ -23733,7 +23757,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23733
23757
|
// verify required parameter 'id' is not null or undefined
|
|
23734
23758
|
assertParamExists('getGetStockOrderSupplierEmail', 'id', id)
|
|
23735
23759
|
const localVarPath = `/stock/orders/{id}/supplier/email`
|
|
23736
|
-
.replace(
|
|
23760
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23737
23761
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23738
23762
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23739
23763
|
let baseOptions;
|
|
@@ -23817,7 +23841,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23817
23841
|
// verify required parameter 'id' is not null or undefined
|
|
23818
23842
|
assertParamExists('getGetStockProduct', 'id', id)
|
|
23819
23843
|
const localVarPath = `/stock/products/{id}`
|
|
23820
|
-
.replace(
|
|
23844
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23821
23845
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23822
23846
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23823
23847
|
let baseOptions;
|
|
@@ -23926,7 +23950,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23926
23950
|
// verify required parameter 'id' is not null or undefined
|
|
23927
23951
|
assertParamExists('getGetStockSupplierProducts', 'id', id)
|
|
23928
23952
|
const localVarPath = `/stock/suppliers/{id}/products`
|
|
23929
|
-
.replace(
|
|
23953
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23930
23954
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23931
23955
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23932
23956
|
let baseOptions;
|
|
@@ -23960,7 +23984,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23960
23984
|
// verify required parameter 'id' is not null or undefined
|
|
23961
23985
|
assertParamExists('getUploadStockOrderInvoice', 'id', id)
|
|
23962
23986
|
const localVarPath = `/stock/orders/{id}/invoice`
|
|
23963
|
-
.replace(
|
|
23987
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23964
23988
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23965
23989
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23966
23990
|
let baseOptions;
|
|
@@ -23995,7 +24019,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
23995
24019
|
// verify required parameter 'id' is not null or undefined
|
|
23996
24020
|
assertParamExists('patchDeleteStockOrder', 'id', id)
|
|
23997
24021
|
const localVarPath = `/stock/orders/{id}`
|
|
23998
|
-
.replace(
|
|
24022
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
23999
24023
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24000
24024
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24001
24025
|
let baseOptions;
|
|
@@ -24035,8 +24059,8 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24035
24059
|
// verify required parameter 'deductionId' is not null or undefined
|
|
24036
24060
|
assertParamExists('patchDeleteStockOrderDeduction', 'deductionId', deductionId)
|
|
24037
24061
|
const localVarPath = `/stock/orders/{order_id}/deductions/{deduction_id}`
|
|
24038
|
-
.replace(
|
|
24039
|
-
.replace(
|
|
24062
|
+
.replace('{order_id}', encodeURIComponent(String(orderId)))
|
|
24063
|
+
.replace('{deduction_id}', encodeURIComponent(String(deductionId)));
|
|
24040
24064
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24041
24065
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24042
24066
|
let baseOptions;
|
|
@@ -24076,8 +24100,8 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24076
24100
|
// verify required parameter 'itemId' is not null or undefined
|
|
24077
24101
|
assertParamExists('patchDeleteStockOrderItem', 'itemId', itemId)
|
|
24078
24102
|
const localVarPath = `/stock/orders/{order_id}/items/{item_id}`
|
|
24079
|
-
.replace(
|
|
24080
|
-
.replace(
|
|
24103
|
+
.replace('{order_id}', encodeURIComponent(String(orderId)))
|
|
24104
|
+
.replace('{item_id}', encodeURIComponent(String(itemId)));
|
|
24081
24105
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24082
24106
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24083
24107
|
let baseOptions;
|
|
@@ -24114,7 +24138,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24114
24138
|
// verify required parameter 'id' is not null or undefined
|
|
24115
24139
|
assertParamExists('postAddStockOrderDeduction', 'id', id)
|
|
24116
24140
|
const localVarPath = `/stock/orders/{id}/deductions`
|
|
24117
|
-
.replace(
|
|
24141
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
24118
24142
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24119
24143
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24120
24144
|
let baseOptions;
|
|
@@ -24151,7 +24175,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24151
24175
|
// verify required parameter 'id' is not null or undefined
|
|
24152
24176
|
assertParamExists('postAddStockOrderItem', 'id', id)
|
|
24153
24177
|
const localVarPath = `/stock/orders/{id}/items`
|
|
24154
|
-
.replace(
|
|
24178
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
24155
24179
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24156
24180
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24157
24181
|
let baseOptions;
|
|
@@ -24256,7 +24280,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24256
24280
|
// verify required parameter 'invoice' is not null or undefined
|
|
24257
24281
|
assertParamExists('postUploadStockOrderInvoice', 'invoice', invoice)
|
|
24258
24282
|
const localVarPath = `/stock/orders/{id}/invoice`
|
|
24259
|
-
.replace(
|
|
24283
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
24260
24284
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24261
24285
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24262
24286
|
let baseOptions;
|
|
@@ -24297,7 +24321,7 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24297
24321
|
// verify required parameter 'id' is not null or undefined
|
|
24298
24322
|
assertParamExists('putGetStockProduct', 'id', id)
|
|
24299
24323
|
const localVarPath = `/stock/products/{id}`
|
|
24300
|
-
.replace(
|
|
24324
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
24301
24325
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24302
24326
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24303
24327
|
let baseOptions;
|
|
@@ -24339,8 +24363,8 @@ export const StockManagementApiAxiosParamCreator = function (configuration?: Con
|
|
|
24339
24363
|
// verify required parameter 'received' is not null or undefined
|
|
24340
24364
|
assertParamExists('putReceiveStockOrderItem', 'received', received)
|
|
24341
24365
|
const localVarPath = `/stock/orders/{order_id}/items/{item_id}/receive`
|
|
24342
|
-
.replace(
|
|
24343
|
-
.replace(
|
|
24366
|
+
.replace('{order_id}', encodeURIComponent(String(orderId)))
|
|
24367
|
+
.replace('{item_id}', encodeURIComponent(String(itemId)));
|
|
24344
24368
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24345
24369
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24346
24370
|
let baseOptions;
|
|
@@ -25472,7 +25496,7 @@ export const TicketsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25472
25496
|
// verify required parameter 'id' is not null or undefined
|
|
25473
25497
|
assertParamExists('getGetTicket', 'id', id)
|
|
25474
25498
|
const localVarPath = `/tickets/support/{id}`
|
|
25475
|
-
.replace(
|
|
25499
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
25476
25500
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25477
25501
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25478
25502
|
let baseOptions;
|
|
@@ -25505,7 +25529,7 @@ export const TicketsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25505
25529
|
// verify required parameter 'id' is not null or undefined
|
|
25506
25530
|
assertParamExists('patchCloseTicket', 'id', id)
|
|
25507
25531
|
const localVarPath = `/tickets/support/{id}/close`
|
|
25508
|
-
.replace(
|
|
25532
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
25509
25533
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25510
25534
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25511
25535
|
let baseOptions;
|
|
@@ -25589,7 +25613,7 @@ export const TicketsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25589
25613
|
// verify required parameter 'id' is not null or undefined
|
|
25590
25614
|
assertParamExists('postTicketReply', 'id', id)
|
|
25591
25615
|
const localVarPath = `/tickets/support/{id}/reply`
|
|
25592
|
-
.replace(
|
|
25616
|
+
.replace('{id}', encodeURIComponent(String(id)));
|
|
25593
25617
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
25594
25618
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
25595
25619
|
let baseOptions;
|