@emilgroup/billing-sdk 1.40.0 → 1.40.1-beta.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/README.md +2 -2
- package/api/correction-invoices-api.ts +4 -4
- package/api/draft-invoice-api.ts +12 -12
- package/api/estimated-invoices-api.ts +12 -12
- package/api/initial-invoices-api.ts +4 -4
- package/api/invoices-api.ts +16 -16
- package/api/policy-billing-api.ts +12 -12
- package/api/recurring-invoices-api.ts +4 -4
- package/dist/api/correction-invoices-api.d.ts +4 -4
- package/dist/api/correction-invoices-api.js +4 -4
- package/dist/api/draft-invoice-api.d.ts +12 -12
- package/dist/api/draft-invoice-api.js +12 -12
- package/dist/api/estimated-invoices-api.d.ts +12 -12
- package/dist/api/estimated-invoices-api.js +12 -12
- package/dist/api/initial-invoices-api.d.ts +4 -4
- package/dist/api/initial-invoices-api.js +4 -4
- package/dist/api/invoices-api.d.ts +16 -16
- package/dist/api/invoices-api.js +16 -16
- package/dist/api/policy-billing-api.d.ts +12 -12
- package/dist/api/policy-billing-api.js +12 -12
- package/dist/api/recurring-invoices-api.d.ts +4 -4
- package/dist/api/recurring-invoices-api.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/billing-sdk@1.40.0 --save
|
|
20
|
+
npm install @emilgroup/billing-sdk@1.40.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/billing-sdk@1.40.0
|
|
24
|
+
yarn add @emilgroup/billing-sdk@1.40.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `InvoicesApi`.
|
|
@@ -31,7 +31,7 @@ import { CreateInvoiceForPolicyRequestDto } from '../models';
|
|
|
31
31
|
export const CorrectionInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
34
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
35
35
|
* @summary Create the correction invoice
|
|
36
36
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
37
37
|
* @param {string} [authorization] Bearer Token
|
|
@@ -93,7 +93,7 @@ export const CorrectionInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
93
93
|
const localVarAxiosParamCreator = CorrectionInvoicesApiAxiosParamCreator(configuration)
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
96
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
97
97
|
* @summary Create the correction invoice
|
|
98
98
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -116,7 +116,7 @@ export const CorrectionInvoicesApiFactory = function (configuration?: Configurat
|
|
|
116
116
|
const localVarFp = CorrectionInvoicesApiFp(configuration)
|
|
117
117
|
return {
|
|
118
118
|
/**
|
|
119
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
119
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
120
120
|
* @summary Create the correction invoice
|
|
121
121
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
122
122
|
* @param {string} [authorization] Bearer Token
|
|
@@ -166,7 +166,7 @@ export interface CorrectionInvoicesApiCreateCorrectionInvoiceRequest {
|
|
|
166
166
|
*/
|
|
167
167
|
export class CorrectionInvoicesApi extends BaseAPI {
|
|
168
168
|
/**
|
|
169
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
169
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
170
170
|
* @summary Create the correction invoice
|
|
171
171
|
* @param {CorrectionInvoicesApiCreateCorrectionInvoiceRequest} requestParameters Request parameters.
|
|
172
172
|
* @param {*} [options] Override http request option.
|
package/api/draft-invoice-api.ts
CHANGED
|
@@ -29,7 +29,7 @@ import { CreateDraftInvoiceRequestDto } from '../models';
|
|
|
29
29
|
export const DraftInvoiceApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
30
|
return {
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* undefined **Required Permissions** \"billing-management.invoices.create\"
|
|
33
33
|
* @param {CreateDraftInvoiceRequestDto} createDraftInvoiceRequestDto
|
|
34
34
|
* @param {string} [authorization] Bearer Token
|
|
35
35
|
* @param {*} [options] Override http request option.
|
|
@@ -75,7 +75,7 @@ export const DraftInvoiceApiAxiosParamCreator = function (configuration?: Config
|
|
|
75
75
|
};
|
|
76
76
|
},
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
79
79
|
* @param {string} [authorization] Bearer Token
|
|
80
80
|
* @param {*} [options] Override http request option.
|
|
81
81
|
* @throws {RequiredError}
|
|
@@ -115,7 +115,7 @@ export const DraftInvoiceApiAxiosParamCreator = function (configuration?: Config
|
|
|
115
115
|
};
|
|
116
116
|
},
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
119
119
|
* @param {object} body
|
|
120
120
|
* @param {string} [authorization] Bearer Token
|
|
121
121
|
* @param {*} [options] Override http request option.
|
|
@@ -171,7 +171,7 @@ export const DraftInvoiceApiFp = function(configuration?: Configuration) {
|
|
|
171
171
|
const localVarAxiosParamCreator = DraftInvoiceApiAxiosParamCreator(configuration)
|
|
172
172
|
return {
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* undefined **Required Permissions** \"billing-management.invoices.create\"
|
|
175
175
|
* @param {CreateDraftInvoiceRequestDto} createDraftInvoiceRequestDto
|
|
176
176
|
* @param {string} [authorization] Bearer Token
|
|
177
177
|
* @param {*} [options] Override http request option.
|
|
@@ -182,7 +182,7 @@ export const DraftInvoiceApiFp = function(configuration?: Configuration) {
|
|
|
182
182
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
183
183
|
},
|
|
184
184
|
/**
|
|
185
|
-
*
|
|
185
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
186
186
|
* @param {string} [authorization] Bearer Token
|
|
187
187
|
* @param {*} [options] Override http request option.
|
|
188
188
|
* @throws {RequiredError}
|
|
@@ -192,7 +192,7 @@ export const DraftInvoiceApiFp = function(configuration?: Configuration) {
|
|
|
192
192
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
193
193
|
},
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
196
196
|
* @param {object} body
|
|
197
197
|
* @param {string} [authorization] Bearer Token
|
|
198
198
|
* @param {*} [options] Override http request option.
|
|
@@ -213,7 +213,7 @@ export const DraftInvoiceApiFactory = function (configuration?: Configuration, b
|
|
|
213
213
|
const localVarFp = DraftInvoiceApiFp(configuration)
|
|
214
214
|
return {
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* undefined **Required Permissions** \"billing-management.invoices.create\"
|
|
217
217
|
* @param {CreateDraftInvoiceRequestDto} createDraftInvoiceRequestDto
|
|
218
218
|
* @param {string} [authorization] Bearer Token
|
|
219
219
|
* @param {*} [options] Override http request option.
|
|
@@ -223,7 +223,7 @@ export const DraftInvoiceApiFactory = function (configuration?: Configuration, b
|
|
|
223
223
|
return localVarFp.createDraftInvoice(createDraftInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
224
224
|
},
|
|
225
225
|
/**
|
|
226
|
-
*
|
|
226
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
227
227
|
* @param {string} [authorization] Bearer Token
|
|
228
228
|
* @param {*} [options] Override http request option.
|
|
229
229
|
* @throws {RequiredError}
|
|
@@ -232,7 +232,7 @@ export const DraftInvoiceApiFactory = function (configuration?: Configuration, b
|
|
|
232
232
|
return localVarFp.deleteAllDraftInvoices(authorization, options).then((request) => request(axios, basePath));
|
|
233
233
|
},
|
|
234
234
|
/**
|
|
235
|
-
*
|
|
235
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
236
236
|
* @param {object} body
|
|
237
237
|
* @param {string} [authorization] Bearer Token
|
|
238
238
|
* @param {*} [options] Override http request option.
|
|
@@ -308,7 +308,7 @@ export interface DraftInvoiceApiDeleteDraftInvoiceRequest {
|
|
|
308
308
|
*/
|
|
309
309
|
export class DraftInvoiceApi extends BaseAPI {
|
|
310
310
|
/**
|
|
311
|
-
*
|
|
311
|
+
* undefined **Required Permissions** \"billing-management.invoices.create\"
|
|
312
312
|
* @param {DraftInvoiceApiCreateDraftInvoiceRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
314
314
|
* @throws {RequiredError}
|
|
@@ -319,7 +319,7 @@ export class DraftInvoiceApi extends BaseAPI {
|
|
|
319
319
|
}
|
|
320
320
|
|
|
321
321
|
/**
|
|
322
|
-
*
|
|
322
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
323
323
|
* @param {DraftInvoiceApiDeleteAllDraftInvoicesRequest} requestParameters Request parameters.
|
|
324
324
|
* @param {*} [options] Override http request option.
|
|
325
325
|
* @throws {RequiredError}
|
|
@@ -330,7 +330,7 @@ export class DraftInvoiceApi extends BaseAPI {
|
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
/**
|
|
333
|
-
*
|
|
333
|
+
* undefined **Required Permissions** \"billing-management.invoices.delete\"
|
|
334
334
|
* @param {DraftInvoiceApiDeleteDraftInvoiceRequest} requestParameters Request parameters.
|
|
335
335
|
* @param {*} [options] Override http request option.
|
|
336
336
|
* @throws {RequiredError}
|
|
@@ -39,7 +39,7 @@ import { CreateEstimatedInvoiceResponseClass } from '../models';
|
|
|
39
39
|
export const EstimatedInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
40
|
return {
|
|
41
41
|
/**
|
|
42
|
-
* This will create a custom estimated invoice.
|
|
42
|
+
* This will create a custom estimated invoice. **Required Permissions** \"billing-management.invoices.create\"
|
|
43
43
|
* @summary Create the custom estimated invoice
|
|
44
44
|
* @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token
|
|
@@ -86,7 +86,7 @@ export const EstimatedInvoicesApiAxiosParamCreator = function (configuration?: C
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
89
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
90
90
|
* @summary Create the estimated invoice
|
|
91
91
|
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
92
92
|
* @param {string} [authorization] Bearer Token
|
|
@@ -133,7 +133,7 @@ export const EstimatedInvoicesApiAxiosParamCreator = function (configuration?: C
|
|
|
133
133
|
};
|
|
134
134
|
},
|
|
135
135
|
/**
|
|
136
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
136
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
137
137
|
* @summary Create the estimated invoice
|
|
138
138
|
* @param {CreateEstimatedInvoiceForIntervalRequestDto} createEstimatedInvoiceForIntervalRequestDto
|
|
139
139
|
* @param {string} [authorization] Bearer Token
|
|
@@ -190,7 +190,7 @@ export const EstimatedInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
190
190
|
const localVarAxiosParamCreator = EstimatedInvoicesApiAxiosParamCreator(configuration)
|
|
191
191
|
return {
|
|
192
192
|
/**
|
|
193
|
-
* This will create a custom estimated invoice.
|
|
193
|
+
* This will create a custom estimated invoice. **Required Permissions** \"billing-management.invoices.create\"
|
|
194
194
|
* @summary Create the custom estimated invoice
|
|
195
195
|
* @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
|
|
196
196
|
* @param {string} [authorization] Bearer Token
|
|
@@ -202,7 +202,7 @@ export const EstimatedInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
202
202
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
203
203
|
},
|
|
204
204
|
/**
|
|
205
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
205
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
206
206
|
* @summary Create the estimated invoice
|
|
207
207
|
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
208
208
|
* @param {string} [authorization] Bearer Token
|
|
@@ -214,7 +214,7 @@ export const EstimatedInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
214
214
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
215
215
|
},
|
|
216
216
|
/**
|
|
217
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
217
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
218
218
|
* @summary Create the estimated invoice
|
|
219
219
|
* @param {CreateEstimatedInvoiceForIntervalRequestDto} createEstimatedInvoiceForIntervalRequestDto
|
|
220
220
|
* @param {string} [authorization] Bearer Token
|
|
@@ -236,7 +236,7 @@ export const EstimatedInvoicesApiFactory = function (configuration?: Configurati
|
|
|
236
236
|
const localVarFp = EstimatedInvoicesApiFp(configuration)
|
|
237
237
|
return {
|
|
238
238
|
/**
|
|
239
|
-
* This will create a custom estimated invoice.
|
|
239
|
+
* This will create a custom estimated invoice. **Required Permissions** \"billing-management.invoices.create\"
|
|
240
240
|
* @summary Create the custom estimated invoice
|
|
241
241
|
* @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
|
|
242
242
|
* @param {string} [authorization] Bearer Token
|
|
@@ -247,7 +247,7 @@ export const EstimatedInvoicesApiFactory = function (configuration?: Configurati
|
|
|
247
247
|
return localVarFp.createCustomEstimatedInvoice(createCustomEstimatedInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
248
248
|
},
|
|
249
249
|
/**
|
|
250
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
250
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
251
251
|
* @summary Create the estimated invoice
|
|
252
252
|
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
253
253
|
* @param {string} [authorization] Bearer Token
|
|
@@ -258,7 +258,7 @@ export const EstimatedInvoicesApiFactory = function (configuration?: Configurati
|
|
|
258
258
|
return localVarFp.createEstimatedInvoice(createEstimatedInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
259
259
|
},
|
|
260
260
|
/**
|
|
261
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
261
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
262
262
|
* @summary Create the estimated invoice
|
|
263
263
|
* @param {CreateEstimatedInvoiceForIntervalRequestDto} createEstimatedInvoiceForIntervalRequestDto
|
|
264
264
|
* @param {string} [authorization] Bearer Token
|
|
@@ -342,7 +342,7 @@ export interface EstimatedInvoicesApiCreateEstimatedInvoiceFromIntervalRequest {
|
|
|
342
342
|
*/
|
|
343
343
|
export class EstimatedInvoicesApi extends BaseAPI {
|
|
344
344
|
/**
|
|
345
|
-
* This will create a custom estimated invoice.
|
|
345
|
+
* This will create a custom estimated invoice. **Required Permissions** \"billing-management.invoices.create\"
|
|
346
346
|
* @summary Create the custom estimated invoice
|
|
347
347
|
* @param {EstimatedInvoicesApiCreateCustomEstimatedInvoiceRequest} requestParameters Request parameters.
|
|
348
348
|
* @param {*} [options] Override http request option.
|
|
@@ -354,7 +354,7 @@ export class EstimatedInvoicesApi extends BaseAPI {
|
|
|
354
354
|
}
|
|
355
355
|
|
|
356
356
|
/**
|
|
357
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
357
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
358
358
|
* @summary Create the estimated invoice
|
|
359
359
|
* @param {EstimatedInvoicesApiCreateEstimatedInvoiceRequest} requestParameters Request parameters.
|
|
360
360
|
* @param {*} [options] Override http request option.
|
|
@@ -366,7 +366,7 @@ export class EstimatedInvoicesApi extends BaseAPI {
|
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
/**
|
|
369
|
-
* This creates an estimated invoice. It will not be saved in the database.
|
|
369
|
+
* This creates an estimated invoice. It will not be saved in the database. **Required Permissions** \"billing-management.invoices.create\"
|
|
370
370
|
* @summary Create the estimated invoice
|
|
371
371
|
* @param {EstimatedInvoicesApiCreateEstimatedInvoiceFromIntervalRequest} requestParameters Request parameters.
|
|
372
372
|
* @param {*} [options] Override http request option.
|
|
@@ -31,7 +31,7 @@ import { CreateInvoiceResponseClass } from '../models';
|
|
|
31
31
|
export const InitialInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
* 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.
|
|
34
|
+
* 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. **Required Permissions** \"billing-management.invoices.create\"
|
|
35
35
|
* @summary Create the initial invoice
|
|
36
36
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
37
37
|
* @param {string} [authorization] Bearer Token
|
|
@@ -93,7 +93,7 @@ export const InitialInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
93
93
|
const localVarAxiosParamCreator = InitialInvoicesApiAxiosParamCreator(configuration)
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* 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.
|
|
96
|
+
* 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. **Required Permissions** \"billing-management.invoices.create\"
|
|
97
97
|
* @summary Create the initial invoice
|
|
98
98
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -116,7 +116,7 @@ export const InitialInvoicesApiFactory = function (configuration?: Configuration
|
|
|
116
116
|
const localVarFp = InitialInvoicesApiFp(configuration)
|
|
117
117
|
return {
|
|
118
118
|
/**
|
|
119
|
-
* 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.
|
|
119
|
+
* 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. **Required Permissions** \"billing-management.invoices.create\"
|
|
120
120
|
* @summary Create the initial invoice
|
|
121
121
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
122
122
|
* @param {string} [authorization] Bearer Token
|
|
@@ -166,7 +166,7 @@ export interface InitialInvoicesApiCreateInitialInvoiceRequest {
|
|
|
166
166
|
*/
|
|
167
167
|
export class InitialInvoicesApi extends BaseAPI {
|
|
168
168
|
/**
|
|
169
|
-
* 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.
|
|
169
|
+
* 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. **Required Permissions** \"billing-management.invoices.create\"
|
|
170
170
|
* @summary Create the initial invoice
|
|
171
171
|
* @param {InitialInvoicesApiCreateInitialInvoiceRequest} requestParameters Request parameters.
|
|
172
172
|
* @param {*} [options] Override http request option.
|
package/api/invoices-api.ts
CHANGED
|
@@ -37,7 +37,7 @@ import { ListPoliciesBillingsResponseClass } from '../models';
|
|
|
37
37
|
export const InvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
38
38
|
return {
|
|
39
39
|
/**
|
|
40
|
-
* This will create invoice for a policy and save it in the DB.
|
|
40
|
+
* This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
|
|
41
41
|
* @summary Create the invoice
|
|
42
42
|
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
43
43
|
* @param {string} [authorization] Bearer Token
|
|
@@ -89,7 +89,7 @@ export const InvoicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
89
89
|
};
|
|
90
90
|
},
|
|
91
91
|
/**
|
|
92
|
-
* Gets an invoice.
|
|
92
|
+
* Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
|
|
93
93
|
* @summary Retrieve the invoice
|
|
94
94
|
* @param {string} code
|
|
95
95
|
* @param {string} expand
|
|
@@ -141,7 +141,7 @@ export const InvoicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
141
141
|
};
|
|
142
142
|
},
|
|
143
143
|
/**
|
|
144
|
-
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
144
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
145
145
|
* @summary List invoices
|
|
146
146
|
* @param {string} [authorization] Bearer Token
|
|
147
147
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -217,7 +217,7 @@ export const InvoicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
217
217
|
};
|
|
218
218
|
},
|
|
219
219
|
/**
|
|
220
|
-
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
220
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
221
221
|
* @summary List policies billing dates
|
|
222
222
|
* @param {string} [authorization] Bearer Token
|
|
223
223
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -304,7 +304,7 @@ export const InvoicesApiFp = function(configuration?: Configuration) {
|
|
|
304
304
|
const localVarAxiosParamCreator = InvoicesApiAxiosParamCreator(configuration)
|
|
305
305
|
return {
|
|
306
306
|
/**
|
|
307
|
-
* This will create invoice for a policy and save it in the DB.
|
|
307
|
+
* This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
|
|
308
308
|
* @summary Create the invoice
|
|
309
309
|
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
310
310
|
* @param {string} [authorization] Bearer Token
|
|
@@ -317,7 +317,7 @@ export const InvoicesApiFp = function(configuration?: Configuration) {
|
|
|
317
317
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
318
318
|
},
|
|
319
319
|
/**
|
|
320
|
-
* Gets an invoice.
|
|
320
|
+
* Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
|
|
321
321
|
* @summary Retrieve the invoice
|
|
322
322
|
* @param {string} code
|
|
323
323
|
* @param {string} expand
|
|
@@ -330,7 +330,7 @@ export const InvoicesApiFp = function(configuration?: Configuration) {
|
|
|
330
330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
331
331
|
},
|
|
332
332
|
/**
|
|
333
|
-
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
333
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
334
334
|
* @summary List invoices
|
|
335
335
|
* @param {string} [authorization] Bearer Token
|
|
336
336
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -348,7 +348,7 @@ export const InvoicesApiFp = function(configuration?: Configuration) {
|
|
|
348
348
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
349
349
|
},
|
|
350
350
|
/**
|
|
351
|
-
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
351
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
352
352
|
* @summary List policies billing dates
|
|
353
353
|
* @param {string} [authorization] Bearer Token
|
|
354
354
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -377,7 +377,7 @@ export const InvoicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
377
377
|
const localVarFp = InvoicesApiFp(configuration)
|
|
378
378
|
return {
|
|
379
379
|
/**
|
|
380
|
-
* This will create invoice for a policy and save it in the DB.
|
|
380
|
+
* This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
|
|
381
381
|
* @summary Create the invoice
|
|
382
382
|
* @param {CreateInvoiceRequestDto} createInvoiceRequestDto
|
|
383
383
|
* @param {string} [authorization] Bearer Token
|
|
@@ -389,7 +389,7 @@ export const InvoicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
389
389
|
return localVarFp.createInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then((request) => request(axios, basePath));
|
|
390
390
|
},
|
|
391
391
|
/**
|
|
392
|
-
* Gets an invoice.
|
|
392
|
+
* Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
|
|
393
393
|
* @summary Retrieve the invoice
|
|
394
394
|
* @param {string} code
|
|
395
395
|
* @param {string} expand
|
|
@@ -401,7 +401,7 @@ export const InvoicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
401
401
|
return localVarFp.getInvoice(code, expand, authorization, options).then((request) => request(axios, basePath));
|
|
402
402
|
},
|
|
403
403
|
/**
|
|
404
|
-
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
404
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
405
405
|
* @summary List invoices
|
|
406
406
|
* @param {string} [authorization] Bearer Token
|
|
407
407
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -418,7 +418,7 @@ export const InvoicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
418
418
|
return localVarFp.listInvoices(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
419
419
|
},
|
|
420
420
|
/**
|
|
421
|
-
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
421
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
422
422
|
* @summary List policies billing dates
|
|
423
423
|
* @param {string} [authorization] Bearer Token
|
|
424
424
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -628,7 +628,7 @@ export interface InvoicesApiListPoliciesBillingDatesRequest {
|
|
|
628
628
|
*/
|
|
629
629
|
export class InvoicesApi extends BaseAPI {
|
|
630
630
|
/**
|
|
631
|
-
* This will create invoice for a policy and save it in the DB.
|
|
631
|
+
* This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
|
|
632
632
|
* @summary Create the invoice
|
|
633
633
|
* @param {InvoicesApiCreateInvoiceRequest} requestParameters Request parameters.
|
|
634
634
|
* @param {*} [options] Override http request option.
|
|
@@ -640,7 +640,7 @@ export class InvoicesApi extends BaseAPI {
|
|
|
640
640
|
}
|
|
641
641
|
|
|
642
642
|
/**
|
|
643
|
-
* Gets an invoice.
|
|
643
|
+
* Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
|
|
644
644
|
* @summary Retrieve the invoice
|
|
645
645
|
* @param {InvoicesApiGetInvoiceRequest} requestParameters Request parameters.
|
|
646
646
|
* @param {*} [options] Override http request option.
|
|
@@ -652,7 +652,7 @@ export class InvoicesApi extends BaseAPI {
|
|
|
652
652
|
}
|
|
653
653
|
|
|
654
654
|
/**
|
|
655
|
-
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
655
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
656
656
|
* @summary List invoices
|
|
657
657
|
* @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
|
|
658
658
|
* @param {*} [options] Override http request option.
|
|
@@ -664,7 +664,7 @@ export class InvoicesApi extends BaseAPI {
|
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
/**
|
|
667
|
-
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
667
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
668
668
|
* @summary List policies billing dates
|
|
669
669
|
* @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
|
|
670
670
|
* @param {*} [options] Override http request option.
|
|
@@ -35,7 +35,7 @@ import { UpdatePolicyBillingResponseClass } from '../models';
|
|
|
35
35
|
export const PolicyBillingApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
36
|
return {
|
|
37
37
|
/**
|
|
38
|
-
* Create a new policy billing
|
|
38
|
+
* Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
|
|
39
39
|
* @summary Create the Policy Billing
|
|
40
40
|
* @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
|
|
41
41
|
* @param {string} [authorization] Bearer Token
|
|
@@ -82,7 +82,7 @@ export const PolicyBillingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
82
82
|
};
|
|
83
83
|
},
|
|
84
84
|
/**
|
|
85
|
-
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
85
|
+
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
86
86
|
* @summary List policies billings
|
|
87
87
|
* @param {string} [authorization] Bearer Token
|
|
88
88
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -158,7 +158,7 @@ export const PolicyBillingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
158
158
|
};
|
|
159
159
|
},
|
|
160
160
|
/**
|
|
161
|
-
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
161
|
+
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"billing-management.invoices.update\"
|
|
162
162
|
* @summary Update the request message
|
|
163
163
|
* @param {string} code Unique identifier for the object.
|
|
164
164
|
* @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
|
|
@@ -219,7 +219,7 @@ export const PolicyBillingApiFp = function(configuration?: Configuration) {
|
|
|
219
219
|
const localVarAxiosParamCreator = PolicyBillingApiAxiosParamCreator(configuration)
|
|
220
220
|
return {
|
|
221
221
|
/**
|
|
222
|
-
* Create a new policy billing
|
|
222
|
+
* Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
|
|
223
223
|
* @summary Create the Policy Billing
|
|
224
224
|
* @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
|
|
225
225
|
* @param {string} [authorization] Bearer Token
|
|
@@ -231,7 +231,7 @@ export const PolicyBillingApiFp = function(configuration?: Configuration) {
|
|
|
231
231
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
232
232
|
},
|
|
233
233
|
/**
|
|
234
|
-
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
234
|
+
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
235
235
|
* @summary List policies billings
|
|
236
236
|
* @param {string} [authorization] Bearer Token
|
|
237
237
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -249,7 +249,7 @@ export const PolicyBillingApiFp = function(configuration?: Configuration) {
|
|
|
249
249
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
250
250
|
},
|
|
251
251
|
/**
|
|
252
|
-
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
252
|
+
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"billing-management.invoices.update\"
|
|
253
253
|
* @summary Update the request message
|
|
254
254
|
* @param {string} code Unique identifier for the object.
|
|
255
255
|
* @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
|
|
@@ -272,7 +272,7 @@ export const PolicyBillingApiFactory = function (configuration?: Configuration,
|
|
|
272
272
|
const localVarFp = PolicyBillingApiFp(configuration)
|
|
273
273
|
return {
|
|
274
274
|
/**
|
|
275
|
-
* Create a new policy billing
|
|
275
|
+
* Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
|
|
276
276
|
* @summary Create the Policy Billing
|
|
277
277
|
* @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
|
|
278
278
|
* @param {string} [authorization] Bearer Token
|
|
@@ -283,7 +283,7 @@ export const PolicyBillingApiFactory = function (configuration?: Configuration,
|
|
|
283
283
|
return localVarFp.createPolicyBilling(createPolicyBillingRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
284
284
|
},
|
|
285
285
|
/**
|
|
286
|
-
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
286
|
+
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
287
287
|
* @summary List policies billings
|
|
288
288
|
* @param {string} [authorization] Bearer Token
|
|
289
289
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -300,7 +300,7 @@ export const PolicyBillingApiFactory = function (configuration?: Configuration,
|
|
|
300
300
|
return localVarFp.listPoliciesBillings(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
301
301
|
},
|
|
302
302
|
/**
|
|
303
|
-
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
303
|
+
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"billing-management.invoices.update\"
|
|
304
304
|
* @summary Update the request message
|
|
305
305
|
* @param {string} code Unique identifier for the object.
|
|
306
306
|
* @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
|
|
@@ -434,7 +434,7 @@ export interface PolicyBillingApiUpdatePolicyBillingRequest {
|
|
|
434
434
|
*/
|
|
435
435
|
export class PolicyBillingApi extends BaseAPI {
|
|
436
436
|
/**
|
|
437
|
-
* Create a new policy billing
|
|
437
|
+
* Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
|
|
438
438
|
* @summary Create the Policy Billing
|
|
439
439
|
* @param {PolicyBillingApiCreatePolicyBillingRequest} requestParameters Request parameters.
|
|
440
440
|
* @param {*} [options] Override http request option.
|
|
@@ -446,7 +446,7 @@ export class PolicyBillingApi extends BaseAPI {
|
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
/**
|
|
449
|
-
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
449
|
+
* Returns a list of policies billings you have previously created. The policies billings are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"billing-management.invoices.view\"
|
|
450
450
|
* @summary List policies billings
|
|
451
451
|
* @param {PolicyBillingApiListPoliciesBillingsRequest} requestParameters Request parameters.
|
|
452
452
|
* @param {*} [options] Override http request option.
|
|
@@ -458,7 +458,7 @@ export class PolicyBillingApi extends BaseAPI {
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
461
|
+
* Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"billing-management.invoices.update\"
|
|
462
462
|
* @summary Update the request message
|
|
463
463
|
* @param {PolicyBillingApiUpdatePolicyBillingRequest} requestParameters Request parameters.
|
|
464
464
|
* @param {*} [options] Override http request option.
|
|
@@ -31,7 +31,7 @@ import { CreateInvoiceResponseClass } from '../models';
|
|
|
31
31
|
export const RecurringInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
34
|
+
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy. **Required Permissions** \"billing-management.invoices.create\"
|
|
35
35
|
* @summary Create the recurring invoice
|
|
36
36
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
37
37
|
* @param {string} [authorization] Bearer Token
|
|
@@ -93,7 +93,7 @@ export const RecurringInvoicesApiFp = function(configuration?: Configuration) {
|
|
|
93
93
|
const localVarAxiosParamCreator = RecurringInvoicesApiAxiosParamCreator(configuration)
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
96
|
+
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy. **Required Permissions** \"billing-management.invoices.create\"
|
|
97
97
|
* @summary Create the recurring invoice
|
|
98
98
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -116,7 +116,7 @@ export const RecurringInvoicesApiFactory = function (configuration?: Configurati
|
|
|
116
116
|
const localVarFp = RecurringInvoicesApiFp(configuration)
|
|
117
117
|
return {
|
|
118
118
|
/**
|
|
119
|
-
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
119
|
+
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy. **Required Permissions** \"billing-management.invoices.create\"
|
|
120
120
|
* @summary Create the recurring invoice
|
|
121
121
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
122
122
|
* @param {string} [authorization] Bearer Token
|
|
@@ -166,7 +166,7 @@ export interface RecurringInvoicesApiCreateRecurringInvoiceRequest {
|
|
|
166
166
|
*/
|
|
167
167
|
export class RecurringInvoicesApi extends BaseAPI {
|
|
168
168
|
/**
|
|
169
|
-
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
|
|
169
|
+
* This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy. **Required Permissions** \"billing-management.invoices.create\"
|
|
170
170
|
* @summary Create the recurring invoice
|
|
171
171
|
* @param {RecurringInvoicesApiCreateRecurringInvoiceRequest} requestParameters Request parameters.
|
|
172
172
|
* @param {*} [options] Override http request option.
|
|
@@ -20,7 +20,7 @@ import { CreateInvoiceForPolicyRequestDto } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const CorrectionInvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
23
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
24
24
|
* @summary Create the correction invoice
|
|
25
25
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
26
26
|
* @param {string} [authorization] Bearer Token
|
|
@@ -36,7 +36,7 @@ export declare const CorrectionInvoicesApiAxiosParamCreator: (configuration?: Co
|
|
|
36
36
|
*/
|
|
37
37
|
export declare const CorrectionInvoicesApiFp: (configuration?: Configuration) => {
|
|
38
38
|
/**
|
|
39
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
39
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
40
40
|
* @summary Create the correction invoice
|
|
41
41
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
42
42
|
* @param {string} [authorization] Bearer Token
|
|
@@ -52,7 +52,7 @@ export declare const CorrectionInvoicesApiFp: (configuration?: Configuration) =>
|
|
|
52
52
|
*/
|
|
53
53
|
export declare const CorrectionInvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54
54
|
/**
|
|
55
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
55
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
56
56
|
* @summary Create the correction invoice
|
|
57
57
|
* @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
|
|
58
58
|
* @param {string} [authorization] Bearer Token
|
|
@@ -95,7 +95,7 @@ export interface CorrectionInvoicesApiCreateCorrectionInvoiceRequest {
|
|
|
95
95
|
*/
|
|
96
96
|
export declare class CorrectionInvoicesApi extends BaseAPI {
|
|
97
97
|
/**
|
|
98
|
-
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference.
|
|
98
|
+
* This will create a correction invoice. That will be generated on policy update which affects the price, These invoices usually are positive or negative value. The main purpose of this invoices is to recalculate the customer invoices and be created if any price difference. **Required Permissions** \"billing-management.invoices.create\"
|
|
99
99
|
* @summary Create the correction invoice
|
|
100
100
|
* @param {CorrectionInvoicesApiCreateCorrectionInvoiceRequest} requestParameters Request parameters.
|
|
101
101
|
* @param {*} [options] Override http request option.
|