@emilgroup/document-sdk-node 1.11.3-beta.2 → 1.12.2

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/document-sdk-node@1.11.3-beta.2 --save
20
+ npm install @emilgroup/document-sdk-node@1.12.2 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/document-sdk-node@1.11.3-beta.2
24
+ yarn add @emilgroup/document-sdk-node@1.12.2
25
25
  ```
26
26
 
27
27
  And then you can import `DocumentsApi`.
@@ -75,6 +75,12 @@ export interface ProductDocumentClass {
75
75
  * @memberof ProductDocumentClass
76
76
  */
77
77
  'entityType': string;
78
+ /**
79
+ * The file name the end user will see when downloading it.
80
+ * @type {string}
81
+ * @memberof ProductDocumentClass
82
+ */
83
+ 'filename': string;
78
84
  /**
79
85
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
80
86
  * @type {string}
@@ -80,6 +80,12 @@ export interface ProductDocumentClass {
80
80
  * @memberof ProductDocumentClass
81
81
  */
82
82
  'entityType': string;
83
+ /**
84
+ * The file name the end user will see when downloading it.
85
+ * @type {string}
86
+ * @memberof ProductDocumentClass
87
+ */
88
+ 'filename': string;
83
89
  /**
84
90
  * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
85
91
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/document-sdk-node",
3
- "version": "1.11.3-beta.2",
3
+ "version": "1.12.2",
4
4
  "description": "OpenAPI client for @emilgroup/document-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -23,7 +23,7 @@
23
23
  "url": "^0.11.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "^12.11.5",
26
+ "@types/node": "^12.11.5",
27
27
  "typescript": "^4.0"
28
28
  }
29
29
  }