@emilgroup/document-sdk-node 1.1.0 → 1.2.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 (61) hide show
  1. package/.openapi-generator/FILES +0 -7
  2. package/README.md +2 -2
  3. package/api/document-templates-api.ts +2 -4
  4. package/api/documents-api.ts +4 -213
  5. package/api/searchable-document-owners-api.ts +18 -18
  6. package/api.ts +0 -2
  7. package/base.ts +4 -4
  8. package/dist/api/document-templates-api.d.ts +3 -4
  9. package/dist/api/documents-api.d.ts +4 -113
  10. package/dist/api/documents-api.js +4 -187
  11. package/dist/api/searchable-document-owners-api.d.ts +15 -15
  12. package/dist/api/searchable-document-owners-api.js +8 -8
  13. package/dist/api.d.ts +0 -1
  14. package/dist/api.js +0 -1
  15. package/dist/base.d.ts +1 -1
  16. package/dist/base.js +4 -4
  17. package/dist/models/create-doc-template-request-dto.d.ts +3 -9
  18. package/dist/models/create-document-request-dto.d.ts +0 -12
  19. package/dist/models/create-html-template-dto.d.ts +1 -1
  20. package/dist/models/doc-template-class.d.ts +18 -24
  21. package/dist/models/document-class.d.ts +2 -14
  22. package/dist/models/html-template-class.d.ts +7 -7
  23. package/dist/models/index.d.ts +0 -6
  24. package/dist/models/index.js +0 -6
  25. package/dist/models/layout-class.d.ts +10 -10
  26. package/dist/models/list-searchable-documents-response-class.d.ts +1 -1
  27. package/dist/models/update-doc-template-request-dto.d.ts +6 -12
  28. package/dist/models/update-document-request-dto.d.ts +0 -6
  29. package/models/create-doc-template-request-dto.ts +3 -9
  30. package/models/create-document-request-dto.ts +0 -12
  31. package/models/create-html-template-dto.ts +1 -1
  32. package/models/doc-template-class.ts +18 -24
  33. package/models/document-class.ts +2 -14
  34. package/models/html-template-class.ts +7 -7
  35. package/models/index.ts +0 -6
  36. package/models/layout-class.ts +10 -10
  37. package/models/list-searchable-documents-response-class.ts +1 -1
  38. package/models/update-doc-template-request-dto.ts +6 -12
  39. package/models/update-document-request-dto.ts +0 -6
  40. package/package.json +2 -2
  41. package/api/search-keywords-api.ts +0 -164
  42. package/dist/api/search-keywords-api.d.ts +0 -92
  43. package/dist/api/search-keywords-api.js +0 -225
  44. package/dist/models/create-doc-template-response-class.d.ts +0 -25
  45. package/dist/models/create-doc-template-response-class.js +0 -15
  46. package/dist/models/create-presigned-post-request-dto.d.ts +0 -127
  47. package/dist/models/create-presigned-post-request-dto.js +0 -51
  48. package/dist/models/create-presigned-post-response-class.d.ts +0 -30
  49. package/dist/models/create-presigned-post-response-class.js +0 -15
  50. package/dist/models/get-signed-s3-key-url-response-class.d.ts +0 -24
  51. package/dist/models/get-signed-s3-key-url-response-class.js +0 -15
  52. package/dist/models/list-search-keywords-request-dto.d.ts +0 -24
  53. package/dist/models/list-search-keywords-request-dto.js +0 -15
  54. package/dist/models/list-search-keywords-response-class.d.ts +0 -24
  55. package/dist/models/list-search-keywords-response-class.js +0 -15
  56. package/models/create-doc-template-response-class.ts +0 -31
  57. package/models/create-presigned-post-request-dto.ts +0 -137
  58. package/models/create-presigned-post-response-class.ts +0 -36
  59. package/models/get-signed-s3-key-url-response-class.ts +0 -30
  60. package/models/list-search-keywords-request-dto.ts +0 -30
  61. package/models/list-search-keywords-response-class.ts +0 -30
