@forge/manifest 0.0.0-experimental-e3032d7 → 0.0.0-experimental-9489df9
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 +111 -1
- package/out/index.d.ts +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/index.js +4 -6
- package/out/mapping/product-event-to-scope-mapping.json +50 -0
- package/out/processor/abstract-validation-processor.d.ts +1 -1
- package/out/processor/abstract-validation-processor.d.ts.map +1 -1
- package/out/processor/abstract-validation-processor.js +10 -5
- package/out/processor/processor-interface.d.ts +1 -1
- package/out/processor/processor-interface.d.ts.map +1 -1
- package/out/schema/manifest-schema.json +1005 -116
- package/out/schema/manifest.d.ts +496 -21
- package/out/scopes/index.d.ts +1 -1
- package/out/scopes/index.d.ts.map +1 -1
- package/out/scopes/index.js +1 -1
- package/out/types/module-types.d.ts +10 -1
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +9 -0
- package/out/validators/connect-authentication-validator.d.ts +1 -1
- package/out/validators/connect-authentication-validator.d.ts.map +1 -1
- package/out/validators/connect-authentication-validator.js +1 -1
- package/out/validators/connect-modules-validator.d.ts +1 -1
- package/out/validators/connect-modules-validator.d.ts.map +1 -1
- package/out/validators/connect-modules-validator.js +1 -1
- package/out/validators/connect-remote-validator.d.ts +1 -1
- package/out/validators/connect-remote-validator.d.ts.map +1 -1
- package/out/validators/connect-remote-validator.js +1 -1
- package/out/validators/display-conditions-validator.d.ts +1 -1
- package/out/validators/display-conditions-validator.d.ts.map +1 -1
- package/out/validators/display-conditions-validator.js +1 -1
- package/out/validators/entity-property-validator.d.ts +1 -1
- package/out/validators/entity-property-validator.d.ts.map +1 -1
- package/out/validators/entity-property-validator.js +1 -1
- package/out/validators/file-validator.d.ts +1 -1
- package/out/validators/file-validator.d.ts.map +1 -1
- package/out/validators/file-validator.js +1 -1
- package/out/validators/modules-validator.d.ts +1 -1
- package/out/validators/modules-validator.d.ts.map +1 -1
- package/out/validators/modules-validator.js +1 -1
- package/out/validators/modules-validators/confluence/validateKeyboardShortcuts.d.ts.map +1 -1
- package/out/validators/permissions-validator.d.ts +1 -1
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +1 -1
- package/out/validators/product-trigger-scopes-validator.d.ts +1 -1
- package/out/validators/product-trigger-scopes-validator.d.ts.map +1 -1
- package/out/validators/product-trigger-scopes-validator.js +4 -4
- package/out/validators/providers-validator.d.ts +1 -1
- package/out/validators/providers-validator.d.ts.map +1 -1
- package/out/validators/providers-validator.js +1 -1
- package/out/validators/resources-validator.d.ts +1 -1
- package/out/validators/resources-validator.d.ts.map +1 -1
- package/out/validators/resources-validator.js +1 -1
- package/out/validators/schema-validator.d.ts +1 -1
- package/out/validators/schema-validator.d.ts.map +1 -1
- package/out/validators/schema-validator.js +1 -1
- package/out/validators/validator-interface.d.ts +1 -1
- package/out/validators/validator-interface.d.ts.map +1 -1
- package/out/validators/yaml-validator.d.ts +1 -1
- package/out/validators/yaml-validator.d.ts.map +1 -1
- package/out/validators/yaml-validator.js +1 -1
- package/package.json +2 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -29,7 +29,18 @@ export type Key = string;
|
|
|
29
29
|
* A key for the module. Must be unique within the manifest.
|
|
30
30
|
*/
|
|
31
31
|
export type ModuleKeySchema = string;
|
|
32
|
-
export type Events =
|
|
32
|
+
export type Events = ProductEvents | FilteredProductEvents;
|
|
33
|
+
export type ProductEvents = string[];
|
|
34
|
+
export type EventType = string;
|
|
35
|
+
/**
|
|
36
|
+
* The app will ignore events generated by itself
|
|
37
|
+
*/
|
|
38
|
+
export type IgnoreSelf = boolean;
|
|
39
|
+
export type FilteredProductEvents = {
|
|
40
|
+
eventType: EventType;
|
|
41
|
+
filter: Filter;
|
|
42
|
+
[k: string]: unknown;
|
|
43
|
+
}[];
|
|
33
44
|
/**
|
|
34
45
|
* The key for an extension in CaaS. That means that this is a reference to another
|
|
35
46
|
* extension in your descriptor / manifest.
|
|
@@ -343,6 +354,13 @@ export interface Modules {
|
|
|
343
354
|
displayConditions?: {
|
|
344
355
|
[k: string]: unknown;
|
|
345
356
|
};
|
|
357
|
+
keyboardShortcut?: {
|
|
358
|
+
/**
|
|
359
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
360
|
+
*/
|
|
361
|
+
accelerator: string;
|
|
362
|
+
description?: string;
|
|
363
|
+
};
|
|
346
364
|
key: ModuleKeySchema;
|
|
347
365
|
[k: string]: unknown;
|
|
348
366
|
}
|
|
@@ -357,6 +375,13 @@ export interface Modules {
|
|
|
357
375
|
displayConditions?: {
|
|
358
376
|
[k: string]: unknown;
|
|
359
377
|
};
|
|
378
|
+
keyboardShortcut?: {
|
|
379
|
+
/**
|
|
380
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
381
|
+
*/
|
|
382
|
+
accelerator: string;
|
|
383
|
+
description?: string;
|
|
384
|
+
};
|
|
360
385
|
key: ModuleKeySchema;
|
|
361
386
|
[k: string]: unknown;
|
|
362
387
|
}
|
|
@@ -368,6 +393,13 @@ export interface Modules {
|
|
|
368
393
|
displayConditions?: {
|
|
369
394
|
[k: string]: unknown;
|
|
370
395
|
};
|
|
396
|
+
keyboardShortcut?: {
|
|
397
|
+
/**
|
|
398
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
399
|
+
*/
|
|
400
|
+
accelerator: string;
|
|
401
|
+
description?: string;
|
|
402
|
+
};
|
|
371
403
|
key: ModuleKeySchema;
|
|
372
404
|
[k: string]: unknown;
|
|
373
405
|
}
|
|
@@ -382,6 +414,13 @@ export interface Modules {
|
|
|
382
414
|
displayConditions?: {
|
|
383
415
|
[k: string]: unknown;
|
|
384
416
|
};
|
|
417
|
+
keyboardShortcut?: {
|
|
418
|
+
/**
|
|
419
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
420
|
+
*/
|
|
421
|
+
accelerator: string;
|
|
422
|
+
description?: string;
|
|
423
|
+
};
|
|
385
424
|
key: ModuleKeySchema;
|
|
386
425
|
[k: string]: unknown;
|
|
387
426
|
}
|
|
@@ -395,6 +434,13 @@ export interface Modules {
|
|
|
395
434
|
displayConditions?: {
|
|
396
435
|
[k: string]: unknown;
|
|
397
436
|
};
|
|
437
|
+
keyboardShortcut?: {
|
|
438
|
+
/**
|
|
439
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
440
|
+
*/
|
|
441
|
+
accelerator: string;
|
|
442
|
+
description?: string;
|
|
443
|
+
};
|
|
398
444
|
key: ModuleKeySchema;
|
|
399
445
|
[k: string]: unknown;
|
|
400
446
|
}
|
|
@@ -409,6 +455,13 @@ export interface Modules {
|
|
|
409
455
|
displayConditions?: {
|
|
410
456
|
[k: string]: unknown;
|
|
411
457
|
};
|
|
458
|
+
keyboardShortcut?: {
|
|
459
|
+
/**
|
|
460
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
461
|
+
*/
|
|
462
|
+
accelerator: string;
|
|
463
|
+
description?: string;
|
|
464
|
+
};
|
|
412
465
|
key: ModuleKeySchema;
|
|
413
466
|
[k: string]: unknown;
|
|
414
467
|
}
|
|
@@ -420,6 +473,13 @@ export interface Modules {
|
|
|
420
473
|
displayConditions?: {
|
|
421
474
|
[k: string]: unknown;
|
|
422
475
|
};
|
|
476
|
+
keyboardShortcut?: {
|
|
477
|
+
/**
|
|
478
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
479
|
+
*/
|
|
480
|
+
accelerator: string;
|
|
481
|
+
description?: string;
|
|
482
|
+
};
|
|
423
483
|
key: ModuleKeySchema;
|
|
424
484
|
[k: string]: unknown;
|
|
425
485
|
}
|
|
@@ -434,6 +494,13 @@ export interface Modules {
|
|
|
434
494
|
displayConditions?: {
|
|
435
495
|
[k: string]: unknown;
|
|
436
496
|
};
|
|
497
|
+
keyboardShortcut?: {
|
|
498
|
+
/**
|
|
499
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
500
|
+
*/
|
|
501
|
+
accelerator: string;
|
|
502
|
+
description?: string;
|
|
503
|
+
};
|
|
437
504
|
key: ModuleKeySchema;
|
|
438
505
|
[k: string]: unknown;
|
|
439
506
|
}
|
|
@@ -453,6 +520,13 @@ export interface Modules {
|
|
|
453
520
|
displayConditions?: {
|
|
454
521
|
[k: string]: unknown;
|
|
455
522
|
};
|
|
523
|
+
keyboardShortcut?: {
|
|
524
|
+
/**
|
|
525
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
526
|
+
*/
|
|
527
|
+
accelerator: string;
|
|
528
|
+
description?: string;
|
|
529
|
+
};
|
|
456
530
|
key: ModuleKeySchema;
|
|
457
531
|
}
|
|
458
532
|
| {
|
|
@@ -472,6 +546,13 @@ export interface Modules {
|
|
|
472
546
|
displayConditions?: {
|
|
473
547
|
[k: string]: unknown;
|
|
474
548
|
};
|
|
549
|
+
keyboardShortcut?: {
|
|
550
|
+
/**
|
|
551
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
552
|
+
*/
|
|
553
|
+
accelerator: string;
|
|
554
|
+
description?: string;
|
|
555
|
+
};
|
|
475
556
|
key: ModuleKeySchema;
|
|
476
557
|
}
|
|
477
558
|
),
|
|
@@ -488,6 +569,13 @@ export interface Modules {
|
|
|
488
569
|
displayConditions?: {
|
|
489
570
|
[k: string]: unknown;
|
|
490
571
|
};
|
|
572
|
+
keyboardShortcut?: {
|
|
573
|
+
/**
|
|
574
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
575
|
+
*/
|
|
576
|
+
accelerator: string;
|
|
577
|
+
description?: string;
|
|
578
|
+
};
|
|
491
579
|
key: ModuleKeySchema;
|
|
492
580
|
}
|
|
493
581
|
| {
|
|
@@ -507,6 +595,13 @@ export interface Modules {
|
|
|
507
595
|
displayConditions?: {
|
|
508
596
|
[k: string]: unknown;
|
|
509
597
|
};
|
|
598
|
+
keyboardShortcut?: {
|
|
599
|
+
/**
|
|
600
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
601
|
+
*/
|
|
602
|
+
accelerator: string;
|
|
603
|
+
description?: string;
|
|
604
|
+
};
|
|
510
605
|
key: ModuleKeySchema;
|
|
511
606
|
}
|
|
512
607
|
)[]
|
|
@@ -519,6 +614,13 @@ export interface Modules {
|
|
|
519
614
|
displayConditions?: {
|
|
520
615
|
[k: string]: unknown;
|
|
521
616
|
};
|
|
617
|
+
keyboardShortcut?: {
|
|
618
|
+
/**
|
|
619
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
620
|
+
*/
|
|
621
|
+
accelerator: string;
|
|
622
|
+
description?: string;
|
|
623
|
+
};
|
|
522
624
|
key: ModuleKeySchema;
|
|
523
625
|
[k: string]: unknown;
|
|
524
626
|
}
|
|
@@ -533,6 +635,13 @@ export interface Modules {
|
|
|
533
635
|
displayConditions?: {
|
|
534
636
|
[k: string]: unknown;
|
|
535
637
|
};
|
|
638
|
+
keyboardShortcut?: {
|
|
639
|
+
/**
|
|
640
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
641
|
+
*/
|
|
642
|
+
accelerator: string;
|
|
643
|
+
description?: string;
|
|
644
|
+
};
|
|
536
645
|
key: ModuleKeySchema;
|
|
537
646
|
[k: string]: unknown;
|
|
538
647
|
}
|
|
@@ -544,6 +653,13 @@ export interface Modules {
|
|
|
544
653
|
displayConditions?: {
|
|
545
654
|
[k: string]: unknown;
|
|
546
655
|
};
|
|
656
|
+
keyboardShortcut?: {
|
|
657
|
+
/**
|
|
658
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
659
|
+
*/
|
|
660
|
+
accelerator: string;
|
|
661
|
+
description?: string;
|
|
662
|
+
};
|
|
547
663
|
key: ModuleKeySchema;
|
|
548
664
|
[k: string]: unknown;
|
|
549
665
|
}
|
|
@@ -558,6 +674,13 @@ export interface Modules {
|
|
|
558
674
|
displayConditions?: {
|
|
559
675
|
[k: string]: unknown;
|
|
560
676
|
};
|
|
677
|
+
keyboardShortcut?: {
|
|
678
|
+
/**
|
|
679
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
680
|
+
*/
|
|
681
|
+
accelerator: string;
|
|
682
|
+
description?: string;
|
|
683
|
+
};
|
|
561
684
|
key: ModuleKeySchema;
|
|
562
685
|
[k: string]: unknown;
|
|
563
686
|
}
|
|
@@ -573,6 +696,13 @@ export interface Modules {
|
|
|
573
696
|
displayConditions?: {
|
|
574
697
|
[k: string]: unknown;
|
|
575
698
|
};
|
|
699
|
+
keyboardShortcut?: {
|
|
700
|
+
/**
|
|
701
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
702
|
+
*/
|
|
703
|
+
accelerator: string;
|
|
704
|
+
description?: string;
|
|
705
|
+
};
|
|
576
706
|
key: ModuleKeySchema;
|
|
577
707
|
[k: string]: unknown;
|
|
578
708
|
}
|
|
@@ -588,6 +718,13 @@ export interface Modules {
|
|
|
588
718
|
displayConditions?: {
|
|
589
719
|
[k: string]: unknown;
|
|
590
720
|
};
|
|
721
|
+
keyboardShortcut?: {
|
|
722
|
+
/**
|
|
723
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
724
|
+
*/
|
|
725
|
+
accelerator: string;
|
|
726
|
+
description?: string;
|
|
727
|
+
};
|
|
591
728
|
key: ModuleKeySchema;
|
|
592
729
|
[k: string]: unknown;
|
|
593
730
|
}
|
|
@@ -601,6 +738,13 @@ export interface Modules {
|
|
|
601
738
|
displayConditions?: {
|
|
602
739
|
[k: string]: unknown;
|
|
603
740
|
};
|
|
741
|
+
keyboardShortcut?: {
|
|
742
|
+
/**
|
|
743
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
744
|
+
*/
|
|
745
|
+
accelerator: string;
|
|
746
|
+
description?: string;
|
|
747
|
+
};
|
|
604
748
|
key: ModuleKeySchema;
|
|
605
749
|
[k: string]: unknown;
|
|
606
750
|
}
|
|
@@ -616,6 +760,13 @@ export interface Modules {
|
|
|
616
760
|
displayConditions?: {
|
|
617
761
|
[k: string]: unknown;
|
|
618
762
|
};
|
|
763
|
+
keyboardShortcut?: {
|
|
764
|
+
/**
|
|
765
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
766
|
+
*/
|
|
767
|
+
accelerator: string;
|
|
768
|
+
description?: string;
|
|
769
|
+
};
|
|
619
770
|
key: ModuleKeySchema;
|
|
620
771
|
[k: string]: unknown;
|
|
621
772
|
}
|
|
@@ -630,6 +781,13 @@ export interface Modules {
|
|
|
630
781
|
displayConditions?: {
|
|
631
782
|
[k: string]: unknown;
|
|
632
783
|
};
|
|
784
|
+
keyboardShortcut?: {
|
|
785
|
+
/**
|
|
786
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
787
|
+
*/
|
|
788
|
+
accelerator: string;
|
|
789
|
+
description?: string;
|
|
790
|
+
};
|
|
633
791
|
key: ModuleKeySchema;
|
|
634
792
|
[k: string]: unknown;
|
|
635
793
|
}
|
|
@@ -644,6 +802,13 @@ export interface Modules {
|
|
|
644
802
|
displayConditions?: {
|
|
645
803
|
[k: string]: unknown;
|
|
646
804
|
};
|
|
805
|
+
keyboardShortcut?: {
|
|
806
|
+
/**
|
|
807
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
808
|
+
*/
|
|
809
|
+
accelerator: string;
|
|
810
|
+
description?: string;
|
|
811
|
+
};
|
|
647
812
|
key: ModuleKeySchema;
|
|
648
813
|
[k: string]: unknown;
|
|
649
814
|
}
|
|
@@ -656,6 +821,13 @@ export interface Modules {
|
|
|
656
821
|
displayConditions?: {
|
|
657
822
|
[k: string]: unknown;
|
|
658
823
|
};
|
|
824
|
+
keyboardShortcut?: {
|
|
825
|
+
/**
|
|
826
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
827
|
+
*/
|
|
828
|
+
accelerator: string;
|
|
829
|
+
description?: string;
|
|
830
|
+
};
|
|
659
831
|
key: ModuleKeySchema;
|
|
660
832
|
[k: string]: unknown;
|
|
661
833
|
}
|
|
@@ -670,6 +842,13 @@ export interface Modules {
|
|
|
670
842
|
displayConditions?: {
|
|
671
843
|
[k: string]: unknown;
|
|
672
844
|
};
|
|
845
|
+
keyboardShortcut?: {
|
|
846
|
+
/**
|
|
847
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
848
|
+
*/
|
|
849
|
+
accelerator: string;
|
|
850
|
+
description?: string;
|
|
851
|
+
};
|
|
673
852
|
key: ModuleKeySchema;
|
|
674
853
|
[k: string]: unknown;
|
|
675
854
|
}
|
|
@@ -795,6 +974,13 @@ export interface Modules {
|
|
|
795
974
|
displayConditions?: {
|
|
796
975
|
[k: string]: unknown;
|
|
797
976
|
};
|
|
977
|
+
keyboardShortcut?: {
|
|
978
|
+
/**
|
|
979
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
980
|
+
*/
|
|
981
|
+
accelerator: string;
|
|
982
|
+
description?: string;
|
|
983
|
+
};
|
|
798
984
|
key: ModuleKeySchema;
|
|
799
985
|
}
|
|
800
986
|
| {
|
|
@@ -809,6 +995,13 @@ export interface Modules {
|
|
|
809
995
|
displayConditions?: {
|
|
810
996
|
[k: string]: unknown;
|
|
811
997
|
};
|
|
998
|
+
keyboardShortcut?: {
|
|
999
|
+
/**
|
|
1000
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
1001
|
+
*/
|
|
1002
|
+
accelerator: string;
|
|
1003
|
+
description?: string;
|
|
1004
|
+
};
|
|
812
1005
|
key: ModuleKeySchema;
|
|
813
1006
|
}
|
|
814
1007
|
),
|
|
@@ -821,6 +1014,13 @@ export interface Modules {
|
|
|
821
1014
|
displayConditions?: {
|
|
822
1015
|
[k: string]: unknown;
|
|
823
1016
|
};
|
|
1017
|
+
keyboardShortcut?: {
|
|
1018
|
+
/**
|
|
1019
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
1020
|
+
*/
|
|
1021
|
+
accelerator: string;
|
|
1022
|
+
description?: string;
|
|
1023
|
+
};
|
|
824
1024
|
key: ModuleKeySchema;
|
|
825
1025
|
}
|
|
826
1026
|
| {
|
|
@@ -835,6 +1035,13 @@ export interface Modules {
|
|
|
835
1035
|
displayConditions?: {
|
|
836
1036
|
[k: string]: unknown;
|
|
837
1037
|
};
|
|
1038
|
+
keyboardShortcut?: {
|
|
1039
|
+
/**
|
|
1040
|
+
* Keyboard key(s)/combination(s) used to trigger this module.
|
|
1041
|
+
*/
|
|
1042
|
+
accelerator: string;
|
|
1043
|
+
description?: string;
|
|
1044
|
+
};
|
|
838
1045
|
key: ModuleKeySchema;
|
|
839
1046
|
}
|
|
840
1047
|
)[]
|
|
@@ -917,6 +1124,9 @@ export interface Modules {
|
|
|
917
1124
|
[k: string]: unknown;
|
|
918
1125
|
}
|
|
919
1126
|
| string;
|
|
1127
|
+
resolver?: {
|
|
1128
|
+
function: string;
|
|
1129
|
+
};
|
|
920
1130
|
view?: {
|
|
921
1131
|
resource: string;
|
|
922
1132
|
[k: string]: unknown;
|
|
@@ -943,6 +1153,9 @@ export interface Modules {
|
|
|
943
1153
|
[k: string]: unknown;
|
|
944
1154
|
}
|
|
945
1155
|
| string;
|
|
1156
|
+
resolver?: {
|
|
1157
|
+
function: string;
|
|
1158
|
+
};
|
|
946
1159
|
view?: {
|
|
947
1160
|
resource: string;
|
|
948
1161
|
[k: string]: unknown;
|
|
@@ -1232,7 +1445,7 @@ export interface Modules {
|
|
|
1232
1445
|
}
|
|
1233
1446
|
| {
|
|
1234
1447
|
resource: string;
|
|
1235
|
-
layout?: 'basic' | 'native';
|
|
1448
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1236
1449
|
[k: string]: unknown;
|
|
1237
1450
|
};
|
|
1238
1451
|
displayConditions?: {
|
|
@@ -1293,7 +1506,7 @@ export interface Modules {
|
|
|
1293
1506
|
}
|
|
1294
1507
|
| {
|
|
1295
1508
|
resource: string;
|
|
1296
|
-
layout?: 'basic' | 'native';
|
|
1509
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1297
1510
|
[k: string]: unknown;
|
|
1298
1511
|
};
|
|
1299
1512
|
displayConditions?: {
|
|
@@ -1353,7 +1566,7 @@ export interface Modules {
|
|
|
1353
1566
|
}
|
|
1354
1567
|
| {
|
|
1355
1568
|
resource: string;
|
|
1356
|
-
layout?: 'basic' | 'native';
|
|
1569
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1357
1570
|
[k: string]: unknown;
|
|
1358
1571
|
};
|
|
1359
1572
|
displayConditions?: {
|
|
@@ -1414,7 +1627,7 @@ export interface Modules {
|
|
|
1414
1627
|
}
|
|
1415
1628
|
| {
|
|
1416
1629
|
resource: string;
|
|
1417
|
-
layout?: 'basic' | 'native';
|
|
1630
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1418
1631
|
[k: string]: unknown;
|
|
1419
1632
|
};
|
|
1420
1633
|
displayConditions?: {
|
|
@@ -1821,9 +2034,9 @@ export interface Modules {
|
|
|
1821
2034
|
(
|
|
1822
2035
|
| {
|
|
1823
2036
|
function: string;
|
|
2037
|
+
layout?: 'basic' | 'native';
|
|
1824
2038
|
title: string;
|
|
1825
2039
|
icon?: string;
|
|
1826
|
-
layout?: 'basic' | 'native';
|
|
1827
2040
|
pages?: {
|
|
1828
2041
|
title: string;
|
|
1829
2042
|
route: string;
|
|
@@ -1852,9 +2065,9 @@ export interface Modules {
|
|
|
1852
2065
|
resolver?: {
|
|
1853
2066
|
function: string;
|
|
1854
2067
|
};
|
|
2068
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1855
2069
|
title: string;
|
|
1856
2070
|
icon?: string;
|
|
1857
|
-
layout?: 'basic' | 'native';
|
|
1858
2071
|
pages?: {
|
|
1859
2072
|
title: string;
|
|
1860
2073
|
route: string;
|
|
@@ -1881,9 +2094,9 @@ export interface Modules {
|
|
|
1881
2094
|
...(
|
|
1882
2095
|
| {
|
|
1883
2096
|
function: string;
|
|
2097
|
+
layout?: 'basic' | 'native';
|
|
1884
2098
|
title: string;
|
|
1885
2099
|
icon?: string;
|
|
1886
|
-
layout?: 'basic' | 'native';
|
|
1887
2100
|
pages?: {
|
|
1888
2101
|
title: string;
|
|
1889
2102
|
route: string;
|
|
@@ -1912,9 +2125,9 @@ export interface Modules {
|
|
|
1912
2125
|
resolver?: {
|
|
1913
2126
|
function: string;
|
|
1914
2127
|
};
|
|
2128
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1915
2129
|
title: string;
|
|
1916
2130
|
icon?: string;
|
|
1917
|
-
layout?: 'basic' | 'native';
|
|
1918
2131
|
pages?: {
|
|
1919
2132
|
title: string;
|
|
1920
2133
|
route: string;
|
|
@@ -1943,9 +2156,9 @@ export interface Modules {
|
|
|
1943
2156
|
(
|
|
1944
2157
|
| {
|
|
1945
2158
|
function: string;
|
|
2159
|
+
layout?: 'basic' | 'native';
|
|
1946
2160
|
title: string;
|
|
1947
2161
|
icon?: string;
|
|
1948
|
-
layout?: 'basic' | 'native';
|
|
1949
2162
|
pages?: {
|
|
1950
2163
|
title: string;
|
|
1951
2164
|
route: string;
|
|
@@ -1974,9 +2187,9 @@ export interface Modules {
|
|
|
1974
2187
|
resolver?: {
|
|
1975
2188
|
function: string;
|
|
1976
2189
|
};
|
|
2190
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
1977
2191
|
title: string;
|
|
1978
2192
|
icon?: string;
|
|
1979
|
-
layout?: 'basic' | 'native';
|
|
1980
2193
|
pages?: {
|
|
1981
2194
|
title: string;
|
|
1982
2195
|
route: string;
|
|
@@ -2003,9 +2216,9 @@ export interface Modules {
|
|
|
2003
2216
|
...(
|
|
2004
2217
|
| {
|
|
2005
2218
|
function: string;
|
|
2219
|
+
layout?: 'basic' | 'native';
|
|
2006
2220
|
title: string;
|
|
2007
2221
|
icon?: string;
|
|
2008
|
-
layout?: 'basic' | 'native';
|
|
2009
2222
|
pages?: {
|
|
2010
2223
|
title: string;
|
|
2011
2224
|
route: string;
|
|
@@ -2034,9 +2247,9 @@ export interface Modules {
|
|
|
2034
2247
|
resolver?: {
|
|
2035
2248
|
function: string;
|
|
2036
2249
|
};
|
|
2250
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2037
2251
|
title: string;
|
|
2038
2252
|
icon?: string;
|
|
2039
|
-
layout?: 'basic' | 'native';
|
|
2040
2253
|
pages?: {
|
|
2041
2254
|
title: string;
|
|
2042
2255
|
route: string;
|
|
@@ -2065,9 +2278,9 @@ export interface Modules {
|
|
|
2065
2278
|
(
|
|
2066
2279
|
| {
|
|
2067
2280
|
function: string;
|
|
2281
|
+
layout?: 'basic' | 'native';
|
|
2068
2282
|
title: string;
|
|
2069
2283
|
icon?: string;
|
|
2070
|
-
layout?: 'basic' | 'native';
|
|
2071
2284
|
pages?: {
|
|
2072
2285
|
title: string;
|
|
2073
2286
|
route: string;
|
|
@@ -2096,9 +2309,9 @@ export interface Modules {
|
|
|
2096
2309
|
resolver?: {
|
|
2097
2310
|
function: string;
|
|
2098
2311
|
};
|
|
2312
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2099
2313
|
title: string;
|
|
2100
2314
|
icon?: string;
|
|
2101
|
-
layout?: 'basic' | 'native';
|
|
2102
2315
|
pages?: {
|
|
2103
2316
|
title: string;
|
|
2104
2317
|
route: string;
|
|
@@ -2125,9 +2338,9 @@ export interface Modules {
|
|
|
2125
2338
|
...(
|
|
2126
2339
|
| {
|
|
2127
2340
|
function: string;
|
|
2341
|
+
layout?: 'basic' | 'native';
|
|
2128
2342
|
title: string;
|
|
2129
2343
|
icon?: string;
|
|
2130
|
-
layout?: 'basic' | 'native';
|
|
2131
2344
|
pages?: {
|
|
2132
2345
|
title: string;
|
|
2133
2346
|
route: string;
|
|
@@ -2156,9 +2369,9 @@ export interface Modules {
|
|
|
2156
2369
|
resolver?: {
|
|
2157
2370
|
function: string;
|
|
2158
2371
|
};
|
|
2372
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2159
2373
|
title: string;
|
|
2160
2374
|
icon?: string;
|
|
2161
|
-
layout?: 'basic' | 'native';
|
|
2162
2375
|
pages?: {
|
|
2163
2376
|
title: string;
|
|
2164
2377
|
route: string;
|
|
@@ -2187,9 +2400,9 @@ export interface Modules {
|
|
|
2187
2400
|
(
|
|
2188
2401
|
| {
|
|
2189
2402
|
function: string;
|
|
2403
|
+
layout?: 'basic' | 'native';
|
|
2190
2404
|
title: string;
|
|
2191
2405
|
icon?: string;
|
|
2192
|
-
layout?: 'basic' | 'native';
|
|
2193
2406
|
pages?: {
|
|
2194
2407
|
title: string;
|
|
2195
2408
|
route: string;
|
|
@@ -2218,9 +2431,9 @@ export interface Modules {
|
|
|
2218
2431
|
resolver?: {
|
|
2219
2432
|
function: string;
|
|
2220
2433
|
};
|
|
2434
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2221
2435
|
title: string;
|
|
2222
2436
|
icon?: string;
|
|
2223
|
-
layout?: 'basic' | 'native';
|
|
2224
2437
|
pages?: {
|
|
2225
2438
|
title: string;
|
|
2226
2439
|
route: string;
|
|
@@ -2247,9 +2460,9 @@ export interface Modules {
|
|
|
2247
2460
|
...(
|
|
2248
2461
|
| {
|
|
2249
2462
|
function: string;
|
|
2463
|
+
layout?: 'basic' | 'native';
|
|
2250
2464
|
title: string;
|
|
2251
2465
|
icon?: string;
|
|
2252
|
-
layout?: 'basic' | 'native';
|
|
2253
2466
|
pages?: {
|
|
2254
2467
|
title: string;
|
|
2255
2468
|
route: string;
|
|
@@ -2278,9 +2491,9 @@ export interface Modules {
|
|
|
2278
2491
|
resolver?: {
|
|
2279
2492
|
function: string;
|
|
2280
2493
|
};
|
|
2494
|
+
layout?: 'basic' | 'blank' | 'native';
|
|
2281
2495
|
title: string;
|
|
2282
2496
|
icon?: string;
|
|
2283
|
-
layout?: 'basic' | 'native';
|
|
2284
2497
|
pages?: {
|
|
2285
2498
|
title: string;
|
|
2286
2499
|
route: string;
|
|
@@ -2310,6 +2523,21 @@ export interface Modules {
|
|
|
2310
2523
|
name: string;
|
|
2311
2524
|
description: string;
|
|
2312
2525
|
expression: string;
|
|
2526
|
+
resolver?: {
|
|
2527
|
+
function: string;
|
|
2528
|
+
};
|
|
2529
|
+
view?: {
|
|
2530
|
+
resource: string;
|
|
2531
|
+
[k: string]: unknown;
|
|
2532
|
+
};
|
|
2533
|
+
edit?: {
|
|
2534
|
+
resource: string;
|
|
2535
|
+
[k: string]: unknown;
|
|
2536
|
+
};
|
|
2537
|
+
create?: {
|
|
2538
|
+
resource: string;
|
|
2539
|
+
[k: string]: unknown;
|
|
2540
|
+
};
|
|
2313
2541
|
key: ModuleKeySchema;
|
|
2314
2542
|
[k: string]: unknown;
|
|
2315
2543
|
},
|
|
@@ -2317,6 +2545,21 @@ export interface Modules {
|
|
|
2317
2545
|
name: string;
|
|
2318
2546
|
description: string;
|
|
2319
2547
|
expression: string;
|
|
2548
|
+
resolver?: {
|
|
2549
|
+
function: string;
|
|
2550
|
+
};
|
|
2551
|
+
view?: {
|
|
2552
|
+
resource: string;
|
|
2553
|
+
[k: string]: unknown;
|
|
2554
|
+
};
|
|
2555
|
+
edit?: {
|
|
2556
|
+
resource: string;
|
|
2557
|
+
[k: string]: unknown;
|
|
2558
|
+
};
|
|
2559
|
+
create?: {
|
|
2560
|
+
resource: string;
|
|
2561
|
+
[k: string]: unknown;
|
|
2562
|
+
};
|
|
2320
2563
|
key: ModuleKeySchema;
|
|
2321
2564
|
[k: string]: unknown;
|
|
2322
2565
|
}[]
|
|
@@ -2345,11 +2588,48 @@ export interface Modules {
|
|
|
2345
2588
|
[k: string]: unknown;
|
|
2346
2589
|
}[]
|
|
2347
2590
|
];
|
|
2591
|
+
'jira:globalPermission'?: [
|
|
2592
|
+
{
|
|
2593
|
+
name: string;
|
|
2594
|
+
description: string;
|
|
2595
|
+
anonymousAllowed: false;
|
|
2596
|
+
defaultGrants?: ('all' | 'jira-administrators' | 'none')[];
|
|
2597
|
+
key: ModuleKeySchema;
|
|
2598
|
+
[k: string]: unknown;
|
|
2599
|
+
},
|
|
2600
|
+
...{
|
|
2601
|
+
name: string;
|
|
2602
|
+
description: string;
|
|
2603
|
+
anonymousAllowed: false;
|
|
2604
|
+
defaultGrants?: ('all' | 'jira-administrators' | 'none')[];
|
|
2605
|
+
key: ModuleKeySchema;
|
|
2606
|
+
[k: string]: unknown;
|
|
2607
|
+
}[]
|
|
2608
|
+
];
|
|
2609
|
+
'jira:projectPermission'?: [
|
|
2610
|
+
{
|
|
2611
|
+
name: string;
|
|
2612
|
+
description: string;
|
|
2613
|
+
category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
|
|
2614
|
+
key: ModuleKeySchema;
|
|
2615
|
+
[k: string]: unknown;
|
|
2616
|
+
},
|
|
2617
|
+
...{
|
|
2618
|
+
name: string;
|
|
2619
|
+
description: string;
|
|
2620
|
+
category?: 'attachments' | 'comments' | 'issues' | 'other' | 'projects' | 'time_tracking' | 'voters_and_watchers';
|
|
2621
|
+
key: ModuleKeySchema;
|
|
2622
|
+
[k: string]: unknown;
|
|
2623
|
+
}[]
|
|
2624
|
+
];
|
|
2348
2625
|
'jira:workflowPostFunction'?: [
|
|
2349
2626
|
{
|
|
2350
2627
|
name: string;
|
|
2351
2628
|
description: string;
|
|
2352
2629
|
function: string;
|
|
2630
|
+
resolver?: {
|
|
2631
|
+
function: string;
|
|
2632
|
+
};
|
|
2353
2633
|
view?: {
|
|
2354
2634
|
resource: string;
|
|
2355
2635
|
[k: string]: unknown;
|
|
@@ -2369,6 +2649,9 @@ export interface Modules {
|
|
|
2369
2649
|
name: string;
|
|
2370
2650
|
description: string;
|
|
2371
2651
|
function: string;
|
|
2652
|
+
resolver?: {
|
|
2653
|
+
function: string;
|
|
2654
|
+
};
|
|
2372
2655
|
view?: {
|
|
2373
2656
|
resource: string;
|
|
2374
2657
|
[k: string]: unknown;
|
|
@@ -3085,6 +3368,96 @@ export interface Modules {
|
|
|
3085
3368
|
}
|
|
3086
3369
|
)[]
|
|
3087
3370
|
];
|
|
3371
|
+
'jiraServiceManagement:portalRequestViewAction'?: [
|
|
3372
|
+
(
|
|
3373
|
+
| {
|
|
3374
|
+
title: string;
|
|
3375
|
+
function: string;
|
|
3376
|
+
key: ModuleKeySchema;
|
|
3377
|
+
[k: string]: unknown;
|
|
3378
|
+
}
|
|
3379
|
+
| {
|
|
3380
|
+
title: string;
|
|
3381
|
+
resolver?: {
|
|
3382
|
+
function: string;
|
|
3383
|
+
};
|
|
3384
|
+
resource: string;
|
|
3385
|
+
resourceUploadId?: string;
|
|
3386
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
3387
|
+
key: ModuleKeySchema;
|
|
3388
|
+
[k: string]: unknown;
|
|
3389
|
+
}
|
|
3390
|
+
),
|
|
3391
|
+
...(
|
|
3392
|
+
| {
|
|
3393
|
+
title: string;
|
|
3394
|
+
function: string;
|
|
3395
|
+
key: ModuleKeySchema;
|
|
3396
|
+
[k: string]: unknown;
|
|
3397
|
+
}
|
|
3398
|
+
| {
|
|
3399
|
+
title: string;
|
|
3400
|
+
resolver?: {
|
|
3401
|
+
function: string;
|
|
3402
|
+
};
|
|
3403
|
+
resource: string;
|
|
3404
|
+
resourceUploadId?: string;
|
|
3405
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
3406
|
+
key: ModuleKeySchema;
|
|
3407
|
+
[k: string]: unknown;
|
|
3408
|
+
}
|
|
3409
|
+
)[]
|
|
3410
|
+
];
|
|
3411
|
+
'jiraServiceManagement:portalRequestCreatePropertyPanel'?: [
|
|
3412
|
+
(
|
|
3413
|
+
| {
|
|
3414
|
+
title?: string;
|
|
3415
|
+
icon?: string;
|
|
3416
|
+
layout?: 'native' | 'basic';
|
|
3417
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
3418
|
+
function: string;
|
|
3419
|
+
key: ModuleKeySchema;
|
|
3420
|
+
[k: string]: unknown;
|
|
3421
|
+
}
|
|
3422
|
+
| {
|
|
3423
|
+
viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
3424
|
+
title?: string;
|
|
3425
|
+
icon?: string;
|
|
3426
|
+
layout?: 'native' | 'basic';
|
|
3427
|
+
resolver?: {
|
|
3428
|
+
function: string;
|
|
3429
|
+
};
|
|
3430
|
+
resource: string;
|
|
3431
|
+
resourceUploadId?: string;
|
|
3432
|
+
key: ModuleKeySchema;
|
|
3433
|
+
[k: string]: unknown;
|
|
3434
|
+
}
|
|
3435
|
+
),
|
|
3436
|
+
...(
|
|
3437
|
+
| {
|
|
3438
|
+
title?: string;
|
|
3439
|
+
icon?: string;
|
|
3440
|
+
layout?: 'native' | 'basic';
|
|
3441
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
3442
|
+
function: string;
|
|
3443
|
+
key: ModuleKeySchema;
|
|
3444
|
+
[k: string]: unknown;
|
|
3445
|
+
}
|
|
3446
|
+
| {
|
|
3447
|
+
viewportSize?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
3448
|
+
title?: string;
|
|
3449
|
+
icon?: string;
|
|
3450
|
+
layout?: 'native' | 'basic';
|
|
3451
|
+
resolver?: {
|
|
3452
|
+
function: string;
|
|
3453
|
+
};
|
|
3454
|
+
resource: string;
|
|
3455
|
+
resourceUploadId?: string;
|
|
3456
|
+
key: ModuleKeySchema;
|
|
3457
|
+
[k: string]: unknown;
|
|
3458
|
+
}
|
|
3459
|
+
)[]
|
|
3460
|
+
];
|
|
3088
3461
|
'connect-jira:keyboardShortcuts'?: [
|
|
3089
3462
|
{
|
|
3090
3463
|
shortcut?: string;
|
|
@@ -4611,6 +4984,108 @@ export interface Modules {
|
|
|
4611
4984
|
[k: string]: unknown;
|
|
4612
4985
|
}[]
|
|
4613
4986
|
];
|
|
4987
|
+
'automation:action'?: [
|
|
4988
|
+
{
|
|
4989
|
+
function: string;
|
|
4990
|
+
config: {
|
|
4991
|
+
function?: string;
|
|
4992
|
+
[k: string]: unknown;
|
|
4993
|
+
};
|
|
4994
|
+
key: ModuleKeySchema;
|
|
4995
|
+
[k: string]: unknown;
|
|
4996
|
+
},
|
|
4997
|
+
...{
|
|
4998
|
+
function: string;
|
|
4999
|
+
config: {
|
|
5000
|
+
function?: string;
|
|
5001
|
+
[k: string]: unknown;
|
|
5002
|
+
};
|
|
5003
|
+
key: ModuleKeySchema;
|
|
5004
|
+
[k: string]: unknown;
|
|
5005
|
+
}[]
|
|
5006
|
+
];
|
|
5007
|
+
'automation:trigger'?: [
|
|
5008
|
+
{
|
|
5009
|
+
title: string;
|
|
5010
|
+
function: string;
|
|
5011
|
+
key: ModuleKeySchema;
|
|
5012
|
+
[k: string]: unknown;
|
|
5013
|
+
},
|
|
5014
|
+
...{
|
|
5015
|
+
title: string;
|
|
5016
|
+
function: string;
|
|
5017
|
+
key: ModuleKeySchema;
|
|
5018
|
+
[k: string]: unknown;
|
|
5019
|
+
}[]
|
|
5020
|
+
];
|
|
5021
|
+
'automation:condition'?: [
|
|
5022
|
+
{
|
|
5023
|
+
function: string;
|
|
5024
|
+
config: {
|
|
5025
|
+
function?: string;
|
|
5026
|
+
[k: string]: unknown;
|
|
5027
|
+
};
|
|
5028
|
+
key: ModuleKeySchema;
|
|
5029
|
+
[k: string]: unknown;
|
|
5030
|
+
},
|
|
5031
|
+
...{
|
|
5032
|
+
function: string;
|
|
5033
|
+
config: {
|
|
5034
|
+
function?: string;
|
|
5035
|
+
[k: string]: unknown;
|
|
5036
|
+
};
|
|
5037
|
+
key: ModuleKeySchema;
|
|
5038
|
+
[k: string]: unknown;
|
|
5039
|
+
}[]
|
|
5040
|
+
];
|
|
5041
|
+
'automation:branch'?: [
|
|
5042
|
+
{
|
|
5043
|
+
function: string;
|
|
5044
|
+
config: {
|
|
5045
|
+
function?: string;
|
|
5046
|
+
[k: string]: unknown;
|
|
5047
|
+
};
|
|
5048
|
+
key: ModuleKeySchema;
|
|
5049
|
+
[k: string]: unknown;
|
|
5050
|
+
},
|
|
5051
|
+
...{
|
|
5052
|
+
function: string;
|
|
5053
|
+
config: {
|
|
5054
|
+
function?: string;
|
|
5055
|
+
[k: string]: unknown;
|
|
5056
|
+
};
|
|
5057
|
+
key: ModuleKeySchema;
|
|
5058
|
+
[k: string]: unknown;
|
|
5059
|
+
}[]
|
|
5060
|
+
];
|
|
5061
|
+
'automation:attributeResolver'?: [
|
|
5062
|
+
{
|
|
5063
|
+
function: string;
|
|
5064
|
+
key: ModuleKeySchema;
|
|
5065
|
+
[k: string]: unknown;
|
|
5066
|
+
},
|
|
5067
|
+
...{
|
|
5068
|
+
function: string;
|
|
5069
|
+
key: ModuleKeySchema;
|
|
5070
|
+
[k: string]: unknown;
|
|
5071
|
+
}[]
|
|
5072
|
+
];
|
|
5073
|
+
'automation:template'?: [
|
|
5074
|
+
{
|
|
5075
|
+
function: string;
|
|
5076
|
+
key: ModuleKeySchema;
|
|
5077
|
+
[k: string]: unknown;
|
|
5078
|
+
},
|
|
5079
|
+
...{
|
|
5080
|
+
function: string;
|
|
5081
|
+
key: ModuleKeySchema;
|
|
5082
|
+
[k: string]: unknown;
|
|
5083
|
+
}[]
|
|
5084
|
+
];
|
|
5085
|
+
[k: string]: unknown;
|
|
5086
|
+
}
|
|
5087
|
+
export interface Filter {
|
|
5088
|
+
ignoreSelf: IgnoreSelf;
|
|
4614
5089
|
[k: string]: unknown;
|
|
4615
5090
|
}
|
|
4616
5091
|
export interface StringPredicate {
|