@omnia/fx-models 8.0.116-dev → 8.0.117-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
@@ -100,10 +100,12 @@ export * from "./FileValidationResult";
|
|
100
100
|
export * from "./Func";
|
101
101
|
export * from "./FilterpickerModel";
|
102
102
|
export * from "./RollupMetricSettings";
|
103
|
+
export * from "./LoginLogItem";
|
103
104
|
export * from "./ChromeLayoutDefinition";
|
104
105
|
export * from "./NullOf";
|
105
106
|
export * from "./NotNullish";
|
106
107
|
export * from "./ValueOf";
|
108
|
+
export * from "./LoginLogFilter";
|
107
109
|
export * from "./ux";
|
108
110
|
export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
|
109
111
|
export * from "./admin";
|
@@ -142,5 +144,5 @@ export * from "./PromotedTagOptions";
|
|
142
144
|
export * from "./SharepointVideo";
|
143
145
|
export * from "./connected-tenants";
|
144
146
|
export * from "./MediaScalingSettings";
|
145
|
-
export * from "./
|
147
|
+
export * from "./LoginLogItem";
|
146
148
|
export * from "./LoginLogFilter";
|
package/Exposes.js
CHANGED
@@ -106,10 +106,12 @@ tslib_1.__exportStar(require("./FileValidationResult"), exports);
|
|
106
106
|
tslib_1.__exportStar(require("./Func"), exports);
|
107
107
|
tslib_1.__exportStar(require("./FilterpickerModel"), exports);
|
108
108
|
tslib_1.__exportStar(require("./RollupMetricSettings"), exports);
|
109
|
+
tslib_1.__exportStar(require("./LoginLogItem"), exports);
|
109
110
|
tslib_1.__exportStar(require("./ChromeLayoutDefinition"), exports);
|
110
111
|
tslib_1.__exportStar(require("./NullOf"), exports);
|
111
112
|
tslib_1.__exportStar(require("./NotNullish"), exports);
|
112
113
|
tslib_1.__exportStar(require("./ValueOf"), exports);
|
114
|
+
tslib_1.__exportStar(require("./LoginLogFilter"), exports);
|
113
115
|
//************************************************************************************ */
|
114
116
|
// End of file exports
|
115
117
|
//************************************************************************************ */
|
@@ -157,5 +159,5 @@ tslib_1.__exportStar(require("./PromotedTagOptions"), exports);
|
|
157
159
|
tslib_1.__exportStar(require("./SharepointVideo"), exports);
|
158
160
|
tslib_1.__exportStar(require("./connected-tenants"), exports);
|
159
161
|
tslib_1.__exportStar(require("./MediaScalingSettings"), exports);
|
160
|
-
tslib_1.__exportStar(require("./
|
162
|
+
tslib_1.__exportStar(require("./LoginLogItem"), exports);
|
161
163
|
tslib_1.__exportStar(require("./LoginLogFilter"), exports);
|
@@ -1,5 +1,6 @@
|
|
1
|
+
import { Guid } from "../shared";
|
1
2
|
import { Identity } from "./identities";
|
2
|
-
export interface
|
3
|
+
export interface LoginLogItem {
|
3
4
|
id: number;
|
4
5
|
identity: Identity;
|
5
6
|
device: string;
|
@@ -8,5 +9,6 @@ export interface LoginLog {
|
|
8
9
|
location: string;
|
9
10
|
url: string;
|
10
11
|
currentSessionId: string;
|
12
|
+
authenticationTypeId: Guid;
|
11
13
|
createdAt: Date;
|
12
14
|
}
|
@@ -63,3 +63,8 @@ export interface EnterprisePropertyDataTypeProviderRegistration {
|
|
63
63
|
displayModeElementName?: string;
|
64
64
|
valueDefinitionElementName?: string;
|
65
65
|
}
|
66
|
+
export interface EnterprisePropertyDataTypeValueDefinitionRenderer {
|
67
|
+
modelValue: EnterprisePropertyDataItemSettings;
|
68
|
+
"onUpdate:modelValue"(value: EnterprisePropertyDataItemSettings): void;
|
69
|
+
disabled?: boolean;
|
70
|
+
}
|
package/package.json
CHANGED
File without changes
|