@emilgroup/billing-sdk-node 1.27.1 → 1.27.2-beta.1
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/dist/models/list-request-dto.d.ts +6 -0
- package/dist/models/policy-dto.d.ts +12 -0
- package/dist/models/policy-object-dto.d.ts +12 -0
- package/dist/models/policy-premium-dto.d.ts +12 -0
- package/dist/models/policy-premium-item-dto.d.ts +12 -0
- package/dist/models/policy-version-dto.d.ts +12 -0
- package/dist/models/premium-formula-dto.d.ts +12 -0
- package/dist/models/timeslice-dto.d.ts +12 -0
- package/models/list-request-dto.ts +6 -0
- package/models/policy-dto.ts +12 -0
- package/models/policy-object-dto.ts +12 -0
- package/models/policy-premium-dto.ts +12 -0
- package/models/policy-premium-item-dto.ts +12 -0
- package/models/policy-version-dto.ts +12 -0
- package/models/premium-formula-dto.ts +12 -0
- package/models/timeslice-dto.ts +12 -0
- 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-node@1.27.1 --save
|
|
20
|
+
npm install @emilgroup/billing-sdk-node@1.27.2-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/billing-sdk-node@1.27.1
|
|
24
|
+
yarn add @emilgroup/billing-sdk-node@1.27.2-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `InvoicesApi`.
|
|
@@ -51,4 +51,10 @@ export interface ListRequestDto {
|
|
|
51
51
|
* @memberof ListRequestDto
|
|
52
52
|
*/
|
|
53
53
|
'expand'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ListRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'filters'?: string;
|
|
54
60
|
}
|
|
@@ -118,6 +118,18 @@ export interface PolicyDto {
|
|
|
118
118
|
* @memberof PolicyDto
|
|
119
119
|
*/
|
|
120
120
|
'ern': string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof PolicyDto
|
|
125
|
+
*/
|
|
126
|
+
'createdBy': string;
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @memberof PolicyDto
|
|
131
|
+
*/
|
|
132
|
+
'updatedBy': string;
|
|
121
133
|
}
|
|
122
134
|
export declare const PolicyDtoStatusEnum: {
|
|
123
135
|
readonly Active: "ACTIVE";
|
|
@@ -69,4 +69,16 @@ export interface PolicyObjectDto {
|
|
|
69
69
|
* @memberof PolicyObjectDto
|
|
70
70
|
*/
|
|
71
71
|
'code': string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PolicyObjectDto
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PolicyObjectDto
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
72
84
|
}
|
|
@@ -46,4 +46,16 @@ export interface PolicyPremiumDto {
|
|
|
46
46
|
* @memberof PolicyPremiumDto
|
|
47
47
|
*/
|
|
48
48
|
'currency': string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PolicyPremiumDto
|
|
53
|
+
*/
|
|
54
|
+
'createdBy': string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PolicyPremiumDto
|
|
59
|
+
*/
|
|
60
|
+
'updatedBy': string;
|
|
49
61
|
}
|
|
@@ -52,4 +52,16 @@ export interface PolicyPremiumItemDto {
|
|
|
52
52
|
* @memberof PolicyPremiumItemDto
|
|
53
53
|
*/
|
|
54
54
|
'isOverride'?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PolicyPremiumItemDto
|
|
59
|
+
*/
|
|
60
|
+
'createdBy': string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof PolicyPremiumItemDto
|
|
65
|
+
*/
|
|
66
|
+
'updatedBy': string;
|
|
55
67
|
}
|
|
@@ -58,4 +58,16 @@ export interface PolicyVersionDto {
|
|
|
58
58
|
* @memberof PolicyVersionDto
|
|
59
59
|
*/
|
|
60
60
|
'isDraft': boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof PolicyVersionDto
|
|
65
|
+
*/
|
|
66
|
+
'createdBy': string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof PolicyVersionDto
|
|
71
|
+
*/
|
|
72
|
+
'updatedBy': string;
|
|
61
73
|
}
|
|
@@ -69,4 +69,16 @@ export interface PremiumFormulaDto {
|
|
|
69
69
|
* @memberof PremiumFormulaDto
|
|
70
70
|
*/
|
|
71
71
|
'updatedAt'?: string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PremiumFormulaDto
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PremiumFormulaDto
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
72
84
|
}
|
|
@@ -59,4 +59,16 @@ export interface TimesliceDto {
|
|
|
59
59
|
* @memberof TimesliceDto
|
|
60
60
|
*/
|
|
61
61
|
'premium': PolicyPremiumDto;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof TimesliceDto
|
|
66
|
+
*/
|
|
67
|
+
'createdBy': string;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof TimesliceDto
|
|
72
|
+
*/
|
|
73
|
+
'updatedBy': string;
|
|
62
74
|
}
|
|
@@ -56,5 +56,11 @@ export interface ListRequestDto {
|
|
|
56
56
|
* @memberof ListRequestDto
|
|
57
57
|
*/
|
|
58
58
|
'expand'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ListRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'filters'?: string;
|
|
59
65
|
}
|
|
60
66
|
|
package/models/policy-dto.ts
CHANGED
|
@@ -123,6 +123,18 @@ export interface PolicyDto {
|
|
|
123
123
|
* @memberof PolicyDto
|
|
124
124
|
*/
|
|
125
125
|
'ern': string;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof PolicyDto
|
|
130
|
+
*/
|
|
131
|
+
'createdBy': string;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof PolicyDto
|
|
136
|
+
*/
|
|
137
|
+
'updatedBy': string;
|
|
126
138
|
}
|
|
127
139
|
|
|
128
140
|
export const PolicyDtoStatusEnum = {
|
|
@@ -74,5 +74,17 @@ export interface PolicyObjectDto {
|
|
|
74
74
|
* @memberof PolicyObjectDto
|
|
75
75
|
*/
|
|
76
76
|
'code': string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PolicyObjectDto
|
|
81
|
+
*/
|
|
82
|
+
'createdBy': string;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof PolicyObjectDto
|
|
87
|
+
*/
|
|
88
|
+
'updatedBy': string;
|
|
77
89
|
}
|
|
78
90
|
|
|
@@ -51,5 +51,17 @@ export interface PolicyPremiumDto {
|
|
|
51
51
|
* @memberof PolicyPremiumDto
|
|
52
52
|
*/
|
|
53
53
|
'currency': string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PolicyPremiumDto
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyPremiumDto
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
54
66
|
}
|
|
55
67
|
|
|
@@ -57,5 +57,17 @@ export interface PolicyPremiumItemDto {
|
|
|
57
57
|
* @memberof PolicyPremiumItemDto
|
|
58
58
|
*/
|
|
59
59
|
'isOverride'?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PolicyPremiumItemDto
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PolicyPremiumItemDto
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
60
72
|
}
|
|
61
73
|
|
|
@@ -63,5 +63,17 @@ export interface PolicyVersionDto {
|
|
|
63
63
|
* @memberof PolicyVersionDto
|
|
64
64
|
*/
|
|
65
65
|
'isDraft': boolean;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PolicyVersionDto
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PolicyVersionDto
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
}
|
|
67
79
|
|
|
@@ -74,5 +74,17 @@ export interface PremiumFormulaDto {
|
|
|
74
74
|
* @memberof PremiumFormulaDto
|
|
75
75
|
*/
|
|
76
76
|
'updatedAt'?: string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PremiumFormulaDto
|
|
81
|
+
*/
|
|
82
|
+
'createdBy': string;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof PremiumFormulaDto
|
|
87
|
+
*/
|
|
88
|
+
'updatedBy': string;
|
|
77
89
|
}
|
|
78
90
|
|
package/models/timeslice-dto.ts
CHANGED
|
@@ -64,5 +64,17 @@ export interface TimesliceDto {
|
|
|
64
64
|
* @memberof TimesliceDto
|
|
65
65
|
*/
|
|
66
66
|
'premium': PolicyPremiumDto;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof TimesliceDto
|
|
71
|
+
*/
|
|
72
|
+
'createdBy': string;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof TimesliceDto
|
|
77
|
+
*/
|
|
78
|
+
'updatedBy': string;
|
|
67
79
|
}
|
|
68
80
|
|