@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,43 @@
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 ListPartnerHierarchiesResponseClass
17
+ */
18
+ export interface ListPartnerHierarchiesResponseClass {
19
+ /**
20
+ * The list of partner hierarchiess.
21
+ * @type {Array<PartnerHierarchyClass>}
22
+ * @memberof ListPartnerHierarchiesResponseClass
23
+ */
24
+ 'items': Array<PartnerHierarchyClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPartnerHierarchiesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerHierarchiesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPartnerHierarchiesResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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,43 @@
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 { PartnerHierarchyNodeHistoryClass } from './partner-hierarchy-node-history-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListPartnerHierarchyNodeHistoryResponseClass
17
+ */
18
+ export interface ListPartnerHierarchyNodeHistoryResponseClass {
19
+ /**
20
+ * The list of partner hierarchy node historys.
21
+ * @type {Array<PartnerHierarchyNodeHistoryClass>}
22
+ * @memberof ListPartnerHierarchyNodeHistoryResponseClass
23
+ */
24
+ 'items': Array<PartnerHierarchyNodeHistoryClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPartnerHierarchyNodeHistoryResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerHierarchyNodeHistoryResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPartnerHierarchyNodeHistoryResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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,43 @@
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 ListPartnerHierarchyNodesResponseClass
17
+ */
18
+ export interface ListPartnerHierarchyNodesResponseClass {
19
+ /**
20
+ * The list of partner hierarchy nodess.
21
+ * @type {Array<PartnerHierarchyNodeClass>}
22
+ * @memberof ListPartnerHierarchyNodesResponseClass
23
+ */
24
+ 'items': Array<PartnerHierarchyNodeClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPartnerHierarchyNodesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerHierarchyNodesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListPartnerHierarchyNodesResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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 MovePartnerHierarchyNodeRequestDto
16
+ */
17
+ export interface MovePartnerHierarchyNodeRequestDto {
18
+ /**
19
+ * New parent node code. It must be in the same hierarchy and at the same depth as the current parent.
20
+ * @type {string}
21
+ * @memberof MovePartnerHierarchyNodeRequestDto
22
+ */
23
+ 'newParentCode': string;
24
+ /**
25
+ * Optional replacement role code applied during the move. It must remain valid for the node’s unchanged depth.
26
+ * @type {string}
27
+ * @memberof MovePartnerHierarchyNodeRequestDto
28
+ */
29
+ 'roleCode'?: 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 MovePartnerHierarchyNodeResponseClass
17
+ */
18
+ export interface MovePartnerHierarchyNodeResponseClass {
19
+ /**
20
+ * The partner hierarchy node response.
21
+ * @type {PartnerHierarchyNodeClass}
22
+ * @memberof MovePartnerHierarchyNodeResponseClass
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,78 @@
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 PartnerHierarchyClass
16
+ */
17
+ export interface PartnerHierarchyClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof PartnerHierarchyClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique hierarchy code.
26
+ * @type {string}
27
+ * @memberof PartnerHierarchyClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Human-readable name.
32
+ * @type {string}
33
+ * @memberof PartnerHierarchyClass
34
+ */
35
+ 'name': string;
36
+ /**
37
+ * Code of the hierarchy type.
38
+ * @type {string}
39
+ * @memberof PartnerHierarchyClass
40
+ */
41
+ 'partnerHierarchyTypeCode': string;
42
+ /**
43
+ * Whether the cached hierarchy tree needs a refresh.
44
+ * @type {boolean}
45
+ * @memberof PartnerHierarchyClass
46
+ */
47
+ 'isTreeStale': boolean;
48
+ /**
49
+ * Processing reference, if the hierarchy is currently locked.
50
+ * @type {string}
51
+ * @memberof PartnerHierarchyClass
52
+ */
53
+ 'lockedByOperationCode': string;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof PartnerHierarchyClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * Time at which the object was updated.
62
+ * @type {string}
63
+ * @memberof PartnerHierarchyClass
64
+ */
65
+ 'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof PartnerHierarchyClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof PartnerHierarchyClass
76
+ */
77
+ 'updatedBy': string;
78
+ }
@@ -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,109 @@
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 { PartnerClass } from './partner-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PartnerHierarchyNodeClass
17
+ */
18
+ export interface PartnerHierarchyNodeClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof PartnerHierarchyNodeClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique node code.
27
+ * @type {string}
28
+ * @memberof PartnerHierarchyNodeClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Code of the hierarchy this node belongs to.
33
+ * @type {string}
34
+ * @memberof PartnerHierarchyNodeClass
35
+ */
36
+ 'partnerHierarchyCode': string;
37
+ /**
38
+ * Assigned partner code, if this position is filled.
39
+ * @type {string}
40
+ * @memberof PartnerHierarchyNodeClass
41
+ */
42
+ 'partnerCode': string;
43
+ /**
44
+ * Parent node code. Empty when this is the root.
45
+ * @type {string}
46
+ * @memberof PartnerHierarchyNodeClass
47
+ */
48
+ 'parentNodeCode': string;
49
+ /**
50
+ * Role code at this position.
51
+ * @type {string}
52
+ * @memberof PartnerHierarchyNodeClass
53
+ */
54
+ 'roleCode': string;
55
+ /**
56
+ * Full path from root to this node, using node codes.
57
+ * @type {string}
58
+ * @memberof PartnerHierarchyNodeClass
59
+ */
60
+ 'materializedPath': string;
61
+ /**
62
+ * Depth from root (root = 0).
63
+ * @type {number}
64
+ * @memberof PartnerHierarchyNodeClass
65
+ */
66
+ 'depth': number;
67
+ /**
68
+ * When this node state became valid.
69
+ * @type {string}
70
+ * @memberof PartnerHierarchyNodeClass
71
+ */
72
+ 'validFrom': string;
73
+ /**
74
+ * Time at which the object was created.
75
+ * @type {string}
76
+ * @memberof PartnerHierarchyNodeClass
77
+ */
78
+ 'createdAt': string;
79
+ /**
80
+ * Time at which the object was updated.
81
+ * @type {string}
82
+ * @memberof PartnerHierarchyNodeClass
83
+ */
84
+ 'updatedAt': string;
85
+ /**
86
+ * Identifier of the user who created the record.
87
+ * @type {string}
88
+ * @memberof PartnerHierarchyNodeClass
89
+ */
90
+ 'createdBy': string;
91
+ /**
92
+ * Identifier of the user who last updated the record.
93
+ * @type {string}
94
+ * @memberof PartnerHierarchyNodeClass
95
+ */
96
+ 'updatedBy': string;
97
+ /**
98
+ * Partner assigned to this node.
99
+ * @type {PartnerClass}
100
+ * @memberof PartnerHierarchyNodeClass
101
+ */
102
+ 'partner': PartnerClass;
103
+ /**
104
+ * Parent node in the same hierarchy.
105
+ * @type {PartnerHierarchyNodeClass}
106
+ * @memberof PartnerHierarchyNodeClass
107
+ */
108
+ 'parentNode': PartnerHierarchyNodeClass;
109
+ }
@@ -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,97 @@
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 { PartnerClass } from './partner-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PartnerHierarchyNodeHistoryClass
17
+ */
18
+ export interface PartnerHierarchyNodeHistoryClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof PartnerHierarchyNodeHistoryClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Node code this history row versions.
27
+ * @type {string}
28
+ * @memberof PartnerHierarchyNodeHistoryClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Code of the hierarchy this node belongs to.
33
+ * @type {string}
34
+ * @memberof PartnerHierarchyNodeHistoryClass
35
+ */
36
+ 'partnerHierarchyCode': string;
37
+ /**
38
+ * Assigned partner code during this interval, if filled.
39
+ * @type {string}
40
+ * @memberof PartnerHierarchyNodeHistoryClass
41
+ */
42
+ 'partnerCode': string;
43
+ /**
44
+ * Parent node code during this interval.
45
+ * @type {string}
46
+ * @memberof PartnerHierarchyNodeHistoryClass
47
+ */
48
+ 'parentNodeCode': string;
49
+ /**
50
+ * Role code during this interval.
51
+ * @type {string}
52
+ * @memberof PartnerHierarchyNodeHistoryClass
53
+ */
54
+ 'roleCode': string;
55
+ /**
56
+ * Materialized path during this interval.
57
+ * @type {string}
58
+ * @memberof PartnerHierarchyNodeHistoryClass
59
+ */
60
+ 'materializedPath': string;
61
+ /**
62
+ * Depth from root during this interval.
63
+ * @type {number}
64
+ * @memberof PartnerHierarchyNodeHistoryClass
65
+ */
66
+ 'depth': number;
67
+ /**
68
+ * Start of this validity interval.
69
+ * @type {string}
70
+ * @memberof PartnerHierarchyNodeHistoryClass
71
+ */
72
+ 'validFrom': string;
73
+ /**
74
+ * End of this validity interval.
75
+ * @type {string}
76
+ * @memberof PartnerHierarchyNodeHistoryClass
77
+ */
78
+ 'validTo': string;
79
+ /**
80
+ * Time at which the object was created.
81
+ * @type {string}
82
+ * @memberof PartnerHierarchyNodeHistoryClass
83
+ */
84
+ 'createdAt': string;
85
+ /**
86
+ * Identifier of the user who created the record.
87
+ * @type {string}
88
+ * @memberof PartnerHierarchyNodeHistoryClass
89
+ */
90
+ 'createdBy': string;
91
+ /**
92
+ * Partner assigned to the node for this history row.
93
+ * @type {PartnerClass}
94
+ * @memberof PartnerHierarchyNodeHistoryClass
95
+ */
96
+ 'partner': PartnerClass;
97
+ }
@@ -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 });