@emilgroup/partner-sdk 1.0.1-beta.1 → 1.1.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 +7 -0
- package/README.md +2 -2
- package/api/partner-relations-api.ts +349 -0
- package/api/partner-types-api.ts +36 -22
- package/api/partner-version-api.ts +375 -0
- package/api/partners-api.ts +36 -22
- package/api.ts +4 -0
- package/dist/api/partner-relations-api.d.ts +206 -0
- package/dist/api/partner-relations-api.js +352 -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 +28 -19
- package/dist/api/partners-api.js +26 -20
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -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/index.d.ts +5 -0
- package/dist/models/index.js +5 -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/partner-class.d.ts +12 -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/update-partner-type-request-dto.d.ts +6 -0
- package/models/get-partner-relation-type-class.ts +31 -0
- package/models/get-partner-version-response-class.ts +31 -0
- package/models/index.ts +5 -0
- package/models/list-partner-relation-types-class.ts +37 -0
- package/models/list-partner-versions-response-class.ts +31 -0
- package/models/partner-class.ts +12 -0
- package/models/partner-relation-type-class.ts +72 -0
- package/models/update-partner-type-request-dto.ts +6 -0
- package/package.json +1 -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 { 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
|
+
|
package/models/partner-class.ts
CHANGED
|
@@ -69,5 +69,17 @@ 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;
|
|
72
84
|
}
|
|
73
85
|
|
|
@@ -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
|
+
|
|
@@ -21,6 +21,12 @@ import { PartnerTypeCustomSchemaDto } from './partner-type-custom-schema-dto';
|
|
|
21
21
|
* @interface UpdatePartnerTypeRequestDto
|
|
22
22
|
*/
|
|
23
23
|
export interface UpdatePartnerTypeRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* The name of the partner type.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
24
30
|
/**
|
|
25
31
|
* The partner type schema object.
|
|
26
32
|
* @type {Array<PartnerTypeCustomSchemaDto>}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/partner-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/partner-sdk",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"axios": "^0.27.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
|
|
25
24
|
"typescript": "^4.0"
|
|
26
25
|
}
|
|
27
26
|
}
|