@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 CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.0.88
1
+ /** @license Frontegg v3.0.89
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v3.0.88
1
+ /** @license Frontegg v3.0.89
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/rest-api",
3
- "version": "3.0.88",
3
+ "version": "3.0.89",
4
4
  "main": "./node/index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -1,5 +1,5 @@
1
- import { QueryFilter, QuerySort } from '../interfaces';
2
- import { IRole, IRolePermission } from '../roles/interfaces';
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: 'Mr' | 'Miss' | 'Mrs' | 'Ms';
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;