yellowgrid-api-ts 3.2.115-dev.0 → 3.2.117-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
@@ -259,6 +259,18 @@ export interface AccountPageDetailsDTO {
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
  */
@@ -2320,6 +2332,42 @@ export declare const HostingRegionDTOCodeEnum: {
2320
2332
  readonly UsWestOr1: "US-WEST-OR-1";
2321
2333
  };
2322
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
+ }
2323
2371
  /**
2324
2372
  * InstanceFailoverIpsEntity
2325
2373
  */
@@ -3892,12 +3940,30 @@ export interface PatchUpdateAccountCnameRequest {
3892
3940
  */
3893
3941
  'cname'?: string;
3894
3942
  }
3943
+ export interface PatchUpdateAccountCompanyNumberRequest {
3944
+ /**
3945
+ * Company Number
3946
+ */
3947
+ 'companyNumber'?: string;
3948
+ }
3895
3949
  export interface PatchUpdateAccountContactPasswordRequest {
3896
3950
  /**
3897
3951
  * Password
3898
3952
  */
3899
3953
  'password'?: string;
3900
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
+ }
3901
3967
  /**
3902
3968
  * Customer Account
3903
3969
  */
@@ -4255,6 +4321,10 @@ export interface ProductSummaryDTO {
4255
4321
  * Stock Product
4256
4322
  */
4257
4323
  'stockProduct'?: boolean;
4324
+ /**
4325
+ * Date Time
4326
+ */
4327
+ 'dueDate'?: string | null;
4258
4328
  /**
4259
4329
  * Price
4260
4330
  */
@@ -4449,6 +4519,27 @@ export interface RecordingsBackupInfoDTO {
4449
4519
  'backup'?: RecordingBackupAzureModel | null;
4450
4520
  'storage'?: TcxRemoteStorageModel | null;
4451
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
+ }
4452
4543
  /**
4453
4544
  * Resource Not Ready
4454
4545
  */
@@ -6454,57 +6545,6 @@ export interface TcxHostingPricingEntity {
6454
6545
  */
6455
6546
  'highScDiscount'?: number;
6456
6547
  }
6457
- /**
6458
- * 3CX Installation Details
6459
- */
6460
- export interface TcxInstallationDetailsModel {
6461
- /**
6462
- * PBX IP Address
6463
- */
6464
- 'ipAddress'?: string | null;
6465
- /**
6466
- * Instance ID
6467
- */
6468
- 'instanceId'?: string | null;
6469
- /**
6470
- * Project ID
6471
- */
6472
- 'project'?: string | null;
6473
- 'privateKey'?: GenericFileModel | null;
6474
- /**
6475
- * Root Password
6476
- */
6477
- 'rootPassword'?: string | null;
6478
- 'ownerExtension'?: TcxUsersEntity | null;
6479
- /**
6480
- * Admin Email
6481
- */
6482
- 'adminEmail'?: string | null;
6483
- /**
6484
- * Console URL
6485
- */
6486
- 'url'?: string | null;
6487
- /**
6488
- * Admin Username
6489
- */
6490
- 'adminUsername'?: string | null;
6491
- /**
6492
- * Admin Password
6493
- */
6494
- 'adminPassword'?: string | null;
6495
- /**
6496
- * Config Backup FTP Host
6497
- */
6498
- 'ftpHost'?: string | null;
6499
- /**
6500
- * Config Backup FTP Username
6501
- */
6502
- 'ftpUsername'?: string | null;
6503
- /**
6504
- * Config Backup FTP Password
6505
- */
6506
- 'ftpPassword'?: string | null;
6507
- }
6508
6548
  /**
6509
6549
  * 3CX Installation
6510
6550
  */
@@ -7085,6 +7125,10 @@ export interface TcxSbcDTO {
7085
7125
  * 3CX SBC Key
7086
7126
  */
7087
7127
  'tcxKey'?: string;
7128
+ /**
7129
+ * 3CX SBC Configured
7130
+ */
7131
+ 'configured'?: boolean;
7088
7132
  }
7089
7133
  /**
7090
7134
  * 3CX Wizard SBC
@@ -7224,6 +7268,19 @@ export interface TcxSbcModel {
7224
7268
  */
7225
7269
  'technicalContact'?: string;
7226
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
+ }
7227
7284
  /**
7228
7285
  * 3CX Wizard Setup Config
7229
7286
  */
