@emilgroup/billing-sdk-node 1.51.1-beta.14 → 1.51.1-beta.16
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/invoice-class.d.ts +18 -0
- package/dist/models/omit-type-class.d.ts +18 -0
- package/models/invoice-class.ts +18 -0
- package/models/omit-type-class.ts +18 -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.51.1-beta.
|
|
20
|
+
npm install @emilgroup/billing-sdk-node@1.51.1-beta.16 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/billing-sdk-node@1.51.1-beta.
|
|
24
|
+
yarn add @emilgroup/billing-sdk-node@1.51.1-beta.16
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `InvoicesApi`.
|
|
@@ -180,6 +180,24 @@ export interface InvoiceClass {
|
|
|
180
180
|
* @memberof InvoiceClass
|
|
181
181
|
*/
|
|
182
182
|
'paymentMethodType': string;
|
|
183
|
+
/**
|
|
184
|
+
* Dunning fees.
|
|
185
|
+
* @type {number}
|
|
186
|
+
* @memberof InvoiceClass
|
|
187
|
+
*/
|
|
188
|
+
'dunningFees': number;
|
|
189
|
+
/**
|
|
190
|
+
* Total amount.
|
|
191
|
+
* @type {number}
|
|
192
|
+
* @memberof InvoiceClass
|
|
193
|
+
*/
|
|
194
|
+
'totalAmount': number;
|
|
195
|
+
/**
|
|
196
|
+
* Open amount.
|
|
197
|
+
* @type {number}
|
|
198
|
+
* @memberof InvoiceClass
|
|
199
|
+
*/
|
|
200
|
+
'openAmount': number;
|
|
183
201
|
}
|
|
184
202
|
export declare const InvoiceClassTypeEnum: {
|
|
185
203
|
readonly Initial: "initial";
|
|
@@ -173,6 +173,24 @@ export interface OmitTypeClass {
|
|
|
173
173
|
* @memberof OmitTypeClass
|
|
174
174
|
*/
|
|
175
175
|
'paymentMethodType': string;
|
|
176
|
+
/**
|
|
177
|
+
* Dunning fees.
|
|
178
|
+
* @type {number}
|
|
179
|
+
* @memberof OmitTypeClass
|
|
180
|
+
*/
|
|
181
|
+
'dunningFees': number;
|
|
182
|
+
/**
|
|
183
|
+
* Total amount.
|
|
184
|
+
* @type {number}
|
|
185
|
+
* @memberof OmitTypeClass
|
|
186
|
+
*/
|
|
187
|
+
'totalAmount': number;
|
|
188
|
+
/**
|
|
189
|
+
* Open amount.
|
|
190
|
+
* @type {number}
|
|
191
|
+
* @memberof OmitTypeClass
|
|
192
|
+
*/
|
|
193
|
+
'openAmount': number;
|
|
176
194
|
}
|
|
177
195
|
export declare const OmitTypeClassTypeEnum: {
|
|
178
196
|
readonly Initial: "initial";
|
package/models/invoice-class.ts
CHANGED
|
@@ -185,6 +185,24 @@ export interface InvoiceClass {
|
|
|
185
185
|
* @memberof InvoiceClass
|
|
186
186
|
*/
|
|
187
187
|
'paymentMethodType': string;
|
|
188
|
+
/**
|
|
189
|
+
* Dunning fees.
|
|
190
|
+
* @type {number}
|
|
191
|
+
* @memberof InvoiceClass
|
|
192
|
+
*/
|
|
193
|
+
'dunningFees': number;
|
|
194
|
+
/**
|
|
195
|
+
* Total amount.
|
|
196
|
+
* @type {number}
|
|
197
|
+
* @memberof InvoiceClass
|
|
198
|
+
*/
|
|
199
|
+
'totalAmount': number;
|
|
200
|
+
/**
|
|
201
|
+
* Open amount.
|
|
202
|
+
* @type {number}
|
|
203
|
+
* @memberof InvoiceClass
|
|
204
|
+
*/
|
|
205
|
+
'openAmount': number;
|
|
188
206
|
}
|
|
189
207
|
|
|
190
208
|
export const InvoiceClassTypeEnum = {
|
|
@@ -178,6 +178,24 @@ export interface OmitTypeClass {
|
|
|
178
178
|
* @memberof OmitTypeClass
|
|
179
179
|
*/
|
|
180
180
|
'paymentMethodType': string;
|
|
181
|
+
/**
|
|
182
|
+
* Dunning fees.
|
|
183
|
+
* @type {number}
|
|
184
|
+
* @memberof OmitTypeClass
|
|
185
|
+
*/
|
|
186
|
+
'dunningFees': number;
|
|
187
|
+
/**
|
|
188
|
+
* Total amount.
|
|
189
|
+
* @type {number}
|
|
190
|
+
* @memberof OmitTypeClass
|
|
191
|
+
*/
|
|
192
|
+
'totalAmount': number;
|
|
193
|
+
/**
|
|
194
|
+
* Open amount.
|
|
195
|
+
* @type {number}
|
|
196
|
+
* @memberof OmitTypeClass
|
|
197
|
+
*/
|
|
198
|
+
'openAmount': number;
|
|
181
199
|
}
|
|
182
200
|
|
|
183
201
|
export const OmitTypeClassTypeEnum = {
|