@emilgroup/partner-sdk 1.22.1-beta.1 → 1.22.1-beta.11

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 (56) hide show
  1. package/.openapi-generator/FILES +9 -1
  2. package/README.md +2 -2
  3. package/api/blacklist-api.ts +662 -0
  4. package/api/blacklist-reasons-api.ts +23 -6
  5. package/api/{default-api.ts → health-api.ts} +13 -13
  6. package/api.ts +4 -2
  7. package/base.ts +1 -0
  8. package/dist/api/blacklist-api.d.ts +375 -0
  9. package/dist/api/blacklist-api.js +629 -0
  10. package/dist/api/blacklist-reasons-api.d.ts +13 -3
  11. package/dist/api/blacklist-reasons-api.js +13 -6
  12. package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
  13. package/dist/api/{default-api.js → health-api.js} +22 -22
  14. package/dist/api.d.ts +2 -1
  15. package/dist/api.js +2 -1
  16. package/dist/base.d.ts +2 -1
  17. package/dist/base.js +1 -0
  18. package/dist/models/blacklist-item-class.d.ts +78 -0
  19. package/dist/models/blacklist-item-class.js +15 -0
  20. package/dist/models/create-blacklist-item-request-dto.d.ts +36 -0
  21. package/dist/models/create-blacklist-item-request-dto.js +15 -0
  22. package/dist/models/create-blacklist-item-response-class.d.ts +25 -0
  23. package/dist/models/create-blacklist-item-response-class.js +15 -0
  24. package/dist/models/get-blacklist-item-response-class.d.ts +25 -0
  25. package/dist/models/get-blacklist-item-response-class.js +15 -0
  26. package/dist/models/index.d.ts +7 -0
  27. package/dist/models/index.js +7 -0
  28. package/dist/models/is-blacklisted-response-class.d.ts +54 -0
  29. package/dist/models/is-blacklisted-response-class.js +15 -0
  30. package/dist/models/list-blacklist-items-response-class.d.ts +43 -0
  31. package/dist/models/list-blacklist-items-response-class.js +15 -0
  32. package/dist/models/list-partner-relation-class.d.ts +18 -6
  33. package/dist/models/list-partner-relation-types-class.d.ts +18 -6
  34. package/dist/models/list-partner-types-response-class.d.ts +18 -6
  35. package/dist/models/list-partner-versions-response-class.d.ts +18 -6
  36. package/dist/models/list-partners-response-class.d.ts +18 -6
  37. package/dist/models/list-related-partners-response-class.d.ts +18 -6
  38. package/dist/models/list-tags-response-class.d.ts +18 -6
  39. package/dist/models/update-blacklist-reason-status-request-dto.d.ts +24 -0
  40. package/dist/models/update-blacklist-reason-status-request-dto.js +15 -0
  41. package/models/blacklist-item-class.ts +84 -0
  42. package/models/create-blacklist-item-request-dto.ts +42 -0
  43. package/models/create-blacklist-item-response-class.ts +31 -0
  44. package/models/get-blacklist-item-response-class.ts +31 -0
  45. package/models/index.ts +7 -0
  46. package/models/is-blacklisted-response-class.ts +60 -0
  47. package/models/list-blacklist-items-response-class.ts +49 -0
  48. package/models/list-partner-relation-class.ts +18 -6
  49. package/models/list-partner-relation-types-class.ts +18 -6
  50. package/models/list-partner-types-response-class.ts +18 -6
  51. package/models/list-partner-versions-response-class.ts +18 -6
  52. package/models/list-partners-response-class.ts +18 -6
  53. package/models/list-related-partners-response-class.ts +18 -6
  54. package/models/list-tags-response-class.ts +18 -6
  55. package/models/update-blacklist-reason-status-request-dto.ts +30 -0
  56. package/package.json +1 -1
@@ -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 });
@@ -16,16 +16,28 @@ import { PartnerRelationClass } from './partner-relation-class';
16
16
  * @interface ListPartnerRelationClass
17
17
  */
