@emilgroup/partner-sdk 1.22.1-beta.9 → 1.23.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/.openapi-generator/FILES +41 -0
  2. package/README.md +2 -2
  3. package/api/blacklist-api.ts +3 -3
  4. package/api/blacklist-reasons-api.ts +3 -3
  5. package/api/partner-hierarchies-api.ts +1367 -0
  6. package/api/partner-hierarchy-nodes-api.ts +1197 -0
  7. package/api/partner-hierarchy-types-api.ts +679 -0
  8. package/api/partners-api.ts +318 -12
  9. package/api.ts +6 -0
  10. package/base.ts +1 -0
  11. package/dist/api/blacklist-api.d.ts +4 -4
  12. package/dist/api/blacklist-reasons-api.d.ts +4 -4
  13. package/dist/api/partner-hierarchies-api.d.ts +774 -0
  14. package/dist/api/partner-hierarchies-api.js +1171 -0
  15. package/dist/api/partner-hierarchy-nodes-api.d.ts +674 -0
  16. package/dist/api/partner-hierarchy-nodes-api.js +1049 -0
  17. package/dist/api/partner-hierarchy-types-api.d.ts +385 -0
  18. package/dist/api/partner-hierarchy-types-api.js +636 -0
  19. package/dist/api/partners-api.d.ts +187 -12
  20. package/dist/api/partners-api.js +236 -9
  21. package/dist/api.d.ts +3 -0
  22. package/dist/api.js +3 -0
  23. package/dist/base.d.ts +2 -1
  24. package/dist/base.js +1 -0
  25. package/dist/models/batch-create-partner-hierarchy-nodes-request-dto.d.ts +30 -0
  26. package/dist/models/batch-create-partner-hierarchy-nodes-request-dto.js +15 -0
  27. package/dist/models/create-partner-hierarchy-node-request-dto.d.ts +42 -0
  28. package/dist/models/create-partner-hierarchy-node-request-dto.js +15 -0
  29. package/dist/models/create-partner-hierarchy-node-response-class.d.ts +25 -0
  30. package/dist/models/create-partner-hierarchy-node-response-class.js +15 -0
  31. package/dist/models/create-partner-hierarchy-request-dto.d.ts +30 -0
  32. package/dist/models/create-partner-hierarchy-request-dto.js +15 -0
  33. package/dist/models/create-partner-hierarchy-response-class.d.ts +25 -0
  34. package/dist/models/create-partner-hierarchy-response-class.js +15 -0
  35. package/dist/models/create-partner-hierarchy-type-request-dto.d.ts +30 -0
  36. package/dist/models/create-partner-hierarchy-type-request-dto.js +15 -0
  37. package/dist/models/create-partner-hierarchy-type-response-class.d.ts +25 -0
  38. package/dist/models/create-partner-hierarchy-type-response-class.js +15 -0
  39. package/dist/models/delete-by-code-response-class.d.ts +24 -0
  40. package/dist/models/delete-by-code-response-class.js +15 -0
  41. package/dist/models/generate-upload-url-response-class.d.ts +36 -0
  42. package/dist/models/generate-upload-url-response-class.js +15 -0
  43. package/dist/models/get-partner-hierarchy-node-response-class.d.ts +25 -0
  44. package/dist/models/get-partner-hierarchy-node-response-class.js +15 -0
  45. package/dist/models/get-partner-hierarchy-response-class.d.ts +25 -0
  46. package/dist/models/get-partner-hierarchy-response-class.js +15 -0
  47. package/dist/models/get-partner-hierarchy-tree-file-response-class.d.ts +42 -0
  48. package/dist/models/get-partner-hierarchy-tree-file-response-class.js +15 -0
  49. package/dist/models/get-partner-hierarchy-tree-response-class.d.ts +25 -0
  50. package/dist/models/get-partner-hierarchy-tree-response-class.js +15 -0
  51. package/dist/models/get-partner-hierarchy-type-response-class.d.ts +25 -0
  52. package/dist/models/get-partner-hierarchy-type-response-class.js +15 -0
  53. package/dist/models/index.d.ts +38 -0
  54. package/dist/models/index.js +38 -0
  55. package/dist/models/list-partner-hierarchies-response-class.d.ts +43 -0
  56. package/dist/models/list-partner-hierarchies-response-class.js +15 -0
  57. package/dist/models/list-partner-hierarchy-node-history-response-class.d.ts +43 -0
  58. package/dist/models/list-partner-hierarchy-node-history-response-class.js +15 -0
  59. package/dist/models/list-partner-hierarchy-nodes-response-class.d.ts +43 -0
  60. package/dist/models/list-partner-hierarchy-nodes-response-class.js +15 -0
  61. package/dist/models/list-partner-hierarchy-operations-response-class.d.ts +43 -0
  62. package/dist/models/list-partner-hierarchy-operations-response-class.js +15 -0
  63. package/dist/models/list-partner-hierarchy-types-response-class.d.ts +43 -0
  64. package/dist/models/list-partner-hierarchy-types-response-class.js +15 -0
  65. package/dist/models/list-partners-response-class.d.ts +9 -9
  66. package/dist/models/move-partner-hierarchy-node-request-dto.d.ts +30 -0
  67. package/dist/models/move-partner-hierarchy-node-request-dto.js +15 -0
  68. package/dist/models/move-partner-hierarchy-node-response-class.d.ts +25 -0
  69. package/dist/models/move-partner-hierarchy-node-response-class.js +15 -0
  70. package/dist/models/partner-class.d.ts +6 -0
  71. package/dist/models/partner-hierarchy-async-operation-response-class.d.ts +30 -0
  72. package/dist/models/partner-hierarchy-async-operation-response-class.js +15 -0
  73. package/dist/models/partner-hierarchy-class.d.ts +78 -0
  74. package/dist/models/partner-hierarchy-class.js +15 -0
  75. package/dist/models/partner-hierarchy-node-class.d.ts +109 -0
  76. package/dist/models/partner-hierarchy-node-class.js +15 -0
  77. package/dist/models/partner-hierarchy-node-history-class.d.ts +97 -0
  78. package/dist/models/partner-hierarchy-node-history-class.js +15 -0
  79. package/dist/models/partner-hierarchy-node-tree-class.d.ts +96 -0
  80. package/dist/models/partner-hierarchy-node-tree-class.js +15 -0
  81. package/dist/models/partner-hierarchy-operation-class.d.ts +90 -0
  82. package/dist/models/partner-hierarchy-operation-class.js +15 -0
  83. package/dist/models/partner-hierarchy-type-class.d.ts +66 -0
  84. package/dist/models/partner-hierarchy-type-class.js +15 -0
  85. package/dist/models/unassign-partner-hierarchy-node-response-class.d.ts +25 -0
  86. package/dist/models/unassign-partner-hierarchy-node-response-class.js +15 -0
  87. package/dist/models/update-partner-hierarchy-node-request-dto.d.ts +30 -0
  88. package/dist/models/update-partner-hierarchy-node-request-dto.js +15 -0
  89. package/dist/models/update-partner-hierarchy-node-response-class.d.ts +25 -0
  90. package/dist/models/update-partner-hierarchy-node-response-class.js +15 -0
  91. package/dist/models/update-partner-hierarchy-request-dto.d.ts +24 -0
  92. package/dist/models/update-partner-hierarchy-request-dto.js +15 -0
  93. package/dist/models/update-partner-hierarchy-response-class.d.ts +25 -0
  94. package/dist/models/update-partner-hierarchy-response-class.js +15 -0
  95. package/dist/models/update-partner-hierarchy-tree-request-body-dto.d.ts +24 -0
  96. package/dist/models/update-partner-hierarchy-tree-request-body-dto.js +15 -0
  97. package/dist/models/update-partner-hierarchy-type-request-dto.d.ts +30 -0
  98. package/dist/models/update-partner-hierarchy-type-request-dto.js +15 -0
  99. package/dist/models/update-partner-hierarchy-type-response-class.d.ts +25 -0
  100. package/dist/models/update-partner-hierarchy-type-response-class.js +15 -0
  101. package/dist/models/validate-partner-request-dto.d.ts +30 -0
  102. package/dist/models/validate-partner-request-dto.js +15 -0
  103. package/dist/models/validate-partner-response-class.d.ts +30 -0
  104. package/dist/models/validate-partner-response-class.js +15 -0
  105. package/models/batch-create-partner-hierarchy-nodes-request-dto.ts +36 -0
  106. package/models/create-partner-hierarchy-node-request-dto.ts +48 -0
  107. package/models/create-partner-hierarchy-node-response-class.ts +31 -0
  108. package/models/create-partner-hierarchy-request-dto.ts +36 -0
  109. package/models/create-partner-hierarchy-response-class.ts +31 -0
  110. package/models/create-partner-hierarchy-type-request-dto.ts +36 -0
  111. package/models/create-partner-hierarchy-type-response-class.ts +31 -0
  112. package/models/delete-by-code-response-class.ts +30 -0
  113. package/models/generate-upload-url-response-class.ts +42 -0
  114. package/models/get-partner-hierarchy-node-response-class.ts +31 -0
  115. package/models/get-partner-hierarchy-response-class.ts +31 -0
  116. package/models/get-partner-hierarchy-tree-file-response-class.ts +48 -0
  117. package/models/get-partner-hierarchy-tree-response-class.ts +31 -0
  118. package/models/get-partner-hierarchy-type-response-class.ts +31 -0
  119. package/models/index.ts +38 -0
  120. package/models/list-partner-hierarchies-response-class.ts +49 -0
  121. package/models/list-partner-hierarchy-node-history-response-class.ts +49 -0
  122. package/models/list-partner-hierarchy-nodes-response-class.ts +49 -0
  123. package/models/list-partner-hierarchy-operations-response-class.ts +49 -0
  124. package/models/list-partner-hierarchy-types-response-class.ts +49 -0
  125. package/models/list-partners-response-class.ts +9 -9
  126. package/models/move-partner-hierarchy-node-request-dto.ts +36 -0
  127. package/models/move-partner-hierarchy-node-response-class.ts +31 -0
  128. package/models/partner-class.ts +6 -0
  129. package/models/partner-hierarchy-async-operation-response-class.ts +36 -0
  130. package/models/partner-hierarchy-class.ts +84 -0
  131. package/models/partner-hierarchy-node-class.ts +115 -0
  132. package/models/partner-hierarchy-node-history-class.ts +103 -0
  133. package/models/partner-hierarchy-node-tree-class.ts +102 -0
  134. package/models/partner-hierarchy-operation-class.ts +96 -0
  135. package/models/partner-hierarchy-type-class.ts +72 -0
  136. package/models/unassign-partner-hierarchy-node-response-class.ts +31 -0
  137. package/models/update-partner-hierarchy-node-request-dto.ts +36 -0
  138. package/models/update-partner-hierarchy-node-response-class.ts +31 -0
  139. package/models/update-partner-hierarchy-request-dto.ts +30 -0
  140. package/models/update-partner-hierarchy-response-class.ts +31 -0
  141. package/models/update-partner-hierarchy-tree-request-body-dto.ts +30 -0
  142. package/models/update-partner-hierarchy-type-request-dto.ts +36 -0
  143. package/models/update-partner-hierarchy-type-response-class.ts +31 -0
  144. package/models/validate-partner-request-dto.ts +36 -0
  145. package/models/validate-partner-response-class.ts +36 -0
  146. package/package.json +1 -1
