@emilgroup/partner-sdk 1.22.0 → 1.22.1-beta.0

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 (33) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/README.md +2 -2
  3. package/api/blacklist-reasons-api.ts +780 -0
  4. package/api.ts +2 -0
  5. package/dist/api/blacklist-reasons-api.d.ts +440 -0
  6. package/dist/api/blacklist-reasons-api.js +728 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/blacklist-reason-class.d.ts +78 -0
  10. package/dist/models/blacklist-reason-class.js +15 -0
  11. package/dist/models/create-blacklist-reason-request-dto.d.ts +36 -0
  12. package/dist/models/create-blacklist-reason-request-dto.js +15 -0
  13. package/dist/models/create-blacklist-reason-response-class.d.ts +25 -0
  14. package/dist/models/create-blacklist-reason-response-class.js +15 -0
  15. package/dist/models/get-blacklist-reason-response-class.d.ts +25 -0
  16. package/dist/models/get-blacklist-reason-response-class.js +15 -0
  17. package/dist/models/index.d.ts +7 -0
  18. package/dist/models/index.js +7 -0
  19. package/dist/models/list-blacklist-reasons-response-class.d.ts +43 -0
  20. package/dist/models/list-blacklist-reasons-response-class.js +15 -0
  21. package/dist/models/update-blacklist-reason-request-dto.d.ts +30 -0
  22. package/dist/models/update-blacklist-reason-request-dto.js +15 -0
  23. package/dist/models/update-blacklist-reason-response-class.d.ts +25 -0
  24. package/dist/models/update-blacklist-reason-response-class.js +15 -0
  25. package/models/blacklist-reason-class.ts +84 -0
  26. package/models/create-blacklist-reason-request-dto.ts +42 -0
  27. package/models/create-blacklist-reason-response-class.ts +31 -0
  28. package/models/get-blacklist-reason-response-class.ts +31 -0
  29. package/models/index.ts +7 -0
  30. package/models/list-blacklist-reasons-response-class.ts +49 -0
  31. package/models/update-blacklist-reason-request-dto.ts +36 -0
  32. package/models/update-blacklist-reason-response-class.ts +31 -0
  33. package/package.json +1 -1
package/models/index.ts CHANGED
@@ -1,3 +1,6 @@
1
+ export * from './blacklist-reason-class';
2
+ export * from './create-blacklist-reason-request-dto';
3
+ export * from './create-blacklist-reason-response-class';
1
4
  export * from './create-or-update-partner-from-account-request-dto';
2
5
  export * from './create-or-update-partner-from-account-response-class';
3
6
  export * from './create-partner-relation-request-dto-rest';
@@ -9,6 +12,7 @@ export * from './create-partner-type-response-class';
9
12
  export * from './create-tag-request-dto';
10
13
  export * from './create-tag-response-class';
11
14
  export * from './delete-response-class';
15
+ export * from './get-blacklist-reason-response-class';
12
16
  export * from './get-partner-relation-class';
13
17
  export * from './get-partner-relation-type-class';
14
18
  export * from './get-partner-response-class';
@@ -21,6 +25,7 @@ export * from './inline-response503';
21
25
  export * from './invite-class';
22
26
  export * from './invite-partner-to-eisrequest-dto';
23
27
  export * from './invite-partner-to-eis-response-class';
28
+ export * from './list-blacklist-reasons-response-class';
24
29
  export * from './list-partner-relation-class';
25
30
  export * from './list-partner-relation-types-class';
26
31
  export * from './list-partner-types-response-class';
@@ -42,6 +47,8 @@ export * from './related-partner-data-class';
42
47
  export * from './role-class';
43
48
  export * from './tag-class';
44
49
  export * from './tag-partner-request-dto-rest';
50
+ export * from './update-blacklist-reason-request-dto';
51
+ export * from './update-blacklist-reason-response-class';
45
52
  export * from './update-partner-relation-request-dto-rest';
46
53
  export * from './update-partner-request-dto';
47
54
  export * from './update-partner-response-class';
@@ -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 { BlacklistReasonClass } from './blacklist-reason-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ListBlacklistReasonsResponseClass
22
+ */
23
+ export interface ListBlacklistReasonsResponseClass {
24
+ /**
25
+ * The list of blacklist reasonss.
26
+ * @type {Array<BlacklistReasonClass>}
27
+ * @memberof ListBlacklistReasonsResponseClass
28
+ */
29
+ 'items': Array<BlacklistReasonClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListBlacklistReasonsResponseClass
34
+ */
35
+ 'nextPageToken': string;
36
+ /**
37
+ * Items per page.
38
+ * @type {number}
39
+ * @memberof ListBlacklistReasonsResponseClass
40
+ */
41
+ 'itemsPerPage': number;
42
+ /**
43
+ * Total amount of items.
44
+ * @type {number}
45
+ * @memberof ListBlacklistReasonsResponseClass
46
+ */
47
+ 'totalItems': number;
48
+ }
49
+
@@ -0,0 +1,36 @@
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 UpdateBlacklistReasonRequestDto
21
+ */
22
+ export interface UpdateBlacklistReasonRequestDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UpdateBlacklistReasonRequestDto
27
+ */
28
+ 'label'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof UpdateBlacklistReasonRequestDto
33
+ */
34
+ 'description'?: string;
35
+ }
36
+
@@ -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 UpdateBlacklistReasonResponseClass
22
+ */
23
+ export interface UpdateBlacklistReasonResponseClass {
24
+ /**
25
+ * The blacklist reason response.
26
+ * @type {BlacklistReasonClass}
27
+ * @memberof UpdateBlacklistReasonResponseClass
28
+ */
29
+ 'blacklistReason': BlacklistReasonClass;
30
+ }
31
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-sdk",
3
- "version": "1.22.0",
3
+ "version": "1.22.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [