@emilgroup/partner-sdk 1.22.1-beta.6 → 1.22.1-beta.8
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 +16 -1
- package/README.md +2 -2
- package/api/blacklist-api.ts +662 -0
- package/api/blacklist-reasons-api.ts +780 -0
- package/api/{default-api.ts → health-api.ts} +13 -13
- package/api.ts +6 -2
- package/dist/api/blacklist-api.d.ts +375 -0
- package/dist/api/blacklist-api.js +629 -0
- package/dist/api/blacklist-reasons-api.d.ts +440 -0
- package/dist/api/blacklist-reasons-api.js +728 -0
- package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
- package/dist/api/{default-api.js → health-api.js} +22 -22
- package/dist/api.d.ts +3 -1
- package/dist/api.js +3 -1
- package/dist/models/blacklist-item-class.d.ts +78 -0
- package/dist/models/blacklist-item-class.js +15 -0
- package/dist/models/blacklist-reason-class.d.ts +78 -0
- package/dist/models/blacklist-reason-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/create-blacklist-reason-request-dto.d.ts +36 -0
- package/dist/models/create-blacklist-reason-request-dto.js +15 -0
- package/dist/models/create-blacklist-reason-response-class.d.ts +25 -0
- package/dist/models/create-blacklist-reason-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/get-blacklist-reason-response-class.d.ts +25 -0
- package/dist/models/get-blacklist-reason-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -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/dist/models/list-blacklist-reasons-response-class.d.ts +43 -0
- package/dist/models/list-blacklist-reasons-response-class.js +15 -0
- package/dist/models/list-partner-relation-class.d.ts +18 -6
- package/dist/models/list-partner-relation-types-class.d.ts +18 -6
- package/dist/models/list-partner-types-response-class.d.ts +18 -6
- package/dist/models/list-partner-versions-response-class.d.ts +18 -6
- package/dist/models/list-partners-response-class.d.ts +18 -6
- package/dist/models/list-related-partners-response-class.d.ts +18 -6
- package/dist/models/list-tags-response-class.d.ts +18 -6
- package/dist/models/update-blacklist-reason-request-dto.d.ts +30 -0
- package/dist/models/update-blacklist-reason-request-dto.js +15 -0
- package/dist/models/update-blacklist-reason-response-class.d.ts +25 -0
- package/dist/models/update-blacklist-reason-response-class.js +15 -0
- package/models/blacklist-item-class.ts +84 -0
- package/models/blacklist-reason-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/create-blacklist-reason-request-dto.ts +42 -0
- package/models/create-blacklist-reason-response-class.ts +31 -0
- package/models/get-blacklist-item-response-class.ts +31 -0
- package/models/get-blacklist-reason-response-class.ts +31 -0
- package/models/index.ts +13 -0
- package/models/is-blacklisted-response-class.ts +60 -0
- package/models/list-blacklist-items-response-class.ts +49 -0
- package/models/list-blacklist-reasons-response-class.ts +49 -0
- package/models/list-partner-relation-class.ts +18 -6
- package/models/list-partner-relation-types-class.ts +18 -6
- package/models/list-partner-types-response-class.ts +18 -6
- package/models/list-partner-versions-response-class.ts +18 -6
- package/models/list-partners-response-class.ts +18 -6
- package/models/list-related-partners-response-class.ts +18 -6
- package/models/list-tags-response-class.ts +18 -6
- package/models/update-blacklist-reason-request-dto.ts +36 -0
- package/models/update-blacklist-reason-response-class.ts +31 -0
- package/package.json +1 -1
|
@@ -21,17 +21,29 @@ import { PartnerClass } from './partner-class';
|
|
|
21
21
|
* @interface ListPartnerVersionsResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerVersionsResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partnerss.
|
|
26
|
-
* @type {Array<PartnerClass>}
|
|
27
|
-
* @memberof ListPartnerVersionsResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnerVersionsResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partnerss.
|
|
44
|
+
* @type {Array<PartnerClass>}
|
|
45
|
+
* @memberof ListPartnerVersionsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { PartnerClass } from './partner-class';
|
|
|
21
21
|
* @interface ListPartnersResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnersResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partnerss.
|
|
26
|
-
* @type {Array<PartnerClass>}
|
|
27
|
-
* @memberof ListPartnersResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<PartnerClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListPartnersResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPartnersResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partnerss.
|
|
44
|
+
* @type {Array<PartnerClass>}
|
|
45
|
+
* @memberof ListPartnersResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<PartnerClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { GroupedRelatedPartnersClass } from './grouped-related-partners-class';
|
|
|
21
21
|
* @interface ListRelatedPartnersResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListRelatedPartnersResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of grouped relations for partner
|
|
26
|
-
* @type {Array<GroupedRelatedPartnersClass>}
|
|
27
|
-
* @memberof ListRelatedPartnersResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<GroupedRelatedPartnersClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListRelatedPartnersResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of grouped relations for partner
|
|
44
|
+
* @type {Array<GroupedRelatedPartnersClass>}
|
|
45
|
+
* @memberof ListRelatedPartnersResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<GroupedRelatedPartnersClass>;
|
|
36
48
|
}
|
|
37
49
|
|
|
@@ -21,17 +21,29 @@ import { TagClass } from './tag-class';
|
|
|
21
21
|
* @interface ListTagsResponseClass
|
|
22
22
|
*/
|
|
23
23
|
export interface ListTagsResponseClass {
|
|
24
|
-
/**
|
|
25
|
-
* The list of partner tagss.
|
|
26
|
-
* @type {Array<TagClass>}
|
|
27
|
-
* @memberof ListTagsResponseClass
|
|
28
|
-
*/
|
|
29
|
-
'items': Array<TagClass>;
|
|
30
24
|
/**
|
|
31
25
|
* Next page token.
|
|
32
26
|
* @type {string}
|
|
33
27
|
* @memberof ListTagsResponseClass
|
|
34
28
|
*/
|
|
35
29
|
'nextPageToken': string;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof ListTagsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListTagsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* The list of partner tagss.
|
|
44
|
+
* @type {Array<TagClass>}
|
|
45
|
+
* @memberof ListTagsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<TagClass>;
|
|
36
48
|
}
|
|
37
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
|
+
|