@forge/manifest 10.1.1-next.2 → 10.1.1-next.3

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
+ ## 10.1.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 13e5daa: Update manifest definitions
8
+
3
9
  ## 10.1.1-next.2
4
10
 
5
11
  ### Patch Changes
@@ -5095,6 +5095,11 @@
5095
5095
  "type": "string",
5096
5096
  "default": "default"
5097
5097
  },
5098
+ "migratedFromConnect": {
5099
+ "type": "boolean",
5100
+ "default": false,
5101
+ "description": "A flag indicating whether this custom content module was migrated from a Connect app."
5102
+ },
5098
5103
  "key": {
5099
5104
  "$ref": "#/definitions/ModuleKeySchema"
5100
5105
  }
@@ -13524,6 +13524,10 @@ export interface Modules {
13524
13524
  resource: string;
13525
13525
  resourceUploadId?: string;
13526
13526
  render?: 'native' | 'default';
13527
+ /**
13528
+ * A flag indicating whether this custom content module was migrated from a Connect app.
13529
+ */
13530
+ migratedFromConnect?: boolean;
13527
13531
  key: ModuleKeySchema;
13528
13532
  }
13529
13533
  ),
@@ -13577,6 +13581,10 @@ export interface Modules {
13577
13581
  resource: string;
13578
13582
  resourceUploadId?: string;
13579
13583
  render?: 'native' | 'default';
13584
+ /**
13585
+ * A flag indicating whether this custom content module was migrated from a Connect app.
13586
+ */
13587
+ migratedFromConnect?: boolean;
13580
13588
  key: ModuleKeySchema;
13581
13589
  }
13582
13590
  )[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "10.1.1-next.2",
3
+ "version": "10.1.1-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {