@forge/manifest 4.3.0-next.3 → 4.3.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,24 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0871a3b: Added validation for Confluence keyboard shortcuts to disallow multiple non-modifier keys and enforce that modifier keys precede the main key being modified.
8
+
9
+ ### Patch Changes
10
+
11
+ - 1c51c99: Add scope mappings for Confluence page and blogpost events
12
+ - f8d567a: Update manifest definitions
13
+ - 47a47a4: Update manifest definitions
14
+ - aa3a70e: Update manifest definitions
15
+
16
+ ## 4.3.0-next.4
17
+
18
+ ### Patch Changes
19
+
20
+ - aa3a70e: Update manifest definitions
21
+
3
22
  ## 4.3.0-next.3
4
23
 
5
24
  ### Patch Changes
@@ -392,6 +392,14 @@
392
392
  }
393
393
  }
394
394
  },
395
+ "layout": {
396
+ "enum": [
397
+ "inline",
398
+ "block"
399
+ ],
400
+ "type": "string",
401
+ "default": "block"
402
+ },
395
403
  "key": {
396
404
  "$ref": "#/definitions/ModuleKeySchema"
397
405
  }
@@ -498,7 +506,15 @@
498
506
  "default"
499
507
  ],
500
508
  "type": "string",
501
- "default": "default"
509
+ "default": "default",
510
+ "layout": {
511
+ "enum": [
512
+ "inline",
513
+ "block"
514
+ ],
515
+ "type": "string",
516
+ "default": "block"
517
+ }
502
518
  },
503
519
  "key": {
504
520
  "$ref": "#/definitions/ModuleKeySchema"
@@ -264,6 +264,7 @@ export interface Modules {
264
264
  schema?: 'confluence/macro_homepage';
265
265
  [k: string]: unknown;
266
266
  };
267
+ layout?: 'inline' | 'block';
267
268
  key: ModuleKeySchema;
268
269
  [k: string]: unknown;
269
270
  }
@@ -310,6 +311,7 @@ export interface Modules {
310
311
  schema?: 'confluence/macro_homepage';
311
312
  [k: string]: unknown;
312
313
  };
314
+ layout?: 'inline' | 'block';
313
315
  key: ModuleKeySchema;
314
316
  [k: string]: unknown;
315
317
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.3.0-next.3",
3
+ "version": "4.3.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {