@emilgroup/document-sdk-node 1.42.0 → 1.42.1-beta.10
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/create-document-request-dto.d.ts +6 -0
- package/dist/models/create-presigned-post-request-dto.d.ts +6 -0
- package/dist/models/document-class.d.ts +6 -0
- package/models/create-document-request-dto.ts +6 -0
- package/models/create-presigned-post-request-dto.ts +6 -0
- package/models/document-class.ts +6 -0
- package/package.json +2 -2
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.42.
|
|
20
|
+
npm install @emilgroup/document-sdk-node@1.42.1-beta.10 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/document-sdk-node@1.42.
|
|
24
|
+
yarn add @emilgroup/document-sdk-node@1.42.1-beta.10
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `DocumentsApi`.
|
|
@@ -69,6 +69,12 @@ export interface CreateDocumentRequestDto {
|
|
|
69
69
|
* @memberof CreateDocumentRequestDto
|
|
70
70
|
*/
|
|
71
71
|
'entityId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* Unique identifier of the entity that this object belongs to.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateDocumentRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'entityCode'?: string;
|
|
72
78
|
/**
|
|
73
79
|
* Identifier of the service that requested the creation of this document.
|
|
74
80
|
* @type {string}
|
|
@@ -33,6 +33,12 @@ export interface CreatePresignedPostRequestDto {
|
|
|
33
33
|
* @memberof CreatePresignedPostRequestDto
|
|
34
34
|
*/
|
|
35
35
|
'entityId': number;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the entity that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreatePresignedPostRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'entityCode'?: string;
|
|
36
42
|
/**
|
|
37
43
|
* Description of the document. Usually a short summary about the context in which the document is being used.
|
|
38
44
|
* @type {string}
|
|
@@ -69,6 +69,12 @@ export interface DocumentClass {
|
|
|
69
69
|
* @memberof DocumentClass
|
|
70
70
|
*/
|
|
71
71
|
'entityId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* Unique identifier of the entity that this object belongs to.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof DocumentClass
|
|
76
|
+
*/
|
|
77
|
+
'entityCode'?: string;
|
|
72
78
|
/**
|
|
73
79
|
* Identifier of the service that requested the creation of this document.
|
|
74
80
|
* @type {string}
|
|
@@ -74,6 +74,12 @@ export interface CreateDocumentRequestDto {
|
|
|
74
74
|
* @memberof CreateDocumentRequestDto
|
|
75
75
|
*/
|
|
76
76
|
'entityId'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* Unique identifier of the entity that this object belongs to.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CreateDocumentRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'entityCode'?: string;
|
|
77
83
|
/**
|
|
78
84
|
* Identifier of the service that requested the creation of this document.
|
|
79
85
|
* @type {string}
|
|
@@ -38,6 +38,12 @@ export interface CreatePresignedPostRequestDto {
|
|
|
38
38
|
* @memberof CreatePresignedPostRequestDto
|
|
39
39
|
*/
|
|
40
40
|
'entityId': number;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier of the entity that this object belongs to.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreatePresignedPostRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'entityCode'?: string;
|
|
41
47
|
/**
|
|
42
48
|
* Description of the document. Usually a short summary about the context in which the document is being used.
|
|
43
49
|
* @type {string}
|
package/models/document-class.ts
CHANGED
|
@@ -74,6 +74,12 @@ export interface DocumentClass {
|
|
|
74
74
|
* @memberof DocumentClass
|
|
75
75
|
*/
|
|
76
76
|
'entityId'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* Unique identifier of the entity that this object belongs to.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof DocumentClass
|
|
81
|
+
*/
|
|
82
|
+
'entityCode'?: string;
|
|
77
83
|
/**
|
|
78
84
|
* Identifier of the service that requested the creation of this document.
|
|
79
85
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/document-sdk-node",
|
|
3
|
-
"version": "1.42.
|
|
3
|
+
"version": "1.42.1-beta.10",
|
|
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
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|