@emilgroup/partner-sdk-node 1.13.0 → 1.13.1-beta.1
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/partner-invitations-api.ts +4 -4
- package/api/partner-relations-api.ts +66 -66
- package/api/partner-tags-api.ts +43 -43
- package/api/partner-types-api.ts +60 -60
- package/api/partner-versions-api.ts +27 -27
- package/api/partners-api.ts +66 -66
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/partner-invitations-api.d.ts +4 -4
- package/dist/api/partner-invitations-api.js +4 -4
- package/dist/api/partner-relations-api.d.ts +66 -66
- package/dist/api/partner-relations-api.js +46 -46
- package/dist/api/partner-tags-api.d.ts +43 -43
- package/dist/api/partner-tags-api.js +32 -32
- package/dist/api/partner-types-api.d.ts +60 -60
- package/dist/api/partner-types-api.js +41 -41
- package/dist/api/partner-versions-api.d.ts +27 -27
- package/dist/api/partner-versions-api.js +17 -17
- package/dist/api/partners-api.d.ts +66 -66
- package/dist/api/partners-api.js +46 -46
- package/dist/base.js +1 -1
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/package.json +1 -1
|
@@ -97,7 +97,7 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This will create a partner type.
|
|
100
|
+
* This will create a partner type. **Required Permissions** \"partner-management.partners.create\"
|
|
101
101
|
* @summary Create the partner-types
|
|
102
102
|
* @param {CreatePartnerTypeRequestDto} createPartnerTypeRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it.
|
|
149
|
+
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it. **Required Permissions** \"partner-management.partners.delete\"
|
|
150
150
|
* @summary Delete the partner-types
|
|
151
151
|
* @param {string} code
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -194,7 +194,7 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* 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.
|
|
197
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
198
198
|
* @summary Retrieve the partner-types
|
|
199
199
|
* @param {string} code Unique identifier for the object.
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -246,16 +246,16 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
246
246
|
});
|
|
247
247
|
},
|
|
248
248
|
/**
|
|
249
|
-
* 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.
|
|
249
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
250
250
|
* @summary List partner-types
|
|
251
251
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
252
|
-
* @param {
|
|
253
|
-
* @param {
|
|
254
|
-
* @param {
|
|
255
|
-
* @param {
|
|
256
|
-
* @param {
|
|
257
|
-
* @param {
|
|
258
|
-
* @param {
|
|
252
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
253
|
+
* @param {string} [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.
|
|
254
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
255
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
256
|
+
* @param {string} [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.
|
|
257
|
+
* @param {string} [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.
|
|
258
|
+
* @param {string} [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.
|
|
259
259
|
* @param {*} [options] Override http request option.
|
|
260
260
|
* @throws {RequiredError}
|
|
261
261
|
*/
|
|
@@ -318,7 +318,7 @@ var PartnerTypesApiAxiosParamCreator = function (configuration) {
|
|
|
318
318
|
});
|
|
319
319
|
},
|
|
320
320
|
/**
|
|
321
|
-
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
321
|
+
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\"
|
|
322
322
|
* @summary Update the partner-types
|
|
323
323
|
* @param {string} code Unique identifier for the object.
|
|
324
324
|
* @param {UpdatePartnerTypeRequestDto} updatePartnerTypeRequestDto
|
|
@@ -381,7 +381,7 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
381
381
|
var localVarAxiosParamCreator = (0, exports.PartnerTypesApiAxiosParamCreator)(configuration);
|
|
382
382
|
return {
|
|
383
383
|
/**
|
|
384
|
-
* This will create a partner type.
|
|
384
|
+
* This will create a partner type. **Required Permissions** \"partner-management.partners.create\"
|
|
385
385
|
* @summary Create the partner-types
|
|
386
386
|
* @param {CreatePartnerTypeRequestDto} createPartnerTypeRequestDto
|
|
387
387
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -402,7 +402,7 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
402
402
|
});
|
|
403
403
|
},
|
|
404
404
|
/**
|
|
405
|
-
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it.
|
|
405
|
+
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it. **Required Permissions** \"partner-management.partners.delete\"
|
|
406
406
|
* @summary Delete the partner-types
|
|
407
407
|
* @param {string} code
|
|
408
408
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -423,7 +423,7 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
423
423
|
});
|
|
424
424
|
},
|
|
425
425
|
/**
|
|
426
|
-
* 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.
|
|
426
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
427
427
|
* @summary Retrieve the partner-types
|
|
428
428
|
* @param {string} code Unique identifier for the object.
|
|
429
429
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -445,16 +445,16 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
445
445
|
});
|
|
446
446
|
},
|
|
447
447
|
/**
|
|
448
|
-
* 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.
|
|
448
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
449
449
|
* @summary List partner-types
|
|
450
450
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
451
|
-
* @param {
|
|
452
|
-
* @param {
|
|
453
|
-
* @param {
|
|
454
|
-
* @param {
|
|
455
|
-
* @param {
|
|
456
|
-
* @param {
|
|
457
|
-
* @param {
|
|
451
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
452
|
+
* @param {string} [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.
|
|
453
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
454
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
455
|
+
* @param {string} [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.
|
|
456
|
+
* @param {string} [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.
|
|
457
|
+
* @param {string} [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.
|
|
458
458
|
* @param {*} [options] Override http request option.
|
|
459
459
|
* @throws {RequiredError}
|
|
460
460
|
*/
|
|
@@ -472,7 +472,7 @@ var PartnerTypesApiFp = function (configuration) {
|
|
|
472
472
|
});
|
|
473
473
|
},
|
|
474
474
|
/**
|
|
475
|
-
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
475
|
+
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\"
|
|
476
476
|
* @summary Update the partner-types
|
|
477
477
|
* @param {string} code Unique identifier for the object.
|
|
478
478
|
* @param {UpdatePartnerTypeRequestDto} updatePartnerTypeRequestDto
|
|
@@ -504,7 +504,7 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
504
504
|
var localVarFp = (0, exports.PartnerTypesApiFp)(configuration);
|
|
505
505
|
return {
|
|
506
506
|
/**
|
|
507
|
-
* This will create a partner type.
|
|
507
|
+
* This will create a partner type. **Required Permissions** \"partner-management.partners.create\"
|
|
508
508
|
* @summary Create the partner-types
|
|
509
509
|
* @param {CreatePartnerTypeRequestDto} createPartnerTypeRequestDto
|
|
510
510
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -515,7 +515,7 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
515
515
|
return localVarFp.createPartnerType(createPartnerTypeRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
516
516
|
},
|
|
517
517
|
/**
|
|
518
|
-
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it.
|
|
518
|
+
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it. **Required Permissions** \"partner-management.partners.delete\"
|
|
519
519
|
* @summary Delete the partner-types
|
|
520
520
|
* @param {string} code
|
|
521
521
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -526,7 +526,7 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
526
526
|
return localVarFp.deletePartnerType(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
527
527
|
},
|
|
528
528
|
/**
|
|
529
|
-
* 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.
|
|
529
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
530
530
|
* @summary Retrieve the partner-types
|
|
531
531
|
* @param {string} code Unique identifier for the object.
|
|
532
532
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -538,16 +538,16 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
538
538
|
return localVarFp.getPartnerType(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
539
539
|
},
|
|
540
540
|
/**
|
|
541
|
-
* 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.
|
|
541
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
542
542
|
* @summary List partner-types
|
|
543
543
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
544
|
-
* @param {
|
|
545
|
-
* @param {
|
|
546
|
-
* @param {
|
|
547
|
-
* @param {
|
|
548
|
-
* @param {
|
|
549
|
-
* @param {
|
|
550
|
-
* @param {
|
|
544
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
545
|
+
* @param {string} [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.
|
|
546
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
547
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
548
|
+
* @param {string} [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.
|
|
549
|
+
* @param {string} [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.
|
|
550
|
+
* @param {string} [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.
|
|
551
551
|
* @param {*} [options] Override http request option.
|
|
552
552
|
* @throws {RequiredError}
|
|
553
553
|
*/
|
|
@@ -555,7 +555,7 @@ var PartnerTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
555
555
|
return localVarFp.listPartnerTypes(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
556
556
|
},
|
|
557
557
|
/**
|
|
558
|
-
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
558
|
+
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\"
|
|
559
559
|
* @summary Update the partner-types
|
|
560
560
|
* @param {string} code Unique identifier for the object.
|
|
561
561
|
* @param {UpdatePartnerTypeRequestDto} updatePartnerTypeRequestDto
|
|
@@ -581,7 +581,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
581
581
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
582
582
|
}
|
|
583
583
|
/**
|
|
584
|
-
* This will create a partner type.
|
|
584
|
+
* This will create a partner type. **Required Permissions** \"partner-management.partners.create\"
|
|
585
585
|
* @summary Create the partner-types
|
|
586
586
|
* @param {PartnerTypesApiCreatePartnerTypeRequest} requestParameters Request parameters.
|
|
587
587
|
* @param {*} [options] Override http request option.
|
|
@@ -593,7 +593,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
593
593
|
return (0, exports.PartnerTypesApiFp)(this.configuration).createPartnerType(requestParameters.createPartnerTypeRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
594
594
|
};
|
|
595
595
|
/**
|
|
596
|
-
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it.
|
|
596
|
+
* Permanently deletes the partner-types. Supply the unique code that was returned when you created the partner-types and this will delete it. **Required Permissions** \"partner-management.partners.delete\"
|
|
597
597
|
* @summary Delete the partner-types
|
|
598
598
|
* @param {PartnerTypesApiDeletePartnerTypeRequest} requestParameters Request parameters.
|
|
599
599
|
* @param {*} [options] Override http request option.
|
|
@@ -605,7 +605,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
605
605
|
return (0, exports.PartnerTypesApiFp)(this.configuration).deletePartnerType(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
606
606
|
};
|
|
607
607
|
/**
|
|
608
|
-
* 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.
|
|
608
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
609
609
|
* @summary Retrieve the partner-types
|
|
610
610
|
* @param {PartnerTypesApiGetPartnerTypeRequest} requestParameters Request parameters.
|
|
611
611
|
* @param {*} [options] Override http request option.
|
|
@@ -617,7 +617,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
617
617
|
return (0, exports.PartnerTypesApiFp)(this.configuration).getPartnerType(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
618
618
|
};
|
|
619
619
|
/**
|
|
620
|
-
* 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.
|
|
620
|
+
* 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. **Required Permissions** \"partner-management.partners.view\"
|
|
621
621
|
* @summary List partner-types
|
|
622
622
|
* @param {PartnerTypesApiListPartnerTypesRequest} requestParameters Request parameters.
|
|
623
623
|
* @param {*} [options] Override http request option.
|
|
@@ -630,7 +630,7 @@ var PartnerTypesApi = /** @class */ (function (_super) {
|
|
|
630
630
|
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); });
|
|
631
631
|
};
|
|
632
632
|
/**
|
|
633
|
-
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
633
|
+
* Updates the specified partner-types by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\"
|
|
634
634
|
* @summary Update the partner-types
|
|
635
635
|
* @param {PartnerTypesApiUpdatePartnerTypeRequest} requestParameters Request parameters.
|
|
636
636
|
* @param {*} [options] Override http request option.
|
|
@@ -20,7 +20,7 @@ import { ListPartnerVersionsResponseClass } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const PartnerVersionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* Retrieve a partner version by providing partner code and version number
|
|
23
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
24
24
|
* @summary Retrieve the partner version
|
|
25
25
|
* @param {string} code Unique identifier for the object.
|
|
26
26
|
* @param {number} version
|
|
@@ -30,21 +30,21 @@ export declare const PartnerVersionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
30
30
|
*/
|
|
31
31
|
getPartnerVersion: (code: string, version: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
/**
|
|
33
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
33
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
34
34
|
* @summary List partner versions
|
|
35
35
|
* @param {string} code
|
|
36
36
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
37
|
-
* @param {
|
|
38
|
-
* @param {
|
|
37
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
38
|
+
* @param {string} [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
39
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
40
|
-
* @param {
|
|
40
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
41
41
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
42
42
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
43
43
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
44
44
|
* @param {*} [options] Override http request option.
|
|
45
45
|
* @throws {RequiredError}
|
|
46
46
|
*/
|
|
47
|
-
listPartnerVersion: (code: string, authorization?: string, pageSize?:
|
|
47
|
+
listPartnerVersion: (code: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
50
|
* PartnerVersionsApi - functional programming interface
|
|
@@ -52,7 +52,7 @@ export declare const PartnerVersionsApiAxiosParamCreator: (configuration?: Confi
|
|
|
52
52
|
*/
|
|
53
53
|
export declare const PartnerVersionsApiFp: (configuration?: Configuration) => {
|
|
54
54
|
/**
|
|
55
|
-
* Retrieve a partner version by providing partner code and version number
|
|
55
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
56
56
|
* @summary Retrieve the partner version
|
|
57
57
|
* @param {string} code Unique identifier for the object.
|
|
58
58
|
* @param {number} version
|
|
@@ -62,21 +62,21 @@ export declare const PartnerVersionsApiFp: (configuration?: Configuration) => {
|
|
|
62
62
|
*/
|
|
63
63
|
getPartnerVersion(code: string, version: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPartnerVersionResponseClass>>;
|
|
64
64
|
/**
|
|
65
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
65
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
66
66
|
* @summary List partner versions
|
|
67
67
|
* @param {string} code
|
|
68
68
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
69
|
-
* @param {
|
|
70
|
-
* @param {
|
|
69
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
70
|
+
* @param {string} [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
71
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
72
|
-
* @param {
|
|
72
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
73
73
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
74
74
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
75
75
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
76
76
|
* @param {*} [options] Override http request option.
|
|
77
77
|
* @throws {RequiredError}
|
|
78
78
|
*/
|
|
79
|
-
listPartnerVersion(code: string, authorization?: string, pageSize?:
|
|
79
|
+
listPartnerVersion(code: 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<ListPartnerVersionsResponseClass>>;
|
|
80
80
|
};
|
|
81
81
|
/**
|
|
82
82
|
* PartnerVersionsApi - factory interface
|
|
@@ -84,7 +84,7 @@ export declare const PartnerVersionsApiFp: (configuration?: Configuration) => {
|
|
|
84
84
|
*/
|
|
85
85
|
export declare const PartnerVersionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
86
86
|
/**
|
|
87
|
-
* Retrieve a partner version by providing partner code and version number
|
|
87
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
88
88
|
* @summary Retrieve the partner version
|
|
89
89
|
* @param {string} code Unique identifier for the object.
|
|
90
90
|
* @param {number} version
|
|
@@ -94,21 +94,21 @@ export declare const PartnerVersionsApiFactory: (configuration?: Configuration,
|
|
|
94
94
|
*/
|
|
95
95
|
getPartnerVersion(code: string, version: number, authorization?: string, options?: any): AxiosPromise<GetPartnerVersionResponseClass>;
|
|
96
96
|
/**
|
|
97
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
97
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
98
98
|
* @summary List partner versions
|
|
99
99
|
* @param {string} code
|
|
100
100
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
101
|
-
* @param {
|
|
102
|
-
* @param {
|
|
101
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
102
|
+
* @param {string} [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
103
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
104
|
-
* @param {
|
|
104
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
105
105
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
106
106
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
107
107
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
110
110
|
*/
|
|
111
|
-
listPartnerVersion(code: string, authorization?: string, pageSize?:
|
|
111
|
+
listPartnerVersion(code: string, authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPartnerVersionsResponseClass>;
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* Request parameters for getPartnerVersion operation in PartnerVersionsApi.
|
|
@@ -155,16 +155,16 @@ export interface PartnerVersionsApiListPartnerVersionRequest {
|
|
|
155
155
|
readonly authorization?: string;
|
|
156
156
|
/**
|
|
157
157
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
|
-
* @type {
|
|
158
|
+
* @type {number}
|
|
159
159
|
* @memberof PartnerVersionsApiListPartnerVersion
|
|
160
160
|
*/
|
|
161
|
-
readonly pageSize?:
|
|
161
|
+
readonly pageSize?: number;
|
|
162
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,
|
|
164
|
-
* @type {
|
|
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 {string}
|
|
165
165
|
* @memberof PartnerVersionsApiListPartnerVersion
|
|
166
166
|
*/
|
|
167
|
-
readonly pageToken?:
|
|
167
|
+
readonly pageToken?: string;
|
|
168
168
|
/**
|
|
169
169
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
170
170
|
* @type {string}
|
|
@@ -173,10 +173,10 @@ export interface PartnerVersionsApiListPartnerVersionRequest {
|
|
|
173
173
|
readonly filter?: string;
|
|
174
174
|
/**
|
|
175
175
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
176
|
-
* @type {
|
|
176
|
+
* @type {string}
|
|
177
177
|
* @memberof PartnerVersionsApiListPartnerVersion
|
|
178
178
|
*/
|
|
179
|
-
readonly search?:
|
|
179
|
+
readonly search?: string;
|
|
180
180
|
/**
|
|
181
181
|
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
182
182
|
* @type {string}
|
|
@@ -204,7 +204,7 @@ export interface PartnerVersionsApiListPartnerVersionRequest {
|
|
|
204
204
|
*/
|
|
205
205
|
export declare class PartnerVersionsApi extends BaseAPI {
|
|
206
206
|
/**
|
|
207
|
-
* Retrieve a partner version by providing partner code and version number
|
|
207
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
208
208
|
* @summary Retrieve the partner version
|
|
209
209
|
* @param {PartnerVersionsApiGetPartnerVersionRequest} requestParameters Request parameters.
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
@@ -213,7 +213,7 @@ export declare class PartnerVersionsApi extends BaseAPI {
|
|
|
213
213
|
*/
|
|
214
214
|
getPartnerVersion(requestParameters: PartnerVersionsApiGetPartnerVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPartnerVersionResponseClass, any>>;
|
|
215
215
|
/**
|
|
216
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
216
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
217
217
|
* @summary List partner versions
|
|
218
218
|
* @param {PartnerVersionsApiListPartnerVersionRequest} requestParameters Request parameters.
|
|
219
219
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var PartnerVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Retrieve a partner version by providing partner code and version number
|
|
100
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
101
101
|
* @summary Retrieve the partner version
|
|
102
102
|
* @param {string} code Unique identifier for the object.
|
|
103
103
|
* @param {number} version
|
|
@@ -149,14 +149,14 @@ var PartnerVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
149
149
|
});
|
|
150
150
|
},
|
|
151
151
|
/**
|
|
152
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
152
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
153
153
|
* @summary List partner versions
|
|
154
154
|
* @param {string} code
|
|
155
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
156
|
-
* @param {
|
|
157
|
-
* @param {
|
|
156
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
157
|
+
* @param {string} [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.
|
|
158
158
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
159
|
-
* @param {
|
|
159
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
160
160
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
161
161
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
162
162
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
@@ -235,7 +235,7 @@ var PartnerVersionsApiFp = function (configuration) {
|
|
|
235
235
|
var localVarAxiosParamCreator = (0, exports.PartnerVersionsApiAxiosParamCreator)(configuration);
|
|
236
236
|
return {
|
|
237
237
|
/**
|
|
238
|
-
* Retrieve a partner version by providing partner code and version number
|
|
238
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
239
239
|
* @summary Retrieve the partner version
|
|
240
240
|
* @param {string} code Unique identifier for the object.
|
|
241
241
|
* @param {number} version
|
|
@@ -257,14 +257,14 @@ var PartnerVersionsApiFp = function (configuration) {
|
|
|
257
257
|
});
|
|
258
258
|
},
|
|
259
259
|
/**
|
|
260
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
260
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
261
261
|
* @summary List partner versions
|
|
262
262
|
* @param {string} code
|
|
263
263
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
264
|
-
* @param {
|
|
265
|
-
* @param {
|
|
264
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
265
|
+
* @param {string} [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.
|
|
266
266
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
267
|
-
* @param {
|
|
267
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
268
268
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
269
269
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
270
270
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
@@ -295,7 +295,7 @@ var PartnerVersionsApiFactory = function (configuration, basePath, axios) {
|
|
|
295
295
|
var localVarFp = (0, exports.PartnerVersionsApiFp)(configuration);
|
|
296
296
|
return {
|
|
297
297
|
/**
|
|
298
|
-
* Retrieve a partner version by providing partner code and version number
|
|
298
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
299
299
|
* @summary Retrieve the partner version
|
|
300
300
|
* @param {string} code Unique identifier for the object.
|
|
301
301
|
* @param {number} version
|
|
@@ -307,14 +307,14 @@ var PartnerVersionsApiFactory = function (configuration, basePath, axios) {
|
|
|
307
307
|
return localVarFp.getPartnerVersion(code, version, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
308
308
|
},
|
|
309
309
|
/**
|
|
310
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
310
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
311
311
|
* @summary List partner versions
|
|
312
312
|
* @param {string} code
|
|
313
313
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
314
|
-
* @param {
|
|
315
|
-
* @param {
|
|
314
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
315
|
+
* @param {string} [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.
|
|
316
316
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
317
|
-
* @param {
|
|
317
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
318
318
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: displayName, createdAt, updatedAt, version</i>
|
|
319
319
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: partnerType<i>
|
|
320
320
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, version, displayName, updatedAt, updatedBy</i>
|
|
@@ -339,7 +339,7 @@ var PartnerVersionsApi = /** @class */ (function (_super) {
|
|
|
339
339
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
|
-
* Retrieve a partner version by providing partner code and version number
|
|
342
|
+
* Retrieve a partner version by providing partner code and version number **Required Permissions** \"partner-management.partners.view\"
|
|
343
343
|
* @summary Retrieve the partner version
|
|
344
344
|
* @param {PartnerVersionsApiGetPartnerVersionRequest} requestParameters Request parameters.
|
|
345
345
|
* @param {*} [options] Override http request option.
|
|
@@ -351,7 +351,7 @@ var PartnerVersionsApi = /** @class */ (function (_super) {
|
|
|
351
351
|
return (0, exports.PartnerVersionsApiFp)(this.configuration).getPartnerVersion(requestParameters.code, requestParameters.version, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
352
352
|
};
|
|
353
353
|
/**
|
|
354
|
-
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
354
|
+
* Returns a list of partner versions you have previously created. The partner versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"partner-management.partners.view\"
|
|
355
355
|
* @summary List partner versions
|
|
356
356
|
* @param {PartnerVersionsApiListPartnerVersionRequest} requestParameters Request parameters.
|
|
357
357
|
* @param {*} [options] Override http request option.
|