@frontegg/rest-api 2.10.86 → 2.10.87
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.10.87](https://github.com/frontegg/typescript-rest-api/compare/v2.10.86...v2.10.87) (2022-07-06)
|
|
6
|
+
|
|
5
7
|
### [2.10.86](https://github.com/frontegg/typescript-rest-api/compare/v2.10.85...v2.10.86) (2022-07-03)
|
|
6
8
|
|
|
7
9
|
### [2.10.85](https://github.com/frontegg/typescript-rest-api/compare/v2.10.84...v2.10.85) (2022-07-03)
|
|
@@ -33,6 +33,9 @@ export declare type ISubTenantUserPermission = {
|
|
|
33
33
|
export declare type ISubTenantUserTenant = {
|
|
34
34
|
tenantId: string;
|
|
35
35
|
roles: ISubTenantUserRole[];
|
|
36
|
+
permissions: ISubTenantUserPermission[];
|
|
37
|
+
activated: boolean;
|
|
38
|
+
lastLogin: Date;
|
|
36
39
|
};
|
|
37
40
|
export declare type ISubTenantUser = {
|
|
38
41
|
id: string;
|
|
@@ -44,19 +47,15 @@ export declare type ISubTenantUser = {
|
|
|
44
47
|
name?: string;
|
|
45
48
|
phoneNumber?: string;
|
|
46
49
|
profilePictureUrl?: string;
|
|
47
|
-
roles: ISubTenantUserRole[];
|
|
48
|
-
permissions: ISubTenantUserPermission[];
|
|
49
50
|
provider: string;
|
|
50
51
|
tenantId: string;
|
|
51
52
|
tenantIds: string[];
|
|
52
|
-
activatedForTenant?: boolean;
|
|
53
53
|
isLocked?: boolean;
|
|
54
54
|
tenants: ISubTenantUserTenant[];
|
|
55
55
|
invisible?: true;
|
|
56
56
|
superUser?: true;
|
|
57
57
|
metadata: string;
|
|
58
58
|
createdAt: Date;
|
|
59
|
-
lastLogin: Date;
|
|
60
59
|
};
|
|
61
60
|
export interface AddUserToSubTenantsRequestUserDto {
|
|
62
61
|
email: string;
|
|
@@ -33,6 +33,9 @@ export declare type ISubTenantUserPermission = {
|
|
|
33
33
|
export declare type ISubTenantUserTenant = {
|
|
34
34
|
tenantId: string;
|
|
35
35
|
roles: ISubTenantUserRole[];
|
|
36
|
+
permissions: ISubTenantUserPermission[];
|
|
37
|
+
activated: boolean;
|
|
38
|
+
lastLogin: Date;
|
|
36
39
|
};
|
|
37
40
|
export declare type ISubTenantUser = {
|
|
38
41
|
id: string;
|
|
@@ -44,19 +47,15 @@ export declare type ISubTenantUser = {
|
|
|
44
47
|
name?: string;
|
|
45
48
|
phoneNumber?: string;
|
|
46
49
|
profilePictureUrl?: string;
|
|
47
|
-
roles: ISubTenantUserRole[];
|
|
48
|
-
permissions: ISubTenantUserPermission[];
|
|
49
50
|
provider: string;
|
|
50
51
|
tenantId: string;
|
|
51
52
|
tenantIds: string[];
|
|
52
|
-
activatedForTenant?: boolean;
|
|
53
53
|
isLocked?: boolean;
|
|
54
54
|
tenants: ISubTenantUserTenant[];
|
|
55
55
|
invisible?: true;
|
|
56
56
|
superUser?: true;
|
|
57
57
|
metadata: string;
|
|
58
58
|
createdAt: Date;
|
|
59
|
-
lastLogin: Date;
|
|
60
59
|
};
|
|
61
60
|
export interface AddUserToSubTenantsRequestUserDto {
|
|
62
61
|
email: string;
|
package/package.json
CHANGED
|
@@ -38,6 +38,9 @@ export type ISubTenantUserPermission = {
|
|
|
38
38
|
export type ISubTenantUserTenant = {
|
|
39
39
|
tenantId: string;
|
|
40
40
|
roles: ISubTenantUserRole[];
|
|
41
|
+
permissions: ISubTenantUserPermission[];
|
|
42
|
+
activated: boolean;
|
|
43
|
+
lastLogin: Date;
|
|
41
44
|
};
|
|
42
45
|
|
|
43
46
|
export type ISubTenantUser = {
|
|
@@ -50,19 +53,15 @@ export type ISubTenantUser = {
|
|
|
50
53
|
name?: string;
|
|
51
54
|
phoneNumber?: string;
|
|
52
55
|
profilePictureUrl?: string;
|
|
53
|
-
roles: ISubTenantUserRole[];
|
|
54
|
-
permissions: ISubTenantUserPermission[];
|
|
55
56
|
provider: string; // 'local' | 'saml' | 'google' | 'facebook';
|
|
56
57
|
tenantId: string;
|
|
57
58
|
tenantIds: string[];
|
|
58
|
-
activatedForTenant?: boolean;
|
|
59
59
|
isLocked?: boolean;
|
|
60
60
|
tenants: ISubTenantUserTenant[];
|
|
61
61
|
invisible?: true;
|
|
62
62
|
superUser?: true;
|
|
63
63
|
metadata: string;
|
|
64
64
|
createdAt: Date;
|
|
65
|
-
lastLogin: Date;
|
|
66
65
|
};
|
|
67
66
|
|
|
68
67
|
export interface AddUserToSubTenantsRequestUserDto {
|