@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
@@ -0,0 +1,60 @@
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 IsBlacklistedResponseClass
21
+ */
22
+ export interface IsBlacklistedResponseClass {
23
+ /**
24
+ * Whether the partner is currently blacklisted
25
+ * @type {boolean}
26
+ * @memberof IsBlacklistedResponseClass
27
+ */
28
+ 'isBlacklisted': boolean;
29
+ /**
30
+ * The code of the blacklist item
31
+ * @type {string}
32
+ * @memberof IsBlacklistedResponseClass
33
+ */
34
+ 'code'?: string;
35
+ /**
36
+ * The partner code that was checked
37
+ * @type {string}
38
+ * @memberof IsBlacklistedResponseClass
39
+ */
40
+ 'partnerCode': string;
41
+ /**
42
+ * The date from which the blacklist is active
43
+ * @type {string}
44
+ * @memberof IsBlacklistedResponseClass
45
+ */
46
+ 'blockedFrom'?: string;
47
+ /**
48
+ * The reason code if blacklisted
49
+ * @type {string}
50
+ * @memberof IsBlacklistedResponseClass
51
+ */
52
+ 'reasonCode'?: string;
53
+ /**
54
+ * The reason label snapshot if blacklisted
55
+ * @type {string}
56
+ * @memberof IsBlacklistedResponseClass
57
+ */
58
+ 'reasonValue'?: string;
59
+ }
60
+
@@ -0,0 +1,49 @@
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 ListBlacklistItemsResponseClass
22
+ */
23
+ export interface ListBlacklistItemsResponseClass {
24
+ /**
25
+ * The list of blacklist itemss.
26
+ * @type {Array<BlacklistItemClass>}
27
+ * @memberof ListBlacklistItemsResponseClass
28
+ */
29
+ 'items': Array<BlacklistItemClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListBlacklistItemsResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListBlacklistItemsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListBlacklistItemsResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-sdk",
3
- "version": "1.22.1-beta.4",
3
+ "version": "1.22.1-beta.5",
4
4
  "description": "OpenAPI client for @emilgroup/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [