@forge/manifest 3.8.0 → 3.8.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,26 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a85953d8: Add IssueTypeEvent mappings
8
+ - 2c42df96: Add beta (granular) scope for custom field configuration event
9
+ - c52209fd: Update manifest definitions
10
+
11
+ ## 3.8.1-next.1
12
+
13
+ ### Patch Changes
14
+
15
+ - a85953d8: Add IssueTypeEvent mappings
16
+
17
+ ## 3.8.1-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - 2c42df9: Add beta (granular) scope for custom field configuration event
22
+ - c52209f: Update manifest definitions
23
+
3
24
  ## 3.8.0
4
25
 
5
26
  ### Minor Changes
@@ -210,8 +210,44 @@
210
210
  {
211
211
  "productEvent": "avi:jira:updated:field:context:configuration",
212
212
  "oAuthScopes": {
213
- "current": [
213
+ "beta": [
214
214
  "read:custom-field-contextual-configuration:jira"
215
+ ],
216
+ "current": [
217
+ "manage:jira-configuration"
218
+ ]
219
+ }
220
+ },
221
+ {
222
+ "productEvent": "avi:jira:deleted:issuetype",
223
+ "oAuthScopes": {
224
+ "beta": [
225
+ "read:issue-type:jira"
226
+ ],
227
+ "current": [
228
+ "manage:jira-configuration"
229
+ ]
230
+ }
231
+ },
232
+ {
233
+ "productEvent": "avi:jira:created:issuetype",
234
+ "oAuthScopes": {
235
+ "beta": [
236
+ "read:issue-type:jira"
237
+ ],
238
+ "current": [
239
+ "manage:jira-configuration"
240
+ ]
241
+ }
242
+ },
243
+ {
244
+ "productEvent": "avi:jira:updated:issuetype",
245
+ "oAuthScopes": {
246
+ "beta": [
247
+ "read:issue-type:jira"
248
+ ],
249
+ "current": [
250
+ "manage:jira-configuration"
215
251
  ]
216
252
  }
217
253
  },
@@ -351,6 +351,21 @@
351
351
  "minLength": 1,
352
352
  "maxLength": 10000
353
353
  },
354
+ "refDataSchema": {
355
+ "type": "object",
356
+ "additionalProperties": false,
357
+ "properties": {
358
+ "inputType": {
359
+ "type": "string",
360
+ "minLength": 1,
361
+ "maxLength": 255,
362
+ "pattern": "^[a-zA-Z0-9-_]+$"
363
+ }
364
+ },
365
+ "required": [
366
+ "inputType"
367
+ ]
368
+ },
354
369
  "config": {
355
370
  "type": "object",
356
371
  "properties": {
@@ -428,6 +443,21 @@
428
443
  "minLength": 1,
429
444
  "maxLength": 10000
430
445
  },
446
+ "refDataSchema": {
447
+ "type": "object",
448
+ "additionalProperties": false,
449
+ "properties": {
450
+ "inputType": {
451
+ "type": "string",
452
+ "minLength": 1,
453
+ "maxLength": 255,
454
+ "pattern": "^[a-zA-Z0-9-_]+$"
455
+ }
456
+ },
457
+ "required": [
458
+ "inputType"
459
+ ]
460
+ },
431
461
  "config": {
432
462
  "type": "object",
433
463
  "properties": {
@@ -251,6 +251,9 @@ export interface Modules {
251
251
  title: string;
252
252
  function: string;
253
253
  description?: string;
254
+ refDataSchema?: {
255
+ inputType: string;
256
+ };
254
257
  config?: {
255
258
  function?: string;
256
259
  [k: string]: unknown;
@@ -271,6 +274,9 @@ export interface Modules {
271
274
  resource: string;
272
275
  resourceUploadId?: string;
273
276
  description?: string;
277
+ refDataSchema?: {
278
+ inputType: string;
279
+ };
274
280
  config?: {
275
281
  function?: string;
276
282
  [k: string]: unknown;
@@ -289,6 +295,9 @@ export interface Modules {
289
295
  title: string;
290
296
  function: string;
291
297
  description?: string;
298
+ refDataSchema?: {
299
+ inputType: string;
300
+ };
292
301
  config?: {
293
302
  function?: string;
294
303
  [k: string]: unknown;
@@ -309,6 +318,9 @@ export interface Modules {
309
318
  resource: string;
310
319
  resourceUploadId?: string;
311
320
  description?: string;
321
+ refDataSchema?: {
322
+ inputType: string;
323
+ };
312
324
  config?: {
313
325
  function?: string;
314
326
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {