@forge/manifest 4.19.0 → 4.19.1-next.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,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.19.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1fa312eb: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 4.19.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8b993ad6: Added split version related product events to scope mapping
|
|
14
|
+
|
|
3
15
|
## 4.19.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -316,6 +316,72 @@
|
|
|
316
316
|
]
|
|
317
317
|
}
|
|
318
318
|
},
|
|
319
|
+
{
|
|
320
|
+
"productEvent": "avi:jira:released:version",
|
|
321
|
+
"oAuthScopes": {
|
|
322
|
+
"beta": [
|
|
323
|
+
"read:project-version:jira"
|
|
324
|
+
],
|
|
325
|
+
"current": [
|
|
326
|
+
"read:jira-work"
|
|
327
|
+
]
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"productEvent": "avi:jira:unreleased:version",
|
|
332
|
+
"oAuthScopes": {
|
|
333
|
+
"beta": [
|
|
334
|
+
"read:project-version:jira"
|
|
335
|
+
],
|
|
336
|
+
"current": [
|
|
337
|
+
"read:jira-work"
|
|
338
|
+
]
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"productEvent": "avi:jira:archived:version",
|
|
343
|
+
"oAuthScopes": {
|
|
344
|
+
"beta": [
|
|
345
|
+
"read:project-version:jira"
|
|
346
|
+
],
|
|
347
|
+
"current": [
|
|
348
|
+
"read:jira-work"
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"productEvent": "avi:jira:unarchived:version",
|
|
354
|
+
"oAuthScopes": {
|
|
355
|
+
"beta": [
|
|
356
|
+
"read:project-version:jira"
|
|
357
|
+
],
|
|
358
|
+
"current": [
|
|
359
|
+
"read:jira-work"
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"productEvent": "avi:jira:merged:version",
|
|
365
|
+
"oAuthScopes": {
|
|
366
|
+
"beta": [
|
|
367
|
+
"read:project-version:jira"
|
|
368
|
+
],
|
|
369
|
+
"current": [
|
|
370
|
+
"read:jira-work"
|
|
371
|
+
]
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"productEvent": "avi:jira:moved:version",
|
|
376
|
+
"oAuthScopes": {
|
|
377
|
+
"beta": [
|
|
378
|
+
"read:project-version:jira"
|
|
379
|
+
],
|
|
380
|
+
"current": [
|
|
381
|
+
"read:jira-work"
|
|
382
|
+
]
|
|
383
|
+
}
|
|
384
|
+
},
|
|
319
385
|
{
|
|
320
386
|
"productEvent": "avi:jira:created:worklog",
|
|
321
387
|
"oAuthScopes": {
|
|
@@ -787,15 +787,15 @@
|
|
|
787
787
|
"default"
|
|
788
788
|
],
|
|
789
789
|
"type": "string",
|
|
790
|
-
"default": "default"
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
790
|
+
"default": "default"
|
|
791
|
+
},
|
|
792
|
+
"layout": {
|
|
793
|
+
"enum": [
|
|
794
|
+
"inline",
|
|
795
|
+
"block"
|
|
796
|
+
],
|
|
797
|
+
"type": "string",
|
|
798
|
+
"default": "block"
|
|
799
799
|
},
|
|
800
800
|
"key": {
|
|
801
801
|
"$ref": "#/definitions/ModuleKeySchema"
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -589,6 +589,7 @@ export interface Modules {
|
|
|
589
589
|
[k: string]: unknown;
|
|
590
590
|
};
|
|
591
591
|
render?: 'native' | 'default';
|
|
592
|
+
layout?: 'inline' | 'block';
|
|
592
593
|
key: ModuleKeySchema;
|
|
593
594
|
[k: string]: unknown;
|
|
594
595
|
}
|
|
@@ -640,6 +641,7 @@ export interface Modules {
|
|
|
640
641
|
[k: string]: unknown;
|
|
641
642
|
};
|
|
642
643
|
render?: 'native' | 'default';
|
|
644
|
+
layout?: 'inline' | 'block';
|
|
643
645
|
key: ModuleKeySchema;
|
|
644
646
|
[k: string]: unknown;
|
|
645
647
|
}
|