@nimee/shared-types 1.0.281 → 1.0.282
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.
|
@@ -149,5 +149,9 @@ export interface IMarketPlace {
|
|
|
149
149
|
shouldForce2fa?: boolean;
|
|
150
150
|
twoFaIntervalMinutes?: number;
|
|
151
151
|
inactivityConfig?: IInactivityConfig;
|
|
152
|
+
sessionConfig?: {
|
|
153
|
+
enabled: boolean;
|
|
154
|
+
browserCloseHours: number;
|
|
155
|
+
};
|
|
152
156
|
allowTicketWallet?: boolean;
|
|
153
157
|
}
|
package/package.json
CHANGED
|
@@ -162,5 +162,9 @@ export interface IMarketPlace {
|
|
|
162
162
|
shouldForce2fa?: boolean;
|
|
163
163
|
twoFaIntervalMinutes?: number; // Grace period after 2FA verification. 0 or undefined = every login
|
|
164
164
|
inactivityConfig?: IInactivityConfig;
|
|
165
|
+
sessionConfig?: {
|
|
166
|
+
enabled: boolean;
|
|
167
|
+
browserCloseHours: number;
|
|
168
|
+
};
|
|
165
169
|
allowTicketWallet?: boolean;
|
|
166
170
|
}
|