@emilgroup/partner-sdk 1.22.1-beta.13 → 1.22.1-beta.15
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 +26 -1
- package/README.md +2 -2
- package/api/blacklist-api.ts +662 -0
- package/api/blacklist-reasons-api.ts +797 -0
- package/api/{default-api.ts → health-api.ts} +13 -13
- package/api/partner-hierarchy-types-api.ts +679 -0
- package/api.ts +8 -2
- package/base.ts +1 -0
- 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 +450 -0
- package/dist/api/blacklist-reasons-api.js +735 -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/partner-hierarchy-types-api.d.ts +385 -0
- package/dist/api/partner-hierarchy-types-api.js +636 -0
- package/dist/api.d.ts +4 -1
- package/dist/api.js +4 -1
- package/dist/base.d.ts +2 -1
- package/dist/base.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/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/create-partner-hierarchy-type-request-dto.d.ts +30 -0
- package/dist/models/create-partner-hierarchy-type-request-dto.js +15 -0
- package/dist/models/create-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/create-partner-hierarchy-type-response-class.js +15 -0
- package/dist/models/delete-by-code-response-class.d.ts +24 -0
- package/dist/models/delete-by-code-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/get-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/get-partner-hierarchy-type-response-class.js +15 -0
- package/dist/models/index.d.ts +22 -0
- package/dist/models/index.js +22 -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-hierarchy-types-response-class.d.ts +43 -0
- package/dist/models/list-partner-hierarchy-types-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/partner-hierarchy-type-class.d.ts +66 -0
- package/dist/models/partner-hierarchy-type-class.js +15 -0
- 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/dist/models/update-blacklist-reason-status-request-dto.d.ts +24 -0
- package/dist/models/update-blacklist-reason-status-request-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-type-request-dto.d.ts +30 -0
- package/dist/models/update-partner-hierarchy-type-request-dto.js +15 -0
- package/dist/models/update-partner-hierarchy-type-response-class.d.ts +25 -0
- package/dist/models/update-partner-hierarchy-type-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/create-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/create-partner-hierarchy-type-response-class.ts +31 -0
- package/models/delete-by-code-response-class.ts +30 -0
- package/models/get-blacklist-item-response-class.ts +31 -0
- package/models/get-blacklist-reason-response-class.ts +31 -0
- package/models/get-partner-hierarchy-type-response-class.ts +31 -0
- package/models/index.ts +22 -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-hierarchy-types-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/partner-hierarchy-type-class.ts +72 -0
- package/models/update-blacklist-reason-request-dto.ts +36 -0
- package/models/update-blacklist-reason-response-class.ts +31 -0
- package/models/update-blacklist-reason-status-request-dto.ts +30 -0
- package/models/update-partner-hierarchy-type-request-dto.ts +36 -0
- package/models/update-partner-hierarchy-type-response-class.ts +31 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
.openapi-generator-ignore
|
|
4
4
|
README.md
|
|
5
5
|
api.ts
|
|
6
|
-
api/
|
|
6
|
+
api/blacklist-api.ts
|
|
7
|
+
api/blacklist-reasons-api.ts
|
|
8
|
+
api/health-api.ts
|
|
9
|
+
api/partner-hierarchy-types-api.ts
|
|
7
10
|
api/partner-invitations-api.ts
|
|
8
11
|
api/partner-relations-api.ts
|
|
9
12
|
api/partner-tags-api.ts
|
|
@@ -15,8 +18,16 @@ common.ts
|
|
|
15
18
|
configuration.ts
|
|
16
19
|
git_push.sh
|
|
17
20
|
index.ts
|
|
21
|
+
models/blacklist-item-class.ts
|
|
22
|
+
models/blacklist-reason-class.ts
|
|
23
|
+
models/create-blacklist-item-request-dto.ts
|
|
24
|
+
models/create-blacklist-item-response-class.ts
|
|
25
|
+
models/create-blacklist-reason-request-dto.ts
|
|
26
|
+
models/create-blacklist-reason-response-class.ts
|
|
18
27
|
models/create-or-update-partner-from-account-request-dto.ts
|
|
19
28
|
models/create-or-update-partner-from-account-response-class.ts
|
|
29
|
+
models/create-partner-hierarchy-type-request-dto.ts
|
|
30
|
+
models/create-partner-hierarchy-type-response-class.ts
|
|
20
31
|
models/create-partner-relation-request-dto-rest.ts
|
|
21
32
|
models/create-partner-relation-response-class.ts
|
|
22
33
|
models/create-partner-request-dto.ts
|
|
@@ -25,7 +36,11 @@ models/create-partner-type-request-dto.ts
|
|
|
25
36
|
models/create-partner-type-response-class.ts
|
|
26
37
|
models/create-tag-request-dto.ts
|
|
27
38
|
models/create-tag-response-class.ts
|
|
39
|
+
models/delete-by-code-response-class.ts
|
|
28
40
|
models/delete-response-class.ts
|
|
41
|
+
models/get-blacklist-item-response-class.ts
|
|
42
|
+
models/get-blacklist-reason-response-class.ts
|
|
43
|
+
models/get-partner-hierarchy-type-response-class.ts
|
|
29
44
|
models/get-partner-relation-class.ts
|
|
30
45
|
models/get-partner-relation-type-class.ts
|
|
31
46
|
models/get-partner-response-class.ts
|
|
@@ -39,6 +54,10 @@ models/inline-response503.ts
|
|
|
39
54
|
models/invite-class.ts
|
|
40
55
|
models/invite-partner-to-eis-response-class.ts
|
|
41
56
|
models/invite-partner-to-eisrequest-dto.ts
|
|
57
|
+
models/is-blacklisted-response-class.ts
|
|
58
|
+
models/list-blacklist-items-response-class.ts
|
|
59
|
+
models/list-blacklist-reasons-response-class.ts
|
|
60
|
+
models/list-partner-hierarchy-types-response-class.ts
|
|
42
61
|
models/list-partner-relation-class.ts
|
|
43
62
|
models/list-partner-relation-types-class.ts
|
|
44
63
|
models/list-partner-types-response-class.ts
|
|
@@ -51,6 +70,7 @@ models/mapped-account-from-partner-class.ts
|
|
|
51
70
|
models/merge-partners-request-dto.ts
|
|
52
71
|
models/merge-partners-response-class.ts
|
|
53
72
|
models/partner-class.ts
|
|
73
|
+
models/partner-hierarchy-type-class.ts
|
|
54
74
|
models/partner-relation-class.ts
|
|
55
75
|
models/partner-relation-type-class.ts
|
|
56
76
|
models/partner-type-class.ts
|
|
@@ -60,6 +80,11 @@ models/related-partner-data-class.ts
|
|
|
60
80
|
models/role-class.ts
|
|
61
81
|
models/tag-class.ts
|
|
62
82
|
models/tag-partner-request-dto-rest.ts
|
|
83
|
+
models/update-blacklist-reason-request-dto.ts
|
|
84
|
+
models/update-blacklist-reason-response-class.ts
|
|
85
|
+
models/update-blacklist-reason-status-request-dto.ts
|
|
86
|
+
models/update-partner-hierarchy-type-request-dto.ts
|
|
87
|
+
models/update-partner-hierarchy-type-response-class.ts
|
|
63
88
|
models/update-partner-relation-request-dto-rest.ts
|
|
64
89
|
models/update-partner-request-dto.ts
|
|
65
90
|
models/update-partner-response-class.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/partner-sdk@1.22.1-beta.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.22.1-beta.15 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.22.1-beta.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.22.1-beta.15
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|