@emilgroup/document-sdk 1.12.3 → 1.20.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.
- package/.openapi-generator/FILES +0 -1
- package/README.md +2 -2
- package/api/docx-templates-api.ts +4 -4
- package/api/product-documents-api.ts +210 -12
- package/base.ts +1 -0
- package/dist/api/docx-templates-api.d.ts +4 -4
- package/dist/api/product-documents-api.d.ts +126 -8
- package/dist/api/product-documents-api.js +141 -8
- package/dist/base.js +1 -0
- package/dist/models/create-document-request-dto.d.ts +1 -12
- package/dist/models/create-document-request-dto.js +1 -11
- package/dist/models/document-class.d.ts +1 -12
- package/dist/models/document-class.js +1 -11
- package/dist/models/docx-template-class.d.ts +1 -12
- package/dist/models/docx-template-class.js +0 -11
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/inline-response200.d.ts +6 -6
- package/dist/models/inline-response503.d.ts +6 -6
- package/dist/models/product-document-class.d.ts +8 -25
- package/dist/models/product-document-class.js +2 -24
- package/models/create-document-request-dto.ts +1 -13
- package/models/document-class.ts +1 -13
- package/models/docx-template-class.ts +1 -15
- package/models/index.ts +0 -1
- package/models/inline-response200.ts +6 -6
- package/models/inline-response503.ts +6 -6
- package/models/product-document-class.ts +9 -27
- package/package.json +1 -1
- package/dist/models/upload-docx-template-response-class.d.ts +0 -30
- package/dist/models/upload-docx-template-response-class.js +0 -15
- package/models/upload-docx-template-response-class.ts +0 -36
package/.openapi-generator/FILES
CHANGED
|
@@ -77,7 +77,6 @@ models/update-html-template-dto.ts
|
|
|
77
77
|
models/update-layout-request-dto.ts
|
|
78
78
|
models/update-layout-response-class.ts
|
|
79
79
|
models/upload-docx-template-request-dto.ts
|
|
80
|
-
models/upload-docx-template-response-class.ts
|
|
81
80
|
models/upload-product-document-request-dto.ts
|
|
82
81
|
package.json
|
|
83
82
|
tsconfig.json
|
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.
|
|
20
|
+
npm install @emilgroup/document-sdk@1.20.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/document-sdk@1.
|
|
24
|
+
yarn add @emilgroup/document-sdk@1.20.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `DocumentsApi`.
|
|
@@ -21,6 +21,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { CreatePresignedPostResponseClass } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
24
26
|
import { DeleteResponseClass } from '../models';
|
|
25
27
|
// @ts-ignore
|
|
26
28
|
import { GetDocxTemplateDownloadUrlResponseClass } from '../models';
|
|
@@ -34,8 +36,6 @@ import { SharedUpdateDocxTemplateRequestDto } from '../models';
|
|
|
34
36
|
import { UpdateDocxTemplateResponseClass } from '../models';
|
|
35
37
|
// @ts-ignore
|
|
36
38
|
import { UploadDocxTemplateRequestDto } from '../models';
|
|
37
|
-
// @ts-ignore
|
|
38
|
-
import { UploadDocxTemplateResponseClass } from '../models';
|
|
39
39
|
/**
|
|
40
40
|
* DocxTemplatesApi - axios parameter creator
|
|
41
41
|
* @export
|
|
@@ -430,7 +430,7 @@ export const DocxTemplatesApiFp = function(configuration?: Configuration) {
|
|
|
430
430
|
* @param {*} [options] Override http request option.
|
|
431
431
|
* @throws {RequiredError}
|
|
432
432
|
*/
|
|
433
|
-
async uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
433
|
+
async uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePresignedPostResponseClass>> {
|
|
434
434
|
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadDocxTemplate(uploadDocxTemplateRequestDto, authorization, options);
|
|
435
435
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
436
436
|
},
|
|
@@ -513,7 +513,7 @@ export const DocxTemplatesApiFactory = function (configuration?: Configuration,
|
|
|
513
513
|
* @param {*} [options] Override http request option.
|
|
514
514
|
* @throws {RequiredError}
|
|
515
515
|
*/
|
|
516
|
-
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
516
|
+
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePresignedPostResponseClass> {
|
|
517
517
|
return localVarFp.uploadDocxTemplate(uploadDocxTemplateRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
518
518
|
},
|
|
519
519
|
};
|
|
@@ -21,14 +21,14 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { CreatePresignedPostResponseClass } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
24
26
|
import { GetProductDocumentDownloadUrlResponseClass } from '../models';
|
|
25
27
|
// @ts-ignore
|
|
26
28
|
import { GetProductDocumentResponseClass } from '../models';
|
|
27
29
|
// @ts-ignore
|
|
28
30
|
import { ListProductDocumentsResponseClass } from '../models';
|
|
29
31
|
// @ts-ignore
|
|
30
|
-
import { ProductDocumentClass } from '../models';
|
|
31
|
-
// @ts-ignore
|
|
32
32
|
import { UploadProductDocumentRequestDto } from '../models';
|
|
33
33
|
/**
|
|
34
34
|
* ProductDocumentsApi - axios parameter creator
|
|
@@ -186,6 +186,82 @@ 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
|
+
* @param {string} [authorization] Bearer Token
|
|
191
|
+
* @param {number} [pageSize] Page size
|
|
192
|
+
* @param {string} [pageToken] Page token
|
|
193
|
+
* @param {string} [filter] List filter
|
|
194
|
+
* @param {string} [search] Search query
|
|
195
|
+
* @param {string} [order] Ordering criteria
|
|
196
|
+
* @param {string} [expand] Extra fields to fetch
|
|
197
|
+
* @param {*} [options] Override http request option.
|
|
198
|
+
* @throws {RequiredError}
|
|
199
|
+
*/
|
|
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
|
|
189
265
|
* @param {string} [authorization] Bearer Token
|
|
190
266
|
* @param {number} [pageSize] Page size
|
|
191
267
|
* @param {string} [pageToken] Page token
|
|
@@ -196,8 +272,11 @@ export const ProductDocumentsApiAxiosParamCreator = function (configuration?: Co
|
|
|
196
272
|
* @param {*} [options] Override http request option.
|
|
197
273
|
* @throws {RequiredError}
|
|
198
274
|
*/
|
|
199
|
-
|
|
200
|
-
|
|
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)));
|
|
201
280
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
202
281
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
203
282
|
let baseOptions;
|
|
@@ -357,6 +436,7 @@ export const ProductDocumentsApiFp = function(configuration?: Configuration) {
|
|
|
357
436
|
/**
|
|
358
437
|
* 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.
|
|
359
438
|
* @summary List product documents
|
|
439
|
+
* @param {string} productSlug
|
|
360
440
|
* @param {string} [authorization] Bearer Token
|
|
361
441
|
* @param {number} [pageSize] Page size
|
|
362
442
|
* @param {string} [pageToken] Page token
|
|
@@ -367,8 +447,26 @@ export const ProductDocumentsApiFp = function(configuration?: Configuration) {
|
|
|
367
447
|
* @param {*} [options] Override http request option.
|
|
368
448
|
* @throws {RequiredError}
|
|
369
449
|
*/
|
|
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);
|
|
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);
|
|
372
470
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
373
471
|
},
|
|
374
472
|
/**
|
|
@@ -380,7 +478,7 @@ export const ProductDocumentsApiFp = function(configuration?: Configuration) {
|
|
|
380
478
|
* @param {*} [options] Override http request option.
|
|
381
479
|
* @throws {RequiredError}
|
|
382
480
|
*/
|
|
383
|
-
async uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
481
|
+
async uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePresignedPostResponseClass>> {
|
|
384
482
|
const localVarAxiosArgs = await localVarAxiosParamCreator.uploadProductDocument(productSlug, uploadProductDocumentRequestDto, authorization, options);
|
|
385
483
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
386
484
|
},
|
|
@@ -433,6 +531,7 @@ export const ProductDocumentsApiFactory = function (configuration?: Configuratio
|
|
|
433
531
|
/**
|
|
434
532
|
* 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.
|
|
435
533
|
* @summary List product documents
|
|
534
|
+
* @param {string} productSlug
|
|
436
535
|
* @param {string} [authorization] Bearer Token
|
|
437
536
|
* @param {number} [pageSize] Page size
|
|
438
537
|
* @param {string} [pageToken] Page token
|
|
@@ -443,8 +542,25 @@ export const ProductDocumentsApiFactory = function (configuration?: Configuratio
|
|
|
443
542
|
* @param {*} [options] Override http request option.
|
|
444
543
|
* @throws {RequiredError}
|
|
445
544
|
*/
|
|
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));
|
|
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
|
+
* @param {string} [authorization] Bearer Token
|
|
553
|
+
* @param {number} [pageSize] Page size
|
|
554
|
+
* @param {string} [pageToken] Page token
|
|
555
|
+
* @param {string} [filter] List filter
|
|
556
|
+
* @param {string} [search] Search query
|
|
557
|
+
* @param {string} [order] Ordering criteria
|
|
558
|
+
* @param {string} [expand] Extra fields to fetch
|
|
559
|
+
* @param {*} [options] Override http request option.
|
|
560
|
+
* @throws {RequiredError}
|
|
561
|
+
*/
|
|
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));
|
|
448
564
|
},
|
|
449
565
|
/**
|
|
450
566
|
* Upload a product document.
|
|
@@ -455,7 +571,7 @@ export const ProductDocumentsApiFactory = function (configuration?: Configuratio
|
|
|
455
571
|
* @param {*} [options] Override http request option.
|
|
456
572
|
* @throws {RequiredError}
|
|
457
573
|
*/
|
|
458
|
-
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
574
|
+
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePresignedPostResponseClass> {
|
|
459
575
|
return localVarFp.uploadProductDocument(productSlug, uploadProductDocumentRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
460
576
|
},
|
|
461
577
|
};
|
|
@@ -551,6 +667,13 @@ export interface ProductDocumentsApiGetProductDocumentRequest {
|
|
|
551
667
|
* @interface ProductDocumentsApiListProductDocumentsRequest
|
|
552
668
|
*/
|
|
553
669
|
export interface ProductDocumentsApiListProductDocumentsRequest {
|
|
670
|
+
/**
|
|
671
|
+
*
|
|
672
|
+
* @type {string}
|
|
673
|
+
* @memberof ProductDocumentsApiListProductDocuments
|
|
674
|
+
*/
|
|
675
|
+
readonly productSlug: string
|
|
676
|
+
|
|
554
677
|
/**
|
|
555
678
|
* Bearer Token
|
|
556
679
|
* @type {string}
|
|
@@ -601,6 +724,69 @@ export interface ProductDocumentsApiListProductDocumentsRequest {
|
|
|
601
724
|
readonly expand?: string
|
|
602
725
|
}
|
|
603
726
|
|
|
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
|
+
|
|
604
790
|
/**
|
|
605
791
|
* Request parameters for uploadProductDocument operation in ProductDocumentsApi.
|
|
606
792
|
* @export
|
|
@@ -680,8 +866,20 @@ export class ProductDocumentsApi extends BaseAPI {
|
|
|
680
866
|
* @throws {RequiredError}
|
|
681
867
|
* @memberof ProductDocumentsApi
|
|
682
868
|
*/
|
|
683
|
-
public listProductDocuments(requestParameters: ProductDocumentsApiListProductDocumentsRequest
|
|
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));
|
|
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));
|
|
685
883
|
}
|
|
686
884
|
|
|
687
885
|
/**
|
package/base.ts
CHANGED
|
@@ -87,6 +87,7 @@ export class BaseAPI {
|
|
|
87
87
|
if (configuration) {
|
|
88
88
|
this.configuration = configuration;
|
|
89
89
|
this.basePath = configuration.basePath || this.basePath;
|
|
90
|
+
this.configuration.accessToken = this.tokenData.accessToken ? `Bearer ${this.tokenData.accessToken}` : '';
|
|
90
91
|
} else {
|
|
91
92
|
const { accessToken, username } = this.tokenData;
|
|
92
93
|
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreatePresignedPostResponseClass } from '../models';
|
|
15
16
|
import { DeleteResponseClass } from '../models';
|
|
16
17
|
import { GetDocxTemplateDownloadUrlResponseClass } from '../models';
|
|
17
18
|
import { GetDocxTemplateResponseClass } from '../models';
|
|
@@ -19,7 +20,6 @@ import { ListDocxTemplatesResponseClass } from '../models';
|
|
|
19
20
|
import { SharedUpdateDocxTemplateRequestDto } from '../models';
|
|
20
21
|
import { UpdateDocxTemplateResponseClass } from '../models';
|
|
21
22
|
import { UploadDocxTemplateRequestDto } from '../models';
|
|
22
|
-
import { UploadDocxTemplateResponseClass } from '../models';
|
|
23
23
|
/**
|
|
24
24
|
* DocxTemplatesApi - axios parameter creator
|
|
25
25
|
* @export
|
|
@@ -150,7 +150,7 @@ export declare const DocxTemplatesApiFp: (configuration?: Configuration) => {
|
|
|
150
150
|
* @param {*} [options] Override http request option.
|
|
151
151
|
* @throws {RequiredError}
|
|
152
152
|
*/
|
|
153
|
-
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
153
|
+
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePresignedPostResponseClass>>;
|
|
154
154
|
};
|
|
155
155
|
/**
|
|
156
156
|
* DocxTemplatesApi - factory interface
|
|
@@ -216,7 +216,7 @@ export declare const DocxTemplatesApiFactory: (configuration?: Configuration, ba
|
|
|
216
216
|
* @param {*} [options] Override http request option.
|
|
217
217
|
* @throws {RequiredError}
|
|
218
218
|
*/
|
|
219
|
-
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
219
|
+
uploadDocxTemplate(uploadDocxTemplateRequestDto: UploadDocxTemplateRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePresignedPostResponseClass>;
|
|
220
220
|
};
|
|
221
221
|
/**
|
|
222
222
|
* Request parameters for deleteDocxTemplate operation in DocxTemplatesApi.
|
|
@@ -428,5 +428,5 @@ export declare class DocxTemplatesApi extends BaseAPI {
|
|
|
428
428
|
* @throws {RequiredError}
|
|
429
429
|
* @memberof DocxTemplatesApi
|
|
430
430
|
*/
|
|
431
|
-
uploadDocxTemplate(requestParameters: DocxTemplatesApiUploadDocxTemplateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
431
|
+
uploadDocxTemplate(requestParameters: DocxTemplatesApiUploadDocxTemplateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePresignedPostResponseClass, any>>;
|
|
432
432
|
}
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreatePresignedPostResponseClass } from '../models';
|
|
15
16
|
import { GetProductDocumentDownloadUrlResponseClass } from '../models';
|
|
16
17
|
import { GetProductDocumentResponseClass } from '../models';
|
|
17
18
|
import { ListProductDocumentsResponseClass } from '../models';
|
|
18
|
-
import { ProductDocumentClass } from '../models';
|
|
19
19
|
import { UploadProductDocumentRequestDto } from '../models';
|
|
20
20
|
/**
|
|
21
21
|
* ProductDocumentsApi - axios parameter creator
|
|
@@ -55,6 +55,22 @@ export declare const ProductDocumentsApiAxiosParamCreator: (configuration?: Conf
|
|
|
55
55
|
/**
|
|
56
56
|
* 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.
|
|
57
57
|
* @summary List product documents
|
|
58
|
+
* @param {string} productSlug
|
|
59
|
+
* @param {string} [authorization] Bearer Token
|
|
60
|
+
* @param {number} [pageSize] Page size
|
|
61
|
+
* @param {string} [pageToken] Page token
|
|
62
|
+
* @param {string} [filter] List filter
|
|
63
|
+
* @param {string} [search] Search query
|
|
64
|
+
* @param {string} [order] Ordering criteria
|
|
65
|
+
* @param {string} [expand] Extra fields to fetch
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
*/
|
|
69
|
+
listProductDocuments: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
|
+
/**
|
|
71
|
+
* 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.
|
|
72
|
+
* @summary List product documents
|
|
73
|
+
* @param {string} productSlug
|
|
58
74
|
* @param {string} [authorization] Bearer Token
|
|
59
75
|
* @param {number} [pageSize] Page size
|
|
60
76
|
* @param {string} [pageToken] Page token
|
|
@@ -65,7 +81,7 @@ export declare const ProductDocumentsApiAxiosParamCreator: (configuration?: Conf
|
|
|
65
81
|
* @param {*} [options] Override http request option.
|
|
66
82
|
* @throws {RequiredError}
|
|
67
83
|
*/
|
|
68
|
-
|
|
84
|
+
listProductDocuments_1: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
85
|
/**
|
|
70
86
|
* Upload a product document.
|
|
71
87
|
* @summary Create the product document
|
|
@@ -115,6 +131,7 @@ export declare const ProductDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
115
131
|
/**
|
|
116
132
|
* 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.
|
|
117
133
|
* @summary List product documents
|
|
134
|
+
* @param {string} productSlug
|
|
118
135
|
* @param {string} [authorization] Bearer Token
|
|
119
136
|
* @param {number} [pageSize] Page size
|
|
120
137
|
* @param {string} [pageToken] Page token
|
|
@@ -125,7 +142,22 @@ export declare const ProductDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
125
142
|
* @param {*} [options] Override http request option.
|
|
126
143
|
* @throws {RequiredError}
|
|
127
144
|
*/
|
|
128
|
-
listProductDocuments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>>;
|
|
145
|
+
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>>;
|
|
146
|
+
/**
|
|
147
|
+
* 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.
|
|
148
|
+
* @summary List product documents
|
|
149
|
+
* @param {string} productSlug
|
|
150
|
+
* @param {string} [authorization] Bearer Token
|
|
151
|
+
* @param {number} [pageSize] Page size
|
|
152
|
+
* @param {string} [pageToken] Page token
|
|
153
|
+
* @param {string} [filter] List filter
|
|
154
|
+
* @param {string} [search] Search query
|
|
155
|
+
* @param {string} [order] Ordering criteria
|
|
156
|
+
* @param {string} [expand] Extra fields to fetch
|
|
157
|
+
* @param {*} [options] Override http request option.
|
|
158
|
+
* @throws {RequiredError}
|
|
159
|
+
*/
|
|
160
|
+
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>>;
|
|
129
161
|
/**
|
|
130
162
|
* Upload a product document.
|
|
131
163
|
* @summary Create the product document
|
|
@@ -135,7 +167,7 @@ export declare const ProductDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
135
167
|
* @param {*} [options] Override http request option.
|
|
136
168
|
* @throws {RequiredError}
|
|
137
169
|
*/
|
|
138
|
-
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
170
|
+
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePresignedPostResponseClass>>;
|
|
139
171
|
};
|
|
140
172
|
/**
|
|
141
173
|
* ProductDocumentsApi - factory interface
|
|
@@ -175,6 +207,7 @@ export declare const ProductDocumentsApiFactory: (configuration?: Configuration,
|
|
|
175
207
|
/**
|
|
176
208
|
* 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.
|
|
177
209
|
* @summary List product documents
|
|
210
|
+
* @param {string} productSlug
|
|
178
211
|
* @param {string} [authorization] Bearer Token
|
|
179
212
|
* @param {number} [pageSize] Page size
|
|
180
213
|
* @param {string} [pageToken] Page token
|
|
@@ -185,7 +218,22 @@ export declare const ProductDocumentsApiFactory: (configuration?: Configuration,
|
|
|
185
218
|
* @param {*} [options] Override http request option.
|
|
186
219
|
* @throws {RequiredError}
|
|
187
220
|
*/
|
|
188
|
-
listProductDocuments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
221
|
+
listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
222
|
+
/**
|
|
223
|
+
* 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.
|
|
224
|
+
* @summary List product documents
|
|
225
|
+
* @param {string} productSlug
|
|
226
|
+
* @param {string} [authorization] Bearer Token
|
|
227
|
+
* @param {number} [pageSize] Page size
|
|
228
|
+
* @param {string} [pageToken] Page token
|
|
229
|
+
* @param {string} [filter] List filter
|
|
230
|
+
* @param {string} [search] Search query
|
|
231
|
+
* @param {string} [order] Ordering criteria
|
|
232
|
+
* @param {string} [expand] Extra fields to fetch
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
189
237
|
/**
|
|
190
238
|
* Upload a product document.
|
|
191
239
|
* @summary Create the product document
|
|
@@ -195,7 +243,7 @@ export declare const ProductDocumentsApiFactory: (configuration?: Configuration,
|
|
|
195
243
|
* @param {*} [options] Override http request option.
|
|
196
244
|
* @throws {RequiredError}
|
|
197
245
|
*/
|
|
198
|
-
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
246
|
+
uploadProductDocument(productSlug: string, uploadProductDocumentRequestDto: UploadProductDocumentRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePresignedPostResponseClass>;
|
|
199
247
|
};
|
|
200
248
|
/**
|
|
201
249
|
* Request parameters for deleteProductDocument operation in ProductDocumentsApi.
|
|
@@ -278,6 +326,12 @@ export interface ProductDocumentsApiGetProductDocumentRequest {
|
|
|
278
326
|
* @interface ProductDocumentsApiListProductDocumentsRequest
|
|
279
327
|
*/
|
|
280
328
|
export interface ProductDocumentsApiListProductDocumentsRequest {
|
|
329
|
+
/**
|
|
330
|
+
*
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof ProductDocumentsApiListProductDocuments
|
|
333
|
+
*/
|
|
334
|
+
readonly productSlug: string;
|
|
281
335
|
/**
|
|
282
336
|
* Bearer Token
|
|
283
337
|
* @type {string}
|
|
@@ -321,6 +375,61 @@ export interface ProductDocumentsApiListProductDocumentsRequest {
|
|
|
321
375
|
*/
|
|
322
376
|
readonly expand?: string;
|
|
323
377
|
}
|
|
378
|
+
/**
|
|
379
|
+
* Request parameters for listProductDocuments_1 operation in ProductDocumentsApi.
|
|
380
|
+
* @export
|
|
381
|
+
* @interface ProductDocumentsApiListProductDocuments0Request
|
|
382
|
+
*/
|
|
383
|
+
export interface ProductDocumentsApiListProductDocuments0Request {
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @type {string}
|
|
387
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
388
|
+
*/
|
|
389
|
+
readonly productSlug: string;
|
|
390
|
+
/**
|
|
391
|
+
* Bearer Token
|
|
392
|
+
* @type {string}
|
|
393
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
394
|
+
*/
|
|
395
|
+
readonly authorization?: string;
|
|
396
|
+
/**
|
|
397
|
+
* Page size
|
|
398
|
+
* @type {number}
|
|
399
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
400
|
+
*/
|
|
401
|
+
readonly pageSize?: number;
|
|
402
|
+
/**
|
|
403
|
+
* Page token
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
406
|
+
*/
|
|
407
|
+
readonly pageToken?: string;
|
|
408
|
+
/**
|
|
409
|
+
* List filter
|
|
410
|
+
* @type {string}
|
|
411
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
412
|
+
*/
|
|
413
|
+
readonly filter?: string;
|
|
414
|
+
/**
|
|
415
|
+
* Search query
|
|
416
|
+
* @type {string}
|
|
417
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
418
|
+
*/
|
|
419
|
+
readonly search?: string;
|
|
420
|
+
/**
|
|
421
|
+
* Ordering criteria
|
|
422
|
+
* @type {string}
|
|
423
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
424
|
+
*/
|
|
425
|
+
readonly order?: string;
|
|
426
|
+
/**
|
|
427
|
+
* Extra fields to fetch
|
|
428
|
+
* @type {string}
|
|
429
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
430
|
+
*/
|
|
431
|
+
readonly expand?: string;
|
|
432
|
+
}
|
|
324
433
|
/**
|
|
325
434
|
* Request parameters for uploadProductDocument operation in ProductDocumentsApi.
|
|
326
435
|
* @export
|
|
@@ -388,7 +497,16 @@ export declare class ProductDocumentsApi extends BaseAPI {
|
|
|
388
497
|
* @throws {RequiredError}
|
|
389
498
|
* @memberof ProductDocumentsApi
|
|
390
499
|
*/
|
|
391
|
-
listProductDocuments(requestParameters
|
|
500
|
+
listProductDocuments(requestParameters: ProductDocumentsApiListProductDocumentsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListProductDocumentsResponseClass, any>>;
|
|
501
|
+
/**
|
|
502
|
+
* 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.
|
|
503
|
+
* @summary List product documents
|
|
504
|
+
* @param {ProductDocumentsApiListProductDocuments0Request} requestParameters Request parameters.
|
|
505
|
+
* @param {*} [options] Override http request option.
|
|
506
|
+
* @throws {RequiredError}
|
|
507
|
+
* @memberof ProductDocumentsApi
|
|
508
|
+
*/
|
|
509
|
+
listProductDocuments_1(requestParameters: ProductDocumentsApiListProductDocuments0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListProductDocumentsResponseClass, any>>;
|
|
392
510
|
/**
|
|
393
511
|
* Upload a product document.
|
|
394
512
|
* @summary Create the product document
|
|
@@ -397,5 +515,5 @@ export declare class ProductDocumentsApi extends BaseAPI {
|
|
|
397
515
|
* @throws {RequiredError}
|
|
398
516
|
* @memberof ProductDocumentsApi
|
|
399
517
|
*/
|
|
400
|
-
uploadProductDocument(requestParameters: ProductDocumentsApiUploadProductDocumentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
518
|
+
uploadProductDocument(requestParameters: ProductDocumentsApiUploadProductDocumentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePresignedPostResponseClass, any>>;
|
|
401
519
|
}
|