@emilgroup/partner-sdk 1.0.1-beta.1 → 1.1.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 +7 -0
- package/README.md +2 -2
- package/api/partner-relations-api.ts +349 -0
- package/api/partner-types-api.ts +36 -22
- package/api/partner-version-api.ts +375 -0
- package/api/partners-api.ts +36 -22
- package/api.ts +4 -0
- package/dist/api/partner-relations-api.d.ts +206 -0
- package/dist/api/partner-relations-api.js +352 -0
- package/dist/api/partner-types-api.d.ts +28 -19
- package/dist/api/partner-types-api.js +26 -20
- package/dist/api/partner-version-api.d.ts +224 -0
- package/dist/api/partner-version-api.js +363 -0
- package/dist/api/partners-api.d.ts +28 -19
- package/dist/api/partners-api.js +26 -20
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/get-partner-relation-type-class.d.ts +25 -0
- package/dist/models/get-partner-relation-type-class.js +15 -0
- package/dist/models/get-partner-version-response-class.d.ts +25 -0
- package/dist/models/get-partner-version-response-class.js +15 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/list-partner-relation-types-class.d.ts +31 -0
- package/dist/models/list-partner-relation-types-class.js +15 -0
- package/dist/models/list-partner-versions-response-class.d.ts +25 -0
- package/dist/models/list-partner-versions-response-class.js +15 -0
- package/dist/models/partner-class.d.ts +12 -0
- package/dist/models/partner-relation-type-class.d.ts +66 -0
- package/dist/models/partner-relation-type-class.js +15 -0
- package/dist/models/update-partner-type-request-dto.d.ts +6 -0
- package/models/get-partner-relation-type-class.ts +31 -0
- package/models/get-partner-version-response-class.ts +31 -0
- package/models/index.ts +5 -0
- package/models/list-partner-relation-types-class.ts +37 -0
- package/models/list-partner-versions-response-class.ts +31 -0
- package/models/partner-class.ts +12 -0
- package/models/partner-relation-type-class.ts +72 -0
- package/models/update-partner-type-request-dto.ts +6 -0
- package/package.json +1 -2
|
@@ -43,7 +43,7 @@ export declare const PartnerTypesApiAxiosParamCreator: (configuration?: Configur
|
|
|
43
43
|
*/
|
|
44
44
|
deletePartnerType: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
45
|
/**
|
|
46
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
46
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
47
47
|
* @summary Retrieve the partner-types
|
|
48
48
|
* @param {string} code Unique identifier for the object.
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -53,19 +53,20 @@ export declare const PartnerTypesApiAxiosParamCreator: (configuration?: Configur
|
|
|
53
53
|
*/
|
|
54
54
|
getPartnerType: (code: string, authorization?: string, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
55
|
/**
|
|
56
|
-
* Returns a list of partner-types you have previously created.
|
|
56
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
57
57
|
* @summary List partner-types
|
|
58
58
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
59
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
59
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
60
60
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
61
61
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
62
|
-
* @param {any} [search]
|
|
62
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
63
63
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
64
64
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
65
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
65
66
|
* @param {*} [options] Override http request option.
|
|
66
67
|
* @throws {RequiredError}
|
|
67
68
|
*/
|
|
68
|
-
listPartnerTypes: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
|
+
listPartnerTypes: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
70
|
/**
|
|
70
71
|
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
71
72
|
* @summary Update the partner-types
|
|
@@ -101,7 +102,7 @@ export declare const PartnerTypesApiFp: (configuration?: Configuration) => {
|
|
|
101
102
|
*/
|
|
102
103
|
deletePartnerType(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
103
104
|
/**
|
|
104
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
105
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
105
106
|
* @summary Retrieve the partner-types
|
|
106
107
|
* @param {string} code Unique identifier for the object.
|
|
107
108
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -111,19 +112,20 @@ export declare const PartnerTypesApiFp: (configuration?: Configuration) => {
|
|
|
111
112
|
*/
|
|
112
113
|
getPartnerType(code: string, authorization?: string, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPartnerTypeResponseClass>>;
|
|
113
114
|
/**
|
|
114
|
-
* Returns a list of partner-types you have previously created.
|
|
115
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
115
116
|
* @summary List partner-types
|
|
116
117
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
117
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
118
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
118
119
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
119
120
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
120
|
-
* @param {any} [search]
|
|
121
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
121
122
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
122
123
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
124
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
123
125
|
* @param {*} [options] Override http request option.
|
|
124
126
|
* @throws {RequiredError}
|
|
125
127
|
*/
|
|
126
|
-
listPartnerTypes(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPartnerTypesResponseClass>>;
|
|
128
|
+
listPartnerTypes(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPartnerTypesResponseClass>>;
|
|
127
129
|
/**
|
|
128
130
|
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
129
131
|
* @summary Update the partner-types
|
|
@@ -159,7 +161,7 @@ export declare const PartnerTypesApiFactory: (configuration?: Configuration, bas
|
|
|
159
161
|
*/
|
|
160
162
|
deletePartnerType(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
161
163
|
/**
|
|
162
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
164
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
163
165
|
* @summary Retrieve the partner-types
|
|
164
166
|
* @param {string} code Unique identifier for the object.
|
|
165
167
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -169,19 +171,20 @@ export declare const PartnerTypesApiFactory: (configuration?: Configuration, bas
|
|
|
169
171
|
*/
|
|
170
172
|
getPartnerType(code: string, authorization?: string, expand?: any, options?: any): AxiosPromise<GetPartnerTypeResponseClass>;
|
|
171
173
|
/**
|
|
172
|
-
* Returns a list of partner-types you have previously created.
|
|
174
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
173
175
|
* @summary List partner-types
|
|
174
176
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
175
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
177
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
176
178
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
177
179
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
178
|
-
* @param {any} [search]
|
|
180
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
179
181
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
180
182
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
183
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
181
184
|
* @param {*} [options] Override http request option.
|
|
182
185
|
* @throws {RequiredError}
|
|
183
186
|
*/
|
|
184
|
-
listPartnerTypes(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListPartnerTypesResponseClass>;
|
|
187
|
+
listPartnerTypes(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListPartnerTypesResponseClass>;
|
|
185
188
|
/**
|
|
186
189
|
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
187
190
|
* @summary Update the partner-types
|
|
@@ -269,7 +272,7 @@ export interface PartnerTypesApiListPartnerTypesRequest {
|
|
|
269
272
|
*/
|
|
270
273
|
readonly authorization?: string;
|
|
271
274
|
/**
|
|
272
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
275
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
273
276
|
* @type {any}
|
|
274
277
|
* @memberof PartnerTypesApiListPartnerTypes
|
|
275
278
|
*/
|
|
@@ -287,7 +290,7 @@ export interface PartnerTypesApiListPartnerTypesRequest {
|
|
|
287
290
|
*/
|
|
288
291
|
readonly filter?: any;
|
|
289
292
|
/**
|
|
290
|
-
*
|
|
293
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
291
294
|
* @type {any}
|
|
292
295
|
* @memberof PartnerTypesApiListPartnerTypes
|
|
293
296
|
*/
|
|
@@ -304,6 +307,12 @@ export interface PartnerTypesApiListPartnerTypesRequest {
|
|
|
304
307
|
* @memberof PartnerTypesApiListPartnerTypes
|
|
305
308
|
*/
|
|
306
309
|
readonly expand?: any;
|
|
310
|
+
/**
|
|
311
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
312
|
+
* @type {any}
|
|
313
|
+
* @memberof PartnerTypesApiListPartnerTypes
|
|
314
|
+
*/
|
|
315
|
+
readonly filters?: any;
|
|
307
316
|
}
|
|
308
317
|
/**
|
|
309
318
|
* Request parameters for updatePartnerType operation in PartnerTypesApi.
|
|
@@ -356,7 +365,7 @@ export declare class PartnerTypesApi extends BaseAPI {
|
|
|
356
365
|
*/
|
|
357
366
|
deletePartnerType(requestParameters: PartnerTypesApiDeletePartnerTypeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
358
367
|
/**
|
|
359
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
368
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
360
369
|
* @summary Retrieve the partner-types
|
|
361
370
|
* @param {PartnerTypesApiGetPartnerTypeRequest} requestParameters Request parameters.
|
|
362
371
|
* @param {*} [options] Override http request option.
|
|
@@ -365,7 +374,7 @@ export declare class PartnerTypesApi extends BaseAPI {
|
|
|
365
374
|
*/
|
|
366
375
|
getPartnerType(requestParameters: PartnerTypesApiGetPartnerTypeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPartnerTypeResponseClass, any>>;
|
|
367
376
|
/**
|
|
368
|
-
* Returns a list of partner-types you have previously created.
|
|
377
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
369
378
|
* @summary List partner-types
|
|
370
379
|
* @param {PartnerTypesApiListPartnerTypesRequest} requestParameters Request parameters.
|
|
371
380
|
* @param {*} [options] Override http request option.
|
|
@@ -190,7 +190,7 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
190
190
|
});
|
|
191
191
|
},
|
|
192
192
|
/**
|
|
193
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
193
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
194
194
|
* @summary Retrieve the partner-types
|
|
195
195
|
* @param {string} code Unique identifier for the object.
|
|
196
196
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,19 +242,20 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* Returns a list of partner-types you have previously created.
|
|
245
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
246
246
|
* @summary List partner-types
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
248
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
249
249
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
250
250
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
251
|
-
* @param {any} [search]
|
|
251
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
252
252
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
253
253
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
254
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
254
255
|
* @param {*} [options] Override http request option.
|
|
255
256
|
* @throws {RequiredError}
|
|
256
257
|
*/
|
|
257
|
-
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
258
|
+
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
258
259
|
if (options === void 0) { options = {}; }
|
|
259
260
|
return __awaiter(_this, void 0, void 0, function () {
|
|
260
261
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -295,6 +296,9 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
295
296
|
if (expand !== undefined) {
|
|
296
297
|
localVarQueryParameter['expand'] = expand;
|
|
297
298
|
}
|
|
299
|
+
if (filters !== undefined) {
|
|
300
|
+
localVarQueryParameter['filters'] = filters;
|
|
301
|
+
}
|
|
298
302
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
299
303
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
300
304
|
}
|
|
@@ -415,7 +419,7 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
415
419
|
});
|
|
416
420
|
},
|
|
417
421
|
/**
|
|
418
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
422
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
419
423
|
* @summary Retrieve the partner-types
|
|
420
424
|
* @param {string} code Unique identifier for the object.
|
|
421
425
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -437,24 +441,25 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
437
441
|
});
|
|
438
442
|
},
|
|
439
443
|
/**
|
|
440
|
-
* Returns a list of partner-types you have previously created.
|
|
444
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
441
445
|
* @summary List partner-types
|
|
442
446
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
443
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
447
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
444
448
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
445
449
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
446
|
-
* @param {any} [search]
|
|
450
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
447
451
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
448
452
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
453
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
449
454
|
* @param {*} [options] Override http request option.
|
|
450
455
|
* @throws {RequiredError}
|
|
451
456
|
*/
|
|
452
|
-
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
457
|
+
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
453
458
|
return __awaiter(this, void 0, void 0, function () {
|
|
454
459
|
var localVarAxiosArgs;
|
|
455
460
|
return __generator(this, function (_a) {
|
|
456
461
|
switch (_a.label) {
|
|
457
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPartnerTypes(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
462
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPartnerTypes(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
458
463
|
case 1:
|
|
459
464
|
localVarAxiosArgs = _a.sent();
|
|
460
465
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -517,7 +522,7 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
517
522
|
return localVarFp.deletePartnerType(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
518
523
|
},
|
|
519
524
|
/**
|
|
520
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
525
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
521
526
|
* @summary Retrieve the partner-types
|
|
522
527
|
* @param {string} code Unique identifier for the object.
|
|
523
528
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -529,20 +534,21 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
529
534
|
return localVarFp.getPartnerType(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
530
535
|
},
|
|
531
536
|
/**
|
|
532
|
-
* Returns a list of partner-types you have previously created.
|
|
537
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
533
538
|
* @summary List partner-types
|
|
534
539
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
535
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and
|
|
540
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
536
541
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
537
542
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
538
|
-
* @param {any} [search]
|
|
543
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
539
544
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
540
545
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
546
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
541
547
|
* @param {*} [options] Override http request option.
|
|
542
548
|
* @throws {RequiredError}
|
|
543
549
|
*/
|
|
544
|
-
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
545
|
-
return localVarFp.listPartnerTypes(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
550
|
+
listPartnerTypes: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
551
|
+
return localVarFp.listPartnerTypes(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
546
552
|
},
|
|
547
553
|
/**
|
|
548
554
|
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
@@ -595,7 +601,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
595
601
|
return (0, exports.PartnerTypesApiFp)(this.configuration).deletePartnerType(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
596
602
|
};
|
|
597
603
|
/**
|
|
598
|
-
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code
|
|
604
|
+
* Retrieves the details of the partner-types that was previously created. Supply the unique partner-types code that was returned when you created it and Emil Api will return the corresponding partner-types information.
|
|
599
605
|
* @summary Retrieve the partner-types
|
|
600
606
|
* @param {PartnerTypesApiGetPartnerTypeRequest} requestParameters Request parameters.
|
|
601
607
|
* @param {*} [options] Override http request option.
|
|
@@ -607,7 +613,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
607
613
|
return (0, exports.PartnerTypesApiFp)(this.configuration).getPartnerType(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
608
614
|
};
|
|
609
615
|
/**
|
|
610
|
-
* Returns a list of partner-types you have previously created.
|
|
616
|
+
* Returns a list of partner-types you have previously created. The partner-types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
611
617
|
* @summary List partner-types
|
|
612
618
|
* @param {PartnerTypesApiListPartnerTypesRequest} requestParameters Request parameters.
|
|
613
619
|
* @param {*} [options] Override http request option.
|
|
@@ -617,7 +623,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
617
623
|
PartnerTypesApi.prototype.listPartnerTypes = function (requestParameters, options) {
|
|
618
624
|
var _this = this;
|
|
619
625
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
620
|
-
return (0, exports.PartnerTypesApiFp)(this.configuration).listPartnerTypes(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
626
|
+
return (0, exports.PartnerTypesApiFp)(this.configuration).listPartnerTypes(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); });
|
|
621
627
|
};
|
|
622
628
|
/**
|
|
623
629
|
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL PartnerService
|
|
3
|
+
* The EMIL PartnerService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { GetPartnerVersionResponseClass } from '../models';
|
|
16
|
+
import { ListPartnerVersionsResponseClass } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* PartnerVersionApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const PartnerVersionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
* Retrieve a partner version by providing partner code and version number
|
|
24
|
+
* @summary Retrieve the partner version
|
|
25
|
+
* @param {string} code Unique identifier for the object.
|
|
26
|
+
* @param {number} version
|
|
27
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
28
|
+
* @param {*} [options] Override http request option.
|
|
29
|
+
* @throws {RequiredError}
|
|
30
|
+
*/
|
|
31
|
+
getPartnerVersion: (code: string, version: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
|
+
/**
|
|
33
|
+
* List all partner versions by providing partner code
|
|
34
|
+
* @summary List partner versions
|
|
35
|
+
* @param {string} code
|
|
36
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
37
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
38
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
39
|
+
* @param {any} [filter] Filter the response by one or multiple fields<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
40
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
41
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
42
|
+
* @param {'partnerType'} [expand] Allowed expands for the partner version
|
|
43
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
listPartnerVersion: (code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'partnerType', filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* PartnerVersionApi - functional programming interface
|
|
51
|
+
* @export
|
|
52
|
+
*/
|
|
53
|
+
export declare const PartnerVersionApiFp: (configuration?: Configuration) => {
|
|
54
|
+
/**
|
|
55
|
+
* Retrieve a partner version by providing partner code and version number
|
|
56
|
+
* @summary Retrieve the partner version
|
|
57
|
+
* @param {string} code Unique identifier for the object.
|
|
58
|
+
* @param {number} version
|
|
59
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
60
|
+
* @param {*} [options] Override http request option.
|
|
61
|
+
* @throws {RequiredError}
|
|
62
|
+
*/
|
|
63
|
+
getPartnerVersion(code: string, version: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPartnerVersionResponseClass>>;
|
|
64
|
+
/**
|
|
65
|
+
* List all partner versions by providing partner code
|
|
66
|
+
* @summary List partner versions
|
|
67
|
+
* @param {string} code
|
|
68
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
69
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
70
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
71
|
+
* @param {any} [filter] Filter the response by one or multiple fields<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
72
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
73
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
74
|
+
* @param {'partnerType'} [expand] Allowed expands for the partner version
|
|
75
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
76
|
+
* @param {*} [options] Override http request option.
|
|
77
|
+
* @throws {RequiredError}
|
|
78
|
+
*/
|
|
79
|
+
listPartnerVersion(code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'partnerType', filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPartnerVersionsResponseClass>>;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* PartnerVersionApi - factory interface
|
|
83
|
+
* @export
|
|
84
|
+
*/
|
|
85
|
+
export declare const PartnerVersionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
86
|
+
/**
|
|
87
|
+
* Retrieve a partner version by providing partner code and version number
|
|
88
|
+
* @summary Retrieve the partner version
|
|
89
|
+
* @param {string} code Unique identifier for the object.
|
|
90
|
+
* @param {number} version
|
|
91
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @throws {RequiredError}
|
|
94
|
+
*/
|
|
95
|
+
getPartnerVersion(code: string, version: number, authorization?: string, options?: any): AxiosPromise<GetPartnerVersionResponseClass>;
|
|
96
|
+
/**
|
|
97
|
+
* List all partner versions by providing partner code
|
|
98
|
+
* @summary List partner versions
|
|
99
|
+
* @param {string} code
|
|
100
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
101
|
+
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
102
|
+
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
103
|
+
* @param {any} [filter] Filter the response by one or multiple fields<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
104
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
105
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
106
|
+
* @param {'partnerType'} [expand] Allowed expands for the partner version
|
|
107
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
listPartnerVersion(code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'partnerType', filters?: any, options?: any): AxiosPromise<ListPartnerVersionsResponseClass>;
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Request parameters for getPartnerVersion operation in PartnerVersionApi.
|
|
115
|
+
* @export
|
|
116
|
+
* @interface PartnerVersionApiGetPartnerVersionRequest
|
|
117
|
+
*/
|
|
118
|
+
export interface PartnerVersionApiGetPartnerVersionRequest {
|
|
119
|
+
/**
|
|
120
|
+
* Unique identifier for the object.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof PartnerVersionApiGetPartnerVersion
|
|
123
|
+
*/
|
|
124
|
+
readonly code: string;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof PartnerVersionApiGetPartnerVersion
|
|
129
|
+
*/
|
|
130
|
+
readonly version: number;
|
|
131
|
+
/**
|
|
132
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof PartnerVersionApiGetPartnerVersion
|
|
135
|
+
*/
|
|
136
|
+
readonly authorization?: string;
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Request parameters for listPartnerVersion operation in PartnerVersionApi.
|
|
140
|
+
* @export
|
|
141
|
+
* @interface PartnerVersionApiListPartnerVersionRequest
|
|
142
|
+
*/
|
|
143
|
+
export interface PartnerVersionApiListPartnerVersionRequest {
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
148
|
+
*/
|
|
149
|
+
readonly code: string;
|
|
150
|
+
/**
|
|
151
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
154
|
+
*/
|
|
155
|
+
readonly authorization?: string;
|
|
156
|
+
/**
|
|
157
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
|
+
* @type {any}
|
|
159
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
160
|
+
*/
|
|
161
|
+
readonly pageSize?: any;
|
|
162
|
+
/**
|
|
163
|
+
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
164
|
+
* @type {any}
|
|
165
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
166
|
+
*/
|
|
167
|
+
readonly pageToken?: any;
|
|
168
|
+
/**
|
|
169
|
+
* Filter the response by one or multiple fields<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
170
|
+
* @type {any}
|
|
171
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
172
|
+
*/
|
|
173
|
+
readonly filter?: any;
|
|
174
|
+
/**
|
|
175
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
176
|
+
* @type {any}
|
|
177
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
178
|
+
*/
|
|
179
|
+
readonly search?: any;
|
|
180
|
+
/**
|
|
181
|
+
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
182
|
+
* @type {any}
|
|
183
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
184
|
+
*/
|
|
185
|
+
readonly order?: any;
|
|
186
|
+
/**
|
|
187
|
+
* Allowed expands for the partner version
|
|
188
|
+
* @type {'partnerType'}
|
|
189
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
190
|
+
*/
|
|
191
|
+
readonly expand?: 'partnerType';
|
|
192
|
+
/**
|
|
193
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
194
|
+
* @type {any}
|
|
195
|
+
* @memberof PartnerVersionApiListPartnerVersion
|
|
196
|
+
*/
|
|
197
|
+
readonly filters?: any;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* PartnerVersionApi - object-oriented interface
|
|
201
|
+
* @export
|
|
202
|
+
* @class PartnerVersionApi
|
|
203
|
+
* @extends {BaseAPI}
|
|
204
|
+
*/
|
|
205
|
+
export declare class PartnerVersionApi extends BaseAPI {
|
|
206
|
+
/**
|
|
207
|
+
* Retrieve a partner version by providing partner code and version number
|
|
208
|
+
* @summary Retrieve the partner version
|
|
209
|
+
* @param {PartnerVersionApiGetPartnerVersionRequest} requestParameters Request parameters.
|
|
210
|
+
* @param {*} [options] Override http request option.
|
|
211
|
+
* @throws {RequiredError}
|
|
212
|
+
* @memberof PartnerVersionApi
|
|
213
|
+
*/
|
|
214
|
+
getPartnerVersion(requestParameters: PartnerVersionApiGetPartnerVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPartnerVersionResponseClass, any>>;
|
|
215
|
+
/**
|
|
216
|
+
* List all partner versions by providing partner code
|
|
217
|
+
* @summary List partner versions
|
|
218
|
+
* @param {PartnerVersionApiListPartnerVersionRequest} requestParameters Request parameters.
|
|
219
|
+
* @param {*} [options] Override http request option.
|
|
220
|
+
* @throws {RequiredError}
|
|
221
|
+
* @memberof PartnerVersionApi
|
|
222
|
+
*/
|
|
223
|
+
listPartnerVersion(requestParameters: PartnerVersionApiListPartnerVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPartnerVersionsResponseClass, any>>;
|
|
224
|
+
}
|