@@ -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
  */
@@ -486,6 +486,82 @@ var PartnersApiAxiosParamCreator = function (configuration) {
486
486
  });
487
487
  });
488
488
  },
489
+ /**
490
+ * Returns a paginated list of sub-partners assigned under the selected partner across partner hierarchies. **Required Permissions** \"partner-management.partners.view\"
491
+ * @summary List sub-partners
492
+ * @param {string} code Unique identifier for the object.
493
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
494
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
495
+ * @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.
496
+ * @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>
497
+ * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
498
+ * @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>
499
+ * @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>
500
+ * @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>
501
+ * @param {*} [options] Override http request option.
502
+ * @throws {RequiredError}
503
+ */
504
+ listSubPartners: function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
505
+ if (options === void 0) { options = {}; }
506
+ return __awaiter(_this, void 0, void 0, function () {
507
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
508
+ return __generator(this, function (_a) {
509
+ switch (_a.label) {
510
+ case 0:
511
+ // verify required parameter 'code' is not null or undefined
512
+ (0, common_1.assertParamExists)('listSubPartners', 'code', code);
513
+ localVarPath = "/partnerservice/v1/partners/{code}/sub-partners"
514
+ .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
515
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
516
+ if (configuration) {
517
+ baseOptions = configuration.baseOptions;
518
+ baseAccessToken = configuration.accessToken;
519
+ }
520
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
521
+ localVarHeaderParameter = {};
522
+ localVarQueryParameter = {};
523
+ // authentication bearer required
524
+ // http bearer authentication required
525
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
526
+ case 1:
527
+ // authentication bearer required
528
+ // http bearer authentication required
529
+ _a.sent();
530
+ if (pageSize !== undefined) {
531
+ localVarQueryParameter['pageSize'] = pageSize;
532
+ }
533
+ if (pageToken !== undefined) {
534
+ localVarQueryParameter['pageToken'] = pageToken;
535
+ }
536
+ if (filter !== undefined) {
537
+ localVarQueryParameter['filter'] = filter;
538
+ }
539
+ if (search !== undefined) {
540
+ localVarQueryParameter['search'] = search;
541
+ }
542
+ if (order !== undefined) {
543
+ localVarQueryParameter['order'] = order;
544
+ }
545
+ if (expand !== undefined) {
546
+ localVarQueryParameter['expand'] = expand;
547
+ }
548
+ if (filters !== undefined) {
549
+ localVarQueryParameter['filters'] = filters;
550
+ }
551
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
552
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
553
+ }
554
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
555
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
556
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
557
+ return [2 /*return*/, {
558
+ url: (0, common_1.toPathString)(localVarUrlObj),
559
+ options: localVarRequestOptions,
560
+ }];
561
+ }
562
+ });
563
+ });
564
+ },
489
565
  /**
490
566
  * Updates the specified partner by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\", \"partner-management.partners.delete\"
491
567
  * @summary Update the partner
@@ -645,6 +721,55 @@ var PartnersApiAxiosParamCreator = function (configuration) {
645
721
  });
646
722
  });
647
723
  },
724
+ /**
725
+ * Validates a partner identity by partnerNumber and optional custom field values. All provided validationFields must match (AND logic). If validationFields is omitted the call succeeds as long as the partner exists. Never returns partner data — only isValid and an optional error message. **Required Permissions** none
726
+ * @summary Validate a partner
727
+ * @param {ValidatePartnerRequestDto} validatePartnerRequestDto
728
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
729
+ * @param {*} [options] Override http request option.
730
+ * @throws {RequiredError}
731
+ */
732
+ validatePartner: function (validatePartnerRequestDto, authorization, options) {
733
+ if (options === void 0) { options = {}; }
734
+ return __awaiter(_this, void 0, void 0, function () {
735
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
736
+ return __generator(this, function (_a) {
737
+ switch (_a.label) {
738
+ case 0:
739
+ // verify required parameter 'validatePartnerRequestDto' is not null or undefined
740
+ (0, common_1.assertParamExists)('validatePartner', 'validatePartnerRequestDto', validatePartnerRequestDto);
741
+ localVarPath = "/partnerservice/v1/partners/validate";
742
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
743
+ if (configuration) {
744
+ baseOptions = configuration.baseOptions;
745
+ baseAccessToken = configuration.accessToken;
746
+ }
747
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
748
+ localVarHeaderParameter = {};
749
+ localVarQueryParameter = {};
750
+ // authentication bearer required
751
+ // http bearer authentication required
752
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
753
+ case 1:
754
+ // authentication bearer required
755
+ // http bearer authentication required
756
+ _a.sent();
757
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
758
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
759
+ }
760
+ localVarHeaderParameter['Content-Type'] = 'application/json';
761
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
762
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
763
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
764
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(validatePartnerRequestDto, localVarRequestOptions, configuration);
765
+ return [2 /*return*/, {
766
+ url: (0, common_1.toPathString)(localVarUrlObj),
767
+ options: localVarRequestOptions,
768
+ }];
769
+ }
770
+ });
771
+ });
772
+ },
648
773
  };
