@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.
@@ -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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
253
- * @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.
254
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
255
- * @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
256
- * @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.
257
- * @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.
258
- * @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.
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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
452
- * @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.
453
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
454
- * @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
455
- * @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.
456
- * @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.
457
- * @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.
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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
545
- * @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.
546
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
547
- * @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
548
- * @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.
549
- * @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.
550
- * @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.
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 {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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
40
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
40
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
43
43
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
44
44
  * @param {*} [options] Override http request option.
45
45
  * @throws {RequiredError}
46
46
  */
47
- listPartnerVersion: (code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
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 {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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
72
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
72
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
75
75
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
76
76
  * @param {*} [options] Override http request option.
77
77
  * @throws {RequiredError}
78
78
  */
79
- listPartnerVersion(code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPartnerVersionsResponseClass>>;
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 {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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
104
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
104
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
107
107
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
108
108
  * @param {*} [options] Override http request option.
109
109
  * @throws {RequiredError}
110
110
  */
111
- listPartnerVersion(code: string, authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPartnerVersionsResponseClass>;
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 {any}
158
+ * @type {number}
159
159
  * @memberof PartnerVersionsApiListPartnerVersion
160
160
  */
161
- readonly pageSize?: any;
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
164
- * @type {any}
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
164
+ * @type {string}
165
165
  * @memberof PartnerVersionsApiListPartnerVersion
166
166
  */
167
- readonly pageToken?: any;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
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&#x3D;xxx to fetch the result.
176
- * @type {any}
176
+ * @type {string}
177
177
  * @memberof PartnerVersionsApiListPartnerVersion
178
178
  */
179
- readonly search?: any;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
157
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
159
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
159
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
162
162
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
@@ -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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
265
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
267
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
267
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
270
270
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
@@ -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 {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
315
- * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
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&#x3D;1, your subsequent call can include pageToken&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
317
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
317
+ * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: displayName, createdAt, updatedAt, version&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partnerType&lt;i&gt;
320
320
  * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, version, displayName, updatedAt, updatedBy&lt;/i&gt;
@@ -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.