@emilgroup/auth-sdk-node 1.2.0 → 1.4.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/README.md +2 -2
- package/package.json +2 -2
- package/dist/api/authservice-api.d.ts +0 -613
- package/dist/api/authservice-api.js +0 -1069
- package/dist/api/default-api.d.ts +0 -66
- package/dist/api/default-api.js +0 -200
- package/dist/api.d.ts +0 -13
- package/dist/api.js +0 -31
- package/dist/base.d.ts +0 -78
- package/dist/base.js +0 -394
- package/dist/common.d.ts +0 -92
- package/dist/common.js +0 -277
- package/dist/configuration.d.ts +0 -90
- package/dist/configuration.js +0 -44
- package/dist/index.d.ts +0 -15
- package/dist/index.js +0 -36
- package/dist/models/create-org-and-user-request-dto.d.ts +0 -84
- package/dist/models/create-org-and-user-request-dto.js +0 -15
- package/dist/models/create-org-and-user-response-class.d.ts +0 -32
- package/dist/models/create-org-and-user-response-class.js +0 -15
- package/dist/models/create-user-request-dto.d.ts +0 -54
- package/dist/models/create-user-request-dto.js +0 -15
- package/dist/models/create-user-response-class.d.ts +0 -25
- package/dist/models/create-user-response-class.js +0 -15
- package/dist/models/custom-schema-class.d.ts +0 -66
- package/dist/models/custom-schema-class.js +0 -15
- package/dist/models/forgot-password-request-dto.d.ts +0 -24
- package/dist/models/forgot-password-request-dto.js +0 -15
- package/dist/models/get-samllogin-link-request-dto.d.ts +0 -24
- package/dist/models/get-samllogin-link-request-dto.js +0 -15
- package/dist/models/index.d.ts +0 -21
- package/dist/models/index.js +0 -37
- package/dist/models/inline-response200.d.ts +0 -54
- package/dist/models/inline-response200.js +0 -15
- package/dist/models/inline-response503.d.ts +0 -54
- package/dist/models/inline-response503.js +0 -15
- package/dist/models/login-by-samlrequest-dto.d.ts +0 -30
- package/dist/models/login-by-samlrequest-dto.js +0 -15
- package/dist/models/login-class.d.ts +0 -30
- package/dist/models/login-class.js +0 -15
- package/dist/models/login-request-dto.d.ts +0 -30
- package/dist/models/login-request-dto.js +0 -15
- package/dist/models/logout-request-dto.d.ts +0 -24
- package/dist/models/logout-request-dto.js +0 -15
- package/dist/models/org-invitation-class.d.ts +0 -109
- package/dist/models/org-invitation-class.js +0 -15
- package/dist/models/organization-class.d.ts +0 -114
- package/dist/models/organization-class.js +0 -15
- package/dist/models/refresh-token-dto.d.ts +0 -24
- package/dist/models/refresh-token-dto.js +0 -15
- package/dist/models/reset-password-request-dto.d.ts +0 -36
- package/dist/models/reset-password-request-dto.js +0 -15
- package/dist/models/role-class.d.ts +0 -54
- package/dist/models/role-class.js +0 -15
- package/dist/models/user-class.d.ts +0 -85
- package/dist/models/user-class.js +0 -15
- package/dist/models/verify-org-invitation-request-dto.d.ts +0 -24
- package/dist/models/verify-org-invitation-request-dto.js +0 -15
- package/dist/models/verify-org-invitation-response-class.d.ts +0 -32
- package/dist/models/verify-org-invitation-response-class.js +0 -15
|
@@ -1,109 +0,0 @@
|
|
|
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 { RoleClass } from './role-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface OrgInvitationClass
|
|
17
|
-
*/
|
|
18
|
-
export interface OrgInvitationClass {
|
|
19
|
-
/**
|
|
20
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof OrgInvitationClass
|
|
23
|
-
*/
|
|
24
|
-
'id': number;
|
|
25
|
-
/**
|
|
26
|
-
* Organization user\'s email address.
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof OrgInvitationClass
|
|
29
|
-
*/
|
|
30
|
-
'email': string;
|
|
31
|
-
/**
|
|
32
|
-
* Permissions associated with the invite.
|
|
33
|
-
* @type {Array<RoleClass>}
|
|
34
|
-
* @memberof OrgInvitationClass
|
|
35
|
-
*/
|
|
36
|
-
'roles'?: Array<RoleClass>;
|
|
37
|
-
/**
|
|
38
|
-
* Name of the invited organization.
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof OrgInvitationClass
|
|
41
|
-
*/
|
|
42
|
-
'name': string;
|
|
43
|
-
/**
|
|
44
|
-
* Identifier for the organization.
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof OrgInvitationClass
|
|
47
|
-
*/
|
|
48
|
-
'slug': string;
|
|
49
|
-
/**
|
|
50
|
-
* Inviting organization.
|
|
51
|
-
* @type {number}
|
|
52
|
-
* @memberof OrgInvitationClass
|
|
53
|
-
*/
|
|
54
|
-
'parentOrganizationId'?: number;
|
|
55
|
-
/**
|
|
56
|
-
* Organization\'s street name.
|
|
57
|
-
* @type {string}
|
|
58
|
-
* @memberof OrgInvitationClass
|
|
59
|
-
*/
|
|
60
|
-
'street': string;
|
|
61
|
-
/**
|
|
62
|
-
* Organization\'s house number.
|
|
63
|
-
* @type {string}
|
|
64
|
-
* @memberof OrgInvitationClass
|
|
65
|
-
*/
|
|
66
|
-
'houseNumber': string;
|
|
67
|
-
/**
|
|
68
|
-
* Zip code of the organization.
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof OrgInvitationClass
|
|
71
|
-
*/
|
|
72
|
-
'zipCode': string;
|
|
73
|
-
/**
|
|
74
|
-
* City of the organization.
|
|
75
|
-
* @type {string}
|
|
76
|
-
* @memberof OrgInvitationClass
|
|
77
|
-
*/
|
|
78
|
-
'city': string;
|
|
79
|
-
/**
|
|
80
|
-
* Country of the organization.
|
|
81
|
-
* @type {string}
|
|
82
|
-
* @memberof OrgInvitationClass
|
|
83
|
-
*/
|
|
84
|
-
'country': string;
|
|
85
|
-
/**
|
|
86
|
-
* Custom fields of the organization.
|
|
87
|
-
* @type {object}
|
|
88
|
-
* @memberof OrgInvitationClass
|
|
89
|
-
*/
|
|
90
|
-
'customFields'?: object;
|
|
91
|
-
/**
|
|
92
|
-
* Expiry date of invitation email.
|
|
93
|
-
* @type {string}
|
|
94
|
-
* @memberof OrgInvitationClass
|
|
95
|
-
*/
|
|
96
|
-
'expiresAt': string;
|
|
97
|
-
/**
|
|
98
|
-
* Time at which the object was created.
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @memberof OrgInvitationClass
|
|
101
|
-
*/
|
|
102
|
-
'createdAt': string;
|
|
103
|
-
/**
|
|
104
|
-
* Time at which the object was updated.
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @memberof OrgInvitationClass
|
|
107
|
-
*/
|
|
108
|
-
'updatedAt': string;
|
|
109
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,114 +0,0 @@
|
|
|
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 OrganizationClass
|
|
16
|
-
*/
|
|
17
|
-
export interface OrganizationClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof OrganizationClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier for the object.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof OrganizationClass
|
|
28
|
-
*/
|
|
29
|
-
'code': string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof OrganizationClass
|
|
34
|
-
*/
|
|
35
|
-
'parentId'?: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof OrganizationClass
|
|
40
|
-
*/
|
|
41
|
-
'email': string;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof OrganizationClass
|
|
46
|
-
*/
|
|
47
|
-
'ern'?: string;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof OrganizationClass
|
|
52
|
-
*/
|
|
53
|
-
'name': string;
|
|
54
|
-
/**
|
|
55
|
-
*
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof OrganizationClass
|
|
58
|
-
*/
|
|
59
|
-
'type': string;
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof OrganizationClass
|
|
64
|
-
*/
|
|
65
|
-
'street': string;
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof OrganizationClass
|
|
70
|
-
*/
|
|
71
|
-
'houseNumber': string;
|
|
72
|
-
/**
|
|
73
|
-
*
|
|
74
|
-
* @type {string}
|
|
75
|
-
* @memberof OrganizationClass
|
|
76
|
-
*/
|
|
77
|
-
'zipCode': string;
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @type {string}
|
|
81
|
-
* @memberof OrganizationClass
|
|
82
|
-
*/
|
|
83
|
-
'city': string;
|
|
84
|
-
/**
|
|
85
|
-
*
|
|
86
|
-
* @type {string}
|
|
87
|
-
* @memberof OrganizationClass
|
|
88
|
-
*/
|
|
89
|
-
'country': string;
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {object}
|
|
93
|
-
* @memberof OrganizationClass
|
|
94
|
-
*/
|
|
95
|
-
'customFields'?: object;
|
|
96
|
-
/**
|
|
97
|
-
* Time at which the object was created.
|
|
98
|
-
* @type {string}
|
|
99
|
-
* @memberof OrganizationClass
|
|
100
|
-
*/
|
|
101
|
-
'createdAt': string;
|
|
102
|
-
/**
|
|
103
|
-
* Time at which the object was updated.
|
|
104
|
-
* @type {string}
|
|
105
|
-
* @memberof OrganizationClass
|
|
106
|
-
*/
|
|
107
|
-
'updatedAt': string;
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof OrganizationClass
|
|
112
|
-
*/
|
|
113
|
-
'deletedAt'?: string | null;
|
|
114
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,24 +0,0 @@
|
|
|
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 RefreshTokenDto
|
|
16
|
-
*/
|
|
17
|
-
export interface RefreshTokenDto {
|
|
18
|
-
/**
|
|
19
|
-
* Tenant user\'s username. Usually an email.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof RefreshTokenDto
|
|
22
|
-
*/
|
|
23
|
-
'username': string;
|
|
24
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,36 +0,0 @@
|
|
|
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 ResetPasswordRequestDto
|
|
16
|
-
*/
|
|
17
|
-
export interface ResetPasswordRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Tenant user\'s email address
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof ResetPasswordRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'email': string;
|
|
24
|
-
/**
|
|
25
|
-
* Tenant user\'s reset token. Reset token can be found in the email sent after \'forgot-password\' endpoint was called.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof ResetPasswordRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'resetToken': string;
|
|
30
|
-
/**
|
|
31
|
-
* Tenant user\'s new password
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof ResetPasswordRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'password': string;
|
|
36
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,54 +0,0 @@
|
|
|
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 RoleClass
|
|
16
|
-
*/
|
|
17
|
-
export interface RoleClass {
|
|
18
|
-
/**
|
|
19
|
-
* unique role code
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof RoleClass
|
|
22
|
-
*/
|
|
23
|
-
'code': string;
|
|
24
|
-
/**
|
|
25
|
-
* role id
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof RoleClass
|
|
28
|
-
*/
|
|
29
|
-
'id': number;
|
|
30
|
-
/**
|
|
31
|
-
* short description of the role
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof RoleClass
|
|
34
|
-
*/
|
|
35
|
-
'description': string;
|
|
36
|
-
/**
|
|
37
|
-
* role label
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof RoleClass
|
|
40
|
-
*/
|
|
41
|
-
'label': string;
|
|
42
|
-
/**
|
|
43
|
-
* Date created
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof RoleClass
|
|
46
|
-
*/
|
|
47
|
-
'createdAt': string;
|
|
48
|
-
/**
|
|
49
|
-
* Date updated
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof RoleClass
|
|
52
|
-
*/
|
|
53
|
-
'updatedAt': string;
|
|
54
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,85 +0,0 @@
|
|
|
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 { RoleClass } from './role-class';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface UserClass
|
|
17
|
-
*/
|
|
18
|
-
export interface UserClass {
|
|
19
|
-
/**
|
|
20
|
-
* user id
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof UserClass
|
|
23
|
-
*/
|
|
24
|
-
'id': number;
|
|
25
|
-
/**
|
|
26
|
-
* unique user code
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof UserClass
|
|
29
|
-
*/
|
|
30
|
-
'code': string;
|
|
31
|
-
/**
|
|
32
|
-
* email address of the user
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof UserClass
|
|
35
|
-
*/
|
|
36
|
-
'email': string;
|
|
37
|
-
/**
|
|
38
|
-
* first name of the user
|
|
39
|
-
* @type {string}
|
|
40
|
-
* @memberof UserClass
|
|
41
|
-
*/
|
|
42
|
-
'firstName': string;
|
|
43
|
-
/**
|
|
44
|
-
* first name of the user
|
|
45
|
-
* @type {string}
|
|
46
|
-
* @memberof UserClass
|
|
47
|
-
*/
|
|
48
|
-
'lastName': string;
|
|
49
|
-
/**
|
|
50
|
-
* status of the of the user
|
|
51
|
-
* @type {string}
|
|
52
|
-
* @memberof UserClass
|
|
53
|
-
*/
|
|
54
|
-
'status': string;
|
|
55
|
-
/**
|
|
56
|
-
* cognito sub of the user
|
|
57
|
-
* @type {string}
|
|
58
|
-
* @memberof UserClass
|
|
59
|
-
*/
|
|
60
|
-
'sub': string;
|
|
61
|
-
/**
|
|
62
|
-
* tenant id
|
|
63
|
-
* @type {number}
|
|
64
|
-
* @memberof UserClass
|
|
65
|
-
*/
|
|
66
|
-
'tenantId': number;
|
|
67
|
-
/**
|
|
68
|
-
* permissions associated with the user
|
|
69
|
-
* @type {Array<RoleClass>}
|
|
70
|
-
* @memberof UserClass
|
|
71
|
-
*/
|
|
72
|
-
'roles': Array<RoleClass>;
|
|
73
|
-
/**
|
|
74
|
-
* Date created
|
|
75
|
-
* @type {string}
|
|
76
|
-
* @memberof UserClass
|
|
77
|
-
*/
|
|
78
|
-
'createdAt': string;
|
|
79
|
-
/**
|
|
80
|
-
* Date updated
|
|
81
|
-
* @type {string}
|
|
82
|
-
* @memberof UserClass
|
|
83
|
-
*/
|
|
84
|
-
'updatedAt': string;
|
|
85
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,24 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,32 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|