649
774
  };
650
775
  exports.PartnersApiAxiosParamCreator = PartnersApiAxiosParamCreator;
@@ -767,11 +892,11 @@ var PartnersApiFp = function (configuration) {
767
892
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
768
893
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
769
894
  * @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>
895
+ * @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
896
  * @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>
897
+ * @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
898
  * @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>
899
+ * @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
900
  * @param {*} [options] Override http request option.
776
901
  * @throws {RequiredError}
777
902
  */
@@ -816,6 +941,34 @@ var PartnersApiFp = function (configuration) {
816
941
  });
817
942
  });
818
943
  },
944
+ /**
945
+ * Returns a paginated list of sub-partners assigned under the selected partner across partner hierarchies. **Required Permissions** \"partner-management.partners.view\"
946
+ * @summary List sub-partners
947
+ * @param {string} code Unique identifier for the object.
948
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
949
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
950
+ * @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.
951
+ * @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>
952
+ * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
953
+ * @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>
954
+ * @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>
955
+ * @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>
956
+ * @param {*} [options] Override http request option.
957
+ * @throws {RequiredError}
958
+ */
959
+ listSubPartners: function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
960
+ return __awaiter(this, void 0, void 0, function () {
961
+ var localVarAxiosArgs;
962
+ return __generator(this, function (_a) {
963
+ switch (_a.label) {
964
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listSubPartners(code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
965
+ case 1:
966
+ localVarAxiosArgs = _a.sent();
967
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
968
+ }
969
+ });
970
+ });
971
+ },
819
972
  /**
820
973
  * Updates the specified partner by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\", \"partner-management.partners.delete\"
821
974
  * @summary Update the partner
@@ -882,6 +1035,27 @@ var PartnersApiFp = function (configuration) {
882
1035
  });
883
1036
  });
884
1037
  },
1038
+ /**
1039
+ * Validates a partner identity by partnerNumber and optional custom field values. All provided validationFields must match (AND logic). If validationFields is omitted the call succeeds as long as the partner exists. Never returns partner data — only isValid and an optional error message. **Required Permissions** none
1040
+ * @summary Validate a partner
1041
+ * @param {ValidatePartnerRequestDto} validatePartnerRequestDto
1042
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
1043
+ * @param {*} [options] Override http request option.
1044
+ * @throws {RequiredError}
1045
+ */
1046
+ validatePartner: function (validatePartnerRequestDto, authorization, options) {
1047
+ return __awaiter(this, void 0, void 0, function () {
1048
+ var localVarAxiosArgs;
1049
+ return __generator(this, function (_a) {
1050
+ switch (_a.label) {
1051
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.validatePartner(validatePartnerRequestDto, authorization, options)];
1052
+ case 1:
1053
+ localVarAxiosArgs = _a.sent();
1054
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
1055
+ }
1056
+ });
1057
+ });
1058
+ },
885
1059
  };
