@emilgroup/document-sdk 1.12.2 → 1.16.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 (157) hide show
  1. package/README.md +2 -2
  2. package/api/product-documents-api.ts +8 -206
  3. package/dist/api/default-api.d.ts +66 -0
  4. package/dist/api/default-api.js +196 -0
  5. package/dist/api/document-templates-api.d.ts +385 -0
  6. package/dist/api/document-templates-api.js +636 -0
  7. package/dist/api/documents-api.d.ts +488 -0
  8. package/dist/api/documents-api.js +817 -0
  9. package/dist/api/docx-templates-api.d.ts +432 -0
  10. package/dist/api/docx-templates-api.js +722 -0
  11. package/dist/api/layouts-api.d.ts +385 -0
  12. package/dist/api/layouts-api.js +638 -0
  13. package/dist/api/product-documents-api.d.ts +401 -0
  14. package/dist/api/product-documents-api.js +647 -0
  15. package/dist/api/search-keywords-api.d.ts +96 -0
  16. package/dist/api/search-keywords-api.js +225 -0
  17. package/dist/api/searchable-document-owners-api.d.ts +141 -0
  18. package/dist/api/searchable-document-owners-api.js +254 -0
  19. package/dist/api/searchable-documents-api.d.ts +114 -0
  20. package/dist/api/searchable-documents-api.js +239 -0
  21. package/dist/api.d.ts +20 -0
  22. package/dist/api.js +38 -0
  23. package/dist/base.d.ts +74 -0
  24. package/dist/base.js +298 -0
  25. package/dist/common.d.ts +91 -0
  26. package/dist/common.js +276 -0
  27. package/dist/configuration.d.ts +83 -0
  28. package/dist/configuration.js +44 -0
  29. package/dist/index.d.ts +15 -0
  30. package/dist/index.js +36 -0
  31. package/dist/models/create-doc-template-request-dto.d.ts +55 -0
  32. package/dist/models/create-doc-template-request-dto.js +15 -0
  33. package/dist/models/create-doc-template-response-class.d.ts +25 -0
  34. package/dist/models/create-doc-template-response-class.js +15 -0
  35. package/dist/models/create-document-request-dto.d.ts +162 -0
  36. package/dist/models/create-document-request-dto.js +60 -0
  37. package/dist/models/create-document-sync-response-class.d.ts +25 -0
  38. package/dist/models/create-document-sync-response-class.js +15 -0
  39. package/dist/models/create-html-template-dto.d.ts +24 -0
  40. package/dist/models/create-html-template-dto.js +15 -0
  41. package/dist/models/create-layout-request-dto.d.ts +49 -0
  42. package/dist/models/create-layout-request-dto.js +15 -0
  43. package/dist/models/create-layout-response-class.d.ts +25 -0
  44. package/dist/models/create-layout-response-class.js +15 -0
  45. package/dist/models/create-presigned-post-request-dto.d.ts +134 -0
  46. package/dist/models/create-presigned-post-request-dto.js +52 -0
  47. package/dist/models/create-presigned-post-response-class.d.ts +30 -0
  48. package/dist/models/create-presigned-post-response-class.js +15 -0
  49. package/dist/models/delete-layout-request-dto.d.ts +24 -0
  50. package/dist/models/delete-layout-request-dto.js +15 -0
  51. package/dist/models/delete-product-document-request-dto.d.ts +30 -0
  52. package/dist/models/delete-product-document-request-dto.js +15 -0
  53. package/dist/models/delete-request-dto.d.ts +24 -0
  54. package/dist/models/delete-request-dto.js +15 -0
  55. package/dist/models/delete-response-class.d.ts +24 -0
  56. package/dist/models/delete-response-class.js +15 -0
  57. package/dist/models/doc-template-class.d.ts +92 -0
  58. package/dist/models/doc-template-class.js +15 -0
  59. package/dist/models/document-class.d.ts +158 -0
  60. package/dist/models/document-class.js +52 -0
  61. package/dist/models/docx-template-class.d.ts +90 -0
  62. package/dist/models/docx-template-class.js +15 -0
  63. package/dist/models/download-document-request-dto.d.ts +30 -0
  64. package/dist/models/download-document-request-dto.js +15 -0
  65. package/dist/models/get-doc-template-request-dto.d.ts +30 -0
  66. package/dist/models/get-doc-template-request-dto.js +15 -0
  67. package/dist/models/get-doc-template-response-class.d.ts +25 -0
  68. package/dist/models/get-doc-template-response-class.js +15 -0
  69. package/dist/models/get-document-download-url-response-class.d.ts +24 -0
  70. package/dist/models/get-document-download-url-response-class.js +15 -0
  71. package/dist/models/get-docx-template-download-url-response-class.d.ts +24 -0
  72. package/dist/models/get-docx-template-download-url-response-class.js +15 -0
  73. package/dist/models/get-docx-template-response-class.d.ts +25 -0
  74. package/dist/models/get-docx-template-response-class.js +15 -0
  75. package/dist/models/get-layout-request-dto.d.ts +24 -0
  76. package/dist/models/get-layout-request-dto.js +15 -0
  77. package/dist/models/get-layout-response-class.d.ts +25 -0
  78. package/dist/models/get-layout-response-class.js +15 -0
  79. package/dist/models/get-product-document-download-url-response-class.d.ts +24 -0
  80. package/dist/models/get-product-document-download-url-response-class.js +15 -0
  81. package/dist/models/get-product-document-response-class.d.ts +25 -0
  82. package/dist/models/get-product-document-response-class.js +15 -0
  83. package/dist/models/get-signed-s3-key-url-response-class.d.ts +24 -0
  84. package/dist/models/get-signed-s3-key-url-response-class.js +15 -0
  85. package/dist/models/grpc-create-doc-template-request-dto.d.ts +55 -0
  86. package/dist/models/grpc-create-doc-template-request-dto.js +15 -0
  87. package/dist/models/grpc-update-doc-template-request-dto.d.ts +61 -0
  88. package/dist/models/grpc-update-doc-template-request-dto.js +15 -0
  89. package/dist/models/html-template-class.d.ts +66 -0
  90. package/dist/models/html-template-class.js +21 -0
  91. package/dist/models/index.d.ts +60 -0
  92. package/dist/models/index.js +76 -0
  93. package/dist/models/inline-response200.d.ts +54 -0
  94. package/dist/models/inline-response200.js +15 -0
  95. package/dist/models/inline-response503.d.ts +54 -0
  96. package/dist/models/inline-response503.js +15 -0
  97. package/dist/models/layout-class.d.ts +79 -0
  98. package/dist/models/layout-class.js +15 -0
  99. package/dist/models/list-doc-template-request-dto.d.ts +54 -0
  100. package/dist/models/list-doc-template-request-dto.js +15 -0
  101. package/dist/models/list-doc-templates-response-class.d.ts +31 -0
  102. package/dist/models/list-doc-templates-response-class.js +15 -0
  103. package/dist/models/list-documents-response-class.d.ts +31 -0
  104. package/dist/models/list-documents-response-class.js +15 -0
  105. package/dist/models/list-docx-templates-response-class.d.ts +31 -0
  106. package/dist/models/list-docx-templates-response-class.js +15 -0
  107. package/dist/models/list-layouts-response-class.d.ts +31 -0
  108. package/dist/models/list-layouts-response-class.js +15 -0
  109. package/dist/models/list-product-documents-response-class.d.ts +31 -0
  110. package/dist/models/list-product-documents-response-class.js +15 -0
  111. package/dist/models/list-request-dto.d.ts +54 -0
  112. package/dist/models/list-request-dto.js +15 -0
  113. package/dist/models/list-search-keywords-request-dto.d.ts +24 -0
  114. package/dist/models/list-search-keywords-request-dto.js +15 -0
  115. package/dist/models/list-search-keywords-response-class.d.ts +24 -0
  116. package/dist/models/list-search-keywords-response-class.js +15 -0
  117. package/dist/models/list-searchable-document-owners-request-dto.d.ts +31 -0
  118. package/dist/models/list-searchable-document-owners-request-dto.js +22 -0
  119. package/dist/models/list-searchable-document-owners-response-class.d.ts +25 -0
  120. package/dist/models/list-searchable-document-owners-response-class.js +15 -0
  121. package/dist/models/list-searchable-documents-request-dto.d.ts +43 -0
  122. package/dist/models/list-searchable-documents-request-dto.js +22 -0
  123. package/dist/models/list-searchable-documents-response-class.d.ts +31 -0
  124. package/dist/models/list-searchable-documents-response-class.js +15 -0
  125. package/dist/models/product-document-class.d.ts +117 -0
  126. package/dist/models/product-document-class.js +24 -0
  127. package/dist/models/searchable-document-class.d.ts +66 -0
  128. package/dist/models/searchable-document-class.js +15 -0
  129. package/dist/models/searchable-document-owner-class.d.ts +30 -0
  130. package/dist/models/searchable-document-owner-class.js +15 -0
  131. package/dist/models/shared-update-docx-template-request-dto.d.ts +36 -0
  132. package/dist/models/shared-update-docx-template-request-dto.js +15 -0
  133. package/dist/models/update-doc-template-request-dto.d.ts +61 -0
  134. package/dist/models/update-doc-template-request-dto.js +15 -0
  135. package/dist/models/update-doc-template-response-class.d.ts +25 -0
  136. package/dist/models/update-doc-template-response-class.js +15 -0
  137. package/dist/models/update-document-request-dto.d.ts +54 -0
  138. package/dist/models/update-document-request-dto.js +15 -0
  139. package/dist/models/update-document-response-class.d.ts +25 -0
  140. package/dist/models/update-document-response-class.js +15 -0
  141. package/dist/models/update-docx-template-response-class.d.ts +25 -0
  142. package/dist/models/update-docx-template-response-class.js +15 -0
  143. package/dist/models/update-html-template-dto.d.ts +42 -0
  144. package/dist/models/update-html-template-dto.js +21 -0
  145. package/dist/models/update-layout-request-dto.d.ts +55 -0
  146. package/dist/models/update-layout-request-dto.js +15 -0
  147. package/dist/models/update-layout-response-class.d.ts +25 -0
  148. package/dist/models/update-layout-response-class.js +15 -0
  149. package/dist/models/upload-docx-template-request-dto.d.ts +54 -0
  150. package/dist/models/upload-docx-template-request-dto.js +15 -0
  151. package/dist/models/upload-product-document-request-dto.d.ts +75 -0
  152. package/dist/models/upload-product-document-request-dto.js +24 -0
  153. package/models/docx-template-class.ts +1 -1
  154. package/models/inline-response200.ts +6 -6
  155. package/models/inline-response503.ts +6 -6
  156. package/models/product-document-class.ts +1 -1
  157. package/package.json +1 -1
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@1.12.2 --save
20
+ npm install @emilgroup/document-sdk@1.16.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/document-sdk@1.12.2
24
+ yarn add @emilgroup/document-sdk@1.16.0
25
25
  ```
26
26
 
27
27
  And then you can import `DocumentsApi`.
@@ -186,7 +186,6 @@ export const ProductDocumentsApiAxiosParamCreator = function (configuration?: Co
186
186
  /**
187
187
  * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
188
188
  * @summary List product documents
189
- * @param {string} productSlug
190
189
  * @param {string} [authorization] Bearer Token
191
190
  * @param {number} [pageSize] Page size
192
191
  * @param {string} [pageToken] Page token
@@ -197,86 +196,8 @@ export const ProductDocumentsApiAxiosParamCreator = function (configuration?: Co
197
196
  * @param {*} [options] Override http request option.
198
197
  * @throws {RequiredError}
199
198
  */
200
- listProductDocuments: async (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
201
- // verify required parameter 'productSlug' is not null or undefined
202
- assertParamExists('listProductDocuments', 'productSlug', productSlug)
203
- const localVarPath = `/documentservice/v1/documents/product/{productSlug}`
204
- .replace(`{${"productSlug"}}`, encodeURIComponent(String(productSlug)));
205
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
206
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
207
- let baseOptions;
208
- let baseAccessToken;
209
- if (configuration) {
210
- baseOptions = configuration.baseOptions;
211
- baseAccessToken = configuration.accessToken;
212
- }
213
-
214
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
215
- const localVarHeaderParameter = {} as any;
216
- const localVarQueryParameter = {} as any;
217
-
218
- // authentication bearer required
219
- // http bearer authentication required
220
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
221
-
222
- if (pageSize !== undefined) {
223
- localVarQueryParameter['pageSize'] = pageSize;
224
- }
225
-
226
- if (pageToken !== undefined) {
227
- localVarQueryParameter['pageToken'] = pageToken;
228
- }
229
-
230
- if (filter !== undefined) {
231
- localVarQueryParameter['filter'] = filter;
232
- }
233
-
234
- if (search !== undefined) {
235
- localVarQueryParameter['search'] = search;
236
- }
237
-
238
- if (order !== undefined) {
239
- localVarQueryParameter['order'] = order;
240
- }
241
-
242
- if (expand !== undefined) {
243
- localVarQueryParameter['expand'] = expand;
244
- }
245
-
246
- if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
247
- localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
248
- }
249
-
250
-
251
-
252
- setSearchParams(localVarUrlObj, localVarQueryParameter);
253
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
254
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
255
-
256
- return {
257
- url: toPathString(localVarUrlObj),
258
- options: localVarRequestOptions,
259
- };
260
- },
261
- /**
262
- * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
263
- * @summary List product documents
264
- * @param {string} productSlug
265
- * @param {string} [authorization] Bearer Token
266
- * @param {number} [pageSize] Page size
267
- * @param {string} [pageToken] Page token
268
- * @param {string} [filter] List filter
269
- * @param {string} [search] Search query
270
- * @param {string} [order] Ordering criteria
271
- * @param {string} [expand] Extra fields to fetch
272
- * @param {*} [options] Override http request option.
273
- * @throws {RequiredError}
274
- */
275
- listProductDocuments_1: async (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
276
- // verify required parameter 'productSlug' is not null or undefined
277
- assertParamExists('listProductDocuments_1', 'productSlug', productSlug)
278
- const localVarPath = `/documentservice/v1/documents/product`
279
- .replace(`{${"productSlug"}}`, encodeURIComponent(String(productSlug)));
199
+ listProductDocuments: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
200
+ const localVarPath = `/documentservice/v1/documents/product`;
280
201
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
281
202
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
282
203
  let baseOptions;
@@ -436,7 +357,6 @@ export const ProductDocumentsApiFp = function(configuration?: Configuration) {
436
357
  /**
437
358
  * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
438
359
  * @summary List product documents
439
- * @param {string} productSlug
440
360
  * @param {string} [authorization] Bearer Token
441
361
  * @param {number} [pageSize] Page size
442
362
  * @param {string} [pageToken] Page token
@@ -447,26 +367,8 @@ export const ProductDocumentsApiFp = function(configuration?: Configuration) {
447
367
  * @param {*} [options] Override http request option.
448
368
  * @throws {RequiredError}
449
369
  */
450
- async listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>> {
451
- const localVarAxiosArgs = await localVarAxiosParamCreator.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options);
452
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
453
- },
454
- /**
455
- * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
456
- * @summary List product documents
457
- * @param {string} productSlug
458
- * @param {string} [authorization] Bearer Token
459
- * @param {number} [pageSize] Page size
460
- * @param {string} [pageToken] Page token
461
- * @param {string} [filter] List filter
462
- * @param {string} [search] Search query
463
- * @param {string} [order] Ordering criteria
464
- * @param {string} [expand] Extra fields to fetch
465
- * @param {*} [options] Override http request option.
466
- * @throws {RequiredError}
467
- */
468
- async listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>> {
469
- const localVarAxiosArgs = await localVarAxiosParamCreator.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options);
370
+ async listProductDocuments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>> {
371
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listProductDocuments(authorization, pageSize, pageToken, filter, search, order, expand, options);
470
372
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
471
373
  },
472
374
  /**
@@ -531,24 +433,6 @@ export const ProductDocumentsApiFactory = function (configuration?: Configuratio
531
433
  /**
532
434
  * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
533
435
  * @summary List product documents
534
- * @param {string} productSlug
535
- * @param {string} [authorization] Bearer Token
536
- * @param {number} [pageSize] Page size
537
- * @param {string} [pageToken] Page token
538
- * @param {string} [filter] List filter
539
- * @param {string} [search] Search query
540
- * @param {string} [order] Ordering criteria
541
- * @param {string} [expand] Extra fields to fetch
542
- * @param {*} [options] Override http request option.
543
- * @throws {RequiredError}
544
- */
545
- listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass> {
546
- return localVarFp.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options).then((request) => request(axios, basePath));
547
- },
548
- /**
549
- * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
550
- * @summary List product documents
551
- * @param {string} productSlug
552
436
  * @param {string} [authorization] Bearer Token
553
437
  * @param {number} [pageSize] Page size
554
438
  * @param {string} [pageToken] Page token
@@ -559,8 +443,8 @@ export const ProductDocumentsApiFactory = function (configuration?: Configuratio
559
443
  * @param {*} [options] Override http request option.
560
444
  * @throws {RequiredError}
561
445
  */
562
- listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass> {
563
- return localVarFp.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options).then((request) => request(axios, basePath));
446
+ listProductDocuments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass> {
447
+ return localVarFp.listProductDocuments(authorization, pageSize, pageToken, filter, search, order, expand, options).then((request) => request(axios, basePath));
564
448
  },
565
449
  /**
566
450
  * Upload a product document.
@@ -667,13 +551,6 @@ export interface ProductDocumentsApiGetProductDocumentRequest {
667
551
  * @interface ProductDocumentsApiListProductDocumentsRequest
668
552
  */
669
553
  export interface ProductDocumentsApiListProductDocumentsRequest {
670
- /**
671
- *
672
- * @type {string}
673
- * @memberof ProductDocumentsApiListProductDocuments
674
- */
675
- readonly productSlug: string
676
-
677
554
  /**
678
555
  * Bearer Token
679
556
  * @type {string}
@@ -724,69 +601,6 @@ export interface ProductDocumentsApiListProductDocumentsRequest {
724
601
  readonly expand?: string
725
602
  }
726
603
 
727
- /**
728
- * Request parameters for listProductDocuments_1 operation in ProductDocumentsApi.
729
- * @export
730
- * @interface ProductDocumentsApiListProductDocuments0Request
731
- */
732
- export interface ProductDocumentsApiListProductDocuments0Request {
733
- /**
734
- *
735
- * @type {string}
736
- * @memberof ProductDocumentsApiListProductDocuments0
737
- */
738
- readonly productSlug: string
739
-
740
- /**
741
- * Bearer Token
742
- * @type {string}
743
- * @memberof ProductDocumentsApiListProductDocuments0
744
- */
745
- readonly authorization?: string
746
-
747
- /**
748
- * Page size
749
- * @type {number}
750
- * @memberof ProductDocumentsApiListProductDocuments0
751
- */
752
- readonly pageSize?: number
753
-
754
- /**
755
- * Page token
756
- * @type {string}
757
- * @memberof ProductDocumentsApiListProductDocuments0
758
- */
759
- readonly pageToken?: string
760
-
761
- /**
762
- * List filter
763
- * @type {string}
764
- * @memberof ProductDocumentsApiListProductDocuments0
765
- */
766
- readonly filter?: string
767
-
768
- /**
769
- * Search query
770
- * @type {string}
771
- * @memberof ProductDocumentsApiListProductDocuments0
772
- */
773
- readonly search?: string
774
-
775
- /**
776
- * Ordering criteria
777
- * @type {string}
778
- * @memberof ProductDocumentsApiListProductDocuments0
779
- */
780
- readonly order?: string
781
-
782
- /**
783
- * Extra fields to fetch
784
- * @type {string}
785
- * @memberof ProductDocumentsApiListProductDocuments0
786
- */
787
- readonly expand?: string
788
- }
789
-
790
604
  /**
791
605
  * Request parameters for uploadProductDocument operation in ProductDocumentsApi.
792
606
  * @export
@@ -866,20 +680,8 @@ export class ProductDocumentsApi extends BaseAPI {
866
680
  * @throws {RequiredError}
867
681
  * @memberof ProductDocumentsApi
868
682
  */
869
- public listProductDocuments(requestParameters: ProductDocumentsApiListProductDocumentsRequest, options?: AxiosRequestConfig) {
870
- return ProductDocumentsApiFp(this.configuration).listProductDocuments(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
871
- }
872
-
873
- /**
874
- * Returns a list of product documents you have previously created. The product documents are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
875
- * @summary List product documents
876
- * @param {ProductDocumentsApiListProductDocuments0Request} requestParameters Request parameters.
877
- * @param {*} [options] Override http request option.
878
- * @throws {RequiredError}
879
- * @memberof ProductDocumentsApi
880
- */
881
- public listProductDocuments_1(requestParameters: ProductDocumentsApiListProductDocuments0Request, options?: AxiosRequestConfig) {
882
- return ProductDocumentsApiFp(this.configuration).listProductDocuments_1(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
683
+ public listProductDocuments(requestParameters: ProductDocumentsApiListProductDocumentsRequest = {}, options?: AxiosRequestConfig) {
684
+ return ProductDocumentsApiFp(this.configuration).listProductDocuments(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
883
685
  }
884
686
 
885
687
  /**
@@ -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
+ * Contact: kontakt@emil.de
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { InlineResponse200 } from '../models';
16
+ /**
17
+ * DefaultApi - axios parameter creator
18
+ * @export
19
+ */
20
+ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
21
+ /**
22
+ *
23
+ * @param {*} [options] Override http request option.
24
+ * @throws {RequiredError}
25
+ */
26
+ check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
27
+ };
28
+ /**
29
+ * DefaultApi - functional programming interface
30
+ * @export
31
+ */
32
+ export declare const DefaultApiFp: (configuration?: Configuration) => {
33
+ /**
34
+ *
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
39
+ };
40
+ /**
41
+ * DefaultApi - factory interface
42
+ * @export
43
+ */
44
+ export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
45
+ /**
46
+ *
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ check(options?: any): AxiosPromise<InlineResponse200>;
51
+ };
52
+ /**
53
+ * DefaultApi - object-oriented interface
54
+ * @export
55
+ * @class DefaultApi
56
+ * @extends {BaseAPI}
57
+ */
58
+ export declare class DefaultApi extends BaseAPI {
59
+ /**
60
+ *
61
+ * @param {*} [options] Override http request option.
62
+ * @throws {RequiredError}
63
+ * @memberof DefaultApi
64
+ */
65
+ check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
66
+ }
@@ -0,0 +1,196 @@
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
+ * Contact: kontakt@emil.de
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.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = 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
+ /**
89
+ * DefaultApi - axios parameter creator
90
+ * @export
91
+ */
92
+ var DefaultApiAxiosParamCreator = function (configuration) {
93
+ var _this = this;
94
+ return {
95
+ /**
96
+ *
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ check: function (options) {
101
+ if (options === void 0) { options = {}; }
102
+ return __awaiter(_this, void 0, void 0, function () {
103
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
104
+ return __generator(this, function (_a) {
105
+ localVarPath = "/documentservice/health";
106
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
107
+ if (configuration) {
108
+ baseOptions = configuration.baseOptions;
109
+ baseAccessToken = configuration.accessToken;
110
+ }
111
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
112
+ localVarHeaderParameter = {};
113
+ localVarQueryParameter = {};
114
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
115
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
116
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
117
+ return [2 /*return*/, {
118
+ url: (0, common_1.toPathString)(localVarUrlObj),
119
+ options: localVarRequestOptions,
120
+ }];
121
+ });
122
+ });
123
+ },
124
+ };
125
+ };
126
+ exports.DefaultApiAxiosParamCreator = DefaultApiAxiosParamCreator;
127
+ /**
128
+ * DefaultApi - functional programming interface
129
+ * @export
130
+ */
131
+ var DefaultApiFp = function (configuration) {
132
+ var localVarAxiosParamCreator = (0, exports.DefaultApiAxiosParamCreator)(configuration);
133
+ return {
134
+ /**
135
+ *
136
+ * @param {*} [options] Override http request option.
137
+ * @throws {RequiredError}
138
+ */
139
+ check: function (options) {
140
+ return __awaiter(this, void 0, void 0, function () {
141
+ var localVarAxiosArgs;
142
+ return __generator(this, function (_a) {
143
+ switch (_a.label) {
144
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
145
+ case 1:
146
+ localVarAxiosArgs = _a.sent();
147
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
148
+ }
149
+ });
150
+ });
151
+ },
152
+ };
153
+ };
154
+ exports.DefaultApiFp = DefaultApiFp;
155
+ /**
156
+ * DefaultApi - factory interface
157
+ * @export
158
+ */
159
+ var DefaultApiFactory = function (configuration, basePath, axios) {
160
+ var localVarFp = (0, exports.DefaultApiFp)(configuration);
161
+ return {
162
+ /**
163
+ *
164
+ * @param {*} [options] Override http request option.
165
+ * @throws {RequiredError}
166
+ */
167
+ check: function (options) {
168
+ return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
169
+ },
170
+ };
171
+ };
172
+ exports.DefaultApiFactory = DefaultApiFactory;
173
+ /**
174
+ * DefaultApi - object-oriented interface
175
+ * @export
176
+ * @class DefaultApi
177
+ * @extends {BaseAPI}
178
+ */
179
+ var DefaultApi = /** @class */ (function (_super) {
180
+ __extends(DefaultApi, _super);
181
+ function DefaultApi() {
182
+ return _super !== null && _super.apply(this, arguments) || this;
183
+ }
184
+ /**
185
+ *
186
+ * @param {*} [options] Override http request option.
187
+ * @throws {RequiredError}
188
+ * @memberof DefaultApi
189
+ */
190
+ DefaultApi.prototype.check = function (options) {
191
+ var _this = this;
192
+ return (0, exports.DefaultApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
193
+ };
194
+ return DefaultApi;
195
+ }(base_1.BaseAPI));
196
+ exports.DefaultApi = DefaultApi;