@emilgroup/partner-sdk-node 1.4.1-beta.0 → 1.5.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 +0 -1
- package/README.md +2 -2
- package/api/partner-relations-api.ts +8 -8
- package/api/partner-tags-api.ts +8 -8
- package/api/partner-types-api.ts +4 -4
- package/api/partner-version-api.ts +4 -4
- package/api/partners-api.ts +8 -8
- package/base.ts +3 -3
- package/dist/api/partner-relations-api.d.ts +8 -8
- package/dist/api/partner-relations-api.js +6 -6
- package/dist/api/partner-tags-api.d.ts +8 -8
- package/dist/api/partner-tags-api.js +7 -7
- package/dist/api/partner-types-api.d.ts +4 -4
- package/dist/api/partner-types-api.js +4 -4
- package/dist/api/partner-version-api.d.ts +4 -4
- package/dist/api/partner-version-api.js +3 -3
- package/dist/api/partners-api.d.ts +8 -8
- package/dist/api/partners-api.js +7 -7
- package/dist/base.d.ts +2 -2
- package/dist/base.js +1 -2
- package/dist/models/create-partner-type-request-dto.d.ts +2 -3
- package/dist/models/create-partner-type-response-class.d.ts +1 -1
- package/dist/models/create-tag-request-dto.d.ts +1 -1
- package/dist/models/get-partner-type-response-class.d.ts +1 -1
- package/dist/models/get-partner-version-response-class.d.ts +3 -3
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/list-partner-relation-class.d.ts +1 -1
- package/dist/models/list-partner-relation-types-class.d.ts +1 -1
- package/dist/models/list-partner-types-response-class.d.ts +1 -1
- package/dist/models/list-partner-versions-response-class.d.ts +7 -1
- package/dist/models/list-partners-response-class.d.ts +1 -1
- package/dist/models/partner-class.d.ts +12 -6
- package/dist/models/partner-relation-class.d.ts +12 -0
- package/dist/models/partner-relation-type-class.d.ts +12 -0
- package/dist/models/partner-type-class.d.ts +12 -0
- package/dist/models/tag-class.d.ts +12 -0
- package/dist/models/update-partner-type-request-dto.d.ts +2 -3
- package/dist/models/update-partner-type-response-class.d.ts +1 -1
- package/models/create-partner-type-request-dto.ts +2 -3
- package/models/create-partner-type-response-class.ts +1 -1
- package/models/create-tag-request-dto.ts +1 -1
- package/models/get-partner-type-response-class.ts +1 -1
- package/models/get-partner-version-response-class.ts +3 -3
- package/models/index.ts +0 -1
- package/models/list-partner-relation-class.ts +1 -1
- package/models/list-partner-relation-types-class.ts +1 -1
- package/models/list-partner-types-response-class.ts +1 -1
- package/models/list-partner-versions-response-class.ts +7 -1
- package/models/list-partners-response-class.ts +1 -1
- package/models/partner-class.ts +12 -6
- package/models/partner-relation-class.ts +12 -0
- package/models/partner-relation-type-class.ts +12 -0
- package/models/partner-type-class.ts +12 -0
- package/models/tag-class.ts +12 -0
- package/models/update-partner-type-request-dto.ts +2 -3
- package/models/update-partner-type-response-class.ts +1 -1
- package/package.json +1 -1
- package/dist/models/partner-type-custom-schema-dto.d.ts +0 -102
- package/dist/models/partner-type-custom-schema-dto.js +0 -15
- package/models/partner-type-custom-schema-dto.ts +0 -108
|
@@ -1,108 +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
|
-
* Possible options to select
|
|
73
|
-
* @type {object}
|
|
74
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
75
|
-
*/
|
|
76
|
-
'options'?: object;
|
|
77
|
-
/**
|
|
78
|
-
* The minimum number of items allowed for array fields.
|
|
79
|
-
* @type {number}
|
|
80
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
81
|
-
*/
|
|
82
|
-
'minItems'?: number;
|
|
83
|
-
/**
|
|
84
|
-
* The maximum number of items allowed for array fields.
|
|
85
|
-
* @type {number}
|
|
86
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
87
|
-
*/
|
|
88
|
-
'maxItems'?: number;
|
|
89
|
-
/**
|
|
90
|
-
* Defines the structure of items for array fields.
|
|
91
|
-
* @type {PartnerTypeCustomSchemaDto}
|
|
92
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
93
|
-
*/
|
|
94
|
-
'items'?: PartnerTypeCustomSchemaDto;
|
|
95
|
-
/**
|
|
96
|
-
* Defines the properties for object fields.
|
|
97
|
-
* @type {object}
|
|
98
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
99
|
-
*/
|
|
100
|
-
'properties'?: object;
|
|
101
|
-
/**
|
|
102
|
-
* Defines the regex expression for string field.
|
|
103
|
-
* @type {string}
|
|
104
|
-
* @memberof PartnerTypeCustomSchemaDto
|
|
105
|
-
*/
|
|
106
|
-
'regexExpression'?: string;
|
|
107
|
-
}
|
|
108
|
-
|