@forge/manifest 8.0.0-next.11 → 8.0.0-next.12

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
+ ## 8.0.0-next.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 9f77b20: Update manifest definitions
8
+
3
9
  ## 8.0.0-next.11
4
10
 
5
11
  ### Minor Changes
@@ -1802,7 +1802,7 @@
1802
1802
  "migration:dataResidency": {
1803
1803
  "type": "array",
1804
1804
  "items": {
1805
- "$schema": "https://json-schema.org/draft/2020-12/schema",
1805
+ "$schema": "http://json-schema.org/draft-07/schema#",
1806
1806
  "description": "A Forge data residency definition.",
1807
1807
  "additionalProperties": false,
1808
1808
  "properties": {
@@ -12332,7 +12332,7 @@
12332
12332
  ],
12333
12333
  "type": "string"
12334
12334
  },
12335
- "viewPortSize": {
12335
+ "viewportSize": {
12336
12336
  "minLength": 1,
12337
12337
  "maxLength": 255,
12338
12338
  "enum": [
@@ -12866,7 +12866,7 @@
12866
12866
  ],
12867
12867
  "type": "string"
12868
12868
  },
12869
- "viewPortSize": {
12869
+ "viewportSize": {
12870
12870
  "minLength": 1,
12871
12871
  "maxLength": 255,
12872
12872
  "enum": [
@@ -13132,7 +13132,7 @@
13132
13132
  ],
13133
13133
  "type": "string"
13134
13134
  },
13135
- "viewPortSize": {
13135
+ "viewportSize": {
13136
13136
  "minLength": 1,
13137
13137
  "maxLength": 255,
13138
13138
  "enum": [
@@ -6414,7 +6414,7 @@ export interface Modules {
6414
6414
  actions?: {
6415
6415
  key: string;
6416
6416
  actionType?: 'dynamic' | 'modal';
6417
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6417
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6418
6418
  title:
6419
6419
  | string
6420
6420
  | {
@@ -6462,7 +6462,7 @@ export interface Modules {
6462
6462
  actions?: {
6463
6463
  key: string;
6464
6464
  actionType?: 'dynamic' | 'modal';
6465
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6465
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6466
6466
  title:
6467
6467
  | string
6468
6468
  | {
@@ -6624,7 +6624,7 @@ export interface Modules {
6624
6624
  actions?: {
6625
6625
  key: string;
6626
6626
  actionType?: 'dynamic' | 'modal';
6627
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6627
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6628
6628
  title:
6629
6629
  | string
6630
6630
  | {
@@ -6672,7 +6672,7 @@ export interface Modules {
6672
6672
  actions?: {
6673
6673
  key: string;
6674
6674
  actionType?: 'dynamic' | 'modal';
6675
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6675
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6676
6676
  title:
6677
6677
  | string
6678
6678
  | {
@@ -6722,7 +6722,7 @@ export interface Modules {
6722
6722
  actions?: {
6723
6723
  key: string;
6724
6724
  actionType?: 'dynamic' | 'modal';
6725
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6725
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6726
6726
  title:
6727
6727
  | string
6728
6728
  | {
@@ -6770,7 +6770,7 @@ export interface Modules {
6770
6770
  actions?: {
6771
6771
  key: string;
6772
6772
  actionType?: 'dynamic' | 'modal';
6773
- viewPortSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6773
+ viewportSize?: 'large' | 'max' | 'medium' | 'small' | 'xlarge';
6774
6774
  title:
6775
6775
  | string
6776
6776
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "8.0.0-next.11",
3
+ "version": "8.0.0-next.12",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {