@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 CHANGED
@@ -140,3 +140,5 @@ export * from "./PromotedTagOptions";
140
140
  export * from "./SharepointVideo";
141
141
  export * from "./connected-tenants";
142
142
  export * from "./MediaScalingSettings";
143
+ export * from "./LoginLog";
144
+ export * from "./LoginLogFilter";
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
@@ -0,0 +1,12 @@
1
+ import { Identity } from "./identities";
2
+ export interface LoginLog {
3
+ id: number;
4
+ identity: Identity;
5
+ device: string;
6
+ status: string;
7
+ ipAddress: string;
8
+ location: string;
9
+ url: string;
10
+ currentSessionId: string;
11
+ createdAt: Date;
12
+ }
package/LoginLog.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export interface LoginLogFilter {
2
+ fromDate?: Date;
3
+ toDate?: Date;
4
+ pageNumber?: number;
5
+ pageSize?: number;
6
+ sortColumn?: LoginLogSortColumn;
7
+ sortDesc?: boolean;
8
+ }
9
+ export declare enum LoginLogSortColumn {
10
+ Time = 1
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.94-dev",
4
+ "version": "8.0.95-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"