@emilgroup/public-api-sdk 1.8.0 → 1.10.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/public-api-sdk@1.8.0 --save
20
+ npm install @emilgroup/public-api-sdk@1.10.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/public-api-sdk@1.8.0
24
+ yarn add @emilgroup/public-api-sdk@1.10.0
25
25
  ```
26
26
 
27
27
  And then you can import `PublicApi`.
@@ -125,4 +125,10 @@ export interface InvoiceClass {
125
125
  * @memberof InvoiceClass
126
126
  */
127
127
  'statuses': Array<InvoiceStatusClass>;
128
+ /**
129
+ * Invoice currency. EUR is used by default.
130
+ * @type {string}
131
+ * @memberof InvoiceClass
132
+ */
133
+ 'currency': string;
128
134
  }
@@ -82,7 +82,7 @@ export interface LeadClass {
82
82
  */
83
83
  'quote': InvoiceClass;
84
84
  /**
85
- * ERN of the organization that created the lead.
85
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
86
86
  * @type {string}
87
87
  * @memberof LeadClass
88
88
  */
@@ -27,4 +27,10 @@ export interface PolicyObjectRequestDto {
27
27
  * @memberof PolicyObjectRequestDto
28
28
  */
29
29
  'data': object;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PolicyObjectRequestDto
34
+ */
35
+ 'code'?: string;
30
36
  }
@@ -130,5 +130,11 @@ export interface InvoiceClass {
130
130
  * @memberof InvoiceClass
131
131
  */
132
132
  'statuses': Array<InvoiceStatusClass>;
133
+ /**
134
+ * Invoice currency. EUR is used by default.
135
+ * @type {string}
136
+ * @memberof InvoiceClass
137
+ */
138
+ 'currency': string;
133
139
  }
134
140
 
@@ -87,7 +87,7 @@ export interface LeadClass {
87
87
  */
88
88
  'quote': InvoiceClass;
89
89
  /**
90
- * ERN of the organization that created the lead.
90
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
91
91
  * @type {string}
92
92
  * @memberof LeadClass
93
93
  */
@@ -32,5 +32,11 @@ export interface PolicyObjectRequestDto {
32
32
  * @memberof PolicyObjectRequestDto
33
33
  */
34
34
  'data': object;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PolicyObjectRequestDto
39
+ */
40
+ 'code'?: string;
35
41
  }
36
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/public-api-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.10.0",
4
4
  "description": "OpenAPI client for @emilgroup/public-api-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -21,7 +21,6 @@
21
21
  "axios": "^0.27.2"
22
22
  },
23
23
  "devDependencies": {
24
-
25
24
  "typescript": "^4.0"
26
25
  }
27
26
  }