@emilgroup/billing-sdk-node 1.29.1-beta.8 → 1.30.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
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-node@1.
|
|
20
|
+
npm install @emilgroup/billing-sdk-node@1.30.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/billing-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/billing-sdk-node@1.30.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `InvoicesApi`.
|
|
@@ -71,10 +71,10 @@ export interface CreateDraftInvoiceRequestDto {
|
|
|
71
71
|
'policyNumber'?: string;
|
|
72
72
|
/**
|
|
73
73
|
* A boolean flag indicating whether the invoice should be calculated on a pro rata basis. When true, the invoice amount is adjusted proportionally based on the duration of service.
|
|
74
|
-
* @type {
|
|
74
|
+
* @type {boolean}
|
|
75
75
|
* @memberof CreateDraftInvoiceRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'calculateProRata'?:
|
|
77
|
+
'calculateProRata'?: boolean;
|
|
78
78
|
}
|
|
79
79
|
export declare const CreateDraftInvoiceRequestDtoTypeEnum: {
|
|
80
80
|
readonly Initial: "initial";
|
|
@@ -29,10 +29,10 @@ export interface CreatePolicyBillingRequestDto {
|
|
|
29
29
|
'nextBillingDate': string;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {boolean}
|
|
33
33
|
* @memberof CreatePolicyBillingRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'isInvoiced':
|
|
35
|
+
'isInvoiced': boolean;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {string}
|
|
@@ -76,10 +76,10 @@ export interface CreateDraftInvoiceRequestDto {
|
|
|
76
76
|
'policyNumber'?: string;
|
|
77
77
|
/**
|
|
78
78
|
* A boolean flag indicating whether the invoice should be calculated on a pro rata basis. When true, the invoice amount is adjusted proportionally based on the duration of service.
|
|
79
|
-
* @type {
|
|
79
|
+
* @type {boolean}
|
|
80
80
|
* @memberof CreateDraftInvoiceRequestDto
|
|
81
81
|
*/
|
|
82
|
-
'calculateProRata'?:
|
|
82
|
+
'calculateProRata'?: boolean;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
export const CreateDraftInvoiceRequestDtoTypeEnum = {
|
|
@@ -34,10 +34,10 @@ export interface CreatePolicyBillingRequestDto {
|
|
|
34
34
|
'nextBillingDate': string;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {boolean}
|
|
38
38
|
* @memberof CreatePolicyBillingRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'isInvoiced':
|
|
40
|
+
'isInvoiced': boolean;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {string}
|