@forge/manifest 3.9.0 → 3.9.1-next.0

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.9.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2ae0afe: Update manifest definitions
8
+
3
9
  ## 3.9.0
4
10
 
5
11
  ### Minor Changes
@@ -1163,6 +1163,26 @@
1163
1163
  "default": false,
1164
1164
  "description": "A flag indicating whether this settings instance will be used as the app's \"Get Started\""
1165
1165
  },
1166
+ "keyboardShortcut": {
1167
+ "type": "object",
1168
+ "additionalProperties": false,
1169
+ "properties": {
1170
+ "accelerator": {
1171
+ "type": "string",
1172
+ "minLength": 1,
1173
+ "maxLength": 255,
1174
+ "description": "Keyboard key(s)/combination(s) used to trigger this module."
1175
+ },
1176
+ "description": {
1177
+ "type": "string",
1178
+ "minLength": 1,
1179
+ "maxLength": 1000
1180
+ }
1181
+ },
1182
+ "required": [
1183
+ "accelerator"
1184
+ ]
1185
+ },
1166
1186
  "key": {
1167
1187
  "$ref": "#/definitions/ModuleKeySchema"
1168
1188
  }
@@ -1220,6 +1240,26 @@
1220
1240
  "default": false,
1221
1241
  "description": "A flag indicating whether this settings instance will be used as the app's \"Get Started\""
1222
1242
  },
1243
+ "keyboardShortcut": {
1244
+ "type": "object",
1245
+ "additionalProperties": false,
1246
+ "properties": {
1247
+ "accelerator": {
1248
+ "type": "string",
1249
+ "minLength": 1,
1250
+ "maxLength": 255,
1251
+ "description": "Keyboard key(s)/combination(s) used to trigger this module."
1252
+ },
1253
+ "description": {
1254
+ "type": "string",
1255
+ "minLength": 1,
1256
+ "maxLength": 1000
1257
+ }
1258
+ },
1259
+ "required": [
1260
+ "accelerator"
1261
+ ]
1262
+ },
1223
1263
  "key": {
1224
1264
  "$ref": "#/definitions/ModuleKeySchema"
1225
1265
  }
@@ -691,6 +691,13 @@ export interface Modules {
691
691
  * A flag indicating whether this settings instance will be used as the app's "Get Started"
692
692
  */
693
693
  useAsGetStarted?: boolean;
694
+ keyboardShortcut?: {
695
+ /**
696
+ * Keyboard key(s)/combination(s) used to trigger this module.
697
+ */
698
+ accelerator: string;
699
+ description?: string;
700
+ };
694
701
  key: ModuleKeySchema;
695
702
  [k: string]: unknown;
696
703
  }
@@ -712,6 +719,13 @@ export interface Modules {
712
719
  * A flag indicating whether this settings instance will be used as the app's "Get Started"
713
720
  */
714
721
  useAsGetStarted?: boolean;
722
+ keyboardShortcut?: {
723
+ /**
724
+ * Keyboard key(s)/combination(s) used to trigger this module.
725
+ */
726
+ accelerator: string;
727
+ description?: string;
728
+ };
715
729
  key: ModuleKeySchema;
716
730
  [k: string]: unknown;
717
731
  }
@@ -731,6 +745,13 @@ export interface Modules {
731
745
  * A flag indicating whether this settings instance will be used as the app's "Get Started"
732
746
  */
733
747
  useAsGetStarted?: boolean;
748
+ keyboardShortcut?: {
749
+ /**
750
+ * Keyboard key(s)/combination(s) used to trigger this module.
751
+ */
752
+ accelerator: string;
753
+ description?: string;
754
+ };
734
755
  key: ModuleKeySchema;
735
756
  [k: string]: unknown;
736
757
  }
@@ -752,6 +773,13 @@ export interface Modules {
752
773
  * A flag indicating whether this settings instance will be used as the app's "Get Started"
753
774
  */
754
775
  useAsGetStarted?: boolean;
776
+ keyboardShortcut?: {
777
+ /**
778
+ * Keyboard key(s)/combination(s) used to trigger this module.
779
+ */
780
+ accelerator: string;
781
+ description?: string;
782
+ };
755
783
  key: ModuleKeySchema;
756
784
  [k: string]: unknown;
757
785
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.9.0",
3
+ "version": "3.9.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {