@emilgroup/auth-sdk-node 1.0.0 → 1.2.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 +7 -0
- package/README.md +2 -2
- package/api/authservice-api.ts +88 -0
- package/api/default-api.ts +124 -0
- package/api.ts +2 -0
- package/base.ts +2 -1
- package/dist/api/authservice-api.d.ts +47 -0
- package/dist/api/authservice-api.js +78 -0
- package/dist/api/default-api.d.ts +66 -0
- package/dist/api/default-api.js +200 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +2 -1
- package/dist/base.js +2 -1
- package/dist/models/create-org-and-user-request-dto.d.ts +17 -11
- package/dist/models/custom-schema-class.d.ts +66 -0
- package/dist/models/custom-schema-class.js +15 -0
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/org-invitation-class.d.ts +109 -0
- package/dist/models/org-invitation-class.js +15 -0
- package/dist/models/organization-class.d.ts +7 -1
- package/dist/models/verify-org-invitation-request-dto.d.ts +24 -0
- package/dist/models/verify-org-invitation-request-dto.js +15 -0
- package/dist/models/verify-org-invitation-response-class.d.ts +32 -0
- package/dist/models/verify-org-invitation-response-class.js +15 -0
- package/models/create-org-and-user-request-dto.ts +17 -11
- package/models/custom-schema-class.ts +72 -0
- package/models/index.ts +6 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/org-invitation-class.ts +115 -0
- package/models/organization-class.ts +7 -1
- package/models/verify-org-invitation-request-dto.ts +30 -0
- package/models/verify-org-invitation-response-class.ts +38 -0
- package/package.json +2 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL AuthService
|
|
5
|
+
* The EMIL AuthService 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 { CustomSchemaClass } from './custom-schema-class';
|
|
17
|
+
import { OrgInvitationClass } from './org-invitation-class';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface VerifyOrgInvitationResponseClass
|
|
23
|
+
*/
|
|
24
|
+
export interface VerifyOrgInvitationResponseClass {
|
|
25
|
+
/**
|
|
26
|
+
* Invitation object identified by the token.
|
|
27
|
+
* @type {OrgInvitationClass}
|
|
28
|
+
* @memberof VerifyOrgInvitationResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'invitation': OrgInvitationClass;
|
|
31
|
+
/**
|
|
32
|
+
* Custom schema associated for the invitation process
|
|
33
|
+
* @type {CustomSchemaClass}
|
|
34
|
+
* @memberof VerifyOrgInvitationResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'customSchema': CustomSchemaClass;
|
|
37
|
+
}
|
|
38
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/auth-sdk-node",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/auth-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|