886
1060
  };
887
1061
  exports.PartnersApiFp = PartnersApiFp;
@@ -954,11 +1128,11 @@ var PartnersApiFactory = function (configuration, basePath, axios) {
954
1128
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
955
1129
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
956
1130
  * @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>
1131
+ * @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
1132
  * @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>
1133
+ * @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
1134
  * @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>
1135
+ * @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
1136
  * @param {*} [options] Override http request option.
963
1137
  * @throws {RequiredError}
964
1138
  */
@@ -983,6 +1157,24 @@ var PartnersApiFactory = function (configuration, basePath, axios) {
983
1157
  listRelationsForPartner: function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
984
1158
  return localVarFp.listRelationsForPartner(code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
985
1159
  },
1160
+ /**
1161
+ * Returns a paginated list of sub-partners assigned under the selected partner across partner hierarchies. **Required Permissions** \"partner-management.partners.view\"
1162
+ * @summary List sub-partners
1163
+ * @param {string} code Unique identifier for the object.
1164
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
1165
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
1166
+ * @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.
1167
+ * @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>
1168
+ * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
1169
+ * @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>
1170
+ * @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>
1171
+ * @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>
1172
+ * @param {*} [options] Override http request option.
1173
+ * @throws {RequiredError}
1174
+ */
1175
+ listSubPartners: function (code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
1176
+ return localVarFp.listSubPartners(code, authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
1177
+ },
986
1178
  /**
987
1179
  * Updates the specified partner by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\", \"partner-management.partners.delete\"
988
1180
  * @summary Update the partner
@@ -1019,6 +1211,17 @@ var PartnersApiFactory = function (configuration, basePath, axios) {
1019
1211
  updatePartner: function (code, updatePartnerRequestDto, authorization, options) {
1020
1212
  return localVarFp.updatePartner(code, updatePartnerRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
1021
1213
  },
1214
+ /**
1215
+ * Validates a partner identity by partnerNumber and optional custom field values. All provided validationFields must match (AND logic). If validationFields is omitted the call succeeds as long as the partner exists. Never returns partner data — only isValid and an optional error message. **Required Permissions** none
1216
+ * @summary Validate a partner
1217
+ * @param {ValidatePartnerRequestDto} validatePartnerRequestDto
1218
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
1219
+ * @param {*} [options] Override http request option.
1220
+ * @throws {RequiredError}
1221
+ */
1222
+ validatePartner: function (validatePartnerRequestDto, authorization, options) {
1223
+ return localVarFp.validatePartner(validatePartnerRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
1224
+ },
1022
1225
  };
1023
1226
  };
1024
1227
  exports.PartnersApiFactory = PartnersApiFactory;
@@ -1118,6 +1321,18 @@ var PartnersApi = /** @class */ (function (_super) {
1118
1321
  var _this = this;
1119
1322
  return (0, exports.PartnersApiFp)(this.configuration).listRelationsForPartner(requestParameters.code, 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); });
1120
1323
  };
1324
+ /**
1325
+ * Returns a paginated list of sub-partners assigned under the selected partner across partner hierarchies. **Required Permissions** \"partner-management.partners.view\"
1326
+ * @summary List sub-partners
1327
+ * @param {PartnersApiListSubPartnersRequest} requestParameters Request parameters.
1328
+ * @param {*} [options] Override http request option.
1329
+ * @throws {RequiredError}
1330
+ * @memberof PartnersApi
1331
+ */
1332
+ PartnersApi.prototype.listSubPartners = function (requestParameters, options) {
1333
+ var _this = this;
1334
+ return (0, exports.PartnersApiFp)(this.configuration).listSubPartners(requestParameters.code, 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); });
1335
+ };
1121
1336
  /**
1122
1337
  * Updates the specified partner by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"partner-management.partners.update\", \"partner-management.partners.delete\"
1123
1338
  * @summary Update the partner
@@ -1154,6 +1369,18 @@ var PartnersApi = /** @class */ (function (_super) {
1154
1369
  var _this = this;
1155
1370
  return (0, exports.PartnersApiFp)(this.configuration).updatePartner(requestParameters.code, requestParameters.updatePartnerRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
1156
1371
  };
1372
+ /**
1373
+ * Validates a partner identity by partnerNumber and optional custom field values. All provided validationFields must match (AND logic). If validationFields is omitted the call succeeds as long as the partner exists. Never returns partner data — only isValid and an optional error message. **Required Permissions** none
1374
+ * @summary Validate a partner
1375
+ * @param {PartnersApiValidatePartnerRequest} requestParameters Request parameters.
1376
+ * @param {*} [options] Override http request option.
1377
+ * @throws {RequiredError}
1378
+ * @memberof PartnersApi
1379
+ */
1380
+ PartnersApi.prototype.validatePartner = function (requestParameters, options) {
1381
+ var _this = this;
1382
+ return (0, exports.PartnersApiFp)(this.configuration).validatePartner(requestParameters.validatePartnerRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
1383
+ };
1157
1384
  return PartnersApi;
1158
1385
  }(base_1.BaseAPI));
1159
1386
  exports.PartnersApi = PartnersApi;
package/dist/api.d.ts CHANGED
@@ -12,6 +12,9 @@
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';
17
+ export * from './api/partner-hierarchy-types-api';
15
18
  export * from './api/partner-invitations-api';
16
19
  export * from './api/partner-relations-api';
17
20
  export * from './api/partner-tags-api';
package/dist/api.js CHANGED
@@ -30,6 +30,9 @@ 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);
35
+ __exportStar(require("./api/partner-hierarchy-types-api"), exports);
33
36
  __exportStar(require("./api/partner-invitations-api"), exports);
