@emilgroup/partner-sdk-node 1.0.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 +41 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/default-api.ts +120 -0
- package/api/partner-relations-api.ts +349 -0
- package/api/partner-types-api.ts +693 -0
- package/api/partner-version-api.ts +375 -0
- package/api/partners-api.ts +693 -0
- package/api.ts +35 -0
- package/base.ts +252 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/default-api.d.ts +66 -0
- package/dist/api/default-api.js +196 -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 +394 -0
- package/dist/api/partner-types-api.js +642 -0
- 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 +394 -0
- package/dist/api/partners-api.js +642 -0
- package/dist/api.d.ts +16 -0
- package/dist/api.js +34 -0
- package/dist/base.d.ts +74 -0
- package/dist/base.js +299 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/create-partner-request-dto.d.ts +30 -0
- package/dist/models/create-partner-request-dto.js +15 -0
- package/dist/models/create-partner-response-class.d.ts +25 -0
- package/dist/models/create-partner-response-class.js +15 -0
- package/dist/models/create-partner-type-request-dto.d.ts +31 -0
- package/dist/models/create-partner-type-request-dto.js +15 -0
- package/dist/models/create-partner-type-response-class.d.ts +25 -0
- package/dist/models/create-partner-type-response-class.js +15 -0
- package/dist/models/delete-response-class.d.ts +24 -0
- package/dist/models/delete-response-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-response-class.d.ts +25 -0
- package/dist/models/get-partner-response-class.js +15 -0
- package/dist/models/get-partner-type-response-class.d.ts +25 -0
- package/dist/models/get-partner-type-response-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 +23 -0
- package/dist/models/index.js +39 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.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-types-response-class.d.ts +31 -0
- package/dist/models/list-partner-types-response-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-partners-response-class.d.ts +31 -0
- package/dist/models/list-partners-response-class.js +15 -0
- package/dist/models/partner-class.d.ts +79 -0
- package/dist/models/partner-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 +60 -0
- package/dist/models/partner-type-class.js +15 -0
- package/dist/models/partner-type-custom-schema-dto.d.ts +66 -0
- package/dist/models/partner-type-custom-schema-dto.js +15 -0
- package/dist/models/update-partner-request-dto.d.ts +24 -0
- package/dist/models/update-partner-request-dto.js +15 -0
- package/dist/models/update-partner-response-class.d.ts +25 -0
- package/dist/models/update-partner-response-class.js +15 -0
- package/dist/models/update-partner-type-request-dto.d.ts +31 -0
- package/dist/models/update-partner-type-request-dto.js +15 -0
- package/dist/models/update-partner-type-response-class.d.ts +25 -0
- package/dist/models/update-partner-type-response-class.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/create-partner-request-dto.ts +36 -0
- package/models/create-partner-response-class.ts +31 -0
- package/models/create-partner-type-request-dto.ts +37 -0
- package/models/create-partner-type-response-class.ts +31 -0
- package/models/delete-response-class.ts +30 -0
- package/models/get-partner-relation-type-class.ts +31 -0
- package/models/get-partner-response-class.ts +31 -0
- package/models/get-partner-type-response-class.ts +31 -0
- package/models/get-partner-version-response-class.ts +31 -0
- package/models/index.ts +23 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/list-partner-relation-types-class.ts +37 -0
- package/models/list-partner-types-response-class.ts +37 -0
- package/models/list-partner-versions-response-class.ts +31 -0
- package/models/list-partners-response-class.ts +37 -0
- package/models/partner-class.ts +85 -0
- package/models/partner-relation-type-class.ts +72 -0
- package/models/partner-type-class.ts +66 -0
- package/models/partner-type-custom-schema-dto.ts +72 -0
- package/models/update-partner-request-dto.ts +30 -0
- package/models/update-partner-response-class.ts +31 -0
- package/models/update-partner-type-request-dto.ts +37 -0
- package/models/update-partner-type-response-class.ts +31 -0
- package/package.json +29 -0
- package/tsconfig.json +22 -0
|
@@ -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 GetPartnerResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partner response.
|
|
26
|
+
* @type {PartnerClass}
|
|
27
|
+
* @memberof GetPartnerResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'partner': 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 { PartnerTypeClass } from './partner-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPartnerTypeResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPartnerTypeResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The partnerType response.
|
|
26
|
+
* @type {PartnerTypeClass}
|
|
27
|
+
* @memberof GetPartnerTypeResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'partnerType': PartnerTypeClass;
|
|
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
|
+
|
package/models/index.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './create-partner-request-dto';
|
|
2
|
+
export * from './create-partner-response-class';
|
|
3
|
+
export * from './create-partner-type-request-dto';
|
|
4
|
+
export * from './create-partner-type-response-class';
|
|
5
|
+
export * from './delete-response-class';
|
|
6
|
+
export * from './get-partner-relation-type-class';
|
|
7
|
+
export * from './get-partner-response-class';
|
|
8
|
+
export * from './get-partner-type-response-class';
|
|
9
|
+
export * from './get-partner-version-response-class';
|
|
10
|
+
export * from './inline-response200';
|
|
11
|
+
export * from './inline-response503';
|
|
12
|
+
export * from './list-partner-relation-types-class';
|
|
13
|
+
export * from './list-partner-types-response-class';
|
|
14
|
+
export * from './list-partner-versions-response-class';
|
|
15
|
+
export * from './list-partners-response-class';
|
|
16
|
+
export * from './partner-class';
|
|
17
|
+
export * from './partner-relation-type-class';
|
|
18
|
+
export * from './partner-type-class';
|
|
19
|
+
export * from './partner-type-custom-schema-dto';
|
|
20
|
+
export * from './update-partner-request-dto';
|
|
21
|
+
export * from './update-partner-response-class';
|
|
22
|
+
export * from './update-partner-type-request-dto';
|
|
23
|
+
export * from './update-partner-type-response-class';
|
|
@@ -0,0 +1,48 @@
|
|
|
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 InlineResponse200
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse200 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse200
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
|
+
* @memberof InlineResponse200
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
|
+
* @memberof InlineResponse200
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
|
+
* @memberof InlineResponse200
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 InlineResponse503
|
|
21
|
+
*/
|
|
22
|
+
export interface InlineResponse503 {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof InlineResponse503
|
|
27
|
+
*/
|
|
28
|
+
'status'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
|
+
* @memberof InlineResponse503
|
|
33
|
+
*/
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
|
+
* @memberof InlineResponse503
|
|
39
|
+
*/
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
|
+
* @memberof InlineResponse503
|
|
45
|
+
*/
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -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,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 { PartnerTypeClass } from './partner-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnerTypesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnerTypesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of partnerTypes.
|
|
26
|
+
* @type {Array<PartnerTypeClass>}
|
|
27
|
+
* @memberof ListPartnerTypesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerTypeClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnerTypesResponseClass
|
|
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
|
+
|
|
@@ -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 { PartnerClass } from './partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListPartnersResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPartnersResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of Partnerss.
|
|
26
|
+
* @type {Array<PartnerClass>}
|
|
27
|
+
* @memberof ListPartnersResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PartnerClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
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 { PartnerTypeClass } from './partner-type-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PartnerClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PartnerClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PartnerClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PartnerClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* The partner object, based on partner schema.
|
|
38
|
+
* @type {object}
|
|
39
|
+
* @memberof PartnerClass
|
|
40
|
+
*/
|
|
41
|
+
'partner': object;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof PartnerClass
|
|
46
|
+
*/
|
|
47
|
+
'partnerTypeId': number;
|
|
48
|
+
/**
|
|
49
|
+
* For person partner type displayName is a combination if firstname and lastname. For organization its organization name.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PartnerClass
|
|
52
|
+
*/
|
|
53
|
+
'displayName': string;
|
|
54
|
+
/**
|
|
55
|
+
* The partner type of this partner
|
|
56
|
+
* @type {PartnerTypeClass}
|
|
57
|
+
* @memberof PartnerClass
|
|
58
|
+
*/
|
|
59
|
+
'partnerType': PartnerTypeClass;
|
|
60
|
+
/**
|
|
61
|
+
* Time at which the object was created.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PartnerClass
|
|
64
|
+
*/
|
|
65
|
+
'createdAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was updated.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PartnerClass
|
|
70
|
+
*/
|
|
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
|
+
|
|
@@ -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
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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 PartnerTypeClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PartnerTypeClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PartnerTypeClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PartnerTypeClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* The name of the partner type.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PartnerTypeClass
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* The partner type schema object based on json schema.
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof PartnerTypeClass
|
|
45
|
+
*/
|
|
46
|
+
'schema': object;
|
|
47
|
+
/**
|
|
48
|
+
* The partner type schema fields. This can be used to render UI.
|
|
49
|
+
* @type {object}
|
|
50
|
+
* @memberof PartnerTypeClass
|
|
51
|
+
*/
|
|
52
|
+
'fields': object;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was created.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PartnerTypeClass
|
|
57
|
+
*/
|
|
58
|
+
'createdAt': string;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was updated.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PartnerTypeClass
|
|
63
|
+
*/
|
|
64
|
+
'updatedAt': string;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -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 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
|
+
|