@emilgroup/partner-sdk 1.21.1-beta.4 → 1.22.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.
- package/.openapi-generator/FILES +0 -8
- package/README.md +2 -2
- package/api.ts +0 -2
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/index.d.ts +0 -7
- package/dist/models/index.js +0 -7
- package/models/index.ts +0 -7
- package/package.json +1 -1
- package/api/blacklist-reasons-api.ts +0 -780
- package/dist/api/blacklist-reasons-api.d.ts +0 -440
- package/dist/api/blacklist-reasons-api.js +0 -728
- package/dist/models/blacklist-reason-class.d.ts +0 -78
- package/dist/models/blacklist-reason-class.js +0 -15
- package/dist/models/create-blacklist-reason-request-dto.d.ts +0 -36
- package/dist/models/create-blacklist-reason-request-dto.js +0 -15
- package/dist/models/create-blacklist-reason-response-class.d.ts +0 -25
- package/dist/models/create-blacklist-reason-response-class.js +0 -15
- package/dist/models/get-blacklist-reason-response-class.d.ts +0 -25
- package/dist/models/get-blacklist-reason-response-class.js +0 -15
- package/dist/models/list-blacklist-reasons-response-class.d.ts +0 -43
- package/dist/models/list-blacklist-reasons-response-class.js +0 -15
- package/dist/models/update-blacklist-reason-request-dto.d.ts +0 -30
- package/dist/models/update-blacklist-reason-request-dto.js +0 -15
- package/dist/models/update-blacklist-reason-response-class.d.ts +0 -25
- package/dist/models/update-blacklist-reason-response-class.js +0 -15
- package/models/blacklist-reason-class.ts +0 -84
- package/models/create-blacklist-reason-request-dto.ts +0 -42
- package/models/create-blacklist-reason-response-class.ts +0 -31
- package/models/get-blacklist-reason-response-class.ts +0 -31
- package/models/list-blacklist-reasons-response-class.ts +0 -49
- package/models/update-blacklist-reason-request-dto.ts +0 -36
- package/models/update-blacklist-reason-response-class.ts +0 -31
|
@@ -1,78 +0,0 @@
|
|
|
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 BlacklistReasonClass
|
|
16
|
-
*/
|
|
17
|
-
export interface BlacklistReasonClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof BlacklistReasonClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Unique code identifying the blacklist reason.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof BlacklistReasonClass
|
|
28
|
-
*/
|
|
29
|
-
'code': string;
|
|
30
|
-
/**
|
|
31
|
-
* Unique key used to reference the blacklist reason.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof BlacklistReasonClass
|
|
34
|
-
*/
|
|
35
|
-
'key': string;
|
|
36
|
-
/**
|
|
37
|
-
* Human-readable label for the blacklist reason.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof BlacklistReasonClass
|
|
40
|
-
*/
|
|
41
|
-
'label': string;
|
|
42
|
-
/**
|
|
43
|
-
* Optional detailed description of the blacklist reason.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof BlacklistReasonClass
|
|
46
|
-
*/
|
|
47
|
-
'description'?: string;
|
|
48
|
-
/**
|
|
49
|
-
* Whether the blacklist reason is currently active.
|
|
50
|
-
* @type {boolean}
|
|
51
|
-
* @memberof BlacklistReasonClass
|
|
52
|
-
*/
|
|
53
|
-
'isActive': boolean;
|
|
54
|
-
/**
|
|
55
|
-
* Time at which the object was created.
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof BlacklistReasonClass
|
|
58
|
-
*/
|
|
59
|
-
'createdAt': string;
|
|
60
|
-
/**
|
|
61
|
-
* Time at which the object was updated.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof BlacklistReasonClass
|
|
64
|
-
*/
|
|
65
|
-
'updatedAt': string;
|
|
66
|
-
/**
|
|
67
|
-
* Identifier of the user who created the record.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof BlacklistReasonClass
|
|
70
|
-
*/
|
|
71
|
-
'createdBy': string;
|
|
72
|
-
/**
|
|
73
|
-
* Identifier of the user who last updated the record.
|
|
74
|
-
* @type {string}
|
|
75
|
-
* @memberof BlacklistReasonClass
|
|
76
|
-
*/
|
|
77
|
-
'updatedBy': string;
|
|
78
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,36 +0,0 @@
|
|
|
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 CreateBlacklistReasonRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateBlacklistReasonRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Unique key for the blacklist reason
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'key': string;
|
|
24
|
-
/**
|
|
25
|
-
* Display label for the blacklist reason
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'label': string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'description'?: string;
|
|
36
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,25 +0,0 @@
|
|
|
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 { BlacklistReasonClass } from './blacklist-reason-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface CreateBlacklistReasonResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface CreateBlacklistReasonResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The blacklist reason response.
|
|
21
|
-
* @type {BlacklistReasonClass}
|
|
22
|
-
* @memberof CreateBlacklistReasonResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'blacklistReason': BlacklistReasonClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,25 +0,0 @@
|
|
|
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 { BlacklistReasonClass } from './blacklist-reason-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface GetBlacklistReasonResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface GetBlacklistReasonResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The blacklist reason response.
|
|
21
|
-
* @type {BlacklistReasonClass}
|
|
22
|
-
* @memberof GetBlacklistReasonResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'blacklistReason': BlacklistReasonClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,43 +0,0 @@
|
|
|
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 { BlacklistReasonClass } from './blacklist-reason-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface ListBlacklistReasonsResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface ListBlacklistReasonsResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The list of blacklist reasonss.
|
|
21
|
-
* @type {Array<BlacklistReasonClass>}
|
|
22
|
-
* @memberof ListBlacklistReasonsResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'items': Array<BlacklistReasonClass>;
|
|
25
|
-
/**
|
|
26
|
-
* Next page token.
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof ListBlacklistReasonsResponseClass
|
|
29
|
-
*/
|
|
30
|
-
'nextPageToken': string;
|
|
31
|
-
/**
|
|
32
|
-
* Items per page.
|
|
33
|
-
* @type {number}
|
|
34
|
-
* @memberof ListBlacklistReasonsResponseClass
|
|
35
|
-
*/
|
|
36
|
-
'itemsPerPage': number;
|
|
37
|
-
/**
|
|
38
|
-
* Total amount of items.
|
|
39
|
-
* @type {number}
|
|
40
|
-
* @memberof ListBlacklistReasonsResponseClass
|
|
41
|
-
*/
|
|
42
|
-
'totalItems': number;
|
|
43
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,30 +0,0 @@
|
|
|
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 UpdateBlacklistReasonRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface UpdateBlacklistReasonRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof UpdateBlacklistReasonRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'label'?: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof UpdateBlacklistReasonRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'description'?: string;
|
|
30
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,25 +0,0 @@
|
|
|
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 { BlacklistReasonClass } from './blacklist-reason-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface UpdateBlacklistReasonResponseClass
|
|
17
|
-
*/
|
|
18
|
-
export interface UpdateBlacklistReasonResponseClass {
|
|
19
|
-
/**
|
|
20
|
-
* The blacklist reason response.
|
|
21
|
-
* @type {BlacklistReasonClass}
|
|
22
|
-
* @memberof UpdateBlacklistReasonResponseClass
|
|
23
|
-
*/
|
|
24
|
-
'blacklistReason': BlacklistReasonClass;
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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,84 +0,0 @@
|
|
|
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 BlacklistReasonClass
|
|
21
|
-
*/
|
|
22
|
-
export interface BlacklistReasonClass {
|
|
23
|
-
/**
|
|
24
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
-
* @type {number}
|
|
26
|
-
* @memberof BlacklistReasonClass
|
|
27
|
-
*/
|
|
28
|
-
'id': number;
|
|
29
|
-
/**
|
|
30
|
-
* Unique code identifying the blacklist reason.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof BlacklistReasonClass
|
|
33
|
-
*/
|
|
34
|
-
'code': string;
|
|
35
|
-
/**
|
|
36
|
-
* Unique key used to reference the blacklist reason.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof BlacklistReasonClass
|
|
39
|
-
*/
|
|
40
|
-
'key': string;
|
|
41
|
-
/**
|
|
42
|
-
* Human-readable label for the blacklist reason.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof BlacklistReasonClass
|
|
45
|
-
*/
|
|
46
|
-
'label': string;
|
|
47
|
-
/**
|
|
48
|
-
* Optional detailed description of the blacklist reason.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof BlacklistReasonClass
|
|
51
|
-
*/
|
|
52
|
-
'description'?: string;
|
|
53
|
-
/**
|
|
54
|
-
* Whether the blacklist reason is currently active.
|
|
55
|
-
* @type {boolean}
|
|
56
|
-
* @memberof BlacklistReasonClass
|
|
57
|
-
*/
|
|
58
|
-
'isActive': boolean;
|
|
59
|
-
/**
|
|
60
|
-
* Time at which the object was created.
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof BlacklistReasonClass
|
|
63
|
-
*/
|
|
64
|
-
'createdAt': string;
|
|
65
|
-
/**
|
|
66
|
-
* Time at which the object was updated.
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof BlacklistReasonClass
|
|
69
|
-
*/
|
|
70
|
-
'updatedAt': string;
|
|
71
|
-
/**
|
|
72
|
-
* Identifier of the user who created the record.
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof BlacklistReasonClass
|
|
75
|
-
*/
|
|
76
|
-
'createdBy': string;
|
|
77
|
-
/**
|
|
78
|
-
* Identifier of the user who last updated the record.
|
|
79
|
-
* @type {string}
|
|
80
|
-
* @memberof BlacklistReasonClass
|
|
81
|
-
*/
|
|
82
|
-
'updatedBy': string;
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,42 +0,0 @@
|
|
|
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 CreateBlacklistReasonRequestDto
|
|
21
|
-
*/
|
|
22
|
-
export interface CreateBlacklistReasonRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Unique key for the blacklist reason
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'key': string;
|
|
29
|
-
/**
|
|
30
|
-
* Display label for the blacklist reason
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'label': string;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CreateBlacklistReasonRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'description'?: string;
|
|
41
|
-
}
|
|
42
|
-
|
|
@@ -1,31 +0,0 @@
|
|
|
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 CreateBlacklistReasonResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface CreateBlacklistReasonResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The blacklist reason response.
|
|
26
|
-
* @type {BlacklistReasonClass}
|
|
27
|
-
* @memberof CreateBlacklistReasonResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'blacklistReason': BlacklistReasonClass;
|
|
30
|
-
}
|
|
31
|
-
|
|
@@ -1,31 +0,0 @@
|
|
|
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 GetBlacklistReasonResponseClass
|
|
22
|
-
*/
|
|
23
|
-
export interface GetBlacklistReasonResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The blacklist reason response.
|
|
26
|
-
* @type {BlacklistReasonClass}
|
|
27
|
-
* @memberof GetBlacklistReasonResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'blacklistReason': BlacklistReasonClass;
|
|
30
|
-
}
|
|
31
|
-
|
|
@@ -1,49 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,36 +0,0 @@
|
|
|
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
|
-
|