@emilgroup/partner-sdk 1.22.1-beta.3 → 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.
- package/.openapi-generator/FILES +7 -0
- package/README.md +2 -2
- package/api/blacklist-api.ts +662 -0
- package/api.ts +2 -0
- package/dist/api/blacklist-api.d.ts +375 -0
- package/dist/api/blacklist-api.js +629 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/blacklist-item-class.d.ts +78 -0
- package/dist/models/blacklist-item-class.js +15 -0
- package/dist/models/create-blacklist-item-request-dto.d.ts +36 -0
- package/dist/models/create-blacklist-item-request-dto.js +15 -0
- package/dist/models/create-blacklist-item-response-class.d.ts +25 -0
- package/dist/models/create-blacklist-item-response-class.js +15 -0
- package/dist/models/get-blacklist-item-response-class.d.ts +25 -0
- package/dist/models/get-blacklist-item-response-class.js +15 -0
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/dist/models/is-blacklisted-response-class.d.ts +54 -0
- package/dist/models/is-blacklisted-response-class.js +15 -0
- package/dist/models/list-blacklist-items-response-class.d.ts +43 -0
- package/dist/models/list-blacklist-items-response-class.js +15 -0
- package/models/blacklist-item-class.ts +84 -0
- package/models/create-blacklist-item-request-dto.ts +42 -0
- package/models/create-blacklist-item-response-class.ts +31 -0
- package/models/get-blacklist-item-response-class.ts +31 -0
- package/models/index.ts +6 -0
- package/models/is-blacklisted-response-class.ts +60 -0
- package/models/list-blacklist-items-response-class.ts +49 -0
- 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
|
+
|