@omnia/fx-models 8.0.61-dev → 8.0.62-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/ManifestIds.d.ts
CHANGED
@@ -167,6 +167,8 @@ export declare class OmniaWebComponentManifests {
|
|
167
167
|
static get OChip(): Guid;
|
168
168
|
static get ONotification(): Guid;
|
169
169
|
static get OColumn(): Guid;
|
170
|
+
static get OColumnGrid(): Guid;
|
171
|
+
static get ORow(): Guid;
|
170
172
|
static get ODataTable(): Guid;
|
171
173
|
static get ODataTableServer(): Guid;
|
172
174
|
static get ODialog(): Guid;
|
package/ManifestIds.js
CHANGED
@@ -514,6 +514,12 @@ class OmniaWebComponentManifests {
|
|
514
514
|
static get OColumn() {
|
515
515
|
return new models_1.Guid("d116618a-12d0-439f-8da8-09535809c260");
|
516
516
|
}
|
517
|
+
static get OColumnGrid() {
|
518
|
+
return new models_1.Guid("58850535-f480-40bc-98b4-0064f89d19d0");
|
519
|
+
}
|
520
|
+
static get ORow() {
|
521
|
+
return new models_1.Guid("ee11b15d-9e30-495f-b46b-0c84244110c2");
|
522
|
+
}
|
517
523
|
static get ODataTable() {
|
518
524
|
return new models_1.Guid("27c00720-f7fb-46bb-b392-86a2cb94797c");
|
519
525
|
}
|
@@ -4,6 +4,7 @@ export interface AuthenticationSettings {
|
|
4
4
|
onBoardingSettings: OnBoardingAuthSettings;
|
5
5
|
azureAdSettings: AzureAdAuthSettings;
|
6
6
|
omniaAuthSettings: OmniaAuthSettings[];
|
7
|
+
sharepointAddInSettings: SharepointAddInSettings;
|
7
8
|
refreshedTokenSettings: RefreshedTokenSettings;
|
8
9
|
}
|
9
10
|
export interface OnBoardingAuthSettings {
|
@@ -13,6 +14,9 @@ export interface OnBoardingAuthSettings {
|
|
13
14
|
export interface AzureAdAuthSettings {
|
14
15
|
enabled: boolean;
|
15
16
|
}
|
17
|
+
export interface SharepointAddInSettings {
|
18
|
+
enabled: boolean;
|
19
|
+
}
|
16
20
|
export interface OmniaAuthSettings {
|
17
21
|
option: AuthenticationOption;
|
18
22
|
multiFactorOptions: Array<AuthenticationOption>;
|