34
37
  __exportStar(require("./api/partner-relations-api"), exports);
35
38
  __exportStar(require("./api/partner-tags-api"), exports);
package/dist/base.d.ts CHANGED
@@ -39,7 +39,8 @@ export declare enum Environment {
39
39
  Test = "https://apiv2-test.emil.de",
40
40
  Staging = "https://apiv2-staging.emil.de",
41
41
  Development = "https://apiv2-dev.emil.de",
42
- ProductionZurich = "https://eu-central-2.apiv2.emil.de"
42
+ ProductionZurich = "https://eu-central-2.apiv2.emil.de",
43
+ StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
43
44
  }
44
45
  export declare function resetRetry(): void;
45
46
  /**
package/dist/base.js CHANGED
@@ -102,6 +102,7 @@ var Environment;
102
102
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
103
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
104
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
+ Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
105
106
  })(Environment = exports.Environment || (exports.Environment = {}));
106
107
  var _retry_count = 0;
107
108
  var _retry = null;
@@ -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 BatchCreatePartnerHierarchyNodesRequestDto
16
+ */
17
+ export interface BatchCreatePartnerHierarchyNodesRequestDto {
18
+ /**
19
+ * Code of the hierarchy that will receive the uploaded nodes.
20
+ * @type {string}
21
+ * @memberof BatchCreatePartnerHierarchyNodesRequestDto
22
+ */
23
+ 'partnerHierarchyCode': string;
24
+ /**
25
+ * S3 object key returned by the upload URL endpoint after the batch node file is uploaded.
26
+ * @type {string}
27
+ * @memberof BatchCreatePartnerHierarchyNodesRequestDto
28
+ */
29
+ 's3Key': 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,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 });