@forge/manifest 3.8.0 → 3.8.1-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
|
@@ -210,8 +210,11 @@
|
|
|
210
210
|
{
|
|
211
211
|
"productEvent": "avi:jira:updated:field:context:configuration",
|
|
212
212
|
"oAuthScopes": {
|
|
213
|
-
"
|
|
213
|
+
"beta": [
|
|
214
214
|
"read:custom-field-contextual-configuration:jira"
|
|
215
|
+
],
|
|
216
|
+
"current": [
|
|
217
|
+
"manage:jira-configuration"
|
|
215
218
|
]
|
|
216
219
|
}
|
|
217
220
|
},
|
|
@@ -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": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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;
|