@emilgroup/auth-sdk-node 1.0.0-beta.1 → 1.1.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 +4 -0
- package/README.md +2 -2
- package/api/authservice-api.ts +89 -1
- package/api.ts +1 -1
- package/base.ts +5 -5
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/authservice-api.d.ts +48 -1
- package/dist/api/authservice-api.js +79 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +2 -2
- package/dist/base.js +5 -5
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/create-org-and-user-request-dto.d.ts +18 -12
- package/dist/models/create-org-and-user-request-dto.js +1 -1
- package/dist/models/create-org-and-user-response-class.d.ts +1 -1
- package/dist/models/create-org-and-user-response-class.js +1 -1
- package/dist/models/create-user-request-dto.d.ts +1 -1
- package/dist/models/create-user-request-dto.js +1 -1
- package/dist/models/create-user-response-class.d.ts +1 -1
- package/dist/models/create-user-response-class.js +1 -1
- package/dist/models/custom-schema-class.d.ts +66 -0
- package/dist/models/custom-schema-class.js +15 -0
- package/dist/models/forgot-password-request-dto.d.ts +1 -1
- package/dist/models/forgot-password-request-dto.js +1 -1
- package/dist/models/get-samllogin-link-request-dto.d.ts +1 -1
- package/dist/models/get-samllogin-link-request-dto.js +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/login-by-samlrequest-dto.d.ts +1 -1
- package/dist/models/login-by-samlrequest-dto.js +1 -1
- package/dist/models/login-class.d.ts +1 -1
- package/dist/models/login-class.js +1 -1
- package/dist/models/login-request-dto.d.ts +1 -1
- package/dist/models/login-request-dto.js +1 -1
- package/dist/models/logout-request-dto.d.ts +1 -1
- package/dist/models/logout-request-dto.js +1 -1
- 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 +17 -5
- package/dist/models/organization-class.js +1 -1
- package/dist/models/refresh-token-dto.d.ts +1 -1
- package/dist/models/refresh-token-dto.js +1 -1
- package/dist/models/reset-password-request-dto.d.ts +1 -1
- package/dist/models/reset-password-request-dto.js +1 -1
- package/dist/models/role-class.d.ts +1 -1
- package/dist/models/role-class.js +1 -1
- package/dist/models/user-class.d.ts +1 -1
- package/dist/models/user-class.js +1 -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/index.ts +1 -1
- package/models/create-org-and-user-request-dto.ts +18 -12
- package/models/create-org-and-user-response-class.ts +1 -1
- package/models/create-user-request-dto.ts +1 -1
- package/models/create-user-response-class.ts +1 -1
- package/models/custom-schema-class.ts +72 -0
- package/models/forgot-password-request-dto.ts +1 -1
- package/models/get-samllogin-link-request-dto.ts +1 -1
- package/models/index.ts +4 -0
- package/models/login-by-samlrequest-dto.ts +1 -1
- package/models/login-class.ts +1 -1
- package/models/login-request-dto.ts +1 -1
- package/models/logout-request-dto.ts +1 -1
- package/models/org-invitation-class.ts +115 -0
- package/models/organization-class.ts +17 -5
- package/models/refresh-token-dto.ts +1 -1
- package/models/reset-password-request-dto.ts +1 -1
- package/models/role-class.ts +1 -1
- package/models/user-class.ts +1 -1
- package/models/verify-org-invitation-request-dto.ts +30 -0
- package/models/verify-org-invitation-response-class.ts +38 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService 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 VerifyOrgInvitationRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface VerifyOrgInvitationRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof VerifyOrgInvitationRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'invitationToken': string;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService 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 });
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL AuthService
|
|
3
|
+
* The EMIL AuthService 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 { CustomSchemaClass } from './custom-schema-class';
|
|
13
|
+
import { OrgInvitationClass } from './org-invitation-class';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface VerifyOrgInvitationResponseClass
|
|
18
|
+
*/
|
|
19
|
+
export interface VerifyOrgInvitationResponseClass {
|
|
20
|
+
/**
|
|
21
|
+
* Invitation object identified by the token.
|
|
22
|
+
* @type {OrgInvitationClass}
|
|
23
|
+
* @memberof VerifyOrgInvitationResponseClass
|
|
24
|
+
*/
|
|
25
|
+
'invitation': OrgInvitationClass;
|
|
26
|
+
/**
|
|
27
|
+
* Custom schema associated for the invitation process
|
|
28
|
+
* @type {CustomSchemaClass}
|
|
29
|
+
* @memberof VerifyOrgInvitationResponseClass
|
|
30
|
+
*/
|
|
31
|
+
'customSchema': CustomSchemaClass;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL AuthService
|
|
6
|
+
* The EMIL AuthService 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 });
|
package/index.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* The EMIL AuthService API description
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -21,61 +21,67 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CreateOrgAndUserRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Organization\'s street name.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateOrgAndUserRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'street': string;
|
|
29
|
+
/**
|
|
30
|
+
* Organization\'s house number.
|
|
25
31
|
* @type {string}
|
|
26
32
|
* @memberof CreateOrgAndUserRequestDto
|
|
27
33
|
*/
|
|
28
|
-
'
|
|
34
|
+
'houseNumber': string;
|
|
29
35
|
/**
|
|
30
|
-
*
|
|
36
|
+
* City of the organization.
|
|
31
37
|
* @type {string}
|
|
32
38
|
* @memberof CreateOrgAndUserRequestDto
|
|
33
39
|
*/
|
|
34
40
|
'city': string;
|
|
35
41
|
/**
|
|
36
|
-
*
|
|
42
|
+
* Country of the organization.
|
|
37
43
|
* @type {string}
|
|
38
44
|
* @memberof CreateOrgAndUserRequestDto
|
|
39
45
|
*/
|
|
40
46
|
'country': string;
|
|
41
47
|
/**
|
|
42
|
-
*
|
|
48
|
+
* Custom fields of the organization
|
|
43
49
|
* @type {object}
|
|
44
50
|
* @memberof CreateOrgAndUserRequestDto
|
|
45
51
|
*/
|
|
46
52
|
'customFields'?: object;
|
|
47
53
|
/**
|
|
48
|
-
*
|
|
54
|
+
* User\'s first name
|
|
49
55
|
* @type {string}
|
|
50
56
|
* @memberof CreateOrgAndUserRequestDto
|
|
51
57
|
*/
|
|
52
58
|
'firstName': string;
|
|
53
59
|
/**
|
|
54
|
-
*
|
|
60
|
+
* Organization invitation token
|
|
55
61
|
* @type {string}
|
|
56
62
|
* @memberof CreateOrgAndUserRequestDto
|
|
57
63
|
*/
|
|
58
64
|
'invitationToken': string;
|
|
59
65
|
/**
|
|
60
|
-
*
|
|
66
|
+
* if user accepts end user license agreement
|
|
61
67
|
* @type {boolean}
|
|
62
68
|
* @memberof CreateOrgAndUserRequestDto
|
|
63
69
|
*/
|
|
64
70
|
'isEulaAccepted': boolean;
|
|
65
71
|
/**
|
|
66
|
-
*
|
|
72
|
+
* User\'s last name
|
|
67
73
|
* @type {string}
|
|
68
74
|
* @memberof CreateOrgAndUserRequestDto
|
|
69
75
|
*/
|
|
70
76
|
'lastName': string;
|
|
71
77
|
/**
|
|
72
|
-
*
|
|
78
|
+
* User\'s password
|
|
73
79
|
* @type {string}
|
|
74
80
|
* @memberof CreateOrgAndUserRequestDto
|
|
75
81
|
*/
|
|
76
82
|
'password': string;
|
|
77
83
|
/**
|
|
78
|
-
*
|
|
84
|
+
* Zip code of the organization.
|
|
79
85
|
* @type {string}
|
|
80
86
|
* @memberof CreateOrgAndUserRequestDto
|
|
81
87
|
*/
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CustomSchemaClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CustomSchemaClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CustomSchemaClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CustomSchemaClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* The fields that schema created from
|
|
37
|
+
* @type {object}
|
|
38
|
+
* @memberof CustomSchemaClass
|
|
39
|
+
*/
|
|
40
|
+
'fields': object;
|
|
41
|
+
/**
|
|
42
|
+
* The json schema generated from fields
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof CustomSchemaClass
|
|
45
|
+
*/
|
|
46
|
+
'jsonSchema': object;
|
|
47
|
+
/**
|
|
48
|
+
* Optional field for a product specification custom fields
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CustomSchemaClass
|
|
51
|
+
*/
|
|
52
|
+
'productCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* The entity that this schema related to
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CustomSchemaClass
|
|
57
|
+
*/
|
|
58
|
+
'entity': string;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was created.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CustomSchemaClass
|
|
63
|
+
*/
|
|
64
|
+
'createdAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was updated.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CustomSchemaClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedAt': string;
|
|
71
|
+
}
|
|
72
|
+
|
package/models/index.ts
CHANGED
|
@@ -2,14 +2,18 @@ export * from './create-org-and-user-request-dto';
|
|
|
2
2
|
export * from './create-org-and-user-response-class';
|
|
3
3
|
export * from './create-user-request-dto';
|
|
4
4
|
export * from './create-user-response-class';
|
|
5
|
+
export * from './custom-schema-class';
|
|
5
6
|
export * from './forgot-password-request-dto';
|
|
6
7
|
export * from './get-samllogin-link-request-dto';
|
|
7
8
|
export * from './login-by-samlrequest-dto';
|
|
8
9
|
export * from './login-class';
|
|
9
10
|
export * from './login-request-dto';
|
|
10
11
|
export * from './logout-request-dto';
|
|
12
|
+
export * from './org-invitation-class';
|
|
11
13
|
export * from './organization-class';
|
|
12
14
|
export * from './refresh-token-dto';
|
|
13
15
|
export * from './reset-password-request-dto';
|
|
14
16
|
export * from './role-class';
|
|
15
17
|
export * from './user-class';
|
|
18
|
+
export * from './verify-org-invitation-request-dto';
|
|
19
|
+
export * from './verify-org-invitation-response-class';
|
package/models/login-class.ts
CHANGED
|
@@ -0,0 +1,115 @@
|
|
|
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 { RoleClass } from './role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface OrgInvitationClass
|
|
22
|
+
*/
|
|
23
|
+
export interface OrgInvitationClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof OrgInvitationClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Organization user\'s email address.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof OrgInvitationClass
|
|
34
|
+
*/
|
|
35
|
+
'email': string;
|
|
36
|
+
/**
|
|
37
|
+
* Permissions associated with the invite.
|
|
38
|
+
* @type {Array<RoleClass>}
|
|
39
|
+
* @memberof OrgInvitationClass
|
|
40
|
+
*/
|
|
41
|
+
'roles'?: Array<RoleClass>;
|
|
42
|
+
/**
|
|
43
|
+
* Name of the invited organization.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof OrgInvitationClass
|
|
46
|
+
*/
|
|
47
|
+
'name': string;
|
|
48
|
+
/**
|
|
49
|
+
* Identifier for the organization.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof OrgInvitationClass
|
|
52
|
+
*/
|
|
53
|
+
'slug': string;
|
|
54
|
+
/**
|
|
55
|
+
* Inviting organization.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof OrgInvitationClass
|
|
58
|
+
*/
|
|
59
|
+
'parentOrganizationId'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Organization\'s street name.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof OrgInvitationClass
|
|
64
|
+
*/
|
|
65
|
+
'street': string;
|
|
66
|
+
/**
|
|
67
|
+
* Organization\'s house number.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof OrgInvitationClass
|
|
70
|
+
*/
|
|
71
|
+
'houseNumber': string;
|
|
72
|
+
/**
|
|
73
|
+
* Zip code of the organization.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof OrgInvitationClass
|
|
76
|
+
*/
|
|
77
|
+
'zipCode': string;
|
|
78
|
+
/**
|
|
79
|
+
* City of the organization.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof OrgInvitationClass
|
|
82
|
+
*/
|
|
83
|
+
'city': string;
|
|
84
|
+
/**
|
|
85
|
+
* Country of the organization.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof OrgInvitationClass
|
|
88
|
+
*/
|
|
89
|
+
'country': string;
|
|
90
|
+
/**
|
|
91
|
+
* Custom fields of the organization.
|
|
92
|
+
* @type {object}
|
|
93
|
+
* @memberof OrgInvitationClass
|
|
94
|
+
*/
|
|
95
|
+
'customFields'?: object;
|
|
96
|
+
/**
|
|
97
|
+
* Expiry date of invitation email.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof OrgInvitationClass
|
|
100
|
+
*/
|
|
101
|
+
'expiresAt': string;
|
|
102
|
+
/**
|
|
103
|
+
* Time at which the object was created.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof OrgInvitationClass
|
|
106
|
+
*/
|
|
107
|
+
'createdAt': string;
|
|
108
|
+
/**
|
|
109
|
+
* Time at which the object was updated.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof OrgInvitationClass
|
|
112
|
+
*/
|
|
113
|
+
'updatedAt': string;
|
|
114
|
+
}
|
|
115
|
+
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* The EMIL AuthService API description
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -34,16 +34,22 @@ export interface OrganizationClass {
|
|
|
34
34
|
'code': string;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {number}
|
|
38
38
|
* @memberof OrganizationClass
|
|
39
39
|
*/
|
|
40
|
-
'parentId'?:
|
|
40
|
+
'parentId'?: number;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof OrganizationClass
|
|
45
45
|
*/
|
|
46
46
|
'email': string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof OrganizationClass
|
|
51
|
+
*/
|
|
52
|
+
'ern'?: string;
|
|
47
53
|
/**
|
|
48
54
|
*
|
|
49
55
|
* @type {string}
|
|
@@ -61,7 +67,13 @@ export interface OrganizationClass {
|
|
|
61
67
|
* @type {string}
|
|
62
68
|
* @memberof OrganizationClass
|
|
63
69
|
*/
|
|
64
|
-
'
|
|
70
|
+
'street': string;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof OrganizationClass
|
|
75
|
+
*/
|
|
76
|
+
'houseNumber': string;
|
|
65
77
|
/**
|
|
66
78
|
*
|
|
67
79
|
* @type {string}
|
|
@@ -103,6 +115,6 @@ export interface OrganizationClass {
|
|
|
103
115
|
* @type {string}
|
|
104
116
|
* @memberof OrganizationClass
|
|
105
117
|
*/
|
|
106
|
-
'deletedAt'?: string;
|
|
118
|
+
'deletedAt'?: string | null;
|
|
107
119
|
}
|
|
108
120
|
|
package/models/role-class.ts
CHANGED
package/models/user-class.ts
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface VerifyOrgInvitationRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface VerifyOrgInvitationRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof VerifyOrgInvitationRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'invitationToken': string;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -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
|
+
|