@emilgroup/document-sdk-node 1.2.0 → 1.2.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/.openapi-generator/FILES +15 -0
- package/README.md +2 -2
- package/api/document-templates-api.ts +88 -94
- package/api/documents-api.ts +152 -34
- package/api/layouts-api.ts +52 -28
- package/api/search-keywords-api.ts +168 -0
- package/api/searchable-document-owners-api.ts +26 -22
- package/api/searchable-documents-api.ts +16 -12
- package/api.ts +2 -0
- package/base.ts +1 -1
- package/dist/api/document-templates-api.d.ts +82 -78
- package/dist/api/document-templates-api.js +73 -67
- package/dist/api/documents-api.d.ts +93 -29
- package/dist/api/documents-api.js +121 -23
- package/dist/api/layouts-api.d.ts +52 -30
- package/dist/api/layouts-api.js +43 -23
- package/dist/api/search-keywords-api.d.ts +96 -0
- package/dist/api/search-keywords-api.js +229 -0
- package/dist/api/searchable-document-owners-api.d.ts +23 -19
- package/dist/api/searchable-document-owners-api.js +16 -12
- package/dist/api/searchable-documents-api.d.ts +16 -12
- package/dist/api/searchable-documents-api.js +14 -10
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.js +1 -1
- package/dist/models/create-doc-template-request-dto.d.ts +10 -4
- package/dist/models/create-doc-template-response-class.d.ts +25 -0
- package/dist/models/create-doc-template-response-class.js +15 -0
- package/dist/models/create-document-request-dto.d.ts +20 -8
- package/dist/models/create-document-sync-response-class.d.ts +25 -0
- package/dist/models/create-document-sync-response-class.js +15 -0
- package/dist/models/create-html-template-dto.d.ts +1 -1
- package/dist/models/create-layout-request-dto.d.ts +10 -10
- package/dist/models/create-layout-response-class.d.ts +25 -0
- package/dist/models/create-layout-response-class.js +15 -0
- package/dist/models/create-presigned-post-request-dto.d.ts +127 -0
- package/dist/models/create-presigned-post-request-dto.js +51 -0
- package/dist/models/create-presigned-post-response-class.d.ts +30 -0
- package/dist/models/create-presigned-post-response-class.js +15 -0
- package/dist/models/delete-layout-request-dto.d.ts +1 -1
- package/dist/models/delete-request-dto.d.ts +1 -1
- package/dist/models/delete-response-class.d.ts +24 -0
- package/dist/models/delete-response-class.js +15 -0
- package/dist/models/doc-template-class.d.ts +25 -19
- package/dist/models/document-class.d.ts +20 -8
- package/dist/models/download-document-request-dto.d.ts +2 -2
- package/dist/models/get-doc-template-request-dto.d.ts +1 -1
- package/dist/models/get-doc-template-response-class.d.ts +1 -1
- package/dist/models/get-document-download-url-response-class.d.ts +1 -1
- package/dist/models/get-layout-request-dto.d.ts +1 -1
- package/dist/models/get-signed-s3-key-url-response-class.d.ts +24 -0
- package/dist/models/get-signed-s3-key-url-response-class.js +15 -0
- package/dist/models/html-template-class.d.ts +7 -7
- package/dist/models/index.d.ts +14 -0
- package/dist/models/index.js +14 -0
- package/dist/models/layout-class.d.ts +11 -11
- package/dist/models/list-doc-template-request-dto.d.ts +48 -0
- package/dist/models/list-doc-template-request-dto.js +15 -0
- package/dist/models/list-doc-templates-response-class.d.ts +1 -1
- package/dist/models/list-documents-response-class.d.ts +1 -1
- package/dist/models/list-layouts-response-class.d.ts +1 -1
- package/dist/models/list-search-keywords-request-dto.d.ts +24 -0
- package/dist/models/list-search-keywords-request-dto.js +15 -0
- package/dist/models/list-search-keywords-response-class.d.ts +24 -0
- package/dist/models/list-search-keywords-response-class.js +15 -0
- package/dist/models/list-searchable-document-owners-response-class.d.ts +3 -2
- package/dist/models/list-searchable-documents-request-dto.d.ts +2 -2
- package/dist/models/list-searchable-documents-response-class.d.ts +5 -4
- package/dist/models/searchable-document-class.d.ts +66 -0
- package/dist/models/searchable-document-class.js +15 -0
- package/dist/models/searchable-document-owner-class.d.ts +30 -0
- package/dist/models/searchable-document-owner-class.js +15 -0
- package/dist/models/update-doc-template-request-dto.d.ts +16 -10
- package/dist/models/update-doc-template-response-class.d.ts +1 -1
- package/dist/models/update-document-request-dto.d.ts +10 -4
- package/dist/models/update-document-response-class.d.ts +25 -0
- package/dist/models/update-document-response-class.js +15 -0
- package/dist/models/update-html-template-dto.d.ts +42 -0
- package/dist/models/update-html-template-dto.js +21 -0
- package/dist/models/update-layout-request-dto.d.ts +15 -15
- package/dist/models/update-layout-response-class.d.ts +1 -1
- package/models/create-doc-template-request-dto.ts +10 -4
- package/models/create-doc-template-response-class.ts +31 -0
- package/models/create-document-request-dto.ts +20 -8
- package/models/create-document-sync-response-class.ts +31 -0
- package/models/create-html-template-dto.ts +1 -1
- package/models/create-layout-request-dto.ts +10 -10
- package/models/create-layout-response-class.ts +31 -0
- package/models/create-presigned-post-request-dto.ts +137 -0
- package/models/create-presigned-post-response-class.ts +36 -0
- package/models/delete-layout-request-dto.ts +1 -1
- package/models/delete-request-dto.ts +1 -1
- package/models/delete-response-class.ts +30 -0
- package/models/doc-template-class.ts +25 -19
- package/models/document-class.ts +20 -8
- package/models/download-document-request-dto.ts +2 -2
- package/models/get-doc-template-request-dto.ts +1 -1
- package/models/get-doc-template-response-class.ts +1 -1
- package/models/get-document-download-url-response-class.ts +1 -1
- package/models/get-layout-request-dto.ts +1 -1
- package/models/get-signed-s3-key-url-response-class.ts +30 -0
- package/models/html-template-class.ts +7 -7
- package/models/index.ts +14 -0
- package/models/layout-class.ts +11 -11
- package/models/list-doc-template-request-dto.ts +54 -0
- package/models/list-doc-templates-response-class.ts +1 -1
- package/models/list-documents-response-class.ts +1 -1
- package/models/list-layouts-response-class.ts +1 -1
- package/models/list-search-keywords-request-dto.ts +30 -0
- package/models/list-search-keywords-response-class.ts +30 -0
- package/models/list-searchable-document-owners-response-class.ts +3 -2
- package/models/list-searchable-documents-request-dto.ts +2 -2
- package/models/list-searchable-documents-response-class.ts +5 -4
- package/models/searchable-document-class.ts +72 -0
- package/models/searchable-document-owner-class.ts +36 -0
- package/models/update-doc-template-request-dto.ts +16 -10
- package/models/update-doc-template-response-class.ts +1 -1
- package/models/update-document-request-dto.ts +10 -4
- package/models/update-document-response-class.ts +31 -0
- package/models/update-html-template-dto.ts +51 -0
- package/models/update-layout-request-dto.ts +15 -15
- package/models/update-layout-response-class.ts +1 -1
- package/package.json +1 -1
package/dist/models/index.js
CHANGED
|
@@ -15,11 +15,17 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./create-doc-template-request-dto"), exports);
|
|
18
|
+
__exportStar(require("./create-doc-template-response-class"), exports);
|
|
18
19
|
__exportStar(require("./create-document-request-dto"), exports);
|
|
20
|
+
__exportStar(require("./create-document-sync-response-class"), exports);
|
|
19
21
|
__exportStar(require("./create-html-template-dto"), exports);
|
|
20
22
|
__exportStar(require("./create-layout-request-dto"), exports);
|
|
23
|
+
__exportStar(require("./create-layout-response-class"), exports);
|
|
24
|
+
__exportStar(require("./create-presigned-post-request-dto"), exports);
|
|
25
|
+
__exportStar(require("./create-presigned-post-response-class"), exports);
|
|
21
26
|
__exportStar(require("./delete-layout-request-dto"), exports);
|
|
22
27
|
__exportStar(require("./delete-request-dto"), exports);
|
|
28
|
+
__exportStar(require("./delete-response-class"), exports);
|
|
23
29
|
__exportStar(require("./doc-template-class"), exports);
|
|
24
30
|
__exportStar(require("./document-class"), exports);
|
|
25
31
|
__exportStar(require("./download-document-request-dto"), exports);
|
|
@@ -28,17 +34,25 @@ __exportStar(require("./get-doc-template-response-class"), exports);
|
|
|
28
34
|
__exportStar(require("./get-document-download-url-response-class"), exports);
|
|
29
35
|
__exportStar(require("./get-layout-request-dto"), exports);
|
|
30
36
|
__exportStar(require("./get-layout-response-class"), exports);
|
|
37
|
+
__exportStar(require("./get-signed-s3-key-url-response-class"), exports);
|
|
31
38
|
__exportStar(require("./html-template-class"), exports);
|
|
32
39
|
__exportStar(require("./layout-class"), exports);
|
|
40
|
+
__exportStar(require("./list-doc-template-request-dto"), exports);
|
|
33
41
|
__exportStar(require("./list-doc-templates-response-class"), exports);
|
|
34
42
|
__exportStar(require("./list-documents-response-class"), exports);
|
|
35
43
|
__exportStar(require("./list-layouts-response-class"), exports);
|
|
36
44
|
__exportStar(require("./list-request-dto"), exports);
|
|
45
|
+
__exportStar(require("./list-search-keywords-request-dto"), exports);
|
|
46
|
+
__exportStar(require("./list-search-keywords-response-class"), exports);
|
|
37
47
|
__exportStar(require("./list-searchable-document-owners-response-class"), exports);
|
|
38
48
|
__exportStar(require("./list-searchable-documents-request-dto"), exports);
|
|
39
49
|
__exportStar(require("./list-searchable-documents-response-class"), exports);
|
|
50
|
+
__exportStar(require("./searchable-document-class"), exports);
|
|
51
|
+
__exportStar(require("./searchable-document-owner-class"), exports);
|
|
40
52
|
__exportStar(require("./update-doc-template-request-dto"), exports);
|
|
41
53
|
__exportStar(require("./update-doc-template-response-class"), exports);
|
|
42
54
|
__exportStar(require("./update-document-request-dto"), exports);
|
|
55
|
+
__exportStar(require("./update-document-response-class"), exports);
|
|
56
|
+
__exportStar(require("./update-html-template-dto"), exports);
|
|
43
57
|
__exportStar(require("./update-layout-request-dto"), exports);
|
|
44
58
|
__exportStar(require("./update-layout-response-class"), exports);
|
|
@@ -17,63 +17,63 @@ import { HtmlTemplateClass } from './html-template-class';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface LayoutClass {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
21
|
* @type {number}
|
|
22
22
|
* @memberof LayoutClass
|
|
23
23
|
*/
|
|
24
24
|
'id': number;
|
|
25
25
|
/**
|
|
26
|
-
* Record owner
|
|
26
|
+
* Record owner.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof LayoutClass
|
|
29
29
|
*/
|
|
30
30
|
'owner': string;
|
|
31
31
|
/**
|
|
32
|
-
* Layout name
|
|
32
|
+
* Layout name.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof LayoutClass
|
|
35
35
|
*/
|
|
36
36
|
'name': string;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof LayoutClass
|
|
41
41
|
*/
|
|
42
42
|
'slug': string;
|
|
43
43
|
/**
|
|
44
|
-
* Layout style
|
|
44
|
+
* Layout style.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof LayoutClass
|
|
47
47
|
*/
|
|
48
48
|
'style': string;
|
|
49
49
|
/**
|
|
50
|
-
* Header Template
|
|
50
|
+
* Header Template.
|
|
51
51
|
* @type {HtmlTemplateClass}
|
|
52
52
|
* @memberof LayoutClass
|
|
53
53
|
*/
|
|
54
54
|
'headerTemplate': HtmlTemplateClass;
|
|
55
55
|
/**
|
|
56
|
-
* Footer Template
|
|
56
|
+
* Footer Template.
|
|
57
57
|
* @type {HtmlTemplateClass}
|
|
58
58
|
* @memberof LayoutClass
|
|
59
59
|
*/
|
|
60
60
|
'footerTemplate': HtmlTemplateClass;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Time at which the object was created.
|
|
63
63
|
* @type {string}
|
|
64
64
|
* @memberof LayoutClass
|
|
65
65
|
*/
|
|
66
66
|
'createdAt': string;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Time at which the object was updated.
|
|
69
69
|
* @type {string}
|
|
70
70
|
* @memberof LayoutClass
|
|
71
71
|
*/
|
|
72
72
|
'updatedAt': string;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Time at which the layout was deleted.
|
|
75
75
|
* @type {string}
|
|
76
76
|
* @memberof LayoutClass
|
|
77
77
|
*/
|
|
78
|
-
'deletedAt'
|
|
78
|
+
'deletedAt'?: string;
|
|
79
79
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListDocTemplateRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ListDocTemplateRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ListDocTemplateRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'pageSize'?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListDocTemplateRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'pageToken'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListDocTemplateRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'filter'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ListDocTemplateRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'order'?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ListDocTemplateRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'expand'?: string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListSearchKeywordsRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface ListSearchKeywordsRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Text to search in the documents.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ListSearchKeywordsRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'searchText': string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListSearchKeywordsResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ListSearchKeywordsResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Keywords used for search and to be highlighted in the document preview.
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof ListSearchKeywordsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'keywords': Array<string>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { SearchableDocumentOwnerClass } from './searchable-document-owner-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -17,8 +18,8 @@
|
|
|
17
18
|
export interface ListSearchableDocumentOwnersResponseClass {
|
|
18
19
|
/**
|
|
19
20
|
* Searchable document owners
|
|
20
|
-
* @type {Array<
|
|
21
|
+
* @type {Array<SearchableDocumentOwnerClass>}
|
|
21
22
|
* @memberof ListSearchableDocumentOwnersResponseClass
|
|
22
23
|
*/
|
|
23
|
-
'owners': Array<
|
|
24
|
+
'owners': Array<SearchableDocumentOwnerClass>;
|
|
24
25
|
}
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface ListSearchableDocumentsRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* Text to search in the documents
|
|
19
|
+
* Text to search in the documents.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ListSearchableDocumentsRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'searchText': string;
|
|
24
24
|
/**
|
|
25
|
-
* List of searched document owner IDs separated with | (search in all documents if an \'*\' list provided)
|
|
25
|
+
* List of searched document owner IDs separated with | (search in all documents if an \'*\' list provided).
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ListSearchableDocumentsRequestDto
|
|
28
28
|
*/
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { SearchableDocumentClass } from './searchable-document-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -16,13 +17,13 @@
|
|
|
16
17
|
*/
|
|
17
18
|
export interface ListSearchableDocumentsResponseClass {
|
|
18
19
|
/**
|
|
19
|
-
* Searchable documents that match the search criteria
|
|
20
|
-
* @type {Array<
|
|
20
|
+
* Searchable documents that match the search criteria.
|
|
21
|
+
* @type {Array<SearchableDocumentClass>}
|
|
21
22
|
* @memberof ListSearchableDocumentsResponseClass
|
|
22
23
|
*/
|
|
23
|
-
'documents': Array<
|
|
24
|
+
'documents': Array<SearchableDocumentClass>;
|
|
24
25
|
/**
|
|
25
|
-
* Keywords used for search and to be highlighted in
|
|
26
|
+
* Keywords used for search and to be highlighted in the document preview.
|
|
26
27
|
* @type {Array<string>}
|
|
27
28
|
* @memberof ListSearchableDocumentsResponseClass
|
|
28
29
|
*/
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SearchableDocumentClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SearchableDocumentClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SearchableDocumentClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Searchable document name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SearchableDocumentClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof SearchableDocumentClass
|
|
34
|
+
*/
|
|
35
|
+
'ownerId': number;
|
|
36
|
+
/**
|
|
37
|
+
* Searchable document owner name.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SearchableDocumentClass
|
|
40
|
+
*/
|
|
41
|
+
'ownerName': string;
|
|
42
|
+
/**
|
|
43
|
+
* Headlines (snippets) from the document.
|
|
44
|
+
* @type {Array<string>}
|
|
45
|
+
* @memberof SearchableDocumentClass
|
|
46
|
+
*/
|
|
47
|
+
'headlines': Array<string>;
|
|
48
|
+
/**
|
|
49
|
+
* S3 key of the searchable document file.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SearchableDocumentClass
|
|
52
|
+
*/
|
|
53
|
+
's3Key': string;
|
|
54
|
+
/**
|
|
55
|
+
* Signed URL to download the document file from S3.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof SearchableDocumentClass
|
|
58
|
+
*/
|
|
59
|
+
'signedS3Url': string;
|
|
60
|
+
/**
|
|
61
|
+
* Rank of the document in the search.
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof SearchableDocumentClass
|
|
64
|
+
*/
|
|
65
|
+
'rank': number;
|
|
66
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SearchableDocumentOwnerClass
|
|
16
|
+
*/
|
|
17
|
+
export interface SearchableDocumentOwnerClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SearchableDocumentOwnerClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Searchable document owner name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SearchableDocumentOwnerClass
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { UpdateHtmlTemplateDto } from './update-html-template-dto';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -17,33 +17,39 @@ import { CreateHtmlTemplateDto } from './create-html-template-dto';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateDocTemplateRequestDto {
|
|
19
19
|
/**
|
|
20
|
-
* Template name
|
|
20
|
+
* Template name.
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof UpdateDocTemplateRequestDto
|
|
23
23
|
*/
|
|
24
24
|
'name': string;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof UpdateDocTemplateRequestDto
|
|
29
29
|
*/
|
|
30
30
|
'slug': string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Unique identifier referencing the layout.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof UpdateDocTemplateRequestDto
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'layoutId': number;
|
|
37
|
+
/**
|
|
38
|
+
* Body templates.
|
|
39
|
+
* @type {UpdateHtmlTemplateDto}
|
|
40
|
+
* @memberof UpdateDocTemplateRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'bodyTemplate': UpdateHtmlTemplateDto;
|
|
37
43
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {
|
|
44
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
45
|
+
* @type {string}
|
|
40
46
|
* @memberof UpdateDocTemplateRequestDto
|
|
41
47
|
*/
|
|
42
|
-
'
|
|
48
|
+
'productSlug'?: string;
|
|
43
49
|
/**
|
|
44
|
-
*
|
|
50
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
45
51
|
* @type {number}
|
|
46
52
|
* @memberof UpdateDocTemplateRequestDto
|
|
47
53
|
*/
|
|
48
|
-
'
|
|
54
|
+
'id': number;
|
|
49
55
|
}
|
|
@@ -16,25 +16,31 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface UpdateDocumentRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
* Document description
|
|
19
|
+
* Document description.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdateDocumentRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'description'?: string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Unique identifier of the policy that this object belongs to.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof UpdateDocumentRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'policyCode'?: string;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Unique identifier of the account that this object belongs to.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UpdateDocumentRequestDto
|
|
34
34
|
*/
|
|
35
35
|
'accountCode'?: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Unique identifier of the lead that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdateDocumentRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'leadCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique identifier referencing the entity.
|
|
38
44
|
* @type {number}
|
|
39
45
|
* @memberof UpdateDocumentRequestDto
|
|
40
46
|
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL DocumentService
|
|
3
|
+
* The EMIL DocumentService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { DocumentClass } from './document-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateDocumentResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateDocumentResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Document
|
|
21
|
+
* @type {DocumentClass}
|
|
22
|
+
* @memberof UpdateDocumentResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'document': DocumentClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL DocumentService
|
|
6
|
+
* The EMIL DocumentService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|