@emilgroup/partner-sdk 1.22.1-beta.6 → 1.22.1-beta.7

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 (57) hide show
  1. package/.openapi-generator/FILES +16 -1
  2. package/README.md +2 -2
  3. package/api/blacklist-api.ts +662 -0
  4. package/api/blacklist-reasons-api.ts +780 -0
  5. package/api/{default-api.ts → health-api.ts} +13 -13
  6. package/api.ts +6 -2
  7. package/dist/api/blacklist-api.d.ts +375 -0
  8. package/dist/api/blacklist-api.js +629 -0
  9. package/dist/api/blacklist-reasons-api.d.ts +440 -0
  10. package/dist/api/blacklist-reasons-api.js +728 -0
  11. package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
  12. package/dist/api/{default-api.js → health-api.js} +22 -22
  13. package/dist/api.d.ts +3 -1
  14. package/dist/api.js +3 -1
  15. package/dist/models/blacklist-item-class.d.ts +78 -0
  16. package/dist/models/blacklist-item-class.js +15 -0
  17. package/dist/models/blacklist-reason-class.d.ts +78 -0
  18. package/dist/models/blacklist-reason-class.js +15 -0
  19. package/dist/models/create-blacklist-item-request-dto.d.ts +36 -0
  20. package/dist/models/create-blacklist-item-request-dto.js +15 -0
  21. package/dist/models/create-blacklist-item-response-class.d.ts +25 -0
  22. package/dist/models/create-blacklist-item-response-class.js +15 -0
  23. package/dist/models/create-blacklist-reason-request-dto.d.ts +36 -0
  24. package/dist/models/create-blacklist-reason-request-dto.js +15 -0
  25. package/dist/models/create-blacklist-reason-response-class.d.ts +25 -0
  26. package/dist/models/create-blacklist-reason-response-class.js +15 -0
  27. package/dist/models/get-blacklist-item-response-class.d.ts +25 -0
  28. package/dist/models/get-blacklist-item-response-class.js +15 -0
  29. package/dist/models/get-blacklist-reason-response-class.d.ts +25 -0
  30. package/dist/models/get-blacklist-reason-response-class.js +15 -0
  31. package/dist/models/index.d.ts +13 -0
  32. package/dist/models/index.js +13 -0
  33. package/dist/models/is-blacklisted-response-class.d.ts +54 -0
  34. package/dist/models/is-blacklisted-response-class.js +15 -0
  35. package/dist/models/list-blacklist-items-response-class.d.ts +43 -0
  36. package/dist/models/list-blacklist-items-response-class.js +15 -0
  37. package/dist/models/list-blacklist-reasons-response-class.d.ts +43 -0
  38. package/dist/models/list-blacklist-reasons-response-class.js +15 -0
  39. package/dist/models/update-blacklist-reason-request-dto.d.ts +30 -0
  40. package/dist/models/update-blacklist-reason-request-dto.js +15 -0
  41. package/dist/models/update-blacklist-reason-response-class.d.ts +25 -0
  42. package/dist/models/update-blacklist-reason-response-class.js +15 -0
  43. package/models/blacklist-item-class.ts +84 -0
  44. package/models/blacklist-reason-class.ts +84 -0
  45. package/models/create-blacklist-item-request-dto.ts +42 -0
  46. package/models/create-blacklist-item-response-class.ts +31 -0
  47. package/models/create-blacklist-reason-request-dto.ts +42 -0
  48. package/models/create-blacklist-reason-response-class.ts +31 -0
  49. package/models/get-blacklist-item-response-class.ts +31 -0
  50. package/models/get-blacklist-reason-response-class.ts +31 -0
  51. package/models/index.ts +13 -0
  52. package/models/is-blacklisted-response-class.ts +60 -0
  53. package/models/list-blacklist-items-response-class.ts +49 -0
  54. package/models/list-blacklist-reasons-response-class.ts +49 -0
  55. package/models/update-blacklist-reason-request-dto.ts +36 -0
  56. package/models/update-blacklist-reason-response-class.ts +31 -0
  57. package/package.json +1 -1
@@ -1,3 +1,9 @@
1
+ export * from './blacklist-item-class';
2
+ export * from './blacklist-reason-class';
3
+ export * from './create-blacklist-item-request-dto';
4
+ export * from './create-blacklist-item-response-class';
5
+ export * from './create-blacklist-reason-request-dto';
6
+ export * from './create-blacklist-reason-response-class';
1
7
  export * from './create-or-update-partner-from-account-request-dto';
