@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
@@ -0,0 +1,96 @@
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 PartnerHierarchyNodeTreeClass
16
+ */
17
+ export interface PartnerHierarchyNodeTreeClass {
18
+ /**
19
+ * Node code.
20
+ * @type {string}
21
+ * @memberof PartnerHierarchyNodeTreeClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Assigned partner code, if this position is filled.
26
+ * @type {string}
27
+ * @memberof PartnerHierarchyNodeTreeClass
28
+ */
29
+ 'partnerCode': string;
30
+ /**
31
+ * Assigned partner display name.
32
+ * @type {string}
33
+ * @memberof PartnerHierarchyNodeTreeClass
34
+ */
35
+ 'partnerName': string;
36
+ /**
37
+ * Role code at this position.
38
+ * @type {string}
39
+ * @memberof PartnerHierarchyNodeTreeClass
40
+ */
41
+ 'roleCode': string;
42
+ /**
43
+ * Parent node code. Empty when this is the root.
44
+ * @type {string}
45
+ * @memberof PartnerHierarchyNodeTreeClass
46
+ */
47
+ 'parentNodeCode': string;
48
+ /**
49
+ * Depth from root (root = 0).
50
+ * @type {number}
51
+ * @memberof PartnerHierarchyNodeTreeClass
52
+ */
53
+ 'depth': number;
54
+ /**
55
+ * When this node was created.
56
+ * @type {string}
57
+ * @memberof PartnerHierarchyNodeTreeClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * When this current node row was last updated.
62
+ * @type {string}
63
+ * @memberof PartnerHierarchyNodeTreeClass
64
+ */
65
+ 'updatedAt': string;
66
+ /**
67
+ * When this node state became valid.
68
+ * @type {string}
69
+ * @memberof PartnerHierarchyNodeTreeClass
70
+ */
71
+ 'validFrom': string;
72
+ /**
73
+ * Total direct children (whether or not loaded in this page).
74
+ * @type {number}
75
+ * @memberof PartnerHierarchyNodeTreeClass
76
+ */
77
+ 'totalChildren': number;
78
+ /**
79
+ * Cursor for the next page of this node’s children.
80
+ * @type {string}
81
+ * @memberof PartnerHierarchyNodeTreeClass
82
+ */
83
+ 'nextPageToken': string;
84
+ /**
85
+ * Number of children returned in this page.
86
+ * @type {number}
87
+ * @memberof PartnerHierarchyNodeTreeClass
88
+ */
89
+ 'itemsPerPage': number;
90
+ /**
91
+ * Loaded direct children (one level).
92
+ * @type {Array<PartnerHierarchyNodeTreeClass>}
93
+ * @memberof PartnerHierarchyNodeTreeClass
94
+ */
95
+ 'children': Array<PartnerHierarchyNodeTreeClass>;
96
+ }
@@ -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 UnassignPartnerHierarchyNodeResponseClass
17
+ */
18
+ export interface UnassignPartnerHierarchyNodeResponseClass {
19
+ /**
20
+ * The partner hierarchy node response.
21
+ * @type {PartnerHierarchyNodeClass}
22
+ * @memberof UnassignPartnerHierarchyNodeResponseClass
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 UpdatePartnerHierarchyNodeRequestDto
16
+ */
17
+ export interface UpdatePartnerHierarchyNodeRequestDto {
18
+ /**
19
+ * Replacement role code. It must be valid for the node’s current depth.
20
+ * @type {string}
21
+ * @memberof UpdatePartnerHierarchyNodeRequestDto
22
+ */
23
+ 'roleCode'?: string;
24
+ /**
25
+ * Replacement partner code. Omit to leave the assigned partner unchanged.
26
+ * @type {string}
27
+ * @memberof UpdatePartnerHierarchyNodeRequestDto
28
+ */
29
+ 'partnerCode'?: 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 { PartnerHierarchyNodeClass } from './partner-hierarchy-node-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdatePartnerHierarchyNodeResponseClass
17
+ */
18
+ export interface UpdatePartnerHierarchyNodeResponseClass {
19
+ /**
20
+ * The partner hierarchy node response.
21
+ * @type {PartnerHierarchyNodeClass}
22
+ * @memberof UpdatePartnerHierarchyNodeResponseClass
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,24 @@
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 UpdatePartnerHierarchyRequestDto
16
+ */
17
+ export interface UpdatePartnerHierarchyRequestDto {
18
+ /**
19
+ * Updated human-readable name.
20
+ * @type {string}
21
+ * @memberof UpdatePartnerHierarchyRequestDto
22
+ */
23
+ 'name': string;
24
+ }
@@ -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 UpdatePartnerHierarchyResponseClass
17
+ */
18
+ export interface UpdatePartnerHierarchyResponseClass {
19
+ /**
20
+ * The partner hierarchy response.
21
+ * @type {PartnerHierarchyClass}
22
+ * @memberof UpdatePartnerHierarchyResponseClass
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,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreatePartnerHierarchyNodeRequestDto
21
+ */
22
+ export interface CreatePartnerHierarchyNodeRequestDto {
23
+ /**
24
+ * Code of the hierarchy this node belongs to.
25
+ * @type {string}
26
+ * @memberof CreatePartnerHierarchyNodeRequestDto
27
+ */
28
+ 'partnerHierarchyCode': string;
29
+ /**
30
+ * Partner code to assign to the new node. Omit to create a vacant hierarchy position.
31
+ * @type {string}
32
+ * @memberof CreatePartnerHierarchyNodeRequestDto
33
+ */
34
+ 'partnerCode'?: string;
35
+ /**
36
+ * Role code for this hierarchy position. It must be allowed by the hierarchy type at the resolved depth.
37
+ * @type {string}
38
+ * @memberof CreatePartnerHierarchyNodeRequestDto
39
+ */
40
+ 'roleCode': string;
41
+ /**
42
+ * Parent node code. Omit when creating the hierarchy root node.
43
+ * @type {string}
44
+ * @memberof CreatePartnerHierarchyNodeRequestDto
45
+ */
46
+ 'parentNodeCode'?: string;
47
+ }
48
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyNodeClass } from './partner-hierarchy-node-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreatePartnerHierarchyNodeResponseClass
22
+ */
23
+ export interface CreatePartnerHierarchyNodeResponseClass {
24
+ /**
25
+ * The partner hierarchy node response.
26
+ * @type {PartnerHierarchyNodeClass}
27
+ * @memberof CreatePartnerHierarchyNodeResponseClass
28
+ */
29
+ 'node': PartnerHierarchyNodeClass;
30
+ }
31
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreatePartnerHierarchyRequestDto
21
+ */
22
+ export interface CreatePartnerHierarchyRequestDto {
23
+ /**
24
+ * Human-readable name for this hierarchy instance.
25
+ * @type {string}
26
+ * @memberof CreatePartnerHierarchyRequestDto
27
+ */
28
+ 'name': string;
29
+ /**
30
+ * Code of the partner hierarchy type this instance is built from.
31
+ * @type {string}
32
+ * @memberof CreatePartnerHierarchyRequestDto
33
+ */
34
+ 'partnerHierarchyTypeCode': string;
35
+ }
36
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyClass } from './partner-hierarchy-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreatePartnerHierarchyResponseClass
22
+ */
23
+ export interface CreatePartnerHierarchyResponseClass {
24
+ /**
25
+ * The partner hierarchy response.
26
+ * @type {PartnerHierarchyClass}
27
+ * @memberof CreatePartnerHierarchyResponseClass
28
+ */
29
+ 'hierarchy': PartnerHierarchyClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyNodeClass } from './partner-hierarchy-node-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetPartnerHierarchyNodeResponseClass
22
+ */
23
+ export interface GetPartnerHierarchyNodeResponseClass {
24
+ /**
25
+ * The partner hierarchy node response.
26
+ * @type {PartnerHierarchyNodeClass}
27
+ * @memberof GetPartnerHierarchyNodeResponseClass
28
+ */
29
+ 'node': PartnerHierarchyNodeClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyClass } from './partner-hierarchy-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetPartnerHierarchyResponseClass
22
+ */
23
+ export interface GetPartnerHierarchyResponseClass {
24
+ /**
25
+ * The partner hierarchy response.
26
+ * @type {PartnerHierarchyClass}
27
+ * @memberof GetPartnerHierarchyResponseClass
28
+ */
29
+ 'hierarchy': PartnerHierarchyClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyNodeTreeClass } from './partner-hierarchy-node-tree-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetPartnerHierarchyTreeResponseClass
22
+ */
23
+ export interface GetPartnerHierarchyTreeResponseClass {
24
+ /**
25
+ * The partner hierarchy tree response.
26
+ * @type {PartnerHierarchyNodeTreeClass}
27
+ * @memberof GetPartnerHierarchyTreeResponseClass
28
+ */
29
+ 'tree': PartnerHierarchyNodeTreeClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -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';
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerHierarchyClass } from './partner-hierarchy-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListPartnerHierarchiesResponseClass
22
+ */
23
+ export interface ListPartnerHierarchiesResponseClass {
24
+ /**
25
+ * The list of partner hierarchiess.
26
+ * @type {Array<PartnerHierarchyClass>}
27
+ * @memberof ListPartnerHierarchiesResponseClass
28
+ */
29
+ 'items': Array<PartnerHierarchyClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListPartnerHierarchiesResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListPartnerHierarchiesResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListPartnerHierarchiesResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+