yellowgrid-api-ts 3.2.255 → 3.2.257
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 +1 -1
- package/README.md +3 -3
- package/api.ts +149 -149
- package/dist/api.d.ts +67 -67
- package/dist/api.js +172 -172
- package/dist/models/ConnectionTypeEnum.d.ts +63 -0
- package/dist/models/ConnectionTypeEnum.js +65 -0
- package/docs/BillingApi.md +118 -118
- package/docs/{GetDisconnectDDIRequest.md → PostDisconnectDDIRequest.md} +3 -3
- package/models/ConnectionTypeEnum.ts +64 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -5057,90 +5057,6 @@ var BillingApiAxiosParamCreator = function (configuration) {
|
|
|
5057
5057
|
});
|
|
5058
5058
|
});
|
|
5059
5059
|
},
|
|
5060
|
-
/**
|
|
5061
|
-
* Disconnect Connection
|
|
5062
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
5063
|
-
* @param {number} [billCustomerId] Customer ID
|
|
5064
|
-
* @param {*} [options] Override http request option.
|
|
5065
|
-
* @throws {RequiredError}
|
|
5066
|
-
*/
|
|
5067
|
-
getDisconnectConnection: function (getDisconnectDDIRequest_1, billCustomerId_1) {
|
|
5068
|
-
var args_1 = [];
|
|
5069
|
-
for (var _i = 2; _i < arguments.length; _i++) {
|
|
5070
|
-
args_1[_i - 2] = arguments[_i];
|
|
5071
|
-
}
|
|
5072
|
-
return __awaiter(_this, __spreadArray([getDisconnectDDIRequest_1, billCustomerId_1], args_1, true), void 0, function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
5073
|
-
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
5074
|
-
if (options === void 0) { options = {}; }
|
|
5075
|
-
return __generator(this, function (_a) {
|
|
5076
|
-
// verify required parameter 'getDisconnectDDIRequest' is not null or undefined
|
|
5077
|
-
(0, common_1.assertParamExists)('getDisconnectConnection', 'getDisconnectDDIRequest', getDisconnectDDIRequest);
|
|
5078
|
-
localVarPath = "/billing/customer/disconnectConnection";
|
|
5079
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5080
|
-
if (configuration) {
|
|
5081
|
-
baseOptions = configuration.baseOptions;
|
|
5082
|
-
}
|
|
5083
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
5084
|
-
localVarHeaderParameter = {};
|
|
5085
|
-
localVarQueryParameter = {};
|
|
5086
|
-
if (billCustomerId !== undefined) {
|
|
5087
|
-
localVarQueryParameter['billCustomerId'] = billCustomerId;
|
|
5088
|
-
}
|
|
5089
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5090
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5091
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5092
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5093
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5094
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(getDisconnectDDIRequest, localVarRequestOptions, configuration);
|
|
5095
|
-
return [2 /*return*/, {
|
|
5096
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5097
|
-
options: localVarRequestOptions,
|
|
5098
|
-
}];
|
|
5099
|
-
});
|
|
5100
|
-
});
|
|
5101
|
-
},
|
|
5102
|
-
/**
|
|
5103
|
-
* Disconnect DDI
|
|
5104
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
5105
|
-
* @param {number} [billCustomerId] Customer ID
|
|
5106
|
-
* @param {*} [options] Override http request option.
|
|
5107
|
-
* @throws {RequiredError}
|
|
5108
|
-
*/
|
|
5109
|
-
getDisconnectDDI: function (getDisconnectDDIRequest_1, billCustomerId_1) {
|
|
5110
|
-
var args_1 = [];
|
|
5111
|
-
for (var _i = 2; _i < arguments.length; _i++) {
|
|
5112
|
-
args_1[_i - 2] = arguments[_i];
|
|
5113
|
-
}
|
|
5114
|
-
return __awaiter(_this, __spreadArray([getDisconnectDDIRequest_1, billCustomerId_1], args_1, true), void 0, function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
5115
|
-
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
5116
|
-
if (options === void 0) { options = {}; }
|
|
5117
|
-
return __generator(this, function (_a) {
|
|
5118
|
-
// verify required parameter 'getDisconnectDDIRequest' is not null or undefined
|
|
5119
|
-
(0, common_1.assertParamExists)('getDisconnectDDI', 'getDisconnectDDIRequest', getDisconnectDDIRequest);
|
|
5120
|
-
localVarPath = "/billing/customer/disconnectDDI";
|
|
5121
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
5122
|
-
if (configuration) {
|
|
5123
|
-
baseOptions = configuration.baseOptions;
|
|
5124
|
-
}
|
|
5125
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
5126
|
-
localVarHeaderParameter = {};
|
|
5127
|
-
localVarQueryParameter = {};
|
|
5128
|
-
if (billCustomerId !== undefined) {
|
|
5129
|
-
localVarQueryParameter['billCustomerId'] = billCustomerId;
|
|
5130
|
-
}
|
|
5131
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5132
|
-
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5133
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
5134
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5135
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5136
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(getDisconnectDDIRequest, localVarRequestOptions, configuration);
|
|
5137
|
-
return [2 /*return*/, {
|
|
5138
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
5139
|
-
options: localVarRequestOptions,
|
|
5140
|
-
}];
|
|
5141
|
-
});
|
|
5142
|
-
});
|
|
5143
|
-
},
|
|
5144
5060
|
/**
|
|
5145
5061
|
* Get Billing Customers
|
|
5146
5062
|
* @summary Get Billing Customers
|
|
@@ -6255,6 +6171,90 @@ var BillingApiAxiosParamCreator = function (configuration) {
|
|
|
6255
6171
|
});
|
|
6256
6172
|
});
|
|
6257
6173
|
},
|
|
6174
|
+
/**
|
|
6175
|
+
* Disconnect Connection
|
|
6176
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
6177
|
+
* @param {number} [billCustomerId] Customer ID
|
|
6178
|
+
* @param {*} [options] Override http request option.
|
|
6179
|
+
* @throws {RequiredError}
|
|
6180
|
+
*/
|
|
6181
|
+
postDisconnectConnection: function (postDisconnectDDIRequest_1, billCustomerId_1) {
|
|
6182
|
+
var args_1 = [];
|
|
6183
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
6184
|
+
args_1[_i - 2] = arguments[_i];
|
|
6185
|
+
}
|
|
6186
|
+
return __awaiter(_this, __spreadArray([postDisconnectDDIRequest_1, billCustomerId_1], args_1, true), void 0, function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
6187
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
6188
|
+
if (options === void 0) { options = {}; }
|
|
6189
|
+
return __generator(this, function (_a) {
|
|
6190
|
+
// verify required parameter 'postDisconnectDDIRequest' is not null or undefined
|
|
6191
|
+
(0, common_1.assertParamExists)('postDisconnectConnection', 'postDisconnectDDIRequest', postDisconnectDDIRequest);
|
|
6192
|
+
localVarPath = "/billing/customer/disconnectConnection";
|
|
6193
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
6194
|
+
if (configuration) {
|
|
6195
|
+
baseOptions = configuration.baseOptions;
|
|
6196
|
+
}
|
|
6197
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
6198
|
+
localVarHeaderParameter = {};
|
|
6199
|
+
localVarQueryParameter = {};
|
|
6200
|
+
if (billCustomerId !== undefined) {
|
|
6201
|
+
localVarQueryParameter['billCustomerId'] = billCustomerId;
|
|
6202
|
+
}
|
|
6203
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6204
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6205
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6206
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6207
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6208
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(postDisconnectDDIRequest, localVarRequestOptions, configuration);
|
|
6209
|
+
return [2 /*return*/, {
|
|
6210
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6211
|
+
options: localVarRequestOptions,
|
|
6212
|
+
}];
|
|
6213
|
+
});
|
|
6214
|
+
});
|
|
6215
|
+
},
|
|
6216
|
+
/**
|
|
6217
|
+
* Disconnect DDI
|
|
6218
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
6219
|
+
* @param {number} [billCustomerId] Customer ID
|
|
6220
|
+
* @param {*} [options] Override http request option.
|
|
6221
|
+
* @throws {RequiredError}
|
|
6222
|
+
*/
|
|
6223
|
+
postDisconnectDDI: function (postDisconnectDDIRequest_1, billCustomerId_1) {
|
|
6224
|
+
var args_1 = [];
|
|
6225
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
6226
|
+
args_1[_i - 2] = arguments[_i];
|
|
6227
|
+
}
|
|
6228
|
+
return __awaiter(_this, __spreadArray([postDisconnectDDIRequest_1, billCustomerId_1], args_1, true), void 0, function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
6229
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
6230
|
+
if (options === void 0) { options = {}; }
|
|
6231
|
+
return __generator(this, function (_a) {
|
|
6232
|
+
// verify required parameter 'postDisconnectDDIRequest' is not null or undefined
|
|
6233
|
+
(0, common_1.assertParamExists)('postDisconnectDDI', 'postDisconnectDDIRequest', postDisconnectDDIRequest);
|
|
6234
|
+
localVarPath = "/billing/customer/disconnectDDI";
|
|
6235
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
6236
|
+
if (configuration) {
|
|
6237
|
+
baseOptions = configuration.baseOptions;
|
|
6238
|
+
}
|
|
6239
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
6240
|
+
localVarHeaderParameter = {};
|
|
6241
|
+
localVarQueryParameter = {};
|
|
6242
|
+
if (billCustomerId !== undefined) {
|
|
6243
|
+
localVarQueryParameter['billCustomerId'] = billCustomerId;
|
|
6244
|
+
}
|
|
6245
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6246
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6247
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6248
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6249
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6250
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(postDisconnectDDIRequest, localVarRequestOptions, configuration);
|
|
6251
|
+
return [2 /*return*/, {
|
|
6252
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6253
|
+
options: localVarRequestOptions,
|
|
6254
|
+
}];
|
|
6255
|
+
});
|
|
6256
|
+
});
|
|
6257
|
+
},
|
|
6258
6258
|
/**
|
|
6259
6259
|
* Add Base Service
|
|
6260
6260
|
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
@@ -7393,52 +7393,6 @@ var BillingApiFp = function (configuration) {
|
|
|
7393
7393
|
});
|
|
7394
7394
|
});
|
|
7395
7395
|
},
|
|
7396
|
-
/**
|
|
7397
|
-
* Disconnect Connection
|
|
7398
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
7399
|
-
* @param {number} [billCustomerId] Customer ID
|
|
7400
|
-
* @param {*} [options] Override http request option.
|
|
7401
|
-
* @throws {RequiredError}
|
|
7402
|
-
*/
|
|
7403
|
-
getDisconnectConnection: function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
7404
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
7405
|
-
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
7406
|
-
var _a, _b, _c;
|
|
7407
|
-
return __generator(this, function (_d) {
|
|
7408
|
-
switch (_d.label) {
|
|
7409
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getDisconnectConnection(getDisconnectDDIRequest, billCustomerId, options)];
|
|
7410
|
-
case 1:
|
|
7411
|
-
localVarAxiosArgs = _d.sent();
|
|
7412
|
-
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7413
|
-
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BillingApi.getDisconnectConnection']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
7414
|
-
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
7415
|
-
}
|
|
7416
|
-
});
|
|
7417
|
-
});
|
|
7418
|
-
},
|
|
7419
|
-
/**
|
|
7420
|
-
* Disconnect DDI
|
|
7421
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
7422
|
-
* @param {number} [billCustomerId] Customer ID
|
|
7423
|
-
* @param {*} [options] Override http request option.
|
|
7424
|
-
* @throws {RequiredError}
|
|
7425
|
-
*/
|
|
7426
|
-
getDisconnectDDI: function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
7427
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
7428
|
-
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
7429
|
-
var _a, _b, _c;
|
|
7430
|
-
return __generator(this, function (_d) {
|
|
7431
|
-
switch (_d.label) {
|
|
7432
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getDisconnectDDI(getDisconnectDDIRequest, billCustomerId, options)];
|
|
7433
|
-
case 1:
|
|
7434
|
-
localVarAxiosArgs = _d.sent();
|
|
7435
|
-
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
7436
|
-
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BillingApi.getDisconnectDDI']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
7437
|
-
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
7438
|
-
}
|
|
7439
|
-
});
|
|
7440
|
-
});
|
|
7441
|
-
},
|
|
7442
7396
|
/**
|
|
7443
7397
|
* Get Billing Customers
|
|
7444
7398
|
* @summary Get Billing Customers
|
|
@@ -8098,6 +8052,52 @@ var BillingApiFp = function (configuration) {
|
|
|
8098
8052
|
});
|
|
8099
8053
|
});
|
|
8100
8054
|
},
|
|
8055
|
+
/**
|
|
8056
|
+
* Disconnect Connection
|
|
8057
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
8058
|
+
* @param {number} [billCustomerId] Customer ID
|
|
8059
|
+
* @param {*} [options] Override http request option.
|
|
8060
|
+
* @throws {RequiredError}
|
|
8061
|
+
*/
|
|
8062
|
+
postDisconnectConnection: function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
8063
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8064
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
8065
|
+
var _a, _b, _c;
|
|
8066
|
+
return __generator(this, function (_d) {
|
|
8067
|
+
switch (_d.label) {
|
|
8068
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.postDisconnectConnection(postDisconnectDDIRequest, billCustomerId, options)];
|
|
8069
|
+
case 1:
|
|
8070
|
+
localVarAxiosArgs = _d.sent();
|
|
8071
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8072
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BillingApi.postDisconnectConnection']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8073
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
8074
|
+
}
|
|
8075
|
+
});
|
|
8076
|
+
});
|
|
8077
|
+
},
|
|
8078
|
+
/**
|
|
8079
|
+
* Disconnect DDI
|
|
8080
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
8081
|
+
* @param {number} [billCustomerId] Customer ID
|
|
8082
|
+
* @param {*} [options] Override http request option.
|
|
8083
|
+
* @throws {RequiredError}
|
|
8084
|
+
*/
|
|
8085
|
+
postDisconnectDDI: function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
8086
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
8087
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
8088
|
+
var _a, _b, _c;
|
|
8089
|
+
return __generator(this, function (_d) {
|
|
8090
|
+
switch (_d.label) {
|
|
8091
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.postDisconnectDDI(postDisconnectDDIRequest, billCustomerId, options)];
|
|
8092
|
+
case 1:
|
|
8093
|
+
localVarAxiosArgs = _d.sent();
|
|
8094
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8095
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['BillingApi.postDisconnectDDI']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8096
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
8097
|
+
}
|
|
8098
|
+
});
|
|
8099
|
+
});
|
|
8100
|
+
},
|
|
8101
8101
|
/**
|
|
8102
8102
|
* Add Base Service
|
|
8103
8103
|
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
@@ -8695,26 +8695,6 @@ var BillingApiFactory = function (configuration, basePath, axios) {
|
|
|
8695
8695
|
getConnectionSearch: function (search, options) {
|
|
8696
8696
|
return localVarFp.getConnectionSearch(search, options).then(function (request) { return request(axios, basePath); });
|
|
8697
8697
|
},
|
|
8698
|
-
/**
|
|
8699
|
-
* Disconnect Connection
|
|
8700
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
8701
|
-
* @param {number} [billCustomerId] Customer ID
|
|
8702
|
-
* @param {*} [options] Override http request option.
|
|
8703
|
-
* @throws {RequiredError}
|
|
8704
|
-
*/
|
|
8705
|
-
getDisconnectConnection: function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
8706
|
-
return localVarFp.getDisconnectConnection(getDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(axios, basePath); });
|
|
8707
|
-
},
|
|
8708
|
-
/**
|
|
8709
|
-
* Disconnect DDI
|
|
8710
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
8711
|
-
* @param {number} [billCustomerId] Customer ID
|
|
8712
|
-
* @param {*} [options] Override http request option.
|
|
8713
|
-
* @throws {RequiredError}
|
|
8714
|
-
*/
|
|
8715
|
-
getDisconnectDDI: function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
8716
|
-
return localVarFp.getDisconnectDDI(getDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(axios, basePath); });
|
|
8717
|
-
},
|
|
8718
8698
|
/**
|
|
8719
8699
|
* Get Billing Customers
|
|
8720
8700
|
* @summary Get Billing Customers
|
|
@@ -8984,6 +8964,26 @@ var BillingApiFactory = function (configuration, basePath, axios) {
|
|
|
8984
8964
|
postAddSipTrunkDDIs: function (postAddSipTrunkDDIsRequest, billCustomerId, options) {
|
|
8985
8965
|
return localVarFp.postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest, billCustomerId, options).then(function (request) { return request(axios, basePath); });
|
|
8986
8966
|
},
|
|
8967
|
+
/**
|
|
8968
|
+
* Disconnect Connection
|
|
8969
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
8970
|
+
* @param {number} [billCustomerId] Customer ID
|
|
8971
|
+
* @param {*} [options] Override http request option.
|
|
8972
|
+
* @throws {RequiredError}
|
|
8973
|
+
*/
|
|
8974
|
+
postDisconnectConnection: function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
8975
|
+
return localVarFp.postDisconnectConnection(postDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(axios, basePath); });
|
|
8976
|
+
},
|
|
8977
|
+
/**
|
|
8978
|
+
* Disconnect DDI
|
|
8979
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
8980
|
+
* @param {number} [billCustomerId] Customer ID
|
|
8981
|
+
* @param {*} [options] Override http request option.
|
|
8982
|
+
* @throws {RequiredError}
|
|
8983
|
+
*/
|
|
8984
|
+
postDisconnectDDI: function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
8985
|
+
return localVarFp.postDisconnectDDI(postDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(axios, basePath); });
|
|
8986
|
+
},
|
|
8987
8987
|
/**
|
|
8988
8988
|
* Add Base Service
|
|
8989
8989
|
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
@@ -9322,28 +9322,6 @@ var BillingApi = /** @class */ (function (_super) {
|
|
|
9322
9322
|
var _this = this;
|
|
9323
9323
|
return (0, exports.BillingApiFp)(this.configuration).getConnectionSearch(search, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9324
9324
|
};
|
|
9325
|
-
/**
|
|
9326
|
-
* Disconnect Connection
|
|
9327
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
9328
|
-
* @param {number} [billCustomerId] Customer ID
|
|
9329
|
-
* @param {*} [options] Override http request option.
|
|
9330
|
-
* @throws {RequiredError}
|
|
9331
|
-
*/
|
|
9332
|
-
BillingApi.prototype.getDisconnectConnection = function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
9333
|
-
var _this = this;
|
|
9334
|
-
return (0, exports.BillingApiFp)(this.configuration).getDisconnectConnection(getDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9335
|
-
};
|
|
9336
|
-
/**
|
|
9337
|
-
* Disconnect DDI
|
|
9338
|
-
* @param {GetDisconnectDDIRequest} getDisconnectDDIRequest
|
|
9339
|
-
* @param {number} [billCustomerId] Customer ID
|
|
9340
|
-
* @param {*} [options] Override http request option.
|
|
9341
|
-
* @throws {RequiredError}
|
|
9342
|
-
*/
|
|
9343
|
-
BillingApi.prototype.getDisconnectDDI = function (getDisconnectDDIRequest, billCustomerId, options) {
|
|
9344
|
-
var _this = this;
|
|
9345
|
-
return (0, exports.BillingApiFp)(this.configuration).getDisconnectDDI(getDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9346
|
-
};
|
|
9347
9325
|
/**
|
|
9348
9326
|
* Get Billing Customers
|
|
9349
9327
|
* @summary Get Billing Customers
|
|
@@ -9643,6 +9621,28 @@ var BillingApi = /** @class */ (function (_super) {
|
|
|
9643
9621
|
var _this = this;
|
|
9644
9622
|
return (0, exports.BillingApiFp)(this.configuration).postAddSipTrunkDDIs(postAddSipTrunkDDIsRequest, billCustomerId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9645
9623
|
};
|
|
9624
|
+
/**
|
|
9625
|
+
* Disconnect Connection
|
|
9626
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
9627
|
+
* @param {number} [billCustomerId] Customer ID
|
|
9628
|
+
* @param {*} [options] Override http request option.
|
|
9629
|
+
* @throws {RequiredError}
|
|
9630
|
+
*/
|
|
9631
|
+
BillingApi.prototype.postDisconnectConnection = function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
9632
|
+
var _this = this;
|
|
9633
|
+
return (0, exports.BillingApiFp)(this.configuration).postDisconnectConnection(postDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9634
|
+
};
|
|
9635
|
+
/**
|
|
9636
|
+
* Disconnect DDI
|
|
9637
|
+
* @param {PostDisconnectDDIRequest} postDisconnectDDIRequest
|
|
9638
|
+
* @param {number} [billCustomerId] Customer ID
|
|
9639
|
+
* @param {*} [options] Override http request option.
|
|
9640
|
+
* @throws {RequiredError}
|
|
9641
|
+
*/
|
|
9642
|
+
BillingApi.prototype.postDisconnectDDI = function (postDisconnectDDIRequest, billCustomerId, options) {
|
|
9643
|
+
var _this = this;
|
|
9644
|
+
return (0, exports.BillingApiFp)(this.configuration).postDisconnectDDI(postDisconnectDDIRequest, billCustomerId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9645
|
+
};
|
|
9646
9646
|
/**
|
|
9647
9647
|
* Add Base Service
|
|
9648
9648
|
* @param {PostGetBaseServicesRequest} postGetBaseServicesRequest
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
export declare const ConnectionTypeEnum: {
|
|
2
|
+
readonly SIP_TRUNK: {
|
|
3
|
+
readonly name: "SIP_TRUNK";
|
|
4
|
+
readonly value: "SIP Trunks";
|
|
5
|
+
readonly publicValue: "SIP Trunks";
|
|
6
|
+
};
|
|
7
|
+
readonly BROADBAND: {
|
|
8
|
+
readonly name: "BROADBAND";
|
|
9
|
+
readonly value: "Broadband";
|
|
10
|
+
readonly publicValue: "Broadband";
|
|
11
|
+
};
|
|
12
|
+
readonly ETHERNET: {
|
|
13
|
+
readonly name: "ETHERNET";
|
|
14
|
+
readonly value: "Ethernet";
|
|
15
|
+
readonly publicValue: "Ethernet";
|
|
16
|
+
};
|
|
17
|
+
readonly MOBILE: {
|
|
18
|
+
readonly name: "MOBILE";
|
|
19
|
+
readonly value: "Mobile";
|
|
20
|
+
readonly publicValue: "Mobile";
|
|
21
|
+
};
|
|
22
|
+
readonly WLR: {
|
|
23
|
+
readonly name: "WLR";
|
|
24
|
+
readonly value: "WLR";
|
|
25
|
+
readonly publicValue: "WLR";
|
|
26
|
+
};
|
|
27
|
+
readonly HZN: {
|
|
28
|
+
readonly name: "HZN";
|
|
29
|
+
readonly value: "Horizon";
|
|
30
|
+
readonly publicValue: "Horizon";
|
|
31
|
+
};
|
|
32
|
+
readonly NTS: {
|
|
33
|
+
readonly name: "NTS";
|
|
34
|
+
readonly value: "NTS";
|
|
35
|
+
readonly publicValue: "NTS";
|
|
36
|
+
};
|
|
37
|
+
readonly HOSTING: {
|
|
38
|
+
readonly name: "HOSTING";
|
|
39
|
+
readonly value: "Hosting";
|
|
40
|
+
readonly publicValue: "Hosting";
|
|
41
|
+
};
|
|
42
|
+
readonly CRM: {
|
|
43
|
+
readonly name: "CRM";
|
|
44
|
+
readonly value: "CRM";
|
|
45
|
+
readonly publicValue: "CRM";
|
|
46
|
+
};
|
|
47
|
+
readonly TCX_MULTITENANT: {
|
|
48
|
+
readonly name: "TCX_MULTITENANT";
|
|
49
|
+
readonly value: "Starter Bundle";
|
|
50
|
+
readonly publicValue: "Starter Bundle";
|
|
51
|
+
};
|
|
52
|
+
readonly OTHER: {
|
|
53
|
+
readonly name: "OTHER";
|
|
54
|
+
readonly value: "Other";
|
|
55
|
+
readonly publicValue: "Other";
|
|
56
|
+
};
|
|
57
|
+
readonly RECURRING_CHARGES: {
|
|
58
|
+
readonly name: "RECURRING_CHARGES";
|
|
59
|
+
readonly value: "Recurring Charges";
|
|
60
|
+
readonly publicValue: "Recurring Charges";
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export type ConnectionTypeEnum = typeof ConnectionTypeEnum;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ConnectionTypeEnum = void 0;
|
|
4
|
+
exports.ConnectionTypeEnum = {
|
|
5
|
+
"SIP_TRUNK": {
|
|
6
|
+
"name": "SIP_TRUNK",
|
|
7
|
+
"value": "SIP Trunks",
|
|
8
|
+
"publicValue": "SIP Trunks"
|
|
9
|
+
},
|
|
10
|
+
"BROADBAND": {
|
|
11
|
+
"name": "BROADBAND",
|
|
12
|
+
"value": "Broadband",
|
|
13
|
+
"publicValue": "Broadband"
|
|
14
|
+
},
|
|
15
|
+
"ETHERNET": {
|
|
16
|
+
"name": "ETHERNET",
|
|
17
|
+
"value": "Ethernet",
|
|
18
|
+
"publicValue": "Ethernet"
|
|
19
|
+
},
|
|
20
|
+
"MOBILE": {
|
|
21
|
+
"name": "MOBILE",
|
|
22
|
+
"value": "Mobile",
|
|
23
|
+
"publicValue": "Mobile"
|
|
24
|
+
},
|
|
25
|
+
"WLR": {
|
|
26
|
+
"name": "WLR",
|
|
27
|
+
"value": "WLR",
|
|
28
|
+
"publicValue": "WLR"
|
|
29
|
+
},
|
|
30
|
+
"HZN": {
|
|
31
|
+
"name": "HZN",
|
|
32
|
+
"value": "Horizon",
|
|
33
|
+
"publicValue": "Horizon"
|
|
34
|
+
},
|
|
35
|
+
"NTS": {
|
|
36
|
+
"name": "NTS",
|
|
37
|
+
"value": "NTS",
|
|
38
|
+
"publicValue": "NTS"
|
|
39
|
+
},
|
|
40
|
+
"HOSTING": {
|
|
41
|
+
"name": "HOSTING",
|
|
42
|
+
"value": "Hosting",
|
|
43
|
+
"publicValue": "Hosting"
|
|
44
|
+
},
|
|
45
|
+
"CRM": {
|
|
46
|
+
"name": "CRM",
|
|
47
|
+
"value": "CRM",
|
|
48
|
+
"publicValue": "CRM"
|
|
49
|
+
},
|
|
50
|
+
"TCX_MULTITENANT": {
|
|
51
|
+
"name": "TCX_MULTITENANT",
|
|
52
|
+
"value": "Starter Bundle",
|
|
53
|
+
"publicValue": "Starter Bundle"
|
|
54
|
+
},
|
|
55
|
+
"OTHER": {
|
|
56
|
+
"name": "OTHER",
|
|
57
|
+
"value": "Other",
|
|
58
|
+
"publicValue": "Other"
|
|
59
|
+
},
|
|
60
|
+
"RECURRING_CHARGES": {
|
|
61
|
+
"name": "RECURRING_CHARGES",
|
|
62
|
+
"value": "Recurring Charges",
|
|
63
|
+
"publicValue": "Recurring Charges"
|
|
64
|
+
}
|
|
65
|
+
};
|