@emilgroup/partner-sdk 1.0.1 → 1.2.1-beta.1
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 +21 -1
- package/README.md +2 -2
- package/api/default-api.ts +8 -4
- package/api/partner-relations-api.ts +968 -0
- package/api/partner-tags-api.ts +662 -0
- package/api/partner-types-api.ts +36 -22
- package/api/partner-version-api.ts +375 -0
- package/api/partners-api.ts +154 -22
- package/api.ts +6 -0
- package/base.ts +6 -1
- package/dist/api/default-api.d.ts +8 -4
- package/dist/api/default-api.js +8 -4
- package/dist/api/partner-relations-api.d.ts +550 -0
- package/dist/api/partner-relations-api.js +857 -0
- package/dist/api/partner-tags-api.d.ts +375 -0
- package/dist/api/partner-tags-api.js +629 -0
- package/dist/api/partner-types-api.d.ts +28 -19
- package/dist/api/partner-types-api.js +26 -20
- package/dist/api/partner-version-api.d.ts +224 -0
- package/dist/api/partner-version-api.js +363 -0
- package/dist/api/partners-api.d.ts +93 -19
- package/dist/api/partners-api.js +125 -20
- package/dist/api.d.ts +3 -0
- package/dist/api.js +3 -0
- package/dist/base.d.ts +1 -0
- package/dist/base.js +5 -1
- package/dist/models/create-partner-relation-request-dto-rest.d.ts +65 -0
- package/dist/models/create-partner-relation-request-dto-rest.js +26 -0
- package/dist/models/create-partner-relation-response-class.d.ts +25 -0
- package/dist/models/create-partner-type-request-dto.d.ts +13 -3
- package/dist/models/create-partner-type-request-dto.js +5 -0
- package/dist/models/create-tag-request-dto.d.ts +36 -0
- package/dist/models/create-tag-request-dto.js +15 -0
- package/dist/models/create-tag-response-class.d.ts +25 -0
- package/dist/models/create-tag-response-class.js +15 -0
- package/dist/models/get-partner-relation-class.d.ts +25 -0
- package/dist/models/get-partner-relation-class.js +15 -0
- package/dist/models/get-partner-relation-type-class.d.ts +25 -0
- package/dist/models/get-partner-relation-type-class.js +15 -0
- package/dist/models/get-partner-version-response-class.d.ts +25 -0
- package/dist/models/get-partner-version-response-class.js +15 -0
- package/dist/models/get-tag-response-class.d.ts +25 -0
- package/dist/models/get-tag-response-class.js +15 -0
- package/dist/models/index.d.ts +18 -1
- package/dist/models/index.js +18 -1
- package/dist/models/list-partner-relation-class.d.ts +31 -0
- package/dist/models/list-partner-relation-class.js +15 -0
- package/dist/models/list-partner-relation-types-class.d.ts +31 -0
- package/dist/models/list-partner-relation-types-class.js +15 -0
- package/dist/models/list-partner-versions-response-class.d.ts +25 -0
- package/dist/models/list-partner-versions-response-class.js +15 -0
- package/dist/models/list-tags-response-class.d.ts +31 -0
- package/dist/models/list-tags-response-class.js +15 -0
- package/dist/models/partner-class.d.ts +18 -0
- package/dist/models/partner-relation-class.d.ts +72 -0
- package/dist/models/partner-relation-class.js +15 -0
- package/dist/models/partner-relation-type-class.d.ts +66 -0
- package/dist/models/partner-relation-type-class.js +15 -0
- package/dist/models/partner-type-class.d.ts +11 -0
- package/dist/models/partner-type-class.js +5 -0
- package/dist/models/tag-class.d.ts +54 -0
- package/dist/models/tag-class.js +15 -0
- package/dist/models/tag-partner-request-dto-rest.d.ts +24 -0
- package/dist/models/tag-partner-request-dto-rest.js +15 -0
- package/dist/models/update-partner-relation-request-dto-rest.d.ts +36 -0
- package/dist/models/update-partner-relation-request-dto-rest.js +15 -0
- package/dist/models/update-partner-type-request-dto.d.ts +20 -4
- package/dist/models/update-partner-type-request-dto.js +5 -0
- package/dist/models/update-tag-response-class.d.ts +25 -0
- package/dist/models/update-tag-response-class.js +15 -0
- package/models/create-partner-relation-request-dto-rest.ts +74 -0
- package/models/create-partner-relation-response-class.ts +31 -0
- package/models/create-partner-type-request-dto.ts +16 -3
- package/models/create-tag-request-dto.ts +42 -0
- package/models/create-tag-response-class.ts +31 -0
- package/models/get-partner-relation-class.ts +31 -0
- package/models/get-partner-relation-type-class.ts +31 -0
- package/models/get-partner-version-response-class.ts +31 -0
- package/models/get-tag-response-class.ts +31 -0
- package/models/index.ts +18 -1
- package/models/list-partner-relation-class.ts +37 -0
- package/models/list-partner-relation-types-class.ts +37 -0
- package/models/list-partner-versions-response-class.ts +31 -0
- package/models/list-tags-response-class.ts +37 -0
- package/models/partner-class.ts +18 -0
- package/models/partner-relation-class.ts +78 -0
- package/models/partner-relation-type-class.ts +72 -0
- package/models/partner-type-class.ts +14 -0
- package/models/tag-class.ts +60 -0
- package/models/tag-partner-request-dto-rest.ts +30 -0
- package/models/update-partner-relation-request-dto-rest.ts +42 -0
- package/models/update-partner-type-request-dto.ts +23 -4
- package/models/update-tag-response-class.ts +31 -0
- package/package.json +1 -1
- package/dist/models/partner-type-custom-schema-dto.d.ts +0 -66
- package/models/partner-type-custom-schema-dto.ts +0 -72
- /package/dist/models/{partner-type-custom-schema-dto.js → create-partner-relation-response-class.js} +0 -0
|
@@ -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 TagPartnerRequestDtoRest
|
|
16
|
+
*/
|
|
17
|
+
export interface TagPartnerRequestDtoRest {
|
|
18
|
+
/**
|
|
19
|
+
* Slug of the tags to be added to the partner
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof TagPartnerRequestDtoRest
|
|
22
|
+
*/
|
|
23
|
+
'slug': Array<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,36 @@
|
|
|
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 UpdatePartnerRelationRequestDtoRest
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdatePartnerRelationRequestDtoRest {
|
|
18
|
+
/**
|
|
19
|
+
* The start datetime of the relationship, provided in ISO 8601 format
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
22
|
+
*/
|
|
23
|
+
'startDate'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The end datetime of the relationship, provided in ISO 8601 format
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
28
|
+
*/
|
|
29
|
+
'endDate'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* A note about the relationship, provided as a string
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
34
|
+
*/
|
|
35
|
+
'note'?: string;
|
|
36
|
+
}
|
|
@@ -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 });
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { PartnerTypeCustomSchemaDto } from './partner-type-custom-schema-dto';
|
|
13
12
|
/**
|
|
14
13
|
*
|
|
15
14
|
* @export
|
|
@@ -17,9 +16,26 @@ import { PartnerTypeCustomSchemaDto } from './partner-type-custom-schema-dto';
|
|
|
17
16
|
*/
|
|
18
17
|
export interface UpdatePartnerTypeRequestDto {
|
|
19
18
|
/**
|
|
20
|
-
* The partner type
|
|
21
|
-
* @type {
|
|
19
|
+
* The name of the partner type.
|
|
20
|
+
* @type {string}
|
|
22
21
|
* @memberof UpdatePartnerTypeRequestDto
|
|
23
22
|
*/
|
|
24
|
-
'
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'slug': UpdatePartnerTypeRequestDtoSlugEnum;
|
|
30
|
+
/**
|
|
31
|
+
* The partner type schema array of object based on json schema.
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'schemas': Array<string>;
|
|
25
36
|
}
|
|
37
|
+
export declare const UpdatePartnerTypeRequestDtoSlugEnum: {
|
|
38
|
+
readonly Person: "person";
|
|
39
|
+
readonly Organization: "organization";
|
|
40
|
+
};
|
|
41
|
+
export type UpdatePartnerTypeRequestDtoSlugEnum = typeof UpdatePartnerTypeRequestDtoSlugEnum[keyof typeof UpdatePartnerTypeRequestDtoSlugEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UpdatePartnerTypeRequestDtoSlugEnum = void 0;
|
|
17
|
+
exports.UpdatePartnerTypeRequestDtoSlugEnum = {
|
|
18
|
+
Person: 'person',
|
|
19
|
+
Organization: 'organization'
|
|
20
|
+
};
|
|
@@ -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 { TagClass } from './tag-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateTagResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateTagResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The tag response.
|
|
21
|
+
* @type {TagClass}
|
|
22
|
+
* @memberof UpdateTagResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'tag': TagClass;
|
|
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,74 @@
|
|
|
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 CreatePartnerRelationRequestDtoRest
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePartnerRelationRequestDtoRest {
|
|
23
|
+
/**
|
|
24
|
+
* The ID of the first partner in the relationship
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'partner1Id': number;
|
|
29
|
+
/**
|
|
30
|
+
* The ID of the second partner in the relationship
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
33
|
+
*/
|
|
34
|
+
'partner2Id': number;
|
|
35
|
+
/**
|
|
36
|
+
* The slug of the partner relation type
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
39
|
+
*/
|
|
40
|
+
'relationTypeSlug': CreatePartnerRelationRequestDtoRestRelationTypeSlugEnum;
|
|
41
|
+
/**
|
|
42
|
+
* The start datetime of the relationship, provided in ISO 8601 format
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
45
|
+
*/
|
|
46
|
+
'startDate': string;
|
|
47
|
+
/**
|
|
48
|
+
* The end datetime of the relationship, provided in ISO 8601 format
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
51
|
+
*/
|
|
52
|
+
'endDate': string;
|
|
53
|
+
/**
|
|
54
|
+
* A note about the relationship, provided as a string
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreatePartnerRelationRequestDtoRest
|
|
57
|
+
*/
|
|
58
|
+
'note': string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export const CreatePartnerRelationRequestDtoRestRelationTypeSlugEnum = {
|
|
62
|
+
Parent: 'parent',
|
|
63
|
+
Sibling: 'sibling',
|
|
64
|
+
Married: 'married',
|
|
65
|
+
ManagingDirector: 'managing_director',
|
|
66
|
+
Subsidiary: 'subsidiary',
|
|
67
|
+
SubAgent: 'sub-agent',
|
|
68
|
+
Employee: 'employee',
|
|
69
|
+
Other: 'other'
|
|
70
|
+
} as const;
|
|
71
|
+
|
|
72
|
+
export type CreatePartnerRelationRequestDtoRestRelationTypeSlugEnum = typeof CreatePartnerRelationRequestDtoRestRelationTypeSlugEnum[keyof typeof CreatePartnerRelationRequestDtoRestRelationTypeSlugEnum];
|
|
73
|
+
|
|
74
|
+
|
|
@@ -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 { PartnerRelationClass } from './partner-relation-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreatePartnerRelationResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreatePartnerRelationResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner relation response.
|
|
26
|
+
* @type {PartnerRelationClass}
|
|
27
|
+
* @memberof CreatePartnerRelationResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'partnerRelation': PartnerRelationClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { PartnerTypeCustomSchemaDto } from './partner-type-custom-schema-dto';
|
|
17
16
|
|
|
18
17
|
/**
|
|
19
18
|
*
|
|
@@ -27,11 +26,25 @@ export interface CreatePartnerTypeRequestDto {
|
|
|
27
26
|
* @memberof CreatePartnerTypeRequestDto
|
|
28
27
|
*/
|
|
29
28
|
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePartnerTypeRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug': CreatePartnerTypeRequestDtoSlugEnum;
|
|
30
35
|
/**
|
|
31
36
|
* The partner type schema array of object based on json schema.
|
|
32
|
-
* @type {Array<
|
|
37
|
+
* @type {Array<string>}
|
|
33
38
|
* @memberof CreatePartnerTypeRequestDto
|
|
34
39
|
*/
|
|
35
|
-
'schemas': Array<
|
|
40
|
+
'schemas': Array<string>;
|
|
36
41
|
}
|
|
37
42
|
|
|
43
|
+
export const CreatePartnerTypeRequestDtoSlugEnum = {
|
|
44
|
+
Person: 'person',
|
|
45
|
+
Organization: 'organization'
|
|
46
|
+
} as const;
|
|
47
|
+
|
|
48
|
+
export type CreatePartnerTypeRequestDtoSlugEnum = typeof CreatePartnerTypeRequestDtoSlugEnum[keyof typeof CreatePartnerTypeRequestDtoSlugEnum];
|
|
49
|
+
|
|
50
|
+
|
|
@@ -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 CreateTagRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateTagRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateTagRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'slug': string;
|
|
29
|
+
/**
|
|
30
|
+
* A label for the tag - can be used for display purposes and localization
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateTagRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'label': string;
|
|
35
|
+
/**
|
|
36
|
+
* A short description for the tag
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateTagRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'description': 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 { TagClass } from './tag-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateTagResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateTagResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The tag response.
|
|
26
|
+
* @type {TagClass}
|
|
27
|
+
* @memberof CreateTagResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'tag': TagClass;
|
|
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 { PartnerRelationClass } from './partner-relation-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerRelationClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerRelationClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner relation response.
|
|
26
|
+
* @type {PartnerRelationClass}
|
|
27
|
+
* @memberof GetPartnerRelationClass
|
|
28
|
+
*/
|
|
29
|
+
'partnerRelation': PartnerRelationClass;
|
|
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 { PartnerRelationTypeClass } from './partner-relation-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerRelationTypeClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerRelationTypeClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner relation type response.
|
|
26
|
+
* @type {PartnerRelationTypeClass}
|
|
27
|
+
* @memberof GetPartnerRelationTypeClass
|
|
28
|
+
*/
|
|
29
|
+
'relationType': PartnerRelationTypeClass;
|
|
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 { PartnerClass } from './partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partners.
|
|
26
|
+
* @type {Array<PartnerClass>}
|
|
27
|
+
* @memberof GetPartnerVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'partnerVersion': Array<PartnerClass>;
|
|
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 { TagClass } from './tag-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetTagResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetTagResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The tag response.
|
|
26
|
+
* @type {TagClass}
|
|
27
|
+
* @memberof GetTagResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'tag': TagClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,18 +1,35 @@
|
|
|
1
|
+
export * from './create-partner-relation-request-dto-rest';
|
|
2
|
+
export * from './create-partner-relation-response-class';
|
|
1
3
|
export * from './create-partner-request-dto';
|
|
2
4
|
export * from './create-partner-response-class';
|
|
3
5
|
export * from './create-partner-type-request-dto';
|
|
4
6
|
export * from './create-partner-type-response-class';
|
|
7
|
+
export * from './create-tag-request-dto';
|
|
8
|
+
export * from './create-tag-response-class';
|
|
5
9
|
export * from './delete-response-class';
|
|
10
|
+
export * from './get-partner-relation-class';
|
|
11
|
+
export * from './get-partner-relation-type-class';
|
|
6
12
|
export * from './get-partner-response-class';
|
|
7
13
|
export * from './get-partner-type-response-class';
|
|
14
|
+
export * from './get-partner-version-response-class';
|
|
15
|
+
export * from './get-tag-response-class';
|
|
8
16
|
export * from './inline-response200';
|
|
9
17
|
export * from './inline-response503';
|
|
18
|
+
export * from './list-partner-relation-class';
|
|
19
|
+
export * from './list-partner-relation-types-class';
|
|
10
20
|
export * from './list-partner-types-response-class';
|
|
21
|
+
export * from './list-partner-versions-response-class';
|
|
11
22
|
export * from './list-partners-response-class';
|
|
23
|
+
export * from './list-tags-response-class';
|
|
12
24
|
export * from './partner-class';
|
|
25
|
+
export * from './partner-relation-class';
|
|
26
|
+
export * from './partner-relation-type-class';
|
|
13
27
|
export * from './partner-type-class';
|
|
14
|
-
export * from './
|
|
28
|
+
export * from './tag-class';
|
|
29
|
+
export * from './tag-partner-request-dto-rest';
|
|
30
|
+
export * from './update-partner-relation-request-dto-rest';
|
|
15
31
|
export * from './update-partner-request-dto';
|
|
16
32
|
export * from './update-partner-response-class';
|
|
17
33
|
export * from './update-partner-type-request-dto';
|
|
18
34
|
export * from './update-partner-type-response-class';
|
|
35
|
+
export * from './update-tag-response-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { PartnerRelationClass } from './partner-relation-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerRelationClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnerRelationClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partner relationss.
|
|
26
|
+
* @type {Array<PartnerRelationClass>}
|
|
27
|
+
* @memberof ListPartnerRelationClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerRelationClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnerRelationClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { PartnerRelationTypeClass } from './partner-relation-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerRelationTypesClass
|
|
22
|
+
*/
|
|
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
|
+
/**
|
|
31
|
+
* Next page token
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnerRelationTypesClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -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 { PartnerClass } from './partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerVersionsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnerVersionsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of Partnerss.
|
|
26
|
+
* @type {Array<PartnerClass>}
|
|
27
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerClass>;
|
|
30
|
+
}
|
|
31
|
+
|