yellowgrid-api-ts 3.2.160-dev.0 → 3.2.162-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/.openapi-generator/FILES +3 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +6 -0
- package/api.ts +581 -246
- package/configuration.ts +2 -2
- package/dist/api.d.ts +209 -9
- package/dist/api.js +542 -237
- package/dist/configuration.js +2 -2
- package/docs/AbstractOrderRequestDTO.md +1 -1
- package/docs/AccountsApi.md +96 -0
- package/docs/AdminOrderRequestDTO.md +1 -1
- package/docs/CRMApi.md +2 -2
- package/docs/Class3CXApi.md +48 -0
- package/docs/Class3CXInstallationsApi.md +55 -0
- package/docs/{CrmActivityDto.md → CrmActivityDTO.md} +1 -1
- package/docs/CrmDateActivitiesDTO.md +1 -1
- package/docs/CustomerListAccountDTO.md +27 -0
- 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/RecordingBackupAzureModel.md +2 -0
- package/docs/RecordingsBackupInfoDTO.md +2 -2
- package/docs/ShipmentRequestDTO.md +2 -2
- package/docs/TableHistoryEntity.md +35 -0
- package/docs/TcxKeySummaryDTO.md +1 -1
- package/openapitools.json +1 -1
- package/package.json +2 -2
- package/docs/AccountPageDetailsDTO.md +0 -41
- package/docs/PatchSendWelcomeEmailRequest.md +0 -20
- package/docs/PatchSetTcxWizardCnameRequest.md +0 -20
- package/docs/PostAddAdminNoteRequest.md +0 -20
- package/docs/PostCreateCrmNoteRequest.md +0 -20
- package/docs/PostGetProductRequest.md +0 -24
- package/docs/TcxInstallationDetailsModel.md +0 -45
- /package/docs/{CrmActivitiesResponseDto.md → CrmActivitiesResponseDTO.md} +0 -0
package/configuration.ts
CHANGED
|
@@ -115,7 +115,7 @@ export class Configuration {
|
|
|
115
115
|
* @return True if the given MIME is JSON, false otherwise.
|
|
116
116
|
*/
|
|
117
117
|
public isJsonMime(mime: string): boolean {
|
|
118
|
-
const jsonMime: RegExp =
|
|
119
|
-
return mime !== null &&
|
|
118
|
+
const jsonMime: RegExp = /^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$/i;
|
|
119
|
+
return mime !== null && jsonMime.test(mime);
|
|
120
120
|
}
|
|
121
121
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -30,6 +30,9 @@ export interface AbstractOrderRequestDTO {
|
|
|
30
30
|
* Provisioning URL
|
|
31
31
|
*/
|
|
32
32
|
'provisioningUrl'?: string | null;
|
|
33
|
+
/**
|
|
34
|
+
* Shipping Address
|
|
35
|
+
*/
|
|
33
36
|
'shippingAddress'?: AddressModel | null;
|
|
34
37
|
/**
|
|
35
38
|
* Part Ship Order
|
|
@@ -614,6 +617,9 @@ export interface AdminOrderRequestDTO {
|
|
|
614
617
|
* Provisioning URL
|
|
615
618
|
*/
|
|
616
619
|
'provisioningUrl'?: string | null;
|
|
620
|
+
/**
|
|
621
|
+
* Shipping Address
|
|
622
|
+
*/
|
|
617
623
|
'shippingAddress'?: AddressModel | null;
|
|
618
624
|
/**
|
|
619
625
|
* Part Ship Order
|
|
@@ -968,6 +974,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
968
974
|
readonly PopsStockTransactions: "pops_stock_transactions";
|
|
969
975
|
readonly PopsSuppliers: "pops_suppliers";
|
|
970
976
|
readonly PopsSupplierItems: "pops_supplier_items";
|
|
977
|
+
readonly PopsTableAttribs: "pops_table_attribs";
|
|
971
978
|
readonly Pops3cxBackup: "pops_3cx_backup";
|
|
972
979
|
readonly Pops3cxBilling: "pops_3cx_billing";
|
|
973
980
|
readonly PopsDeadLicences: "pops_dead_licences";
|
|
@@ -1653,7 +1660,7 @@ export interface CrmActivityDTO {
|
|
|
1653
1660
|
*/
|
|
1654
1661
|
'type'?: string;
|
|
1655
1662
|
/**
|
|
1656
|
-
*
|
|
1663
|
+
* Activity Timestamp
|
|
1657
1664
|
*/
|
|
1658
1665
|
'timestamp'?: string | null;
|
|
1659
1666
|
/**
|
|
@@ -1715,7 +1722,7 @@ export interface CrmContactDTO {
|
|
|
1715
1722
|
*/
|
|
1716
1723
|
export interface CrmDateActivitiesDTO {
|
|
1717
1724
|
/**
|
|
1718
|
-
* Date
|
|
1725
|
+
* Date
|
|
1719
1726
|
*/
|
|
1720
1727
|
'date'?: string | null;
|
|
1721
1728
|
/**
|
|
@@ -1891,6 +1898,27 @@ export interface CustomerItemRequestDTO {
|
|
|
1891
1898
|
*/
|
|
1892
1899
|
'readOnly'?: boolean;
|
|
1893
1900
|
}
|
|
1901
|
+
/**
|
|
1902
|
+
* Customer List Account
|
|
1903
|
+
*/
|
|
1904
|
+
export interface CustomerListAccountDTO {
|
|
1905
|
+
/**
|
|
1906
|
+
* ID
|
|
1907
|
+
*/
|
|
1908
|
+
'id'?: number;
|
|
1909
|
+
/**
|
|
1910
|
+
* Xero ID
|
|
1911
|
+
*/
|
|
1912
|
+
'xeroId'?: string;
|
|
1913
|
+
/**
|
|
1914
|
+
* Xero ID
|
|
1915
|
+
*/
|
|
1916
|
+
'company'?: string;
|
|
1917
|
+
/**
|
|
1918
|
+
* Xero ID
|
|
1919
|
+
*/
|
|
1920
|
+
'domains'?: Array<string>;
|
|
1921
|
+
}
|
|
1894
1922
|
/**
|
|
1895
1923
|
* Order Request
|
|
1896
1924
|
*/
|
|
@@ -1908,6 +1936,9 @@ export interface CustomerOrderRequestDTO {
|
|
|
1908
1936
|
* Provisioning URL
|
|
1909
1937
|
*/
|
|
1910
1938
|
'provisioningUrl'?: string | null;
|
|
1939
|
+
/**
|
|
1940
|
+
* Shipping Address
|
|
1941
|
+
*/
|
|
1911
1942
|
'shippingAddress'?: AddressModel | null;
|
|
1912
1943
|
/**
|
|
1913
1944
|
* Part Ship Order
|
|
@@ -2057,6 +2088,9 @@ export interface DetailedOrderRequestDTO {
|
|
|
2057
2088
|
* Provisioning URL
|
|
2058
2089
|
*/
|
|
2059
2090
|
'provisioningUrl'?: string | null;
|
|
2091
|
+
/**
|
|
2092
|
+
* Shipping Address
|
|
2093
|
+
*/
|
|
2060
2094
|
'shippingAddress'?: AddressModel | null;
|
|
2061
2095
|
/**
|
|
2062
2096
|
* Part Ship Order
|
|
@@ -4191,7 +4225,7 @@ export interface PartnerDTO {
|
|
|
4191
4225
|
/**
|
|
4192
4226
|
* 3CX Partner ID
|
|
4193
4227
|
*/
|
|
4194
|
-
'partnerId'?: string;
|
|
4228
|
+
'partnerId'?: string | null;
|
|
4195
4229
|
/**
|
|
4196
4230
|
* 3CX Partner Company Name
|
|
4197
4231
|
*/
|
|
@@ -4305,7 +4339,7 @@ export interface PatchUpdateTcxPartnerIdRequest {
|
|
|
4305
4339
|
/**
|
|
4306
4340
|
* Set Account 3CX Partner ID
|
|
4307
4341
|
*/
|
|
4308
|
-
'partnerId'?: string;
|
|
4342
|
+
'partnerId'?: string | null;
|
|
4309
4343
|
}
|
|
4310
4344
|
/**
|
|
4311
4345
|
* Customer Account
|
|
@@ -4653,7 +4687,7 @@ export interface ProductSummaryDTO {
|
|
|
4653
4687
|
*/
|
|
4654
4688
|
'stockProduct'?: boolean;
|
|
4655
4689
|
/**
|
|
4656
|
-
* Date
|
|
4690
|
+
* Due Date
|
|
4657
4691
|
*/
|
|
4658
4692
|
'dueDate'?: string | null;
|
|
4659
4693
|
/**
|
|
@@ -4668,6 +4702,9 @@ export interface ProductSummaryDTO {
|
|
|
4668
4702
|
* RRP Price
|
|
4669
4703
|
*/
|
|
4670
4704
|
'rrp'?: number | null;
|
|
4705
|
+
/**
|
|
4706
|
+
* 3CX Licence Details
|
|
4707
|
+
*/
|
|
4671
4708
|
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4672
4709
|
/**
|
|
4673
4710
|
* 3CX Hosting
|
|
@@ -4777,11 +4814,11 @@ export interface ProspectDTO {
|
|
|
4777
4814
|
*/
|
|
4778
4815
|
'telephone'?: string | null;
|
|
4779
4816
|
/**
|
|
4780
|
-
* Date
|
|
4817
|
+
* Last Order Date
|
|
4781
4818
|
*/
|
|
4782
4819
|
'lastOrderDate'?: string | null;
|
|
4783
4820
|
/**
|
|
4784
|
-
* Date
|
|
4821
|
+
* Call Back Date
|
|
4785
4822
|
*/
|
|
4786
4823
|
'callbackDate'?: string | null;
|
|
4787
4824
|
/**
|
|
@@ -4933,6 +4970,10 @@ export interface RecordingBackupAzureModel {
|
|
|
4933
4970
|
* Storage Account Connection String
|
|
4934
4971
|
*/
|
|
4935
4972
|
'connection_string'?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* SAS Url
|
|
4975
|
+
*/
|
|
4976
|
+
'sasUrl'?: string;
|
|
4936
4977
|
/**
|
|
4937
4978
|
* Recordings Path
|
|
4938
4979
|
*/
|
|
@@ -4942,7 +4983,13 @@ export interface RecordingBackupAzureModel {
|
|
|
4942
4983
|
* Recordings Backup Info
|
|
4943
4984
|
*/
|
|
4944
4985
|
export interface RecordingsBackupInfoDTO {
|
|
4986
|
+
/**
|
|
4987
|
+
* Azure Backup Storage
|
|
4988
|
+
*/
|
|
4945
4989
|
'backup'?: RecordingBackupAzureModel | null;
|
|
4990
|
+
/**
|
|
4991
|
+
* 3CX Remote Storage
|
|
4992
|
+
*/
|
|
4946
4993
|
'storage'?: TcxRemoteStorageModel | null;
|
|
4947
4994
|
}
|
|
4948
4995
|
/**
|
|
@@ -5414,6 +5461,9 @@ export interface ShipmentRequestDTO {
|
|
|
5414
5461
|
* Courier
|
|
5415
5462
|
*/
|
|
5416
5463
|
'courier'?: ShipmentRequestDTOCourierEnum;
|
|
5464
|
+
/**
|
|
5465
|
+
* Address
|
|
5466
|
+
*/
|
|
5417
5467
|
'address'?: AddressModel | null;
|
|
5418
5468
|
/**
|
|
5419
5469
|
* Scanned Lines
|
|
@@ -5424,7 +5474,7 @@ export interface ShipmentRequestDTO {
|
|
|
5424
5474
|
*/
|
|
5425
5475
|
'service'?: string;
|
|
5426
5476
|
/**
|
|
5427
|
-
* Date
|
|
5477
|
+
* Ship Date
|
|
5428
5478
|
*/
|
|
5429
5479
|
'shipDate'?: string | null;
|
|
5430
5480
|
/**
|
|
@@ -6774,6 +6824,43 @@ export interface SupportTicketModel {
|
|
|
6774
6824
|
*/
|
|
6775
6825
|
'conversations'?: Array<ConversationModel>;
|
|
6776
6826
|
}
|
|
6827
|
+
/**
|
|
6828
|
+
* TableAttribsEntity
|
|
6829
|
+
*/
|
|
6830
|
+
export interface TableHistoryEntity {
|
|
6831
|
+
/**
|
|
6832
|
+
* ownerId
|
|
6833
|
+
*/
|
|
6834
|
+
'ownerId'?: string;
|
|
6835
|
+
/**
|
|
6836
|
+
* table
|
|
6837
|
+
*/
|
|
6838
|
+
'dbTable'?: string;
|
|
6839
|
+
/**
|
|
6840
|
+
* orderingField
|
|
6841
|
+
*/
|
|
6842
|
+
'orderingField'?: string;
|
|
6843
|
+
/**
|
|
6844
|
+
* asc
|
|
6845
|
+
*/
|
|
6846
|
+
'asc'?: number;
|
|
6847
|
+
/**
|
|
6848
|
+
* perPage
|
|
6849
|
+
*/
|
|
6850
|
+
'perPage'?: number;
|
|
6851
|
+
/**
|
|
6852
|
+
* currPage
|
|
6853
|
+
*/
|
|
6854
|
+
'currPage'?: number;
|
|
6855
|
+
/**
|
|
6856
|
+
* filter
|
|
6857
|
+
*/
|
|
6858
|
+
'filter'?: string;
|
|
6859
|
+
/**
|
|
6860
|
+
* page
|
|
6861
|
+
*/
|
|
6862
|
+
'page'?: number;
|
|
6863
|
+
}
|
|
6777
6864
|
/**
|
|
6778
6865
|
* 3CX Wizard Restore From Backup
|
|
6779
6866
|
*/
|
|
@@ -7208,7 +7295,7 @@ export interface TcxKeySummaryDTO {
|
|
|
7208
7295
|
*/
|
|
7209
7296
|
'edition'?: string;
|
|
7210
7297
|
/**
|
|
7211
|
-
* Date
|
|
7298
|
+
* Expiry Date
|
|
7212
7299
|
*/
|
|
7213
7300
|
'expiry'?: string | null;
|
|
7214
7301
|
}
|
|
@@ -8441,6 +8528,12 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8441
8528
|
* @throws {RequiredError}
|
|
8442
8529
|
*/
|
|
8443
8530
|
getGetClientCredentials: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8531
|
+
/**
|
|
8532
|
+
* Get Customer Accounts List
|
|
8533
|
+
* @param {*} [options] Override http request option.
|
|
8534
|
+
* @throws {RequiredError}
|
|
8535
|
+
*/
|
|
8536
|
+
getGetCustomerAccountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8444
8537
|
/**
|
|
8445
8538
|
* Get 3CX Keys
|
|
8446
8539
|
* @summary Get 3CX Keys
|
|
@@ -8455,6 +8548,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8455
8548
|
* @throws {RequiredError}
|
|
8456
8549
|
*/
|
|
8457
8550
|
getGetFinanceSettings: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8551
|
+
/**
|
|
8552
|
+
* Get Last Account
|
|
8553
|
+
* @summary Get Last Account
|
|
8554
|
+
* @param {*} [options] Override http request option.
|
|
8555
|
+
* @throws {RequiredError}
|
|
8556
|
+
*/
|
|
8557
|
+
getGetLastAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8458
8558
|
/**
|
|
8459
8559
|
* Get Account 3CX Details
|
|
8460
8560
|
* @param {string} id Xero ID
|
|
@@ -8772,6 +8872,12 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8772
8872
|
* @throws {RequiredError}
|
|
8773
8873
|
*/
|
|
8774
8874
|
getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ClientModel>>>;
|
|
8875
|
+
/**
|
|
8876
|
+
* Get Customer Accounts List
|
|
8877
|
+
* @param {*} [options] Override http request option.
|
|
8878
|
+
* @throws {RequiredError}
|
|
8879
|
+
*/
|
|
8880
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerListAccountDTO>>>;
|
|
8775
8881
|
/**
|
|
8776
8882
|
* Get 3CX Keys
|
|
8777
8883
|
* @summary Get 3CX Keys
|
|
@@ -8786,6 +8892,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
8786
8892
|
* @throws {RequiredError}
|
|
8787
8893
|
*/
|
|
8788
8894
|
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
|
|
8895
|
+
/**
|
|
8896
|
+
* Get Last Account
|
|
8897
|
+
* @summary Get Last Account
|
|
8898
|
+
* @param {*} [options] Override http request option.
|
|
8899
|
+
* @throws {RequiredError}
|
|
8900
|
+
*/
|
|
8901
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountSummaryDTO>>;
|
|
8789
8902
|
/**
|
|
8790
8903
|
* Get Account 3CX Details
|
|
8791
8904
|
* @param {string} id Xero ID
|
|
@@ -9103,6 +9216,12 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9103
9216
|
* @throws {RequiredError}
|
|
9104
9217
|
*/
|
|
9105
9218
|
getGetClientCredentials(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClientModel>>;
|
|
9219
|
+
/**
|
|
9220
|
+
* Get Customer Accounts List
|
|
9221
|
+
* @param {*} [options] Override http request option.
|
|
9222
|
+
* @throws {RequiredError}
|
|
9223
|
+
*/
|
|
9224
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerListAccountDTO>>;
|
|
9106
9225
|
/**
|
|
9107
9226
|
* Get 3CX Keys
|
|
9108
9227
|
* @summary Get 3CX Keys
|
|
@@ -9117,6 +9236,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9117
9236
|
* @throws {RequiredError}
|
|
9118
9237
|
*/
|
|
9119
9238
|
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
|
|
9239
|
+
/**
|
|
9240
|
+
* Get Last Account
|
|
9241
|
+
* @summary Get Last Account
|
|
9242
|
+
* @param {*} [options] Override http request option.
|
|
9243
|
+
* @throws {RequiredError}
|
|
9244
|
+
*/
|
|
9245
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): AxiosPromise<AccountSummaryDTO>;
|
|
9120
9246
|
/**
|
|
9121
9247
|
* Get Account 3CX Details
|
|
9122
9248
|
* @param {string} id Xero ID
|
|
@@ -9434,6 +9560,12 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9434
9560
|
* @throws {RequiredError}
|
|
9435
9561
|
*/
|
|
9436
9562
|
getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientModel[], any, {}>>;
|
|
9563
|
+
/**
|
|
9564
|
+
* Get Customer Accounts List
|
|
9565
|
+
* @param {*} [options] Override http request option.
|
|
9566
|
+
* @throws {RequiredError}
|
|
9567
|
+
*/
|
|
9568
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerListAccountDTO[], any, {}>>;
|
|
9437
9569
|
/**
|
|
9438
9570
|
* Get 3CX Keys
|
|
9439
9571
|
* @summary Get 3CX Keys
|
|
@@ -9448,6 +9580,13 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9448
9580
|
* @throws {RequiredError}
|
|
9449
9581
|
*/
|
|
9450
9582
|
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
|
|
9583
|
+
/**
|
|
9584
|
+
* Get Last Account
|
|
9585
|
+
* @summary Get Last Account
|
|
9586
|
+
* @param {*} [options] Override http request option.
|
|
9587
|
+
* @throws {RequiredError}
|
|
9588
|
+
*/
|
|
9589
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountSummaryDTO, any, {}>>;
|
|
9451
9590
|
/**
|
|
9452
9591
|
* Get Account 3CX Details
|
|
9453
9592
|
* @param {string} id Xero ID
|
|
@@ -9860,6 +9999,7 @@ export declare class CRMApi extends BaseAPI {
|
|
|
9860
9999
|
export declare const GetGetCrmActivitiesTypeEnum: {
|
|
9861
10000
|
readonly Alert: "alert";
|
|
9862
10001
|
readonly Call: "call";
|
|
10002
|
+
readonly Email: "email";
|
|
9863
10003
|
readonly Note: "note";
|
|
9864
10004
|
readonly Order: "order";
|
|
9865
10005
|
readonly Quote: "quote";
|
|
@@ -9878,6 +10018,13 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9878
10018
|
* @throws {RequiredError}
|
|
9879
10019
|
*/
|
|
9880
10020
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10021
|
+
/**
|
|
10022
|
+
* Get 3CX Expiring Keys
|
|
10023
|
+
* @summary Get 3CX Expiring Keys
|
|
10024
|
+
* @param {*} [options] Override http request option.
|
|
10025
|
+
* @throws {RequiredError}
|
|
10026
|
+
*/
|
|
10027
|
+
getGetTcxExpiringKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9881
10028
|
/**
|
|
9882
10029
|
* Get Bulk 3CX Licence Details
|
|
9883
10030
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9899,6 +10046,13 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
9899
10046
|
* @throws {RequiredError}
|
|
9900
10047
|
*/
|
|
9901
10048
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
10049
|
+
/**
|
|
10050
|
+
* Get 3CX Expiring Keys
|
|
10051
|
+
* @summary Get 3CX Expiring Keys
|
|
10052
|
+
* @param {*} [options] Override http request option.
|
|
10053
|
+
* @throws {RequiredError}
|
|
10054
|
+
*/
|
|
10055
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
9902
10056
|
/**
|
|
9903
10057
|
* Get Bulk 3CX Licence Details
|
|
9904
10058
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9920,6 +10074,13 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
9920
10074
|
* @throws {RequiredError}
|
|
9921
10075
|
*/
|
|
9922
10076
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
10077
|
+
/**
|
|
10078
|
+
* Get 3CX Expiring Keys
|
|
10079
|
+
* @summary Get 3CX Expiring Keys
|
|
10080
|
+
* @param {*} [options] Override http request option.
|
|
10081
|
+
* @throws {RequiredError}
|
|
10082
|
+
*/
|
|
10083
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
9923
10084
|
/**
|
|
9924
10085
|
* Get Bulk 3CX Licence Details
|
|
9925
10086
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -9941,6 +10102,13 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
9941
10102
|
* @throws {RequiredError}
|
|
9942
10103
|
*/
|
|
9943
10104
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
10105
|
+
/**
|
|
10106
|
+
* Get 3CX Expiring Keys
|
|
10107
|
+
* @summary Get 3CX Expiring Keys
|
|
10108
|
+
* @param {*} [options] Override http request option.
|
|
10109
|
+
* @throws {RequiredError}
|
|
10110
|
+
*/
|
|
10111
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
9944
10112
|
/**
|
|
9945
10113
|
* Get Bulk 3CX Licence Details
|
|
9946
10114
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -11100,6 +11268,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
|
|
|
11100
11268
|
* @throws {RequiredError}
|
|
11101
11269
|
*/
|
|
11102
11270
|
getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11271
|
+
/**
|
|
11272
|
+
* Get Recording Backup Storage
|
|
11273
|
+
* @summary Get Recording Backup Storage
|
|
11274
|
+
* @param {string} instanceId Instance ID
|
|
11275
|
+
* @param {*} [options] Override http request option.
|
|
11276
|
+
* @throws {RequiredError}
|
|
11277
|
+
*/
|
|
11278
|
+
getGetRecordingBackupStorage: (instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11103
11279
|
/**
|
|
11104
11280
|
* Change instance owner
|
|
11105
11281
|
* @summary Change instance owner
|
|
@@ -11278,6 +11454,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
|
|
|
11278
11454
|
* @throws {RequiredError}
|
|
11279
11455
|
*/
|
|
11280
11456
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
|
|
11457
|
+
/**
|
|
11458
|
+
* Get Recording Backup Storage
|
|
11459
|
+
* @summary Get Recording Backup Storage
|
|
11460
|
+
* @param {string} instanceId Instance ID
|
|
11461
|
+
* @param {*} [options] Override http request option.
|
|
11462
|
+
* @throws {RequiredError}
|
|
11463
|
+
*/
|
|
11464
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordingBackupAzureModel>>;
|
|
11281
11465
|
/**
|
|
11282
11466
|
* Change instance owner
|
|
11283
11467
|
* @summary Change instance owner
|
|
@@ -11456,6 +11640,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
|
|
|
11456
11640
|
* @throws {RequiredError}
|
|
11457
11641
|
*/
|
|
11458
11642
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
|
|
11643
|
+
/**
|
|
11644
|
+
* Get Recording Backup Storage
|
|
11645
|
+
* @summary Get Recording Backup Storage
|
|
11646
|
+
* @param {string} instanceId Instance ID
|
|
11647
|
+
* @param {*} [options] Override http request option.
|
|
11648
|
+
* @throws {RequiredError}
|
|
11649
|
+
*/
|
|
11650
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<RecordingBackupAzureModel>;
|
|
11459
11651
|
/**
|
|
11460
11652
|
* Change instance owner
|
|
11461
11653
|
* @summary Change instance owner
|
|
@@ -11634,6 +11826,14 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
|
|
|
11634
11826
|
* @throws {RequiredError}
|
|
11635
11827
|
*/
|
|
11636
11828
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
|
|
11829
|
+
/**
|
|
11830
|
+
* Get Recording Backup Storage
|
|
11831
|
+
* @summary Get Recording Backup Storage
|
|
11832
|
+
* @param {string} instanceId Instance ID
|
|
11833
|
+
* @param {*} [options] Override http request option.
|
|
11834
|
+
* @throws {RequiredError}
|
|
11835
|
+
*/
|
|
11836
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordingBackupAzureModel, any, {}>>;
|
|
11637
11837
|
/**
|
|
11638
11838
|
* Change instance owner
|
|
11639
11839
|
* @summary Change instance owner
|