@forge/manifest 7.5.1 → 7.5.2-next.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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.5.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0261f2b: Update manifest definitions
8
+
3
9
  ## 7.5.1
4
10
 
5
11
  ### Patch Changes
@@ -14771,6 +14771,29 @@
14771
14771
  },
14772
14772
  "minItems": 1
14773
14773
  },
14774
+ "connect-jira:translations": {
14775
+ "type": "array",
14776
+ "items": {
14777
+ "properties": {
14778
+ "paths": {
14779
+ "type": "object",
14780
+ "fieldDescription": "\nA map of locales to URLs of JSON translation files. The URLs may be relative to the Connect base URL or absolute. See <a href=\"https://developer.atlassian.com/cloud/jira/platform/internationalization-for-connect-apps/\">Internationalization for Connect apps</a>.\n\n"
14781
+ },
14782
+ "key": {
14783
+ "$ref": "#/definitions/ModuleKeySchema"
14784
+ }
14785
+ },
14786
+ "required": [
14787
+ "key"
14788
+ ],
14789
+ "not": {
14790
+ "required": [
14791
+ "unlicensedAccess"
14792
+ ]
14793
+ }
14794
+ },
14795
+ "minItems": 1
14796
+ },
14774
14797
  "connect-confluence:keyboardShortcuts": {
14775
14798
  "type": "array",
14776
14799
  "items": {
@@ -17419,6 +17442,29 @@
17419
17442
  },
17420
17443
  "minItems": 1
17421
17444
  },
17445
+ "connect-confluence:translations": {
17446
+ "type": "array",
17447
+ "items": {
17448
+ "properties": {
17449
+ "paths": {
17450
+ "type": "object",
17451
+ "fieldDescription": "\nA map of locales to URLs of JSON translation files. The URLs may be relative to the Connect base URL or absolute. See <a href=\"https://developer.atlassian.com/cloud/jira/platform/internationalization-for-connect-apps/\">Internationalization for Connect apps</a>.\n\n"
17452
+ },
17453
+ "key": {
17454
+ "$ref": "#/definitions/ModuleKeySchema"
17455
+ }
17456
+ },
17457
+ "required": [
17458
+ "key"
17459
+ ],
17460
+ "not": {
17461
+ "required": [
17462
+ "unlicensedAccess"
17463
+ ]
17464
+ }
17465
+ },
17466
+ "minItems": 1
17467
+ },
17422
17468
  "automation:action": {
17423
17469
  "type": "array",
17424
17470
  "items": {
@@ -7264,6 +7264,22 @@ export interface Modules {
7264
7264
  [k: string]: unknown;
7265
7265
  }[]
7266
7266
  ];
7267
+ 'connect-jira:translations'?: [
7268
+ {
7269
+ paths?: {
7270
+ [k: string]: unknown;
7271
+ };
7272
+ key: ModuleKeySchema;
7273
+ [k: string]: unknown;
7274
+ },
7275
+ ...{
7276
+ paths?: {
7277
+ [k: string]: unknown;
7278
+ };
7279
+ key: ModuleKeySchema;
7280
+ [k: string]: unknown;
7281
+ }[]
7282
+ ];
7267
7283
  'connect-confluence:keyboardShortcuts'?: [
7268
7284
  {
7269
7285
  shortcut: string;
@@ -7950,6 +7966,22 @@ export interface Modules {
7950
7966
  [k: string]: unknown;
7951
7967
  }[]
7952
7968
  ];
7969
+ 'connect-confluence:translations'?: [
7970
+ {
7971
+ paths?: {
7972
+ [k: string]: unknown;
7973
+ };
7974
+ key: ModuleKeySchema;
7975
+ [k: string]: unknown;
7976
+ },
7977
+ ...{
7978
+ paths?: {
7979
+ [k: string]: unknown;
7980
+ };
7981
+ key: ModuleKeySchema;
7982
+ [k: string]: unknown;
7983
+ }[]
7984
+ ];
7953
7985
  'automation:action'?: [
7954
7986
  {
7955
7987
  function: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.5.1",
3
+ "version": "7.5.2-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {