yellowgrid-api-ts 3.2.262 → 3.2.264
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/api.ts +17 -8
- package/dist/api.d.ts +17 -8
- package/dist/api.js +13 -4
- package/dist/models/ConnectionTypeEnum.d.ts +17 -2
- package/dist/models/ConnectionTypeEnum.js +17 -2
- package/docs/BillingApi.md +6 -6
- package/models/ConnectionTypeEnum.ts +17 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -5285,6 +5285,9 @@ export const PostGetServicePlansRequestPlanGroupEnum = {
|
|
|
5285
5285
|
StarterBundle: 'Starter Bundle',
|
|
5286
5286
|
Other: 'Other',
|
|
5287
5287
|
RecurringCharges: 'Recurring Charges',
|
|
5288
|
+
Sms: 'SMS',
|
|
5289
|
+
Cfd: 'CFD',
|
|
5290
|
+
EdTechPro: 'EdTechPro',
|
|
5288
5291
|
} as const;
|
|
5289
5292
|
|
|
5290
5293
|
export type PostGetServicePlansRequestPlanGroupEnum = typeof PostGetServicePlansRequestPlanGroupEnum[keyof typeof PostGetServicePlansRequestPlanGroupEnum];
|
|
@@ -13764,11 +13767,11 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
13764
13767
|
},
|
|
13765
13768
|
/**
|
|
13766
13769
|
* Get Customer
|
|
13767
|
-
* @param {
|
|
13770
|
+
* @param {string} [billCustomerId] Customer ID
|
|
13768
13771
|
* @param {*} [options] Override http request option.
|
|
13769
13772
|
* @throws {RequiredError}
|
|
13770
13773
|
*/
|
|
13771
|
-
getGetBillingCustomerDetails: async (billCustomerId?:
|
|
13774
|
+
getGetBillingCustomerDetails: async (billCustomerId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13772
13775
|
const localVarPath = `/billing/customer/details`;
|
|
13773
13776
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13774
13777
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -15782,11 +15785,11 @@ export const BillingApiFp = function(configuration?: Configuration) {
|
|
|
15782
15785
|
},
|
|
15783
15786
|
/**
|
|
15784
15787
|
* Get Customer
|
|
15785
|
-
* @param {
|
|
15788
|
+
* @param {string} [billCustomerId] Customer ID
|
|
15786
15789
|
* @param {*} [options] Override http request option.
|
|
15787
15790
|
* @throws {RequiredError}
|
|
15788
15791
|
*/
|
|
15789
|
-
async getGetBillingCustomerDetails(billCustomerId?:
|
|
15792
|
+
async getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>> {
|
|
15790
15793
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getGetBillingCustomerDetails(billCustomerId, options);
|
|
15791
15794
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15792
15795
|
const localVarOperationServerBasePath = operationServerMap['BillingApi.getGetBillingCustomerDetails']?.[localVarOperationServerIndex]?.url;
|
|
@@ -16564,11 +16567,11 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa
|
|
|
16564
16567
|
},
|
|
16565
16568
|
/**
|
|
16566
16569
|
* Get Customer
|
|
16567
|
-
* @param {
|
|
16570
|
+
* @param {string} [billCustomerId] Customer ID
|
|
16568
16571
|
* @param {*} [options] Override http request option.
|
|
16569
16572
|
* @throws {RequiredError}
|
|
16570
16573
|
*/
|
|
16571
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
16574
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer> {
|
|
16572
16575
|
return localVarFp.getGetBillingCustomerDetails(billCustomerId, options).then((request) => request(axios, basePath));
|
|
16573
16576
|
},
|
|
16574
16577
|
/**
|
|
@@ -17211,11 +17214,11 @@ export class BillingApi extends BaseAPI {
|
|
|
17211
17214
|
|
|
17212
17215
|
/**
|
|
17213
17216
|
* Get Customer
|
|
17214
|
-
* @param {
|
|
17217
|
+
* @param {string} [billCustomerId] Customer ID
|
|
17215
17218
|
* @param {*} [options] Override http request option.
|
|
17216
17219
|
* @throws {RequiredError}
|
|
17217
17220
|
*/
|
|
17218
|
-
public getGetBillingCustomerDetails(billCustomerId?:
|
|
17221
|
+
public getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig) {
|
|
17219
17222
|
return BillingApiFp(this.configuration).getGetBillingCustomerDetails(billCustomerId, options).then((request) => request(this.axios, this.basePath));
|
|
17220
17223
|
}
|
|
17221
17224
|
|
|
@@ -17741,6 +17744,9 @@ export const GetGetConnectionsTypeEnum = {
|
|
|
17741
17744
|
StarterBundle: 'Starter Bundle',
|
|
17742
17745
|
Other: 'Other',
|
|
17743
17746
|
RecurringCharges: 'Recurring Charges',
|
|
17747
|
+
Sms: 'SMS',
|
|
17748
|
+
Cfd: 'CFD',
|
|
17749
|
+
EdTechPro: 'EdTechPro',
|
|
17744
17750
|
} as const;
|
|
17745
17751
|
export type GetGetConnectionsTypeEnum = typeof GetGetConnectionsTypeEnum[keyof typeof GetGetConnectionsTypeEnum];
|
|
17746
17752
|
export const GetGetServicesPlanDetailsTypeEnum = {
|
|
@@ -17756,6 +17762,9 @@ export const GetGetServicesPlanDetailsTypeEnum = {
|
|
|
17756
17762
|
StarterBundle: 'Starter Bundle',
|
|
17757
17763
|
Other: 'Other',
|
|
17758
17764
|
RecurringCharges: 'Recurring Charges',
|
|
17765
|
+
Sms: 'SMS',
|
|
17766
|
+
Cfd: 'CFD',
|
|
17767
|
+
EdTechPro: 'EdTechPro',
|
|
17759
17768
|
} as const;
|
|
17760
17769
|
export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
|
|
17761
17770
|
|
package/dist/api.d.ts
CHANGED
|
@@ -5212,6 +5212,9 @@ export declare const PostGetServicePlansRequestPlanGroupEnum: {
|
|
|
5212
5212
|
readonly StarterBundle: "Starter Bundle";
|
|
5213
5213
|
readonly Other: "Other";
|
|
5214
5214
|
readonly RecurringCharges: "Recurring Charges";
|
|
5215
|
+
readonly Sms: "SMS";
|
|
5216
|
+
readonly Cfd: "CFD";
|
|
5217
|
+
readonly EdTechPro: "EdTechPro";
|
|
5215
5218
|
};
|
|
5216
5219
|
export type PostGetServicePlansRequestPlanGroupEnum = typeof PostGetServicePlansRequestPlanGroupEnum[keyof typeof PostGetServicePlansRequestPlanGroupEnum];
|
|
5217
5220
|
export interface PostGetSipTrunksBillingRequest {
|
|
@@ -11350,11 +11353,11 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11350
11353
|
getGetBaseServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11351
11354
|
/**
|
|
11352
11355
|
* Get Customer
|
|
11353
|
-
* @param {
|
|
11356
|
+
* @param {string} [billCustomerId] Customer ID
|
|
11354
11357
|
* @param {*} [options] Override http request option.
|
|
11355
11358
|
* @throws {RequiredError}
|
|
11356
11359
|
*/
|
|
11357
|
-
getGetBillingCustomerDetails: (billCustomerId?:
|
|
11360
|
+
getGetBillingCustomerDetails: (billCustomerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11358
11361
|
/**
|
|
11359
11362
|
* Get Bundle Calls With Cost
|
|
11360
11363
|
* @param {*} [options] Override http request option.
|
|
@@ -11848,11 +11851,11 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
11848
11851
|
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseService>>>;
|
|
11849
11852
|
/**
|
|
11850
11853
|
* Get Customer
|
|
11851
|
-
* @param {
|
|
11854
|
+
* @param {string} [billCustomerId] Customer ID
|
|
11852
11855
|
* @param {*} [options] Override http request option.
|
|
11853
11856
|
* @throws {RequiredError}
|
|
11854
11857
|
*/
|
|
11855
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
11858
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
11856
11859
|
/**
|
|
11857
11860
|
* Get Bundle Calls With Cost
|
|
11858
11861
|
* @param {*} [options] Override http request option.
|
|
@@ -12346,11 +12349,11 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
12346
12349
|
getGetBaseServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseService>>;
|
|
12347
12350
|
/**
|
|
12348
12351
|
* Get Customer
|
|
12349
|
-
* @param {
|
|
12352
|
+
* @param {string} [billCustomerId] Customer ID
|
|
12350
12353
|
* @param {*} [options] Override http request option.
|
|
12351
12354
|
* @throws {RequiredError}
|
|
12352
12355
|
*/
|
|
12353
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
12356
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12354
12357
|
/**
|
|
12355
12358
|
* Get Bundle Calls With Cost
|
|
12356
12359
|
* @param {*} [options] Override http request option.
|
|
@@ -12844,11 +12847,11 @@ export declare class BillingApi extends BaseAPI {
|
|
|
12844
12847
|
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService[], any, {}>>;
|
|
12845
12848
|
/**
|
|
12846
12849
|
* Get Customer
|
|
12847
|
-
* @param {
|
|
12850
|
+
* @param {string} [billCustomerId] Customer ID
|
|
12848
12851
|
* @param {*} [options] Override http request option.
|
|
12849
12852
|
* @throws {RequiredError}
|
|
12850
12853
|
*/
|
|
12851
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
12854
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
12852
12855
|
/**
|
|
12853
12856
|
* Get Bundle Calls With Cost
|
|
12854
12857
|
* @param {*} [options] Override http request option.
|
|
@@ -13224,6 +13227,9 @@ export declare const GetGetConnectionsTypeEnum: {
|
|
|
13224
13227
|
readonly StarterBundle: "Starter Bundle";
|
|
13225
13228
|
readonly Other: "Other";
|
|
13226
13229
|
readonly RecurringCharges: "Recurring Charges";
|
|
13230
|
+
readonly Sms: "SMS";
|
|
13231
|
+
readonly Cfd: "CFD";
|
|
13232
|
+
readonly EdTechPro: "EdTechPro";
|
|
13227
13233
|
};
|
|
13228
13234
|
export type GetGetConnectionsTypeEnum = typeof GetGetConnectionsTypeEnum[keyof typeof GetGetConnectionsTypeEnum];
|
|
13229
13235
|
export declare const GetGetServicesPlanDetailsTypeEnum: {
|
|
@@ -13239,6 +13245,9 @@ export declare const GetGetServicesPlanDetailsTypeEnum: {
|
|
|
13239
13245
|
readonly StarterBundle: "Starter Bundle";
|
|
13240
13246
|
readonly Other: "Other";
|
|
13241
13247
|
readonly RecurringCharges: "Recurring Charges";
|
|
13248
|
+
readonly Sms: "SMS";
|
|
13249
|
+
readonly Cfd: "CFD";
|
|
13250
|
+
readonly EdTechPro: "EdTechPro";
|
|
13242
13251
|
};
|
|
13243
13252
|
export type GetGetServicesPlanDetailsTypeEnum = typeof GetGetServicesPlanDetailsTypeEnum[keyof typeof GetGetServicesPlanDetailsTypeEnum];
|
|
13244
13253
|
/**
|
package/dist/api.js
CHANGED
|
@@ -368,6 +368,9 @@ exports.PostGetServicePlansRequestPlanGroupEnum = {
|
|
|
368
368
|
StarterBundle: 'Starter Bundle',
|
|
369
369
|
Other: 'Other',
|
|
370
370
|
RecurringCharges: 'Recurring Charges',
|
|
371
|
+
Sms: 'SMS',
|
|
372
|
+
Cfd: 'CFD',
|
|
373
|
+
EdTechPro: 'EdTechPro',
|
|
371
374
|
};
|
|
372
375
|
exports.ProspectDTOStatusEnum = {
|
|
373
376
|
NoCallBackSet: 'No Call Back Set',
|
|
@@ -5240,7 +5243,7 @@ var BillingApiAxiosParamCreator = function (configuration) {
|
|
|
5240
5243
|
},
|
|
5241
5244
|
/**
|
|
5242
5245
|
* Get Customer
|
|
5243
|
-
* @param {
|
|
5246
|
+
* @param {string} [billCustomerId] Customer ID
|
|
5244
5247
|
* @param {*} [options] Override http request option.
|
|
5245
5248
|
* @throws {RequiredError}
|
|
5246
5249
|
*/
|
|
@@ -7585,7 +7588,7 @@ var BillingApiFp = function (configuration) {
|
|
|
7585
7588
|
},
|
|
7586
7589
|
/**
|
|
7587
7590
|
* Get Customer
|
|
7588
|
-
* @param {
|
|
7591
|
+
* @param {string} [billCustomerId] Customer ID
|
|
7589
7592
|
* @param {*} [options] Override http request option.
|
|
7590
7593
|
* @throws {RequiredError}
|
|
7591
7594
|
*/
|
|
@@ -8867,7 +8870,7 @@ var BillingApiFactory = function (configuration, basePath, axios) {
|
|
|
8867
8870
|
},
|
|
8868
8871
|
/**
|
|
8869
8872
|
* Get Customer
|
|
8870
|
-
* @param {
|
|
8873
|
+
* @param {string} [billCustomerId] Customer ID
|
|
8871
8874
|
* @param {*} [options] Override http request option.
|
|
8872
8875
|
* @throws {RequiredError}
|
|
8873
8876
|
*/
|
|
@@ -9518,7 +9521,7 @@ var BillingApi = /** @class */ (function (_super) {
|
|
|
9518
9521
|
};
|
|
9519
9522
|
/**
|
|
9520
9523
|
* Get Customer
|
|
9521
|
-
* @param {
|
|
9524
|
+
* @param {string} [billCustomerId] Customer ID
|
|
9522
9525
|
* @param {*} [options] Override http request option.
|
|
9523
9526
|
* @throws {RequiredError}
|
|
9524
9527
|
*/
|
|
@@ -10050,6 +10053,9 @@ exports.GetGetConnectionsTypeEnum = {
|
|
|
10050
10053
|
StarterBundle: 'Starter Bundle',
|
|
10051
10054
|
Other: 'Other',
|
|
10052
10055
|
RecurringCharges: 'Recurring Charges',
|
|
10056
|
+
Sms: 'SMS',
|
|
10057
|
+
Cfd: 'CFD',
|
|
10058
|
+
EdTechPro: 'EdTechPro',
|
|
10053
10059
|
};
|
|
10054
10060
|
exports.GetGetServicesPlanDetailsTypeEnum = {
|
|
10055
10061
|
SipTrunks: 'SIP Trunks',
|
|
@@ -10064,6 +10070,9 @@ exports.GetGetServicesPlanDetailsTypeEnum = {
|
|
|
10064
10070
|
StarterBundle: 'Starter Bundle',
|
|
10065
10071
|
Other: 'Other',
|
|
10066
10072
|
RecurringCharges: 'Recurring Charges',
|
|
10073
|
+
Sms: 'SMS',
|
|
10074
|
+
Cfd: 'CFD',
|
|
10075
|
+
EdTechPro: 'EdTechPro',
|
|
10067
10076
|
};
|
|
10068
10077
|
/**
|
|
10069
10078
|
* CRMApi - axios parameter creator
|
|
@@ -39,8 +39,8 @@ export declare const ConnectionTypeEnum: {
|
|
|
39
39
|
readonly value: "Hosting";
|
|
40
40
|
readonly publicValue: "Hosting";
|
|
41
41
|
};
|
|
42
|
-
readonly
|
|
43
|
-
readonly name: "
|
|
42
|
+
readonly CRM_INTEGRATION: {
|
|
43
|
+
readonly name: "CRM_INTEGRATION";
|
|
44
44
|
readonly value: "CRM";
|
|
45
45
|
readonly publicValue: "CRM";
|
|
46
46
|
};
|
|
@@ -59,5 +59,20 @@ export declare const ConnectionTypeEnum: {
|
|
|
59
59
|
readonly value: "Recurring Charges";
|
|
60
60
|
readonly publicValue: "Recurring Charges";
|
|
61
61
|
};
|
|
62
|
+
readonly TLN_SMS: {
|
|
63
|
+
readonly name: "TLN_SMS";
|
|
64
|
+
readonly value: "SMS";
|
|
65
|
+
readonly publicValue: "SMS";
|
|
66
|
+
};
|
|
67
|
+
readonly CFD: {
|
|
68
|
+
readonly name: "CFD";
|
|
69
|
+
readonly value: "CFD";
|
|
70
|
+
readonly publicValue: "CFD";
|
|
71
|
+
};
|
|
72
|
+
readonly ETP_CRM: {
|
|
73
|
+
readonly name: "ETP_CRM";
|
|
74
|
+
readonly value: "EdTechPro";
|
|
75
|
+
readonly publicValue: "EdTechPro";
|
|
76
|
+
};
|
|
62
77
|
};
|
|
63
78
|
export type ConnectionTypeEnum = typeof ConnectionTypeEnum;
|
|
@@ -42,8 +42,8 @@ exports.ConnectionTypeEnum = {
|
|
|
42
42
|
"value": "Hosting",
|
|
43
43
|
"publicValue": "Hosting"
|
|
44
44
|
},
|
|
45
|
-
"
|
|
46
|
-
"name": "
|
|
45
|
+
"CRM_INTEGRATION": {
|
|
46
|
+
"name": "CRM_INTEGRATION",
|
|
47
47
|
"value": "CRM",
|
|
48
48
|
"publicValue": "CRM"
|
|
49
49
|
},
|
|
@@ -61,5 +61,20 @@ exports.ConnectionTypeEnum = {
|
|
|
61
61
|
"name": "RECURRING_CHARGES",
|
|
62
62
|
"value": "Recurring Charges",
|
|
63
63
|
"publicValue": "Recurring Charges"
|
|
64
|
+
},
|
|
65
|
+
"TLN_SMS": {
|
|
66
|
+
"name": "TLN_SMS",
|
|
67
|
+
"value": "SMS",
|
|
68
|
+
"publicValue": "SMS"
|
|
69
|
+
},
|
|
70
|
+
"CFD": {
|
|
71
|
+
"name": "CFD",
|
|
72
|
+
"value": "CFD",
|
|
73
|
+
"publicValue": "CFD"
|
|
74
|
+
},
|
|
75
|
+
"ETP_CRM": {
|
|
76
|
+
"name": "ETP_CRM",
|
|
77
|
+
"value": "EdTechPro",
|
|
78
|
+
"publicValue": "EdTechPro"
|
|
64
79
|
}
|
|
65
80
|
};
|
package/docs/BillingApi.md
CHANGED
|
@@ -1001,7 +1001,7 @@ import {
|
|
|
1001
1001
|
const configuration = new Configuration();
|
|
1002
1002
|
const apiInstance = new BillingApi(configuration);
|
|
1003
1003
|
|
|
1004
|
-
let billCustomerId:
|
|
1004
|
+
let billCustomerId: string; //Customer ID (optional) (default to undefined)
|
|
1005
1005
|
|
|
1006
1006
|
const { status, data } = await apiInstance.getGetBillingCustomerDetails(
|
|
1007
1007
|
billCustomerId
|
|
@@ -1012,7 +1012,7 @@ const { status, data } = await apiInstance.getGetBillingCustomerDetails(
|
|
|
1012
1012
|
|
|
1013
1013
|
|Name | Type | Description | Notes|
|
|
1014
1014
|
|------------- | ------------- | ------------- | -------------|
|
|
1015
|
-
| **billCustomerId** | [**
|
|
1015
|
+
| **billCustomerId** | [**string**] | Customer ID | (optional) defaults to undefined|
|
|
1016
1016
|
|
|
1017
1017
|
|
|
1018
1018
|
### Return type
|
|
@@ -1361,7 +1361,7 @@ import {
|
|
|
1361
1361
|
const configuration = new Configuration();
|
|
1362
1362
|
const apiInstance = new BillingApi(configuration);
|
|
1363
1363
|
|
|
1364
|
-
let type: 'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'; //Connection Type (optional) (default to undefined)
|
|
1364
|
+
let type: 'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'; //Connection Type (optional) (default to undefined)
|
|
1365
1365
|
let billCustomerId: number; //Customer ID (optional) (default to undefined)
|
|
1366
1366
|
|
|
1367
1367
|
const { status, data } = await apiInstance.getGetConnections(
|
|
@@ -1374,7 +1374,7 @@ const { status, data } = await apiInstance.getGetConnections(
|
|
|
1374
1374
|
|
|
1375
1375
|
|Name | Type | Description | Notes|
|
|
1376
1376
|
|------------- | ------------- | ------------- | -------------|
|
|
1377
|
-
| **type** | [**'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'**]**Array<'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'>** | Connection Type | (optional) defaults to undefined|
|
|
1377
|
+
| **type** | [**'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'**]**Array<'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'>** | Connection Type | (optional) defaults to undefined|
|
|
1378
1378
|
| **billCustomerId** | [**number**] | Customer ID | (optional) defaults to undefined|
|
|
1379
1379
|
|
|
1380
1380
|
|
|
@@ -1720,7 +1720,7 @@ import {
|
|
|
1720
1720
|
const configuration = new Configuration();
|
|
1721
1721
|
const apiInstance = new BillingApi(configuration);
|
|
1722
1722
|
|
|
1723
|
-
let type: 'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'; //Connection Type (optional) (default to undefined)
|
|
1723
|
+
let type: 'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'; //Connection Type (optional) (default to undefined)
|
|
1724
1724
|
|
|
1725
1725
|
const { status, data } = await apiInstance.getGetServicesPlanDetails(
|
|
1726
1726
|
type
|
|
@@ -1731,7 +1731,7 @@ const { status, data } = await apiInstance.getGetServicesPlanDetails(
|
|
|
1731
1731
|
|
|
1732
1732
|
|Name | Type | Description | Notes|
|
|
1733
1733
|
|------------- | ------------- | ------------- | -------------|
|
|
1734
|
-
| **type** | [**'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'**]**Array<'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges'>** | Connection Type | (optional) defaults to undefined|
|
|
1734
|
+
| **type** | [**'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'**]**Array<'SIP Trunks' | 'Broadband' | 'Ethernet' | 'Mobile' | 'WLR' | 'Horizon' | 'NTS' | 'Hosting' | 'CRM' | 'Starter Bundle' | 'Other' | 'Recurring Charges' | 'SMS' | 'CFD' | 'EdTechPro'>** | Connection Type | (optional) defaults to undefined|
|
|
1735
1735
|
|
|
1736
1736
|
|
|
1737
1737
|
### Return type
|
|
@@ -39,8 +39,8 @@ export const ConnectionTypeEnum = {
|
|
|
39
39
|
"value": "Hosting",
|
|
40
40
|
"publicValue": "Hosting"
|
|
41
41
|
},
|
|
42
|
-
"
|
|
43
|
-
"name": "
|
|
42
|
+
"CRM_INTEGRATION": {
|
|
43
|
+
"name": "CRM_INTEGRATION",
|
|
44
44
|
"value": "CRM",
|
|
45
45
|
"publicValue": "CRM"
|
|
46
46
|
},
|
|
@@ -58,6 +58,21 @@ export const ConnectionTypeEnum = {
|
|
|
58
58
|
"name": "RECURRING_CHARGES",
|
|
59
59
|
"value": "Recurring Charges",
|
|
60
60
|
"publicValue": "Recurring Charges"
|
|
61
|
+
},
|
|
62
|
+
"TLN_SMS": {
|
|
63
|
+
"name": "TLN_SMS",
|
|
64
|
+
"value": "SMS",
|
|
65
|
+
"publicValue": "SMS"
|
|
66
|
+
},
|
|
67
|
+
"CFD": {
|
|
68
|
+
"name": "CFD",
|
|
69
|
+
"value": "CFD",
|
|
70
|
+
"publicValue": "CFD"
|
|
71
|
+
},
|
|
72
|
+
"ETP_CRM": {
|
|
73
|
+
"name": "ETP_CRM",
|
|
74
|
+
"value": "EdTechPro",
|
|
75
|
+
"publicValue": "EdTechPro"
|
|
61
76
|
}
|
|
62
77
|
} as const;
|
|
63
78
|
|