@omnia/fx-models 8.0.356-dev → 8.0.357-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/Enums.d.ts +3 -1
- package/Enums.js +2 -0
- package/Layout.d.ts +2 -2
- package/package.json +1 -1
package/Enums.d.ts
CHANGED
@@ -371,7 +371,9 @@ export declare enum FeatureInstanceStatus {
|
|
371
371
|
Error = 4,
|
372
372
|
AdminConsentActivating = 5,
|
373
373
|
AdminConsentUpgrading = 6,
|
374
|
-
AdminConsentWaitingActivation = 7
|
374
|
+
AdminConsentWaitingActivation = 7,
|
375
|
+
WaitingForCloudEnsureInfrastructureActivating = 8,
|
376
|
+
WaitingForCloudEnsureInfrastructureUpgrading = 9
|
375
377
|
}
|
376
378
|
export declare enum LegacyThemeType {
|
377
379
|
Light = "Light",
|
package/Enums.js
CHANGED
@@ -410,6 +410,8 @@ var FeatureInstanceStatus;
|
|
410
410
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentActivating"] = 5] = "AdminConsentActivating";
|
411
411
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentUpgrading"] = 6] = "AdminConsentUpgrading";
|
412
412
|
FeatureInstanceStatus[FeatureInstanceStatus["AdminConsentWaitingActivation"] = 7] = "AdminConsentWaitingActivation";
|
413
|
+
FeatureInstanceStatus[FeatureInstanceStatus["WaitingForCloudEnsureInfrastructureActivating"] = 8] = "WaitingForCloudEnsureInfrastructureActivating";
|
414
|
+
FeatureInstanceStatus[FeatureInstanceStatus["WaitingForCloudEnsureInfrastructureUpgrading"] = 9] = "WaitingForCloudEnsureInfrastructureUpgrading";
|
413
415
|
})(FeatureInstanceStatus || (exports.FeatureInstanceStatus = FeatureInstanceStatus = {}));
|
414
416
|
var LegacyThemeType;
|
415
417
|
(function (LegacyThemeType) {
|
package/Layout.d.ts
CHANGED
@@ -389,7 +389,7 @@ export interface ReactiveLayoutItemSettings {
|
|
389
389
|
id: string;
|
390
390
|
isExisting: boolean;
|
391
391
|
value: any;
|
392
|
-
|
392
|
+
editElementManifestId?: guid;
|
393
393
|
defaultSettings?: any;
|
394
394
|
serializationOptions?: JsonSerializationOptions;
|
395
395
|
}
|
@@ -405,7 +405,7 @@ export declare enum JsonNullValueHandling {
|
|
405
405
|
ignore = 1
|
406
406
|
}
|
407
407
|
export interface BlockSettingsReaderOptions<T> {
|
408
|
-
editElementManifestId
|
408
|
+
editElementManifestId: guid;
|
409
409
|
defaultValue?: T;
|
410
410
|
missingPropertyHandler?: (missingPropertyName: string, parent: object, defaultValue: object) => object;
|
411
411
|
serializationOptions?: JsonSerializationOptions;
|