@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,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 { TagClass } from './tag-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListTagsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListTagsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partner tagss.
|
|
26
|
+
* @type {Array<TagClass>}
|
|
27
|
+
* @memberof ListTagsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<TagClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListTagsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
package/models/partner-class.ts
CHANGED
|
@@ -69,5 +69,23 @@ export interface PartnerClass {
|
|
|
69
69
|
* @memberof PartnerClass
|
|
70
70
|
*/
|
|
71
71
|
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Last user who updated the entity
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PartnerClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* The version number of the partner
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof PartnerClass
|
|
82
|
+
*/
|
|
83
|
+
'version': number;
|
|
84
|
+
/**
|
|
85
|
+
* Tags that the partner is associated with
|
|
86
|
+
* @type {Array<string>}
|
|
87
|
+
* @memberof PartnerClass
|
|
88
|
+
*/
|
|
89
|
+
'tags': Array<string>;
|
|
72
90
|
}
|
|
73
91
|
|
|
@@ -0,0 +1,78 @@
|
|
|
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 PartnerRelationClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerRelationClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PartnerRelationClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof PartnerRelationClass
|
|
33
|
+
*/
|
|
34
|
+
'partner1Id': number;
|
|
35
|
+
/**
|
|
36
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PartnerRelationClass
|
|
39
|
+
*/
|
|
40
|
+
'partner2Id': number;
|
|
41
|
+
/**
|
|
42
|
+
* Relation type slug to identify the type of the relation
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PartnerRelationClass
|
|
45
|
+
*/
|
|
46
|
+
'partnerRelationTypeSlug': string;
|
|
47
|
+
/**
|
|
48
|
+
* Starting date of the relation - will default to current time if not provided
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PartnerRelationClass
|
|
51
|
+
*/
|
|
52
|
+
'startDate': string;
|
|
53
|
+
/**
|
|
54
|
+
* Ending date of the relation - if not provided, the relation is considered active
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PartnerRelationClass
|
|
57
|
+
*/
|
|
58
|
+
'endDate': string;
|
|
59
|
+
/**
|
|
60
|
+
* Any additional notes for the relation
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PartnerRelationClass
|
|
63
|
+
*/
|
|
64
|
+
'note': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PartnerRelationClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was updated.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PartnerRelationClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 PartnerRelationTypeClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerRelationTypeClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PartnerRelationTypeClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
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 PartnerRelationTypeClass
|
|
33
|
+
*/
|
|
34
|
+
'slug': string;
|
|
35
|
+
/**
|
|
36
|
+
* The name of the relation type
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PartnerRelationTypeClass
|
|
39
|
+
*/
|
|
40
|
+
'relationName': string;
|
|
41
|
+
/**
|
|
42
|
+
* The description of the relation type
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PartnerRelationTypeClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* The maximum number of times this relation type can be connected to a partner
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof PartnerRelationTypeClass
|
|
51
|
+
*/
|
|
52
|
+
'maxCardinality': number;
|
|
53
|
+
/**
|
|
54
|
+
* The inverse side of maximum cardinality for the relation type - the maximum number of times a partner can be connected to this relation type from the inverse side
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof PartnerRelationTypeClass
|
|
57
|
+
*/
|
|
58
|
+
'inverseMaxCardinality': number;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was created.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PartnerRelationTypeClass
|
|
63
|
+
*/
|
|
64
|
+
'createdAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was updated.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PartnerRelationTypeClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedAt': string;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -38,6 +38,12 @@ export interface PartnerTypeClass {
|
|
|
38
38
|
* @memberof PartnerTypeClass
|
|
39
39
|
*/
|
|
40
40
|
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PartnerTypeClass
|
|
45
|
+
*/
|
|
46
|
+
'slug': PartnerTypeClassSlugEnum;
|
|
41
47
|
/**
|
|
42
48
|
* The partner type schema object based on json schema.
|
|
43
49
|
* @type {object}
|
|
@@ -64,3 +70,11 @@ export interface PartnerTypeClass {
|
|
|
64
70
|
'updatedAt': string;
|
|
65
71
|
}
|
|
66
72
|
|
|
73
|
+
export const PartnerTypeClassSlugEnum = {
|
|
74
|
+
Person: 'person',
|
|
75
|
+
Organization: 'organization'
|
|
76
|
+
} as const;
|
|
77
|
+
|
|
78
|
+
export type PartnerTypeClassSlugEnum = typeof PartnerTypeClassSlugEnum[keyof typeof PartnerTypeClassSlugEnum];
|
|
79
|
+
|
|
80
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 TagClass
|
|
21
|
+
*/
|
|
22
|
+
export interface TagClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the object.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof TagClass
|
|
27
|
+
*/
|
|
28
|
+
'code': 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 TagClass
|
|
33
|
+
*/
|
|
34
|
+
'slug': string;
|
|
35
|
+
/**
|
|
36
|
+
* The label of the tag
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof TagClass
|
|
39
|
+
*/
|
|
40
|
+
'label': string;
|
|
41
|
+
/**
|
|
42
|
+
* A short description for the tag
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof TagClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* Time at which the object was created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof TagClass
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was updated.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof TagClass
|
|
57
|
+
*/
|
|
58
|
+
'updatedAt': string;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -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 TagPartnerRequestDtoRest
|
|
21
|
+
*/
|
|
22
|
+
export interface TagPartnerRequestDtoRest {
|
|
23
|
+
/**
|
|
24
|
+
* Slug of the tags to be added to the partner
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof TagPartnerRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'slug': Array<string>;
|
|
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 UpdatePartnerRelationRequestDtoRest
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdatePartnerRelationRequestDtoRest {
|
|
23
|
+
/**
|
|
24
|
+
* The start datetime of the relationship, provided in ISO 8601 format
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'startDate'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The end datetime of the relationship, provided in ISO 8601 format
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
33
|
+
*/
|
|
34
|
+
'endDate'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* A note about the relationship, provided as a string
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
39
|
+
*/
|
|
40
|
+
'note'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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
|
*
|
|
@@ -22,10 +21,30 @@ import { PartnerTypeCustomSchemaDto } from './partner-type-custom-schema-dto';
|
|
|
22
21
|
*/
|
|
23
22
|
export interface UpdatePartnerTypeRequestDto {
|
|
24
23
|
/**
|
|
25
|
-
* The partner type
|
|
26
|
-
* @type {
|
|
24
|
+
* The name of the partner type.
|
|
25
|
+
* @type {string}
|
|
27
26
|
* @memberof UpdatePartnerTypeRequestDto
|
|
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 UpdatePartnerTypeRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'slug': UpdatePartnerTypeRequestDtoSlugEnum;
|
|
35
|
+
/**
|
|
36
|
+
* The partner type schema array of object based on json schema.
|
|
37
|
+
* @type {Array<string>}
|
|
38
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'schemas': Array<string>;
|
|
30
41
|
}
|
|
31
42
|
|
|
43
|
+
export const UpdatePartnerTypeRequestDtoSlugEnum = {
|
|
44
|
+
Person: 'person',
|
|
45
|
+
Organization: 'organization'
|
|
46
|
+
} as const;
|
|
47
|
+
|
|
48
|
+
export type UpdatePartnerTypeRequestDtoSlugEnum = typeof UpdatePartnerTypeRequestDtoSlugEnum[keyof typeof UpdatePartnerTypeRequestDtoSlugEnum];
|
|
49
|
+
|
|
50
|
+
|
|
@@ -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 UpdateTagResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateTagResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The tag response.
|
|
26
|
+
* @type {TagClass}
|
|
27
|
+
* @memberof UpdateTagResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'tag': TagClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/package.json
CHANGED
|
@@ -1,66 +0,0 @@
|
|
|
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 PartnerTypeCustomSchemaDto
|
|
16
|
-
*/
|
|
17
|
-
export interface PartnerTypeCustomSchemaDto {
|
|
18
|
-
/**
|
|
19
|
-
* The name of the schema property - should be camelCase.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
22
|
-
*/
|
|
23
|
-
'name': string;
|
|
24
|
-
/**
|
|
25
|
-
* The type of the schema property.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
28
|
-
*/
|
|
29
|
-
'type': string;
|
|
30
|
-
/**
|
|
31
|
-
* A boolean value to state if the property is required or not.
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
34
|
-
*/
|
|
35
|
-
'isRequired': boolean;
|
|
36
|
-
/**
|
|
37
|
-
* The label of the schema property as it will be displayed in the UI. If no label is provided, the name will be used in its place.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
40
|
-
*/
|
|
41
|
-
'label'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Minimum value of the property value. Applicable only if the property is a number type.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
46
|
-
*/
|
|
47
|
-
'minimum'?: number;
|
|
48
|
-
/**
|
|
49
|
-
* Maxium value of the property value. Applicable only if the property is a number type.
|
|
50
|
-
* @type {number}
|
|
51
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
52
|
-
*/
|
|
53
|
-
'maximum'?: number;
|
|
54
|
-
/**
|
|
55
|
-
* Minimum character length of the property value. Applicable only if the property is a string type.
|
|
56
|
-
* @type {number}
|
|
57
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
58
|
-
*/
|
|
59
|
-
'minLength'?: number;
|
|
60
|
-
/**
|
|
61
|
-
* Maximum character length of the property value. Applicable only if the property is a string type.
|
|
62
|
-
* @type {number}
|
|
63
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
64
|
-
*/
|
|
65
|
-
'maxLength'?: number;
|
|
66
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
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 PartnerTypeCustomSchemaDto
|
|
21
|
-
*/
|
|
22
|
-
export interface PartnerTypeCustomSchemaDto {
|
|
23
|
-
/**
|
|
24
|
-
* The name of the schema property - should be camelCase.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
27
|
-
*/
|
|
28
|
-
'name': string;
|
|
29
|
-
/**
|
|
30
|
-
* The type of the schema property.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
33
|
-
*/
|
|
34
|
-
'type': string;
|
|
35
|
-
/**
|
|
36
|
-
* A boolean value to state if the property is required or not.
|
|
37
|
-
* @type {boolean}
|
|
38
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
39
|
-
*/
|
|
40
|
-
'isRequired': boolean;
|
|
41
|
-
/**
|
|
42
|
-
* The label of the schema property as it will be displayed in the UI. If no label is provided, the name will be used in its place.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
45
|
-
*/
|
|
46
|
-
'label'?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Minimum value of the property value. Applicable only if the property is a number type.
|
|
49
|
-
* @type {number}
|
|
50
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
51
|
-
*/
|
|
52
|
-
'minimum'?: number;
|
|
53
|
-
/**
|
|
54
|
-
* Maxium value of the property value. Applicable only if the property is a number type.
|
|
55
|
-
* @type {number}
|
|
56
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
57
|
-
*/
|
|
58
|
-
'maximum'?: number;
|
|
59
|
-
/**
|
|
60
|
-
* Minimum character length of the property value. Applicable only if the property is a string type.
|
|
61
|
-
* @type {number}
|
|
62
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
63
|
-
*/
|
|
64
|
-
'minLength'?: number;
|
|
65
|
-
/**
|
|
66
|
-
* Maximum character length of the property value. Applicable only if the property is a string type.
|
|
67
|
-
* @type {number}
|
|
68
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
69
|
-
*/
|
|
70
|
-
'maxLength'?: number;
|
|
71
|
-
}
|
|
72
|
-
|
/package/dist/models/{partner-type-custom-schema-dto.js → create-partner-relation-response-class.js}
RENAMED
|
File without changes
|