@forge/manifest 4.4.0-next.2 → 4.4.0-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 +6 -0
- package/out/schema/manifest-schema.json +25 -0
- package/out/schema/manifest.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11939,6 +11939,31 @@
|
|
|
11939
11939
|
"additionalProperties": true
|
|
11940
11940
|
},
|
|
11941
11941
|
"minItems": 1
|
|
11942
|
+
},
|
|
11943
|
+
"automation:i18n": {
|
|
11944
|
+
"type": "array",
|
|
11945
|
+
"items": {
|
|
11946
|
+
"type": "object",
|
|
11947
|
+
"properties": {
|
|
11948
|
+
"resource": {
|
|
11949
|
+
"type": "string"
|
|
11950
|
+
},
|
|
11951
|
+
"supportedLocales": {
|
|
11952
|
+
"additionalProperties": {
|
|
11953
|
+
"type": "string"
|
|
11954
|
+
}
|
|
11955
|
+
},
|
|
11956
|
+
"key": {
|
|
11957
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
11958
|
+
}
|
|
11959
|
+
},
|
|
11960
|
+
"required": [
|
|
11961
|
+
"resource",
|
|
11962
|
+
"supportedLocales",
|
|
11963
|
+
"key"
|
|
11964
|
+
]
|
|
11965
|
+
},
|
|
11966
|
+
"minItems": 1
|
|
11942
11967
|
}
|
|
11943
11968
|
},
|
|
11944
11969
|
"title": "ModuleSchema",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -5310,6 +5310,24 @@ export interface Modules {
|
|
|
5310
5310
|
[k: string]: unknown;
|
|
5311
5311
|
}[]
|
|
5312
5312
|
];
|
|
5313
|
+
'automation:i18n'?: [
|
|
5314
|
+
{
|
|
5315
|
+
resource: string;
|
|
5316
|
+
supportedLocales: {
|
|
5317
|
+
[k: string]: string;
|
|
5318
|
+
};
|
|
5319
|
+
key: ModuleKeySchema;
|
|
5320
|
+
[k: string]: unknown;
|
|
5321
|
+
},
|
|
5322
|
+
...{
|
|
5323
|
+
resource: string;
|
|
5324
|
+
supportedLocales: {
|
|
5325
|
+
[k: string]: string;
|
|
5326
|
+
};
|
|
5327
|
+
key: ModuleKeySchema;
|
|
5328
|
+
[k: string]: unknown;
|
|
5329
|
+
}[]
|
|
5330
|
+
];
|
|
5313
5331
|
[k: string]: unknown;
|
|
5314
5332
|
}
|
|
5315
5333
|
export interface Filter {
|