@emilgroup/partner-sdk 1.22.1-beta.13 → 1.22.1-beta.15

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 (104) hide show
  1. package/.openapi-generator/FILES +26 -1
  2. package/README.md +2 -2
  3. package/api/blacklist-api.ts +662 -0
  4. package/api/blacklist-reasons-api.ts +797 -0
  5. package/api/{default-api.ts → health-api.ts} +13 -13
  6. package/api/partner-hierarchy-types-api.ts +679 -0
  7. package/api.ts +8 -2
  8. package/base.ts +1 -0
  9. package/dist/api/blacklist-api.d.ts +375 -0
  10. package/dist/api/blacklist-api.js +629 -0
  11. package/dist/api/blacklist-reasons-api.d.ts +450 -0
  12. package/dist/api/blacklist-reasons-api.js +735 -0
  13. package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
  14. package/dist/api/{default-api.js → health-api.js} +22 -22
  15. package/dist/api/partner-hierarchy-types-api.d.ts +385 -0
  16. package/dist/api/partner-hierarchy-types-api.js +636 -0
  17. package/dist/api.d.ts +4 -1
  18. package/dist/api.js +4 -1
  19. package/dist/base.d.ts +2 -1
  20. package/dist/base.js +1 -0
  21. package/dist/models/blacklist-item-class.d.ts +78 -0
  22. package/dist/models/blacklist-item-class.js +15 -0
  23. package/dist/models/blacklist-reason-class.d.ts +78 -0
  24. package/dist/models/blacklist-reason-class.js +15 -0
  25. package/dist/models/create-blacklist-item-request-dto.d.ts +36 -0
  26. package/dist/models/create-blacklist-item-request-dto.js +15 -0
  27. package/dist/models/create-blacklist-item-response-class.d.ts +25 -0
  28. package/dist/models/create-blacklist-item-response-class.js +15 -0
  29. package/dist/models/create-blacklist-reason-request-dto.d.ts +36 -0
  30. package/dist/models/create-blacklist-reason-request-dto.js +15 -0
  31. package/dist/models/create-blacklist-reason-response-class.d.ts +25 -0
  32. package/dist/models/create-blacklist-reason-response-class.js +15 -0
  33. package/dist/models/create-partner-hierarchy-type-request-dto.d.ts +30 -0
  34. package/dist/models/create-partner-hierarchy-type-request-dto.js +15 -0
  35. package/dist/models/create-partner-hierarchy-type-response-class.d.ts +25 -0
  36. package/dist/models/create-partner-hierarchy-type-response-class.js +15 -0
  37. package/dist/models/delete-by-code-response-class.d.ts +24 -0
  38. package/dist/models/delete-by-code-response-class.js +15 -0
  39. package/dist/models/get-blacklist-item-response-class.d.ts +25 -0
  40. package/dist/models/get-blacklist-item-response-class.js +15 -0
  41. package/dist/models/get-blacklist-reason-response-class.d.ts +25 -0
  42. package/dist/models/get-blacklist-reason-response-class.js +15 -0
  43. package/dist/models/get-partner-hierarchy-type-response-class.d.ts +25 -0
  44. package/dist/models/get-partner-hierarchy-type-response-class.js +15 -0
  45. package/dist/models/index.d.ts +22 -0
  46. package/dist/models/index.js +22 -0
  47. package/dist/models/is-blacklisted-response-class.d.ts +54 -0
  48. package/dist/models/is-blacklisted-response-class.js +15 -0
  49. package/dist/models/list-blacklist-items-response-class.d.ts +43 -0
  50. package/dist/models/list-blacklist-items-response-class.js +15 -0
  51. package/dist/models/list-blacklist-reasons-response-class.d.ts +43 -0
  52. package/dist/models/list-blacklist-reasons-response-class.js +15 -0
  53. package/dist/models/list-partner-hierarchy-types-response-class.d.ts +43 -0
  54. package/dist/models/list-partner-hierarchy-types-response-class.js +15 -0
  55. package/dist/models/list-partner-relation-class.d.ts +18 -6
  56. package/dist/models/list-partner-relation-types-class.d.ts +18 -6
  57. package/dist/models/list-partner-types-response-class.d.ts +18 -6
  58. package/dist/models/list-partner-versions-response-class.d.ts +18 -6
  59. package/dist/models/list-partners-response-class.d.ts +18 -6
  60. package/dist/models/list-related-partners-response-class.d.ts +18 -6
  61. package/dist/models/list-tags-response-class.d.ts +18 -6
  62. package/dist/models/partner-hierarchy-type-class.d.ts +66 -0
  63. package/dist/models/partner-hierarchy-type-class.js +15 -0
  64. package/dist/models/update-blacklist-reason-request-dto.d.ts +30 -0
  65. package/dist/models/update-blacklist-reason-request-dto.js +15 -0
  66. package/dist/models/update-blacklist-reason-response-class.d.ts +25 -0
  67. package/dist/models/update-blacklist-reason-response-class.js +15 -0
  68. package/dist/models/update-blacklist-reason-status-request-dto.d.ts +24 -0
  69. package/dist/models/update-blacklist-reason-status-request-dto.js +15 -0
  70. package/dist/models/update-partner-hierarchy-type-request-dto.d.ts +30 -0
  71. package/dist/models/update-partner-hierarchy-type-request-dto.js +15 -0
  72. package/dist/models/update-partner-hierarchy-type-response-class.d.ts +25 -0
  73. package/dist/models/update-partner-hierarchy-type-response-class.js +15 -0
  74. package/models/blacklist-item-class.ts +84 -0
  75. package/models/blacklist-reason-class.ts +84 -0
  76. package/models/create-blacklist-item-request-dto.ts +42 -0
  77. package/models/create-blacklist-item-response-class.ts +31 -0
  78. package/models/create-blacklist-reason-request-dto.ts +42 -0
  79. package/models/create-blacklist-reason-response-class.ts +31 -0
  80. package/models/create-partner-hierarchy-type-request-dto.ts +36 -0
  81. package/models/create-partner-hierarchy-type-response-class.ts +31 -0
  82. package/models/delete-by-code-response-class.ts +30 -0
  83. package/models/get-blacklist-item-response-class.ts +31 -0
  84. package/models/get-blacklist-reason-response-class.ts +31 -0
  85. package/models/get-partner-hierarchy-type-response-class.ts +31 -0
  86. package/models/index.ts +22 -0
  87. package/models/is-blacklisted-response-class.ts +60 -0
  88. package/models/list-blacklist-items-response-class.ts +49 -0
  89. package/models/list-blacklist-reasons-response-class.ts +49 -0
  90. package/models/list-partner-hierarchy-types-response-class.ts +49 -0
  91. package/models/list-partner-relation-class.ts +18 -6
  92. package/models/list-partner-relation-types-class.ts +18 -6
  93. package/models/list-partner-types-response-class.ts +18 -6
  94. package/models/list-partner-versions-response-class.ts +18 -6
  95. package/models/list-partners-response-class.ts +18 -6
  96. package/models/list-related-partners-response-class.ts +18 -6
  97. package/models/list-tags-response-class.ts +18 -6
  98. package/models/partner-hierarchy-type-class.ts +72 -0
  99. package/models/update-blacklist-reason-request-dto.ts +36 -0
  100. package/models/update-blacklist-reason-response-class.ts +31 -0
  101. package/models/update-blacklist-reason-status-request-dto.ts +30 -0
  102. package/models/update-partner-hierarchy-type-request-dto.ts +36 -0
  103. package/models/update-partner-hierarchy-type-response-class.ts +31 -0
  104. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -9,7 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- export * from './api/default-api';
12
+ export * from './api/blacklist-api';
13
+ export * from './api/blacklist-reasons-api';
14
+ export * from './api/health-api';
15
+ export * from './api/partner-hierarchy-types-api';
13
16
  export * from './api/partner-invitations-api';
14
17
  export * from './api/partner-relations-api';
15
18
  export * from './api/partner-tags-api';
package/dist/api.js CHANGED
@@ -27,7 +27,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
27
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
28
28
  };
29
29
  Object.defineProperty(exports, "__esModule", { value: true });
30
- __exportStar(require("./api/default-api"), exports);
30
+ __exportStar(require("./api/blacklist-api"), exports);
31
+ __exportStar(require("./api/blacklist-reasons-api"), exports);
32
+ __exportStar(require("./api/health-api"), exports);
33
+ __exportStar(require("./api/partner-hierarchy-types-api"), exports);
31
34
  __exportStar(require("./api/partner-invitations-api"), exports);
32
35
  __exportStar(require("./api/partner-relations-api"), exports);
33
36
  __exportStar(require("./api/partner-tags-api"), exports);
package/dist/base.d.ts CHANGED
@@ -39,7 +39,8 @@ export declare enum Environment {
39
39
  Test = "https://apiv2-test.emil.de",
40
40
  Staging = "https://apiv2-staging.emil.de",
41
41
  Development = "https://apiv2-dev.emil.de",
42
- ProductionZurich = "https://eu-central-2.apiv2.emil.de"
42
+ ProductionZurich = "https://eu-central-2.apiv2.emil.de",
43
+ StagingZurich = "https://eu-central-2.apiv2-staging.emil.de"
43
44
  }
