@forge/manifest 3.5.0-next.1 → 3.5.0-next.2
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/CHANGELOG.md +6 -0
- package/out/schema/manifest-schema.json +10 -0
- package/out/schema/manifest.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1111,6 +1111,11 @@
|
|
|
1111
1111
|
"displayConditions": {
|
|
1112
1112
|
"type": "object"
|
|
1113
1113
|
},
|
|
1114
|
+
"useAsConfig": {
|
|
1115
|
+
"type": "boolean",
|
|
1116
|
+
"default": false,
|
|
1117
|
+
"description": "A flag indicating whether this settings instance will be used as the app's configuration"
|
|
1118
|
+
},
|
|
1114
1119
|
"key": {
|
|
1115
1120
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1116
1121
|
}
|
|
@@ -1158,6 +1163,11 @@
|
|
|
1158
1163
|
"displayConditions": {
|
|
1159
1164
|
"type": "object"
|
|
1160
1165
|
},
|
|
1166
|
+
"useAsConfig": {
|
|
1167
|
+
"type": "boolean",
|
|
1168
|
+
"default": false,
|
|
1169
|
+
"description": "A flag indicating whether this settings instance will be used as the app's configuration"
|
|
1170
|
+
},
|
|
1161
1171
|
"key": {
|
|
1162
1172
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1163
1173
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -663,6 +663,10 @@ export interface Modules {
|
|
|
663
663
|
displayConditions?: {
|
|
664
664
|
[k: string]: unknown;
|
|
665
665
|
};
|
|
666
|
+
/**
|
|
667
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
668
|
+
*/
|
|
669
|
+
useAsConfig?: boolean;
|
|
666
670
|
key: ModuleKeySchema;
|
|
667
671
|
[k: string]: unknown;
|
|
668
672
|
}
|
|
@@ -676,6 +680,10 @@ export interface Modules {
|
|
|
676
680
|
displayConditions?: {
|
|
677
681
|
[k: string]: unknown;
|
|
678
682
|
};
|
|
683
|
+
/**
|
|
684
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
685
|
+
*/
|
|
686
|
+
useAsConfig?: boolean;
|
|
679
687
|
key: ModuleKeySchema;
|
|
680
688
|
[k: string]: unknown;
|
|
681
689
|
}
|
|
@@ -687,6 +695,10 @@ export interface Modules {
|
|
|
687
695
|
displayConditions?: {
|
|
688
696
|
[k: string]: unknown;
|
|
689
697
|
};
|
|
698
|
+
/**
|
|
699
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
700
|
+
*/
|
|
701
|
+
useAsConfig?: boolean;
|
|
690
702
|
key: ModuleKeySchema;
|
|
691
703
|
[k: string]: unknown;
|
|
692
704
|
}
|
|
@@ -700,6 +712,10 @@ export interface Modules {
|
|
|
700
712
|
displayConditions?: {
|
|
701
713
|
[k: string]: unknown;
|
|
702
714
|
};
|
|
715
|
+
/**
|
|
716
|
+
* A flag indicating whether this settings instance will be used as the app's configuration
|
|
717
|
+
*/
|
|
718
|
+
useAsConfig?: boolean;
|
|
703
719
|
key: ModuleKeySchema;
|
|
704
720
|
[k: string]: unknown;
|
|
705
721
|
}
|