@emilgroup/partner-sdk-node 1.23.1-beta.7 → 1.24.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.
- package/.openapi-generator/FILES +42 -1
- package/README.md +2 -2
- package/api/blacklist-api.ts +3 -3
- package/api/blacklist-reasons-api.ts +3 -3
- package/api/{default-api.ts → health-api.ts} +13 -13
- package/api/partner-hierarchies-api.ts +1170 -0
- package/api/partner-hierarchy-nodes-api.ts +1201 -0
- package/api/partner-hierarchy-operations-api.ts +367 -0
- package/api/partner-hierarchy-types-api.ts +683 -0
- package/api/partners-api.ts +211 -12
- package/api.ts +10 -2
- package/base.ts +1 -0
- package/dist/api/blacklist-api.d.ts +4 -4
- package/dist/api/blacklist-reasons-api.d.ts +4 -4
- package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
- package/dist/api/{default-api.js → health-api.js} +22 -22
- package/dist/api/partner-hierarchies-api.d.ts +655 -0
- package/dist/api/partner-hierarchies-api.js +1041 -0
- package/dist/api/partner-hierarchy-nodes-api.d.ts +674 -0
- package/dist/api/partner-hierarchy-nodes-api.js +1053 -0
- package/dist/api/partner-hierarchy-operations-api.d.ts +215 -0
- package/dist/api/partner-hierarchy-operations-api.js +362 -0
- package/dist/api/partner-hierarchy-types-api.d.ts +385 -0
- package/dist/api/partner-hierarchy-types-api.js +640 -0
- package/dist/api/partners-api.d.ts +130 -12
- package/dist/api/partners-api.js +143 -9
- package/dist/api.d.ts +5 -1
- package/dist/api.js +5 -1
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/batch-create-partner-hierarchy-nodes-request-dto.d.ts +30 -0
- package/dist/models/batch-create-partner-hierarchy-nodes-request-dto.js +15 -0
- package/dist/models/create-partner-hierarchy-node-request-dto.d.ts +42 -0
- package/dist/models/create-partner-hierarchy-node-request-dto.js +15 -0
- package/dist/models/create-partner-hierarchy-node-response-class.d.ts +25 -0
- package/dist/models/create-partner-hierarchy-node-response-class.js +15 -0
- package/dist/models/create-partner-hierarchy-request-dto.d.ts +30 -0
- package/dist/models/create-partner-hierarchy-request-dto.js +15 -0
- package/dist/models/create-partner-hierarchy-response-class.d.ts +25 -0
- package/dist/models/create-partner-hierarchy-response-class.js +15 -0
- package/dist/models/create-partner-hierarchy-type-request-dto.d.ts +30 -0
- package/dist/models/create-partner-hierarchy-type-request-dto.js +15 -0
- package/dist/models/create-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/create-partner-hierarchy-type-response-class.js +15 -0
- package/dist/models/create-partner-request-dto.d.ts +4 -2
- package/dist/models/delete-by-code-response-class.d.ts +24 -0
- package/dist/models/delete-by-code-response-class.js +15 -0
- package/dist/models/generate-upload-url-response-class.d.ts +36 -0
- package/dist/models/generate-upload-url-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-node-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-node-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-operation-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-operation-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-tree-file-response-class.d.ts +60 -0
- package/dist/models/get-partner-hierarchy-tree-file-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-tree-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-tree-response-class.js +15 -0
- package/dist/models/get-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-type-response-class.js +15 -0
- package/dist/models/index.d.ts +37 -0
- package/dist/models/index.js +37 -0
- package/dist/models/list-blacklist-items-response-class.d.ts +12 -0
- package/dist/models/list-partner-hierarchies-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchies-response-class.js +15 -0
- package/dist/models/list-partner-hierarchy-node-history-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchy-node-history-response-class.js +15 -0
- package/dist/models/list-partner-hierarchy-nodes-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchy-nodes-response-class.js +15 -0
- package/dist/models/list-partner-hierarchy-operations-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchy-operations-response-class.js +15 -0
- package/dist/models/list-partner-hierarchy-types-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchy-types-response-class.js +15 -0
- package/dist/models/list-partner-relation-class.d.ts +18 -6
- package/dist/models/list-partner-relation-types-class.d.ts +18 -6
- package/dist/models/list-partner-types-response-class.d.ts +18 -6
- package/dist/models/list-partner-versions-response-class.d.ts +18 -6
- package/dist/models/list-partners-response-class.d.ts +12 -0
- package/dist/models/list-related-partners-response-class.d.ts +18 -6
- package/dist/models/list-tags-response-class.d.ts +18 -6
- package/dist/models/merge-partners-request-dto.d.ts +4 -2
- package/dist/models/move-partner-hierarchy-node-request-dto.d.ts +30 -0
- package/dist/models/move-partner-hierarchy-node-request-dto.js +15 -0
- package/dist/models/move-partner-hierarchy-node-response-class.d.ts +25 -0
- package/dist/models/move-partner-hierarchy-node-response-class.js +15 -0
- package/dist/models/partner-class.d.ts +6 -0
- package/dist/models/partner-hierarchy-async-operation-response-class.d.ts +30 -0
- package/dist/models/partner-hierarchy-async-operation-response-class.js +15 -0
- package/dist/models/partner-hierarchy-class.d.ts +72 -0
- package/dist/models/partner-hierarchy-class.js +15 -0
- package/dist/models/partner-hierarchy-node-class.d.ts +109 -0
- package/dist/models/partner-hierarchy-node-class.js +15 -0
- package/dist/models/partner-hierarchy-node-history-class.d.ts +97 -0
- package/dist/models/partner-hierarchy-node-history-class.js +15 -0
- package/dist/models/partner-hierarchy-node-tree-class.d.ts +96 -0
- package/dist/models/partner-hierarchy-node-tree-class.js +15 -0
- package/dist/models/partner-hierarchy-operation-class.d.ts +110 -0
- package/dist/models/partner-hierarchy-operation-class.js +27 -0
- package/dist/models/partner-hierarchy-type-class.d.ts +66 -0
- package/dist/models/partner-hierarchy-type-class.js +15 -0
- package/dist/models/unassign-partner-hierarchy-node-response-class.d.ts +25 -0
- package/dist/models/unassign-partner-hierarchy-node-response-class.js +15 -0
- package/dist/models/update-blacklist-reason-status-request-dto.d.ts +1 -1
- package/dist/models/update-partner-hierarchy-node-request-dto.d.ts +30 -0
- package/dist/models/update-partner-hierarchy-node-request-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-node-response-class.d.ts +25 -0
- package/dist/models/update-partner-hierarchy-node-response-class.js +15 -0
- package/dist/models/update-partner-hierarchy-request-dto.d.ts +24 -0
- package/dist/models/update-partner-hierarchy-request-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-response-class.d.ts +25 -0
- package/dist/models/update-partner-hierarchy-response-class.js +15 -0
- package/dist/models/update-partner-hierarchy-tree-request-body-dto.d.ts +24 -0
- package/dist/models/update-partner-hierarchy-tree-request-body-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-type-request-dto.d.ts +30 -0
- package/dist/models/update-partner-hierarchy-type-request-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/update-partner-hierarchy-type-response-class.js +15 -0
- package/dist/models/update-partner-request-dto.d.ts +4 -2
- package/models/batch-create-partner-hierarchy-nodes-request-dto.ts +36 -0
- package/models/create-partner-hierarchy-node-request-dto.ts +48 -0
- package/models/create-partner-hierarchy-node-response-class.ts +31 -0
- package/models/create-partner-hierarchy-request-dto.ts +36 -0
- package/models/create-partner-hierarchy-response-class.ts +31 -0
- package/models/create-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/create-partner-hierarchy-type-response-class.ts +31 -0
- package/models/create-partner-request-dto.ts +2 -2
- package/models/delete-by-code-response-class.ts +30 -0
- package/models/generate-upload-url-response-class.ts +42 -0
- package/models/get-partner-hierarchy-node-response-class.ts +31 -0
- package/models/get-partner-hierarchy-operation-response-class.ts +31 -0
- package/models/get-partner-hierarchy-response-class.ts +31 -0
- package/models/get-partner-hierarchy-tree-file-response-class.ts +66 -0
- package/models/get-partner-hierarchy-tree-response-class.ts +31 -0
- package/models/get-partner-hierarchy-type-response-class.ts +31 -0
- package/models/index.ts +37 -0
- package/models/list-blacklist-items-response-class.ts +12 -0
- package/models/list-partner-hierarchies-response-class.ts +49 -0
- package/models/list-partner-hierarchy-node-history-response-class.ts +49 -0
- package/models/list-partner-hierarchy-nodes-response-class.ts +49 -0
- package/models/list-partner-hierarchy-operations-response-class.ts +49 -0
- package/models/list-partner-hierarchy-types-response-class.ts +49 -0
- package/models/list-partner-relation-class.ts +18 -6
- package/models/list-partner-relation-types-class.ts +18 -6
- package/models/list-partner-types-response-class.ts +18 -6
- package/models/list-partner-versions-response-class.ts +18 -6
- package/models/list-partners-response-class.ts +12 -0
- package/models/list-related-partners-response-class.ts +18 -6
- package/models/list-tags-response-class.ts +18 -6
- package/models/merge-partners-request-dto.ts +2 -2
- package/models/move-partner-hierarchy-node-request-dto.ts +36 -0
- package/models/move-partner-hierarchy-node-response-class.ts +31 -0
- package/models/partner-class.ts +6 -0
- package/models/partner-hierarchy-async-operation-response-class.ts +36 -0
- package/models/partner-hierarchy-class.ts +78 -0
- package/models/partner-hierarchy-node-class.ts +115 -0
- package/models/partner-hierarchy-node-history-class.ts +103 -0
- package/models/partner-hierarchy-node-tree-class.ts +102 -0
- package/models/partner-hierarchy-operation-class.ts +120 -0
- package/models/partner-hierarchy-type-class.ts +72 -0
- package/models/unassign-partner-hierarchy-node-response-class.ts +31 -0
- package/models/update-blacklist-reason-status-request-dto.ts +1 -1
- package/models/update-partner-hierarchy-node-request-dto.ts +36 -0
- package/models/update-partner-hierarchy-node-response-class.ts +31 -0
- package/models/update-partner-hierarchy-request-dto.ts +30 -0
- package/models/update-partner-hierarchy-response-class.ts +31 -0
- package/models/update-partner-hierarchy-tree-request-body-dto.ts +30 -0
- package/models/update-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/update-partner-hierarchy-type-response-class.ts +31 -0
- package/models/update-partner-request-dto.ts +2 -2
- package/package.json +2 -2
|
@@ -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,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 CreatePartnerHierarchyTypeRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePartnerHierarchyTypeRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Human-readable name for this hierarchy type.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreatePartnerHierarchyTypeRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Level structure defining role codes per depth. Depths must start from 0 and be sequential. Depth 0 must have exactly one role. Role codes must be unique within each level.
|
|
31
|
+
* @type {object}
|
|
32
|
+
* @memberof CreatePartnerHierarchyTypeRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'schema': object;
|
|
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 { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreatePartnerHierarchyTypeResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreatePartnerHierarchyTypeResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner hierarchy type response.
|
|
26
|
+
* @type {PartnerHierarchyTypeClass}
|
|
27
|
+
* @memberof CreatePartnerHierarchyTypeResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'hierarchyType': PartnerHierarchyTypeClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -28,10 +28,10 @@ export interface CreatePartnerRequestDto {
|
|
|
28
28
|
'partnerTypeCode': string;
|
|
29
29
|
/**
|
|
30
30
|
* The custom fields object, based on partner schema.
|
|
31
|
-
* @type {object}
|
|
31
|
+
* @type {{ [key: string]: object; }}
|
|
32
32
|
* @memberof CreatePartnerRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'customFields': object;
|
|
34
|
+
'customFields': { [key: string]: object; };
|
|
35
35
|
/**
|
|
36
36
|
* Unique number assigned to the partner.
|
|
37
37
|
* @type {string}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 DeleteByCodeResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteByCodeResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* success
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof DeleteByCodeResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'success': boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 GenerateUploadUrlResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface GenerateUploadUrlResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Pre-signed URL used to upload the hierarchy tree file.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GenerateUploadUrlResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'url': string;
|
|
29
|
+
/**
|
|
30
|
+
* S3 object key to pass to the tree replacement or batch node creation endpoint after upload.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GenerateUploadUrlResponseClass
|
|
33
|
+
*/
|
|
34
|
+
's3Key': string;
|
|
35
|
+
/**
|
|
36
|
+
* Time when the upload URL expires.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GenerateUploadUrlResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'expiresAt'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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 { PartnerHierarchyOperationClass } from './partner-hierarchy-operation-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerHierarchyOperationResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerHierarchyOperationResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner hierarchy operation response.
|
|
26
|
+
* @type {PartnerHierarchyOperationClass}
|
|
27
|
+
* @memberof GetPartnerHierarchyOperationResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'operation': PartnerHierarchyOperationClass;
|
|
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,66 @@
|
|
|
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 GetPartnerHierarchyTreeFileResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface GetPartnerHierarchyTreeFileResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Download URL for the latest available hierarchy tree file.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'url'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Time when the download URL expires.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'expiresAt'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Operation code returned when a data operation is active or a tree-file build is pending or processing.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'operationCode'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Status of operationCode when a data operation or tree-file build is in progress.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
45
|
+
*/
|
|
46
|
+
'operationStatus'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Type of operationCode.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
51
|
+
*/
|
|
52
|
+
'operationType'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Hierarchy version represented by the returned tree file.
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
57
|
+
*/
|
|
58
|
+
'treeFileVersion'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* True only when the returned file is older than the current hierarchy version.
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof GetPartnerHierarchyTreeFileResponseClass
|
|
63
|
+
*/
|
|
64
|
+
'isTreeFileOutdated'?: boolean;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -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
|
+
|
|
@@ -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 { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerHierarchyTypeResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerHierarchyTypeResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner hierarchy type response.
|
|
26
|
+
* @type {PartnerHierarchyTypeClass}
|
|
27
|
+
* @memberof GetPartnerHierarchyTypeResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'hierarchyType': PartnerHierarchyTypeClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './batch-create-partner-hierarchy-nodes-request-dto';
|
|
1
2
|
export * from './blacklist-item-class';
|
|
2
3
|
export * from './blacklist-reason-class';
|
|
3
4
|
export * from './create-blacklist-item-request-dto';
|
|
@@ -6,6 +7,12 @@ export * from './create-blacklist-reason-request-dto';
|
|
|
6
7
|
export * from './create-blacklist-reason-response-class';
|
|
7
8
|
export * from './create-or-update-partner-from-account-request-dto';
|
|
8
9
|
export * from './create-or-update-partner-from-account-response-class';
|
|
10
|
+
export * from './create-partner-hierarchy-node-request-dto';
|
|
11
|
+
export * from './create-partner-hierarchy-node-response-class';
|
|
12
|
+
export * from './create-partner-hierarchy-request-dto';
|
|
13
|
+
export * from './create-partner-hierarchy-response-class';
|
|
14
|
+
export * from './create-partner-hierarchy-type-request-dto';
|
|
15
|
+
export * from './create-partner-hierarchy-type-response-class';
|
|
9
16
|
export * from './create-partner-relation-request-dto-rest';
|
|
10
17
|
export * from './create-partner-relation-response-class';
|
|
11
18
|
export * from './create-partner-request-dto';
|
|
@@ -14,9 +21,17 @@ export * from './create-partner-type-request-dto';
|
|
|
14
21
|
export * from './create-partner-type-response-class';
|
|
15
22
|
export * from './create-tag-request-dto';
|
|
16
23
|
export * from './create-tag-response-class';
|
|
24
|
+
export * from './delete-by-code-response-class';
|
|
17
25
|
export * from './delete-response-class';
|
|
26
|
+
export * from './generate-upload-url-response-class';
|
|
18
27
|
export * from './get-blacklist-item-response-class';
|
|
19
28
|
export * from './get-blacklist-reason-response-class';
|
|
29
|
+
export * from './get-partner-hierarchy-node-response-class';
|
|
30
|
+
export * from './get-partner-hierarchy-operation-response-class';
|
|
31
|
+
export * from './get-partner-hierarchy-response-class';
|
|
32
|
+
export * from './get-partner-hierarchy-tree-file-response-class';
|
|
33
|
+
export * from './get-partner-hierarchy-tree-response-class';
|
|
34
|
+
export * from './get-partner-hierarchy-type-response-class';
|
|
20
35
|
export * from './get-partner-relation-class';
|
|
21
36
|
export * from './get-partner-relation-type-class';
|
|
22
37
|
export * from './get-partner-response-class';
|
|
@@ -32,6 +47,11 @@ export * from './invite-partner-to-eis-response-class';
|
|
|
32
47
|
export * from './is-blacklisted-response-class';
|
|
33
48
|
export * from './list-blacklist-items-response-class';
|
|
34
49
|
export * from './list-blacklist-reasons-response-class';
|
|
50
|
+
export * from './list-partner-hierarchies-response-class';
|
|
51
|
+
export * from './list-partner-hierarchy-node-history-response-class';
|
|
52
|
+
export * from './list-partner-hierarchy-nodes-response-class';
|
|
53
|
+
export * from './list-partner-hierarchy-operations-response-class';
|
|
54
|
+
export * from './list-partner-hierarchy-types-response-class';
|
|
35
55
|
export * from './list-partner-relation-class';
|
|
36
56
|
export * from './list-partner-relation-types-class';
|
|
37
57
|
export * from './list-partner-types-response-class';
|
|
@@ -43,7 +63,16 @@ export * from './map-partner-to-account-response-class';
|
|
|
43
63
|
export * from './mapped-account-from-partner-class';
|
|
44
64
|
export * from './merge-partners-request-dto';
|
|
45
65
|
export * from './merge-partners-response-class';
|
|
66
|
+
export * from './move-partner-hierarchy-node-request-dto';
|
|
67
|
+
export * from './move-partner-hierarchy-node-response-class';
|
|
46
68
|
export * from './partner-class';
|
|
69
|
+
export * from './partner-hierarchy-async-operation-response-class';
|
|
70
|
+
export * from './partner-hierarchy-class';
|
|
71
|
+
export * from './partner-hierarchy-node-class';
|
|
72
|
+
export * from './partner-hierarchy-node-history-class';
|
|
73
|
+
export * from './partner-hierarchy-node-tree-class';
|
|
74
|
+
export * from './partner-hierarchy-operation-class';
|
|
75
|
+
export * from './partner-hierarchy-type-class';
|
|
47
76
|
export * from './partner-relation-class';
|
|
48
77
|
export * from './partner-relation-type-class';
|
|
49
78
|
export * from './partner-type-class';
|
|
@@ -53,9 +82,17 @@ export * from './related-partner-data-class';
|
|
|
53
82
|
export * from './role-class';
|
|
54
83
|
export * from './tag-class';
|
|
55
84
|
export * from './tag-partner-request-dto-rest';
|
|
85
|
+
export * from './unassign-partner-hierarchy-node-response-class';
|
|
56
86
|
export * from './update-blacklist-reason-request-dto';
|
|
57
87
|
export * from './update-blacklist-reason-response-class';
|
|
58
88
|
export * from './update-blacklist-reason-status-request-dto';
|
|
89
|
+
export * from './update-partner-hierarchy-node-request-dto';
|
|
90
|
+
export * from './update-partner-hierarchy-node-response-class';
|
|
91
|
+
export * from './update-partner-hierarchy-request-dto';
|
|
92
|
+
export * from './update-partner-hierarchy-response-class';
|
|
93
|
+
export * from './update-partner-hierarchy-tree-request-body-dto';
|
|
94
|
+
export * from './update-partner-hierarchy-type-request-dto';
|
|
95
|
+
export * from './update-partner-hierarchy-type-response-class';
|
|
59
96
|
export * from './update-partner-relation-request-dto-rest';
|
|
60
97
|
export * from './update-partner-request-dto';
|
|
61
98
|
export * from './update-partner-response-class';
|
|
@@ -33,5 +33,17 @@ export interface ListBlacklistItemsResponseClass {
|
|
|
33
33
|
* @memberof ListBlacklistItemsResponseClass
|
|
34
34
|
*/
|
|
35
35
|
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListBlacklistItemsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListBlacklistItemsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -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
|
+
|
|
@@ -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 { PartnerHierarchyNodeHistoryClass } from './partner-hierarchy-node-history-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerHierarchyNodeHistoryResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnerHierarchyNodeHistoryResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partner hierarchy node historys.
|
|
26
|
+
* @type {Array<PartnerHierarchyNodeHistoryClass>}
|
|
27
|
+
* @memberof ListPartnerHierarchyNodeHistoryResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerHierarchyNodeHistoryClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnerHierarchyNodeHistoryResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerHierarchyNodeHistoryResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListPartnerHierarchyNodeHistoryResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|