@@ -7901,13 +7958,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
7901
7958
  */
7902
7959
  patchSetTcxWizardCname: (patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7903
7960
  /**
7904
- * Set Account Prize Promo
7961
+ * Set Account CNAME
7905
7962
  * @param {string} id Xero ID
7906
7963
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
7907
7964
  * @param {*} [options] Override http request option.
7908
7965
  * @throws {RequiredError}
7909
7966
  */
7910
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>;
7911
7976
  /**
7912
7977
  * Update Account Password
7913
7978
  * @summary Update Account Password
@@ -7917,6 +7982,22 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
7917
7982
  * @throws {RequiredError}
7918
7983
  */
7919
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>;
7920
8001
  /**
7921
8002
  * Add Account Contacts
7922
8003
  * @summary Add Account Contact
@@ -8115,13 +8196,21 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
8115
8196
  */
8116
8197
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8117
8198
  /**
8118
- * Set Account Prize Promo
8199
+ * Set Account CNAME
8119
8200
  * @param {string} id Xero ID
8120
8201
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8121
8202
  * @param {*} [options] Override http request option.
8122
8203
  * @throws {RequiredError}
8123
8204
  */
8124
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>>;
8125
8214
  /**
8126
8215
  * Update Account Password
8127
8216
  * @summary Update Account Password
@@ -8131,6 +8220,22 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
8131
8220
  * @throws {RequiredError}
8132
8221
  */
8133
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>>;
8134
8239
  /**
8135
8240
  * Add Account Contacts
8136
8241
  * @summary Add Account Contact
@@ -8329,13 +8434,21 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
8329
8434
  */
8330
8435
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8331
8436
  /**
8332
- * Set Account Prize Promo
8437
+ * Set Account CNAME
8333
8438
  * @param {string} id Xero ID
8334
8439
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8335
8440
  * @param {*} [options] Override http request option.
8336
8441
  * @throws {RequiredError}
8337
8442
  */
8338
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>;
8339
8452
  /**
8340
8453
  * Update Account Password
8341
8454
  * @summary Update Account Password
@@ -8345,6 +8458,22 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
8345
8458
  * @throws {RequiredError}
8346
8459
  */
8347
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>;
8348
8477
  /**
8349
8478
  * Add Account Contacts
8350
8479
  * @summary Add Account Contact
@@ -8543,13 +8672,21 @@ export declare class AccountsApi extends BaseAPI {
8543
8672
  */
8544
8673
  patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8545
8674
  /**
8546
- * Set Account Prize Promo
8675
+ * Set Account CNAME
8547
8676
  * @param {string} id Xero ID
8548
8677
  * @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
8549
8678
  * @param {*} [options] Override http request option.
8550
8679
  * @throws {RequiredError}
8551
8680
  */
8552
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, {}>>;
8553
8690
  /**
8554
8691
  * Update Account Password
8555
8692
  * @summary Update Account Password
@@ -8559,6 +8696,22 @@ export declare class AccountsApi extends BaseAPI {
8559
8696
  * @throws {RequiredError}
8560
8697
  */
8561
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, {}>>;
8562
8715
  /**
8563
8716
  * Add Account Contacts
8564
8717
  * @summary Add Account Contact
@@ -9938,6 +10091,15 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9938
10091
  * @throws {RequiredError}
9939
10092
  */
9940
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>;
9941
10103
  /**
9942
10104
  * Update 3CX Instance Auto Failover
9943
10105
  * @summary Update 3CX Instance Auto Failover
@@ -9979,11 +10141,11 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9979
10141
  * @summary Extend additional disk on 3CX Instance
9980
10142
  * @param {string} instanceId Instance ID
9981
10143
  * @param {number} gigabytes Disk Space (GB)
9982
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10144
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
9983
10145
  * @param {*} [options] Override http request option.
9984
10146
  * @throws {RequiredError}
9985
10147
  */
9986
- postExtendDisk: (instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10148
+ postExtendDisk: (instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9987
10149
  /**
9988
10150
  * Failover 3CX Instance
9989
10151
  * @summary Failover 3CX Instance
@@ -9993,6 +10155,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
9993
10155
  * @throws {RequiredError}
9994
10156
  */
9995
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>;
9996
10166
  /**
9997
10167
  * Reboot 3CX Instance
9998
10168
  * @summary Reboot 3CX Instance
@@ -10011,6 +10181,24 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
10011
10181
  * @throws {RequiredError}
10012
10182
  */
10013
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>;
10014
10202
  /**
10015
10203
  * Suspend 3CX Instance
10016
10204
  * @summary Suspend 3CX Instance
@@ -10020,6 +10208,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
10020
10208
  * @throws {RequiredError}
10021
10209
  */
10022
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>;
10023
10219
  /**
10024
10220
  * Unsuspend 3CX Instance
10025
10221
  * @summary Unsuspend 3CX Instance
@@ -10049,7 +10245,7 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10049
10245
  * @param {*} [options] Override http request option.
10050
10246
  * @throws {RequiredError}
10051
10247
  */
10052
- 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>>;
10053
10249
  /**
10054
10250
  * Get 3CX Installations
10055
10251
  * @summary Get 3CX Installations
@@ -10064,6 +10260,15 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10064
10260
  * @throws {RequiredError}
10065
10261
  */
10066
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>>;
10067
10272
  /**
10068
10273
  * Update 3CX Instance Auto Failover
10069
10274
  * @summary Update 3CX Instance Auto Failover
@@ -10105,11 +10310,11 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10105
10310
  * @summary Extend additional disk on 3CX Instance
10106
10311
  * @param {string} instanceId Instance ID
10107
10312
  * @param {number} gigabytes Disk Space (GB)
10108
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10313
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10109
10314
  * @param {*} [options] Override http request option.
10110
10315
  * @throws {RequiredError}
10111
10316
  */
10112
- 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>>;
10113
10318
  /**
10114
10319
  * Failover 3CX Instance
10115
10320
  * @summary Failover 3CX Instance
@@ -10119,6 +10324,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10119
10324
  * @throws {RequiredError}
10120
10325
  */
10121
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>>;
10122
10335
  /**
10123
10336
  * Reboot 3CX Instance
10124
10337
  * @summary Reboot 3CX Instance
@@ -10137,6 +10350,24 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10137
10350
  * @throws {RequiredError}
10138
10351
  */
10139
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>>;
10140
10371
  /**
10141
10372
  * Suspend 3CX Instance
10142
10373
  * @summary Suspend 3CX Instance
@@ -10146,6 +10377,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
10146
10377
  * @throws {RequiredError}
10147
10378
  */
10148
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>>;
10149
10388
  /**
10150
10389
  * Unsuspend 3CX Instance
10151
10390
  * @summary Unsuspend 3CX Instance
@@ -10175,7 +10414,7 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10175
10414
  * @param {*} [options] Override http request option.
10176
10415
  * @throws {RequiredError}
10177
10416
  */
10178
- getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationDetailsModel>;
10417
+ getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): AxiosPromise<InstallationDetailsDTO>;
10179
10418
  /**
10180
10419
  * Get 3CX Installations
10181
10420
  * @summary Get 3CX Installations
@@ -10190,6 +10429,15 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10190
10429
  * @throws {RequiredError}
10191
10430
  */
10192
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>;
10193
10441
  /**
10194
10442
  * Update 3CX Instance Auto Failover
10195
10443
  * @summary Update 3CX Instance Auto Failover
@@ -10231,11 +10479,11 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10231
10479
  * @summary Extend additional disk on 3CX Instance
10232
10480
  * @param {string} instanceId Instance ID
10233
10481
  * @param {number} gigabytes Disk Space (GB)
10234
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10482
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10235
10483
  * @param {*} [options] Override http request option.
10236
10484
  * @throws {RequiredError}
10237
10485
  */
10238
- postExtendDisk(instanceId: string, gigabytes: number, schedule: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10486
+ postExtendDisk(instanceId: string, gigabytes: number, schedule?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10239
10487
  /**
10240
10488
  * Failover 3CX Instance
10241
10489
  * @summary Failover 3CX Instance
@@ -10245,6 +10493,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10245
10493
  * @throws {RequiredError}
10246
10494
  */
10247
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>;
10248
10504
  /**
10249
10505
  * Reboot 3CX Instance
10250
10506
  * @summary Reboot 3CX Instance
@@ -10263,6 +10519,24 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10263
10519
  * @throws {RequiredError}
10264
10520
  */
10265
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>;
10266
10540
  /**
10267
10541
  * Suspend 3CX Instance
10268
10542
  * @summary Suspend 3CX Instance
@@ -10272,6 +10546,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
10272
10546
  * @throws {RequiredError}
10273
10547
  */
10274
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>;
10275
10557
  /**
10276
10558
  * Unsuspend 3CX Instance
10277
10559
  * @summary Unsuspend 3CX Instance
@@ -10301,7 +10583,7 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10301
10583
  * @param {*} [options] Override http request option.
10302
10584
  * @throws {RequiredError}
10303
10585
  */
10304
- getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationDetailsModel, any, {}>>;
10586
+ getGetDetails(wizardId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InstallationDetailsDTO, any, {}>>;
10305
10587
  /**
10306
10588
  * Get 3CX Installations
10307
10589
  * @summary Get 3CX Installations
@@ -10316,6 +10598,15 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10316
10598
  * @throws {RequiredError}
10317
10599
  */
10318
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, {}>>;
10319
10610
  /**
10320
10611
  * Update 3CX Instance Auto Failover
10321
10612
  * @summary Update 3CX Instance Auto Failover
@@ -10357,11 +10648,11 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10357
10648
  * @summary Extend additional disk on 3CX Instance
10358
10649
  * @param {string} instanceId Instance ID
10359
10650
  * @param {number} gigabytes Disk Space (GB)
10360
- * @param {string} schedule Scheduled Task (Date &amp; Time)
10651
+ * @param {string} [schedule] Scheduled Task (Date &amp; Time)
10361
10652
  * @param {*} [options] Override http request option.
10362
10653
  * @throws {RequiredError}
10363
10654
  */
10364
- 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, {}>>;
10365
10656
  /**
10366
10657
  * Failover 3CX Instance
10367
10658
  * @summary Failover 3CX Instance
@@ -10371,6 +10662,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10371
10662
  * @throws {RequiredError}
10372
10663
  */
10373
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, {}>>;
10374
10673
  /**
10375
10674
  * Reboot 3CX Instance
10376
10675
  * @summary Reboot 3CX Instance
@@ -10389,6 +10688,24 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10389
10688
  * @throws {RequiredError}
10390
10689
  */
10391
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, {}>>;
10392
10709
  /**
10393
10710
  * Suspend 3CX Instance
10394
10711
  * @summary Suspend 3CX Instance
@@ -10398,6 +10715,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
10398
10715
  * @throws {RequiredError}
10399
10716
  */
10400
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, {}>>;
10401
10726
  /**
10402
10727
  * Unsuspend 3CX Instance
10403
10728
  * @summary Unsuspend 3CX Instance
@@ -12057,6 +12382,15 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
12057
12382
  * @throws {RequiredError}
12058
12383
  */
12059
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>;
12060
12394
  /**
12061
12395
  * Send Order Email
12062
12396
  * @summary Send Order Email
@@ -12334,6 +12668,15 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
12334
12668
  * @throws {RequiredError}
12335
12669
  */
12336
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>>;
12337
12680
  /**
12338
12681
  * Send Order Email
12339
12682
  * @summary Send Order Email
@@ -12611,6 +12954,15 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
12611
12954
  * @throws {RequiredError}
12612
12955
  */
12613
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>;
12614
12966
  /**
12615
12967
  * Send Order Email
12616
12968
  * @summary Send Order Email
@@ -12888,6 +13240,15 @@ export declare class OrdersApi extends BaseAPI {
12888
13240
  * @throws {RequiredError}
12889
13241
  */
12890
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, {}>>;
12891
13252
  /**
12892
13253
  * Send Order Email
12893
13254
  * @summary Send Order Email