@emilgroup/document-sdk-node 1.27.1-beta.0 → 1.27.1-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
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.27.1-beta.
|
|
20
|
+
npm install @emilgroup/document-sdk-node@1.27.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/document-sdk-node@1.27.1-beta.
|
|
24
|
+
yarn add @emilgroup/document-sdk-node@1.27.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `DocumentsApi`.
|
|
@@ -105,6 +105,18 @@ export interface ProductDocumentClass {
|
|
|
105
105
|
* @memberof ProductDocumentClass
|
|
106
106
|
*/
|
|
107
107
|
'updated': string;
|
|
108
|
+
/**
|
|
109
|
+
* Identifier of the user who created the record.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof ProductDocumentClass
|
|
112
|
+
*/
|
|
113
|
+
'createdBy': string;
|
|
114
|
+
/**
|
|
115
|
+
* Identifier of the user who last updated the record.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof ProductDocumentClass
|
|
118
|
+
*/
|
|
119
|
+
'updatedBy': string;
|
|
108
120
|
}
|
|
109
121
|
export declare const ProductDocumentClassContentTypeEnum: {
|
|
110
122
|
readonly Pdf: "pdf";
|
|
@@ -110,6 +110,18 @@ export interface ProductDocumentClass {
|
|
|
110
110
|
* @memberof ProductDocumentClass
|
|
111
111
|
*/
|
|
112
112
|
'updated': string;
|
|
113
|
+
/**
|
|
114
|
+
* Identifier of the user who created the record.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof ProductDocumentClass
|
|
117
|
+
*/
|
|
118
|
+
'createdBy': string;
|
|
119
|
+
/**
|
|
120
|
+
* Identifier of the user who last updated the record.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof ProductDocumentClass
|
|
123
|
+
*/
|
|
124
|
+
'updatedBy': string;
|
|
113
125
|
}
|
|
114
126
|
|
|
115
127
|
export const ProductDocumentClassContentTypeEnum = {
|