@forge/manifest 4.2.0 → 4.2.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 +12 -0
- package/out/mapping/product-event-to-scope-mapping.json +154 -0
- package/out/schema/manifest-schema.json +467 -32
- package/out/schema/manifest.d.ts +126 -16
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.2.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f8d567a3: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 4.2.1-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1c51c99: Add scope mappings for Confluence page and blogpost events
|
|
14
|
+
|
|
3
15
|
## 4.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -365,6 +365,118 @@
|
|
|
365
365
|
]
|
|
366
366
|
}
|
|
367
367
|
},
|
|
368
|
+
{
|
|
369
|
+
"productEvent": "avi:confluence:archived:page",
|
|
370
|
+
"oAuthScopes": {
|
|
371
|
+
"beta": [
|
|
372
|
+
"read:page:confluence",
|
|
373
|
+
"read:space:confluence",
|
|
374
|
+
"read:user:confluence",
|
|
375
|
+
"read:content.metadata:confluence"
|
|
376
|
+
],
|
|
377
|
+
"current": [
|
|
378
|
+
"read:confluence-content.summary"
|
|
379
|
+
]
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"productEvent": "avi:confluence:children_reordered:page",
|
|
384
|
+
"oAuthScopes": {
|
|
385
|
+
"beta": [
|
|
386
|
+
"read:page:confluence",
|
|
387
|
+
"read:space:confluence",
|
|
388
|
+
"read:user:confluence",
|
|
389
|
+
"read:content.metadata:confluence"
|
|
390
|
+
],
|
|
391
|
+
"current": [
|
|
392
|
+
"read:confluence-content.summary"
|
|
393
|
+
]
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"productEvent": "avi:confluence:copied:page",
|
|
398
|
+
"oAuthScopes": {
|
|
399
|
+
"beta": [
|
|
400
|
+
"read:page:confluence",
|
|
401
|
+
"read:space:confluence",
|
|
402
|
+
"read:user:confluence",
|
|
403
|
+
"read:content.metadata:confluence"
|
|
404
|
+
],
|
|
405
|
+
"current": [
|
|
406
|
+
"read:confluence-content.summary"
|
|
407
|
+
]
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"productEvent": "avi:confluence:moved:page",
|
|
412
|
+
"oAuthScopes": {
|
|
413
|
+
"beta": [
|
|
414
|
+
"read:page:confluence",
|
|
415
|
+
"read:space:confluence",
|
|
416
|
+
"read:user:confluence",
|
|
417
|
+
"read:content.metadata:confluence"
|
|
418
|
+
],
|
|
419
|
+
"current": [
|
|
420
|
+
"read:confluence-content.summary"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"productEvent": "avi:confluence:removed:page",
|
|
426
|
+
"oAuthScopes": {
|
|
427
|
+
"beta": [
|
|
428
|
+
"read:page:confluence",
|
|
429
|
+
"read:space:confluence",
|
|
430
|
+
"read:user:confluence",
|
|
431
|
+
"read:content.metadata:confluence"
|
|
432
|
+
],
|
|
433
|
+
"current": [
|
|
434
|
+
"read:confluence-content.summary"
|
|
435
|
+
]
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"productEvent": "avi:confluence:restored:page",
|
|
440
|
+
"oAuthScopes": {
|
|
441
|
+
"beta": [
|
|
442
|
+
"read:page:confluence",
|
|
443
|
+
"read:space:confluence",
|
|
444
|
+
"read:user:confluence",
|
|
445
|
+
"read:content.metadata:confluence"
|
|
446
|
+
],
|
|
447
|
+
"current": [
|
|
448
|
+
"read:confluence-content.summary"
|
|
449
|
+
]
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"productEvent": "avi:confluence:trashed:page",
|
|
454
|
+
"oAuthScopes": {
|
|
455
|
+
"beta": [
|
|
456
|
+
"read:page:confluence",
|
|
457
|
+
"read:space:confluence",
|
|
458
|
+
"read:user:confluence",
|
|
459
|
+
"read:content.metadata:confluence"
|
|
460
|
+
],
|
|
461
|
+
"current": [
|
|
462
|
+
"read:confluence-content.summary"
|
|
463
|
+
]
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"productEvent": "avi:confluence:unarchived:page",
|
|
468
|
+
"oAuthScopes": {
|
|
469
|
+
"beta": [
|
|
470
|
+
"read:page:confluence",
|
|
471
|
+
"read:space:confluence",
|
|
472
|
+
"read:user:confluence",
|
|
473
|
+
"read:content.metadata:confluence"
|
|
474
|
+
],
|
|
475
|
+
"current": [
|
|
476
|
+
"read:confluence-content.summary"
|
|
477
|
+
]
|
|
478
|
+
}
|
|
479
|
+
},
|
|
368
480
|
{
|
|
369
481
|
"productEvent": "avi:confluence:created:comment",
|
|
370
482
|
"oAuthScopes": {
|
|
@@ -437,6 +549,48 @@
|
|
|
437
549
|
]
|
|
438
550
|
}
|
|
439
551
|
},
|
|
552
|
+
{
|
|
553
|
+
"productEvent": "avi:confluence:removed:blogpost",
|
|
554
|
+
"oAuthScopes": {
|
|
555
|
+
"beta": [
|
|
556
|
+
"read:blogpost:confluence",
|
|
557
|
+
"read:space:confluence",
|
|
558
|
+
"read:user:confluence",
|
|
559
|
+
"read:content.metadata:confluence"
|
|
560
|
+
],
|
|
561
|
+
"current": [
|
|
562
|
+
"read:confluence-content.summary"
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"productEvent": "avi:confluence:trashed:blogpost",
|
|
568
|
+
"oAuthScopes": {
|
|
569
|
+
"beta": [
|
|
570
|
+
"read:blogpost:confluence",
|
|
571
|
+
"read:space:confluence",
|
|
572
|
+
"read:user:confluence",
|
|
573
|
+
"read:content.metadata:confluence"
|
|
574
|
+
],
|
|
575
|
+
"current": [
|
|
576
|
+
"read:confluence-content.summary"
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"productEvent": "avi:confluence:restored:blogpost",
|
|
582
|
+
"oAuthScopes": {
|
|
583
|
+
"beta": [
|
|
584
|
+
"read:blogpost:confluence",
|
|
585
|
+
"read:space:confluence",
|
|
586
|
+
"read:user:confluence",
|
|
587
|
+
"read:content.metadata:confluence"
|
|
588
|
+
],
|
|
589
|
+
"current": [
|
|
590
|
+
"read:confluence-content.summary"
|
|
591
|
+
]
|
|
592
|
+
}
|
|
593
|
+
},
|
|
440
594
|
{
|
|
441
595
|
"productEvent": "avi:confluence:created:task",
|
|
442
596
|
"oAuthScopes": {
|