@emilgroup/billing-sdk 1.5.0 → 1.6.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/dist/models/invoice-item-class.d.ts +12 -0
- package/models/invoice-item-class.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@1.
|
|
20
|
+
npm install @emilgroup/billing-sdk@1.6.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/billing-sdk@1.
|
|
24
|
+
yarn add @emilgroup/billing-sdk@1.6.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `InvoicesApi`.
|
|
@@ -105,6 +105,18 @@ export interface InvoiceItemClass {
|
|
|
105
105
|
* @memberof InvoiceItemClass
|
|
106
106
|
*/
|
|
107
107
|
'billingIntervalTo': string;
|
|
108
|
+
/**
|
|
109
|
+
* Type of Premium item.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof InvoiceItemClass
|
|
112
|
+
*/
|
|
113
|
+
'itemType'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Visibility of Premium item.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof InvoiceItemClass
|
|
118
|
+
*/
|
|
119
|
+
'visibility'?: string;
|
|
108
120
|
}
|
|
109
121
|
export declare const InvoiceItemClassUnitEnum: {
|
|
110
122
|
readonly Day: "day";
|
|
@@ -110,6 +110,18 @@ export interface InvoiceItemClass {
|
|
|
110
110
|
* @memberof InvoiceItemClass
|
|
111
111
|
*/
|
|
112
112
|
'billingIntervalTo': string;
|
|
113
|
+
/**
|
|
114
|
+
* Type of Premium item.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof InvoiceItemClass
|
|
117
|
+
*/
|
|
118
|
+
'itemType'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Visibility of Premium item.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof InvoiceItemClass
|
|
123
|
+
*/
|
|
124
|
+
'visibility'?: string;
|
|
113
125
|
}
|
|
114
126
|
|
|
115
127
|
export const InvoiceItemClassUnitEnum = {
|