@frontegg/rest-api 3.0.88 → 3.0.89
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/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
- package/teams/interfaces.d.ts +8 -7
package/index.js
CHANGED
package/node/index.js
CHANGED
package/package.json
CHANGED
package/teams/interfaces.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { QueryFilter, QuerySort } from
|
|
2
|
-
import { IRole, IRolePermission } from
|
|
1
|
+
import { QueryFilter, QuerySort } from "../interfaces";
|
|
2
|
+
import { IRole, IRolePermission } from "../roles/interfaces";
|
|
3
3
|
export declare enum UserManagedByEnum {
|
|
4
4
|
FRONTEGG = "frontegg",
|
|
5
5
|
SCIM2 = "scim2"
|
|
@@ -22,6 +22,7 @@ export declare type IUserProfile = {
|
|
|
22
22
|
verified?: boolean;
|
|
23
23
|
superUser?: boolean;
|
|
24
24
|
managedBy?: UserManagedByEnum;
|
|
25
|
+
provider?: string;
|
|
25
26
|
};
|
|
26
27
|
export declare type ITeamUserTenant = {
|
|
27
28
|
tenantId: string;
|
|
@@ -77,7 +78,7 @@ export declare type ITeamStats = {
|
|
|
77
78
|
superAdmins: number;
|
|
78
79
|
};
|
|
79
80
|
export declare type IUpdateProfile = {
|
|
80
|
-
title:
|
|
81
|
+
title: "Mr" | "Miss" | "Mrs" | "Ms";
|
|
81
82
|
name: string;
|
|
82
83
|
country: string;
|
|
83
84
|
phoneNumber: string;
|
|
@@ -122,8 +123,8 @@ export declare type ICreateOrUpdateInviteUserLink = {
|
|
|
122
123
|
shouldSendEmail?: boolean;
|
|
123
124
|
};
|
|
124
125
|
/**
|
|
125
|
-
* invite config
|
|
126
|
-
*/
|
|
126
|
+
* invite config
|
|
127
|
+
*/
|
|
127
128
|
export declare type IInviteUserLinkResponse = {
|
|
128
129
|
id: string;
|
|
129
130
|
vendorId: string;
|
|
@@ -134,8 +135,8 @@ export declare type IInviteUserLinkResponse = {
|
|
|
134
135
|
shouldSendEmail?: boolean;
|
|
135
136
|
};
|
|
136
137
|
/**
|
|
137
|
-
* vendor config
|
|
138
|
-
*/
|
|
138
|
+
* vendor config
|
|
139
|
+
*/
|
|
139
140
|
export declare type IInviteLinkConfiguration = {
|
|
140
141
|
tenantInvitationsAllowed: boolean;
|
|
141
142
|
emailsEnabled: boolean;
|