2
8
  export * from './create-or-update-partner-from-account-response-class';
3
9
  export * from './create-partner-relation-request-dto-rest';
@@ -9,6 +15,8 @@ export * from './create-partner-type-response-class';
9
15
  export * from './create-tag-request-dto';
10
16
  export * from './create-tag-response-class';
11
17
  export * from './delete-response-class';
18
+ export * from './get-blacklist-item-response-class';
19
+ export * from './get-blacklist-reason-response-class';
12
20
  export * from './get-partner-relation-class';
13
21
  export * from './get-partner-relation-type-class';
14
22
  export * from './get-partner-response-class';
@@ -21,6 +29,9 @@ export * from './inline-response503';
21
29
  export * from './invite-class';
22
30
  export * from './invite-partner-to-eisrequest-dto';
23
31
  export * from './invite-partner-to-eis-response-class';
32
+ export * from './is-blacklisted-response-class';
33
+ export * from './list-blacklist-items-response-class';
34
+ export * from './list-blacklist-reasons-response-class';
24
35
  export * from './list-partner-relation-class';
25
36
  export * from './list-partner-relation-types-class';
26
37
  export * from './list-partner-types-response-class';
@@ -42,6 +53,8 @@ export * from './related-partner-data-class';
42
53
  export * from './role-class';
43
54
  export * from './tag-class';
44
55
  export * from './tag-partner-request-dto-rest';
56
+ export * from './update-blacklist-reason-request-dto';
57
+ export * from './update-blacklist-reason-response-class';
45
58
  export * from './update-partner-relation-request-dto-rest';
46
59
  export * from './update-partner-request-dto';
47
60
  export * from './update-partner-response-class';
@@ -14,6 +14,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./blacklist-item-class"), exports);
18
+ __exportStar(require("./blacklist-reason-class"), exports);
19
+ __exportStar(require("./create-blacklist-item-request-dto"), exports);
20
+ __exportStar(require("./create-blacklist-item-response-class"), exports);
21
+ __exportStar(require("./create-blacklist-reason-request-dto"), exports);
22
+ __exportStar(require("./create-blacklist-reason-response-class"), exports);
17
23
  __exportStar(require("./create-or-update-partner-from-account-request-dto"), exports);
18
24
  __exportStar(require("./create-or-update-partner-from-account-response-class"), exports);
19
25
  __exportStar(require("./create-partner-relation-request-dto-rest"), exports);
@@ -25,6 +31,8 @@ __exportStar(require("./create-partner-type-response-class"), exports);
25
31
  __exportStar(require("./create-tag-request-dto"), exports);
26
32
  __exportStar(require("./create-tag-response-class"), exports);
27
33
  __exportStar(require("./delete-response-class"), exports);
34
+ __exportStar(require("./get-blacklist-item-response-class"), exports);
35
+ __exportStar(require("./get-blacklist-reason-response-class"), exports);
28
36
  __exportStar(require("./get-partner-relation-class"), exports);
29
37
  __exportStar(require("./get-partner-relation-type-class"), exports);
30
38
  __exportStar(require("./get-partner-response-class"), exports);
@@ -37,6 +45,9 @@ __exportStar(require("./inline-response503"), exports);
37
45
  __exportStar(require("./invite-class"), exports);
38
46
  __exportStar(require("./invite-partner-to-eisrequest-dto"), exports);
39
47
  __exportStar(require("./invite-partner-to-eis-response-class"), exports);
48
+ __exportStar(require("./is-blacklisted-response-class"), exports);
49
+ __exportStar(require("./list-blacklist-items-response-class"), exports);
50
+ __exportStar(require("./list-blacklist-reasons-response-class"), exports);
40
51
  __exportStar(require("./list-partner-relation-class"), exports);
41
52
  __exportStar(require("./list-partner-relation-types-class"), exports);
42
53
  __exportStar(require("./list-partner-types-response-class"), exports);
@@ -58,6 +69,8 @@ __exportStar(require("./related-partner-data-class"), exports);
58
69
  __exportStar(require("./role-class"), exports);
59
70
  __exportStar(require("./tag-class"), exports);
60
71
  __exportStar(require("./tag-partner-request-dto-rest"), exports);
72
+ __exportStar(require("./update-blacklist-reason-request-dto"), exports);
73
+ __exportStar(require("./update-blacklist-reason-response-class"), exports);
61
74
  __exportStar(require("./update-partner-relation-request-dto-rest"), exports);