@@ -1,225 +0,0 @@
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
- var __extends = (this && this.__extends) || (function () {
16
- var extendStatics = function (d, b) {
17
- extendStatics = Object.setPrototypeOf ||
18
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
- return extendStatics(d, b);
21
- };
22
- return function (d, b) {
23
- if (typeof b !== "function" && b !== null)
24
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
- extendStatics(d, b);
26
- function __() { this.constructor = d; }
27
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
- };
29
- })();
30
- var __assign = (this && this.__assign) || function () {
31
- __assign = Object.assign || function(t) {
32
- for (var s, i = 1, n = arguments.length; i < n; i++) {
33
- s = arguments[i];
34
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
35
- t[p] = s[p];
36
- }
37
- return t;
38
- };
39
- return __assign.apply(this, arguments);
40
- };
41
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
42
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
43
- return new (P || (P = Promise))(function (resolve, reject) {
44
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
45
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
46
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
47
- step((generator = generator.apply(thisArg, _arguments || [])).next());
48
- });
49
- };
50
- var __generator = (this && this.__generator) || function (thisArg, body) {
51
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
52
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
53
- function verb(n) { return function (v) { return step([n, v]); }; }
54
- function step(op) {
55
- if (f) throw new TypeError("Generator is already executing.");
56
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
57
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
58
- if (y = 0, t) op = [op[0] & 2, t.value];
59
- switch (op[0]) {
60
- case 0: case 1: t = op; break;
61
- case 4: _.label++; return { value: op[1], done: false };
62
- case 5: _.label++; y = op[1]; op = [0]; continue;
63
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
64
- default:
65
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
66
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
67
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
68
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
69
- if (t[2]) _.ops.pop();
70
- _.trys.pop(); continue;
71
- }
72
- op = body.call(thisArg, _);
73
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
74
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
75
- }
76
- };
77
- var __importDefault = (this && this.__importDefault) || function (mod) {
78
- return (mod && mod.__esModule) ? mod : { "default": mod };
79
- };
80
- Object.defineProperty(exports, "__esModule", { value: true });
81
- exports.SearchKeywordsApi = exports.SearchKeywordsApiFactory = exports.SearchKeywordsApiFp = exports.SearchKeywordsApiAxiosParamCreator = void 0;
82
- var axios_1 = __importDefault(require("axios"));
83
- // Some imports not used depending on template conditions
84
- // @ts-ignore
85
- var common_1 = require("../common");
86
- // @ts-ignore
87
- var base_1 = require("../base");
88
- // URLSearchParams not necessarily used
89
- // @ts-ignore
90
- var url_1 = require("url");
91
- var FormData = require('form-data');
92
- /**
93
- * SearchKeywordsApi - axios parameter creator
94
- * @export
95
- */
96
- var SearchKeywordsApiAxiosParamCreator = function (configuration) {
97
- var _this = this;
98
- return {
99
- /**
100
- *
101
- * @param {string} searchText Text to search in the documents
102
- * @param {string} [authorization] Bearer Token
103
- * @param {*} [options] Override http request option.
104
- * @throws {RequiredError}
105
- */
106
- listSearchKeywords: function (searchText, authorization, options) {
107
- if (options === void 0) { options = {}; }
108
- return __awaiter(_this, void 0, void 0, function () {
109
- var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
110
- return __generator(this, function (_a) {
111
- switch (_a.label) {
112
- case 0:
113
- // verify required parameter 'searchText' is not null or undefined
114
- (0, common_1.assertParamExists)('listSearchKeywords', 'searchText', searchText);
115
- localVarPath = "/documentservice/v1/search-keywords";
116
- localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
117
- if (configuration) {
118
- baseOptions = configuration.baseOptions;
119
- baseAccessToken = configuration.accessToken;
120
- }
121
- localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
122
- localVarHeaderParameter = {};
123
- localVarQueryParameter = {};
124
- // authentication bearer required
125
- // http bearer authentication required
126
- return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
127
- case 1:
128
- // authentication bearer required
129
- // http bearer authentication required
130
- _a.sent();
131
- if (searchText !== undefined) {
132
- localVarQueryParameter['searchText'] = searchText;
133
- }
134
- if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
135
- localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
136
- }
137
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
138
- headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
139
- localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
140
- return [2 /*return*/, {
141
- url: (0, common_1.toPathString)(localVarUrlObj),
142
- options: localVarRequestOptions,
143
- }];
144
- }
145
- });
146
- });
147
- },
148
- };
149
- };
150
- exports.SearchKeywordsApiAxiosParamCreator = SearchKeywordsApiAxiosParamCreator;
151
- /**
152
- * SearchKeywordsApi - functional programming interface
153
- * @export
154
- */
155
- var SearchKeywordsApiFp = function (configuration) {
156
- var localVarAxiosParamCreator = (0, exports.SearchKeywordsApiAxiosParamCreator)(configuration);
157
- return {
158
- /**
159
- *
160
- * @param {string} searchText Text to search in the documents
161
- * @param {string} [authorization] Bearer Token
162
- * @param {*} [options] Override http request option.
163
- * @throws {RequiredError}
164
- */
165
- listSearchKeywords: function (searchText, authorization, options) {
166
- return __awaiter(this, void 0, void 0, function () {
167
- var localVarAxiosArgs;
168
- return __generator(this, function (_a) {
169
- switch (_a.label) {
170
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSearchKeywords(searchText, authorization, options)];
171
- case 1:
172
- localVarAxiosArgs = _a.sent();
173
- return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
174
- }
175
- });
176
- });
177
- },
178
- };
179
- };
180
- exports.SearchKeywordsApiFp = SearchKeywordsApiFp;
181
- /**
182
- * SearchKeywordsApi - factory interface
183
- * @export
184
- */
185
- var SearchKeywordsApiFactory = function (configuration, basePath, axios) {
186
- var localVarFp = (0, exports.SearchKeywordsApiFp)(configuration);
187
- return {
188
- /**
189
- *
190
- * @param {string} searchText Text to search in the documents
191
- * @param {string} [authorization] Bearer Token
192
- * @param {*} [options] Override http request option.
193
- * @throws {RequiredError}
194
- */
195
- listSearchKeywords: function (searchText, authorization, options) {
196
- return localVarFp.listSearchKeywords(searchText, authorization, options).then(function (request) { return request(axios, basePath); });
197
- },
198
- };
199
- };
200
- exports.SearchKeywordsApiFactory = SearchKeywordsApiFactory;
201
- /**
202
- * SearchKeywordsApi - object-oriented interface
203
- * @export
204
- * @class SearchKeywordsApi
205
- * @extends {BaseAPI}
206
- */
207
- var SearchKeywordsApi = /** @class */ (function (_super) {
208
- __extends(SearchKeywordsApi, _super);
209
- function SearchKeywordsApi() {
210
- return _super !== null && _super.apply(this, arguments) || this;
211
- }
212
- /**
213
- *
214
- * @param {SearchKeywordsApiListSearchKeywordsRequest} requestParameters Request parameters.
215
- * @param {*} [options] Override http request option.
216
- * @throws {RequiredError}
217
- * @memberof SearchKeywordsApi
218
- */
219
- SearchKeywordsApi.prototype.listSearchKeywords = function (requestParameters, options) {
220
- var _this = this;
221
- return (0, exports.SearchKeywordsApiFp)(this.configuration).listSearchKeywords(requestParameters.searchText, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
222
- };
223
- return SearchKeywordsApi;
224
- }(base_1.BaseAPI));
225
- exports.SearchKeywordsApi = SearchKeywordsApi;
@@ -1,25 +0,0 @@
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 CreateDocTemplateResponseClass
17
- */
18
- export interface CreateDocTemplateResponseClass {
19
- /**
20
- *
21
- * @type {DocTemplateClass}
22
- * @memberof CreateDocTemplateResponseClass
23
- */
24
- 'template': DocTemplateClass;
25
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,127 +0,0 @@
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 CreatePresignedPostRequestDto
16
- */
17
- export interface CreatePresignedPostRequestDto {
18
- /**
19
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. In this case, the template used for this document.
20
- * @type {string}
21
- * @memberof CreatePresignedPostRequestDto
22
- */
23
- 'templateSlug': string;
24
- /**
25
- * Document entity type
26
- * @type {string}
27
- * @memberof CreatePresignedPostRequestDto
28
- */
29
- 'entityType': string;
30
- /**
31
- * Identifier of the entity that the document is related to
32
- * @type {number}
33
- * @memberof CreatePresignedPostRequestDto
34
- */
35
- 'entityId': number;
36
- /**
37
- * Description of the document. Usually a short summary about the context in which the document is being used.
38
- * @type {string}
39
- * @memberof CreatePresignedPostRequestDto
40
- */
41
- 'description': string;
42
- /**
43
- * Unique identifier of the policy that the document belongs to
44
- * @type {string}
45
- * @memberof CreatePresignedPostRequestDto
46
- */
47
- 'policyCode'?: string;
48
- /**
49
- * Unique identifier of the account that the document belongs to
50
- * @type {string}
51
- * @memberof CreatePresignedPostRequestDto
52
- */
53
- 'accountCode'?: string;
54
- /**
55
- * Unique identifier of the lead that the document belongs to
56
- * @type {string}
57
- * @memberof CreatePresignedPostRequestDto
58
- */
59
- 'leadCode'?: string;
60
- /**
61
- * Identifier of the service that requested the creation of this document.
62
- * @type {string}
63
- * @memberof CreatePresignedPostRequestDto
64
- */
65
- 'requester': CreatePresignedPostRequestDtoRequesterEnum;
66
- /**
67
- * Extension of the file
68
- * @type {string}
69
- * @memberof CreatePresignedPostRequestDto
70
- */
71
- 'contentType': CreatePresignedPostRequestDtoContentTypeEnum;
72
- /**
73
- * Content type of the file
74
- * @type {string}
75
- * @memberof CreatePresignedPostRequestDto
76
- */
77
- 'isoContentType': string;
78
- /**
79
- * Name of the file the end user will see when he downloads it.
80
- * @type {string}
81
- * @memberof CreatePresignedPostRequestDto
82
- */
83
- 'filename': string;
84
- /**
85
- * The product slug that this file belong to.
86
- * @type {string}
87
- * @memberof CreatePresignedPostRequestDto
88
- */
89
- 'productSlug'?: string | null;
90
- }
91
- export declare const CreatePresignedPostRequestDtoRequesterEnum: {
92
- readonly Accountservice: "accountservice";
93
- readonly Insuranceservice: "insuranceservice";
94
- readonly Billingservice: "billingservice";
95
- readonly Tenantservice: "tenantservice";
96
- readonly BookingFunnel: "bookingFunnel";
97
- readonly Publicapi: "publicapi";
98
- readonly Admin: "admin";
99
- readonly Claimservice: "claimservice";
100
- readonly Customerservice: "customerservice";
101
- readonly Notificationservice: "notificationservice";
102
- readonly Paymentservice: "paymentservice";
103
- readonly Processmanager: "processmanager";
104
- readonly Gdvservice: "gdvservice";
105
- };
106
- export type CreatePresignedPostRequestDtoRequesterEnum = typeof CreatePresignedPostRequestDtoRequesterEnum[keyof typeof CreatePresignedPostRequestDtoRequesterEnum];
107
- export declare const CreatePresignedPostRequestDtoContentTypeEnum: {
108
- readonly Pdf: "pdf";
109
- readonly Jpg: "jpg";
110
- readonly Png: "png";
111
- readonly Gz: "gz";
112
- readonly Csv: "csv";
113
- readonly Doc: "doc";
114
- readonly Docx: "docx";
115
- readonly Html: "html";
116
- readonly Json: "json";
117
- readonly Xml: "xml";
118
- readonly Txt: "txt";
119
- readonly Zip: "zip";
120
- readonly Tar: "tar";
121
- readonly Rar: "rar";
122
- readonly Mp4: "MP4";
123
- readonly Mov: "MOV";
124
- readonly Wmv: "WMV";
125
- readonly Avi: "AVI";
126
- };
127
- export type CreatePresignedPostRequestDtoContentTypeEnum = typeof CreatePresignedPostRequestDtoContentTypeEnum[keyof typeof CreatePresignedPostRequestDtoContentTypeEnum];
@@ -1,51 +0,0 @@
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.CreatePresignedPostRequestDtoContentTypeEnum = exports.CreatePresignedPostRequestDtoRequesterEnum = void 0;
17
- exports.CreatePresignedPostRequestDtoRequesterEnum = {
18
- Accountservice: 'accountservice',
19
- Insuranceservice: 'insuranceservice',
20
- Billingservice: 'billingservice',
21
- Tenantservice: 'tenantservice',
22
- BookingFunnel: 'bookingFunnel',
23
- Publicapi: 'publicapi',
24
- Admin: 'admin',
25
- Claimservice: 'claimservice',
26
- Customerservice: 'customerservice',
27
- Notificationservice: 'notificationservice',
28
- Paymentservice: 'paymentservice',
29
- Processmanager: 'processmanager',
30
- Gdvservice: 'gdvservice'
31
- };
32
- exports.CreatePresignedPostRequestDtoContentTypeEnum = {
33
- Pdf: 'pdf',
34
- Jpg: 'jpg',
35
- Png: 'png',
36
- Gz: 'gz',
37
- Csv: 'csv',
38
- Doc: 'doc',
39
- Docx: 'docx',
40
- Html: 'html',
41
- Json: 'json',
42
- Xml: 'xml',
43
- Txt: 'txt',
44
- Zip: 'zip',
45
- Tar: 'tar',
46
- Rar: 'rar',
47
- Mp4: 'MP4',
48
- Mov: 'MOV',
49
- Wmv: 'WMV',
50
- Avi: 'AVI'
51
- };
@@ -1,30 +0,0 @@
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 CreatePresignedPostResponseClass
16
- */
17
- export interface CreatePresignedPostResponseClass {
18
- /**
19
- * Upload document fields
20
- * @type {object}
21
- * @memberof CreatePresignedPostResponseClass
22
- */
23
- 'fields': object;
24
- /**
25
- * Pre-signed Url
26
- * @type {string}
27
- * @memberof CreatePresignedPostResponseClass
28
- */
29
- 'url': string;
30
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,24 +0,0 @@
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 GetSignedS3KeyUrlResponseClass
16
- */
17
- export interface GetSignedS3KeyUrlResponseClass {
18
- /**
19
- * Pre-signed Url
20
- * @type {string}
21
- * @memberof GetSignedS3KeyUrlResponseClass
22
- */
23
- 'url': string;
24
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,24 +0,0 @@
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
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,24 +0,0 @@
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
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,31 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL DocumentService
5
- * The EMIL DocumentService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
- import { DocTemplateClass } from './doc-template-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface CreateDocTemplateResponseClass
22
- */
23
- export interface CreateDocTemplateResponseClass {
24
- /**
25
- *
26
- * @type {DocTemplateClass}
27
- * @memberof CreateDocTemplateResponseClass
28
- */
29
- 'template': DocTemplateClass;
30
- }
31
-