@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.
Files changed (109) hide show
  1. package/.openapi-generator/FILES +41 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +51 -0
  5. package/api/default-api.ts +120 -0
  6. package/api/partner-relations-api.ts +349 -0
  7. package/api/partner-types-api.ts +693 -0
  8. package/api/partner-version-api.ts +375 -0
  9. package/api/partners-api.ts +693 -0
  10. package/api.ts +35 -0
  11. package/base.ts +252 -0
  12. package/common.ts +198 -0
  13. package/configuration.ts +101 -0
  14. package/dist/api/default-api.d.ts +66 -0
  15. package/dist/api/default-api.js +196 -0
  16. package/dist/api/partner-relations-api.d.ts +206 -0
  17. package/dist/api/partner-relations-api.js +352 -0
  18. package/dist/api/partner-types-api.d.ts +394 -0
  19. package/dist/api/partner-types-api.js +642 -0
  20. package/dist/api/partner-version-api.d.ts +224 -0
  21. package/dist/api/partner-version-api.js +363 -0
  22. package/dist/api/partners-api.d.ts +394 -0
  23. package/dist/api/partners-api.js +642 -0
  24. package/dist/api.d.ts +16 -0
  25. package/dist/api.js +34 -0
  26. package/dist/base.d.ts +74 -0
  27. package/dist/base.js +299 -0
  28. package/dist/common.d.ts +91 -0
  29. package/dist/common.js +276 -0
  30. package/dist/configuration.d.ts +83 -0
  31. package/dist/configuration.js +44 -0
  32. package/dist/index.d.ts +15 -0
  33. package/dist/index.js +36 -0
  34. package/dist/models/create-partner-request-dto.d.ts +30 -0
  35. package/dist/models/create-partner-request-dto.js +15 -0
  36. package/dist/models/create-partner-response-class.d.ts +25 -0
  37. package/dist/models/create-partner-response-class.js +15 -0
  38. package/dist/models/create-partner-type-request-dto.d.ts +31 -0
  39. package/dist/models/create-partner-type-request-dto.js +15 -0
  40. package/dist/models/create-partner-type-response-class.d.ts +25 -0
  41. package/dist/models/create-partner-type-response-class.js +15 -0
  42. package/dist/models/delete-response-class.d.ts +24 -0
  43. package/dist/models/delete-response-class.js +15 -0
  44. package/dist/models/get-partner-relation-type-class.d.ts +25 -0
  45. package/dist/models/get-partner-relation-type-class.js +15 -0
  46. package/dist/models/get-partner-response-class.d.ts +25 -0
  47. package/dist/models/get-partner-response-class.js +15 -0
  48. package/dist/models/get-partner-type-response-class.d.ts +25 -0
  49. package/dist/models/get-partner-type-response-class.js +15 -0
  50. package/dist/models/get-partner-version-response-class.d.ts +25 -0
  51. package/dist/models/get-partner-version-response-class.js +15 -0
  52. package/dist/models/index.d.ts +23 -0
  53. package/dist/models/index.js +39 -0
  54. package/dist/models/inline-response200.d.ts +54 -0
  55. package/dist/models/inline-response200.js +15 -0
  56. package/dist/models/inline-response503.d.ts +54 -0
  57. package/dist/models/inline-response503.js +15 -0
  58. package/dist/models/list-partner-relation-types-class.d.ts +31 -0
  59. package/dist/models/list-partner-relation-types-class.js +15 -0
  60. package/dist/models/list-partner-types-response-class.d.ts +31 -0
  61. package/dist/models/list-partner-types-response-class.js +15 -0
  62. package/dist/models/list-partner-versions-response-class.d.ts +25 -0
  63. package/dist/models/list-partner-versions-response-class.js +15 -0
  64. package/dist/models/list-partners-response-class.d.ts +31 -0
  65. package/dist/models/list-partners-response-class.js +15 -0
  66. package/dist/models/partner-class.d.ts +79 -0
  67. package/dist/models/partner-class.js +15 -0
  68. package/dist/models/partner-relation-type-class.d.ts +66 -0
  69. package/dist/models/partner-relation-type-class.js +15 -0
  70. package/dist/models/partner-type-class.d.ts +60 -0
  71. package/dist/models/partner-type-class.js +15 -0
  72. package/dist/models/partner-type-custom-schema-dto.d.ts +66 -0
  73. package/dist/models/partner-type-custom-schema-dto.js +15 -0
  74. package/dist/models/update-partner-request-dto.d.ts +24 -0
  75. package/dist/models/update-partner-request-dto.js +15 -0
  76. package/dist/models/update-partner-response-class.d.ts +25 -0
  77. package/dist/models/update-partner-response-class.js +15 -0
  78. package/dist/models/update-partner-type-request-dto.d.ts +31 -0
  79. package/dist/models/update-partner-type-request-dto.js +15 -0
  80. package/dist/models/update-partner-type-response-class.d.ts +25 -0
  81. package/dist/models/update-partner-type-response-class.js +15 -0
  82. package/git_push.sh +57 -0
  83. package/index.ts +19 -0
  84. package/models/create-partner-request-dto.ts +36 -0
  85. package/models/create-partner-response-class.ts +31 -0
  86. package/models/create-partner-type-request-dto.ts +37 -0
  87. package/models/create-partner-type-response-class.ts +31 -0
  88. package/models/delete-response-class.ts +30 -0
  89. package/models/get-partner-relation-type-class.ts +31 -0
  90. package/models/get-partner-response-class.ts +31 -0
  91. package/models/get-partner-type-response-class.ts +31 -0
  92. package/models/get-partner-version-response-class.ts +31 -0
  93. package/models/index.ts +23 -0
  94. package/models/inline-response200.ts +48 -0
  95. package/models/inline-response503.ts +48 -0
  96. package/models/list-partner-relation-types-class.ts +37 -0
  97. package/models/list-partner-types-response-class.ts +37 -0
  98. package/models/list-partner-versions-response-class.ts +31 -0
  99. package/models/list-partners-response-class.ts +37 -0
  100. package/models/partner-class.ts +85 -0
  101. package/models/partner-relation-type-class.ts +72 -0
  102. package/models/partner-type-class.ts +66 -0
  103. package/models/partner-type-custom-schema-dto.ts +72 -0
  104. package/models/update-partner-request-dto.ts +30 -0
  105. package/models/update-partner-response-class.ts +31 -0
  106. package/models/update-partner-type-request-dto.ts +37 -0
  107. package/models/update-partner-type-response-class.ts +31 -0
  108. package/package.json +29 -0
  109. 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
+
@@ -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
+