18
18
  export interface ListPartnerRelationClass {
19
- /**
20
- * The list of partner relationss.
21
- * @type {Array<PartnerRelationClass>}
22
- * @memberof ListPartnerRelationClass
23
- */
24
- 'items': Array<PartnerRelationClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPartnerRelationClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPartnerRelationClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerRelationClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partner relationss.
39
+ * @type {Array<PartnerRelationClass>}
40
+ * @memberof ListPartnerRelationClass
41
+ */
42
+ 'items': Array<PartnerRelationClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { PartnerRelationTypeClass } from './partner-relation-type-class';
16
16
  * @interface ListPartnerRelationTypesClass
17
17
  */
18
18
  export interface ListPartnerRelationTypesClass {
19
- /**
20
- * The list of partner relation typess.
21
- * @type {Array<PartnerRelationTypeClass>}
22
- * @memberof ListPartnerRelationTypesClass
23
- */
24
- 'items': Array<PartnerRelationTypeClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPartnerRelationTypesClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPartnerRelationTypesClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerRelationTypesClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partner relation typess.
39
+ * @type {Array<PartnerRelationTypeClass>}
40
+ * @memberof ListPartnerRelationTypesClass
41
+ */
42
+ 'items': Array<PartnerRelationTypeClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { PartnerTypeClass } from './partner-type-class';
16
16
  * @interface ListPartnerTypesResponseClass
17
17
  */
18
18
  export interface ListPartnerTypesResponseClass {
19
- /**
20
- * The list of partner typess.
21
- * @type {Array<PartnerTypeClass>}
22
- * @memberof ListPartnerTypesResponseClass
23
- */
24
- 'items': Array<PartnerTypeClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPartnerTypesResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPartnerTypesResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerTypesResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partner typess.
39
+ * @type {Array<PartnerTypeClass>}
40
+ * @memberof ListPartnerTypesResponseClass
41
+ */
42
+ 'items': Array<PartnerTypeClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { PartnerClass } from './partner-class';
16
16
  * @interface ListPartnerVersionsResponseClass
17
17
  */
18
18
  export interface ListPartnerVersionsResponseClass {
19
- /**
20
- * The list of partnerss.
21
- * @type {Array<PartnerClass>}
22
- * @memberof ListPartnerVersionsResponseClass
23
- */
24
- 'items': Array<PartnerClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPartnerVersionsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPartnerVersionsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnerVersionsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partnerss.
39
+ * @type {Array<PartnerClass>}
40
+ * @memberof ListPartnerVersionsResponseClass
41
+ */
42
+ 'items': Array<PartnerClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { PartnerClass } from './partner-class';
16
16
  * @interface ListPartnersResponseClass
17
17
  */
18
18
  export interface ListPartnersResponseClass {
19
- /**
20
- * The list of partnerss.
21
- * @type {Array<PartnerClass>}
22
- * @memberof ListPartnersResponseClass
23
- */
24
- 'items': Array<PartnerClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListPartnersResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListPartnersResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListPartnersResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partnerss.
39
+ * @type {Array<PartnerClass>}
40
+ * @memberof ListPartnersResponseClass
41
+ */
42
+ 'items': Array<PartnerClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { GroupedRelatedPartnersClass } from './grouped-related-partners-class';
16
16
  * @interface ListRelatedPartnersResponseClass
17
17
  */
18
18
  export interface ListRelatedPartnersResponseClass {
19
- /**
20
- * The list of grouped relations for partner
21
- * @type {Array<GroupedRelatedPartnersClass>}
22
- * @memberof ListRelatedPartnersResponseClass
23
- */
24
- 'items': Array<GroupedRelatedPartnersClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListRelatedPartnersResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListRelatedPartnersResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListRelatedPartnersResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of grouped relations for partner
39
+ * @type {Array<GroupedRelatedPartnersClass>}
40
+ * @memberof ListRelatedPartnersResponseClass
41
+ */
42
+ 'items': Array<GroupedRelatedPartnersClass>;
31
43
  }
@@ -16,16 +16,28 @@ import { TagClass } from './tag-class';
16
16
  * @interface ListTagsResponseClass
17
17
  */
18
18
  export interface ListTagsResponseClass {
19
- /**
20
- * The list of partner tagss.
21
- * @type {Array<TagClass>}
22
- * @memberof ListTagsResponseClass
23
- */
24
- 'items': Array<TagClass>;
25
19
  /**
26
20
  * Next page token.
27
21
  * @type {string}
28
22
  * @memberof ListTagsResponseClass
29
23
  */
30
24
  'nextPageToken': string;
25
+ /**
26
+ * Total amount of items.
27
+ * @type {number}
28
+ * @memberof ListTagsResponseClass
29
+ */
30
+ 'totalItems': number;
31
+ /**
32
+ * Items per page.
33
+ * @type {number}
34
+ * @memberof ListTagsResponseClass
35
+ */
36
+ 'itemsPerPage': number;
37
+ /**
38
+ * The list of partner tagss.
39
+ * @type {Array<TagClass>}
40
+ * @memberof ListTagsResponseClass
41
+ */
42
+ 'items': Array<TagClass>;
31
43
  }
@@ -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 UpdateBlacklistReasonStatusRequestDto
16
+ */
17
+ export interface UpdateBlacklistReasonStatusRequestDto {
18
+ /**
19
+ * New activation state for the blacklist reason.
20
+ * @type {boolean}
21
+ * @memberof UpdateBlacklistReasonStatusRequestDto
22
+ */
23
+ 'isActive'?: 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,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';
@@ -49,6 +55,7 @@ export * from './tag-class';
49
55
  export * from './tag-partner-request-dto-rest';
50
56
  export * from './update-blacklist-reason-request-dto';
51
57
  export * from './update-blacklist-reason-response-class';
58
+ export * from './update-blacklist-reason-status-request-dto';
52
59
  export * from './update-partner-relation-request-dto-rest';
53
60
  export * from './update-partner-request-dto';
54
61
  export * from './update-partner-response-class';