@omnia/fx-models 8.0.94-dev → 8.0.95-dev
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/Exposes.d.ts +2 -0
- package/Exposes.js +2 -0
- package/LoginLog.d.ts +12 -0
- package/LoginLog.js +2 -0
- package/LoginLogFilter.d.ts +11 -0
- package/LoginLogFilter.js +2 -0
- package/ManifestIds.d.ts +1 -0
- package/ManifestIds.js +3 -0
- package/PermissionInputSettings.d.ts +2 -1
- package/identities/UserIdentity.d.ts +2 -0
- package/package.json +1 -1
package/Exposes.d.ts
CHANGED
package/Exposes.js
CHANGED
@@ -155,3 +155,5 @@ tslib_1.__exportStar(require("./PromotedTagOptions"), exports);
|
|
155
155
|
tslib_1.__exportStar(require("./SharepointVideo"), exports);
|
156
156
|
tslib_1.__exportStar(require("./connected-tenants"), exports);
|
157
157
|
tslib_1.__exportStar(require("./MediaScalingSettings"), exports);
|
158
|
+
tslib_1.__exportStar(require("./LoginLog"), exports);
|
159
|
+
tslib_1.__exportStar(require("./LoginLogFilter"), exports);
|
package/LoginLog.d.ts
ADDED
package/LoginLog.js
ADDED
package/ManifestIds.d.ts
CHANGED
@@ -368,6 +368,7 @@ export declare class OmniaWebComponentManifests {
|
|
368
368
|
static get FxUxLikeListingTemplate(): Guid;
|
369
369
|
static get FxUxPostLikeListingTemplate(): Guid;
|
370
370
|
static get FxUxPermissionInput(): Guid;
|
371
|
+
static get FxUxTenantAdminPermissionInput(): Guid;
|
371
372
|
static get FxUxSecurityTrimmer(): Guid;
|
372
373
|
static get FxUxSpacingPicker(): Guid;
|
373
374
|
static get FxUxFilterPicker(): Guid;
|
package/ManifestIds.js
CHANGED
@@ -1124,6 +1124,9 @@ class OmniaWebComponentManifests {
|
|
1124
1124
|
static get FxUxPermissionInput() {
|
1125
1125
|
return new models_1.Guid("fb67bd4d-1cc2-4073-ab12-3c822d78ea17");
|
1126
1126
|
}
|
1127
|
+
static get FxUxTenantAdminPermissionInput() {
|
1128
|
+
return new models_1.Guid("d4adc78e-79ad-4c2c-889e-52755e2bbede");
|
1129
|
+
}
|
1127
1130
|
static get FxUxSecurityTrimmer() {
|
1128
1131
|
return new models_1.Guid("379287b1-efe6-4a49-a43f-cd754d1fd951");
|
1129
1132
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { GuidValue } from "../shared";
|
2
|
-
import { PrincipalTypes } from "./Enums";
|
2
|
+
import { BoolFilter, PrincipalTypes } from "./Enums";
|
3
3
|
import { ISpecialUserConfiguration } from "./ISpecialUserConfiguration";
|
4
4
|
export interface PermissionInputSettings {
|
5
5
|
roles: Array<{
|
@@ -10,5 +10,6 @@ export interface PermissionInputSettings {
|
|
10
10
|
providerIds?: GuidValue[];
|
11
11
|
required?: boolean;
|
12
12
|
enableSpecialUser?: ISpecialUserConfiguration;
|
13
|
+
emailEnabled?: BoolFilter;
|
13
14
|
}>;
|
14
15
|
}
|
@@ -25,6 +25,8 @@ export declare class ResolvedUserIdentity extends UserIdentity implements IResol
|
|
25
25
|
providerIdentity: string;
|
26
26
|
ownerId: string;
|
27
27
|
isRemoved: boolean;
|
28
|
+
firstLogin: Date;
|
29
|
+
lastLogin: Date;
|
28
30
|
static create(options: Partial<ResolvedUserIdentity>): ResolvedUserIdentity;
|
29
31
|
static isAzureAdUser(resolvedUser: ResolvedUserIdentity): boolean;
|
30
32
|
static isOmniaUser(resolvedUser: ResolvedUserIdentity): boolean;
|