yellowgrid-api-ts 3.2.220-dev.0 → 3.2.221-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 +5 -0
- package/README.md +10 -0
- package/api.ts +503 -0
- package/dist/api.d.ts +318 -0
- package/dist/api.js +390 -0
- package/docs/BillingApi.md +265 -0
- package/docs/CallTariffResponse.md +26 -0
- package/docs/ConnectionRequest.md +36 -0
- package/docs/InboundTariffPlanResponse.md +28 -0
- package/docs/MultiTenantSipTrunkRequest.md +22 -0
- package/docs/PriceGroupResponse.md +24 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2112,6 +2112,37 @@ export interface CallTariffPlan {
|
|
|
2112
2112
|
*/
|
|
2113
2113
|
'closed'?: boolean;
|
|
2114
2114
|
}
|
|
2115
|
+
/**
|
|
2116
|
+
*
|
|
2117
|
+
* @export
|
|
2118
|
+
* @interface CallTariffResponse
|
|
2119
|
+
*/
|
|
2120
|
+
export interface CallTariffResponse {
|
|
2121
|
+
/**
|
|
2122
|
+
*
|
|
2123
|
+
* @type {number}
|
|
2124
|
+
* @memberof CallTariffResponse
|
|
2125
|
+
*/
|
|
2126
|
+
'id'?: number;
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @type {number}
|
|
2130
|
+
* @memberof CallTariffResponse
|
|
2131
|
+
*/
|
|
2132
|
+
'priceGroupId'?: number;
|
|
2133
|
+
/**
|
|
2134
|
+
*
|
|
2135
|
+
* @type {PriceGroupResponse}
|
|
2136
|
+
* @memberof CallTariffResponse
|
|
2137
|
+
*/
|
|
2138
|
+
'priceGroup'?: PriceGroupResponse;
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @type {TariffRate}
|
|
2142
|
+
* @memberof CallTariffResponse
|
|
2143
|
+
*/
|
|
2144
|
+
'tariffRate'?: TariffRate;
|
|
2145
|
+
}
|
|
2115
2146
|
/**
|
|
2116
2147
|
*
|
|
2117
2148
|
* @export
|
|
@@ -2518,6 +2549,67 @@ export interface CompanyContractModel {
|
|
|
2518
2549
|
*/
|
|
2519
2550
|
'timeRemaining'?: string;
|
|
2520
2551
|
}
|
|
2552
|
+
/**
|
|
2553
|
+
*
|
|
2554
|
+
* @export
|
|
2555
|
+
* @interface ConnectionRequest
|
|
2556
|
+
*/
|
|
2557
|
+
export interface ConnectionRequest {
|
|
2558
|
+
/**
|
|
2559
|
+
*
|
|
2560
|
+
* @type {number}
|
|
2561
|
+
* @memberof ConnectionRequest
|
|
2562
|
+
*/
|
|
2563
|
+
'customerId': number;
|
|
2564
|
+
/**
|
|
2565
|
+
*
|
|
2566
|
+
* @type {string}
|
|
2567
|
+
* @memberof ConnectionRequest
|
|
2568
|
+
*/
|
|
2569
|
+
'reference': string | null;
|
|
2570
|
+
/**
|
|
2571
|
+
*
|
|
2572
|
+
* @type {string}
|
|
2573
|
+
* @memberof ConnectionRequest
|
|
2574
|
+
*/
|
|
2575
|
+
'connectionDate': string;
|
|
2576
|
+
/**
|
|
2577
|
+
*
|
|
2578
|
+
* @type {number}
|
|
2579
|
+
* @memberof ConnectionRequest
|
|
2580
|
+
*/
|
|
2581
|
+
'servicePlanId': number;
|
|
2582
|
+
/**
|
|
2583
|
+
*
|
|
2584
|
+
* @type {boolean}
|
|
2585
|
+
* @memberof ConnectionRequest
|
|
2586
|
+
*/
|
|
2587
|
+
'zeroRated'?: boolean | null;
|
|
2588
|
+
/**
|
|
2589
|
+
*
|
|
2590
|
+
* @type {number}
|
|
2591
|
+
* @memberof ConnectionRequest
|
|
2592
|
+
*/
|
|
2593
|
+
'callTariffPlanId'?: number | null;
|
|
2594
|
+
/**
|
|
2595
|
+
*
|
|
2596
|
+
* @type {number}
|
|
2597
|
+
* @memberof ConnectionRequest
|
|
2598
|
+
*/
|
|
2599
|
+
'inboundTariffPlanId'?: number | null;
|
|
2600
|
+
/**
|
|
2601
|
+
*
|
|
2602
|
+
* @type {string}
|
|
2603
|
+
* @memberof ConnectionRequest
|
|
2604
|
+
*/
|
|
2605
|
+
'invoiceDescription'?: string | null;
|
|
2606
|
+
/**
|
|
2607
|
+
*
|
|
2608
|
+
* @type {MultiTenantSipTrunkRequest}
|
|
2609
|
+
* @memberof ConnectionRequest
|
|
2610
|
+
*/
|
|
2611
|
+
'mtSipTrunkRequest'?: MultiTenantSipTrunkRequest;
|
|
2612
|
+
}
|
|
2521
2613
|
/**
|
|
2522
2614
|
*
|
|
2523
2615
|
* @export
|
|
@@ -5291,6 +5383,43 @@ export interface InboundTariffPlan {
|
|
|
5291
5383
|
*/
|
|
5292
5384
|
'closed'?: boolean;
|
|
5293
5385
|
}
|
|
5386
|
+
/**
|
|
5387
|
+
*
|
|
5388
|
+
* @export
|
|
5389
|
+
* @interface InboundTariffPlanResponse
|
|
5390
|
+
*/
|
|
5391
|
+
export interface InboundTariffPlanResponse {
|
|
5392
|
+
/**
|
|
5393
|
+
*
|
|
5394
|
+
* @type {number}
|
|
5395
|
+
* @memberof InboundTariffPlanResponse
|
|
5396
|
+
*/
|
|
5397
|
+
'id'?: number;
|
|
5398
|
+
/**
|
|
5399
|
+
*
|
|
5400
|
+
* @type {string}
|
|
5401
|
+
* @memberof InboundTariffPlanResponse
|
|
5402
|
+
*/
|
|
5403
|
+
'name'?: string | null;
|
|
5404
|
+
/**
|
|
5405
|
+
*
|
|
5406
|
+
* @type {TariffRate}
|
|
5407
|
+
* @memberof InboundTariffPlanResponse
|
|
5408
|
+
*/
|
|
5409
|
+
'rate'?: TariffRate;
|
|
5410
|
+
/**
|
|
5411
|
+
*
|
|
5412
|
+
* @type {Array<CallTariffResponse>}
|
|
5413
|
+
* @memberof InboundTariffPlanResponse
|
|
5414
|
+
*/
|
|
5415
|
+
'callTariffs'?: Array<CallTariffResponse> | null;
|
|
5416
|
+
/**
|
|
5417
|
+
*
|
|
5418
|
+
* @type {boolean}
|
|
5419
|
+
* @memberof InboundTariffPlanResponse
|
|
5420
|
+
*/
|
|
5421
|
+
'closed'?: boolean;
|
|
5422
|
+
}
|
|
5294
5423
|
/**
|
|
5295
5424
|
* Installation Passwords
|
|
5296
5425
|
* @export
|
|
@@ -6268,6 +6397,25 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
|
|
|
6268
6397
|
readonly CallBarring: "Call Barring";
|
|
6269
6398
|
};
|
|
6270
6399
|
export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
|
|
6400
|
+
/**
|
|
6401
|
+
*
|
|
6402
|
+
* @export
|
|
6403
|
+
* @interface MultiTenantSipTrunkRequest
|
|
6404
|
+
*/
|
|
6405
|
+
export interface MultiTenantSipTrunkRequest {
|
|
6406
|
+
/**
|
|
6407
|
+
*
|
|
6408
|
+
* @type {boolean}
|
|
6409
|
+
* @memberof MultiTenantSipTrunkRequest
|
|
6410
|
+
*/
|
|
6411
|
+
'isPrimary': boolean;
|
|
6412
|
+
/**
|
|
6413
|
+
*
|
|
6414
|
+
* @type {number}
|
|
6415
|
+
* @memberof MultiTenantSipTrunkRequest
|
|
6416
|
+
*/
|
|
6417
|
+
'mtPrimarySipTrunkId'?: number | null;
|
|
6418
|
+
}
|
|
6271
6419
|
/**
|
|
6272
6420
|
* Navigation Endpoint
|
|
6273
6421
|
* @export
|
|
@@ -9144,6 +9292,31 @@ export interface PriceGroup {
|
|
|
9144
9292
|
*/
|
|
9145
9293
|
'filePeriod'?: string | null;
|
|
9146
9294
|
}
|
|
9295
|
+
/**
|
|
9296
|
+
*
|
|
9297
|
+
* @export
|
|
9298
|
+
* @interface PriceGroupResponse
|
|
9299
|
+
*/
|
|
9300
|
+
export interface PriceGroupResponse {
|
|
9301
|
+
/**
|
|
9302
|
+
*
|
|
9303
|
+
* @type {number}
|
|
9304
|
+
* @memberof PriceGroupResponse
|
|
9305
|
+
*/
|
|
9306
|
+
'id'?: number;
|
|
9307
|
+
/**
|
|
9308
|
+
*
|
|
9309
|
+
* @type {string}
|
|
9310
|
+
* @memberof PriceGroupResponse
|
|
9311
|
+
*/
|
|
9312
|
+
'name'?: string | null;
|
|
9313
|
+
/**
|
|
9314
|
+
*
|
|
9315
|
+
* @type {string}
|
|
9316
|
+
* @memberof PriceGroupResponse
|
|
9317
|
+
*/
|
|
9318
|
+
'description'?: string | null;
|
|
9319
|
+
}
|
|
9147
9320
|
/**
|
|
9148
9321
|
* Price & Stock List
|
|
9149
9322
|
* @export
|
|
@@ -17967,6 +18140,12 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17967
18140
|
* @throws {RequiredError}
|
|
17968
18141
|
*/
|
|
17969
18142
|
getGetCallTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18143
|
+
/**
|
|
18144
|
+
* Get Call Tariffs Detailed
|
|
18145
|
+
* @param {*} [options] Override http request option.
|
|
18146
|
+
* @throws {RequiredError}
|
|
18147
|
+
*/
|
|
18148
|
+
getGetCallTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17970
18149
|
/**
|
|
17971
18150
|
* Get Children
|
|
17972
18151
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -17997,6 +18176,12 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
17997
18176
|
* @throws {RequiredError}
|
|
17998
18177
|
*/
|
|
17999
18178
|
getGetInboundTariffs: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18179
|
+
/**
|
|
18180
|
+
* Get Inbound Tariffs Detailed
|
|
18181
|
+
* @param {*} [options] Override http request option.
|
|
18182
|
+
* @throws {RequiredError}
|
|
18183
|
+
*/
|
|
18184
|
+
getGetInboundTariffsDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18000
18185
|
/**
|
|
18001
18186
|
* Get Price Groups
|
|
18002
18187
|
* @param {*} [options] Override http request option.
|
|
@@ -18016,6 +18201,12 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18016
18201
|
* @throws {RequiredError}
|
|
18017
18202
|
*/
|
|
18018
18203
|
getGetServicePlans: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18204
|
+
/**
|
|
18205
|
+
* Get Service Plans Detailed
|
|
18206
|
+
* @param {*} [options] Override http request option.
|
|
18207
|
+
* @throws {RequiredError}
|
|
18208
|
+
*/
|
|
18209
|
+
getGetServicesPlanDetails: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18019
18210
|
/**
|
|
18020
18211
|
* Get SIP Trunk List
|
|
18021
18212
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -18118,6 +18309,14 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18118
18309
|
* @throws {RequiredError}
|
|
18119
18310
|
*/
|
|
18120
18311
|
postGetCallTariffPlan: (putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18312
|
+
/**
|
|
18313
|
+
* Add Connection
|
|
18314
|
+
* @param {number} [billCustomerId] Customer ID
|
|
18315
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
18316
|
+
* @param {*} [options] Override http request option.
|
|
18317
|
+
* @throws {RequiredError}
|
|
18318
|
+
*/
|
|
18319
|
+
postGetConnections: (billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18121
18320
|
/**
|
|
18122
18321
|
* Add Price Group
|
|
18123
18322
|
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
@@ -18241,6 +18440,15 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18241
18440
|
* @throws {RequiredError}
|
|
18242
18441
|
*/
|
|
18243
18442
|
putGetCallTariffPlan: (callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18443
|
+
/**
|
|
18444
|
+
* Update Connection
|
|
18445
|
+
* @param {number} connectionId Connection ID
|
|
18446
|
+
* @param {number} [billCustomerId] Customer ID
|
|
18447
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
18448
|
+
* @param {*} [options] Override http request option.
|
|
18449
|
+
* @throws {RequiredError}
|
|
18450
|
+
*/
|
|
18451
|
+
putGetConnections: (connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18244
18452
|
/**
|
|
18245
18453
|
* Update Price Group
|
|
18246
18454
|
* @param {number} priceGroupId Price Group ID
|
|
@@ -18415,6 +18623,12 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
18415
18623
|
* @throws {RequiredError}
|
|
18416
18624
|
*/
|
|
18417
18625
|
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
18626
|
+
/**
|
|
18627
|
+
* Get Call Tariffs Detailed
|
|
18628
|
+
* @param {*} [options] Override http request option.
|
|
18629
|
+
* @throws {RequiredError}
|
|
18630
|
+
*/
|
|
18631
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CallTariffPlan>>>;
|
|
18418
18632
|
/**
|
|
18419
18633
|
* Get Children
|
|
18420
18634
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -18445,6 +18659,12 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
18445
18659
|
* @throws {RequiredError}
|
|
18446
18660
|
*/
|
|
18447
18661
|
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
18662
|
+
/**
|
|
18663
|
+
* Get Inbound Tariffs Detailed
|
|
18664
|
+
* @param {*} [options] Override http request option.
|
|
18665
|
+
* @throws {RequiredError}
|
|
18666
|
+
*/
|
|
18667
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InboundTariffPlanResponse>>>;
|
|
18448
18668
|
/**
|
|
18449
18669
|
* Get Price Groups
|
|
18450
18670
|
* @param {*} [options] Override http request option.
|
|
@@ -18464,6 +18684,12 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
18464
18684
|
* @throws {RequiredError}
|
|
18465
18685
|
*/
|
|
18466
18686
|
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
18687
|
+
/**
|
|
18688
|
+
* Get Service Plans Detailed
|
|
18689
|
+
* @param {*} [options] Override http request option.
|
|
18690
|
+
* @throws {RequiredError}
|
|
18691
|
+
*/
|
|
18692
|
+
getGetServicesPlanDetails(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServicePlan>>>;
|
|
18467
18693
|
/**
|
|
18468
18694
|
* Get SIP Trunk List
|
|
18469
18695
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -18566,6 +18792,14 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
18566
18792
|
* @throws {RequiredError}
|
|
18567
18793
|
*/
|
|
18568
18794
|
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
18795
|
+
/**
|
|
18796
|
+
* Add Connection
|
|
18797
|
+
* @param {number} [billCustomerId] Customer ID
|
|
18798
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
18799
|
+
* @param {*} [options] Override http request option.
|
|
18800
|
+
* @throws {RequiredError}
|
|
18801
|
+
*/
|
|
18802
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
18569
18803
|
/**
|
|
18570
18804
|
* Add Price Group
|
|
18571
18805
|
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
@@ -18689,6 +18923,15 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
18689
18923
|
* @throws {RequiredError}
|
|
18690
18924
|
*/
|
|
18691
18925
|
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CallTariffPlan>>;
|
|
18926
|
+
/**
|
|
18927
|
+
* Update Connection
|
|
18928
|
+
* @param {number} connectionId Connection ID
|
|
18929
|
+
* @param {number} [billCustomerId] Customer ID
|
|
18930
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
18931
|
+
* @param {*} [options] Override http request option.
|
|
18932
|
+
* @throws {RequiredError}
|
|
18933
|
+
*/
|
|
18934
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundCli>>;
|
|
18692
18935
|
/**
|
|
18693
18936
|
* Update Price Group
|
|
18694
18937
|
* @param {number} priceGroupId Price Group ID
|
|
@@ -18863,6 +19106,12 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
18863
19106
|
* @throws {RequiredError}
|
|
18864
19107
|
*/
|
|
18865
19108
|
getGetCallTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
19109
|
+
/**
|
|
19110
|
+
* Get Call Tariffs Detailed
|
|
19111
|
+
* @param {*} [options] Override http request option.
|
|
19112
|
+
* @throws {RequiredError}
|
|
19113
|
+
*/
|
|
19114
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<CallTariffPlan>>;
|
|
18866
19115
|
/**
|
|
18867
19116
|
* Get Children
|
|
18868
19117
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -18893,6 +19142,12 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
18893
19142
|
* @throws {RequiredError}
|
|
18894
19143
|
*/
|
|
18895
19144
|
getGetInboundTariffs(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
19145
|
+
/**
|
|
19146
|
+
* Get Inbound Tariffs Detailed
|
|
19147
|
+
* @param {*} [options] Override http request option.
|
|
19148
|
+
* @throws {RequiredError}
|
|
19149
|
+
*/
|
|
19150
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<InboundTariffPlanResponse>>;
|
|
18896
19151
|
/**
|
|
18897
19152
|
* Get Price Groups
|
|
18898
19153
|
* @param {*} [options] Override http request option.
|
|
@@ -18912,6 +19167,12 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
18912
19167
|
* @throws {RequiredError}
|
|
18913
19168
|
*/
|
|
18914
19169
|
getGetServicePlans(options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
19170
|
+
/**
|
|
19171
|
+
* Get Service Plans Detailed
|
|
19172
|
+
* @param {*} [options] Override http request option.
|
|
19173
|
+
* @throws {RequiredError}
|
|
19174
|
+
*/
|
|
19175
|
+
getGetServicesPlanDetails(options?: RawAxiosRequestConfig): AxiosPromise<Array<ServicePlan>>;
|
|
18915
19176
|
/**
|
|
18916
19177
|
* Get SIP Trunk List
|
|
18917
19178
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -19014,6 +19275,14 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
19014
19275
|
* @throws {RequiredError}
|
|
19015
19276
|
*/
|
|
19016
19277
|
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
19278
|
+
/**
|
|
19279
|
+
* Add Connection
|
|
19280
|
+
* @param {number} [billCustomerId] Customer ID
|
|
19281
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
19282
|
+
* @param {*} [options] Override http request option.
|
|
19283
|
+
* @throws {RequiredError}
|
|
19284
|
+
*/
|
|
19285
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
19017
19286
|
/**
|
|
19018
19287
|
* Add Price Group
|
|
19019
19288
|
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
@@ -19137,6 +19406,15 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
19137
19406
|
* @throws {RequiredError}
|
|
19138
19407
|
*/
|
|
19139
19408
|
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): AxiosPromise<CallTariffPlan>;
|
|
19409
|
+
/**
|
|
19410
|
+
* Update Connection
|
|
19411
|
+
* @param {number} connectionId Connection ID
|
|
19412
|
+
* @param {number} [billCustomerId] Customer ID
|
|
19413
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
19414
|
+
* @param {*} [options] Override http request option.
|
|
19415
|
+
* @throws {RequiredError}
|
|
19416
|
+
*/
|
|
19417
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<OutboundCli>;
|
|
19140
19418
|
/**
|
|
19141
19419
|
* Update Price Group
|
|
19142
19420
|
* @param {number} priceGroupId Price Group ID
|
|
@@ -19335,6 +19613,13 @@ export declare class BillingApi extends BaseAPI {
|
|
|
19335
19613
|
* @memberof BillingApi
|
|
19336
19614
|
*/
|
|
19337
19615
|
getGetCallTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
19616
|
+
/**
|
|
19617
|
+
* Get Call Tariffs Detailed
|
|
19618
|
+
* @param {*} [options] Override http request option.
|
|
19619
|
+
* @throws {RequiredError}
|
|
19620
|
+
* @memberof BillingApi
|
|
19621
|
+
*/
|
|
19622
|
+
getGetCallTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan[], any, {}>>;
|
|
19338
19623
|
/**
|
|
19339
19624
|
* Get Children
|
|
19340
19625
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -19369,6 +19654,13 @@ export declare class BillingApi extends BaseAPI {
|
|
|
19369
19654
|
* @memberof BillingApi
|
|
19370
19655
|
*/
|
|
19371
19656
|
getGetInboundTariffs(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
|
|
19657
|
+
/**
|
|
19658
|
+
* Get Inbound Tariffs Detailed
|
|
19659
|
+
* @param {*} [options] Override http request option.
|
|
19660
|
+
* @throws {RequiredError}
|
|
19661
|
+
* @memberof BillingApi
|
|
19662
|
+
*/
|
|
19663
|
+
getGetInboundTariffsDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundTariffPlanResponse[], any, {}>>;
|
|
19372
19664
|
/**
|
|
19373
19665
|
* Get Price Groups
|
|
19374
19666
|
* @param {*} [options] Override http request option.
|
|
@@ -19391,6 +19683,13 @@ export declare class BillingApi extends BaseAPI {
|
|
|
19391
19683
|
* @memberof BillingApi
|
|
19392
19684
|
*/
|
|
19393
19685
|
getGetServicePlans(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
19686
|
+
/**
|
|
19687
|
+
* Get Service Plans Detailed
|
|
19688
|
+
* @param {*} [options] Override http request option.
|
|
19689
|
+
* @throws {RequiredError}
|
|
19690
|
+
* @memberof BillingApi
|
|
19691
|
+
*/
|
|
19692
|
+
getGetServicesPlanDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServicePlan[], any, {}>>;
|
|
19394
19693
|
/**
|
|
19395
19694
|
* Get SIP Trunk List
|
|
19396
19695
|
* @param {number} [billCustomerId] Customer ID
|
|
@@ -19507,6 +19806,15 @@ export declare class BillingApi extends BaseAPI {
|
|
|
19507
19806
|
* @memberof BillingApi
|
|
19508
19807
|
*/
|
|
19509
19808
|
postGetCallTariffPlan(putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
19809
|
+
/**
|
|
19810
|
+
* Add Connection
|
|
19811
|
+
* @param {number} [billCustomerId] Customer ID
|
|
19812
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
19813
|
+
* @param {*} [options] Override http request option.
|
|
19814
|
+
* @throws {RequiredError}
|
|
19815
|
+
* @memberof BillingApi
|
|
19816
|
+
*/
|
|
19817
|
+
postGetConnections(billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
19510
19818
|
/**
|
|
19511
19819
|
* Add Price Group
|
|
19512
19820
|
* @param {PostGetPriceGroupsRequest} postGetPriceGroupsRequest
|
|
@@ -19646,6 +19954,16 @@ export declare class BillingApi extends BaseAPI {
|
|
|
19646
19954
|
* @memberof BillingApi
|
|
19647
19955
|
*/
|
|
19648
19956
|
putGetCallTariffPlan(callTariffPlanId: number, putGetCallTariffPlanRequest: PutGetCallTariffPlanRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CallTariffPlan, any, {}>>;
|
|
19957
|
+
/**
|
|
19958
|
+
* Update Connection
|
|
19959
|
+
* @param {number} connectionId Connection ID
|
|
19960
|
+
* @param {number} [billCustomerId] Customer ID
|
|
19961
|
+
* @param {ConnectionRequest} [connectionRequest]
|
|
19962
|
+
* @param {*} [options] Override http request option.
|
|
19963
|
+
* @throws {RequiredError}
|
|
19964
|
+
* @memberof BillingApi
|
|
19965
|
+
*/
|
|
19966
|
+
putGetConnections(connectionId: number, billCustomerId?: number, connectionRequest?: ConnectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OutboundCli, any, {}>>;
|
|
19649
19967
|
/**
|
|
19650
19968
|
* Update Price Group
|
|
19651
19969
|
* @param {number} priceGroupId Price Group ID
|