@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
|
@@ -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
|
}
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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
|
)[]
|