@emilgroup/document-sdk 1.0.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.
Files changed (169) hide show
  1. package/.openapi-generator/FILES +61 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +68 -0
  5. package/api/document-templates-api.ts +669 -0
  6. package/api/documents-api.ts +880 -0
  7. package/api/layouts-api.ts +685 -0
  8. package/api/search-keywords-api.ts +168 -0
  9. package/api/searchable-document-owners-api.ts +236 -0
  10. package/api/searchable-documents-api.ts +184 -0
  11. package/api.ts +41 -0
  12. package/base.ts +284 -0
  13. package/common.ts +199 -0
  14. package/configuration.ts +109 -0
  15. package/dist/api/document-templates-api.d.ts +376 -0
  16. package/dist/api/document-templates-api.js +634 -0
  17. package/dist/api/documents-api.d.ts +488 -0
  18. package/dist/api/documents-api.js +821 -0
  19. package/dist/api/layouts-api.d.ts +385 -0
  20. package/dist/api/layouts-api.js +642 -0
  21. package/dist/api/search-keywords-api.d.ts +96 -0
  22. package/dist/api/search-keywords-api.js +229 -0
  23. package/dist/api/searchable-document-owners-api.d.ts +141 -0
  24. package/dist/api/searchable-document-owners-api.js +258 -0
  25. package/dist/api/searchable-documents-api.d.ts +105 -0
  26. package/dist/api/searchable-documents-api.js +237 -0
  27. package/dist/api.d.ts +17 -0
  28. package/dist/api.js +35 -0
  29. package/dist/base.d.ts +77 -0
  30. package/dist/base.js +393 -0
  31. package/dist/common.d.ts +92 -0
  32. package/dist/common.js +277 -0
  33. package/dist/configuration.d.ts +90 -0
  34. package/dist/configuration.js +44 -0
  35. package/dist/index.d.ts +15 -0
  36. package/dist/index.js +36 -0
  37. package/dist/models/create-doc-template-request-dto.d.ts +49 -0
  38. package/dist/models/create-doc-template-request-dto.js +15 -0
  39. package/dist/models/create-doc-template-response-class.d.ts +25 -0
  40. package/dist/models/create-doc-template-response-class.js +15 -0
  41. package/dist/models/create-document-request-dto.d.ts +155 -0
  42. package/dist/models/create-document-request-dto.js +65 -0
  43. package/dist/models/create-document-sync-response-class.d.ts +25 -0
  44. package/dist/models/create-document-sync-response-class.js +15 -0
  45. package/dist/models/create-html-template-dto.d.ts +24 -0
  46. package/dist/models/create-html-template-dto.js +15 -0
  47. package/dist/models/create-layout-request-dto.d.ts +49 -0
  48. package/dist/models/create-layout-request-dto.js +15 -0
  49. package/dist/models/create-layout-response-class.d.ts +25 -0
  50. package/dist/models/create-layout-response-class.js +15 -0
  51. package/dist/models/create-presigned-post-request-dto.d.ts +127 -0
  52. package/dist/models/create-presigned-post-request-dto.js +51 -0
  53. package/dist/models/create-presigned-post-response-class.d.ts +30 -0
  54. package/dist/models/create-presigned-post-response-class.js +15 -0
  55. package/dist/models/delete-layout-request-dto.d.ts +24 -0
  56. package/dist/models/delete-layout-request-dto.js +15 -0
  57. package/dist/models/delete-request-dto.d.ts +24 -0
  58. package/dist/models/delete-request-dto.js +15 -0
  59. package/dist/models/delete-response-class.d.ts +24 -0
  60. package/dist/models/delete-response-class.js +15 -0
  61. package/dist/models/doc-template-class.d.ts +86 -0
  62. package/dist/models/doc-template-class.js +15 -0
  63. package/dist/models/document-class.d.ts +162 -0
  64. package/dist/models/document-class.js +61 -0
  65. package/dist/models/download-document-request-dto.d.ts +30 -0
  66. package/dist/models/download-document-request-dto.js +15 -0
  67. package/dist/models/get-doc-template-request-dto.d.ts +30 -0
  68. package/dist/models/get-doc-template-request-dto.js +15 -0
  69. package/dist/models/get-doc-template-response-class.d.ts +25 -0
  70. package/dist/models/get-doc-template-response-class.js +15 -0
  71. package/dist/models/get-document-download-url-response-class.d.ts +24 -0
  72. package/dist/models/get-document-download-url-response-class.js +15 -0
  73. package/dist/models/get-layout-request-dto.d.ts +24 -0
  74. package/dist/models/get-layout-request-dto.js +15 -0
  75. package/dist/models/get-layout-response-class.d.ts +25 -0
  76. package/dist/models/get-layout-response-class.js +15 -0
  77. package/dist/models/get-signed-s3-key-url-response-class.d.ts +24 -0
  78. package/dist/models/get-signed-s3-key-url-response-class.js +15 -0
  79. package/dist/models/html-template-class.d.ts +66 -0
  80. package/dist/models/html-template-class.js +21 -0
  81. package/dist/models/index.d.ts +42 -0
  82. package/dist/models/index.js +58 -0
  83. package/dist/models/layout-class.d.ts +79 -0
  84. package/dist/models/layout-class.js +15 -0
  85. package/dist/models/list-doc-template-request-dto.d.ts +48 -0
  86. package/dist/models/list-doc-template-request-dto.js +15 -0
  87. package/dist/models/list-doc-templates-response-class.d.ts +31 -0
  88. package/dist/models/list-doc-templates-response-class.js +15 -0
  89. package/dist/models/list-documents-response-class.d.ts +31 -0
  90. package/dist/models/list-documents-response-class.js +15 -0
  91. package/dist/models/list-layouts-response-class.d.ts +31 -0
  92. package/dist/models/list-layouts-response-class.js +15 -0
  93. package/dist/models/list-request-dto.d.ts +54 -0
  94. package/dist/models/list-request-dto.js +15 -0
  95. package/dist/models/list-search-keywords-request-dto.d.ts +24 -0
  96. package/dist/models/list-search-keywords-request-dto.js +15 -0
  97. package/dist/models/list-search-keywords-response-class.d.ts +24 -0
  98. package/dist/models/list-search-keywords-response-class.js +15 -0
  99. package/dist/models/list-searchable-document-owners-response-class.d.ts +25 -0
  100. package/dist/models/list-searchable-document-owners-response-class.js +15 -0
  101. package/dist/models/list-searchable-documents-request-dto.d.ts +30 -0
  102. package/dist/models/list-searchable-documents-request-dto.js +15 -0
  103. package/dist/models/list-searchable-documents-response-class.d.ts +31 -0
  104. package/dist/models/list-searchable-documents-response-class.js +15 -0
  105. package/dist/models/searchable-document-class.d.ts +66 -0
  106. package/dist/models/searchable-document-class.js +15 -0
  107. package/dist/models/searchable-document-owner-class.d.ts +30 -0
  108. package/dist/models/searchable-document-owner-class.js +15 -0
  109. package/dist/models/update-doc-template-request-dto.d.ts +55 -0
  110. package/dist/models/update-doc-template-request-dto.js +15 -0
  111. package/dist/models/update-doc-template-response-class.d.ts +25 -0
  112. package/dist/models/update-doc-template-response-class.js +15 -0
  113. package/dist/models/update-document-request-dto.d.ts +54 -0
  114. package/dist/models/update-document-request-dto.js +15 -0
  115. package/dist/models/update-document-response-class.d.ts +25 -0
  116. package/dist/models/update-document-response-class.js +15 -0
  117. package/dist/models/update-html-template-dto.d.ts +42 -0
  118. package/dist/models/update-html-template-dto.js +21 -0
  119. package/dist/models/update-layout-request-dto.d.ts +55 -0
  120. package/dist/models/update-layout-request-dto.js +15 -0
  121. package/dist/models/update-layout-response-class.d.ts +25 -0
  122. package/dist/models/update-layout-response-class.js +15 -0
  123. package/git_push.sh +57 -0
  124. package/index.ts +19 -0
  125. package/models/create-doc-template-request-dto.ts +55 -0
  126. package/models/create-doc-template-response-class.ts +31 -0
  127. package/models/create-document-request-dto.ts +167 -0
  128. package/models/create-document-sync-response-class.ts +31 -0
  129. package/models/create-html-template-dto.ts +30 -0
  130. package/models/create-layout-request-dto.ts +55 -0
  131. package/models/create-layout-response-class.ts +31 -0
  132. package/models/create-presigned-post-request-dto.ts +137 -0
  133. package/models/create-presigned-post-response-class.ts +36 -0
  134. package/models/delete-layout-request-dto.ts +30 -0
  135. package/models/delete-request-dto.ts +30 -0
  136. package/models/delete-response-class.ts +30 -0
  137. package/models/doc-template-class.ts +92 -0
  138. package/models/document-class.ts +173 -0
  139. package/models/download-document-request-dto.ts +36 -0
  140. package/models/get-doc-template-request-dto.ts +36 -0
  141. package/models/get-doc-template-response-class.ts +31 -0
  142. package/models/get-document-download-url-response-class.ts +30 -0
  143. package/models/get-layout-request-dto.ts +30 -0
  144. package/models/get-layout-response-class.ts +31 -0
  145. package/models/get-signed-s3-key-url-response-class.ts +30 -0
  146. package/models/html-template-class.ts +75 -0
  147. package/models/index.ts +42 -0
  148. package/models/layout-class.ts +85 -0
  149. package/models/list-doc-template-request-dto.ts +54 -0
  150. package/models/list-doc-templates-response-class.ts +37 -0
  151. package/models/list-documents-response-class.ts +37 -0
  152. package/models/list-layouts-response-class.ts +37 -0
  153. package/models/list-request-dto.ts +60 -0
  154. package/models/list-search-keywords-request-dto.ts +30 -0
  155. package/models/list-search-keywords-response-class.ts +30 -0
  156. package/models/list-searchable-document-owners-response-class.ts +31 -0
  157. package/models/list-searchable-documents-request-dto.ts +36 -0
  158. package/models/list-searchable-documents-response-class.ts +37 -0
  159. package/models/searchable-document-class.ts +72 -0
  160. package/models/searchable-document-owner-class.ts +36 -0
  161. package/models/update-doc-template-request-dto.ts +61 -0
  162. package/models/update-doc-template-response-class.ts +31 -0
  163. package/models/update-document-request-dto.ts +60 -0
  164. package/models/update-document-response-class.ts +31 -0
  165. package/models/update-html-template-dto.ts +51 -0
  166. package/models/update-layout-request-dto.ts +61 -0
  167. package/models/update-layout-response-class.ts +31 -0
  168. package/package.json +29 -0
  169. package/tsconfig.json +22 -0
@@ -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,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 { SearchableDocumentOwnerClass } from './searchable-document-owner-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListSearchableDocumentOwnersResponseClass
17
+ */
18
+ export interface ListSearchableDocumentOwnersResponseClass {
19
+ /**
20
+ * Searchable document owners
21
+ * @type {Array<SearchableDocumentOwnerClass>}
22
+ * @memberof ListSearchableDocumentOwnersResponseClass
23
+ */
24
+ 'owners': Array<SearchableDocumentOwnerClass>;
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 });
@@ -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 ListSearchableDocumentsRequestDto
16
+ */
17
+ export interface ListSearchableDocumentsRequestDto {
18
+ /**
19
+ * Text to search in the documents.
20
+ * @type {string}
21
+ * @memberof ListSearchableDocumentsRequestDto
22
+ */
23
+ 'searchText': string;
24
+ /**
25
+ * List of searched document owner IDs separated with | (search in all documents if an \'*\' list provided).
26
+ * @type {string}
27
+ * @memberof ListSearchableDocumentsRequestDto
28
+ */
29
+ 'ownerIds': 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 });
@@ -0,0 +1,31 @@
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 { SearchableDocumentClass } from './searchable-document-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListSearchableDocumentsResponseClass
17
+ */
18
+ export interface ListSearchableDocumentsResponseClass {
19
+ /**
20
+ * Searchable documents that match the search criteria.
21
+ * @type {Array<SearchableDocumentClass>}
22
+ * @memberof ListSearchableDocumentsResponseClass
23
+ */
24
+ 'documents': Array<SearchableDocumentClass>;
25
+ /**
26
+ * Keywords used for search and to be highlighted in the document preview.
27
+ * @type {Array<string>}
28
+ * @memberof ListSearchableDocumentsResponseClass
29
+ */
30
+ 'keywords': Array<string>;
31
+ }
@@ -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,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 });
@@ -0,0 +1,55 @@
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 { UpdateHtmlTemplateDto } from './update-html-template-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateDocTemplateRequestDto
17
+ */
18
+ export interface UpdateDocTemplateRequestDto {
19
+ /**
20
+ * Template name.
21
+ * @type {string}
22
+ * @memberof UpdateDocTemplateRequestDto
23
+ */
24
+ 'name': string;
25
+ /**
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
+ * @type {string}
28
+ * @memberof UpdateDocTemplateRequestDto
29
+ */
30
+ 'slug': string;
31
+ /**
32
+ * Unique identifier referencing the layout.
33
+ * @type {number}
34
+ * @memberof UpdateDocTemplateRequestDto
35
+ */
36
+ 'layoutId': number;
37
+ /**
38
+ * Body templates.
39
+ * @type {UpdateHtmlTemplateDto}
40
+ * @memberof UpdateDocTemplateRequestDto
41
+ */
42
+ 'bodyTemplate': UpdateHtmlTemplateDto;
43
+ /**
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}
46
+ * @memberof UpdateDocTemplateRequestDto
47
+ */
48
+ 'productSlug'?: string;
49
+ /**
50
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
51
+ * @type {number}
52
+ * @memberof UpdateDocTemplateRequestDto
53
+ */
54
+ 'id': number;
55
+ }
@@ -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,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 { DocTemplateClass } from './doc-template-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateDocTemplateResponseClass
17
+ */
18
+ export interface UpdateDocTemplateResponseClass {
19
+ /**
20
+ * Document template.
21
+ * @type {DocTemplateClass}
22
+ * @memberof UpdateDocTemplateResponseClass
23
+ */
24
+ 'template': DocTemplateClass;
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 });
@@ -0,0 +1,54 @@
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 UpdateDocumentRequestDto
16
+ */
17
+ export interface UpdateDocumentRequestDto {
18
+ /**
19
+ * Document description.
20
+ * @type {string}
21
+ * @memberof UpdateDocumentRequestDto
22
+ */
23
+ 'description'?: string;
24
+ /**
25
+ * Unique identifier of the policy that this object belongs to.
26
+ * @type {string}
27
+ * @memberof UpdateDocumentRequestDto
28
+ */
29
+ 'policyCode'?: string;
30
+ /**
31
+ * Unique identifier of the account that this object belongs to.
32
+ * @type {string}
33
+ * @memberof UpdateDocumentRequestDto
34
+ */
35
+ 'accountCode'?: string;
36
+ /**
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.
44
+ * @type {number}
45
+ * @memberof UpdateDocumentRequestDto
46
+ */
47
+ 'entityId'?: number;
48
+ /**
49
+ * Document code
50
+ * @type {string}
51
+ * @memberof UpdateDocumentRequestDto
52
+ */
53
+ 'code': string;
54
+ }
@@ -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,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 });
@@ -0,0 +1,42 @@
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 UpdateHtmlTemplateDto
16
+ */
17
+ export interface UpdateHtmlTemplateDto {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof UpdateHtmlTemplateDto
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Template type based on HTML layout elements: Header,Body and Footer.
26
+ * @type {string}
27
+ * @memberof UpdateHtmlTemplateDto
28
+ */
29
+ 'type': UpdateHtmlTemplateDtoTypeEnum;
30
+ /**
31
+ * Template draft content.
32
+ * @type {string}
33
+ * @memberof UpdateHtmlTemplateDto
34
+ */
35
+ 'draftContent': string;
36
+ }
37
+ export declare const UpdateHtmlTemplateDtoTypeEnum: {
38
+ readonly Header: "header";
39
+ readonly Footer: "footer";
40
+ readonly Body: "body";
41
+ };
42
+ export type UpdateHtmlTemplateDtoTypeEnum = typeof UpdateHtmlTemplateDtoTypeEnum[keyof typeof UpdateHtmlTemplateDtoTypeEnum];
@@ -0,0 +1,21 @@
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 });
16
+ exports.UpdateHtmlTemplateDtoTypeEnum = void 0;
17
+ exports.UpdateHtmlTemplateDtoTypeEnum = {
18
+ Header: 'header',
19
+ Footer: 'footer',
20
+ Body: 'body'
21
+ };
@@ -0,0 +1,55 @@
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 { UpdateHtmlTemplateDto } from './update-html-template-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateLayoutRequestDto
17
+ */
18
+ export interface UpdateLayoutRequestDto {
19
+ /**
20
+ * Layout name.
21
+ * @type {string}
22
+ * @memberof UpdateLayoutRequestDto
23
+ */
24
+ 'name': string;
25
+ /**
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
+ * @type {string}
28
+ * @memberof UpdateLayoutRequestDto
29
+ */
30
+ 'slug': string;
31
+ /**
32
+ * Header template.
33
+ * @type {UpdateHtmlTemplateDto}
34
+ * @memberof UpdateLayoutRequestDto
35
+ */
36
+ 'headerTemplate': UpdateHtmlTemplateDto;
37
+ /**
38
+ * Footer template.
39
+ * @type {UpdateHtmlTemplateDto}
40
+ * @memberof UpdateLayoutRequestDto
41
+ */
42
+ 'footerTemplate': UpdateHtmlTemplateDto;
43
+ /**
44
+ * Layout style.
45
+ * @type {string}
46
+ * @memberof UpdateLayoutRequestDto
47
+ */
48
+ 'style': string;
49
+ /**
50
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
51
+ * @type {number}
52
+ * @memberof UpdateLayoutRequestDto
53
+ */
54
+ 'id': number;
55
+ }
@@ -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,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 { LayoutClass } from './layout-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateLayoutResponseClass
17
+ */
18
+ export interface UpdateLayoutResponseClass {
19
+ /**
20
+ * Layout
21
+ * @type {LayoutClass}
22
+ * @memberof UpdateLayoutResponseClass
23
+ */
24
+ 'layout': LayoutClass;
25
+ }