44
45
  export declare function resetRetry(): void;
45
46
  /**
package/dist/base.js CHANGED
@@ -102,6 +102,7 @@ var Environment;
102
102
  Environment["Staging"] = "https://apiv2-staging.emil.de";
103
103
  Environment["Development"] = "https://apiv2-dev.emil.de";
104
104
  Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
105
+ Environment["StagingZurich"] = "https://eu-central-2.apiv2-staging.emil.de";
105
106
  })(Environment = exports.Environment || (exports.Environment = {}));
106
107
  var _retry_count = 0;
107
108
  var _retry = null;
@@ -0,0 +1,78 @@
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 BlacklistItemClass
16
+ */
17
+ export interface BlacklistItemClass {
18
+ /**
19
+ * The id of the blacklist item
20
+ * @type {number}
21
+ * @memberof BlacklistItemClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof BlacklistItemClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * The code of the blacklisted partner
32
+ * @type {string}
33
+ * @memberof BlacklistItemClass
34
+ */
35
+ 'partnerCode': string;
36
+ /**
37
+ * The reason code for blacklisting
38
+ * @type {string}
39
+ * @memberof BlacklistItemClass
40
+ */
41
+ 'reasonCode': string;
42
+ /**
43
+ * Snapshot of the reason label at the time of blacklisting
44
+ * @type {string}
45
+ * @memberof BlacklistItemClass
46
+ */
47
+ 'reasonValue': string;
48
+ /**
49
+ * The date from which the blacklist becomes active
50
+ * @type {string}
51
+ * @memberof BlacklistItemClass
52
+ */
53
+ 'blockedFrom'?: string;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof BlacklistItemClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * Time at which the object was updated.
62
+ * @type {string}
63
+ * @memberof BlacklistItemClass
64
+ */
65
+ 'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof BlacklistItemClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof BlacklistItemClass
76
+ */
77
+ 'updatedBy': string;
78
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,78 @@
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 BlacklistReasonClass
16
+ */
17
+ export interface BlacklistReasonClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof BlacklistReasonClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique code identifying the blacklist reason.
26
+ * @type {string}
27
+ * @memberof BlacklistReasonClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Unique key used to reference the blacklist reason.
32
+ * @type {string}
33
+ * @memberof BlacklistReasonClass
34
+ */
35
+ 'key': string;
36
+ /**
37
+ * Human-readable label for the blacklist reason.
38
+ * @type {string}
39
+ * @memberof BlacklistReasonClass
40
+ */
41
+ 'label': string;
42
+ /**
43
+ * Optional detailed description of the blacklist reason.
44
+ * @type {string}
45
+ * @memberof BlacklistReasonClass
46
+ */
47
+ 'description'?: string;
48
+ /**
49
+ * Whether the blacklist reason is currently active.
50
+ * @type {boolean}
51
+ * @memberof BlacklistReasonClass
52
+ */
53
+ 'isActive': boolean;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof BlacklistReasonClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * Time at which the object was updated.
62
+ * @type {string}
63
+ * @memberof BlacklistReasonClass
64
+ */
65
+ 'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof BlacklistReasonClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof BlacklistReasonClass
76
+ */
77
+ 'updatedBy': string;
78
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
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 CreateBlacklistItemRequestDto
16
+ */
17
+ export interface CreateBlacklistItemRequestDto {
18
+ /**
19
+ * The code of the partner to blacklist
20
+ * @type {string}
21
+ * @memberof CreateBlacklistItemRequestDto
22
+ */
23
+ 'partnerCode': string;
24
+ /**
25
+ * The reason code for blacklisting
26
+ * @type {string}
27
+ * @memberof CreateBlacklistItemRequestDto
28
+ */
29
+ 'reasonCode': string;
30
+ /**
31
+ * Date from which the blacklist becomes active (must be today or a future date)
32
+ * @type {string}
33
+ * @memberof CreateBlacklistItemRequestDto
34
+ */
35
+ 'blockedFrom': string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { BlacklistItemClass } from './blacklist-item-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBlacklistItemResponseClass
17
+ */
18
+ export interface CreateBlacklistItemResponseClass {
19
+ /**
20
+ * The blacklist item response.
21
+ * @type {BlacklistItemClass}
22
+ * @memberof CreateBlacklistItemResponseClass
23
+ */
24
+ 'blacklistItem': BlacklistItemClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
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 CreateBlacklistReasonRequestDto
16
+ */
17
+ export interface CreateBlacklistReasonRequestDto {
18
+ /**
19
+ * Unique key for the blacklist reason
20
+ * @type {string}
21
+ * @memberof CreateBlacklistReasonRequestDto
22
+ */
23
+ 'key': string;
24
+ /**
25
+ * Display label for the blacklist reason
26
+ * @type {string}
27
+ * @memberof CreateBlacklistReasonRequestDto
28
+ */
29
+ 'label': string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CreateBlacklistReasonRequestDto
34
+ */
35
+ 'description'?: string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { BlacklistReasonClass } from './blacklist-reason-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateBlacklistReasonResponseClass
17
+ */
18
+ export interface CreateBlacklistReasonResponseClass {
19
+ /**
20
+ * The blacklist reason response.
21
+ * @type {BlacklistReasonClass}
22
+ * @memberof CreateBlacklistReasonResponseClass
23
+ */
24
+ 'blacklistReason': BlacklistReasonClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,30 @@
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 CreatePartnerHierarchyTypeRequestDto
16
+ */
17
+ export interface CreatePartnerHierarchyTypeRequestDto {
18
+ /**
19
+ * Human-readable name for this hierarchy type.
20
+ * @type {string}
21
+ * @memberof CreatePartnerHierarchyTypeRequestDto
22
+ */
23
+ 'name': string;
24
+ /**
25
+ * Level structure defining role codes per depth. Depths must start from 0 and be sequential. Depth 0 must have exactly one role. Role codes must be unique within each level.
26
+ * @type {object}
27
+ * @memberof CreatePartnerHierarchyTypeRequestDto
28
+ */
29
+ 'schema': object;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreatePartnerHierarchyTypeResponseClass
17
+ */
18
+ export interface CreatePartnerHierarchyTypeResponseClass {
19
+ /**
20
+ * The partner hierarchy type response.
21
+ * @type {PartnerHierarchyTypeClass}
22
+ * @memberof CreatePartnerHierarchyTypeResponseClass
23
+ */
24
+ 'hierarchyType': PartnerHierarchyTypeClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
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 DeleteByCodeResponseClass
16
+ */
17
+ export interface DeleteByCodeResponseClass {
18
+ /**
19
+ * success
20
+ * @type {boolean}
21
+ * @memberof DeleteByCodeResponseClass
22
+ */
23
+ 'success': boolean;
24
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { BlacklistItemClass } from './blacklist-item-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetBlacklistItemResponseClass
17
+ */
18
+ export interface GetBlacklistItemResponseClass {
19
+ /**
20
+ * The blacklist item response.
21
+ * @type {BlacklistItemClass}
22
+ * @memberof GetBlacklistItemResponseClass
23
+ */
24
+ 'blacklistItem': BlacklistItemClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { BlacklistReasonClass } from './blacklist-reason-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetBlacklistReasonResponseClass
17
+ */
18
+ export interface GetBlacklistReasonResponseClass {
19
+ /**
20
+ * The blacklist reason response.
21
+ * @type {BlacklistReasonClass}
22
+ * @memberof GetBlacklistReasonResponseClass
23
+ */
24
+ 'blacklistReason': BlacklistReasonClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ import { PartnerHierarchyTypeClass } from './partner-hierarchy-type-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetPartnerHierarchyTypeResponseClass
17
+ */
18
+ export interface GetPartnerHierarchyTypeResponseClass {
19
+ /**
20
+ * The partner hierarchy type response.
21
+ * @type {PartnerHierarchyTypeClass}
22
+ * @memberof GetPartnerHierarchyTypeResponseClass
23
+ */
24
+ 'hierarchyType': PartnerHierarchyTypeClass;
25
+ }