@emilgroup/partner-sdk 1.22.1-beta.4 → 1.22.1-beta.5

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 (30) hide show
  1. package/.openapi-generator/FILES +7 -0
  2. package/README.md +2 -2
  3. package/api/blacklist-api.ts +662 -0
  4. package/api.ts +2 -0
  5. package/dist/api/blacklist-api.d.ts +375 -0
  6. package/dist/api/blacklist-api.js +629 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/blacklist-item-class.d.ts +78 -0
  10. package/dist/models/blacklist-item-class.js +15 -0
  11. package/dist/models/create-blacklist-item-request-dto.d.ts +36 -0
  12. package/dist/models/create-blacklist-item-request-dto.js +15 -0
  13. package/dist/models/create-blacklist-item-response-class.d.ts +25 -0
  14. package/dist/models/create-blacklist-item-response-class.js +15 -0
  15. package/dist/models/get-blacklist-item-response-class.d.ts +25 -0
  16. package/dist/models/get-blacklist-item-response-class.js +15 -0
  17. package/dist/models/index.d.ts +6 -0
  18. package/dist/models/index.js +6 -0
  19. package/dist/models/is-blacklisted-response-class.d.ts +54 -0
  20. package/dist/models/is-blacklisted-response-class.js +15 -0
  21. package/dist/models/list-blacklist-items-response-class.d.ts +43 -0
  22. package/dist/models/list-blacklist-items-response-class.js +15 -0
  23. package/models/blacklist-item-class.ts +84 -0
  24. package/models/create-blacklist-item-request-dto.ts +42 -0
  25. package/models/create-blacklist-item-response-class.ts +31 -0
  26. package/models/get-blacklist-item-response-class.ts +31 -0
  27. package/models/index.ts +6 -0
  28. package/models/is-blacklisted-response-class.ts +60 -0
  29. package/models/list-blacklist-items-response-class.ts +49 -0
  30. package/package.json +1 -1
package/dist/api.js CHANGED
@@ -27,6 +27,7 @@ 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/blacklist-api"), exports);
30
31
  __exportStar(require("./api/blacklist-reasons-api"), exports);
31
32
  __exportStar(require("./api/health-api"), exports);
32
33
  __exportStar(require("./api/partner-invitations-api"), exports);
@@ -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,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,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 });
@@ -1,4 +1,7 @@
1
+ export * from './blacklist-item-class';
1
2
  export * from './blacklist-reason-class';
3
+ export * from './create-blacklist-item-request-dto';
4
+ export * from './create-blacklist-item-response-class';
2
5
  export * from './create-blacklist-reason-request-dto';
3
6
  export * from './create-blacklist-reason-response-class';
4
7
  export * from './create-or-update-partner-from-account-request-dto';
@@ -12,6 +15,7 @@ export * from './create-partner-type-response-class';
12
15
  export * from './create-tag-request-dto';
13
16
  export * from './create-tag-response-class';
14
17
  export * from './delete-response-class';
18
+ export * from './get-blacklist-item-response-class';
15
19
  export * from './get-blacklist-reason-response-class';
16
20
  export * from './get-partner-relation-class';
17
21
  export * from './get-partner-relation-type-class';
@@ -25,6 +29,8 @@ export * from './inline-response503';
25
29
  export * from './invite-class';
26
30
  export * from './invite-partner-to-eisrequest-dto';
27
31
  export * from './invite-partner-to-eis-response-class';
32
+ export * from './is-blacklisted-response-class';
33
+ export * from './list-blacklist-items-response-class';
28
34
  export * from './list-blacklist-reasons-response-class';
29
35
  export * from './list-partner-relation-class';
30
36
  export * from './list-partner-relation-types-class';
@@ -14,7 +14,10 @@ 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);
17
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);
18
21
  __exportStar(require("./create-blacklist-reason-request-dto"), exports);
19
22
  __exportStar(require("./create-blacklist-reason-response-class"), exports);
20
23
  __exportStar(require("./create-or-update-partner-from-account-request-dto"), exports);
@@ -28,6 +31,7 @@ __exportStar(require("./create-partner-type-response-class"), exports);
28
31
  __exportStar(require("./create-tag-request-dto"), exports);
29
32
  __exportStar(require("./create-tag-response-class"), exports);
30
33
  __exportStar(require("./delete-response-class"), exports);
34
+ __exportStar(require("./get-blacklist-item-response-class"), exports);
31
35
  __exportStar(require("./get-blacklist-reason-response-class"), exports);
32
36
  __exportStar(require("./get-partner-relation-class"), exports);
33
37
  __exportStar(require("./get-partner-relation-type-class"), exports);
@@ -41,6 +45,8 @@ __exportStar(require("./inline-response503"), exports);
41
45
  __exportStar(require("./invite-class"), exports);
42
46
  __exportStar(require("./invite-partner-to-eisrequest-dto"), exports);
43
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);
44
50
  __exportStar(require("./list-blacklist-reasons-response-class"), exports);
45
51
  __exportStar(require("./list-partner-relation-class"), exports);
46
52
  __exportStar(require("./list-partner-relation-types-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,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,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,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 GetBlacklistItemResponseClass
22
+ */
23
+ export interface GetBlacklistItemResponseClass {
24
+ /**
25
+ * The blacklist item response.
26
+ * @type {BlacklistItemClass}
27
+ * @memberof GetBlacklistItemResponseClass
28
+ */
29
+ 'blacklistItem': BlacklistItemClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -1,4 +1,7 @@
1
+ export * from './blacklist-item-class';
1
2
  export * from './blacklist-reason-class';
3
+ export * from './create-blacklist-item-request-dto';
4
+ export * from './create-blacklist-item-response-class';
2
5
  export * from './create-blacklist-reason-request-dto';
3
6
  export * from './create-blacklist-reason-response-class';
4
7
  export * from './create-or-update-partner-from-account-request-dto';
@@ -12,6 +15,7 @@ export * from './create-partner-type-response-class';
12
15
  export * from './create-tag-request-dto';
13
16
  export * from './create-tag-response-class';
14
17
  export * from './delete-response-class';
18
+ export * from './get-blacklist-item-response-class';
15
19
  export * from './get-blacklist-reason-response-class';
16
20
  export * from './get-partner-relation-class';
17
21
  export * from './get-partner-relation-type-class';
@@ -25,6 +29,8 @@ export * from './inline-response503';
25
29
  export * from './invite-class';
26
30
  export * from './invite-partner-to-eisrequest-dto';
27
31
  export * from './invite-partner-to-eis-response-class';
32
+ export * from './is-blacklisted-response-class';
33
+ export * from './list-blacklist-items-response-class';
28
34
  export * from './list-blacklist-reasons-response-class';
29
35
  export * from './list-partner-relation-class';
30
36
  export * from './list-partner-relation-types-class';