@forge/manifest 12.5.0-next.3 → 12.5.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 +6 -0
- package/out/schema/manifest-schema.json +45 -1
- package/out/schema/manifest.d.ts +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2007,6 +2007,45 @@
|
|
|
2007
2007
|
},
|
|
2008
2008
|
"minItems": 1
|
|
2009
2009
|
},
|
|
2010
|
+
"connectToForgeMigration": {
|
|
2011
|
+
"type": "array",
|
|
2012
|
+
"items": {
|
|
2013
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
2014
|
+
"additionalProperties": false,
|
|
2015
|
+
"type": "object",
|
|
2016
|
+
"properties": {
|
|
2017
|
+
"migrationGuideUrl": {
|
|
2018
|
+
"description": "The URL of the migration guide hosted by the app developer.",
|
|
2019
|
+
"type": "string",
|
|
2020
|
+
"pattern": "^https://",
|
|
2021
|
+
"maxLength": 2048
|
|
2022
|
+
},
|
|
2023
|
+
"willMigrateToForgeBeforeEOS": {
|
|
2024
|
+
"description": "Whether the app developer has committed to moving to fully Forge.",
|
|
2025
|
+
"type": "string",
|
|
2026
|
+
"enum": [
|
|
2027
|
+
"YES",
|
|
2028
|
+
"NO",
|
|
2029
|
+
"UNDECIDED"
|
|
2030
|
+
]
|
|
2031
|
+
},
|
|
2032
|
+
"key": {
|
|
2033
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"required": [
|
|
2037
|
+
"migrationGuideUrl",
|
|
2038
|
+
"willMigrateToForgeBeforeEOS",
|
|
2039
|
+
"key"
|
|
2040
|
+
],
|
|
2041
|
+
"not": {
|
|
2042
|
+
"required": [
|
|
2043
|
+
"unlicensedAccess"
|
|
2044
|
+
]
|
|
2045
|
+
}
|
|
2046
|
+
},
|
|
2047
|
+
"minItems": 1
|
|
2048
|
+
},
|
|
2010
2049
|
"macro": {
|
|
2011
2050
|
"type": "array",
|
|
2012
2051
|
"items": {
|
|
@@ -9764,7 +9803,12 @@
|
|
|
9764
9803
|
"resource",
|
|
9765
9804
|
"title",
|
|
9766
9805
|
"key"
|
|
9767
|
-
]
|
|
9806
|
+
],
|
|
9807
|
+
"not": {
|
|
9808
|
+
"required": [
|
|
9809
|
+
"unlicensedAccess"
|
|
9810
|
+
]
|
|
9811
|
+
}
|
|
9768
9812
|
},
|
|
9769
9813
|
"minItems": 1
|
|
9770
9814
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -12414,6 +12414,30 @@ export interface Modules {
|
|
|
12414
12414
|
key: ModuleKeySchema;
|
|
12415
12415
|
}[]
|
|
12416
12416
|
];
|
|
12417
|
+
connectToForgeMigration?: [
|
|
12418
|
+
{
|
|
12419
|
+
/**
|
|
12420
|
+
* The URL of the migration guide hosted by the app developer.
|
|
12421
|
+
*/
|
|
12422
|
+
migrationGuideUrl: string;
|
|
12423
|
+
/**
|
|
12424
|
+
* Whether the app developer has committed to moving to fully Forge.
|
|
12425
|
+
*/
|
|
12426
|
+
willMigrateToForgeBeforeEOS: 'YES' | 'NO' | 'UNDECIDED';
|
|
12427
|
+
key: ModuleKeySchema;
|
|
12428
|
+
},
|
|
12429
|
+
...{
|
|
12430
|
+
/**
|
|
12431
|
+
* The URL of the migration guide hosted by the app developer.
|
|
12432
|
+
*/
|
|
12433
|
+
migrationGuideUrl: string;
|
|
12434
|
+
/**
|
|
12435
|
+
* Whether the app developer has committed to moving to fully Forge.
|
|
12436
|
+
*/
|
|
12437
|
+
willMigrateToForgeBeforeEOS: 'YES' | 'NO' | 'UNDECIDED';
|
|
12438
|
+
key: ModuleKeySchema;
|
|
12439
|
+
}[]
|
|
12440
|
+
];
|
|
12417
12441
|
macro?: [
|
|
12418
12442
|
(
|
|
12419
12443
|
| {
|