@emilgroup/partner-sdk 1.22.1-beta.14 → 1.22.1-beta.15
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 +10 -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-hierarchy-types-api.ts +679 -0
- package/api.ts +4 -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-hierarchy-types-api.d.ts +385 -0
- package/dist/api/partner-hierarchy-types-api.js +636 -0
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -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/delete-by-code-response-class.d.ts +24 -0
- package/dist/models/delete-by-code-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 +8 -0
- package/dist/models/index.js +8 -0
- package/dist/models/list-blacklist-items-response-class.d.ts +12 -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 +18 -6
- 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/partner-hierarchy-type-class.d.ts +66 -0
- package/dist/models/partner-hierarchy-type-class.js +15 -0
- package/dist/models/update-blacklist-reason-status-request-dto.d.ts +1 -1
- 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/models/create-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/create-partner-hierarchy-type-response-class.ts +31 -0
- package/models/delete-by-code-response-class.ts +30 -0
- package/models/get-partner-hierarchy-type-response-class.ts +31 -0
- package/models/index.ts +8 -0
- package/models/list-blacklist-items-response-class.ts +12 -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 +18 -6
- package/models/list-related-partners-response-class.ts +18 -6
- package/models/list-tags-response-class.ts +18 -6
- package/models/partner-hierarchy-type-class.ts +72 -0
- package/models/update-blacklist-reason-status-request-dto.ts +1 -1
- package/models/update-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/update-partner-hierarchy-type-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
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 PartnerHierarchyTypeClass
|
|
16
|
+
*/
|
|
17
|
+
export interface PartnerHierarchyTypeClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof PartnerHierarchyTypeClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique code identifying this hierarchy type.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PartnerHierarchyTypeClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Human-readable name for this hierarchy type.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PartnerHierarchyTypeClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* Level structure defining valid roles at each depth. Role codes listed here are the only valid values when creating or moving nodes in hierarchies of this type.
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof PartnerHierarchyTypeClass
|
|
40
|
+
*/
|
|
41
|
+
'schema': object;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was created.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PartnerHierarchyTypeClass
|
|
46
|
+
*/
|
|
47
|
+
'createdAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was updated.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PartnerHierarchyTypeClass
|
|
52
|
+
*/
|
|
53
|
+
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PartnerHierarchyTypeClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PartnerHierarchyTypeClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
66
|
+
}
|
|
@@ -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 UpdatePartnerHierarchyTypeRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdatePartnerHierarchyTypeRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Updated human-readable name for this hierarchy type.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdatePartnerHierarchyTypeRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Updated level structure. Removing a depth level is blocked if any nodes exist at that depth — delete all nodes at that depth first. Removing a role code is blocked if any active nodes use that role.
|
|
26
|
+
* @type {object}
|
|
27
|
+
* @memberof UpdatePartnerHierarchyTypeRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'schema'?: object;
|
|
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 { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdatePartnerHierarchyTypeResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdatePartnerHierarchyTypeResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The partner hierarchy type response.
|
|
21
|
+
* @type {PartnerHierarchyTypeClass}
|
|
22
|
+
* @memberof UpdatePartnerHierarchyTypeResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'hierarchyType': PartnerHierarchyTypeClass;
|
|
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,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
|
+
|
|
@@ -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,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
|
@@ -6,6 +6,8 @@ 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-type-request-dto';
|
|
10
|
+
export * from './create-partner-hierarchy-type-response-class';
|
|
9
11
|
export * from './create-partner-relation-request-dto-rest';
|
|
10
12
|
export * from './create-partner-relation-response-class';
|
|
11
13
|
export * from './create-partner-request-dto';
|
|
@@ -14,9 +16,11 @@ export * from './create-partner-type-request-dto';
|
|
|
14
16
|
export * from './create-partner-type-response-class';
|
|
15
17
|
export * from './create-tag-request-dto';
|
|
16
18
|
export * from './create-tag-response-class';
|
|
19
|
+
export * from './delete-by-code-response-class';
|
|
17
20
|
export * from './delete-response-class';
|
|
18
21
|
export * from './get-blacklist-item-response-class';
|
|
19
22
|
export * from './get-blacklist-reason-response-class';
|
|
23
|
+
export * from './get-partner-hierarchy-type-response-class';
|
|
20
24
|
export * from './get-partner-relation-class';
|
|
21
25
|
export * from './get-partner-relation-type-class';
|
|
22
26
|
export * from './get-partner-response-class';
|
|
@@ -32,6 +36,7 @@ export * from './invite-partner-to-eis-response-class';
|
|
|
32
36
|
export * from './is-blacklisted-response-class';
|
|
33
37
|
export * from './list-blacklist-items-response-class';
|
|
34
38
|
export * from './list-blacklist-reasons-response-class';
|
|
39
|
+
export * from './list-partner-hierarchy-types-response-class';
|
|
35
40
|
export * from './list-partner-relation-class';
|
|
36
41
|
export * from './list-partner-relation-types-class';
|
|
37
42
|
export * from './list-partner-types-response-class';
|
|
@@ -44,6 +49,7 @@ export * from './mapped-account-from-partner-class';
|
|
|
44
49
|
export * from './merge-partners-request-dto';
|
|
45
50
|
export * from './merge-partners-response-class';
|
|
46
51
|
export * from './partner-class';
|
|
52
|
+
export * from './partner-hierarchy-type-class';
|
|
47
53
|
export * from './partner-relation-class';
|
|
48
54
|
export * from './partner-relation-type-class';
|
|
49
55
|
export * from './partner-type-class';
|
|
@@ -56,6 +62,8 @@ export * from './tag-partner-request-dto-rest';
|
|
|
56
62
|
export * from './update-blacklist-reason-request-dto';
|
|
57
63
|
export * from './update-blacklist-reason-response-class';
|
|
58
64
|
export * from './update-blacklist-reason-status-request-dto';
|
|
65
|
+
export * from './update-partner-hierarchy-type-request-dto';
|
|
66
|
+
export * from './update-partner-hierarchy-type-response-class';
|
|
59
67
|
export * from './update-partner-relation-request-dto-rest';
|
|
60
68
|
export * from './update-partner-request-dto';
|
|
61
69
|
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 { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerHierarchyTypesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnerHierarchyTypesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partner hierarchy typess.
|
|
26
|
+
* @type {Array<PartnerHierarchyTypeClass>}
|
|
27
|
+
* @memberof ListPartnerHierarchyTypesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerHierarchyTypeClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnerHierarchyTypesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerHierarchyTypesResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListPartnerHierarchyTypesResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -21,17 +21,29 @@ import { PartnerRelationClass } from './partner-relation-class';
|
|
|
21
21
|
* @interface ListPartnerRelationClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerRelationClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partner relationss.
|
|
26
|
-
* @type {Array<PartnerRelationClass>}
|
|
27
|
-
* @memberof ListPartnerRelationClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerRelationClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnerRelationClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnerRelationClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerRelationClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partner relationss.
|
|
44
|
+
* @type {Array<PartnerRelationClass>}
|
|
45
|
+
* @memberof ListPartnerRelationClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerRelationClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { PartnerRelationTypeClass } from './partner-relation-type-class';
|
|
|
21
21
|
* @interface ListPartnerRelationTypesClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerRelationTypesClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partner relation typess.
|
|
26
|
-
* @type {Array<PartnerRelationTypeClass>}
|
|
27
|
-
* @memberof ListPartnerRelationTypesClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerRelationTypeClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnerRelationTypesClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnerRelationTypesClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerRelationTypesClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partner relation typess.
|
|
44
|
+
* @type {Array<PartnerRelationTypeClass>}
|
|
45
|
+
* @memberof ListPartnerRelationTypesClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerRelationTypeClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { PartnerTypeClass } from './partner-type-class';
|
|
|
21
21
|
* @interface ListPartnerTypesResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerTypesResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partner typess.
|
|
26
|
-
* @type {Array<PartnerTypeClass>}
|
|
27
|
-
* @memberof ListPartnerTypesResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerTypeClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnerTypesResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnerTypesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerTypesResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partner typess.
|
|
44
|
+
* @type {Array<PartnerTypeClass>}
|
|
45
|
+
* @memberof ListPartnerTypesResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerTypeClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { PartnerClass } from './partner-class';
|
|
|
21
21
|
* @interface ListPartnerVersionsResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerVersionsResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partnerss.
|
|
26
|
-
* @type {Array<PartnerClass>}
|
|
27
|
-
* @memberof ListPartnerVersionsResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnerVersionsResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partnerss.
|
|
44
|
+
* @type {Array<PartnerClass>}
|
|
45
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { PartnerClass } from './partner-class';
|
|
|
21
21
|
* @interface ListPartnersResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnersResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partnerss.
|
|
26
|
-
* @type {Array<PartnerClass>}
|
|
27
|
-
* @memberof ListPartnersResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnersResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnersResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partnerss.
|
|
44
|
+
* @type {Array<PartnerClass>}
|
|
45
|
+
* @memberof ListPartnersResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { GroupedRelatedPartnersClass } from './grouped-related-partners-class';
|
|
|
21
21
|
* @interface ListRelatedPartnersResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListRelatedPartnersResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of grouped relations for partner
|
|
26
|
-
* @type {Array<GroupedRelatedPartnersClass>}
|
|
27
|
-
* @memberof ListRelatedPartnersResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<GroupedRelatedPartnersClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListRelatedPartnersResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of grouped relations for partner
|
|
44
|
+
* @type {Array<GroupedRelatedPartnersClass>}
|
|
45
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<GroupedRelatedPartnersClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { TagClass } from './tag-class';
|
|
|
21
21
|
* @interface ListTagsResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListTagsResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partner tagss.
|
|
26
|
-
* @type {Array<TagClass>}
|
|
27
|
-
* @memberof ListTagsResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<TagClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListTagsResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListTagsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListTagsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partner tagss.
|
|
44
|
+
* @type {Array<TagClass>}
|
|
45
|
+
* @memberof ListTagsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<TagClass>;
|
|
36
48
|
}
|
|
37
49
|
|