@emilgroup/partner-sdk 1.1.0 → 1.2.1-beta.1
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 +14 -1
- package/README.md +2 -2
- package/api/default-api.ts +8 -4
- package/api/partner-relations-api.ts +638 -19
- package/api/partner-tags-api.ts +662 -0
- package/api/partner-version-api.ts +31 -31
- package/api/partners-api.ts +118 -0
- package/api.ts +2 -0
- package/base.ts +5 -1
- package/dist/api/default-api.d.ts +8 -4
- package/dist/api/default-api.js +8 -4
- package/dist/api/partner-relations-api.d.ts +360 -16
- package/dist/api/partner-relations-api.js +513 -8
- package/dist/api/partner-tags-api.d.ts +375 -0
- package/dist/api/partner-tags-api.js +629 -0
- package/dist/api/partner-version-api.d.ts +31 -31
- package/dist/api/partner-version-api.js +16 -16
- package/dist/api/partners-api.d.ts +65 -0
- package/dist/api/partners-api.js +99 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +1 -0
- package/dist/base.js +4 -1
- package/dist/models/create-partner-relation-request-dto-rest.d.ts +65 -0
- package/dist/models/create-partner-relation-request-dto-rest.js +26 -0
- package/dist/models/create-partner-relation-response-class.d.ts +25 -0
- package/dist/models/create-partner-type-request-dto.d.ts +13 -3
- package/dist/models/create-partner-type-request-dto.js +5 -0
- package/dist/models/create-tag-request-dto.d.ts +36 -0
- package/dist/models/create-tag-request-dto.js +15 -0
- package/dist/models/create-tag-response-class.d.ts +25 -0
- package/dist/models/create-tag-response-class.js +15 -0
- package/dist/models/get-partner-relation-class.d.ts +25 -0
- package/dist/models/get-partner-relation-class.js +15 -0
- package/dist/models/get-tag-response-class.d.ts +25 -0
- package/dist/models/get-tag-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -1
- package/dist/models/index.js +13 -1
- package/dist/models/list-partner-relation-class.d.ts +31 -0
- package/dist/models/list-partner-relation-class.js +15 -0
- package/dist/models/list-tags-response-class.d.ts +31 -0
- package/dist/models/list-tags-response-class.js +15 -0
- package/dist/models/partner-class.d.ts +6 -0
- package/dist/models/partner-relation-class.d.ts +72 -0
- package/dist/models/partner-relation-class.js +15 -0
- package/dist/models/partner-type-class.d.ts +11 -0
- package/dist/models/partner-type-class.js +5 -0
- package/dist/models/tag-class.d.ts +54 -0
- package/dist/models/tag-class.js +15 -0
- package/dist/models/tag-partner-request-dto-rest.d.ts +24 -0
- package/dist/models/tag-partner-request-dto-rest.js +15 -0
- package/dist/models/update-partner-relation-request-dto-rest.d.ts +36 -0
- package/dist/models/update-partner-relation-request-dto-rest.js +15 -0
- package/dist/models/update-partner-type-request-dto.d.ts +14 -4
- package/dist/models/update-partner-type-request-dto.js +5 -0
- package/dist/models/update-tag-response-class.d.ts +25 -0
- package/dist/models/update-tag-response-class.js +15 -0
- package/models/create-partner-relation-request-dto-rest.ts +74 -0
- package/models/create-partner-relation-response-class.ts +31 -0
- package/models/create-partner-type-request-dto.ts +16 -3
- package/models/create-tag-request-dto.ts +42 -0
- package/models/create-tag-response-class.ts +31 -0
- package/models/get-partner-relation-class.ts +31 -0
- package/models/get-tag-response-class.ts +31 -0
- package/models/index.ts +13 -1
- package/models/list-partner-relation-class.ts +37 -0
- package/models/list-tags-response-class.ts +37 -0
- package/models/partner-class.ts +6 -0
- package/models/partner-relation-class.ts +78 -0
- package/models/partner-type-class.ts +14 -0
- package/models/tag-class.ts +60 -0
- package/models/tag-partner-request-dto-rest.ts +30 -0
- package/models/update-partner-relation-request-dto-rest.ts +42 -0
- package/models/update-partner-type-request-dto.ts +17 -4
- package/models/update-tag-response-class.ts +31 -0
- package/package.json +1 -1
- package/dist/models/partner-type-custom-schema-dto.d.ts +0 -66
- package/models/partner-type-custom-schema-dto.ts +0 -72
- /package/dist/models/{partner-type-custom-schema-dto.js → create-partner-relation-response-class.js} +0 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -5,6 +5,7 @@ README.md
|
|
|
5
5
|
api.ts
|
|
6
6
|
api/default-api.ts
|
|
7
7
|
api/partner-relations-api.ts
|
|
8
|
+
api/partner-tags-api.ts
|
|
8
9
|
api/partner-types-api.ts
|
|
9
10
|
api/partner-version-api.ts
|
|
10
11
|
api/partners-api.ts
|
|
@@ -13,29 +14,41 @@ common.ts
|
|
|
13
14
|
configuration.ts
|
|
14
15
|
git_push.sh
|
|
15
16
|
index.ts
|
|
17
|
+
models/create-partner-relation-request-dto-rest.ts
|
|
18
|
+
models/create-partner-relation-response-class.ts
|
|
16
19
|
models/create-partner-request-dto.ts
|
|
17
20
|
models/create-partner-response-class.ts
|
|
18
21
|
models/create-partner-type-request-dto.ts
|
|
19
22
|
models/create-partner-type-response-class.ts
|
|
23
|
+
models/create-tag-request-dto.ts
|
|
24
|
+
models/create-tag-response-class.ts
|
|
20
25
|
models/delete-response-class.ts
|
|
26
|
+
models/get-partner-relation-class.ts
|
|
21
27
|
models/get-partner-relation-type-class.ts
|
|
22
28
|
models/get-partner-response-class.ts
|
|
23
29
|
models/get-partner-type-response-class.ts
|
|
24
30
|
models/get-partner-version-response-class.ts
|
|
31
|
+
models/get-tag-response-class.ts
|
|
25
32
|
models/index.ts
|
|
26
33
|
models/inline-response200.ts
|
|
27
34
|
models/inline-response503.ts
|
|
35
|
+
models/list-partner-relation-class.ts
|
|
28
36
|
models/list-partner-relation-types-class.ts
|
|
29
37
|
models/list-partner-types-response-class.ts
|
|
30
38
|
models/list-partner-versions-response-class.ts
|
|
31
39
|
models/list-partners-response-class.ts
|
|
40
|
+
models/list-tags-response-class.ts
|
|
32
41
|
models/partner-class.ts
|
|
42
|
+
models/partner-relation-class.ts
|
|
33
43
|
models/partner-relation-type-class.ts
|
|
34
44
|
models/partner-type-class.ts
|
|
35
|
-
models/
|
|
45
|
+
models/tag-class.ts
|
|
46
|
+
models/tag-partner-request-dto-rest.ts
|
|
47
|
+
models/update-partner-relation-request-dto-rest.ts
|
|
36
48
|
models/update-partner-request-dto.ts
|
|
37
49
|
models/update-partner-response-class.ts
|
|
38
50
|
models/update-partner-type-request-dto.ts
|
|
39
51
|
models/update-partner-type-response-class.ts
|
|
52
|
+
models/update-tag-response-class.ts
|
|
40
53
|
package.json
|
|
41
54
|
tsconfig.json
|
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.1.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.2.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.1.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.2.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|
package/api/default-api.ts
CHANGED
|
@@ -31,7 +31,8 @@ import { InlineResponse503 } from '../models';
|
|
|
31
31
|
export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
35
|
+
* @summary Health Check
|
|
35
36
|
* @param {*} [options] Override http request option.
|
|
36
37
|
* @throws {RequiredError}
|
|
37
38
|
*/
|
|
@@ -72,7 +73,8 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
72
73
|
const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
|
|
73
74
|
return {
|
|
74
75
|
/**
|
|
75
|
-
*
|
|
76
|
+
* Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
77
|
+
* @summary Health Check
|
|
76
78
|
* @param {*} [options] Override http request option.
|
|
77
79
|
* @throws {RequiredError}
|
|
78
80
|
*/
|
|
@@ -91,7 +93,8 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
91
93
|
const localVarFp = DefaultApiFp(configuration)
|
|
92
94
|
return {
|
|
93
95
|
/**
|
|
94
|
-
*
|
|
96
|
+
* Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
97
|
+
* @summary Health Check
|
|
95
98
|
* @param {*} [options] Override http request option.
|
|
96
99
|
* @throws {RequiredError}
|
|
97
100
|
*/
|
|
@@ -109,7 +112,8 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
109
112
|
*/
|
|
110
113
|
export class DefaultApi extends BaseAPI {
|
|
111
114
|
/**
|
|
112
|
-
*
|
|
115
|
+
* Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
116
|
+
* @summary Health Check
|
|
113
117
|
* @param {*} [options] Override http request option.
|
|
114
118
|
* @throws {RequiredError}
|
|
115
119
|
* @memberof DefaultApi
|