@forge/manifest 7.11.0-next.0 → 7.11.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,21 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3cf86f9: Bump sentry/node package to fix issues with forge command
8
+
9
+ ### Patch Changes
10
+
11
+ - fd07774: Update manifest definitions
12
+
13
+ ## 7.11.0-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - fd07774: Update manifest definitions
18
+
3
19
  ## 7.11.0-next.0
4
20
 
5
21
  ### Minor Changes
@@ -12218,6 +12218,18 @@
12218
12218
  "minLength": 1,
12219
12219
  "maxLength": 255
12220
12220
  },
12221
+ "viewportSize": {
12222
+ "minLength": 1,
12223
+ "maxLength": 255,
12224
+ "enum": [
12225
+ "large",
12226
+ "max",
12227
+ "medium",
12228
+ "small",
12229
+ "xlarge"
12230
+ ],
12231
+ "type": "string"
12232
+ },
12221
12233
  "actions": {
12222
12234
  "type": "array",
12223
12235
  "items": {
@@ -12710,6 +12722,18 @@
12710
12722
  "minLength": 1,
12711
12723
  "maxLength": 255
12712
12724
  },
12725
+ "viewportSize": {
12726
+ "minLength": 1,
12727
+ "maxLength": 255,
12728
+ "enum": [
12729
+ "large",
12730
+ "max",
12731
+ "medium",
12732
+ "small",
12733
+ "xlarge"
12734
+ ],
12735
+ "type": "string"
12736
+ },
12713
12737
  "actions": {
12714
12738
  "type": "array",
12715
12739
  "items": {
@@ -6362,6 +6362,7 @@ export interface Modules {
6362
6362
  endpoint: string;
6363
6363
  };
6364
6364
  resourceUploadId?: string;
6365
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6365
6366
  actions?: {
6366
6367
  key: string;
6367
6368
  title:
@@ -6406,6 +6407,7 @@ export interface Modules {
6406
6407
  endpoint: string;
6407
6408
  };
6408
6409
  resourceUploadId?: string;
6410
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6409
6411
  actions?: {
6410
6412
  key: string;
6411
6413
  title:
@@ -6564,6 +6566,7 @@ export interface Modules {
6564
6566
  endpoint: string;
6565
6567
  };
6566
6568
  resourceUploadId?: string;
6569
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6567
6570
  actions?: {
6568
6571
  key: string;
6569
6572
  title:
@@ -6608,6 +6611,7 @@ export interface Modules {
6608
6611
  endpoint: string;
6609
6612
  };
6610
6613
  resourceUploadId?: string;
6614
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6611
6615
  actions?: {
6612
6616
  key: string;
6613
6617
  title:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.11.0-next.0",
3
+ "version": "7.11.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {