@forge/manifest 4.3.0-next.3 → 4.3.0-next.4

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
+ ## 4.3.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - aa3a70e: Update manifest definitions
8
+
3
9
  ## 4.3.0-next.3
4
10
 
5
11
  ### 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-next.4",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {