@emilgroup/partner-sdk 1.22.1-beta.15 → 1.22.1-beta.17

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.
Files changed (81) hide show
  1. package/.openapi-generator/FILES +23 -0
  2. package/README.md +2 -2
  3. package/api/partner-hierarchies-api.ts +1342 -0
  4. package/api/partner-hierarchy-nodes-api.ts +1178 -0
  5. package/api/partners-api.ts +12 -12
  6. package/api.ts +4 -0
  7. package/dist/api/partner-hierarchies-api.d.ts +760 -0
  8. package/dist/api/partner-hierarchies-api.js +1164 -0
  9. package/dist/api/partner-hierarchy-nodes-api.d.ts +663 -0
  10. package/dist/api/partner-hierarchy-nodes-api.js +1043 -0
  11. package/dist/api/partners-api.d.ts +12 -12
  12. package/dist/api/partners-api.js +9 -9
  13. package/dist/api.d.ts +2 -0
  14. package/dist/api.js +2 -0
  15. package/dist/models/create-partner-hierarchy-node-request-dto.d.ts +42 -0
  16. package/dist/models/create-partner-hierarchy-node-request-dto.js +15 -0
  17. package/dist/models/create-partner-hierarchy-node-response-class.d.ts +25 -0
  18. package/dist/models/create-partner-hierarchy-node-response-class.js +15 -0
  19. package/dist/models/create-partner-hierarchy-request-dto.d.ts +30 -0
  20. package/dist/models/create-partner-hierarchy-request-dto.js +15 -0
  21. package/dist/models/create-partner-hierarchy-response-class.d.ts +25 -0
  22. package/dist/models/create-partner-hierarchy-response-class.js +15 -0
  23. package/dist/models/get-partner-hierarchy-node-response-class.d.ts +25 -0
  24. package/dist/models/get-partner-hierarchy-node-response-class.js +15 -0
  25. package/dist/models/get-partner-hierarchy-response-class.d.ts +25 -0
  26. package/dist/models/get-partner-hierarchy-response-class.js +15 -0
  27. package/dist/models/get-partner-hierarchy-tree-response-class.d.ts +25 -0
  28. package/dist/models/get-partner-hierarchy-tree-response-class.js +15 -0
  29. package/dist/models/index.d.ts +21 -0
  30. package/dist/models/index.js +21 -0
  31. package/dist/models/list-partner-hierarchies-response-class.d.ts +43 -0
  32. package/dist/models/list-partner-hierarchies-response-class.js +15 -0
  33. package/dist/models/list-partner-hierarchy-node-history-response-class.d.ts +43 -0
  34. package/dist/models/list-partner-hierarchy-node-history-response-class.js +15 -0
  35. package/dist/models/list-partner-hierarchy-nodes-response-class.d.ts +43 -0
  36. package/dist/models/list-partner-hierarchy-nodes-response-class.js +15 -0
  37. package/dist/models/move-partner-hierarchy-node-request-dto.d.ts +30 -0
  38. package/dist/models/move-partner-hierarchy-node-request-dto.js +15 -0
  39. package/dist/models/move-partner-hierarchy-node-response-class.d.ts +25 -0
  40. package/dist/models/move-partner-hierarchy-node-response-class.js +15 -0
  41. package/dist/models/partner-hierarchy-class.d.ts +78 -0
  42. package/dist/models/partner-hierarchy-class.js +15 -0
  43. package/dist/models/partner-hierarchy-node-class.d.ts +109 -0
  44. package/dist/models/partner-hierarchy-node-class.js +15 -0
  45. package/dist/models/partner-hierarchy-node-history-class.d.ts +97 -0
  46. package/dist/models/partner-hierarchy-node-history-class.js +15 -0
  47. package/dist/models/partner-hierarchy-node-tree-class.d.ts +96 -0
  48. package/dist/models/partner-hierarchy-node-tree-class.js +15 -0
  49. package/dist/models/unassign-partner-hierarchy-node-response-class.d.ts +25 -0
  50. package/dist/models/unassign-partner-hierarchy-node-response-class.js +15 -0
  51. package/dist/models/update-partner-hierarchy-node-request-dto.d.ts +30 -0
  52. package/dist/models/update-partner-hierarchy-node-request-dto.js +15 -0
  53. package/dist/models/update-partner-hierarchy-node-response-class.d.ts +25 -0
  54. package/dist/models/update-partner-hierarchy-node-response-class.js +15 -0
  55. package/dist/models/update-partner-hierarchy-request-dto.d.ts +24 -0
  56. package/dist/models/update-partner-hierarchy-request-dto.js +15 -0
  57. package/dist/models/update-partner-hierarchy-response-class.d.ts +25 -0
  58. package/dist/models/update-partner-hierarchy-response-class.js +15 -0
  59. package/models/create-partner-hierarchy-node-request-dto.ts +48 -0
  60. package/models/create-partner-hierarchy-node-response-class.ts +31 -0
  61. package/models/create-partner-hierarchy-request-dto.ts +36 -0
  62. package/models/create-partner-hierarchy-response-class.ts +31 -0
  63. package/models/get-partner-hierarchy-node-response-class.ts +31 -0
  64. package/models/get-partner-hierarchy-response-class.ts +31 -0
  65. package/models/get-partner-hierarchy-tree-response-class.ts +31 -0
  66. package/models/index.ts +21 -0
  67. package/models/list-partner-hierarchies-response-class.ts +49 -0
  68. package/models/list-partner-hierarchy-node-history-response-class.ts +49 -0
  69. package/models/list-partner-hierarchy-nodes-response-class.ts +49 -0
  70. package/models/move-partner-hierarchy-node-request-dto.ts +36 -0
  71. package/models/move-partner-hierarchy-node-response-class.ts +31 -0
  72. package/models/partner-hierarchy-class.ts +84 -0
  73. package/models/partner-hierarchy-node-class.ts +115 -0
  74. package/models/partner-hierarchy-node-history-class.ts +103 -0
  75. package/models/partner-hierarchy-node-tree-class.ts +102 -0
  76. package/models/unassign-partner-hierarchy-node-response-class.ts +31 -0
  77. package/models/update-partner-hierarchy-node-request-dto.ts +36 -0
  78. package/models/update-partner-hierarchy-node-response-class.ts +31 -0
  79. package/models/update-partner-hierarchy-request-dto.ts +30 -0
  80. package/models/update-partner-hierarchy-response-class.ts +31 -0
  81. package/package.json +1 -1
@@ -83,11 +83,11 @@ export declare const PartnersApiAxiosParamCreator: (configuration?: Configuratio
83
83
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
84
84
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
85
85
  * @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.
86
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
86
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
87
87
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
88
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
88
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
89
89
  * @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, tags, partnerTagLabels<i>
90
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
90
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
91
91
  * @param {*} [options] Override http request option.
92
92
  * @throws {RequiredError}
93
93
  */
@@ -196,11 +196,11 @@ export declare const PartnersApiFp: (configuration?: Configuration) => {
196
196
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
197
197
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
198
198
  * @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.
199
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
199
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
200
200
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
201
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
201
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
202
202
  * @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, tags, partnerTagLabels<i>
203
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
203
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
204
204
  * @param {*} [options] Override http request option.
205
205
  * @throws {RequiredError}
206
206
  */
@@ -309,11 +309,11 @@ export declare const PartnersApiFactory: (configuration?: Configuration, basePat
309
309
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
310
310
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
311
311
  * @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.
312
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
312
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
313
313
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
314
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
314
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
315
315
  * @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, tags, partnerTagLabels<i>
316
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
316
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
317
317
  * @param {*} [options] Override http request option.
318
318
  * @throws {RequiredError}
319
319
  */
@@ -491,7 +491,7 @@ export interface PartnersApiListPartnersRequest {
491
491
  */
492
492
  readonly pageToken?: string;
493
493
  /**
494
- * 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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
494
+ * 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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
495
495
  * @type {string}
496
496
  * @memberof PartnersApiListPartners
497
497
  */
@@ -503,7 +503,7 @@ export interface PartnersApiListPartnersRequest {
503
503
  */
504
504
  readonly search?: string;
505
505
  /**
506
- * 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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
506
+ * 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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
507
507
  * @type {string}
508
508
  * @memberof PartnersApiListPartners
509
509
  */
@@ -515,7 +515,7 @@ export interface PartnersApiListPartnersRequest {
515
515
  */
516
516
  readonly expand?: string;
517
517
  /**
518
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
518
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
519
519
  * @type {string}
520
520
  * @memberof PartnersApiListPartners
521
521
  */
@@ -344,11 +344,11 @@ var PartnersApiAxiosParamCreator = function (configuration) {
344
344
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
345
345
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
346
346
  * @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.
347
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
347
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
348
348
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
349
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
349
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
350
350
  * @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, tags, partnerTagLabels<i>
351
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
351
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
352
352
  * @param {*} [options] Override http request option.
353
353
  * @throws {RequiredError}
354
354
  */
@@ -767,11 +767,11 @@ var PartnersApiFp = function (configuration) {
767
767
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
768
768
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
769
769
  * @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.
770
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
770
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
771
771
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
772
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
772
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
773
773
  * @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, tags, partnerTagLabels<i>
774
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
774
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
775
775
  * @param {*} [options] Override http request option.
776
776
  * @throws {RequiredError}
777
777
  */
@@ -954,11 +954,11 @@ var PartnersApiFactory = function (configuration, basePath, axios) {
954
954
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
955
955
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
956
956
  * @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.
957
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
957
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
958
958
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
959
- * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels</i>
959
+ * @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: id, code, displayName, createdAt, updatedAt, version, tags, tagSlugs, partnerNumber, partnerType.name, partnerTagLabels.tagLabels, subPartnersCount</i>
960
960
  * @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, tags, partnerTagLabels<i>
961
- * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode</i>
961
+ * @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: id, code, displayName, createdAt, updatedAt, tags, tagSlugs, partnerTypeCodes, partnerTypeId, tenantUserCode, partnerNumber, accountCode, subPartnersCount</i>
962
962
  * @param {*} [options] Override http request option.
963
963
  * @throws {RequiredError}
964
964
  */
package/dist/api.d.ts CHANGED
@@ -12,6 +12,8 @@
12
12
  export * from './api/blacklist-api';
13
13
  export * from './api/blacklist-reasons-api';
14
14
  export * from './api/health-api';
15
+ export * from './api/partner-hierarchies-api';
16
+ export * from './api/partner-hierarchy-nodes-api';
15
17
  export * from './api/partner-hierarchy-types-api';
16
18
  export * from './api/partner-invitations-api';
17
19
  export * from './api/partner-relations-api';
package/dist/api.js CHANGED
@@ -30,6 +30,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
30
30
  __exportStar(require("./api/blacklist-api"), exports);
31
31
  __exportStar(require("./api/blacklist-reasons-api"), exports);
32
32
  __exportStar(require("./api/health-api"), exports);
33
+ __exportStar(require("./api/partner-hierarchies-api"), exports);
34
+ __exportStar(require("./api/partner-hierarchy-nodes-api"), exports);
33
35
  __exportStar(require("./api/partner-hierarchy-types-api"), exports);
34
36
  __exportStar(require("./api/partner-invitations-api"), exports);
35
37
  __exportStar(require("./api/partner-relations-api"), exports);
@@ -0,0 +1,42 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreatePartnerHierarchyNodeRequestDto
16
+ */
17
+ export interface CreatePartnerHierarchyNodeRequestDto {
18
+ /**
19
+ * Code of the hierarchy this node belongs to.
20
+ * @type {string}
21
+ * @memberof CreatePartnerHierarchyNodeRequestDto
22
+ */
23
+ 'partnerHierarchyCode': string;
24
+ /**
25
+ * Partner code to assign to the new node. Omit to create a vacant hierarchy position.
26
+ * @type {string}
27
+ * @memberof CreatePartnerHierarchyNodeRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ /**
31
+ * Role code for this hierarchy position. It must be allowed by the hierarchy type at the resolved depth.
32
+ * @type {string}
33
+ * @memberof CreatePartnerHierarchyNodeRequestDto
34
+ */
35
+ 'roleCode': string;
36
+ /**
37
+ * Parent node code. Omit when creating the hierarchy root node.
38
+ * @type {string}
39
+ * @memberof CreatePartnerHierarchyNodeRequestDto
40
+ */
41
+ 'parentNodeCode'?: string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerHierarchyNodeClass } from './partner-hierarchy-node-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePartnerHierarchyNodeResponseClass
17
+ */
18
+ export interface CreatePartnerHierarchyNodeResponseClass {
19
+ /**
20
+ * The partner hierarchy node response.
21
+ * @type {PartnerHierarchyNodeClass}
22
+ * @memberof CreatePartnerHierarchyNodeResponseClass
23
+ */
24
+ 'node': PartnerHierarchyNodeClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,30 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreatePartnerHierarchyRequestDto
16
+ */
17
+ export interface CreatePartnerHierarchyRequestDto {
18
+ /**
19
+ * Human-readable name for this hierarchy instance.
20
+ * @type {string}
21
+ * @memberof CreatePartnerHierarchyRequestDto
22
+ */
23
+ 'name': string;
24
+ /**
25
+ * Code of the partner hierarchy type this instance is built from.
26
+ * @type {string}
27
+ * @memberof CreatePartnerHierarchyRequestDto
28
+ */
29
+ 'partnerHierarchyTypeCode': string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerHierarchyClass } from './partner-hierarchy-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePartnerHierarchyResponseClass
17
+ */
18
+ export interface CreatePartnerHierarchyResponseClass {
19
+ /**
20
+ * The partner hierarchy response.
21
+ * @type {PartnerHierarchyClass}
22
+ * @memberof CreatePartnerHierarchyResponseClass
23
+ */
24
+ 'hierarchy': PartnerHierarchyClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerHierarchyNodeClass } from './partner-hierarchy-node-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPartnerHierarchyNodeResponseClass
17
+ */
18
+ export interface GetPartnerHierarchyNodeResponseClass {
19
+ /**
20
+ * The partner hierarchy node response.
21
+ * @type {PartnerHierarchyNodeClass}
22
+ * @memberof GetPartnerHierarchyNodeResponseClass
23
+ */
24
+ 'node': PartnerHierarchyNodeClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerHierarchyClass } from './partner-hierarchy-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPartnerHierarchyResponseClass
17
+ */
18
+ export interface GetPartnerHierarchyResponseClass {
19
+ /**
20
+ * The partner hierarchy response.
21
+ * @type {PartnerHierarchyClass}
22
+ * @memberof GetPartnerHierarchyResponseClass
23
+ */
24
+ 'hierarchy': PartnerHierarchyClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerHierarchyNodeTreeClass } from './partner-hierarchy-node-tree-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPartnerHierarchyTreeResponseClass
17
+ */
18
+ export interface GetPartnerHierarchyTreeResponseClass {
19
+ /**
20
+ * The partner hierarchy tree response.
21
+ * @type {PartnerHierarchyNodeTreeClass}
22
+ * @memberof GetPartnerHierarchyTreeResponseClass
23
+ */
24
+ 'tree': PartnerHierarchyNodeTreeClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,6 +6,10 @@ export * from './create-blacklist-reason-request-dto';
6
6
  export * from './create-blacklist-reason-response-class';
7
7
  export * from './create-or-update-partner-from-account-request-dto';
8
8
  export * from './create-or-update-partner-from-account-response-class';
9
+ export * from './create-partner-hierarchy-node-request-dto';
10
+ export * from './create-partner-hierarchy-node-response-class';
11
+ export * from './create-partner-hierarchy-request-dto';
12
+ export * from './create-partner-hierarchy-response-class';
9
13
  export * from './create-partner-hierarchy-type-request-dto';
10
14
  export * from './create-partner-hierarchy-type-response-class';
11
15
  export * from './create-partner-relation-request-dto-rest';
@@ -20,6 +24,9 @@ export * from './delete-by-code-response-class';
20
24
  export * from './delete-response-class';
21
25
  export * from './get-blacklist-item-response-class';
22
26
  export * from './get-blacklist-reason-response-class';
27
+ export * from './get-partner-hierarchy-node-response-class';
28
+ export * from './get-partner-hierarchy-response-class';
29
+ export * from './get-partner-hierarchy-tree-response-class';
23
30
  export * from './get-partner-hierarchy-type-response-class';
24
31
  export * from './get-partner-relation-class';
25
32
  export * from './get-partner-relation-type-class';
@@ -36,6 +43,9 @@ export * from './invite-partner-to-eis-response-class';
36
43
  export * from './is-blacklisted-response-class';
37
44
  export * from './list-blacklist-items-response-class';
38
45
  export * from './list-blacklist-reasons-response-class';
46
+ export * from './list-partner-hierarchies-response-class';
47
+ export * from './list-partner-hierarchy-node-history-response-class';
48
+ export * from './list-partner-hierarchy-nodes-response-class';
39
49
  export * from './list-partner-hierarchy-types-response-class';
40
50
  export * from './list-partner-relation-class';
41
51
  export * from './list-partner-relation-types-class';
@@ -48,7 +58,13 @@ export * from './map-partner-to-account-response-class';
48
58
  export * from './mapped-account-from-partner-class';
49
59
  export * from './merge-partners-request-dto';
50
60
  export * from './merge-partners-response-class';
61
+ export * from './move-partner-hierarchy-node-request-dto';
62
+ export * from './move-partner-hierarchy-node-response-class';
51
63
  export * from './partner-class';
64
+ export * from './partner-hierarchy-class';
65
+ export * from './partner-hierarchy-node-class';
66
+ export * from './partner-hierarchy-node-history-class';
67
+ export * from './partner-hierarchy-node-tree-class';
52
68
  export * from './partner-hierarchy-type-class';
53
69
  export * from './partner-relation-class';
54
70
  export * from './partner-relation-type-class';
@@ -59,9 +75,14 @@ export * from './related-partner-data-class';
59
75
  export * from './role-class';
60
76
  export * from './tag-class';
61
77
  export * from './tag-partner-request-dto-rest';
78
+ export * from './unassign-partner-hierarchy-node-response-class';
62
79
  export * from './update-blacklist-reason-request-dto';
63
80
  export * from './update-blacklist-reason-response-class';
64
81
  export * from './update-blacklist-reason-status-request-dto';
82
+ export * from './update-partner-hierarchy-node-request-dto';
83
+ export * from './update-partner-hierarchy-node-response-class';
84
+ export * from './update-partner-hierarchy-request-dto';
85
+ export * from './update-partner-hierarchy-response-class';
65
86
  export * from './update-partner-hierarchy-type-request-dto';
66
87
  export * from './update-partner-hierarchy-type-response-class';
67
88
  export * from './update-partner-relation-request-dto-rest';
@@ -22,6 +22,10 @@ __exportStar(require("./create-blacklist-reason-request-dto"), exports);
22
22
  __exportStar(require("./create-blacklist-reason-response-class"), exports);
23
23
  __exportStar(require("./create-or-update-partner-from-account-request-dto"), exports);
24
24
  __exportStar(require("./create-or-update-partner-from-account-response-class"), exports);
25
+ __exportStar(require("./create-partner-hierarchy-node-request-dto"), exports);
26
+ __exportStar(require("./create-partner-hierarchy-node-response-class"), exports);
27
+ __exportStar(require("./create-partner-hierarchy-request-dto"), exports);
28
+ __exportStar(require("./create-partner-hierarchy-response-class"), exports);
25
29
  __exportStar(require("./create-partner-hierarchy-type-request-dto"), exports);
26
30
  __exportStar(require("./create-partner-hierarchy-type-response-class"), exports);
27
31
  __exportStar(require("./create-partner-relation-request-dto-rest"), exports);
@@ -36,6 +40,9 @@ __exportStar(require("./delete-by-code-response-class"), exports);
36
40
  __exportStar(require("./delete-response-class"), exports);
37
41
  __exportStar(require("./get-blacklist-item-response-class"), exports);
38
42
  __exportStar(require("./get-blacklist-reason-response-class"), exports);
43
+ __exportStar(require("./get-partner-hierarchy-node-response-class"), exports);
44
+ __exportStar(require("./get-partner-hierarchy-response-class"), exports);
45
+ __exportStar(require("./get-partner-hierarchy-tree-response-class"), exports);
39
46
  __exportStar(require("./get-partner-hierarchy-type-response-class"), exports);
40
47
  __exportStar(require("./get-partner-relation-class"), exports);
41
48
  __exportStar(require("./get-partner-relation-type-class"), exports);
@@ -52,6 +59,9 @@ __exportStar(require("./invite-partner-to-eis-response-class"), exports);
52
59
  __exportStar(require("./is-blacklisted-response-class"), exports);
53
60
  __exportStar(require("./list-blacklist-items-response-class"), exports);
54
61
  __exportStar(require("./list-blacklist-reasons-response-class"), exports);
62
+ __exportStar(require("./list-partner-hierarchies-response-class"), exports);
63
+ __exportStar(require("./list-partner-hierarchy-node-history-response-class"), exports);
64
+ __exportStar(require("./list-partner-hierarchy-nodes-response-class"), exports);
55
65
  __exportStar(require("./list-partner-hierarchy-types-response-class"), exports);
56
66
  __exportStar(require("./list-partner-relation-class"), exports);
57
67
  __exportStar(require("./list-partner-relation-types-class"), exports);
@@ -64,7 +74,13 @@ __exportStar(require("./map-partner-to-account-response-class"), exports);
64
74
  __exportStar(require("./mapped-account-from-partner-class"), exports);
65
75
  __exportStar(require("./merge-partners-request-dto"), exports);
66
76
  __exportStar(require("./merge-partners-response-class"), exports);
77
+ __exportStar(require("./move-partner-hierarchy-node-request-dto"), exports);
78
+ __exportStar(require("./move-partner-hierarchy-node-response-class"), exports);
67
79
  __exportStar(require("./partner-class"), exports);
80
+ __exportStar(require("./partner-hierarchy-class"), exports);
81
+ __exportStar(require("./partner-hierarchy-node-class"), exports);
82
+ __exportStar(require("./partner-hierarchy-node-history-class"), exports);
83
+ __exportStar(require("./partner-hierarchy-node-tree-class"), exports);
68
84
  __exportStar(require("./partner-hierarchy-type-class"), exports);
69
85
  __exportStar(require("./partner-relation-class"), exports);
70
86
  __exportStar(require("./partner-relation-type-class"), exports);
@@ -75,9 +91,14 @@ __exportStar(require("./related-partner-data-class"), exports);
75
91
  __exportStar(require("./role-class"), exports);
76
92
  __exportStar(require("./tag-class"), exports);
77
93
  __exportStar(require("./tag-partner-request-dto-rest"), exports);
94
+ __exportStar(require("./unassign-partner-hierarchy-node-response-class"), exports);
78
95
  __exportStar(require("./update-blacklist-reason-request-dto"), exports);
79
96
  __exportStar(require("./update-blacklist-reason-response-class"), exports);
80
97
  __exportStar(require("./update-blacklist-reason-status-request-dto"), exports);
98
+ __exportStar(require("./update-partner-hierarchy-node-request-dto"), exports);
99
+ __exportStar(require("./update-partner-hierarchy-node-response-class"), exports);
100
+ __exportStar(require("./update-partner-hierarchy-request-dto"), exports);
101
+ __exportStar(require("./update-partner-hierarchy-response-class"), exports);
81
102
  __exportStar(require("./update-partner-hierarchy-type-request-dto"), exports);
82
103
  __exportStar(require("./update-partner-hierarchy-type-response-class"), exports);
83
104
  __exportStar(require("./update-partner-relation-request-dto-rest"), exports);