@forge/manifest 7.9.0 → 7.9.1

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
+ ## 7.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 619dfd2: Fix i18n unit tests due to source schema change (issueNavigationAction)
8
+ - 5334609: Update manifest definitions
9
+ - 7ad3858: Update manifest definitions
10
+ - 43c503f: Update manifest definitions
11
+
12
+ ## 7.9.1-next.0
13
+
14
+ ### Patch Changes
15
+
16
+ - 619dfd2: Fix i18n unit tests due to source schema change (issueNavigationAction)
17
+ - 5334609: Update manifest definitions
18
+ - 7ad3858: Update manifest definitions
19
+ - 43c503f: Update manifest definitions
20
+
3
21
  ## 7.9.0
4
22
 
5
23
  ### Minor Changes
@@ -12093,9 +12093,21 @@
12093
12093
  "jira:issueNavigatorAction": {
12094
12094
  "type": "array",
12095
12095
  "items": {
12096
+ "additionalProperties": false,
12096
12097
  "type": "object",
12097
12098
  "properties": {
12098
- "label": {
12099
+ "icon": {
12100
+ "type": "string",
12101
+ "minLength": 1,
12102
+ "maxLength": 255
12103
+ },
12104
+ "resource": {
12105
+ "type": "string",
12106
+ "minLength": 1,
12107
+ "maxLength": 23,
12108
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
12109
+ },
12110
+ "title": {
12099
12111
  "anyOf": [
12100
12112
  {
12101
12113
  "type": "string",
@@ -12119,33 +12131,85 @@
12119
12131
  }
12120
12132
  ]
12121
12133
  },
12122
- "label__i18n": {
12134
+ "title__i18n": {
12123
12135
  "type": "string",
12124
12136
  "minLength": 1,
12125
12137
  "maxLength": 300,
12126
12138
  "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
12127
12139
  },
12128
- "icon": {
12140
+ "tooltip": {
12141
+ "anyOf": [
12142
+ {
12143
+ "type": "string",
12144
+ "minLength": 1,
12145
+ "maxLength": 255
12146
+ },
12147
+ {
12148
+ "additionalProperties": false,
12149
+ "type": "object",
12150
+ "properties": {
12151
+ "i18n": {
12152
+ "type": "string",
12153
+ "minLength": 1,
12154
+ "maxLength": 300,
12155
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
12156
+ }
12157
+ },
12158
+ "required": [
12159
+ "i18n"
12160
+ ]
12161
+ }
12162
+ ]
12163
+ },
12164
+ "tooltip__i18n": {
12129
12165
  "type": "string",
12130
12166
  "minLength": 1,
12131
- "maxLength": 255
12167
+ "maxLength": 300,
12168
+ "pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
12132
12169
  },
12133
- "resource": {
12170
+ "resolver": {
12171
+ "anyOf": [
12172
+ {
12173
+ "additionalProperties": false,
12174
+ "type": "object",
12175
+ "properties": {
12176
+ "function": {
12177
+ "type": "string",
12178
+ "minLength": 1,
12179
+ "maxLength": 255,
12180
+ "pattern": "^[a-zA-Z0-9-_]+$"
12181
+ }
12182
+ },
12183
+ "required": [
12184
+ "function"
12185
+ ]
12186
+ },
12187
+ {
12188
+ "additionalProperties": false,
12189
+ "type": "object",
12190
+ "properties": {
12191
+ "endpoint": {
12192
+ "type": "string",
12193
+ "minLength": 1,
12194
+ "maxLength": 255,
12195
+ "pattern": "^[a-zA-Z0-9-_]+$"
12196
+ }
12197
+ },
12198
+ "required": [
12199
+ "endpoint"
12200
+ ]
12201
+ }
12202
+ ]
12203
+ },
12204
+ "resourceUploadId": {
12134
12205
  "type": "string",
12135
12206
  "minLength": 1,
12136
- "maxLength": 23,
12137
- "pattern": "^[a-zA-Z0-9_\\-]+$"
12138
- },
12139
- "render": {
12140
- "enum": [
12141
- "default",
12142
- "native"
12143
- ],
12144
- "type": "string"
12207
+ "maxLength": 255
12145
12208
  },
12146
12209
  "actions": {
12147
12210
  "type": "array",
12148
12211
  "items": {
12212
+ "additionalProperties": false,
12149
12213
  "type": "object",
12150
12214
  "properties": {
12151
12215
  "key": {
@@ -12154,7 +12218,7 @@
12154
12218
  "maxLength": 23,
12155
12219
  "pattern": "^[a-zA-Z0-9_\\-]+$"
12156
12220
  },
12157
- "label": {
12221
+ "title": {
12158
12222
  "anyOf": [
12159
12223
  {
12160
12224
  "type": "string",
@@ -12178,7 +12242,7 @@
12178
12242
  }
12179
12243
  ]
12180
12244
  },
12181
- "label__i18n": {
12245
+ "title__i18n": {
12182
12246
  "type": "string",
12183
12247
  "minLength": 1,
12184
12248
  "maxLength": 300,
@@ -12187,18 +12251,30 @@
12187
12251
  },
12188
12252
  "required": [
12189
12253
  "key",
12190
- "label"
12254
+ "title"
12191
12255
  ]
12192
12256
  }
12193
12257
  },
12258
+ "render": {
12259
+ "default": "default",
12260
+ "enum": [
12261
+ "default",
12262
+ "native"
12263
+ ],
12264
+ "type": "string"
12265
+ },
12266
+ "displayConditions": {
12267
+ "type": "object",
12268
+ "properties": {}
12269
+ },
12194
12270
  "key": {
12195
12271
  "$ref": "#/definitions/ModuleKeySchema"
12196
12272
  }
12197
12273
  },
12198
12274
  "required": [
12199
12275
  "icon",
12200
- "label",
12201
12276
  "resource",
12277
+ "title",
12202
12278
  "key"
12203
12279
  ],
12204
12280
  "not": {
@@ -6334,50 +6334,80 @@ export interface Modules {
6334
6334
  ];
6335
6335
  'jira:issueNavigatorAction'?: [
6336
6336
  {
6337
- label:
6337
+ icon: string;
6338
+ resource: string;
6339
+ title:
6338
6340
  | string
6339
6341
  | {
6340
6342
  i18n: string;
6341
6343
  };
6342
- label__i18n?: string;
6343
- icon: string;
6344
- resource: string;
6345
- render?: 'default' | 'native';
6344
+ title__i18n?: string;
6345
+ tooltip?:
6346
+ | string
6347
+ | {
6348
+ i18n: string;
6349
+ };
6350
+ tooltip__i18n?: string;
6351
+ resolver?:
6352
+ | {
6353
+ function: string;
6354
+ }
6355
+ | {
6356
+ endpoint: string;
6357
+ };
6358
+ resourceUploadId?: string;
6346
6359
  actions?: {
6347
6360
  key: string;
6348
- label:
6361
+ title:
6349
6362
  | string
6350
6363
  | {
6351
6364
  i18n: string;
6352
6365
  };
6353
- label__i18n?: string;
6354
- [k: string]: unknown;
6366
+ title__i18n?: string;
6355
6367
  }[];
6368
+ render?: 'default' | 'native';
6369
+ displayConditions?: {
6370
+ [k: string]: unknown;
6371
+ };
6356
6372
  key: ModuleKeySchema;
6357
- [k: string]: unknown;
6358
6373
  },
6359
6374
  ...{
6360
- label:
6375
+ icon: string;
6376
+ resource: string;
6377
+ title:
6361
6378
  | string
6362
6379
  | {
6363
6380
  i18n: string;
6364
6381
  };
6365
- label__i18n?: string;
6366
- icon: string;
6367
- resource: string;
6368
- render?: 'default' | 'native';
6382
+ title__i18n?: string;
6383
+ tooltip?:
6384
+ | string
6385
+ | {
6386
+ i18n: string;
6387
+ };
6388
+ tooltip__i18n?: string;
6389
+ resolver?:
6390
+ | {
6391
+ function: string;
6392
+ }
6393
+ | {
6394
+ endpoint: string;
6395
+ };
6396
+ resourceUploadId?: string;
6369
6397
  actions?: {
6370
6398
  key: string;
6371
- label:
6399
+ title:
6372
6400
  | string
6373
6401
  | {
6374
6402
  i18n: string;
6375
6403
  };
6376
- label__i18n?: string;
6377
- [k: string]: unknown;
6404
+ title__i18n?: string;
6378
6405
  }[];
6406
+ render?: 'default' | 'native';
6407
+ displayConditions?: {
6408
+ [k: string]: unknown;
6409
+ };
6379
6410
  key: ModuleKeySchema;
6380
- [k: string]: unknown;
6381
6411
  }[]
6382
6412
  ];
6383
6413
  'compass:adminPage'?: [
@@ -99,6 +99,7 @@
99
99
  "delete:user.property:jira",
100
100
  "delete:webhook:jira",
101
101
  "delete:whiteboard:confluence",
102
+ "delete:work-item-info:jira",
102
103
  "delete:workflow-scheme:jira",
103
104
  "delete:workflow:jira",
104
105
  "delete:workflow.property:jira",
@@ -323,6 +324,7 @@
323
324
  "read:watcher:confluence",
324
325
  "read:webhook:jira",
325
326
  "read:whiteboard:confluence",
327
+ "read:work-item-info:jira",
326
328
  "read:workflow-scheme:jira",
327
329
  "read:workflow:jira",
328
330
  "read:workflow.property:jira",
@@ -493,6 +495,7 @@
493
495
  "write:watcher:confluence",
494
496
  "write:webhook:jira",
495
497
  "write:whiteboard:confluence",
498
+ "write:work-item-info:jira",
496
499
  "write:workflow-scheme:jira",
497
500
  "write:workflow:jira",
498
501
  "write:workflow.property:jira"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.9.0",
3
+ "version": "7.9.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {