@forge/manifest 4.4.0-next.2 → 4.4.0

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,23 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - dfc74ba: [HYP-15] Add new validation rules for jira:adminPage module for new optional properties useAsGetStarted and useAsConfig, update existing validation rule to allow jira:adminPage module have multiple entries
8
+
9
+ ### Patch Changes
10
+
11
+ - f93ae31: Added automation:i18n module
12
+ - 05b306b: Update manifest definitions
13
+ - d6ec15d: Update manifest definitions
14
+
15
+ ## 4.4.0-next.3
16
+
17
+ ### Patch Changes
18
+
19
+ - 05b306b: Update manifest definitions
20
+
3
21
  ## 4.4.0-next.2
4
22
 
5
23
  ### Minor Changes
@@ -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",
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "4.4.0-next.2",
3
+ "version": "4.4.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {