@emilgroup/document-sdk 1.20.0 → 1.22.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/README.md +2 -2
- package/api/documents-api.ts +20 -6
- package/api/docx-templates-api.ts +20 -6
- package/api/layouts-api.ts +20 -6
- package/api/product-documents-api.ts +40 -12
- package/api/searchable-document-owners-api.ts +20 -6
- package/dist/api/documents-api.d.ts +12 -3
- package/dist/api/documents-api.js +12 -6
- package/dist/api/docx-templates-api.d.ts +12 -3
- package/dist/api/docx-templates-api.js +12 -6
- package/dist/api/layouts-api.d.ts +12 -3
- package/dist/api/layouts-api.js +12 -6
- package/dist/api/product-documents-api.d.ts +24 -6
- package/dist/api/product-documents-api.js +24 -12
- package/dist/api/searchable-document-owners-api.d.ts +12 -3
- package/dist/api/searchable-document-owners-api.js +12 -6
- package/dist/models/create-document-request-dto.d.ts +1 -0
- package/dist/models/create-document-request-dto.js +2 -1
- package/dist/models/create-presigned-post-request-dto.d.ts +1 -0
- package/dist/models/create-presigned-post-request-dto.js +2 -1
- package/dist/models/document-class.d.ts +7 -0
- package/dist/models/document-class.js +2 -1
- package/dist/models/list-request-dto.d.ts +6 -0
- package/models/create-document-request-dto.ts +2 -1
- package/models/create-presigned-post-request-dto.ts +2 -1
- package/models/document-class.ts +8 -1
- package/models/list-request-dto.ts +6 -0
- package/package.json +1 -1
|
@@ -62,10 +62,11 @@ export declare const DocxTemplatesApiAxiosParamCreator: (configuration?: Configu
|
|
|
62
62
|
* @param {string} [search] Search query
|
|
63
63
|
* @param {string} [order] Ordering criteria
|
|
64
64
|
* @param {string} [expand] Extra fields to fetch
|
|
65
|
+
* @param {string} [filters] List filters
|
|
65
66
|
* @param {*} [options] Override http request option.
|
|
66
67
|
* @throws {RequiredError}
|
|
67
68
|
*/
|
|
68
|
-
listDocxTemplates: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
|
+
listDocxTemplates: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
70
|
/**
|
|
70
71
|
* Updates a docx template metadata.
|
|
71
72
|
* @summary Update the docx template
|
|
@@ -128,10 +129,11 @@ export declare const DocxTemplatesApiFp: (configuration?: Configuration) => {
|
|
|
128
129
|
* @param {string} [search] Search query
|
|
129
130
|
* @param {string} [order] Ordering criteria
|
|
130
131
|
* @param {string} [expand] Extra fields to fetch
|
|
132
|
+
* @param {string} [filters] List filters
|
|
131
133
|
* @param {*} [options] Override http request option.
|
|
132
134
|
* @throws {RequiredError}
|
|
133
135
|
*/
|
|
134
|
-
listDocxTemplates(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDocxTemplatesResponseClass>>;
|
|
136
|
+
listDocxTemplates(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDocxTemplatesResponseClass>>;
|
|
135
137
|
/**
|
|
136
138
|
* Updates a docx template metadata.
|
|
137
139
|
* @summary Update the docx template
|
|
@@ -194,10 +196,11 @@ export declare const DocxTemplatesApiFactory: (configuration?: Configuration, ba
|
|
|
194
196
|
* @param {string} [search] Search query
|
|
195
197
|
* @param {string} [order] Ordering criteria
|
|
196
198
|
* @param {string} [expand] Extra fields to fetch
|
|
199
|
+
* @param {string} [filters] List filters
|
|
197
200
|
* @param {*} [options] Override http request option.
|
|
198
201
|
* @throws {RequiredError}
|
|
199
202
|
*/
|
|
200
|
-
listDocxTemplates(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListDocxTemplatesResponseClass>;
|
|
203
|
+
listDocxTemplates(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListDocxTemplatesResponseClass>;
|
|
201
204
|
/**
|
|
202
205
|
* Updates a docx template metadata.
|
|
203
206
|
* @summary Update the docx template
|
|
@@ -323,6 +326,12 @@ export interface DocxTemplatesApiListDocxTemplatesRequest {
|
|
|
323
326
|
* @memberof DocxTemplatesApiListDocxTemplates
|
|
324
327
|
*/
|
|
325
328
|
readonly expand?: string;
|
|
329
|
+
/**
|
|
330
|
+
* List filters
|
|
331
|
+
* @type {string}
|
|
332
|
+
* @memberof DocxTemplatesApiListDocxTemplates
|
|
333
|
+
*/
|
|
334
|
+
readonly filters?: string;
|
|
326
335
|
}
|
|
327
336
|
/**
|
|
328
337
|
* Request parameters for updateDocxTemplate operation in DocxTemplatesApi.
|
|
@@ -246,10 +246,11 @@ var DocxTemplatesApiAxiosParamCreator = function (configuration) {
|
|
|
246
246
|
* @param {string} [search] Search query
|
|
247
247
|
* @param {string} [order] Ordering criteria
|
|
248
248
|
* @param {string} [expand] Extra fields to fetch
|
|
249
|
+
* @param {string} [filters] List filters
|
|
249
250
|
* @param {*} [options] Override http request option.
|
|
250
251
|
* @throws {RequiredError}
|
|
251
252
|
*/
|
|
252
|
-
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
253
|
+
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
253
254
|
if (options === void 0) { options = {}; }
|
|
254
255
|
return __awaiter(_this, void 0, void 0, function () {
|
|
255
256
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -290,6 +291,9 @@ var DocxTemplatesApiAxiosParamCreator = function (configuration) {
|
|
|
290
291
|
if (expand !== undefined) {
|
|
291
292
|
localVarQueryParameter['expand'] = expand;
|
|
292
293
|
}
|
|
294
|
+
if (filters !== undefined) {
|
|
295
|
+
localVarQueryParameter['filters'] = filters;
|
|
296
|
+
}
|
|
293
297
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
294
298
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
295
299
|
}
|
|
@@ -489,15 +493,16 @@ var DocxTemplatesApiFp = function (configuration) {
|
|
|
489
493
|
* @param {string} [search] Search query
|
|
490
494
|
* @param {string} [order] Ordering criteria
|
|
491
495
|
* @param {string} [expand] Extra fields to fetch
|
|
496
|
+
* @param {string} [filters] List filters
|
|
492
497
|
* @param {*} [options] Override http request option.
|
|
493
498
|
* @throws {RequiredError}
|
|
494
499
|
*/
|
|
495
|
-
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
500
|
+
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
496
501
|
return __awaiter(this, void 0, void 0, function () {
|
|
497
502
|
var localVarAxiosArgs;
|
|
498
503
|
return __generator(this, function (_a) {
|
|
499
504
|
switch (_a.label) {
|
|
500
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDocxTemplates(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
505
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDocxTemplates(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
501
506
|
case 1:
|
|
502
507
|
localVarAxiosArgs = _a.sent();
|
|
503
508
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -601,11 +606,12 @@ var DocxTemplatesApiFactory = function (configuration, basePath, axios) {
|
|
|
601
606
|
* @param {string} [search] Search query
|
|
602
607
|
* @param {string} [order] Ordering criteria
|
|
603
608
|
* @param {string} [expand] Extra fields to fetch
|
|
609
|
+
* @param {string} [filters] List filters
|
|
604
610
|
* @param {*} [options] Override http request option.
|
|
605
611
|
* @throws {RequiredError}
|
|
606
612
|
*/
|
|
607
|
-
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
608
|
-
return localVarFp.listDocxTemplates(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
613
|
+
listDocxTemplates: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
614
|
+
return localVarFp.listDocxTemplates(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
609
615
|
},
|
|
610
616
|
/**
|
|
611
617
|
* Updates a docx template metadata.
|
|
@@ -691,7 +697,7 @@ var DocxTemplatesApi = /** @class */ (function (_super) {
|
|
|
691
697
|
DocxTemplatesApi.prototype.listDocxTemplates = function (requestParameters, options) {
|
|
692
698
|
var _this = this;
|
|
693
699
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
694
|
-
return (0, exports.DocxTemplatesApiFp)(this.configuration).listDocxTemplates(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
700
|
+
return (0, exports.DocxTemplatesApiFp)(this.configuration).listDocxTemplates(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
695
701
|
};
|
|
696
702
|
/**
|
|
697
703
|
* Updates a docx template metadata.
|
|
@@ -62,10 +62,11 @@ export declare const LayoutsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
62
62
|
* @param {string} [search] Search query
|
|
63
63
|
* @param {string} [order] Ordering criteria
|
|
64
64
|
* @param {string} [expand] Extra fields to fetch
|
|
65
|
+
* @param {string} [filters] List filters
|
|
65
66
|
* @param {*} [options] Override http request option.
|
|
66
67
|
* @throws {RequiredError}
|
|
67
68
|
*/
|
|
68
|
-
listLayouts: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
|
+
listLayouts: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
70
|
/**
|
|
70
71
|
* Updates the specified layout by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
71
72
|
* @summary Update the layout
|
|
@@ -120,10 +121,11 @@ export declare const LayoutsApiFp: (configuration?: Configuration) => {
|
|
|
120
121
|
* @param {string} [search] Search query
|
|
121
122
|
* @param {string} [order] Ordering criteria
|
|
122
123
|
* @param {string} [expand] Extra fields to fetch
|
|
124
|
+
* @param {string} [filters] List filters
|
|
123
125
|
* @param {*} [options] Override http request option.
|
|
124
126
|
* @throws {RequiredError}
|
|
125
127
|
*/
|
|
126
|
-
listLayouts(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListLayoutsResponseClass>>;
|
|
128
|
+
listLayouts(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListLayoutsResponseClass>>;
|
|
127
129
|
/**
|
|
128
130
|
* Updates the specified layout by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
129
131
|
* @summary Update the layout
|
|
@@ -178,10 +180,11 @@ export declare const LayoutsApiFactory: (configuration?: Configuration, basePath
|
|
|
178
180
|
* @param {string} [search] Search query
|
|
179
181
|
* @param {string} [order] Ordering criteria
|
|
180
182
|
* @param {string} [expand] Extra fields to fetch
|
|
183
|
+
* @param {string} [filters] List filters
|
|
181
184
|
* @param {*} [options] Override http request option.
|
|
182
185
|
* @throws {RequiredError}
|
|
183
186
|
*/
|
|
184
|
-
listLayouts(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListLayoutsResponseClass>;
|
|
187
|
+
listLayouts(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListLayoutsResponseClass>;
|
|
185
188
|
/**
|
|
186
189
|
* Updates the specified layout by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
187
190
|
* @summary Update the layout
|
|
@@ -304,6 +307,12 @@ export interface LayoutsApiListLayoutsRequest {
|
|
|
304
307
|
* @memberof LayoutsApiListLayouts
|
|
305
308
|
*/
|
|
306
309
|
readonly expand?: string;
|
|
310
|
+
/**
|
|
311
|
+
* List filters
|
|
312
|
+
* @type {string}
|
|
313
|
+
* @memberof LayoutsApiListLayouts
|
|
314
|
+
*/
|
|
315
|
+
readonly filters?: string;
|
|
307
316
|
}
|
|
308
317
|
/**
|
|
309
318
|
* Request parameters for updateLayout operation in LayoutsApi.
|
package/dist/api/layouts-api.js
CHANGED
|
@@ -253,10 +253,11 @@ var LayoutsApiAxiosParamCreator = function (configuration) {
|
|
|
253
253
|
* @param {string} [search] Search query
|
|
254
254
|
* @param {string} [order] Ordering criteria
|
|
255
255
|
* @param {string} [expand] Extra fields to fetch
|
|
256
|
+
* @param {string} [filters] List filters
|
|
256
257
|
* @param {*} [options] Override http request option.
|
|
257
258
|
* @throws {RequiredError}
|
|
258
259
|
*/
|
|
259
|
-
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
260
|
+
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
260
261
|
if (options === void 0) { options = {}; }
|
|
261
262
|
return __awaiter(_this, void 0, void 0, function () {
|
|
262
263
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -297,6 +298,9 @@ var LayoutsApiAxiosParamCreator = function (configuration) {
|
|
|
297
298
|
if (expand !== undefined) {
|
|
298
299
|
localVarQueryParameter['expand'] = expand;
|
|
299
300
|
}
|
|
301
|
+
if (filters !== undefined) {
|
|
302
|
+
localVarQueryParameter['filters'] = filters;
|
|
303
|
+
}
|
|
300
304
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
301
305
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
302
306
|
}
|
|
@@ -448,15 +452,16 @@ var LayoutsApiFp = function (configuration) {
|
|
|
448
452
|
* @param {string} [search] Search query
|
|
449
453
|
* @param {string} [order] Ordering criteria
|
|
450
454
|
* @param {string} [expand] Extra fields to fetch
|
|
455
|
+
* @param {string} [filters] List filters
|
|
451
456
|
* @param {*} [options] Override http request option.
|
|
452
457
|
* @throws {RequiredError}
|
|
453
458
|
*/
|
|
454
|
-
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
459
|
+
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
455
460
|
return __awaiter(this, void 0, void 0, function () {
|
|
456
461
|
var localVarAxiosArgs;
|
|
457
462
|
return __generator(this, function (_a) {
|
|
458
463
|
switch (_a.label) {
|
|
459
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listLayouts(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
464
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listLayouts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
460
465
|
case 1:
|
|
461
466
|
localVarAxiosArgs = _a.sent();
|
|
462
467
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -540,11 +545,12 @@ var LayoutsApiFactory = function (configuration, basePath, axios) {
|
|
|
540
545
|
* @param {string} [search] Search query
|
|
541
546
|
* @param {string} [order] Ordering criteria
|
|
542
547
|
* @param {string} [expand] Extra fields to fetch
|
|
548
|
+
* @param {string} [filters] List filters
|
|
543
549
|
* @param {*} [options] Override http request option.
|
|
544
550
|
* @throws {RequiredError}
|
|
545
551
|
*/
|
|
546
|
-
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
547
|
-
return localVarFp.listLayouts(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
552
|
+
listLayouts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
553
|
+
return localVarFp.listLayouts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
548
554
|
},
|
|
549
555
|
/**
|
|
550
556
|
* Updates the specified layout by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
@@ -619,7 +625,7 @@ var LayoutsApi = /** @class */ (function (_super) {
|
|
|
619
625
|
LayoutsApi.prototype.listLayouts = function (requestParameters, options) {
|
|
620
626
|
var _this = this;
|
|
621
627
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
622
|
-
return (0, exports.LayoutsApiFp)(this.configuration).listLayouts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
628
|
+
return (0, exports.LayoutsApiFp)(this.configuration).listLayouts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
623
629
|
};
|
|
624
630
|
/**
|
|
625
631
|
* Updates the specified layout by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
@@ -63,10 +63,11 @@ export declare const ProductDocumentsApiAxiosParamCreator: (configuration?: Conf
|
|
|
63
63
|
* @param {string} [search] Search query
|
|
64
64
|
* @param {string} [order] Ordering criteria
|
|
65
65
|
* @param {string} [expand] Extra fields to fetch
|
|
66
|
+
* @param {string} [filters] List filters
|
|
66
67
|
* @param {*} [options] Override http request option.
|
|
67
68
|
* @throws {RequiredError}
|
|
68
69
|
*/
|
|
69
|
-
listProductDocuments: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
|
+
listProductDocuments: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
71
|
/**
|
|
71
72
|
* 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
73
|
* @summary List product documents
|
|
@@ -78,10 +79,11 @@ export declare const ProductDocumentsApiAxiosParamCreator: (configuration?: Conf
|
|
|
78
79
|
* @param {string} [search] Search query
|
|
79
80
|
* @param {string} [order] Ordering criteria
|
|
80
81
|
* @param {string} [expand] Extra fields to fetch
|
|
82
|
+
* @param {string} [filters] List filters
|
|
81
83
|
* @param {*} [options] Override http request option.
|
|
82
84
|
* @throws {RequiredError}
|
|
83
85
|
*/
|
|
84
|
-
listProductDocuments_1: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
86
|
+
listProductDocuments_1: (productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
87
|
/**
|
|
86
88
|
* Upload a product document.
|
|
87
89
|
* @summary Create the product document
|
|
@@ -139,10 +141,11 @@ export declare const ProductDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
139
141
|
* @param {string} [search] Search query
|
|
140
142
|
* @param {string} [order] Ordering criteria
|
|
141
143
|
* @param {string} [expand] Extra fields to fetch
|
|
144
|
+
* @param {string} [filters] List filters
|
|
142
145
|
* @param {*} [options] Override http request option.
|
|
143
146
|
* @throws {RequiredError}
|
|
144
147
|
*/
|
|
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>>;
|
|
148
|
+
listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>>;
|
|
146
149
|
/**
|
|
147
150
|
* 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
151
|
* @summary List product documents
|
|
@@ -154,10 +157,11 @@ export declare const ProductDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
154
157
|
* @param {string} [search] Search query
|
|
155
158
|
* @param {string} [order] Ordering criteria
|
|
156
159
|
* @param {string} [expand] Extra fields to fetch
|
|
160
|
+
* @param {string} [filters] List filters
|
|
157
161
|
* @param {*} [options] Override http request option.
|
|
158
162
|
* @throws {RequiredError}
|
|
159
163
|
*/
|
|
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>>;
|
|
164
|
+
listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListProductDocumentsResponseClass>>;
|
|
161
165
|
/**
|
|
162
166
|
* Upload a product document.
|
|
163
167
|
* @summary Create the product document
|
|
@@ -215,10 +219,11 @@ export declare const ProductDocumentsApiFactory: (configuration?: Configuration,
|
|
|
215
219
|
* @param {string} [search] Search query
|
|
216
220
|
* @param {string} [order] Ordering criteria
|
|
217
221
|
* @param {string} [expand] Extra fields to fetch
|
|
222
|
+
* @param {string} [filters] List filters
|
|
218
223
|
* @param {*} [options] Override http request option.
|
|
219
224
|
* @throws {RequiredError}
|
|
220
225
|
*/
|
|
221
|
-
listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
226
|
+
listProductDocuments(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
222
227
|
/**
|
|
223
228
|
* 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
229
|
* @summary List product documents
|
|
@@ -230,10 +235,11 @@ export declare const ProductDocumentsApiFactory: (configuration?: Configuration,
|
|
|
230
235
|
* @param {string} [search] Search query
|
|
231
236
|
* @param {string} [order] Ordering criteria
|
|
232
237
|
* @param {string} [expand] Extra fields to fetch
|
|
238
|
+
* @param {string} [filters] List filters
|
|
233
239
|
* @param {*} [options] Override http request option.
|
|
234
240
|
* @throws {RequiredError}
|
|
235
241
|
*/
|
|
236
|
-
listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
242
|
+
listProductDocuments_1(productSlug: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListProductDocumentsResponseClass>;
|
|
237
243
|
/**
|
|
238
244
|
* Upload a product document.
|
|
239
245
|
* @summary Create the product document
|
|
@@ -374,6 +380,12 @@ export interface ProductDocumentsApiListProductDocumentsRequest {
|
|
|
374
380
|
* @memberof ProductDocumentsApiListProductDocuments
|
|
375
381
|
*/
|
|
376
382
|
readonly expand?: string;
|
|
383
|
+
/**
|
|
384
|
+
* List filters
|
|
385
|
+
* @type {string}
|
|
386
|
+
* @memberof ProductDocumentsApiListProductDocuments
|
|
387
|
+
*/
|
|
388
|
+
readonly filters?: string;
|
|
377
389
|
}
|
|
378
390
|
/**
|
|
379
391
|
* Request parameters for listProductDocuments_1 operation in ProductDocumentsApi.
|
|
@@ -429,6 +441,12 @@ export interface ProductDocumentsApiListProductDocuments0Request {
|
|
|
429
441
|
* @memberof ProductDocumentsApiListProductDocuments0
|
|
430
442
|
*/
|
|
431
443
|
readonly expand?: string;
|
|
444
|
+
/**
|
|
445
|
+
* List filters
|
|
446
|
+
* @type {string}
|
|
447
|
+
* @memberof ProductDocumentsApiListProductDocuments0
|
|
448
|
+
*/
|
|
449
|
+
readonly filters?: string;
|
|
432
450
|
}
|
|
433
451
|
/**
|
|
434
452
|
* Request parameters for uploadProductDocument operation in ProductDocumentsApi.
|
|
@@ -259,10 +259,11 @@ var ProductDocumentsApiAxiosParamCreator = function (configuration) {
|
|
|
259
259
|
* @param {string} [search] Search query
|
|
260
260
|
* @param {string} [order] Ordering criteria
|
|
261
261
|
* @param {string} [expand] Extra fields to fetch
|
|
262
|
+
* @param {string} [filters] List filters
|
|
262
263
|
* @param {*} [options] Override http request option.
|
|
263
264
|
* @throws {RequiredError}
|
|
264
265
|
*/
|
|
265
|
-
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
266
|
+
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
266
267
|
if (options === void 0) { options = {}; }
|
|
267
268
|
return __awaiter(_this, void 0, void 0, function () {
|
|
268
269
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -306,6 +307,9 @@ var ProductDocumentsApiAxiosParamCreator = function (configuration) {
|
|
|
306
307
|
if (expand !== undefined) {
|
|
307
308
|
localVarQueryParameter['expand'] = expand;
|
|
308
309
|
}
|
|
310
|
+
if (filters !== undefined) {
|
|
311
|
+
localVarQueryParameter['filters'] = filters;
|
|
312
|
+
}
|
|
309
313
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
310
314
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
311
315
|
}
|
|
@@ -331,10 +335,11 @@ var ProductDocumentsApiAxiosParamCreator = function (configuration) {
|
|
|
331
335
|
* @param {string} [search] Search query
|
|
332
336
|
* @param {string} [order] Ordering criteria
|
|
333
337
|
* @param {string} [expand] Extra fields to fetch
|
|
338
|
+
* @param {string} [filters] List filters
|
|
334
339
|
* @param {*} [options] Override http request option.
|
|
335
340
|
* @throws {RequiredError}
|
|
336
341
|
*/
|
|
337
|
-
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
342
|
+
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
338
343
|
if (options === void 0) { options = {}; }
|
|
339
344
|
return __awaiter(_this, void 0, void 0, function () {
|
|
340
345
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -378,6 +383,9 @@ var ProductDocumentsApiAxiosParamCreator = function (configuration) {
|
|
|
378
383
|
if (expand !== undefined) {
|
|
379
384
|
localVarQueryParameter['expand'] = expand;
|
|
380
385
|
}
|
|
386
|
+
if (filters !== undefined) {
|
|
387
|
+
localVarQueryParameter['filters'] = filters;
|
|
388
|
+
}
|
|
381
389
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
382
390
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
383
391
|
}
|
|
@@ -532,15 +540,16 @@ var ProductDocumentsApiFp = function (configuration) {
|
|
|
532
540
|
* @param {string} [search] Search query
|
|
533
541
|
* @param {string} [order] Ordering criteria
|
|
534
542
|
* @param {string} [expand] Extra fields to fetch
|
|
543
|
+
* @param {string} [filters] List filters
|
|
535
544
|
* @param {*} [options] Override http request option.
|
|
536
545
|
* @throws {RequiredError}
|
|
537
546
|
*/
|
|
538
|
-
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
547
|
+
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
539
548
|
return __awaiter(this, void 0, void 0, function () {
|
|
540
549
|
var localVarAxiosArgs;
|
|
541
550
|
return __generator(this, function (_a) {
|
|
542
551
|
switch (_a.label) {
|
|
543
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
552
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
544
553
|
case 1:
|
|
545
554
|
localVarAxiosArgs = _a.sent();
|
|
546
555
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -559,15 +568,16 @@ var ProductDocumentsApiFp = function (configuration) {
|
|
|
559
568
|
* @param {string} [search] Search query
|
|
560
569
|
* @param {string} [order] Ordering criteria
|
|
561
570
|
* @param {string} [expand] Extra fields to fetch
|
|
571
|
+
* @param {string} [filters] List filters
|
|
562
572
|
* @param {*} [options] Override http request option.
|
|
563
573
|
* @throws {RequiredError}
|
|
564
574
|
*/
|
|
565
|
-
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
575
|
+
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
566
576
|
return __awaiter(this, void 0, void 0, function () {
|
|
567
577
|
var localVarAxiosArgs;
|
|
568
578
|
return __generator(this, function (_a) {
|
|
569
579
|
switch (_a.label) {
|
|
570
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
580
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
571
581
|
case 1:
|
|
572
582
|
localVarAxiosArgs = _a.sent();
|
|
573
583
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -654,11 +664,12 @@ var ProductDocumentsApiFactory = function (configuration, basePath, axios) {
|
|
|
654
664
|
* @param {string} [search] Search query
|
|
655
665
|
* @param {string} [order] Ordering criteria
|
|
656
666
|
* @param {string} [expand] Extra fields to fetch
|
|
667
|
+
* @param {string} [filters] List filters
|
|
657
668
|
* @param {*} [options] Override http request option.
|
|
658
669
|
* @throws {RequiredError}
|
|
659
670
|
*/
|
|
660
|
-
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
661
|
-
return localVarFp.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
671
|
+
listProductDocuments: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
672
|
+
return localVarFp.listProductDocuments(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
662
673
|
},
|
|
663
674
|
/**
|
|
664
675
|
* 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.
|
|
@@ -671,11 +682,12 @@ var ProductDocumentsApiFactory = function (configuration, basePath, axios) {
|
|
|
671
682
|
* @param {string} [search] Search query
|
|
672
683
|
* @param {string} [order] Ordering criteria
|
|
673
684
|
* @param {string} [expand] Extra fields to fetch
|
|
685
|
+
* @param {string} [filters] List filters
|
|
674
686
|
* @param {*} [options] Override http request option.
|
|
675
687
|
* @throws {RequiredError}
|
|
676
688
|
*/
|
|
677
|
-
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
678
|
-
return localVarFp.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
689
|
+
listProductDocuments_1: function (productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
690
|
+
return localVarFp.listProductDocuments_1(productSlug, authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
679
691
|
},
|
|
680
692
|
/**
|
|
681
693
|
* Upload a product document.
|
|
@@ -749,7 +761,7 @@ var ProductDocumentsApi = /** @class */ (function (_super) {
|
|
|
749
761
|
*/
|
|
750
762
|
ProductDocumentsApi.prototype.listProductDocuments = function (requestParameters, options) {
|
|
751
763
|
var _this = this;
|
|
752
|
-
return (0, exports.ProductDocumentsApiFp)(this.configuration).listProductDocuments(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
764
|
+
return (0, exports.ProductDocumentsApiFp)(this.configuration).listProductDocuments(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
753
765
|
};
|
|
754
766
|
/**
|
|
755
767
|
* 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.
|
|
@@ -761,7 +773,7 @@ var ProductDocumentsApi = /** @class */ (function (_super) {
|
|
|
761
773
|
*/
|
|
762
774
|
ProductDocumentsApi.prototype.listProductDocuments_1 = function (requestParameters, options) {
|
|
763
775
|
var _this = this;
|
|
764
|
-
return (0, exports.ProductDocumentsApiFp)(this.configuration).listProductDocuments_1(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
776
|
+
return (0, exports.ProductDocumentsApiFp)(this.configuration).listProductDocuments_1(requestParameters.productSlug, requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
765
777
|
};
|
|
766
778
|
/**
|
|
767
779
|
* Upload a product document.
|
|
@@ -28,10 +28,11 @@ export declare const SearchableDocumentOwnersApiAxiosParamCreator: (configuratio
|
|
|
28
28
|
* @param {string} [search] Search query
|
|
29
29
|
* @param {string} [order] Ordering criteria
|
|
30
30
|
* @param {string} [expand] Extra fields to fetch
|
|
31
|
+
* @param {string} [filters] List filters
|
|
31
32
|
* @param {*} [options] Override http request option.
|
|
32
33
|
* @throws {RequiredError}
|
|
33
34
|
*/
|
|
34
|
-
listSearchableDocumentOwners: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
|
+
listSearchableDocumentOwners: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
36
|
};
|
|
36
37
|
/**
|
|
37
38
|
* SearchableDocumentOwnersApi - functional programming interface
|
|
@@ -48,10 +49,11 @@ export declare const SearchableDocumentOwnersApiFp: (configuration?: Configurati
|
|
|
48
49
|
* @param {string} [search] Search query
|
|
49
50
|
* @param {string} [order] Ordering criteria
|
|
50
51
|
* @param {string} [expand] Extra fields to fetch
|
|
52
|
+
* @param {string} [filters] List filters
|
|
51
53
|
* @param {*} [options] Override http request option.
|
|
52
54
|
* @throws {RequiredError}
|
|
53
55
|
*/
|
|
54
|
-
listSearchableDocumentOwners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSearchableDocumentOwnersResponseClass>>;
|
|
56
|
+
listSearchableDocumentOwners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSearchableDocumentOwnersResponseClass>>;
|
|
55
57
|
};
|
|
56
58
|
/**
|
|
57
59
|
* SearchableDocumentOwnersApi - factory interface
|
|
@@ -68,10 +70,11 @@ export declare const SearchableDocumentOwnersApiFactory: (configuration?: Config
|
|
|
68
70
|
* @param {string} [search] Search query
|
|
69
71
|
* @param {string} [order] Ordering criteria
|
|
70
72
|
* @param {string} [expand] Extra fields to fetch
|
|
73
|
+
* @param {string} [filters] List filters
|
|
71
74
|
* @param {*} [options] Override http request option.
|
|
72
75
|
* @throws {RequiredError}
|
|
73
76
|
*/
|
|
74
|
-
listSearchableDocumentOwners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListSearchableDocumentOwnersResponseClass>;
|
|
77
|
+
listSearchableDocumentOwners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListSearchableDocumentOwnersResponseClass>;
|
|
75
78
|
};
|
|
76
79
|
/**
|
|
77
80
|
* Request parameters for listSearchableDocumentOwners operation in SearchableDocumentOwnersApi.
|
|
@@ -121,6 +124,12 @@ export interface SearchableDocumentOwnersApiListSearchableDocumentOwnersRequest
|
|
|
121
124
|
* @memberof SearchableDocumentOwnersApiListSearchableDocumentOwners
|
|
122
125
|
*/
|
|
123
126
|
readonly expand?: string;
|
|
127
|
+
/**
|
|
128
|
+
* List filters
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @memberof SearchableDocumentOwnersApiListSearchableDocumentOwners
|
|
131
|
+
*/
|
|
132
|
+
readonly filters?: string;
|
|
124
133
|
}
|
|
125
134
|
/**
|
|
126
135
|
* SearchableDocumentOwnersApi - object-oriented interface
|
|
@@ -102,10 +102,11 @@ var SearchableDocumentOwnersApiAxiosParamCreator = function (configuration) {
|
|
|
102
102
|
* @param {string} [search] Search query
|
|
103
103
|
* @param {string} [order] Ordering criteria
|
|
104
104
|
* @param {string} [expand] Extra fields to fetch
|
|
105
|
+
* @param {string} [filters] List filters
|
|
105
106
|
* @param {*} [options] Override http request option.
|
|
106
107
|
* @throws {RequiredError}
|
|
107
108
|
*/
|
|
108
|
-
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
109
|
+
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
109
110
|
if (options === void 0) { options = {}; }
|
|
110
111
|
return __awaiter(_this, void 0, void 0, function () {
|
|
111
112
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -146,6 +147,9 @@ var SearchableDocumentOwnersApiAxiosParamCreator = function (configuration) {
|
|
|
146
147
|
if (expand !== undefined) {
|
|
147
148
|
localVarQueryParameter['expand'] = expand;
|
|
148
149
|
}
|
|
150
|
+
if (filters !== undefined) {
|
|
151
|
+
localVarQueryParameter['filters'] = filters;
|
|
152
|
+
}
|
|
149
153
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
150
154
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
151
155
|
}
|
|
@@ -180,15 +184,16 @@ var SearchableDocumentOwnersApiFp = function (configuration) {
|
|
|
180
184
|
* @param {string} [search] Search query
|
|
181
185
|
* @param {string} [order] Ordering criteria
|
|
182
186
|
* @param {string} [expand] Extra fields to fetch
|
|
187
|
+
* @param {string} [filters] List filters
|
|
183
188
|
* @param {*} [options] Override http request option.
|
|
184
189
|
* @throws {RequiredError}
|
|
185
190
|
*/
|
|
186
|
-
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
191
|
+
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
187
192
|
return __awaiter(this, void 0, void 0, function () {
|
|
188
193
|
var localVarAxiosArgs;
|
|
189
194
|
return __generator(this, function (_a) {
|
|
190
195
|
switch (_a.label) {
|
|
191
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSearchableDocumentOwners(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
196
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSearchableDocumentOwners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
192
197
|
case 1:
|
|
193
198
|
localVarAxiosArgs = _a.sent();
|
|
194
199
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -216,11 +221,12 @@ var SearchableDocumentOwnersApiFactory = function (configuration, basePath, axio
|
|
|
216
221
|
* @param {string} [search] Search query
|
|
217
222
|
* @param {string} [order] Ordering criteria
|
|
218
223
|
* @param {string} [expand] Extra fields to fetch
|
|
224
|
+
* @param {string} [filters] List filters
|
|
219
225
|
* @param {*} [options] Override http request option.
|
|
220
226
|
* @throws {RequiredError}
|
|
221
227
|
*/
|
|
222
|
-
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
223
|
-
return localVarFp.listSearchableDocumentOwners(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
228
|
+
listSearchableDocumentOwners: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
229
|
+
return localVarFp.listSearchableDocumentOwners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
224
230
|
},
|
|
225
231
|
};
|
|
226
232
|
};
|
|
@@ -247,7 +253,7 @@ var SearchableDocumentOwnersApi = /** @class */ (function (_super) {
|
|
|
247
253
|
SearchableDocumentOwnersApi.prototype.listSearchableDocumentOwners = function (requestParameters, options) {
|
|
248
254
|
var _this = this;
|
|
249
255
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
250
|
-
return (0, exports.SearchableDocumentOwnersApiFp)(this.configuration).listSearchableDocumentOwners(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
256
|
+
return (0, exports.SearchableDocumentOwnersApiFp)(this.configuration).listSearchableDocumentOwners(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
251
257
|
};
|
|
252
258
|
return SearchableDocumentOwnersApi;
|
|
253
259
|
}(base_1.BaseAPI));
|
|
@@ -132,6 +132,7 @@ export declare const CreateDocumentRequestDtoRequesterEnum: {
|
|
|
132
132
|
readonly Processmanager: "processmanager";
|
|
133
133
|
readonly Gdvservice: "gdvservice";
|
|
134
134
|
readonly Documentservice: "documentservice";
|
|
135
|
+
readonly Partnerservice: "partnerservice";
|
|
135
136
|
};
|
|
136
137
|
export type CreateDocumentRequestDtoRequesterEnum = typeof CreateDocumentRequestDtoRequesterEnum[keyof typeof CreateDocumentRequestDtoRequesterEnum];
|
|
137
138
|
export declare const CreateDocumentRequestDtoContentTypeEnum: {
|
|
@@ -32,7 +32,8 @@ exports.CreateDocumentRequestDtoRequesterEnum = {
|
|
|
32
32
|
Paymentservice: 'paymentservice',
|
|
33
33
|
Processmanager: 'processmanager',
|
|
34
34
|
Gdvservice: 'gdvservice',
|
|
35
|
-
Documentservice: 'documentservice'
|
|
35
|
+
Documentservice: 'documentservice',
|
|
36
|
+
Partnerservice: 'partnerservice'
|
|
36
37
|
};
|
|
37
38
|
exports.CreateDocumentRequestDtoContentTypeEnum = {
|
|
38
39
|
Pdf: 'pdf',
|
|
@@ -109,6 +109,7 @@ export declare const CreatePresignedPostRequestDtoRequesterEnum: {
|
|
|
109
109
|
readonly Processmanager: "processmanager";
|
|
110
110
|
readonly Gdvservice: "gdvservice";
|
|
111
111
|
readonly Documentservice: "documentservice";
|
|
112
|
+
readonly Partnerservice: "partnerservice";
|
|
112
113
|
};
|
|
113
114
|
export type CreatePresignedPostRequestDtoRequesterEnum = typeof CreatePresignedPostRequestDtoRequesterEnum[keyof typeof CreatePresignedPostRequestDtoRequesterEnum];
|
|
114
115
|
export declare const CreatePresignedPostRequestDtoContentTypeEnum: {
|