62
75
  __exportStar(require("./update-partner-request-dto"), exports);
63
76
  __exportStar(require("./update-partner-response-class"), exports);
@@ -0,0 +1,54 @@
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 IsBlacklistedResponseClass
16
+ */
17
+ export interface IsBlacklistedResponseClass {
18
+ /**
19
+ * Whether the partner is currently blacklisted
20
+ * @type {boolean}
21
+ * @memberof IsBlacklistedResponseClass
22
+ */
23
+ 'isBlacklisted': boolean;
24
+ /**
25
+ * The code of the blacklist item
26
+ * @type {string}
27
+ * @memberof IsBlacklistedResponseClass
28
+ */
29
+ 'code'?: string;
30
+ /**
31
+ * The partner code that was checked
32
+ * @type {string}
33
+ * @memberof IsBlacklistedResponseClass
34
+ */
35
+ 'partnerCode': string;
36
+ /**
37
+ * The date from which the blacklist is active
38
+ * @type {string}
39
+ * @memberof IsBlacklistedResponseClass
40
+ */
41
+ 'blockedFrom'?: string;
42
+ /**
43
+ * The reason code if blacklisted
44
+ * @type {string}
45
+ * @memberof IsBlacklistedResponseClass
46
+ */
47
+ 'reasonCode'?: string;
48
+ /**
49
+ * The reason label snapshot if blacklisted
50
+ * @type {string}
51
+ * @memberof IsBlacklistedResponseClass
52
+ */
53
+ 'reasonValue'?: string;
54
+ }
@@ -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,43 @@
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 ListBlacklistItemsResponseClass
17
+ */
18
+ export interface ListBlacklistItemsResponseClass {
19
+ /**
20
+ * The list of blacklist itemss.
21
+ * @type {Array<BlacklistItemClass>}
22
+ * @memberof ListBlacklistItemsResponseClass
23
+ */
24
+ 'items': Array<BlacklistItemClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBlacklistItemsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListBlacklistItemsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListBlacklistItemsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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,43 @@
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 ListBlacklistReasonsResponseClass
17
+ */
18
+ export interface ListBlacklistReasonsResponseClass {
19
+ /**
20
+ * The list of blacklist reasonss.
21
+ * @type {Array<BlacklistReasonClass>}
22
+ * @memberof ListBlacklistReasonsResponseClass
23
+ */
24
+ 'items': Array<BlacklistReasonClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListBlacklistReasonsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListBlacklistReasonsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * Total amount of items.
39
+ * @type {number}
40
+ * @memberof ListBlacklistReasonsResponseClass
41
+ */
42
+ 'totalItems': number;
43
+ }
@@ -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 UpdateBlacklistReasonRequestDto
16
+ */
17
+ export interface UpdateBlacklistReasonRequestDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateBlacklistReasonRequestDto
22
+ */
23
+ 'label'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UpdateBlacklistReasonRequestDto
28
+ */
29
+ 'description'?: string;
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 { BlacklistReasonClass } from './blacklist-reason-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateBlacklistReasonResponseClass
17
+ */
18
+ export interface UpdateBlacklistReasonResponseClass {
19
+ /**
20
+ * The blacklist reason response.
21
+ * @type {BlacklistReasonClass}
22
+ * @memberof UpdateBlacklistReasonResponseClass
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,84 @@
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 BlacklistItemClass
21
+ */
22
+ export interface BlacklistItemClass {
23
+ /**
24
+ * The id of the blacklist item
25
+ * @type {number}
26
+ * @memberof BlacklistItemClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof BlacklistItemClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * The code of the blacklisted partner
37
+ * @type {string}
38
+ * @memberof BlacklistItemClass
39
+ */
40
+ 'partnerCode': string;
41
+ /**
42
+ * The reason code for blacklisting
43
+ * @type {string}
44
+ * @memberof BlacklistItemClass
45
+ */
46
+ 'reasonCode': string;
47
+ /**
48
+ * Snapshot of the reason label at the time of blacklisting
49
+ * @type {string}
50
+ * @memberof BlacklistItemClass
51
+ */
52
+ 'reasonValue': string;
53
+ /**
54
+ * The date from which the blacklist becomes active
55
+ * @type {string}
56
+ * @memberof BlacklistItemClass
57
+ */
58
+ 'blockedFrom'?: string;
59
+ /**
60
+ * Time at which the object was created.
61
+ * @type {string}
62
+ * @memberof BlacklistItemClass
63
+ */
64
+ 'createdAt': string;
65
+ /**
66
+ * Time at which the object was updated.
67
+ * @type {string}
68
+ * @memberof BlacklistItemClass
69
+ */
70
+ 'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof BlacklistItemClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof BlacklistItemClass
81
+ */
82
+ 'updatedBy': string;
83
+ }
84
+
@@ -0,0 +1,84 @@
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 BlacklistReasonClass
21
+ */
22
+ export interface BlacklistReasonClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof BlacklistReasonClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique code identifying the blacklist reason.
31
+ * @type {string}
32
+ * @memberof BlacklistReasonClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * Unique key used to reference the blacklist reason.
37
+ * @type {string}
38
+ * @memberof BlacklistReasonClass
39
+ */
40
+ 'key': string;
41
+ /**
42
+ * Human-readable label for the blacklist reason.
43
+ * @type {string}
44
+ * @memberof BlacklistReasonClass
45
+ */
46
+ 'label': string;
47
+ /**
48
+ * Optional detailed description of the blacklist reason.
49
+ * @type {string}
50
+ * @memberof BlacklistReasonClass
51
+ */
52
+ 'description'?: string;
53
+ /**
54
+ * Whether the blacklist reason is currently active.
55
+ * @type {boolean}
56
+ * @memberof BlacklistReasonClass
57
+ */
58
+ 'isActive': boolean;
59
+ /**
60
+ * Time at which the object was created.
61
+ * @type {string}
62
+ * @memberof BlacklistReasonClass
63
+ */
64
+ 'createdAt': string;
65
+ /**
66
+ * Time at which the object was updated.
67
+ * @type {string}
68
+ * @memberof BlacklistReasonClass
69
+ */
70
+ 'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof BlacklistReasonClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof BlacklistReasonClass
81
+ */
82
+ 'updatedBy': string;
83
+ }
84
+
@@ -0,0 +1,42 @@
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 CreateBlacklistItemRequestDto
21
+ */
22
+ export interface CreateBlacklistItemRequestDto {
23
+ /**
24
+ * The code of the partner to blacklist
25
+ * @type {string}
26
+ * @memberof CreateBlacklistItemRequestDto
27
+ */
28
+ 'partnerCode': string;
29
+ /**
30
+ * The reason code for blacklisting
31
+ * @type {string}
32
+ * @memberof CreateBlacklistItemRequestDto
33
+ */
34
+ 'reasonCode': string;
35
+ /**
36
+ * Date from which the blacklist becomes active (must be today or a future date)
37
+ * @type {string}
38
+ * @memberof CreateBlacklistItemRequestDto
39
+ */
40
+ 'blockedFrom': string;
41
+ }
42
+
@@ -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 { BlacklistItemClass } from './blacklist-item-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateBlacklistItemResponseClass
22
+ */
23
+ export interface CreateBlacklistItemResponseClass {
24
+ /**
25
+ * The blacklist item response.
26
+ * @type {BlacklistItemClass}
27
+ * @memberof CreateBlacklistItemResponseClass
28
+ */
29
+ 'blacklistItem': BlacklistItemClass;
30
+ }
31
+
@@ -0,0 +1,42 @@
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 CreateBlacklistReasonRequestDto
21
+ */
22
+ export interface CreateBlacklistReasonRequestDto {
23
+ /**
24
+ * Unique key for the blacklist reason
25
+ * @type {string}
26
+ * @memberof CreateBlacklistReasonRequestDto
27
+ */
28
+ 'key': string;
29
+ /**
30
+ * Display label for the blacklist reason
31
+ * @type {string}
32
+ * @memberof CreateBlacklistReasonRequestDto
33
+ */
34
+ 'label': string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CreateBlacklistReasonRequestDto
39
+ */
40
+ 'description'?: string;
41
+ }
42
+
@@ -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 { BlacklistReasonClass } from './blacklist-reason-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateBlacklistReasonResponseClass
22
+ */
23
+ export interface CreateBlacklistReasonResponseClass {
24
+ /**
25
+ * The blacklist reason response.
26
+ * @type {BlacklistReasonClass}
27
+ * @memberof CreateBlacklistReasonResponseClass
28
+ */
29
+ 'blacklistReason': BlacklistReasonClass;
30
+ }
31
+