@emilgroup/billing-sdk-node 1.41.1-beta.2 → 1.42.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.
@@ -23,7 +23,7 @@ import { ListPoliciesBillingsResponseClass } from '../models';
23
23
  */
24
24
  export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
25
25
  /**
26
- * This will create invoice for a policy and save it in the DB.
26
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
27
27
  * @summary Create the invoice
28
28
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
29
29
  * @param {string} [authorization] Bearer Token
@@ -33,7 +33,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
33
33
  */
34
34
  createInvoice: (createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
35
35
  /**
36
- * Gets an invoice.
36
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
37
37
  * @summary Retrieve the invoice
38
38
  * @param {string} code
39
39
  * @param {string} expand
@@ -43,7 +43,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
43
43
  */
44
44
  getInvoice: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
45
45
  /**
46
- * 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.
46
+ * 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\"
47
47
  * @summary List invoices
48
48
  * @param {string} [authorization] Bearer Token
49
49
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -58,7 +58,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
58
58
  */
59
59
  listInvoices: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
60
60
  /**
61
- * 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.
61
+ * 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\"
62
62
  * @summary List policies billing dates
63
63
  * @param {string} [authorization] Bearer Token
64
64
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -80,7 +80,7 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
80
80
  */
81
81
  export declare const InvoicesApiFp: (configuration?: Configuration) => {
82
82
  /**
83
- * This will create invoice for a policy and save it in the DB.
83
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
84
84
  * @summary Create the invoice
85
85
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
86
86
  * @param {string} [authorization] Bearer Token
@@ -90,7 +90,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
90
90
  */
91
91
  createInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateInvoiceResponseClass>>;
92
92
  /**
93
- * Gets an invoice.
93
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
94
94
  * @summary Retrieve the invoice
95
95
  * @param {string} code
96
96
  * @param {string} expand
@@ -100,7 +100,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
100
100
  */
101
101
  getInvoice(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetInvoiceResponseClass>>;
102
102
  /**
103
- * 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.
103
+ * 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\"
104
104
  * @summary List invoices
105
105
  * @param {string} [authorization] Bearer Token
106
106
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -115,7 +115,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
115
115
  */
116
116
  listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListInvoicesResponseClass>>;
117
117
  /**
118
- * 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.
118
+ * 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\"
119
119
  * @summary List policies billing dates
120
120
  * @param {string} [authorization] Bearer Token
121
121
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -137,7 +137,7 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
137
137
  */
138
138
  export declare const InvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
139
139
  /**
140
- * This will create invoice for a policy and save it in the DB.
140
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
141
141
  * @summary Create the invoice
142
142
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
143
143
  * @param {string} [authorization] Bearer Token
@@ -147,7 +147,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
147
147
  */
148
148
  createInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, idempotencyKey?: string, options?: any): AxiosPromise<CreateInvoiceResponseClass>;
149
149
  /**
150
- * Gets an invoice.
150
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
151
151
  * @summary Retrieve the invoice
152
152
  * @param {string} code
153
153
  * @param {string} expand
@@ -157,7 +157,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
157
157
  */
158
158
  getInvoice(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetInvoiceResponseClass>;
159
159
  /**
160
- * 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.
160
+ * 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\"
161
161
  * @summary List invoices
162
162
  * @param {string} [authorization] Bearer Token
163
163
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -172,7 +172,7 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
172
172
  */
173
173
  listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListInvoicesResponseClass>;
174
174
  /**
175
- * 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.
175
+ * 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\"
176
176
  * @summary List policies billing dates
177
177
  * @param {string} [authorization] Bearer Token
178
178
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -356,7 +356,7 @@ export interface InvoicesApiListPoliciesBillingDatesRequest {
356
356
  */
357
357
  export declare class InvoicesApi extends BaseAPI {
358
358
  /**
359
- * This will create invoice for a policy and save it in the DB.
359
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
360
360
  * @summary Create the invoice
361
361
  * @param {InvoicesApiCreateInvoiceRequest} requestParameters Request parameters.
362
362
  * @param {*} [options] Override http request option.
@@ -365,7 +365,7 @@ export declare class InvoicesApi extends BaseAPI {
365
365
  */
366
366
  createInvoice(requestParameters: InvoicesApiCreateInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateInvoiceResponseClass, any>>;
367
367
  /**
368
- * Gets an invoice.
368
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
369
369
  * @summary Retrieve the invoice
370
370
  * @param {InvoicesApiGetInvoiceRequest} requestParameters Request parameters.
371
371
  * @param {*} [options] Override http request option.
@@ -374,7 +374,7 @@ export declare class InvoicesApi extends BaseAPI {
374
374
  */
375
375
  getInvoice(requestParameters: InvoicesApiGetInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetInvoiceResponseClass, any>>;
376
376
  /**
377
- * 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.
377
+ * 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\"
378
378
  * @summary List invoices
379
379
  * @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
380
380
  * @param {*} [options] Override http request option.
@@ -383,7 +383,7 @@ export declare class InvoicesApi extends BaseAPI {
383
383
  */
384
384
  listInvoices(requestParameters?: InvoicesApiListInvoicesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListInvoicesResponseClass, any>>;
385
385
  /**
386
- * 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.
386
+ * 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\"
387
387
  * @summary List policies billing dates
388
388
  * @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
389
389
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This will create invoice for a policy and save it in the DB.
100
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
101
101
  * @summary Create the invoice
102
102
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
103
103
  * @param {string} [authorization] Bearer Token
@@ -150,7 +150,7 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
150
150
  });
151
151
  },
152
152
  /**
153
- * Gets an invoice.
153
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
154
154
  * @summary Retrieve the invoice
155
155
  * @param {string} code
156
156
  * @param {string} expand
@@ -204,7 +204,7 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
204
204
  });
205
205
  },
206
206
  /**
207
- * 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.
207
+ * 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\"
208
208
  * @summary List invoices
209
209
  * @param {string} [authorization] Bearer Token
210
210
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -276,7 +276,7 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
276
276
  });
277
277
  },
278
278
  /**
279
- * 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.
279
+ * 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\"
280
280
  * @summary List policies billing dates
281
281
  * @param {string} [authorization] Bearer Token
282
282
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -359,7 +359,7 @@ var InvoicesApiFp = function (configuration) {
359
359
  var localVarAxiosParamCreator = (0, exports.InvoicesApiAxiosParamCreator)(configuration);
360
360
  return {
361
361
  /**
362
- * This will create invoice for a policy and save it in the DB.
362
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
363
363
  * @summary Create the invoice
364
364
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
365
365
  * @param {string} [authorization] Bearer Token
@@ -381,7 +381,7 @@ var InvoicesApiFp = function (configuration) {
381
381
  });
382
382
  },
383
383
  /**
384
- * Gets an invoice.
384
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
385
385
  * @summary Retrieve the invoice
386
386
  * @param {string} code
387
387
  * @param {string} expand
@@ -403,7 +403,7 @@ var InvoicesApiFp = function (configuration) {
403
403
  });
404
404
  },
405
405
  /**
406
- * 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.
406
+ * 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\"
407
407
  * @summary List invoices
408
408
  * @param {string} [authorization] Bearer Token
409
409
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -430,7 +430,7 @@ var InvoicesApiFp = function (configuration) {
430
430
  });
431
431
  },
432
432
  /**
433
- * 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.
433
+ * 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\"
434
434
  * @summary List policies billing dates
435
435
  * @param {string} [authorization] Bearer Token
436
436
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -468,7 +468,7 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
468
468
  var localVarFp = (0, exports.InvoicesApiFp)(configuration);
469
469
  return {
470
470
  /**
471
- * This will create invoice for a policy and save it in the DB.
471
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
472
472
  * @summary Create the invoice
473
473
  * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
474
474
  * @param {string} [authorization] Bearer Token
@@ -480,7 +480,7 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
480
480
  return localVarFp.createInvoice(createInvoiceRequestDto, authorization, idempotencyKey, options).then(function (request) { return request(axios, basePath); });
481
481
  },
482
482
  /**
483
- * Gets an invoice.
483
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
484
484
  * @summary Retrieve the invoice
485
485
  * @param {string} code
486
486
  * @param {string} expand
@@ -492,7 +492,7 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
492
492
  return localVarFp.getInvoice(code, expand, authorization, options).then(function (request) { return request(axios, basePath); });
493
493
  },
494
494
  /**
495
- * 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.
495
+ * 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\"
496
496
  * @summary List invoices
497
497
  * @param {string} [authorization] Bearer Token
498
498
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -509,7 +509,7 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
509
509
  return localVarFp.listInvoices(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
510
510
  },
511
511
  /**
512
- * 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.
512
+ * 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\"
513
513
  * @summary List policies billing dates
514
514
  * @param {string} [authorization] Bearer Token
515
515
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -541,7 +541,7 @@ var InvoicesApi = /** @class */ (function (_super) {
541
541
  return _super !== null && _super.apply(this, arguments) || this;
542
542
  }
543
543
  /**
544
- * This will create invoice for a policy and save it in the DB.
544
+ * This will create invoice for a policy and save it in the DB. **Required Permissions** \"billing-management.invoices.create\"
545
545
  * @summary Create the invoice
546
546
  * @param {InvoicesApiCreateInvoiceRequest} requestParameters Request parameters.
547
547
  * @param {*} [options] Override http request option.
@@ -553,7 +553,7 @@ var InvoicesApi = /** @class */ (function (_super) {
553
553
  return (0, exports.InvoicesApiFp)(this.configuration).createInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, requestParameters.idempotencyKey, options).then(function (request) { return request(_this.axios, _this.basePath); });
554
554
  };
555
555
  /**
556
- * Gets an invoice.
556
+ * Gets an invoice. **Required Permissions** \"billing-management.invoices.view\"
557
557
  * @summary Retrieve the invoice
558
558
  * @param {InvoicesApiGetInvoiceRequest} requestParameters Request parameters.
559
559
  * @param {*} [options] Override http request option.
@@ -565,7 +565,7 @@ var InvoicesApi = /** @class */ (function (_super) {
565
565
  return (0, exports.InvoicesApiFp)(this.configuration).getInvoice(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
566
566
  };
567
567
  /**
568
- * 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.
568
+ * 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\"
569
569
  * @summary List invoices
570
570
  * @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
571
571
  * @param {*} [options] Override http request option.
@@ -578,7 +578,7 @@ var InvoicesApi = /** @class */ (function (_super) {
578
578
  return (0, exports.InvoicesApiFp)(this.configuration).listInvoices(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
579
579
  };
580
580
  /**
581
- * 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.
581
+ * 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\"
582
582
  * @summary List policies billing dates
583
583
  * @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
584
584
  * @param {*} [options] Override http request option.
@@ -22,7 +22,7 @@ import { UpdatePolicyBillingResponseClass } from '../models';
22
22
  */
23
23
  export declare const PolicyBillingApiAxiosParamCreator: (configuration?: Configuration) => {
24
24
  /**
25
- * Create a new policy billing
25
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
26
26
  * @summary Create the Policy Billing
27
27
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
28
28
  * @param {string} [authorization] Bearer Token
@@ -31,7 +31,7 @@ export declare const PolicyBillingApiAxiosParamCreator: (configuration?: Configu
31
31
  */
32
32
  createPolicyBilling: (createPolicyBillingRequestDto: CreatePolicyBillingRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
33
  /**
34
- * 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.
34
+ * 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\"
35
35
  * @summary List policies billings
36
36
  * @param {string} [authorization] Bearer Token
37
37
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -46,7 +46,7 @@ export declare const PolicyBillingApiAxiosParamCreator: (configuration?: Configu
46
46
  */
47
47
  listPoliciesBillings: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
48
48
  /**
49
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
49
+ * 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\"
50
50
  * @summary Update the request message
51
51
  * @param {string} code Unique identifier for the object.
52
52
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -62,7 +62,7 @@ export declare const PolicyBillingApiAxiosParamCreator: (configuration?: Configu
62
62
  */
63
63
  export declare const PolicyBillingApiFp: (configuration?: Configuration) => {
64
64
  /**
65
- * Create a new policy billing
65
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
66
66
  * @summary Create the Policy Billing
67
67
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
68
68
  * @param {string} [authorization] Bearer Token
@@ -71,7 +71,7 @@ export declare const PolicyBillingApiFp: (configuration?: Configuration) => {
71
71
  */
72
72
  createPolicyBilling(createPolicyBillingRequestDto: CreatePolicyBillingRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePolicyBillingResponseClass>>;
73
73
  /**
74
- * 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.
74
+ * 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\"
75
75
  * @summary List policies billings
76
76
  * @param {string} [authorization] Bearer Token
77
77
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -86,7 +86,7 @@ export declare const PolicyBillingApiFp: (configuration?: Configuration) => {
86
86
  */
87
87
  listPoliciesBillings(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
88
88
  /**
89
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
89
+ * 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\"
90
90
  * @summary Update the request message
91
91
  * @param {string} code Unique identifier for the object.
92
92
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -102,7 +102,7 @@ export declare const PolicyBillingApiFp: (configuration?: Configuration) => {
102
102
  */
103
103
  export declare const PolicyBillingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
104
104
  /**
105
- * Create a new policy billing
105
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
106
106
  * @summary Create the Policy Billing
107
107
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
108
108
  * @param {string} [authorization] Bearer Token
@@ -111,7 +111,7 @@ export declare const PolicyBillingApiFactory: (configuration?: Configuration, ba
111
111
  */
112
112
  createPolicyBilling(createPolicyBillingRequestDto: CreatePolicyBillingRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePolicyBillingResponseClass>;
113
113
  /**
114
- * 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.
114
+ * 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\"
115
115
  * @summary List policies billings
116
116
  * @param {string} [authorization] Bearer Token
117
117
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -126,7 +126,7 @@ export declare const PolicyBillingApiFactory: (configuration?: Configuration, ba
126
126
  */
127
127
  listPoliciesBillings(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<void>;
128
128
  /**
129
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
129
+ * 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\"
130
130
  * @summary Update the request message
131
131
  * @param {string} code Unique identifier for the object.
132
132
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -243,7 +243,7 @@ export interface PolicyBillingApiUpdatePolicyBillingRequest {
243
243
  */
244
244
  export declare class PolicyBillingApi extends BaseAPI {
245
245
  /**
246
- * Create a new policy billing
246
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
247
247
  * @summary Create the Policy Billing
248
248
  * @param {PolicyBillingApiCreatePolicyBillingRequest} requestParameters Request parameters.
249
249
  * @param {*} [options] Override http request option.
@@ -252,7 +252,7 @@ export declare class PolicyBillingApi extends BaseAPI {
252
252
  */
253
253
  createPolicyBilling(requestParameters: PolicyBillingApiCreatePolicyBillingRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePolicyBillingResponseClass, any>>;
254
254
  /**
255
- * 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.
255
+ * 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\"
256
256
  * @summary List policies billings
257
257
  * @param {PolicyBillingApiListPoliciesBillingsRequest} requestParameters Request parameters.
258
258
  * @param {*} [options] Override http request option.
@@ -261,7 +261,7 @@ export declare class PolicyBillingApi extends BaseAPI {
261
261
  */
262
262
  listPoliciesBillings(requestParameters?: PolicyBillingApiListPoliciesBillingsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
263
263
  /**
264
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
264
+ * 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\"
265
265
  * @summary Update the request message
266
266
  * @param {PolicyBillingApiUpdatePolicyBillingRequest} requestParameters Request parameters.
267
267
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var PolicyBillingApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * Create a new policy billing
100
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
101
101
  * @summary Create the Policy Billing
102
102
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
103
103
  * @param {string} [authorization] Bearer Token
@@ -146,7 +146,7 @@ var PolicyBillingApiAxiosParamCreator = function (configuration) {
146
146
  });
147
147
  },
148
148
  /**
149
- * 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.
149
+ * 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\"
150
150
  * @summary List policies billings
151
151
  * @param {string} [authorization] Bearer Token
152
152
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -218,7 +218,7 @@ var PolicyBillingApiAxiosParamCreator = function (configuration) {
218
218
  });
219
219
  },
220
220
  /**
221
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
221
+ * 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\"
222
222
  * @summary Update the request message
223
223
  * @param {string} code Unique identifier for the object.
224
224
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -281,7 +281,7 @@ var PolicyBillingApiFp = function (configuration) {
281
281
  var localVarAxiosParamCreator = (0, exports.PolicyBillingApiAxiosParamCreator)(configuration);
282
282
  return {
283
283
  /**
284
- * Create a new policy billing
284
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
285
285
  * @summary Create the Policy Billing
286
286
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
287
287
  * @param {string} [authorization] Bearer Token
@@ -302,7 +302,7 @@ var PolicyBillingApiFp = function (configuration) {
302
302
  });
303
303
  },
304
304
  /**
305
- * 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.
305
+ * 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\"
306
306
  * @summary List policies billings
307
307
  * @param {string} [authorization] Bearer Token
308
308
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -329,7 +329,7 @@ var PolicyBillingApiFp = function (configuration) {
329
329
  });
330
330
  },
331
331
  /**
332
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
332
+ * 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\"
333
333
  * @summary Update the request message
334
334
  * @param {string} code Unique identifier for the object.
335
335
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -361,7 +361,7 @@ var PolicyBillingApiFactory = function (configuration, basePath, axios) {
361
361
  var localVarFp = (0, exports.PolicyBillingApiFp)(configuration);
362
362
  return {
363
363
  /**
364
- * Create a new policy billing
364
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
365
365
  * @summary Create the Policy Billing
366
366
  * @param {CreatePolicyBillingRequestDto} createPolicyBillingRequestDto
367
367
  * @param {string} [authorization] Bearer Token
@@ -372,7 +372,7 @@ var PolicyBillingApiFactory = function (configuration, basePath, axios) {
372
372
  return localVarFp.createPolicyBilling(createPolicyBillingRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
373
373
  },
374
374
  /**
375
- * 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.
375
+ * 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\"
376
376
  * @summary List policies billings
377
377
  * @param {string} [authorization] Bearer Token
378
378
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -389,7 +389,7 @@ var PolicyBillingApiFactory = function (configuration, basePath, axios) {
389
389
  return localVarFp.listPoliciesBillings(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
390
390
  },
391
391
  /**
392
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
392
+ * 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\"
393
393
  * @summary Update the request message
394
394
  * @param {string} code Unique identifier for the object.
395
395
  * @param {UpdatePolicyBillingRequestDto} updatePolicyBillingRequestDto
@@ -415,7 +415,7 @@ var PolicyBillingApi = /** @class */ (function (_super) {
415
415
  return _super !== null && _super.apply(this, arguments) || this;
416
416
  }
417
417
  /**
418
- * Create a new policy billing
418
+ * Create a new policy billing **Required Permissions** \"billing-management.invoices.create\"
419
419
  * @summary Create the Policy Billing
420
420
  * @param {PolicyBillingApiCreatePolicyBillingRequest} requestParameters Request parameters.
421
421
  * @param {*} [options] Override http request option.
@@ -427,7 +427,7 @@ var PolicyBillingApi = /** @class */ (function (_super) {
427
427
  return (0, exports.PolicyBillingApiFp)(this.configuration).createPolicyBilling(requestParameters.createPolicyBillingRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
428
428
  };
429
429
  /**
430
- * 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.
430
+ * 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\"
431
431
  * @summary List policies billings
432
432
  * @param {PolicyBillingApiListPoliciesBillingsRequest} requestParameters Request parameters.
433
433
  * @param {*} [options] Override http request option.
@@ -440,7 +440,7 @@ var PolicyBillingApi = /** @class */ (function (_super) {
440
440
  return (0, exports.PolicyBillingApiFp)(this.configuration).listPoliciesBillings(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
441
441
  };
442
442
  /**
443
- * Updates the specified request message by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
443
+ * 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\"
444
444
  * @summary Update the request message
445
445
  * @param {PolicyBillingApiUpdatePolicyBillingRequest} requestParameters Request parameters.
446
446
  * @param {*} [options] Override http request option.
@@ -20,7 +20,7 @@ import { CreateInvoiceResponseClass } from '../models';
20
20
  */
21
21
  export declare const RecurringInvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
22
22
  /**
23
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
23
+ * 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\"
24
24
  * @summary Create the recurring invoice
25
25
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
26
26
  * @param {string} [authorization] Bearer Token
@@ -36,7 +36,7 @@ export declare const RecurringInvoicesApiAxiosParamCreator: (configuration?: Con
36
36
  */
37
37
  export declare const RecurringInvoicesApiFp: (configuration?: Configuration) => {
38
38
  /**
39
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
39
+ * 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\"
40
40
  * @summary Create the recurring invoice
41
41
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
42
42
  * @param {string} [authorization] Bearer Token
@@ -52,7 +52,7 @@ export declare const RecurringInvoicesApiFp: (configuration?: Configuration) =>
52
52
  */
53
53
  export declare const RecurringInvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
54
54
  /**
55
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
55
+ * 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\"
56
56
  * @summary Create the recurring invoice
57
57
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
58
58
  * @param {string} [authorization] Bearer Token
@@ -95,7 +95,7 @@ export interface RecurringInvoicesApiCreateRecurringInvoiceRequest {
95
95
  */
96
96
  export declare class RecurringInvoicesApi extends BaseAPI {
97
97
  /**
98
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
98
+ * 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\"
99
99
  * @summary Create the recurring invoice
100
100
  * @param {RecurringInvoicesApiCreateRecurringInvoiceRequest} requestParameters Request parameters.
101
101
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var RecurringInvoicesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
100
+ * 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\"
101
101
  * @summary Create the recurring invoice
102
102
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
103
103
  * @param {string} [authorization] Bearer Token
@@ -160,7 +160,7 @@ var RecurringInvoicesApiFp = function (configuration) {
160
160
  var localVarAxiosParamCreator = (0, exports.RecurringInvoicesApiAxiosParamCreator)(configuration);
161
161
  return {
162
162
  /**
163
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
163
+ * 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\"
164
164
  * @summary Create the recurring invoice
165
165
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
166
166
  * @param {string} [authorization] Bearer Token
@@ -192,7 +192,7 @@ var RecurringInvoicesApiFactory = function (configuration, basePath, axios) {
192
192
  var localVarFp = (0, exports.RecurringInvoicesApiFp)(configuration);
193
193
  return {
194
194
  /**
195
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
195
+ * 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\"
196
196
  * @summary Create the recurring invoice
197
197
  * @param {CreateInvoiceForPolicyRequestDto} createInvoiceForPolicyRequestDto
198
198
  * @param {string} [authorization] Bearer Token
@@ -218,7 +218,7 @@ var RecurringInvoicesApi = /** @class */ (function (_super) {
218
218
  return _super !== null && _super.apply(this, arguments) || this;
219
219
  }
220
220
  /**
221
- * This will create recurring invoice. It will be generated on a cyclical basis during the lifetime of a policy.
221
+ * 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\"
222
222
  * @summary Create the recurring invoice
223
223
  * @param {RecurringInvoicesApiCreateRecurringInvoiceRequest} requestParameters Request parameters.
224
224
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/billing-sdk-node",
3
- "version": "1.41.1-beta.2",
3
+ "version": "1.42.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/billing-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [