yellowgrid-api-ts 3.2.114-dev.0 → 3.2.116-dev.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/dist/api.d.ts CHANGED
@@ -249,16 +249,28 @@ export interface AccountPageDetailsDTO {
249
249
  * Company
250
250
  */
251
251
  'companyName'?: string;
252
- 'billingAddress'?: AddressModel;
253
- 'shippingAddress'?: AddressModel;
252
+ 'billingAddress'?: AddressDTO;
253
+ 'shippingAddress'?: AddressDTO;
254
254
  /**
255
255
  * Addresses
256
256
  */
257
- 'previousShippingAddreses'?: Array<AddressModel>;
257
+ 'previousShippingAddreses'?: Array<AddressDTO>;
258
258
  /**
259
259
  * Portal Access
260
260
  */
261
261
  'portalAccess'?: boolean;
262
+ /**
263
+ * Phone
264
+ */
265
+ 'phone'?: string;
266
+ /**
267
+ * VAT Number
268
+ */
269
+ 'vatNumber'?: string;
270
+ /**
271
+ * Company Number
272
+ */
273
+ 'companyNumber'?: string;
262
274
  /**
263
275
  * CNAME
264
276
  */
@@ -383,10 +395,6 @@ export interface AccountsResponseModel {
383
395
  * Address
384
396
  */
385
397
  export interface AddressDTO {
386
- /**
387
- * Company
388
- */
389
- 'company'?: string;
390
398
  /**
391
399
  * Address Line 1
392
400
  */
@@ -2324,6 +2332,42 @@ export declare const HostingRegionDTOCodeEnum: {
2324
2332
  readonly UsWestOr1: "US-WEST-OR-1";
2325
2333
  };
2326
2334
  export type HostingRegionDTOCodeEnum = typeof HostingRegionDTOCodeEnum[keyof typeof HostingRegionDTOCodeEnum];
2335
+ /**
2336
+ * Installation Passwords
2337
+ */
2338
+ export interface InstallationDetailsDTO {
2339
+ /**
2340
+ * PBX IP Address
2341
+ */
2342
+ 'ipAddress'?: string | null;
2343
+ /**
2344
+ * PBX Failover IP Address
2345
+ */
2346
+ 'failoverIpAddress'?: string | null;
2347
+ /**
2348
+ * Instance ID
2349
+ */
2350
+ 'instanceId'?: string | null;
2351
+ /**
2352
+ * Project ID
2353
+ */
2354
+ 'project'?: string | null;
2355
+ 'sshKey'?: GenericFileModel;
2356
+ /**
2357
+ * Root Password
2358
+ */
2359
+ 'osPassword'?: string | null;
2360
+ 'systemOwner'?: TcxUsersEntity;
2361
+ /**
2362
+ * Admin Email
2363
+ */
2364
+ 'email'?: string | null;
2365
+ /**
2366
+ * 3CX Console URL
2367
+ */
2368
+ 'url'?: string | null;
2369
+ 'backup'?: RemoteStorageDTO;
2370
+ }
2327
2371
  /**
2328
2372
  * InstanceFailoverIpsEntity
2329
2373
  */
@@ -3896,12 +3940,30 @@ export interface PatchUpdateAccountCnameRequest {
3896
3940
  */
3897
3941
  'cname'?: string;
3898
3942
  }
3943
+ export interface PatchUpdateAccountCompanyNumberRequest {
3944
+ /**
3945
+ * Company Number
3946
+ */
3947
+ 'companyNumber'?: string;
3948
+ }
3899
3949
  export interface PatchUpdateAccountContactPasswordRequest {
3900
3950
  /**
3901
3951
  * Password
3902
3952
  */
3903
3953
  'password'?: string;
3904
3954
  }
3955
+ export interface PatchUpdateAccountPhoneRequest {
3956
+ /**
3957
+ * Phone
3958
+ */
3959
+ 'phone'?: string;
3960
+ }
3961
+ export interface PatchUpdateAccountVatNumberRequest {
3962
+ /**
3963
+ * VAT Number
3964
+ */
3965
+ 'vatNumber'?: string;
3966
+ }
3905
3967
  /**
3906
3968
  * Customer Account
3907
3969
  */
@@ -4259,6 +4321,10 @@ export interface ProductSummaryDTO {
4259
4321
  * Stock Product
4260
4322
  */
4261
4323
  'stockProduct'?: boolean;
4324
+ /**
4325
+ * Date Time
4326
+ */
4327
+ 'dueDate'?: string | null;
4262
4328
  /**
4263
4329
  * Price
4264
4330
  */
@@ -4453,6 +4519,27 @@ export interface RecordingsBackupInfoDTO {
4453
4519
  'backup'?: RecordingBackupAzureModel | null;
4454
4520
  'storage'?: TcxRemoteStorageModel | null;
4455
4521
  }
4522
+ /**
4523
+ * Remote Storage
4524
+ */
4525
+ export interface RemoteStorageDTO {
4526
+ /**
4527
+ * AWS ID
4528
+ */
4529
+ 'id'?: string;
4530
+ /**
4531
+ * AWS Secret
4532
+ */
4533
+ 'secret'?: string;
4534
+ /**
4535
+ * AWS Bucket Name
4536
+ */
4537
+ 'name'?: string;
4538
+ /**
4539
+ * AWS Region
4540
+ */
4541
+ 'region'?: string;
4542
+ }
4456
4543
  /**
4457
4544
  * Resource Not Ready
4458
4545
  */
@@ -6458,57 +6545,6 @@ export interface TcxHostingPricingEntity {
6458
6545
  */
6459
6546
  'highScDiscount'?: number;
6460
6547
  }
6461
- /**
6462
- * 3CX Installation Details
6463
- */
6464
- export interface TcxInstallationDetailsModel {
6465
- /**
6466
- * PBX IP Address
6467
- */
6468
- 'ipAddress'?: string | null;
6469
- /**
6470
- * Instance ID
6471
- */
6472
- 'instanceId'?: string | null;
6473
- /**
6474
- * Project ID
6475
- */
6476
- 'project'?: string | null;
6477
- 'privateKey'?: GenericFileModel | null;
6478
- /**
6479
- * Root Password
6480
- */
6481
- 'rootPassword'?: string | null;
6482
- 'ownerExtension'?: TcxUsersEntity | null;
6483
- /**
6484
- * Admin Email
6485
- */
6486
- 'adminEmail'?: string | null;
6487
- /**
6488
- * Console URL
6489
- */
6490
- 'url'?: string | null;
6491
- /**
6492
- * Admin Username
6493
- */
6494
- 'adminUsername'?: string | null;
6495
- /**
6496
- * Admin Password
6497
- */
6498
- 'adminPassword'?: string | null;
6499
- /**
6500
- * Config Backup FTP Host
6501
- */
6502
- 'ftpHost'?: string | null;
6503
- /**
6504
- * Config Backup FTP Username
6505
- */
6506
- 'ftpUsername'?: string | null;
6507
- /**
6508
- * Config Backup FTP Password
6509
- */
6510
- 'ftpPassword'?: string | null;
6511
- }
6512
6548
  /**
6513
6549
  * 3CX Installation
6514
6550
  */
@@ -7089,6 +7125,10 @@ export interface TcxSbcDTO {
7089
7125
  * 3CX SBC Key
7090
7126
  */
7091
7127
  'tcxKey'?: string;
7128
+ /**
7129
+ * 3CX SBC Configured
7130
+ */
7131
+ 'configured'?: boolean;
7092
7132
  }
7093
7133
  /**
7094
7134
  * 3CX Wizard SBC
@@ -7228,6 +7268,19 @@ export interface TcxSbcModel {
7228
7268
  */
7229
7269
  'technicalContact'?: string;
7230
7270
  }
7271
+ /**
7272
+ * 3CX SBC Response
7273
+ */
7274
+ export interface TcxSbcResponseDTO {
7275
+ /**
7276
+ * Status
7277
+ */
7278
+ 'status'?: string;
7279
+ /**
7280
+ * Message
7281
+ */
7282
+ 'message'?: string;
7283
+ }
7231
7284
  /**
7232
7285
  * 3CX Wizard Setup Config
7233
7286
  */
@@ -7905,13 +7958,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
7905
7958
  */
7906
7959
  patchSetTcxWizardCname: (patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7907
7960
  /**
7908
- * Set Account Prize Promo
7961
+ * Set Account CNAME
7909
7962
  * @param {string} id Xero ID
7910
7963
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
7911
7964
  * @param {*} [options] Override http request option.
7912
7965
  * @throws {RequiredError}
7913
7966
  */
7914
7967
  patchUpdateAccountCname: (id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7968
+ /**
7969
+ * Set Account Company Number
7970
+ * @param {string} id Xero ID
7971
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
7972
+ * @param {*} [options] Override http request option.
7973
+ * @throws {RequiredError}
7974
+ */
7975
+ patchUpdateAccountCompanyNumber: (id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7915
7976
  /**
7916
7977
  * Update Account Password
7917
7978
  * @summary Update Account Password
@@ -7921,6 +7982,22 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
7921
7982
  * @throws {RequiredError}
7922
7983
  */
7923
7984
  patchUpdateAccountContactPassword: (token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7985
+ /**
7986
+ * Set Account Phone
7987
+ * @param {string} id Xero ID
7988
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
7989
+ * @param {*} [options] Override http request option.
7990
+ * @throws {RequiredError}
7991
+ */
7992
+ patchUpdateAccountPhone: (id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7993
+ /**
7994
+ * Set Account VAT Number
7995
+ * @param {string} id Xero ID
7996
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
7997
+ * @param {*} [options] Override http request option.
7998
+ * @throws {RequiredError}
7999
+ */
8000
+ patchUpdateAccountVatNumber: (id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7924
8001
  /**
7925
8002
  * Add Account Contacts
7926
8003
  * @summary Add Account Contact
@@ -8119,13 +8196,21 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
8119
8196
  */
8120
8197
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8121
8198
  /**
8122
- * Set Account Prize Promo
8199
+ * Set Account CNAME
8123
8200
  * @param {string} id Xero ID
8124
8201
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8125
8202
  * @param {*} [options] Override http request option.
8126
8203
  * @throws {RequiredError}
8127
8204
  */
8128
8205
  patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8206
+ /**
8207
+ * Set Account Company Number
8208
+ * @param {string} id Xero ID
8209
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
8210
+ * @param {*} [options] Override http request option.
8211
+ * @throws {RequiredError}
8212
+ */
8213
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8129
8214
  /**
8130
8215
  * Update Account Password
8131
8216
  * @summary Update Account Password
@@ -8135,6 +8220,22 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
8135
8220
  * @throws {RequiredError}
8136
8221
  */
8137
8222
  patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8223
+ /**
8224
+ * Set Account Phone
8225
+ * @param {string} id Xero ID
8226
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
8227
+ * @param {*} [options] Override http request option.
8228
+ * @throws {RequiredError}
8229
+ */
8230
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8231
+ /**
8232
+ * Set Account VAT Number
8233
+ * @param {string} id Xero ID
8234
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
8235
+ * @param {*} [options] Override http request option.
8236
+ * @throws {RequiredError}
8237
+ */
8238
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8138
8239
  /**
8139
8240
  * Add Account Contacts
8140
8241
  * @summary Add Account Contact
@@ -8333,13 +8434,21 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
8333
8434
  */
8334
8435
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8335
8436
  /**
8336
- * Set Account Prize Promo
8437
+ * Set Account CNAME
8337
8438
  * @param {string} id Xero ID
8338
8439
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8339
8440
  * @param {*} [options] Override http request option.
8340
8441
  * @throws {RequiredError}
8341
8442
  */
8342
8443
  patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8444
+ /**
8445
+ * Set Account Company Number
8446
+ * @param {string} id Xero ID
8447
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
8448
+ * @param {*} [options] Override http request option.
8449
+ * @throws {RequiredError}
8450
+ */
8451
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8343
8452
  /**
8344
8453
  * Update Account Password
8345
8454
  * @summary Update Account Password
@@ -8349,6 +8458,22 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
8349
8458
  * @throws {RequiredError}
8350
8459
  */
8351
8460
  patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8461
+ /**
8462
+ * Set Account Phone
8463
+ * @param {string} id Xero ID
8464
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
8465
+ * @param {*} [options] Override http request option.
8466
+ * @throws {RequiredError}
8467
+ */
8468
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8469
+ /**
8470
+ * Set Account VAT Number
8471
+ * @param {string} id Xero ID
8472
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
8473
+ * @param {*} [options] Override http request option.
8474
+ * @throws {RequiredError}
8475
+ */
8476
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8352
8477
  /**
8353
8478
  * Add Account Contacts
8354
8479
  * @summary Add Account Contact
@@ -8547,13 +8672,21 @@ export declare class AccountsApi extends BaseAPI {
8547
8672
  */
8548
8673
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8549
8674
  /**
8550
- * Set Account Prize Promo
8675
+ * Set Account CNAME
8551
8676
  * @param {string} id Xero ID
8552
8677
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8553
8678
  * @param {*} [options] Override http request option.
8554
8679
  * @throws {RequiredError}
8555
8680
  */
8556
8681
  patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8682
+ /**
8683
+ * Set Account Company Number
8684
+ * @param {string} id Xero ID
8685
+ * @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
8686
+ * @param {*} [options] Override http request option.
8687
+ * @throws {RequiredError}
8688
+ */
8689
+ patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8557
8690
  /**
8558
8691
  * Update Account Password
8559
8692
  * @summary Update Account Password
@@ -8563,6 +8696,22 @@ export declare class AccountsApi extends BaseAPI {
8563
8696
  * @throws {RequiredError}
8564
8697
  */
8565
8698
  patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8699
+ /**
8700
+ * Set Account Phone
8701
+ * @param {string} id Xero ID
8702
+ * @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
8703
+ * @param {*} [options] Override http request option.
8704
+ * @throws {RequiredError}
8705
+ */
8706
+ patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8707
+ /**
8708
+ * Set Account VAT Number
8709
+ * @param {string} id Xero ID
8710
+ * @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
8711
+ * @param {*} [options] Override http request option.
8712
+ * @throws {RequiredError}
8713
+ */
8714
+ patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8566
8715
  /**
8567
8716
  * Add Account Contacts
8568
8717
  * @summary Add Account Contact
@@ -9942,6 +10091,15 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9942
10091
  * @throws {RequiredError}
9943
10092
  */
9944
10093
  getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10094
+ /**
10095
+ * Change instance owner
10096
+ * @summary Change instance owner
10097
+ * @param {string} instanceId Instance ID
10098
+ * @param {number} customerId Customer ID
10099
+ * @param {*} [options] Override http request option.
10100
+ * @throws {RequiredError}
10101
+ */
10102
+ patchChangeInstanceOwner: (instanceId: string, customerId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9945
10103
  /**
9946
10104
  * Update 3CX Instance Auto Failover
9947
10105
  * @summary Update 3CX Instance Auto Failover
@@ -9983,11 +10141,11 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9983
10141
  * @summary Extend additional disk on 3CX Instance
9984
10142
  * @param {string} instanceId Instance ID
9985
10143
  * @param {number} gigabytes Disk Space (GB)
9986
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10144
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
9987
10145
  * @param {*} [options] Override http request option.
9988
10146
  * @throws {RequiredError}
9989
10147
  */
9990
- postExtendDisk: (instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10148
+ postExtendDisk: (instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9991
10149
  /**
9992
10150
  * Failover 3CX Instance
9993
10151
  * @summary Failover 3CX Instance
@@ -9997,6 +10155,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9997
10155
  * @throws {RequiredError}
9998
10156
  */
9999
10157
  postFailoverInstance: (instanceId: string, type: PostFailoverInstanceTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10158
+ /**
10159
+ * Install 3CX SBC
10160
+ * @summary Install 3CX SBC
10161
+ * @param {number} sbcId SBC ID
10162
+ * @param {*} [options] Override http request option.
10163
+ * @throws {RequiredError}
10164
+ */
10165
+ postInstallTcxSbc: (sbcId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10000
10166
  /**
10001
10167
  * Reboot 3CX Instance
10002
10168
  * @summary Reboot 3CX Instance
@@ -10015,6 +10181,24 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
10015
10181
  * @throws {RequiredError}
10016
10182
  */
10017
10183
  postResizeInstance: (instanceId: string, size: PostResizeInstanceSizeEnum, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10184
+ /**
10185
+ * Restart 3CX Services
10186
+ * @summary Restart 3CX Services
10187
+ * @param {string} instanceId Instance ID
10188
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10189
+ * @param {*} [options] Override http request option.
10190
+ * @throws {RequiredError}
10191
+ */
10192
+ postRestartServices: (instanceId: string, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10193
+ /**
10194
+ * Reboot Instance
10195
+ * @summary Reboot Instance
10196
+ * @param {string} instanceId Instance ID
10197
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10198
+ * @param {*} [options] Override http request option.
10199
+ * @throws {RequiredError}
10200
+ */
10201
+ postScheduledReboot: (instanceId: string, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10018
10202
  /**
10019
10203
  * Suspend 3CX Instance
10020
10204
  * @summary Suspend 3CX Instance
@@ -10024,6 +10208,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
10024
10208
  * @throws {RequiredError}
10025
10209
  */
10026
10210
  postSuspendInstance: (instanceId: string, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10211
+ /**
10212
+ * Test 3CX Login Credentials
10213
+ * @summary Test 3CX Login Credentials
10214
+ * @param {string} instanceId Instance ID
10215
+ * @param {*} [options] Override http request option.
10216
+ * @throws {RequiredError}
10217
+ */
10218
+ postTestLoginCredentials: (instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10027
10219
  /**
10028
10220
  * Unsuspend 3CX Instance
10029
10221
  * @summary Unsuspend 3CX Instance
@@ -10053,7 +10245,7 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10053
10245
  * @param {*} [options] Override http request option.
10054
10246
  * @throws {RequiredError}
10055
10247
  */
10056
- getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationDetailsModel>>;
10248
+ getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InstallationDetailsDTO>>;
10057
10249
  /**
10058
10250
  * Get 3CX Installations
10059
10251
  * @summary Get 3CX Installations
@@ -10068,6 +10260,15 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10068
10260
  * @throws {RequiredError}
10069
10261
  */
10070
10262
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
10263
+ /**
10264
+ * Change instance owner
10265
+ * @summary Change instance owner
10266
+ * @param {string} instanceId Instance ID
10267
+ * @param {number} customerId Customer ID
10268
+ * @param {*} [options] Override http request option.
10269
+ * @throws {RequiredError}
10270
+ */
10271
+ patchChangeInstanceOwner(instanceId: string, customerId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10071
10272
  /**
10072
10273
  * Update 3CX Instance Auto Failover
10073
10274
  * @summary Update 3CX Instance Auto Failover
@@ -10109,11 +10310,11 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10109
10310
  * @summary Extend additional disk on 3CX Instance
10110
10311
  * @param {string} instanceId Instance ID
10111
10312
  * @param {number} gigabytes Disk Space (GB)
10112
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10313
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10113
10314
  * @param {*} [options] Override http request option.
10114
10315
  * @throws {RequiredError}
10115
10316
  */
10116
- postExtendDisk(instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10317
+ postExtendDisk(instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10117
10318
  /**
10118
10319
  * Failover 3CX Instance
10119
10320
  * @summary Failover 3CX Instance
@@ -10123,6 +10324,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10123
10324
  * @throws {RequiredError}
10124
10325
  */
10125
10326
  postFailoverInstance(instanceId: string, type: PostFailoverInstanceTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10327
+ /**
10328
+ * Install 3CX SBC
10329
+ * @summary Install 3CX SBC
10330
+ * @param {number} sbcId SBC ID
10331
+ * @param {*} [options] Override http request option.
10332
+ * @throws {RequiredError}
10333
+ */
10334
+ postInstallTcxSbc(sbcId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxSbcResponseDTO>>;
10126
10335
  /**
10127
10336
  * Reboot 3CX Instance
10128
10337
  * @summary Reboot 3CX Instance
@@ -10141,6 +10350,24 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10141
10350
  * @throws {RequiredError}
10142
10351
  */
10143
10352
  postResizeInstance(instanceId: string, size: PostResizeInstanceSizeEnum, schedule?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10353
+ /**
10354
+ * Restart 3CX Services
10355
+ * @summary Restart 3CX Services
10356
+ * @param {string} instanceId Instance ID
10357
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10358
+ * @param {*} [options] Override http request option.
10359
+ * @throws {RequiredError}
10360
+ */
10361
+ postRestartServices(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10362
+ /**
10363
+ * Reboot Instance
10364
+ * @summary Reboot Instance
10365
+ * @param {string} instanceId Instance ID
10366
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10367
+ * @param {*} [options] Override http request option.
10368
+ * @throws {RequiredError}
10369
+ */
10370
+ postScheduledReboot(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10144
10371
  /**
10145
10372
  * Suspend 3CX Instance
10146
10373
  * @summary Suspend 3CX Instance
@@ -10150,6 +10377,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10150
10377
  * @throws {RequiredError}
10151
10378
  */
10152
10379
  postSuspendInstance(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10380
+ /**
10381
+ * Test 3CX Login Credentials
10382
+ * @summary Test 3CX Login Credentials
10383
+ * @param {string} instanceId Instance ID
10384
+ * @param {*} [options] Override http request option.
10385
+ * @throws {RequiredError}
10386
+ */
10387
+ postTestLoginCredentials(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10153
10388
  /**
10154
10389
  * Unsuspend 3CX Instance
10155
10390
  * @summary Unsuspend 3CX Instance
@@ -10179,7 +10414,7 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10179
10414
  * @param {*} [options] Override http request option.
10180
10415
  * @throws {RequiredError}
10181
10416
  */
10182
- getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationDetailsModel>;
10417
+ getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): AxiosPromise<InstallationDetailsDTO>;
10183
10418
  /**
10184
10419
  * Get 3CX Installations
10185
10420
  * @summary Get 3CX Installations
@@ -10194,6 +10429,15 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10194
10429
  * @throws {RequiredError}
10195
10430
  */
10196
10431
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
10432
+ /**
10433
+ * Change instance owner
10434
+ * @summary Change instance owner
10435
+ * @param {string} instanceId Instance ID
10436
+ * @param {number} customerId Customer ID
10437
+ * @param {*} [options] Override http request option.
10438
+ * @throws {RequiredError}
10439
+ */
10440
+ patchChangeInstanceOwner(instanceId: string, customerId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10197
10441
  /**
10198
10442
  * Update 3CX Instance Auto Failover
10199
10443
  * @summary Update 3CX Instance Auto Failover
@@ -10235,11 +10479,11 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10235
10479
  * @summary Extend additional disk on 3CX Instance
10236
10480
  * @param {string} instanceId Instance ID
10237
10481
  * @param {number} gigabytes Disk Space (GB)
10238
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10482
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10239
10483
  * @param {*} [options] Override http request option.
10240
10484
  * @throws {RequiredError}
10241
10485
  */
10242
- postExtendDisk(instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10486
+ postExtendDisk(instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10243
10487
  /**
10244
10488
  * Failover 3CX Instance
10245
10489
  * @summary Failover 3CX Instance
@@ -10249,6 +10493,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10249
10493
  * @throws {RequiredError}
10250
10494
  */
10251
10495
  postFailoverInstance(instanceId: string, type: PostFailoverInstanceTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10496
+ /**
10497
+ * Install 3CX SBC
10498
+ * @summary Install 3CX SBC
10499
+ * @param {number} sbcId SBC ID
10500
+ * @param {*} [options] Override http request option.
10501
+ * @throws {RequiredError}
10502
+ */
10503
+ postInstallTcxSbc(sbcId: number, options?: RawAxiosRequestConfig): AxiosPromise<TcxSbcResponseDTO>;
10252
10504
  /**
10253
10505
  * Reboot 3CX Instance
10254
10506
  * @summary Reboot 3CX Instance
@@ -10267,6 +10519,24 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10267
10519
  * @throws {RequiredError}
10268
10520
  */
10269
10521
  postResizeInstance(instanceId: string, size: PostResizeInstanceSizeEnum, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10522
+ /**
10523
+ * Restart 3CX Services
10524
+ * @summary Restart 3CX Services
10525
+ * @param {string} instanceId Instance ID
10526
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10527
+ * @param {*} [options] Override http request option.
10528
+ * @throws {RequiredError}
10529
+ */
10530
+ postRestartServices(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10531
+ /**
10532
+ * Reboot Instance
10533
+ * @summary Reboot Instance
10534
+ * @param {string} instanceId Instance ID
10535
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10536
+ * @param {*} [options] Override http request option.
10537
+ * @throws {RequiredError}
10538
+ */
10539
+ postScheduledReboot(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10270
10540
  /**
10271
10541
  * Suspend 3CX Instance
10272
10542
  * @summary Suspend 3CX Instance
@@ -10276,6 +10546,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10276
10546
  * @throws {RequiredError}
10277
10547
  */
10278
10548
  postSuspendInstance(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10549
+ /**
10550
+ * Test 3CX Login Credentials
10551
+ * @summary Test 3CX Login Credentials
10552
+ * @param {string} instanceId Instance ID
10553
+ * @param {*} [options] Override http request option.
10554
+ * @throws {RequiredError}
10555
+ */
10556
+ postTestLoginCredentials(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10279
10557
  /**
10280
10558
  * Unsuspend 3CX Instance
10281
10559
  * @summary Unsuspend 3CX Instance
@@ -10305,7 +10583,7 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10305
10583
  * @param {*} [options] Override http request option.
10306
10584
  * @throws {RequiredError}
10307
10585
  */
10308
- getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationDetailsModel, any, {}>>;
10586
+ getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InstallationDetailsDTO, any, {}>>;
10309
10587
  /**
10310
10588
  * Get 3CX Installations
10311
10589
  * @summary Get 3CX Installations
@@ -10320,6 +10598,15 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10320
10598
  * @throws {RequiredError}
10321
10599
  */
10322
10600
  getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
10601
+ /**
10602
+ * Change instance owner
10603
+ * @summary Change instance owner
10604
+ * @param {string} instanceId Instance ID
10605
+ * @param {number} customerId Customer ID
10606
+ * @param {*} [options] Override http request option.
10607
+ * @throws {RequiredError}
10608
+ */
10609
+ patchChangeInstanceOwner(instanceId: string, customerId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10323
10610
  /**
10324
10611
  * Update 3CX Instance Auto Failover
10325
10612
  * @summary Update 3CX Instance Auto Failover
@@ -10361,11 +10648,11 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10361
10648
  * @summary Extend additional disk on 3CX Instance
10362
10649
  * @param {string} instanceId Instance ID
10363
10650
  * @param {number} gigabytes Disk Space (GB)
10364
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10651
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10365
10652
  * @param {*} [options] Override http request option.
10366
10653
  * @throws {RequiredError}
10367
10654
  */
10368
- postExtendDisk(instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10655
+ postExtendDisk(instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10369
10656
  /**
10370
10657
  * Failover 3CX Instance
10371
10658
  * @summary Failover 3CX Instance
@@ -10375,6 +10662,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10375
10662
  * @throws {RequiredError}
10376
10663
  */
10377
10664
  postFailoverInstance(instanceId: string, type: PostFailoverInstanceTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10665
+ /**
10666
+ * Install 3CX SBC
10667
+ * @summary Install 3CX SBC
10668
+ * @param {number} sbcId SBC ID
10669
+ * @param {*} [options] Override http request option.
10670
+ * @throws {RequiredError}
10671
+ */
10672
+ postInstallTcxSbc(sbcId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcResponseDTO, any, {}>>;
10378
10673
  /**
10379
10674
  * Reboot 3CX Instance
10380
10675
  * @summary Reboot 3CX Instance
@@ -10393,6 +10688,24 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10393
10688
  * @throws {RequiredError}
10394
10689
  */
10395
10690
  postResizeInstance(instanceId: string, size: PostResizeInstanceSizeEnum, schedule?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10691
+ /**
10692
+ * Restart 3CX Services
10693
+ * @summary Restart 3CX Services
10694
+ * @param {string} instanceId Instance ID
10695
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10696
+ * @param {*} [options] Override http request option.
10697
+ * @throws {RequiredError}
10698
+ */
10699
+ postRestartServices(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10700
+ /**
10701
+ * Reboot Instance
10702
+ * @summary Reboot Instance
10703
+ * @param {string} instanceId Instance ID
10704
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10705
+ * @param {*} [options] Override http request option.
10706
+ * @throws {RequiredError}
10707
+ */
10708
+ postScheduledReboot(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10396
10709
  /**
10397
10710
  * Suspend 3CX Instance
10398
10711
  * @summary Suspend 3CX Instance
@@ -10402,6 +10715,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10402
10715
  * @throws {RequiredError}
10403
10716
  */
10404
10717
  postSuspendInstance(instanceId: string, schedule?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10718
+ /**
10719
+ * Test 3CX Login Credentials
10720
+ * @summary Test 3CX Login Credentials
10721
+ * @param {string} instanceId Instance ID
10722
+ * @param {*} [options] Override http request option.
10723
+ * @throws {RequiredError}
10724
+ */
10725
+ postTestLoginCredentials(instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10405
10726
  /**
10406
10727
  * Unsuspend 3CX Instance
10407
10728
  * @summary Unsuspend 3CX Instance
@@ -12061,6 +12382,15 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
12061
12382
  * @throws {RequiredError}
12062
12383
  */
12063
12384
  postPrintShippingLabel: (id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12385
+ /**
12386
+ * Process 3CX Licences (Admin)
12387
+ * @summary Process 3CX Licences (Admin)
12388
+ * @param {number} id Order ID
12389
+ * @param {number} batchId Batch ID
12390
+ * @param {*} [options] Override http request option.
12391
+ * @throws {RequiredError}
12392
+ */
12393
+ postProcessTcxLicences: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12064
12394
  /**
12065
12395
  * Send Order Email
12066
12396
  * @summary Send Order Email
@@ -12338,6 +12668,15 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
12338
12668
  * @throws {RequiredError}
12339
12669
  */
12340
12670
  postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
12671
+ /**
12672
+ * Process 3CX Licences (Admin)
12673
+ * @summary Process 3CX Licences (Admin)
12674
+ * @param {number} id Order ID
12675
+ * @param {number} batchId Batch ID
12676
+ * @param {*} [options] Override http request option.
12677
+ * @throws {RequiredError}
12678
+ */
12679
+ postProcessTcxLicences(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderDetailsDTO>>;
12341
12680
  /**
12342
12681
  * Send Order Email
12343
12682
  * @summary Send Order Email
@@ -12615,6 +12954,15 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
12615
12954
  * @throws {RequiredError}
12616
12955
  */
12617
12956
  postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): AxiosPromise<File>;
12957
+ /**
12958
+ * Process 3CX Licences (Admin)
12959
+ * @summary Process 3CX Licences (Admin)
12960
+ * @param {number} id Order ID
12961
+ * @param {number} batchId Batch ID
12962
+ * @param {*} [options] Override http request option.
12963
+ * @throws {RequiredError}
12964
+ */
12965
+ postProcessTcxLicences(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderDetailsDTO>;
12618
12966
  /**
12619
12967
  * Send Order Email
12620
12968
  * @summary Send Order Email
@@ -12892,6 +13240,15 @@ export declare class OrdersApi extends BaseAPI {
12892
13240
  * @throws {RequiredError}
12893
13241
  */
12894
13242
  postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
13243
+ /**
13244
+ * Process 3CX Licences (Admin)
13245
+ * @summary Process 3CX Licences (Admin)
13246
+ * @param {number} id Order ID
13247
+ * @param {number} batchId Batch ID
13248
+ * @param {*} [options] Override http request option.
13249
+ * @throws {RequiredError}
13250
+ */
13251
+ postProcessTcxLicences(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderDetailsDTO, any, {}>>;
12895
13252
  /**
12896
13253
  * Send Order Email
12897
13254
  * @summary Send Order Email