@frontegg/types 6.46.0-alpha.1 → 6.46.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/Localizations/AdminPortalLocalizations/users.d.ts +8 -0
- package/ThemeOptions/AdminPortalThemeOptions.d.ts +31 -15
- package/ThemeOptions/fieldsAppearanceConsts.d.ts +24 -7
- package/ThemeOptions/fieldsAppearanceConsts.js +17 -10
- package/ThemeOptions/fieldsAppearanceTypes.d.ts +24 -16
- package/index.js +1 -1
- package/node/ThemeOptions/fieldsAppearanceConsts.js +21 -13
- package/node/index.js +1 -1
- package/package.json +2 -2
|
@@ -151,10 +151,18 @@ export interface UsersLocalization {
|
|
|
151
151
|
*/
|
|
152
152
|
title: string;
|
|
153
153
|
inviteWithLinkSettings: string;
|
|
154
|
+
/**
|
|
155
|
+
* Full name input label
|
|
156
|
+
*/
|
|
157
|
+
fullNameInputLabel: string;
|
|
154
158
|
/**
|
|
155
159
|
* First name input label
|
|
156
160
|
*/
|
|
157
161
|
firstNameInputLabel: string;
|
|
162
|
+
/**
|
|
163
|
+
* Error displayed if full name input is empty
|
|
164
|
+
*/
|
|
165
|
+
fullNameIsRequired: string;
|
|
158
166
|
/**
|
|
159
167
|
* Error displayed if first name input is empty
|
|
160
168
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseTheme, BaseThemeOptions, BasicThemeName } from './index';
|
|
1
|
+
import { BaseTheme, BaseThemeOptions, BasicThemeName, InviteUserModalFieldsProperties } from './index';
|
|
2
2
|
import { Color, CSSProperties, ExtendedCSSProperties } from '../Common';
|
|
3
3
|
import { AccountFieldsProperties, PrivacyFieldsProperties, ProfileFieldsProperties, SecurityTabsProperties } from './fieldsAppearanceTypes';
|
|
4
4
|
export interface NavigationThemeOptionsState {
|
|
@@ -53,8 +53,24 @@ export interface PrivacyPageThemeOptions extends PageThemeOptions {
|
|
|
53
53
|
};
|
|
54
54
|
fieldsProperties?: PrivacyFieldsProperties;
|
|
55
55
|
}
|
|
56
|
+
export interface InviteUserByBulkOptions {
|
|
57
|
+
/** By default invite user modal let you invite only 1 user. enable bulk if you want to invite up to 5 users.
|
|
58
|
+
* Note: when inviting bulk of users, only emails and role will be shown in the form. **/
|
|
59
|
+
enabled?: boolean;
|
|
60
|
+
}
|
|
61
|
+
export interface InviteUserByEmailOptions {
|
|
62
|
+
/** By default invite user modal show the form to invite user by email. disable this form if you want to hide it **/
|
|
63
|
+
enabled?: boolean;
|
|
64
|
+
inviteBulk?: InviteUserByBulkOptions;
|
|
65
|
+
fieldsProperties?: InviteUserModalFieldsProperties;
|
|
66
|
+
}
|
|
67
|
+
export interface InviteUserModalOptions {
|
|
68
|
+
inviteByEmail?: InviteUserByEmailOptions;
|
|
69
|
+
}
|
|
56
70
|
export interface UsersPageThemeOptions extends PageThemeOptions {
|
|
71
|
+
/** @Deprecated please use inviteUserModal.inviteByEmail.enabled = false to hide invite with email **/
|
|
57
72
|
hideInviteWithEmail?: boolean;
|
|
73
|
+
inviteUserModal?: InviteUserModalOptions;
|
|
58
74
|
}
|
|
59
75
|
export interface PagesThemeOptions extends PageThemeOptions {
|
|
60
76
|
profile?: ProfilePageThemeOptions;
|
|
@@ -90,34 +106,34 @@ export interface TableTheme {
|
|
|
90
106
|
*/
|
|
91
107
|
headerContainer?: ExtendedCSSProperties;
|
|
92
108
|
/**
|
|
93
|
-
|
|
94
|
-
|
|
109
|
+
* Styling applying for table scrollbar
|
|
110
|
+
*/
|
|
95
111
|
scrollbar?: TableScrollbar;
|
|
96
112
|
/**
|
|
97
|
-
|
|
98
|
-
|
|
113
|
+
* Background color for filterButton on the header of the table, we have it on audits
|
|
114
|
+
*/
|
|
99
115
|
filterButtonBackground?: Color;
|
|
100
116
|
/**
|
|
101
|
-
|
|
102
|
-
|
|
117
|
+
* Styling applying for icon container in table empty state
|
|
118
|
+
*/
|
|
103
119
|
emptyStateIconContainer?: ExtendedCSSProperties;
|
|
104
120
|
/**
|
|
105
|
-
|
|
106
|
-
|
|
121
|
+
* Styling applying for icon in table empty state
|
|
122
|
+
*/
|
|
107
123
|
emptyStateIcon?: ExtendedCSSProperties;
|
|
108
124
|
}
|
|
109
125
|
export interface SelectTheme {
|
|
110
126
|
/**
|
|
111
|
-
|
|
112
|
-
|
|
127
|
+
* Styling applying for select input
|
|
128
|
+
*/
|
|
113
129
|
selectInput?: ExtendedCSSProperties;
|
|
114
130
|
/**
|
|
115
|
-
|
|
116
|
-
|
|
131
|
+
* Styling applying for select options container
|
|
132
|
+
*/
|
|
117
133
|
selectOptionsContainer?: ExtendedCSSProperties;
|
|
118
134
|
/**
|
|
119
|
-
|
|
120
|
-
|
|
135
|
+
* Styling applying for select single option
|
|
136
|
+
*/
|
|
121
137
|
selectOption?: ExtendedCSSProperties;
|
|
122
138
|
}
|
|
123
139
|
export interface AdminPortalCommonOptions extends BaseThemeOptions {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
export declare type HiddenOrEdit = 'hidden' | 'edit';
|
|
2
2
|
export declare type FieldAppearance = 'viewOnly' | HiddenOrEdit;
|
|
3
3
|
export declare type TabAppearance = 'hidden' | 'edit';
|
|
4
|
+
export interface FieldSettings {
|
|
5
|
+
validation?: {
|
|
6
|
+
required?: boolean;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
4
9
|
export declare enum ProfilePageFields {
|
|
5
10
|
Name = "name",
|
|
6
11
|
PhoneNumber = "phoneNumber",
|
|
@@ -17,6 +22,18 @@ export declare enum PrivacyPageFields {
|
|
|
17
22
|
LoginSessions = "loginSessions",
|
|
18
23
|
Mfa = "mfa"
|
|
19
24
|
}
|
|
25
|
+
export declare enum InviteUserModalFields {
|
|
26
|
+
Name = "name",
|
|
27
|
+
PhoneNumber = "phoneNumber"
|
|
28
|
+
}
|
|
29
|
+
export interface MapInviteUserFieldToAppearance extends Record<keyof InviteUserModalFields, HiddenOrEdit> {
|
|
30
|
+
[InviteUserModalFields.Name]: HiddenOrEdit;
|
|
31
|
+
[InviteUserModalFields.PhoneNumber]: HiddenOrEdit;
|
|
32
|
+
}
|
|
33
|
+
export interface MapInviteUserFieldToSettings extends Record<keyof InviteUserModalFields, FieldSettings> {
|
|
34
|
+
[InviteUserModalFields.Name]: FieldSettings;
|
|
35
|
+
[InviteUserModalFields.PhoneNumber]: FieldSettings;
|
|
36
|
+
}
|
|
20
37
|
export interface MapPrivacyFieldToAppearance extends Record<keyof PrivacyPageFields, HiddenOrEdit> {
|
|
21
38
|
[PrivacyPageFields.LoginSessions]: HiddenOrEdit;
|
|
22
39
|
[PrivacyPageFields.Mfa]: HiddenOrEdit;
|
|
@@ -38,8 +55,8 @@ export interface MapAccountFieldToAppearance extends Record<keyof AccountPageFie
|
|
|
38
55
|
export declare enum SecurityPageTabs {
|
|
39
56
|
SessionManagement = "sessionManagement",
|
|
40
57
|
GeneralSettings = "generalSettings",
|
|
41
|
-
|
|
42
|
-
|
|
58
|
+
IpRestrictions = "ipRestrictions",
|
|
59
|
+
DomainRestrictions = "domainRestrictions"
|
|
43
60
|
}
|
|
44
61
|
export declare enum SessionManagementTabFields {
|
|
45
62
|
IdleSessionTimeout = "idleSessionTimeout",
|
|
@@ -51,10 +68,10 @@ export declare enum GeneralSettingsTabFields {
|
|
|
51
68
|
UserLockout = "userLockout",
|
|
52
69
|
PasswordHistory = "passwordHistory"
|
|
53
70
|
}
|
|
54
|
-
export declare enum
|
|
71
|
+
export declare enum IpRestrictionsTabFields {
|
|
55
72
|
IpAddressRestrictions = "ipAddressRestrictions"
|
|
56
73
|
}
|
|
57
|
-
export declare enum
|
|
74
|
+
export declare enum DomainRestrictionsTabFields {
|
|
58
75
|
RestrictSignupByEmailDomain = "restrictSignupByEmailDomain"
|
|
59
76
|
}
|
|
60
77
|
export interface MapSecurityFieldToAppearance extends Record<keyof SecurityPageFields, FieldAppearance> {
|
|
@@ -64,7 +81,7 @@ export interface MapSecurityFieldToAppearance extends Record<keyof SecurityPageF
|
|
|
64
81
|
[GeneralSettingsTabFields.Mfa]: FieldAppearance;
|
|
65
82
|
[GeneralSettingsTabFields.UserLockout]: FieldAppearance;
|
|
66
83
|
[GeneralSettingsTabFields.PasswordHistory]: FieldAppearance;
|
|
67
|
-
[
|
|
68
|
-
[
|
|
84
|
+
[IpRestrictionsTabFields.IpAddressRestrictions]: HiddenOrEdit;
|
|
85
|
+
[DomainRestrictionsTabFields.RestrictSignupByEmailDomain]: HiddenOrEdit;
|
|
69
86
|
}
|
|
70
|
-
export declare type SecurityPageFields = SessionManagementTabFields | GeneralSettingsTabFields |
|
|
87
|
+
export declare type SecurityPageFields = SessionManagementTabFields | GeneralSettingsTabFields | IpRestrictionsTabFields | DomainRestrictionsTabFields;
|
|
@@ -14,6 +14,13 @@ export let PrivacyPageFields;
|
|
|
14
14
|
PrivacyPageFields["Mfa"] = "mfa";
|
|
15
15
|
})(PrivacyPageFields || (PrivacyPageFields = {}));
|
|
16
16
|
|
|
17
|
+
export let InviteUserModalFields;
|
|
18
|
+
|
|
19
|
+
(function (InviteUserModalFields) {
|
|
20
|
+
InviteUserModalFields["Name"] = "name";
|
|
21
|
+
InviteUserModalFields["PhoneNumber"] = "phoneNumber";
|
|
22
|
+
})(InviteUserModalFields || (InviteUserModalFields = {}));
|
|
23
|
+
|
|
17
24
|
export let AccountPageFields;
|
|
18
25
|
|
|
19
26
|
(function (AccountPageFields) {
|
|
@@ -29,8 +36,8 @@ export let SecurityPageTabs;
|
|
|
29
36
|
(function (SecurityPageTabs) {
|
|
30
37
|
SecurityPageTabs["SessionManagement"] = "sessionManagement";
|
|
31
38
|
SecurityPageTabs["GeneralSettings"] = "generalSettings";
|
|
32
|
-
SecurityPageTabs["
|
|
33
|
-
SecurityPageTabs["
|
|
39
|
+
SecurityPageTabs["IpRestrictions"] = "ipRestrictions";
|
|
40
|
+
SecurityPageTabs["DomainRestrictions"] = "domainRestrictions";
|
|
34
41
|
})(SecurityPageTabs || (SecurityPageTabs = {}));
|
|
35
42
|
|
|
36
43
|
export let SessionManagementTabFields;
|
|
@@ -49,14 +56,14 @@ export let GeneralSettingsTabFields;
|
|
|
49
56
|
GeneralSettingsTabFields["PasswordHistory"] = "passwordHistory";
|
|
50
57
|
})(GeneralSettingsTabFields || (GeneralSettingsTabFields = {}));
|
|
51
58
|
|
|
52
|
-
export let
|
|
59
|
+
export let IpRestrictionsTabFields;
|
|
53
60
|
|
|
54
|
-
(function (
|
|
55
|
-
|
|
56
|
-
})(
|
|
61
|
+
(function (IpRestrictionsTabFields) {
|
|
62
|
+
IpRestrictionsTabFields["IpAddressRestrictions"] = "ipAddressRestrictions";
|
|
63
|
+
})(IpRestrictionsTabFields || (IpRestrictionsTabFields = {}));
|
|
57
64
|
|
|
58
|
-
export let
|
|
65
|
+
export let DomainRestrictionsTabFields;
|
|
59
66
|
|
|
60
|
-
(function (
|
|
61
|
-
|
|
62
|
-
})(
|
|
67
|
+
(function (DomainRestrictionsTabFields) {
|
|
68
|
+
DomainRestrictionsTabFields["RestrictSignupByEmailDomain"] = "restrictSignupByEmailDomain";
|
|
69
|
+
})(DomainRestrictionsTabFields || (DomainRestrictionsTabFields = {}));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExtendedCSSProperties } from '../Common';
|
|
2
2
|
import { PageThemeOptions } from './AdminPortalThemeOptions';
|
|
3
|
-
import { AccountPageFields, GeneralSettingsTabFields,
|
|
3
|
+
import { AccountPageFields, GeneralSettingsTabFields, InviteUserModalFields, IpRestrictionsTabFields, MapAccountFieldToAppearance, MapInviteUserFieldToAppearance, MapInviteUserFieldToSettings, MapPrivacyFieldToAppearance, MapProfileFieldToAppearance, MapSecurityFieldToAppearance, PrivacyPageFields, ProfilePageFields, SessionManagementTabFields, DomainRestrictionsTabFields, TabAppearance } from './fieldsAppearanceConsts';
|
|
4
4
|
interface ProfileProperties<K extends ProfilePageFields> {
|
|
5
5
|
appearance: MapProfileFieldToAppearance[K];
|
|
6
6
|
}
|
|
@@ -19,6 +19,13 @@ interface PrivacyProperties<K extends PrivacyPageFields> {
|
|
|
19
19
|
export declare type PrivacyFieldProperties = {
|
|
20
20
|
[K in PrivacyPageFields]: PrivacyProperties<K>;
|
|
21
21
|
};
|
|
22
|
+
interface InviteUserModalProperties<K extends InviteUserModalFields> {
|
|
23
|
+
appearance: MapInviteUserFieldToAppearance[K];
|
|
24
|
+
settings: MapInviteUserFieldToSettings[K];
|
|
25
|
+
}
|
|
26
|
+
export declare type InviteUserModalFieldProperties = {
|
|
27
|
+
[K in InviteUserModalFields]: InviteUserModalProperties<K>;
|
|
28
|
+
};
|
|
22
29
|
interface SessionManagementProperties<K extends SessionManagementTabFields> {
|
|
23
30
|
appearance: MapSecurityFieldToAppearance[K];
|
|
24
31
|
}
|
|
@@ -31,24 +38,25 @@ interface GeneralSettingsProperties<K extends GeneralSettingsTabFields> {
|
|
|
31
38
|
export declare type GeneralSettingsFieldProperties = {
|
|
32
39
|
[K in GeneralSettingsTabFields]?: GeneralSettingsProperties<K>;
|
|
33
40
|
};
|
|
34
|
-
interface
|
|
41
|
+
interface IpRestrictionsProperties<K extends IpRestrictionsTabFields> {
|
|
35
42
|
appearance: MapSecurityFieldToAppearance[K];
|
|
36
43
|
}
|
|
37
|
-
export declare type
|
|
38
|
-
[K in
|
|
44
|
+
export declare type IpRestrictionsFieldProperties = {
|
|
45
|
+
[K in IpRestrictionsTabFields]?: IpRestrictionsProperties<K>;
|
|
39
46
|
};
|
|
40
|
-
interface
|
|
47
|
+
interface DomainRestrictionsProperties<K extends DomainRestrictionsTabFields> {
|
|
41
48
|
appearance: MapSecurityFieldToAppearance[K];
|
|
42
49
|
}
|
|
43
|
-
export declare type
|
|
44
|
-
[K in
|
|
50
|
+
export declare type DomainRestrictionsFieldProperties = {
|
|
51
|
+
[K in DomainRestrictionsTabFields]?: DomainRestrictionsProperties<K>;
|
|
45
52
|
};
|
|
53
|
+
export declare type InviteUserModalFieldsProperties = Partial<InviteUserModalFieldProperties>;
|
|
46
54
|
export declare type ProfileFieldsProperties = Partial<ProfileFieldProperties>;
|
|
47
55
|
export declare type PrivacyFieldsProperties = Partial<PrivacyFieldProperties>;
|
|
48
56
|
export declare type AccountFieldsProperties = Partial<AccountFieldProperties>;
|
|
49
57
|
export declare type SessionManagementTabFieldsProperties = Partial<SessionManagementFieldProperties>;
|
|
50
|
-
export declare type
|
|
51
|
-
export declare type
|
|
58
|
+
export declare type DomainRestrictionsTabFieldsProperties = Partial<DomainRestrictionsFieldProperties>;
|
|
59
|
+
export declare type IpRestrictionsTabFieldsProperties = Partial<IpRestrictionsFieldProperties>;
|
|
52
60
|
export declare type GeneralSettingsTabFieldsProperties = Partial<GeneralSettingsFieldProperties>;
|
|
53
61
|
export interface TabProperties extends Omit<PageThemeOptions, 'header'> {
|
|
54
62
|
appearance?: TabAppearance;
|
|
@@ -56,14 +64,14 @@ export interface TabProperties extends Omit<PageThemeOptions, 'header'> {
|
|
|
56
64
|
export declare type SessionManagementTabProperties = TabProperties & {
|
|
57
65
|
fieldsProperties?: SessionManagementTabFieldsProperties;
|
|
58
66
|
};
|
|
59
|
-
export declare type
|
|
60
|
-
fieldsProperties?:
|
|
67
|
+
export declare type DomainRestrictionsTabProperties = TabProperties & {
|
|
68
|
+
fieldsProperties?: DomainRestrictionsTabFieldsProperties;
|
|
61
69
|
titleContainer?: ExtendedCSSProperties;
|
|
62
70
|
allowToggleButton?: ExtendedCSSProperties;
|
|
63
71
|
denyToggleButton?: ExtendedCSSProperties;
|
|
64
72
|
};
|
|
65
|
-
export declare type
|
|
66
|
-
fieldsProperties?:
|
|
73
|
+
export declare type IpRestrictionsTabProperties = TabProperties & {
|
|
74
|
+
fieldsProperties?: IpRestrictionsTabFieldsProperties;
|
|
67
75
|
titleContainer?: ExtendedCSSProperties;
|
|
68
76
|
allowToggleButton?: ExtendedCSSProperties;
|
|
69
77
|
denyToggleButton?: ExtendedCSSProperties;
|
|
@@ -73,9 +81,9 @@ export declare type GeneralSettingsTabProperties = TabProperties & {
|
|
|
73
81
|
};
|
|
74
82
|
export declare type SecurityTabsProperties = {
|
|
75
83
|
generalSettings?: GeneralSettingsTabProperties;
|
|
76
|
-
signupRestrictions?: SignupTabProperties;
|
|
77
|
-
loginRestrictions?: LoginRestrictionsTabProperties;
|
|
78
84
|
sessionManagement?: SessionManagementTabProperties;
|
|
85
|
+
ipRestrictions?: IpRestrictionsTabProperties;
|
|
86
|
+
domainRestrictions?: DomainRestrictionsTabProperties;
|
|
79
87
|
};
|
|
80
|
-
export declare type TabsAndFieldsProperties = Partial<ProfileFieldProperties> | Partial<SessionManagementFieldProperties> | Partial<
|
|
88
|
+
export declare type TabsAndFieldsProperties = Partial<ProfileFieldProperties> | Partial<SessionManagementFieldProperties> | Partial<DomainRestrictionsFieldProperties> | Partial<IpRestrictionsFieldProperties> | GeneralSettingsFieldProperties | SecurityTabsProperties | Partial<PrivacyFieldProperties> | Partial<AccountFieldProperties> | Partial<InviteUserModalFieldProperties>;
|
|
81
89
|
export {};
|
package/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.SessionManagementTabFields = exports.SecurityPageTabs = exports.ProfilePageFields = exports.PrivacyPageFields = exports.IpRestrictionsTabFields = exports.InviteUserModalFields = exports.GeneralSettingsTabFields = exports.DomainRestrictionsTabFields = exports.AccountPageFields = void 0;
|
|
7
7
|
let ProfilePageFields;
|
|
8
8
|
exports.ProfilePageFields = ProfilePageFields;
|
|
9
9
|
|
|
@@ -22,6 +22,14 @@ exports.PrivacyPageFields = PrivacyPageFields;
|
|
|
22
22
|
PrivacyPageFields["Mfa"] = "mfa";
|
|
23
23
|
})(PrivacyPageFields || (exports.PrivacyPageFields = PrivacyPageFields = {}));
|
|
24
24
|
|
|
25
|
+
let InviteUserModalFields;
|
|
26
|
+
exports.InviteUserModalFields = InviteUserModalFields;
|
|
27
|
+
|
|
28
|
+
(function (InviteUserModalFields) {
|
|
29
|
+
InviteUserModalFields["Name"] = "name";
|
|
30
|
+
InviteUserModalFields["PhoneNumber"] = "phoneNumber";
|
|
31
|
+
})(InviteUserModalFields || (exports.InviteUserModalFields = InviteUserModalFields = {}));
|
|
32
|
+
|
|
25
33
|
let AccountPageFields;
|
|
26
34
|
exports.AccountPageFields = AccountPageFields;
|
|
27
35
|
|
|
@@ -39,8 +47,8 @@ exports.SecurityPageTabs = SecurityPageTabs;
|
|
|
39
47
|
(function (SecurityPageTabs) {
|
|
40
48
|
SecurityPageTabs["SessionManagement"] = "sessionManagement";
|
|
41
49
|
SecurityPageTabs["GeneralSettings"] = "generalSettings";
|
|
42
|
-
SecurityPageTabs["
|
|
43
|
-
SecurityPageTabs["
|
|
50
|
+
SecurityPageTabs["IpRestrictions"] = "ipRestrictions";
|
|
51
|
+
SecurityPageTabs["DomainRestrictions"] = "domainRestrictions";
|
|
44
52
|
})(SecurityPageTabs || (exports.SecurityPageTabs = SecurityPageTabs = {}));
|
|
45
53
|
|
|
46
54
|
let SessionManagementTabFields;
|
|
@@ -61,16 +69,16 @@ exports.GeneralSettingsTabFields = GeneralSettingsTabFields;
|
|
|
61
69
|
GeneralSettingsTabFields["PasswordHistory"] = "passwordHistory";
|
|
62
70
|
})(GeneralSettingsTabFields || (exports.GeneralSettingsTabFields = GeneralSettingsTabFields = {}));
|
|
63
71
|
|
|
64
|
-
let
|
|
65
|
-
exports.
|
|
72
|
+
let IpRestrictionsTabFields;
|
|
73
|
+
exports.IpRestrictionsTabFields = IpRestrictionsTabFields;
|
|
66
74
|
|
|
67
|
-
(function (
|
|
68
|
-
|
|
69
|
-
})(
|
|
75
|
+
(function (IpRestrictionsTabFields) {
|
|
76
|
+
IpRestrictionsTabFields["IpAddressRestrictions"] = "ipAddressRestrictions";
|
|
77
|
+
})(IpRestrictionsTabFields || (exports.IpRestrictionsTabFields = IpRestrictionsTabFields = {}));
|
|
70
78
|
|
|
71
|
-
let
|
|
72
|
-
exports.
|
|
79
|
+
let DomainRestrictionsTabFields;
|
|
80
|
+
exports.DomainRestrictionsTabFields = DomainRestrictionsTabFields;
|
|
73
81
|
|
|
74
|
-
(function (
|
|
75
|
-
|
|
76
|
-
})(
|
|
82
|
+
(function (DomainRestrictionsTabFields) {
|
|
83
|
+
DomainRestrictionsTabFields["RestrictSignupByEmailDomain"] = "restrictSignupByEmailDomain";
|
|
84
|
+
})(DomainRestrictionsTabFields || (exports.DomainRestrictionsTabFields = DomainRestrictionsTabFields = {}));
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/types",
|
|
3
|
-
"version": "6.46.0
|
|
3
|
+
"version": "6.46.0",
|
|
4
4
|
"main": "./node/index.js",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@babel/runtime": "^7.18.6",
|
|
9
|
-
"@frontegg/redux-store": "6.46.0
|
|
9
|
+
"@frontegg/redux-store": "6.46.0",
|
|
10
10
|
"csstype": "^3.0.9",
|
|
11
11
|
"deepmerge": "^4.2.2"
|
|
12
12
|
},
|