@emilgroup/billing-sdk-node 1.28.2-beta.0 → 1.29.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 +0 -2
- package/README.md +2 -2
- package/api/correction-invoices-api.ts +15 -15
- package/api/initial-invoices-api.ts +15 -15
- package/api/invoices-api.ts +0 -121
- package/api/recurring-invoices-api.ts +15 -15
- package/dist/api/correction-invoices-api.d.ts +9 -9
- package/dist/api/correction-invoices-api.js +12 -12
- package/dist/api/initial-invoices-api.d.ts +9 -9
- package/dist/api/initial-invoices-api.js +12 -12
- package/dist/api/invoices-api.d.ts +0 -66
- package/dist/api/invoices-api.js +0 -99
- package/dist/api/recurring-invoices-api.d.ts +9 -9
- package/dist/api/recurring-invoices-api.js +12 -12
- package/dist/models/create-invoice-request-dto.d.ts +9 -16
- package/dist/models/index.d.ts +0 -2
- package/dist/models/index.js +0 -2
- package/dist/models/list-request-dto.d.ts +0 -6
- package/dist/models/policy-dto.d.ts +0 -12
- package/dist/models/policy-object-dto.d.ts +0 -12
- package/dist/models/policy-premium-dto.d.ts +0 -12
- package/dist/models/policy-premium-item-dto.d.ts +0 -12
- package/dist/models/policy-version-dto.d.ts +0 -12
- package/dist/models/premium-formula-dto.d.ts +0 -12
- package/dist/models/timeslice-dto.d.ts +0 -12
- package/models/create-invoice-request-dto.ts +9 -16
- package/models/index.ts +0 -2
- package/models/list-request-dto.ts +0 -6
- package/models/policy-dto.ts +0 -12
- package/models/policy-object-dto.ts +0 -12
- package/models/policy-premium-dto.ts +0 -12
- package/models/policy-premium-item-dto.ts +0 -12
- package/models/policy-version-dto.ts +0 -12
- package/models/premium-formula-dto.ts +0 -12
- package/models/timeslice-dto.ts +0 -12
- package/package.json +1 -1
- package/dist/models/create-invoice-for-policy-request-dto.d.ts +0 -83
- package/dist/models/create-invoice-for-policy-request-dto.js +0 -26
- package/dist/models/create-item-request-dto.d.ts +0 -101
- package/dist/models/create-item-request-dto.js +0 -36
- package/models/create-invoice-for-policy-request-dto.ts +0 -92
- package/models/create-item-request-dto.ts +0 -112
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import {
|
|
15
|
+
import { CreateInvoiceRequestDto } from '../models';
|
|
16
16
|
import { CreateInvoiceResponseClass } from '../models';
|
|
17
17
|
/**
|
|
18
18
|
* InitialInvoicesApi - axios parameter creator
|
|
@@ -22,13 +22,13 @@ export declare const InitialInvoicesApiAxiosParamCreator: (configuration?: Confi
|
|
|
22
22
|
/**
|
|
23
23
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
24
24
|
* @summary Create the initial invoice
|
|
25
|
-
* @param {
|
|
25
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
26
26
|
* @param {string} [authorization] Bearer Token
|
|
27
27
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
28
28
|
* @param {*} [options] Override http request option.
|
|
29
29
|
* @throws {RequiredError}
|
|
30
30
|
*/
|
|
31
|
-
createInitialInvoice: (
|
|
31
|
+
createInitialInvoice: (createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
34
|
* InitialInvoicesApi - functional programming interface
|
|
@@ -38,13 +38,13 @@ export declare const InitialInvoicesApiFp: (configuration?: Configuration) => {
|
|
|
38
38
|
/**
|
|
39
39
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
40
40
|
* @summary Create the initial invoice
|
|
41
|
-
* @param {
|
|
41
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
42
42
|
* @param {string} [authorization] Bearer Token
|
|
43
43
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
44
44
|
* @param {*} [options] Override http request option.
|
|
45
45
|
* @throws {RequiredError}
|
|
46
46
|
*/
|
|
47
|
-
createInitialInvoice(
|
|
47
|
+
createInitialInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateInvoiceResponseClass>>;
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* InitialInvoicesApi - factory interface
|
|
@@ -54,13 +54,13 @@ export declare const InitialInvoicesApiFactory: (configuration?: Configuration,
|
|
|
54
54
|
/**
|
|
55
55
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
56
56
|
* @summary Create the initial invoice
|
|
57
|
-
* @param {
|
|
57
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
58
58
|
* @param {string} [authorization] Bearer Token
|
|
59
59
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
60
60
|
* @param {*} [options] Override http request option.
|
|
61
61
|
* @throws {RequiredError}
|
|
62
62
|
*/
|
|
63
|
-
createInitialInvoice(
|
|
63
|
+
createInitialInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: any): AxiosPromise<CreateInvoiceResponseClass>;
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
66
66
|
* Request parameters for createInitialInvoice operation in InitialInvoicesApi.
|
|
@@ -70,10 +70,10 @@ export declare const InitialInvoicesApiFactory: (configuration?: Configuration,
|
|
|
70
70
|
export interface InitialInvoicesApiCreateInitialInvoiceRequest {
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {CreateInvoiceRequestDto}
|
|
74
74
|
* @memberof InitialInvoicesApiCreateInitialInvoice
|
|
75
75
|
*/
|
|
76
|
-
readonly
|
|
76
|
+
readonly createInvoiceRequestDto: CreateInvoiceRequestDto;
|
|
77
77
|
/**
|
|
78
78
|
* Bearer Token
|
|
79
79
|
* @type {string}
|
|
@@ -99,21 +99,21 @@ var InitialInvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
99
99
|
/**
|
|
100
100
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
101
101
|
* @summary Create the initial invoice
|
|
102
|
-
* @param {
|
|
102
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token
|
|
104
104
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
createInitialInvoice: function (
|
|
108
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
109
109
|
if (options === void 0) { options = {}; }
|
|
110
110
|
return __awaiter(_this, void 0, void 0, function () {
|
|
111
111
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
112
112
|
return __generator(this, function (_a) {
|
|
113
113
|
switch (_a.label) {
|
|
114
114
|
case 0:
|
|
115
|
-
// verify required parameter '
|
|
116
|
-
(0, common_1.assertParamExists)('createInitialInvoice', '
|
|
115
|
+
// verify required parameter 'createInvoiceRequestDto' is not null or undefined
|
|
116
|
+
(0, common_1.assertParamExists)('createInitialInvoice', 'createInvoiceRequestDto', createInvoiceRequestDto);
|
|
117
117
|
localVarPath = "/billingservice/v1/initial-invoices";
|
|
118
118
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
119
|
if (configuration) {
|
|
@@ -140,7 +140,7 @@ var InitialInvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
140
140
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
141
141
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
142
142
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
143
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
143
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
144
144
|
return [2 /*return*/, {
|
|
145
145
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
146
146
|
options: localVarRequestOptions,
|
|
@@ -162,18 +162,18 @@ var InitialInvoicesApiFp = function (configuration) {
|
|
|
162
162
|
/**
|
|
163
163
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
164
164
|
* @summary Create the initial invoice
|
|
165
|
-
* @param {
|
|
165
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
166
166
|
* @param {string} [authorization] Bearer Token
|
|
167
167
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
168
168
|
* @param {*} [options] Override http request option.
|
|
169
169
|
* @throws {RequiredError}
|
|
170
170
|
*/
|
|
171
|
-
createInitialInvoice: function (
|
|
171
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
172
172
|
return __awaiter(this, void 0, void 0, function () {
|
|
173
173
|
var localVarAxiosArgs;
|
|
174
174
|
return __generator(this, function (_a) {
|
|
175
175
|
switch (_a.label) {
|
|
176
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createInitialInvoice(
|
|
176
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createInitialInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options)];
|
|
177
177
|
case 1:
|
|
178
178
|
localVarAxiosArgs = _a.sent();
|
|
179
179
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -194,14 +194,14 @@ var InitialInvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
194
194
|
/**
|
|
195
195
|
* This will create an initial invoice. It will be created once a policy is approved and it will cover a partial until the issuing of the regular invoice.
|
|
196
196
|
* @summary Create the initial invoice
|
|
197
|
-
* @param {
|
|
197
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
198
198
|
* @param {string} [authorization] Bearer Token
|
|
199
199
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
200
200
|
* @param {*} [options] Override http request option.
|
|
201
201
|
* @throws {RequiredError}
|
|
202
202
|
*/
|
|
203
|
-
createInitialInvoice: function (
|
|
204
|
-
return localVarFp.createInitialInvoice(
|
|
203
|
+
createInitialInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
204
|
+
return localVarFp.createInitialInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then(function (request) { return request(axios, basePath); });
|
|
205
205
|
},
|
|
206
206
|
};
|
|
207
207
|
};
|
|
@@ -227,7 +227,7 @@ var InitialInvoicesApi = /** @class */ (function (_super) {
|
|
|
227
227
|
*/
|
|
228
228
|
InitialInvoicesApi.prototype.createInitialInvoice = function (requestParameters, options) {
|
|
229
229
|
var _this = this;
|
|
230
|
-
return (0, exports.InitialInvoicesApiFp)(this.configuration).createInitialInvoice(requestParameters.
|
|
230
|
+
return (0, exports.InitialInvoicesApiFp)(this.configuration).createInitialInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, requestParameters.idempotencyKey, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
231
231
|
};
|
|
232
232
|
return InitialInvoicesApi;
|
|
233
233
|
}(base_1.BaseAPI));
|
|
@@ -12,8 +12,6 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import { CreateInvoiceRequestDto } from '../models';
|
|
16
|
-
import { CreateInvoiceResponseClass } from '../models';
|
|
17
15
|
import { GetInvoiceResponseClass } from '../models';
|
|
18
16
|
import { ListInvoicesResponseClass } from '../models';
|
|
19
17
|
import { ListPoliciesBillingDatesResponseClass } from '../models';
|
|
@@ -22,16 +20,6 @@ import { ListPoliciesBillingDatesResponseClass } from '../models';
|
|
|
22
20
|
* @export
|
|
23
21
|
*/
|
|
24
22
|
export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
25
|
-
/**
|
|
26
|
-
* This will create invoice for a policy and save it in the DB.
|
|
27
|
-
* @summary Create the invoice
|
|
28
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
29
|
-
* @param {string} [authorization] Bearer Token
|
|
30
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
31
|
-
* @param {*} [options] Override http request option.
|
|
32
|
-
* @throws {RequiredError}
|
|
33
|
-
*/
|
|
34
|
-
createInvoice: (createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
23
|
/**
|
|
36
24
|
* Gets an invoice.
|
|
37
25
|
* @summary Retrieve the invoice
|
|
@@ -78,16 +66,6 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
78
66
|
* @export
|
|
79
67
|
*/
|
|
80
68
|
export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
81
|
-
/**
|
|
82
|
-
* This will create invoice for a policy and save it in the DB.
|
|
83
|
-
* @summary Create the invoice
|
|
84
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
85
|
-
* @param {string} [authorization] Bearer Token
|
|
86
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
87
|
-
* @param {*} [options] Override http request option.
|
|
88
|
-
* @throws {RequiredError}
|
|
89
|
-
*/
|
|
90
|
-
createInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateInvoiceResponseClass>>;
|
|
91
69
|
/**
|
|
92
70
|
* Gets an invoice.
|
|
93
71
|
* @summary Retrieve the invoice
|
|
@@ -134,16 +112,6 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
134
112
|
* @export
|
|
135
113
|
*/
|
|
136
114
|
export declare const InvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
137
|
-
/**
|
|
138
|
-
* This will create invoice for a policy and save it in the DB.
|
|
139
|
-
* @summary Create the invoice
|
|
140
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
141
|
-
* @param {string} [authorization] Bearer Token
|
|
142
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
143
|
-
* @param {*} [options] Override http request option.
|
|
144
|
-
* @throws {RequiredError}
|
|
145
|
-
*/
|
|
146
|
-
createInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: any): AxiosPromise<CreateInvoiceResponseClass>;
|
|
147
115
|
/**
|
|
148
116
|
* Gets an invoice.
|
|
149
117
|
* @summary Retrieve the invoice
|
|
@@ -185,31 +153,6 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
185
153
|
*/
|
|
186
154
|
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPoliciesBillingDatesResponseClass>;
|
|
187
155
|
};
|
|
188
|
-
/**
|
|
189
|
-
* Request parameters for createInvoice operation in InvoicesApi.
|
|
190
|
-
* @export
|
|
191
|
-
* @interface InvoicesApiCreateInvoiceRequest
|
|
192
|
-
*/
|
|
193
|
-
export interface InvoicesApiCreateInvoiceRequest {
|
|
194
|
-
/**
|
|
195
|
-
*
|
|
196
|
-
* @type {CreateInvoiceRequestDto}
|
|
197
|
-
* @memberof InvoicesApiCreateInvoice
|
|
198
|
-
*/
|
|
199
|
-
readonly createInvoiceRequestDto: CreateInvoiceRequestDto;
|
|
200
|
-
/**
|
|
201
|
-
* Bearer Token
|
|
202
|
-
* @type {string}
|
|
203
|
-
* @memberof InvoicesApiCreateInvoice
|
|
204
|
-
*/
|
|
205
|
-
readonly authorization?: string;
|
|
206
|
-
/**
|
|
207
|
-
* Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
208
|
-
* @type {string}
|
|
209
|
-
* @memberof InvoicesApiCreateInvoice
|
|
210
|
-
*/
|
|
211
|
-
readonly idempotencyKey?: string;
|
|
212
|
-
}
|
|
213
156
|
/**
|
|
214
157
|
* Request parameters for getInvoice operation in InvoicesApi.
|
|
215
158
|
* @export
|
|
@@ -352,15 +295,6 @@ export interface InvoicesApiListPoliciesBillingDatesRequest {
|
|
|
352
295
|
* @extends {BaseAPI}
|
|
353
296
|
*/
|
|
354
297
|
export declare class InvoicesApi extends BaseAPI {
|
|
355
|
-
/**
|
|
356
|
-
* This will create invoice for a policy and save it in the DB.
|
|
357
|
-
* @summary Create the invoice
|
|
358
|
-
* @param {InvoicesApiCreateInvoiceRequest} requestParameters Request parameters.
|
|
359
|
-
* @param {*} [options] Override http request option.
|
|
360
|
-
* @throws {RequiredError}
|
|
361
|
-
* @memberof InvoicesApi
|
|
362
|
-
*/
|
|
363
|
-
createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateInvoiceResponseClass, any>>;
|
|
364
298
|
/**
|
|
365
299
|
* Gets an invoice.
|
|
366
300
|
* @summary Retrieve the invoice
|
package/dist/api/invoices-api.js
CHANGED
|
@@ -96,59 +96,6 @@ var FormData = require('form-data');
|
|
|
96
96
|
var InvoicesApiAxiosParamCreator = function (configuration) {
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
|
-
/**
|
|
100
|
-
* This will create invoice for a policy and save it in the DB.
|
|
101
|
-
* @summary Create the invoice
|
|
102
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
103
|
-
* @param {string} [authorization] Bearer Token
|
|
104
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
105
|
-
* @param {*} [options] Override http request option.
|
|
106
|
-
* @throws {RequiredError}
|
|
107
|
-
*/
|
|
108
|
-
createInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
109
|
-
if (options === void 0) { options = {}; }
|
|
110
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
111
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
112
|
-
return __generator(this, function (_a) {
|
|
113
|
-
switch (_a.label) {
|
|
114
|
-
case 0:
|
|
115
|
-
// verify required parameter 'createInvoiceRequestDto' is not null or undefined
|
|
116
|
-
(0, common_1.assertParamExists)('createInvoice', 'createInvoiceRequestDto', createInvoiceRequestDto);
|
|
117
|
-
localVarPath = "/billingservice/v1/invoices";
|
|
118
|
-
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
-
if (configuration) {
|
|
120
|
-
baseOptions = configuration.baseOptions;
|
|
121
|
-
baseAccessToken = configuration.accessToken;
|
|
122
|
-
}
|
|
123
|
-
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
124
|
-
localVarHeaderParameter = {};
|
|
125
|
-
localVarQueryParameter = {};
|
|
126
|
-
// authentication bearer required
|
|
127
|
-
// http bearer authentication required
|
|
128
|
-
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
129
|
-
case 1:
|
|
130
|
-
// authentication bearer required
|
|
131
|
-
// http bearer authentication required
|
|
132
|
-
_a.sent();
|
|
133
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
134
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
135
|
-
}
|
|
136
|
-
if (idempotencyKey !== undefined && idempotencyKey !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
137
|
-
localVarHeaderParameter['Idempotency-Key'] = String(idempotencyKey ? idempotencyKey : baseAccessToken);
|
|
138
|
-
}
|
|
139
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
140
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
141
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
142
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
143
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
144
|
-
return [2 /*return*/, {
|
|
145
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
146
|
-
options: localVarRequestOptions,
|
|
147
|
-
}];
|
|
148
|
-
}
|
|
149
|
-
});
|
|
150
|
-
});
|
|
151
|
-
},
|
|
152
99
|
/**
|
|
153
100
|
* Gets an invoice.
|
|
154
101
|
* @summary Retrieve the invoice
|
|
@@ -357,28 +304,6 @@ exports.InvoicesApiAxiosParamCreator = InvoicesApiAxiosParamCreator;
|
|
|
357
304
|
var InvoicesApiFp = function (configuration) {
|
|
358
305
|
var localVarAxiosParamCreator = (0, exports.InvoicesApiAxiosParamCreator)(configuration);
|
|
359
306
|
return {
|
|
360
|
-
/**
|
|
361
|
-
* This will create invoice for a policy and save it in the DB.
|
|
362
|
-
* @summary Create the invoice
|
|
363
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
364
|
-
* @param {string} [authorization] Bearer Token
|
|
365
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
366
|
-
* @param {*} [options] Override http request option.
|
|
367
|
-
* @throws {RequiredError}
|
|
368
|
-
*/
|
|
369
|
-
createInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
370
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
371
|
-
var localVarAxiosArgs;
|
|
372
|
-
return __generator(this, function (_a) {
|
|
373
|
-
switch (_a.label) {
|
|
374
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options)];
|
|
375
|
-
case 1:
|
|
376
|
-
localVarAxiosArgs = _a.sent();
|
|
377
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
378
|
-
}
|
|
379
|
-
});
|
|
380
|
-
});
|
|
381
|
-
},
|
|
382
307
|
/**
|
|
383
308
|
* Gets an invoice.
|
|
384
309
|
* @summary Retrieve the invoice
|
|
@@ -465,18 +390,6 @@ exports.InvoicesApiFp = InvoicesApiFp;
|
|
|
465
390
|
var InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
466
391
|
var localVarFp = (0, exports.InvoicesApiFp)(configuration);
|
|
467
392
|
return {
|
|
468
|
-
/**
|
|
469
|
-
* This will create invoice for a policy and save it in the DB.
|
|
470
|
-
* @summary Create the invoice
|
|
471
|
-
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
472
|
-
* @param {string} [authorization] Bearer Token
|
|
473
|
-
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
474
|
-
* @param {*} [options] Override http request option.
|
|
475
|
-
* @throws {RequiredError}
|
|
476
|
-
*/
|
|
477
|
-
createInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
478
|
-
return localVarFp.createInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then(function (request) { return request(axios, basePath); });
|
|
479
|
-
},
|
|
480
393
|
/**
|
|
481
394
|
* Gets an invoice.
|
|
482
395
|
* @summary Retrieve the invoice
|
|
@@ -537,18 +450,6 @@ var InvoicesApi = /** @class */ (function (_super) {
|
|
|
537
450
|
function InvoicesApi() {
|
|
538
451
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
539
452
|
}
|
|
540
|
-
/**
|
|
541
|
-
* This will create invoice for a policy and save it in the DB.
|
|
542
|
-
* @summary Create the invoice
|
|
543
|
-
* @param {InvoicesApiCreateInvoiceRequest} requestParameters Request parameters.
|
|
544
|
-
* @param {*} [options] Override http request option.
|
|
545
|
-
* @throws {RequiredError}
|
|
546
|
-
* @memberof InvoicesApi
|
|
547
|
-
*/
|
|
548
|
-
InvoicesApi.prototype.createInvoice = function (requestParameters, options) {
|
|
549
|
-
var _this = this;
|
|
550
|
-
return (0, exports.InvoicesApiFp)(this.configuration).createInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, requestParameters.idempotencyKey, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
551
|
-
};
|
|
552
453
|
/**
|
|
553
454
|
* Gets an invoice.
|
|
554
455
|
* @summary Retrieve the invoice
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import {
|
|
15
|
+
import { CreateInvoiceRequestDto } from '../models';
|
|
16
16
|
import { CreateInvoiceResponseClass } from '../models';
|
|
17
17
|
/**
|
|
18
18
|
* RecurringInvoicesApi - axios parameter creator
|
|
@@ -22,13 +22,13 @@ export declare const RecurringInvoicesApiAxiosParamCreator: (configuration?: Con
|
|
|
22
22
|
/**
|
|
23
23
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
24
24
|
* @summary Create the recurring invoice
|
|
25
|
-
* @param {
|
|
25
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
26
26
|
* @param {string} [authorization] Bearer Token
|
|
27
27
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
28
28
|
* @param {*} [options] Override http request option.
|
|
29
29
|
* @throws {RequiredError}
|
|
30
30
|
*/
|
|
31
|
-
createRecurringInvoice: (
|
|
31
|
+
createRecurringInvoice: (createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
34
|
* RecurringInvoicesApi - functional programming interface
|
|
@@ -38,13 +38,13 @@ export declare const RecurringInvoicesApiFp: (configuration?: Configuration) =>
|
|
|
38
38
|
/**
|
|
39
39
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
40
40
|
* @summary Create the recurring invoice
|
|
41
|
-
* @param {
|
|
41
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
42
42
|
* @param {string} [authorization] Bearer Token
|
|
43
43
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
44
44
|
* @param {*} [options] Override http request option.
|
|
45
45
|
* @throws {RequiredError}
|
|
46
46
|
*/
|
|
47
|
-
createRecurringInvoice(
|
|
47
|
+
createRecurringInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateInvoiceResponseClass>>;
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* RecurringInvoicesApi - factory interface
|
|
@@ -54,13 +54,13 @@ export declare const RecurringInvoicesApiFactory: (configuration?: Configuration
|
|
|
54
54
|
/**
|
|
55
55
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
56
56
|
* @summary Create the recurring invoice
|
|
57
|
-
* @param {
|
|
57
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
58
58
|
* @param {string} [authorization] Bearer Token
|
|
59
59
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
60
60
|
* @param {*} [options] Override http request option.
|
|
61
61
|
* @throws {RequiredError}
|
|
62
62
|
*/
|
|
63
|
-
createRecurringInvoice(
|
|
63
|
+
createRecurringInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: any): AxiosPromise<CreateInvoiceResponseClass>;
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
66
66
|
* Request parameters for createRecurringInvoice operation in RecurringInvoicesApi.
|
|
@@ -70,10 +70,10 @@ export declare const RecurringInvoicesApiFactory: (configuration?: Configuration
|
|
|
70
70
|
export interface RecurringInvoicesApiCreateRecurringInvoiceRequest {
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {CreateInvoiceRequestDto}
|
|
74
74
|
* @memberof RecurringInvoicesApiCreateRecurringInvoice
|
|
75
75
|
*/
|
|
76
|
-
readonly
|
|
76
|
+
readonly createInvoiceRequestDto: CreateInvoiceRequestDto;
|
|
77
77
|
/**
|
|
78
78
|
* Bearer Token
|
|
79
79
|
* @type {string}
|
|
@@ -99,21 +99,21 @@ var RecurringInvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
99
99
|
/**
|
|
100
100
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
101
101
|
* @summary Create the recurring invoice
|
|
102
|
-
* @param {
|
|
102
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token
|
|
104
104
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
createRecurringInvoice: function (
|
|
108
|
+
createRecurringInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
109
109
|
if (options === void 0) { options = {}; }
|
|
110
110
|
return __awaiter(_this, void 0, void 0, function () {
|
|
111
111
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
112
112
|
return __generator(this, function (_a) {
|
|
113
113
|
switch (_a.label) {
|
|
114
114
|
case 0:
|
|
115
|
-
// verify required parameter '
|
|
116
|
-
(0, common_1.assertParamExists)('createRecurringInvoice', '
|
|
115
|
+
// verify required parameter 'createInvoiceRequestDto' is not null or undefined
|
|
116
|
+
(0, common_1.assertParamExists)('createRecurringInvoice', 'createInvoiceRequestDto', createInvoiceRequestDto);
|
|
117
117
|
localVarPath = "/billingservice/v1/recurring-invoices";
|
|
118
118
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
119
|
if (configuration) {
|
|
@@ -140,7 +140,7 @@ var RecurringInvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
140
140
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
141
141
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
142
142
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
143
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(
|
|
143
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createInvoiceRequestDto, localVarRequestOptions, configuration);
|
|
144
144
|
return [2 /*return*/, {
|
|
145
145
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
146
146
|
options: localVarRequestOptions,
|
|
@@ -162,18 +162,18 @@ var RecurringInvoicesApiFp = function (configuration) {
|
|
|
162
162
|
/**
|
|
163
163
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
164
164
|
* @summary Create the recurring invoice
|
|
165
|
-
* @param {
|
|
165
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
166
166
|
* @param {string} [authorization] Bearer Token
|
|
167
167
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
168
168
|
* @param {*} [options] Override http request option.
|
|
169
169
|
* @throws {RequiredError}
|
|
170
170
|
*/
|
|
171
|
-
createRecurringInvoice: function (
|
|
171
|
+
createRecurringInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
172
172
|
return __awaiter(this, void 0, void 0, function () {
|
|
173
173
|
var localVarAxiosArgs;
|
|
174
174
|
return __generator(this, function (_a) {
|
|
175
175
|
switch (_a.label) {
|
|
176
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createRecurringInvoice(
|
|
176
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createRecurringInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options)];
|
|
177
177
|
case 1:
|
|
178
178
|
localVarAxiosArgs = _a.sent();
|
|
179
179
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -194,14 +194,14 @@ var RecurringInvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
194
194
|
/**
|
|
195
195
|
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
196
196
|
* @summary Create the recurring invoice
|
|
197
|
-
* @param {
|
|
197
|
+
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
198
198
|
* @param {string} [authorization] Bearer Token
|
|
199
199
|
* @param {string} [idempotencyKey] Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
200
200
|
* @param {*} [options] Override http request option.
|
|
201
201
|
* @throws {RequiredError}
|
|
202
202
|
*/
|
|
203
|
-
createRecurringInvoice: function (
|
|
204
|
-
return localVarFp.createRecurringInvoice(
|
|
203
|
+
createRecurringInvoice: function (createInvoiceRequestDto, authorization, idempotencyKey, options) {
|
|
204
|
+
return localVarFp.createRecurringInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then(function (request) { return request(axios, basePath); });
|
|
205
205
|
},
|
|
206
206
|
};
|
|
207
207
|
};
|
|
@@ -227,7 +227,7 @@ var RecurringInvoicesApi = /** @class */ (function (_super) {
|
|
|
227
227
|
*/
|
|
228
228
|
RecurringInvoicesApi.prototype.createRecurringInvoice = function (requestParameters, options) {
|
|
229
229
|
var _this = this;
|
|
230
|
-
return (0, exports.RecurringInvoicesApiFp)(this.configuration).createRecurringInvoice(requestParameters.
|
|
230
|
+
return (0, exports.RecurringInvoicesApiFp)(this.configuration).createRecurringInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, requestParameters.idempotencyKey, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
231
231
|
};
|
|
232
232
|
return RecurringInvoicesApi;
|
|
233
233
|
}(base_1.BaseAPI));
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { CreateItemRequestDto } from './create-item-request-dto';
|
|
13
12
|
/**
|
|
14
13
|
*
|
|
15
14
|
* @export
|
|
@@ -23,35 +22,35 @@ export interface CreateInvoiceRequestDto {
|
|
|
23
22
|
*/
|
|
24
23
|
'invoiceNumber'?: string;
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* Account number.
|
|
27
26
|
* @type {string}
|
|
28
27
|
* @memberof CreateInvoiceRequestDto
|
|
29
28
|
*/
|
|
30
|
-
'
|
|
29
|
+
'accountNumber': string;
|
|
31
30
|
/**
|
|
32
|
-
*
|
|
31
|
+
* Unique identifier of the policy that this object belongs to.
|
|
33
32
|
* @type {string}
|
|
34
33
|
* @memberof CreateInvoiceRequestDto
|
|
35
34
|
*/
|
|
36
|
-
'
|
|
35
|
+
'policyCode': string;
|
|
37
36
|
/**
|
|
38
|
-
*
|
|
37
|
+
* Policy number.
|
|
39
38
|
* @type {string}
|
|
40
39
|
* @memberof CreateInvoiceRequestDto
|
|
41
40
|
*/
|
|
42
|
-
'
|
|
41
|
+
'policyNumber': string;
|
|
43
42
|
/**
|
|
44
43
|
* Type of the invoice.
|
|
45
44
|
* @type {string}
|
|
46
45
|
* @memberof CreateInvoiceRequestDto
|
|
47
46
|
*/
|
|
48
|
-
'type'
|
|
47
|
+
'type'?: CreateInvoiceRequestDtoTypeEnum;
|
|
49
48
|
/**
|
|
50
49
|
* Metadata contains extra information that the object would need for specific cases.
|
|
51
50
|
* @type {object}
|
|
52
51
|
* @memberof CreateInvoiceRequestDto
|
|
53
52
|
*/
|
|
54
|
-
'metadata'
|
|
53
|
+
'metadata'?: object;
|
|
55
54
|
/**
|
|
56
55
|
* This is the date from which the invoice interval starts.
|
|
57
56
|
* @type {string}
|
|
@@ -69,13 +68,7 @@ export interface CreateInvoiceRequestDto {
|
|
|
69
68
|
* @type {string}
|
|
70
69
|
* @memberof CreateInvoiceRequestDto
|
|
71
70
|
*/
|
|
72
|
-
'dueDate'
|
|
73
|
-
/**
|
|
74
|
-
*
|
|
75
|
-
* @type {Array<CreateItemRequestDto>}
|
|
76
|
-
* @memberof CreateInvoiceRequestDto
|
|
77
|
-
*/
|
|
78
|
-
'items': Array<CreateItemRequestDto>;
|
|
71
|
+
'dueDate'?: string;
|
|
79
72
|
}
|
|
80
73
|
export declare const CreateInvoiceRequestDtoTypeEnum: {
|
|
81
74
|
readonly Initial: "initial";
|
package/dist/models/index.d.ts
CHANGED
|
@@ -6,12 +6,10 @@ export * from './create-estimated-invoice-for-interval-request-dto';
|
|
|
6
6
|
export * from './create-estimated-invoice-for-interval-response-class';
|
|
7
7
|
export * from './create-estimated-invoice-request-dto';
|
|
8
8
|
export * from './create-estimated-invoice-response-class';
|
|
9
|
-
export * from './create-invoice-for-policy-request-dto';
|
|
10
9
|
export * from './create-invoice-payment-request-dto';
|
|
11
10
|
export * from './create-invoice-request-dto';
|
|
12
11
|
export * from './create-invoice-response-class';
|
|
13
12
|
export * from './create-invoice-status-request-dto';
|
|
14
|
-
export * from './create-item-request-dto';
|
|
15
13
|
export * from './create-termination-invoice-request-dto';
|
|
16
14
|
export * from './get-invoice-response-class';
|
|
17
15
|
export * from './inline-response200';
|
package/dist/models/index.js
CHANGED
|
@@ -22,12 +22,10 @@ __exportStar(require("./create-estimated-invoice-for-interval-request-dto"), exp
|
|
|
22
22
|
__exportStar(require("./create-estimated-invoice-for-interval-response-class"), exports);
|
|
23
23
|
__exportStar(require("./create-estimated-invoice-request-dto"), exports);
|
|
24
24
|
__exportStar(require("./create-estimated-invoice-response-class"), exports);
|
|
25
|
-
__exportStar(require("./create-invoice-for-policy-request-dto"), exports);
|
|
26
25
|
__exportStar(require("./create-invoice-payment-request-dto"), exports);
|
|
27
26
|
__exportStar(require("./create-invoice-request-dto"), exports);
|
|
28
27
|
__exportStar(require("./create-invoice-response-class"), exports);
|
|
29
28
|
__exportStar(require("./create-invoice-status-request-dto"), exports);
|
|
30
|
-
__exportStar(require("./create-item-request-dto"), exports);
|
|
31
29
|
__exportStar(require("./create-termination-invoice-request-dto"), exports);
|
|
32
30
|
__exportStar(require("./get-invoice-response-class"), exports);
|
|
33
31
|
__exportStar(require("./inline-response200"), exports);
|