@forge/manifest 2.6.0-next.16 → 2.6.0-next.20
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 +33 -0
- package/out/index.d.ts +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/mapping/product-event-to-scope-mapping.json +8 -8
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -0
- package/out/schema/manifest-schema.json +411 -350
- package/out/schema/manifest.d.ts +466 -376
- package/out/scopes/deprecated-shipyard-scopes.json +24 -0
- package/out/scopes/shipyard-scopes.json +47 -69
- package/out/text/errors.d.ts +1 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +2 -1
- package/out/validators/deprecated-permissions-validator.d.ts +7 -0
- package/out/validators/deprecated-permissions-validator.d.ts.map +1 -0
- package/out/validators/deprecated-permissions-validator.js +31 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +14 -8
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ export type Scopes = string[];
|
|
|
72
72
|
export type Scripts = string[];
|
|
73
73
|
export type Styles = 'unsafe-inline'[];
|
|
74
74
|
export type Backend = (string | Remote)[];
|
|
75
|
-
export type Client = string[];
|
|
75
|
+
export type Client = (string | Remote1)[];
|
|
76
76
|
export type Fonts = string[];
|
|
77
77
|
export type Frames = string[];
|
|
78
78
|
export type Navigation = string[];
|
|
@@ -302,6 +302,9 @@ export interface Modules {
|
|
|
302
302
|
| {
|
|
303
303
|
title: string;
|
|
304
304
|
function: string;
|
|
305
|
+
displayConditions?: {
|
|
306
|
+
[k: string]: unknown;
|
|
307
|
+
};
|
|
305
308
|
key: ModuleKeySchema;
|
|
306
309
|
[k: string]: unknown;
|
|
307
310
|
}
|
|
@@ -313,6 +316,9 @@ export interface Modules {
|
|
|
313
316
|
resource: string;
|
|
314
317
|
resourceUploadId?: string;
|
|
315
318
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
319
|
+
displayConditions?: {
|
|
320
|
+
[k: string]: unknown;
|
|
321
|
+
};
|
|
316
322
|
key: ModuleKeySchema;
|
|
317
323
|
[k: string]: unknown;
|
|
318
324
|
}
|
|
@@ -321,6 +327,9 @@ export interface Modules {
|
|
|
321
327
|
| {
|
|
322
328
|
title: string;
|
|
323
329
|
function: string;
|
|
330
|
+
displayConditions?: {
|
|
331
|
+
[k: string]: unknown;
|
|
332
|
+
};
|
|
324
333
|
key: ModuleKeySchema;
|
|
325
334
|
[k: string]: unknown;
|
|
326
335
|
}
|
|
@@ -332,6 +341,9 @@ export interface Modules {
|
|
|
332
341
|
resource: string;
|
|
333
342
|
resourceUploadId?: string;
|
|
334
343
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
344
|
+
displayConditions?: {
|
|
345
|
+
[k: string]: unknown;
|
|
346
|
+
};
|
|
335
347
|
key: ModuleKeySchema;
|
|
336
348
|
[k: string]: unknown;
|
|
337
349
|
}
|
|
@@ -342,6 +354,9 @@ export interface Modules {
|
|
|
342
354
|
| {
|
|
343
355
|
title: string;
|
|
344
356
|
function: string;
|
|
357
|
+
displayConditions?: {
|
|
358
|
+
[k: string]: unknown;
|
|
359
|
+
};
|
|
345
360
|
key: ModuleKeySchema;
|
|
346
361
|
[k: string]: unknown;
|
|
347
362
|
}
|
|
@@ -353,6 +368,9 @@ export interface Modules {
|
|
|
353
368
|
resource: string;
|
|
354
369
|
resourceUploadId?: string;
|
|
355
370
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
371
|
+
displayConditions?: {
|
|
372
|
+
[k: string]: unknown;
|
|
373
|
+
};
|
|
356
374
|
key: ModuleKeySchema;
|
|
357
375
|
[k: string]: unknown;
|
|
358
376
|
}
|
|
@@ -361,6 +379,9 @@ export interface Modules {
|
|
|
361
379
|
| {
|
|
362
380
|
title: string;
|
|
363
381
|
function: string;
|
|
382
|
+
displayConditions?: {
|
|
383
|
+
[k: string]: unknown;
|
|
384
|
+
};
|
|
364
385
|
key: ModuleKeySchema;
|
|
365
386
|
[k: string]: unknown;
|
|
366
387
|
}
|
|
@@ -372,6 +393,9 @@ export interface Modules {
|
|
|
372
393
|
resource: string;
|
|
373
394
|
resourceUploadId?: string;
|
|
374
395
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
396
|
+
displayConditions?: {
|
|
397
|
+
[k: string]: unknown;
|
|
398
|
+
};
|
|
375
399
|
key: ModuleKeySchema;
|
|
376
400
|
[k: string]: unknown;
|
|
377
401
|
}
|
|
@@ -454,6 +478,9 @@ export interface Modules {
|
|
|
454
478
|
| {
|
|
455
479
|
title: string;
|
|
456
480
|
function: string;
|
|
481
|
+
displayConditions?: {
|
|
482
|
+
[k: string]: unknown;
|
|
483
|
+
};
|
|
457
484
|
key: ModuleKeySchema;
|
|
458
485
|
[k: string]: unknown;
|
|
459
486
|
}
|
|
@@ -465,6 +492,9 @@ export interface Modules {
|
|
|
465
492
|
resource: string;
|
|
466
493
|
resourceUploadId?: string;
|
|
467
494
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
495
|
+
displayConditions?: {
|
|
496
|
+
[k: string]: unknown;
|
|
497
|
+
};
|
|
468
498
|
key: ModuleKeySchema;
|
|
469
499
|
[k: string]: unknown;
|
|
470
500
|
}
|
|
@@ -473,6 +503,9 @@ export interface Modules {
|
|
|
473
503
|
| {
|
|
474
504
|
title: string;
|
|
475
505
|
function: string;
|
|
506
|
+
displayConditions?: {
|
|
507
|
+
[k: string]: unknown;
|
|
508
|
+
};
|
|
476
509
|
key: ModuleKeySchema;
|
|
477
510
|
[k: string]: unknown;
|
|
478
511
|
}
|
|
@@ -484,6 +517,9 @@ export interface Modules {
|
|
|
484
517
|
resource: string;
|
|
485
518
|
resourceUploadId?: string;
|
|
486
519
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
520
|
+
displayConditions?: {
|
|
521
|
+
[k: string]: unknown;
|
|
522
|
+
};
|
|
487
523
|
key: ModuleKeySchema;
|
|
488
524
|
[k: string]: unknown;
|
|
489
525
|
}
|
|
@@ -496,6 +532,9 @@ export interface Modules {
|
|
|
496
532
|
icon?: string;
|
|
497
533
|
route: string;
|
|
498
534
|
function: string;
|
|
535
|
+
displayConditions?: {
|
|
536
|
+
[k: string]: unknown;
|
|
537
|
+
};
|
|
499
538
|
key: ModuleKeySchema;
|
|
500
539
|
[k: string]: unknown;
|
|
501
540
|
}
|
|
@@ -508,6 +547,9 @@ export interface Modules {
|
|
|
508
547
|
};
|
|
509
548
|
resource: string;
|
|
510
549
|
resourceUploadId?: string;
|
|
550
|
+
displayConditions?: {
|
|
551
|
+
[k: string]: unknown;
|
|
552
|
+
};
|
|
511
553
|
key: ModuleKeySchema;
|
|
512
554
|
[k: string]: unknown;
|
|
513
555
|
}
|
|
@@ -518,6 +560,9 @@ export interface Modules {
|
|
|
518
560
|
icon?: string;
|
|
519
561
|
route: string;
|
|
520
562
|
function: string;
|
|
563
|
+
displayConditions?: {
|
|
564
|
+
[k: string]: unknown;
|
|
565
|
+
};
|
|
521
566
|
key: ModuleKeySchema;
|
|
522
567
|
[k: string]: unknown;
|
|
523
568
|
}
|
|
@@ -530,6 +575,9 @@ export interface Modules {
|
|
|
530
575
|
};
|
|
531
576
|
resource: string;
|
|
532
577
|
resourceUploadId?: string;
|
|
578
|
+
displayConditions?: {
|
|
579
|
+
[k: string]: unknown;
|
|
580
|
+
};
|
|
533
581
|
key: ModuleKeySchema;
|
|
534
582
|
[k: string]: unknown;
|
|
535
583
|
}
|
|
@@ -540,6 +588,9 @@ export interface Modules {
|
|
|
540
588
|
| {
|
|
541
589
|
title: string;
|
|
542
590
|
function: string;
|
|
591
|
+
displayConditions?: {
|
|
592
|
+
[k: string]: unknown;
|
|
593
|
+
};
|
|
543
594
|
key: ModuleKeySchema;
|
|
544
595
|
[k: string]: unknown;
|
|
545
596
|
}
|
|
@@ -550,6 +601,9 @@ export interface Modules {
|
|
|
550
601
|
};
|
|
551
602
|
resource: string;
|
|
552
603
|
resourceUploadId?: string;
|
|
604
|
+
displayConditions?: {
|
|
605
|
+
[k: string]: unknown;
|
|
606
|
+
};
|
|
553
607
|
key: ModuleKeySchema;
|
|
554
608
|
[k: string]: unknown;
|
|
555
609
|
}
|
|
@@ -558,6 +612,9 @@ export interface Modules {
|
|
|
558
612
|
| {
|
|
559
613
|
title: string;
|
|
560
614
|
function: string;
|
|
615
|
+
displayConditions?: {
|
|
616
|
+
[k: string]: unknown;
|
|
617
|
+
};
|
|
561
618
|
key: ModuleKeySchema;
|
|
562
619
|
[k: string]: unknown;
|
|
563
620
|
}
|
|
@@ -568,6 +625,9 @@ export interface Modules {
|
|
|
568
625
|
};
|
|
569
626
|
resource: string;
|
|
570
627
|
resourceUploadId?: string;
|
|
628
|
+
displayConditions?: {
|
|
629
|
+
[k: string]: unknown;
|
|
630
|
+
};
|
|
571
631
|
key: ModuleKeySchema;
|
|
572
632
|
[k: string]: unknown;
|
|
573
633
|
}
|
|
@@ -578,6 +638,9 @@ export interface Modules {
|
|
|
578
638
|
| {
|
|
579
639
|
title: string;
|
|
580
640
|
function: string;
|
|
641
|
+
displayConditions?: {
|
|
642
|
+
[k: string]: unknown;
|
|
643
|
+
};
|
|
581
644
|
key: ModuleKeySchema;
|
|
582
645
|
[k: string]: unknown;
|
|
583
646
|
}
|
|
@@ -588,6 +651,9 @@ export interface Modules {
|
|
|
588
651
|
};
|
|
589
652
|
resource: string;
|
|
590
653
|
resourceUploadId?: string;
|
|
654
|
+
displayConditions?: {
|
|
655
|
+
[k: string]: unknown;
|
|
656
|
+
};
|
|
591
657
|
key: ModuleKeySchema;
|
|
592
658
|
[k: string]: unknown;
|
|
593
659
|
}
|
|
@@ -596,6 +662,9 @@ export interface Modules {
|
|
|
596
662
|
| {
|
|
597
663
|
title: string;
|
|
598
664
|
function: string;
|
|
665
|
+
displayConditions?: {
|
|
666
|
+
[k: string]: unknown;
|
|
667
|
+
};
|
|
599
668
|
key: ModuleKeySchema;
|
|
600
669
|
[k: string]: unknown;
|
|
601
670
|
}
|
|
@@ -606,6 +675,9 @@ export interface Modules {
|
|
|
606
675
|
};
|
|
607
676
|
resource: string;
|
|
608
677
|
resourceUploadId?: string;
|
|
678
|
+
displayConditions?: {
|
|
679
|
+
[k: string]: unknown;
|
|
680
|
+
};
|
|
609
681
|
key: ModuleKeySchema;
|
|
610
682
|
[k: string]: unknown;
|
|
611
683
|
}
|
|
@@ -618,6 +690,9 @@ export interface Modules {
|
|
|
618
690
|
icon?: string;
|
|
619
691
|
route: string;
|
|
620
692
|
function: string;
|
|
693
|
+
displayConditions?: {
|
|
694
|
+
[k: string]: unknown;
|
|
695
|
+
};
|
|
621
696
|
key: ModuleKeySchema;
|
|
622
697
|
}
|
|
623
698
|
| {
|
|
@@ -629,6 +704,9 @@ export interface Modules {
|
|
|
629
704
|
};
|
|
630
705
|
resource: string;
|
|
631
706
|
resourceUploadId?: string;
|
|
707
|
+
displayConditions?: {
|
|
708
|
+
[k: string]: unknown;
|
|
709
|
+
};
|
|
632
710
|
key: ModuleKeySchema;
|
|
633
711
|
}
|
|
634
712
|
),
|
|
@@ -638,6 +716,9 @@ export interface Modules {
|
|
|
638
716
|
icon?: string;
|
|
639
717
|
route: string;
|
|
640
718
|
function: string;
|
|
719
|
+
displayConditions?: {
|
|
720
|
+
[k: string]: unknown;
|
|
721
|
+
};
|
|
641
722
|
key: ModuleKeySchema;
|
|
642
723
|
}
|
|
643
724
|
| {
|
|
@@ -649,6 +730,9 @@ export interface Modules {
|
|
|
649
730
|
};
|
|
650
731
|
resource: string;
|
|
651
732
|
resourceUploadId?: string;
|
|
733
|
+
displayConditions?: {
|
|
734
|
+
[k: string]: unknown;
|
|
735
|
+
};
|
|
652
736
|
key: ModuleKeySchema;
|
|
653
737
|
}
|
|
654
738
|
)[]
|
|
@@ -2262,7 +2346,7 @@ export interface Modules {
|
|
|
2262
2346
|
| 'TIME_TRACKING'
|
|
2263
2347
|
| 'other'
|
|
2264
2348
|
| 'OTHER';
|
|
2265
|
-
conditions?: (
|
|
2349
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2266
2350
|
key: ModuleKeySchema;
|
|
2267
2351
|
[k: string]: unknown;
|
|
2268
2352
|
},
|
|
@@ -2284,7 +2368,7 @@ export interface Modules {
|
|
|
2284
2368
|
| 'TIME_TRACKING'
|
|
2285
2369
|
| 'other'
|
|
2286
2370
|
| 'OTHER';
|
|
2287
|
-
conditions?: (
|
|
2371
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2288
2372
|
key: ModuleKeySchema;
|
|
2289
2373
|
[k: string]: unknown;
|
|
2290
2374
|
}[]
|
|
@@ -2392,7 +2476,7 @@ export interface Modules {
|
|
|
2392
2476
|
name?: I18NProperty20;
|
|
2393
2477
|
weight?: number;
|
|
2394
2478
|
iconUrl?: string;
|
|
2395
|
-
conditions?: (
|
|
2479
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2396
2480
|
url?: string;
|
|
2397
2481
|
key: ModuleKeySchema;
|
|
2398
2482
|
[k: string]: unknown;
|
|
@@ -2401,7 +2485,7 @@ export interface Modules {
|
|
|
2401
2485
|
name?: I18NProperty20;
|
|
2402
2486
|
weight?: number;
|
|
2403
2487
|
iconUrl?: string;
|
|
2404
|
-
conditions?: (
|
|
2488
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2405
2489
|
url?: string;
|
|
2406
2490
|
key: ModuleKeySchema;
|
|
2407
2491
|
[k: string]: unknown;
|
|
@@ -2412,7 +2496,7 @@ export interface Modules {
|
|
|
2412
2496
|
name?: I18NProperty21;
|
|
2413
2497
|
weight?: number;
|
|
2414
2498
|
description?: I18NProperty22;
|
|
2415
|
-
conditions?: (
|
|
2499
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2416
2500
|
params?: {
|
|
2417
2501
|
[k: string]: unknown;
|
|
2418
2502
|
};
|
|
@@ -2424,7 +2508,7 @@ export interface Modules {
|
|
|
2424
2508
|
name?: I18NProperty21;
|
|
2425
2509
|
weight?: number;
|
|
2426
2510
|
description?: I18NProperty22;
|
|
2427
|
-
conditions?: (
|
|
2511
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2428
2512
|
params?: {
|
|
2429
2513
|
[k: string]: unknown;
|
|
2430
2514
|
};
|
|
@@ -2437,7 +2521,7 @@ export interface Modules {
|
|
|
2437
2521
|
{
|
|
2438
2522
|
name?: I18NProperty23;
|
|
2439
2523
|
description?: I18NProperty24;
|
|
2440
|
-
conditions?: (
|
|
2524
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2441
2525
|
url?: string;
|
|
2442
2526
|
configurable?: boolean;
|
|
2443
2527
|
thumbnailUrl?: string;
|
|
@@ -2447,7 +2531,7 @@ export interface Modules {
|
|
|
2447
2531
|
...{
|
|
2448
2532
|
name?: I18NProperty23;
|
|
2449
2533
|
description?: I18NProperty24;
|
|
2450
|
-
conditions?: (
|
|
2534
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2451
2535
|
url?: string;
|
|
2452
2536
|
configurable?: boolean;
|
|
2453
2537
|
thumbnailUrl?: string;
|
|
@@ -2506,7 +2590,7 @@ export interface Modules {
|
|
|
2506
2590
|
name?: I18NProperty30;
|
|
2507
2591
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2508
2592
|
target?: IssuePageTargetWebPanel;
|
|
2509
|
-
contentPresentConditions?: (
|
|
2593
|
+
contentPresentConditions?: (SingleCondition | CompositeCondition)[];
|
|
2510
2594
|
jiraNativeAppsEnabled?: boolean;
|
|
2511
2595
|
key: ModuleKeySchema;
|
|
2512
2596
|
[k: string]: unknown;
|
|
@@ -2517,7 +2601,7 @@ export interface Modules {
|
|
|
2517
2601
|
name?: I18NProperty30;
|
|
2518
2602
|
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2519
2603
|
target?: IssuePageTargetWebPanel;
|
|
2520
|
-
contentPresentConditions?: (
|
|
2604
|
+
contentPresentConditions?: (SingleCondition | CompositeCondition)[];
|
|
2521
2605
|
jiraNativeAppsEnabled?: boolean;
|
|
2522
2606
|
key: ModuleKeySchema;
|
|
2523
2607
|
[k: string]: unknown;
|
|
@@ -2549,7 +2633,7 @@ export interface Modules {
|
|
|
2549
2633
|
{
|
|
2550
2634
|
name?: I18NProperty33;
|
|
2551
2635
|
weight?: number;
|
|
2552
|
-
conditions?: (
|
|
2636
|
+
conditions?: (CompositeCondition2 | SingleCondition2)[];
|
|
2553
2637
|
params?: {
|
|
2554
2638
|
[k: string]: unknown;
|
|
2555
2639
|
};
|
|
@@ -2560,7 +2644,7 @@ export interface Modules {
|
|
|
2560
2644
|
...{
|
|
2561
2645
|
name?: I18NProperty33;
|
|
2562
2646
|
weight?: number;
|
|
2563
|
-
conditions?: (
|
|
2647
|
+
conditions?: (CompositeCondition2 | SingleCondition2)[];
|
|
2564
2648
|
params?: {
|
|
2565
2649
|
[k: string]: unknown;
|
|
2566
2650
|
};
|
|
@@ -2641,7 +2725,7 @@ export interface Modules {
|
|
|
2641
2725
|
{
|
|
2642
2726
|
name?: I18NProperty38;
|
|
2643
2727
|
weight?: number;
|
|
2644
|
-
conditions?: (
|
|
2728
|
+
conditions?: (CompositeCondition4 | SingleCondition3)[];
|
|
2645
2729
|
params?: {
|
|
2646
2730
|
[k: string]: unknown;
|
|
2647
2731
|
};
|
|
@@ -2652,7 +2736,7 @@ export interface Modules {
|
|
|
2652
2736
|
...{
|
|
2653
2737
|
name?: I18NProperty38;
|
|
2654
2738
|
weight?: number;
|
|
2655
|
-
conditions?: (
|
|
2739
|
+
conditions?: (CompositeCondition4 | SingleCondition3)[];
|
|
2656
2740
|
params?: {
|
|
2657
2741
|
[k: string]: unknown;
|
|
2658
2742
|
};
|
|
@@ -2746,7 +2830,7 @@ export interface Modules {
|
|
|
2746
2830
|
name?: I18NProperty44;
|
|
2747
2831
|
weight?: number;
|
|
2748
2832
|
location?: string;
|
|
2749
|
-
conditions?: (
|
|
2833
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2750
2834
|
params?: {
|
|
2751
2835
|
[k: string]: unknown;
|
|
2752
2836
|
};
|
|
@@ -2758,7 +2842,7 @@ export interface Modules {
|
|
|
2758
2842
|
name?: I18NProperty44;
|
|
2759
2843
|
weight?: number;
|
|
2760
2844
|
location?: string;
|
|
2761
|
-
conditions?: (
|
|
2845
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2762
2846
|
params?: {
|
|
2763
2847
|
[k: string]: unknown;
|
|
2764
2848
|
};
|
|
@@ -2883,7 +2967,7 @@ export interface Modules {
|
|
|
2883
2967
|
fullPage?: boolean;
|
|
2884
2968
|
cacheable?: boolean;
|
|
2885
2969
|
location?: string;
|
|
2886
|
-
conditions?: (
|
|
2970
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2887
2971
|
params?: {
|
|
2888
2972
|
[k: string]: unknown;
|
|
2889
2973
|
};
|
|
@@ -2898,7 +2982,7 @@ export interface Modules {
|
|
|
2898
2982
|
fullPage?: boolean;
|
|
2899
2983
|
cacheable?: boolean;
|
|
2900
2984
|
location?: string;
|
|
2901
|
-
conditions?: (
|
|
2985
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2902
2986
|
params?: {
|
|
2903
2987
|
[k: string]: unknown;
|
|
2904
2988
|
};
|
|
@@ -2916,7 +3000,7 @@ export interface Modules {
|
|
|
2916
3000
|
location?: string;
|
|
2917
3001
|
cacheable?: boolean;
|
|
2918
3002
|
supportsNative?: boolean;
|
|
2919
|
-
conditions?: (
|
|
3003
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2920
3004
|
params?: {
|
|
2921
3005
|
[k: string]: unknown;
|
|
2922
3006
|
};
|
|
@@ -2932,7 +3016,7 @@ export interface Modules {
|
|
|
2932
3016
|
location?: string;
|
|
2933
3017
|
cacheable?: boolean;
|
|
2934
3018
|
supportsNative?: boolean;
|
|
2935
|
-
conditions?: (
|
|
3019
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2936
3020
|
params?: {
|
|
2937
3021
|
[k: string]: unknown;
|
|
2938
3022
|
};
|
|
@@ -2946,7 +3030,7 @@ export interface Modules {
|
|
|
2946
3030
|
filter?: string;
|
|
2947
3031
|
excludeBody?: boolean;
|
|
2948
3032
|
event?: string;
|
|
2949
|
-
conditions?: (
|
|
3033
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2950
3034
|
propertyKeys?: string[];
|
|
2951
3035
|
url?: string;
|
|
2952
3036
|
key: ModuleKeySchema;
|
|
@@ -2956,7 +3040,7 @@ export interface Modules {
|
|
|
2956
3040
|
filter?: string;
|
|
2957
3041
|
excludeBody?: boolean;
|
|
2958
3042
|
event?: string;
|
|
2959
|
-
conditions?: (
|
|
3043
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
2960
3044
|
propertyKeys?: string[];
|
|
2961
3045
|
url?: string;
|
|
2962
3046
|
key: ModuleKeySchema;
|
|
@@ -2999,7 +3083,7 @@ export interface Modules {
|
|
|
2999
3083
|
name?: I18NProperty55;
|
|
3000
3084
|
weight?: number;
|
|
3001
3085
|
location?: string;
|
|
3002
|
-
conditions?: (
|
|
3086
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3003
3087
|
params?: {
|
|
3004
3088
|
[k: string]: unknown;
|
|
3005
3089
|
};
|
|
@@ -3011,7 +3095,7 @@ export interface Modules {
|
|
|
3011
3095
|
name?: I18NProperty55;
|
|
3012
3096
|
weight?: number;
|
|
3013
3097
|
location?: string;
|
|
3014
|
-
conditions?: (
|
|
3098
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3015
3099
|
params?: {
|
|
3016
3100
|
[k: string]: unknown;
|
|
3017
3101
|
};
|
|
@@ -3095,7 +3179,7 @@ export interface Modules {
|
|
|
3095
3179
|
fullPage?: boolean;
|
|
3096
3180
|
cacheable?: boolean;
|
|
3097
3181
|
location?: string;
|
|
3098
|
-
conditions?: (
|
|
3182
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3099
3183
|
params?: {
|
|
3100
3184
|
[k: string]: unknown;
|
|
3101
3185
|
};
|
|
@@ -3110,7 +3194,7 @@ export interface Modules {
|
|
|
3110
3194
|
fullPage?: boolean;
|
|
3111
3195
|
cacheable?: boolean;
|
|
3112
3196
|
location?: string;
|
|
3113
|
-
conditions?: (
|
|
3197
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3114
3198
|
params?: {
|
|
3115
3199
|
[k: string]: unknown;
|
|
3116
3200
|
};
|
|
@@ -3368,7 +3452,7 @@ export interface Modules {
|
|
|
3368
3452
|
icon?: Icon18;
|
|
3369
3453
|
name?: I18NProperty91;
|
|
3370
3454
|
cacheable?: boolean;
|
|
3371
|
-
conditions?: (
|
|
3455
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3372
3456
|
params?: {
|
|
3373
3457
|
[k: string]: unknown;
|
|
3374
3458
|
};
|
|
@@ -3384,7 +3468,7 @@ export interface Modules {
|
|
|
3384
3468
|
icon?: Icon18;
|
|
3385
3469
|
name?: I18NProperty91;
|
|
3386
3470
|
cacheable?: boolean;
|
|
3387
|
-
conditions?: (
|
|
3471
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3388
3472
|
params?: {
|
|
3389
3473
|
[k: string]: unknown;
|
|
3390
3474
|
};
|
|
@@ -3981,10 +4065,47 @@ export interface Icon3 {
|
|
|
3981
4065
|
*
|
|
3982
4066
|
*/
|
|
3983
4067
|
export interface WebItemTarget {
|
|
3984
|
-
options?:
|
|
4068
|
+
options?: InlineDialogOptions | DialogOptions | DialogModuleOptions;
|
|
3985
4069
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
3986
4070
|
[k: string]: unknown;
|
|
3987
4071
|
}
|
|
4072
|
+
/**
|
|
4073
|
+
*
|
|
4074
|
+
*
|
|
4075
|
+
* Options for an inline dialog target
|
|
4076
|
+
*
|
|
4077
|
+
* <h3>Example</h3>
|
|
4078
|
+
*
|
|
4079
|
+
*
|
|
4080
|
+
*
|
|
4081
|
+
*
|
|
4082
|
+
*
|
|
4083
|
+
* {
|
|
4084
|
+
* "target": {
|
|
4085
|
+
* "type": "inlinedialog",
|
|
4086
|
+
* "options": {
|
|
4087
|
+
* "onHover": true,
|
|
4088
|
+
* "offsetX": "30px",
|
|
4089
|
+
* "offsetY": "20px"
|
|
4090
|
+
* }
|
|
4091
|
+
* }
|
|
4092
|
+
* }
|
|
4093
|
+
*
|
|
4094
|
+
*
|
|
4095
|
+
*
|
|
4096
|
+
*/
|
|
4097
|
+
export interface InlineDialogOptions {
|
|
4098
|
+
offsetX?: string;
|
|
4099
|
+
offsetY?: string;
|
|
4100
|
+
width?: string;
|
|
4101
|
+
onTop?: boolean;
|
|
4102
|
+
showDelay?: number;
|
|
4103
|
+
closeOthers?: boolean;
|
|
4104
|
+
persistent?: boolean;
|
|
4105
|
+
onHover?: boolean;
|
|
4106
|
+
isRelativeToMouse?: boolean;
|
|
4107
|
+
[k: string]: unknown;
|
|
4108
|
+
}
|
|
3988
4109
|
/**
|
|
3989
4110
|
*
|
|
3990
4111
|
*
|
|
@@ -4110,43 +4231,6 @@ export interface DialogModuleOptions {
|
|
|
4110
4231
|
key: string;
|
|
4111
4232
|
[k: string]: unknown;
|
|
4112
4233
|
}
|
|
4113
|
-
/**
|
|
4114
|
-
*
|
|
4115
|
-
*
|
|
4116
|
-
* Options for an inline dialog target
|
|
4117
|
-
*
|
|
4118
|
-
* <h3>Example</h3>
|
|
4119
|
-
*
|
|
4120
|
-
*
|
|
4121
|
-
*
|
|
4122
|
-
*
|
|
4123
|
-
*
|
|
4124
|
-
* {
|
|
4125
|
-
* "target": {
|
|
4126
|
-
* "type": "inlinedialog",
|
|
4127
|
-
* "options": {
|
|
4128
|
-
* "onHover": true,
|
|
4129
|
-
* "offsetX": "30px",
|
|
4130
|
-
* "offsetY": "20px"
|
|
4131
|
-
* }
|
|
4132
|
-
* }
|
|
4133
|
-
* }
|
|
4134
|
-
*
|
|
4135
|
-
*
|
|
4136
|
-
*
|
|
4137
|
-
*/
|
|
4138
|
-
export interface InlineDialogOptions {
|
|
4139
|
-
offsetX?: string;
|
|
4140
|
-
offsetY?: string;
|
|
4141
|
-
width?: string;
|
|
4142
|
-
onTop?: boolean;
|
|
4143
|
-
showDelay?: number;
|
|
4144
|
-
closeOthers?: boolean;
|
|
4145
|
-
persistent?: boolean;
|
|
4146
|
-
onHover?: boolean;
|
|
4147
|
-
isRelativeToMouse?: boolean;
|
|
4148
|
-
[k: string]: unknown;
|
|
4149
|
-
}
|
|
4150
4234
|
/**
|
|
4151
4235
|
*
|
|
4152
4236
|
*
|
|
@@ -5145,37 +5229,6 @@ export interface I18NProperty33 {
|
|
|
5145
5229
|
i18n?: string;
|
|
5146
5230
|
[k: string]: unknown;
|
|
5147
5231
|
}
|
|
5148
|
-
/**
|
|
5149
|
-
*
|
|
5150
|
-
*
|
|
5151
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5152
|
-
* [Conditions](../../conditions/) for more information.
|
|
5153
|
-
*
|
|
5154
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5155
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
5156
|
-
*
|
|
5157
|
-
* <h3>Example</h3>
|
|
5158
|
-
*
|
|
5159
|
-
*
|
|
5160
|
-
*
|
|
5161
|
-
*
|
|
5162
|
-
*
|
|
5163
|
-
* {
|
|
5164
|
-
* "condition": "user_is_logged_in",
|
|
5165
|
-
* "invert": false
|
|
5166
|
-
* }
|
|
5167
|
-
*
|
|
5168
|
-
*
|
|
5169
|
-
*
|
|
5170
|
-
*/
|
|
5171
|
-
export interface SingleCondition2 {
|
|
5172
|
-
condition: string;
|
|
5173
|
-
invert?: boolean;
|
|
5174
|
-
params?: {
|
|
5175
|
-
[k: string]: unknown;
|
|
5176
|
-
};
|
|
5177
|
-
[k: string]: unknown;
|
|
5178
|
-
}
|
|
5179
5232
|
/**
|
|
5180
5233
|
*
|
|
5181
5234
|
*
|
|
@@ -5254,10 +5307,41 @@ export interface CompositeCondition2 {
|
|
|
5254
5307
|
*
|
|
5255
5308
|
*/
|
|
5256
5309
|
export interface CompositeCondition3 {
|
|
5257
|
-
conditions?: (
|
|
5310
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
5258
5311
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
5259
5312
|
[k: string]: unknown;
|
|
5260
5313
|
}
|
|
5314
|
+
/**
|
|
5315
|
+
*
|
|
5316
|
+
*
|
|
5317
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5318
|
+
* [Conditions](../../conditions/) for more information.
|
|
5319
|
+
*
|
|
5320
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5321
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
5322
|
+
*
|
|
5323
|
+
* <h3>Example</h3>
|
|
5324
|
+
*
|
|
5325
|
+
*
|
|
5326
|
+
*
|
|
5327
|
+
*
|
|
5328
|
+
*
|
|
5329
|
+
* {
|
|
5330
|
+
* "condition": "user_is_logged_in",
|
|
5331
|
+
* "invert": false
|
|
5332
|
+
* }
|
|
5333
|
+
*
|
|
5334
|
+
*
|
|
5335
|
+
*
|
|
5336
|
+
*/
|
|
5337
|
+
export interface SingleCondition2 {
|
|
5338
|
+
condition: string;
|
|
5339
|
+
invert?: boolean;
|
|
5340
|
+
params?: {
|
|
5341
|
+
[k: string]: unknown;
|
|
5342
|
+
};
|
|
5343
|
+
[k: string]: unknown;
|
|
5344
|
+
}
|
|
5261
5345
|
/**
|
|
5262
5346
|
*
|
|
5263
5347
|
*
|
|
@@ -5450,37 +5534,6 @@ export interface I18NProperty38 {
|
|
|
5450
5534
|
i18n?: string;
|
|
5451
5535
|
[k: string]: unknown;
|
|
5452
5536
|
}
|
|
5453
|
-
/**
|
|
5454
|
-
*
|
|
5455
|
-
*
|
|
5456
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5457
|
-
* [Conditions](../../conditions/) for more information.
|
|
5458
|
-
*
|
|
5459
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5460
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
5461
|
-
*
|
|
5462
|
-
* <h3>Example</h3>
|
|
5463
|
-
*
|
|
5464
|
-
*
|
|
5465
|
-
*
|
|
5466
|
-
*
|
|
5467
|
-
*
|
|
5468
|
-
* {
|
|
5469
|
-
* "condition": "user_is_logged_in",
|
|
5470
|
-
* "invert": false
|
|
5471
|
-
* }
|
|
5472
|
-
*
|
|
5473
|
-
*
|
|
5474
|
-
*
|
|
5475
|
-
*/
|
|
5476
|
-
export interface SingleCondition3 {
|
|
5477
|
-
condition: string;
|
|
5478
|
-
invert?: boolean;
|
|
5479
|
-
params?: {
|
|
5480
|
-
[k: string]: unknown;
|
|
5481
|
-
};
|
|
5482
|
-
[k: string]: unknown;
|
|
5483
|
-
}
|
|
5484
5537
|
/**
|
|
5485
5538
|
*
|
|
5486
5539
|
*
|
|
@@ -5559,10 +5612,41 @@ export interface CompositeCondition4 {
|
|
|
5559
5612
|
*
|
|
5560
5613
|
*/
|
|
5561
5614
|
export interface CompositeCondition5 {
|
|
5562
|
-
conditions?: (
|
|
5615
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
5563
5616
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
5564
5617
|
[k: string]: unknown;
|
|
5565
5618
|
}
|
|
5619
|
+
/**
|
|
5620
|
+
*
|
|
5621
|
+
*
|
|
5622
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
5623
|
+
* [Conditions](../../conditions/) for more information.
|
|
5624
|
+
*
|
|
5625
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
5626
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
5627
|
+
*
|
|
5628
|
+
* <h3>Example</h3>
|
|
5629
|
+
*
|
|
5630
|
+
*
|
|
5631
|
+
*
|
|
5632
|
+
*
|
|
5633
|
+
*
|
|
5634
|
+
* {
|
|
5635
|
+
* "condition": "user_is_logged_in",
|
|
5636
|
+
* "invert": false
|
|
5637
|
+
* }
|
|
5638
|
+
*
|
|
5639
|
+
*
|
|
5640
|
+
*
|
|
5641
|
+
*/
|
|
5642
|
+
export interface SingleCondition3 {
|
|
5643
|
+
condition: string;
|
|
5644
|
+
invert?: boolean;
|
|
5645
|
+
params?: {
|
|
5646
|
+
[k: string]: unknown;
|
|
5647
|
+
};
|
|
5648
|
+
[k: string]: unknown;
|
|
5649
|
+
}
|
|
5566
5650
|
/**
|
|
5567
5651
|
*
|
|
5568
5652
|
*
|
|
@@ -6311,47 +6395,10 @@ export interface Icon10 {
|
|
|
6311
6395
|
*
|
|
6312
6396
|
*/
|
|
6313
6397
|
export interface WebItemTarget1 {
|
|
6314
|
-
options?:
|
|
6398
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
6315
6399
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6316
6400
|
[k: string]: unknown;
|
|
6317
6401
|
}
|
|
6318
|
-
/**
|
|
6319
|
-
*
|
|
6320
|
-
*
|
|
6321
|
-
* Options for an inline dialog target
|
|
6322
|
-
*
|
|
6323
|
-
* <h3>Example</h3>
|
|
6324
|
-
*
|
|
6325
|
-
*
|
|
6326
|
-
*
|
|
6327
|
-
*
|
|
6328
|
-
*
|
|
6329
|
-
* {
|
|
6330
|
-
* "target": {
|
|
6331
|
-
* "type": "inlinedialog",
|
|
6332
|
-
* "options": {
|
|
6333
|
-
* "onHover": true,
|
|
6334
|
-
* "offsetX": "30px",
|
|
6335
|
-
* "offsetY": "20px"
|
|
6336
|
-
* }
|
|
6337
|
-
* }
|
|
6338
|
-
* }
|
|
6339
|
-
*
|
|
6340
|
-
*
|
|
6341
|
-
*
|
|
6342
|
-
*/
|
|
6343
|
-
export interface InlineDialogOptions1 {
|
|
6344
|
-
offsetX?: string;
|
|
6345
|
-
offsetY?: string;
|
|
6346
|
-
width?: string;
|
|
6347
|
-
onTop?: boolean;
|
|
6348
|
-
showDelay?: number;
|
|
6349
|
-
closeOthers?: boolean;
|
|
6350
|
-
persistent?: boolean;
|
|
6351
|
-
onHover?: boolean;
|
|
6352
|
-
isRelativeToMouse?: boolean;
|
|
6353
|
-
[k: string]: unknown;
|
|
6354
|
-
}
|
|
6355
6402
|
/**
|
|
6356
6403
|
*
|
|
6357
6404
|
*
|
|
@@ -6477,6 +6524,43 @@ export interface I18NProperty58 {
|
|
|
6477
6524
|
i18n?: string;
|
|
6478
6525
|
[k: string]: unknown;
|
|
6479
6526
|
}
|
|
6527
|
+
/**
|
|
6528
|
+
*
|
|
6529
|
+
*
|
|
6530
|
+
* Options for an inline dialog target
|
|
6531
|
+
*
|
|
6532
|
+
* <h3>Example</h3>
|
|
6533
|
+
*
|
|
6534
|
+
*
|
|
6535
|
+
*
|
|
6536
|
+
*
|
|
6537
|
+
*
|
|
6538
|
+
* {
|
|
6539
|
+
* "target": {
|
|
6540
|
+
* "type": "inlinedialog",
|
|
6541
|
+
* "options": {
|
|
6542
|
+
* "onHover": true,
|
|
6543
|
+
* "offsetX": "30px",
|
|
6544
|
+
* "offsetY": "20px"
|
|
6545
|
+
* }
|
|
6546
|
+
* }
|
|
6547
|
+
* }
|
|
6548
|
+
*
|
|
6549
|
+
*
|
|
6550
|
+
*
|
|
6551
|
+
*/
|
|
6552
|
+
export interface InlineDialogOptions1 {
|
|
6553
|
+
offsetX?: string;
|
|
6554
|
+
offsetY?: string;
|
|
6555
|
+
width?: string;
|
|
6556
|
+
onTop?: boolean;
|
|
6557
|
+
showDelay?: number;
|
|
6558
|
+
closeOthers?: boolean;
|
|
6559
|
+
persistent?: boolean;
|
|
6560
|
+
onHover?: boolean;
|
|
6561
|
+
isRelativeToMouse?: boolean;
|
|
6562
|
+
[k: string]: unknown;
|
|
6563
|
+
}
|
|
6480
6564
|
/**
|
|
6481
6565
|
*
|
|
6482
6566
|
*
|
|
@@ -8418,7 +8502,7 @@ export interface I18NProperty74 {
|
|
|
8418
8502
|
*
|
|
8419
8503
|
*/
|
|
8420
8504
|
export interface MacroPropertyPanel {
|
|
8421
|
-
controls?: (TextControl |
|
|
8505
|
+
controls?: (TextControl | ButtonControl | ToggleGroup | ControlGroup)[];
|
|
8422
8506
|
cacheable?: boolean;
|
|
8423
8507
|
url: string;
|
|
8424
8508
|
[k: string]: unknown;
|
|
@@ -8451,6 +8535,157 @@ export interface TextControl {
|
|
|
8451
8535
|
key: string;
|
|
8452
8536
|
[k: string]: unknown;
|
|
8453
8537
|
}
|
|
8538
|
+
/**
|
|
8539
|
+
*
|
|
8540
|
+
*
|
|
8541
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8542
|
+
*
|
|
8543
|
+
* <p><b>Example</b></p>
|
|
8544
|
+
*
|
|
8545
|
+
*
|
|
8546
|
+
*
|
|
8547
|
+
*
|
|
8548
|
+
*
|
|
8549
|
+
* {
|
|
8550
|
+
* "type": "button",
|
|
8551
|
+
* "label": {
|
|
8552
|
+
* "value": "My Custom Control 0"
|
|
8553
|
+
* },
|
|
8554
|
+
* "key": "my-custom-control-0"
|
|
8555
|
+
* }
|
|
8556
|
+
*
|
|
8557
|
+
*
|
|
8558
|
+
*
|
|
8559
|
+
*/
|
|
8560
|
+
export interface ButtonControl {
|
|
8561
|
+
label: I18NProperty75;
|
|
8562
|
+
type: 'button' | 'BUTTON';
|
|
8563
|
+
key: string;
|
|
8564
|
+
[k: string]: unknown;
|
|
8565
|
+
}
|
|
8566
|
+
/**
|
|
8567
|
+
*
|
|
8568
|
+
*
|
|
8569
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8570
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8571
|
+
*
|
|
8572
|
+
* <h3>Example</h3>
|
|
8573
|
+
*
|
|
8574
|
+
*
|
|
8575
|
+
*
|
|
8576
|
+
*
|
|
8577
|
+
*
|
|
8578
|
+
* {
|
|
8579
|
+
* "value": "My text"
|
|
8580
|
+
* }
|
|
8581
|
+
*
|
|
8582
|
+
*
|
|
8583
|
+
*
|
|
8584
|
+
*/
|
|
8585
|
+
export interface I18NProperty75 {
|
|
8586
|
+
value: string;
|
|
8587
|
+
i18n?: string;
|
|
8588
|
+
[k: string]: unknown;
|
|
8589
|
+
}
|
|
8590
|
+
/**
|
|
8591
|
+
*
|
|
8592
|
+
*
|
|
8593
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8594
|
+
*
|
|
8595
|
+
* <p><b>Example</b></p>
|
|
8596
|
+
*
|
|
8597
|
+
*
|
|
8598
|
+
*
|
|
8599
|
+
*
|
|
8600
|
+
*
|
|
8601
|
+
* [
|
|
8602
|
+
* {
|
|
8603
|
+
* "type": "togglegroup",
|
|
8604
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8605
|
+
* "controls": [
|
|
8606
|
+
* {
|
|
8607
|
+
* "type": "togglebutton",
|
|
8608
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8609
|
+
* "label": {
|
|
8610
|
+
* "value": "My Custom Control 0"
|
|
8611
|
+
* },
|
|
8612
|
+
* "key": "my-custom-toggle-button-0"
|
|
8613
|
+
* },
|
|
8614
|
+
* {
|
|
8615
|
+
* "type": "togglebutton",
|
|
8616
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8617
|
+
* "label": {
|
|
8618
|
+
* "value": "My Custom Control 1"
|
|
8619
|
+
* },
|
|
8620
|
+
* "key": "my-custom-toggle-button-1"
|
|
8621
|
+
* }
|
|
8622
|
+
* ]
|
|
8623
|
+
* }
|
|
8624
|
+
* ]
|
|
8625
|
+
*
|
|
8626
|
+
*
|
|
8627
|
+
*
|
|
8628
|
+
*/
|
|
8629
|
+
export interface ToggleGroup {
|
|
8630
|
+
controls: ToggleButtonControl[];
|
|
8631
|
+
macroParameter: string;
|
|
8632
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8633
|
+
[k: string]: unknown;
|
|
8634
|
+
}
|
|
8635
|
+
/**
|
|
8636
|
+
*
|
|
8637
|
+
*
|
|
8638
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8639
|
+
*
|
|
8640
|
+
* <p><b>Example</b></p>
|
|
8641
|
+
*
|
|
8642
|
+
*
|
|
8643
|
+
*
|
|
8644
|
+
*
|
|
8645
|
+
*
|
|
8646
|
+
* {
|
|
8647
|
+
* "type": "togglebutton",
|
|
8648
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8649
|
+
* "label": {
|
|
8650
|
+
* "value": "My Custom Control 0"
|
|
8651
|
+
* },
|
|
8652
|
+
* "key": "my-custom-toggle-button-0"
|
|
8653
|
+
* }
|
|
8654
|
+
*
|
|
8655
|
+
*
|
|
8656
|
+
*
|
|
8657
|
+
*/
|
|
8658
|
+
export interface ToggleButtonControl {
|
|
8659
|
+
macroParameterValue: string;
|
|
8660
|
+
label: I18NProperty76;
|
|
8661
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8662
|
+
key: string;
|
|
8663
|
+
[k: string]: unknown;
|
|
8664
|
+
}
|
|
8665
|
+
/**
|
|
8666
|
+
*
|
|
8667
|
+
*
|
|
8668
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8669
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8670
|
+
*
|
|
8671
|
+
* <h3>Example</h3>
|
|
8672
|
+
*
|
|
8673
|
+
*
|
|
8674
|
+
*
|
|
8675
|
+
*
|
|
8676
|
+
*
|
|
8677
|
+
* {
|
|
8678
|
+
* "value": "My text"
|
|
8679
|
+
* }
|
|
8680
|
+
*
|
|
8681
|
+
*
|
|
8682
|
+
*
|
|
8683
|
+
*/
|
|
8684
|
+
export interface I18NProperty76 {
|
|
8685
|
+
value: string;
|
|
8686
|
+
i18n?: string;
|
|
8687
|
+
[k: string]: unknown;
|
|
8688
|
+
}
|
|
8454
8689
|
/**
|
|
8455
8690
|
*
|
|
8456
8691
|
*
|
|
@@ -8488,161 +8723,10 @@ export interface TextControl {
|
|
|
8488
8723
|
*
|
|
8489
8724
|
*/
|
|
8490
8725
|
export interface ControlGroup {
|
|
8491
|
-
controls:
|
|
8726
|
+
controls: ButtonControl1[];
|
|
8492
8727
|
type: 'group' | 'GROUP';
|
|
8493
8728
|
[k: string]: unknown;
|
|
8494
8729
|
}
|
|
8495
|
-
/**
|
|
8496
|
-
*
|
|
8497
|
-
*
|
|
8498
|
-
* Defines a button which may appear in control extension points such as the property panel
|
|
8499
|
-
*
|
|
8500
|
-
* <p><b>Example</b></p>
|
|
8501
|
-
*
|
|
8502
|
-
*
|
|
8503
|
-
*
|
|
8504
|
-
*
|
|
8505
|
-
*
|
|
8506
|
-
* {
|
|
8507
|
-
* "type": "button",
|
|
8508
|
-
* "label": {
|
|
8509
|
-
* "value": "My Custom Control 0"
|
|
8510
|
-
* },
|
|
8511
|
-
* "key": "my-custom-control-0"
|
|
8512
|
-
* }
|
|
8513
|
-
*
|
|
8514
|
-
*
|
|
8515
|
-
*
|
|
8516
|
-
*/
|
|
8517
|
-
export interface ButtonControl {
|
|
8518
|
-
label: I18NProperty75;
|
|
8519
|
-
type: 'button' | 'BUTTON';
|
|
8520
|
-
key: string;
|
|
8521
|
-
[k: string]: unknown;
|
|
8522
|
-
}
|
|
8523
|
-
/**
|
|
8524
|
-
*
|
|
8525
|
-
*
|
|
8526
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8527
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8528
|
-
*
|
|
8529
|
-
* <h3>Example</h3>
|
|
8530
|
-
*
|
|
8531
|
-
*
|
|
8532
|
-
*
|
|
8533
|
-
*
|
|
8534
|
-
*
|
|
8535
|
-
* {
|
|
8536
|
-
* "value": "My text"
|
|
8537
|
-
* }
|
|
8538
|
-
*
|
|
8539
|
-
*
|
|
8540
|
-
*
|
|
8541
|
-
*/
|
|
8542
|
-
export interface I18NProperty75 {
|
|
8543
|
-
value: string;
|
|
8544
|
-
i18n?: string;
|
|
8545
|
-
[k: string]: unknown;
|
|
8546
|
-
}
|
|
8547
|
-
/**
|
|
8548
|
-
*
|
|
8549
|
-
*
|
|
8550
|
-
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8551
|
-
*
|
|
8552
|
-
* <p><b>Example</b></p>
|
|
8553
|
-
*
|
|
8554
|
-
*
|
|
8555
|
-
*
|
|
8556
|
-
*
|
|
8557
|
-
*
|
|
8558
|
-
* [
|
|
8559
|
-
* {
|
|
8560
|
-
* "type": "togglegroup",
|
|
8561
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
8562
|
-
* "controls": [
|
|
8563
|
-
* {
|
|
8564
|
-
* "type": "togglebutton",
|
|
8565
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8566
|
-
* "label": {
|
|
8567
|
-
* "value": "My Custom Control 0"
|
|
8568
|
-
* },
|
|
8569
|
-
* "key": "my-custom-toggle-button-0"
|
|
8570
|
-
* },
|
|
8571
|
-
* {
|
|
8572
|
-
* "type": "togglebutton",
|
|
8573
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8574
|
-
* "label": {
|
|
8575
|
-
* "value": "My Custom Control 1"
|
|
8576
|
-
* },
|
|
8577
|
-
* "key": "my-custom-toggle-button-1"
|
|
8578
|
-
* }
|
|
8579
|
-
* ]
|
|
8580
|
-
* }
|
|
8581
|
-
* ]
|
|
8582
|
-
*
|
|
8583
|
-
*
|
|
8584
|
-
*
|
|
8585
|
-
*/
|
|
8586
|
-
export interface ToggleGroup {
|
|
8587
|
-
controls: ToggleButtonControl[];
|
|
8588
|
-
macroParameter: string;
|
|
8589
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8590
|
-
[k: string]: unknown;
|
|
8591
|
-
}
|
|
8592
|
-
/**
|
|
8593
|
-
*
|
|
8594
|
-
*
|
|
8595
|
-
* Defines a toggle button which appears inside a ToggleGroup
|
|
8596
|
-
*
|
|
8597
|
-
* <p><b>Example</b></p>
|
|
8598
|
-
*
|
|
8599
|
-
*
|
|
8600
|
-
*
|
|
8601
|
-
*
|
|
8602
|
-
*
|
|
8603
|
-
* {
|
|
8604
|
-
* "type": "togglebutton",
|
|
8605
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8606
|
-
* "label": {
|
|
8607
|
-
* "value": "My Custom Control 0"
|
|
8608
|
-
* },
|
|
8609
|
-
* "key": "my-custom-toggle-button-0"
|
|
8610
|
-
* }
|
|
8611
|
-
*
|
|
8612
|
-
*
|
|
8613
|
-
*
|
|
8614
|
-
*/
|
|
8615
|
-
export interface ToggleButtonControl {
|
|
8616
|
-
macroParameterValue: string;
|
|
8617
|
-
label: I18NProperty76;
|
|
8618
|
-
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8619
|
-
key: string;
|
|
8620
|
-
[k: string]: unknown;
|
|
8621
|
-
}
|
|
8622
|
-
/**
|
|
8623
|
-
*
|
|
8624
|
-
*
|
|
8625
|
-
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8626
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8627
|
-
*
|
|
8628
|
-
* <h3>Example</h3>
|
|
8629
|
-
*
|
|
8630
|
-
*
|
|
8631
|
-
*
|
|
8632
|
-
*
|
|
8633
|
-
*
|
|
8634
|
-
* {
|
|
8635
|
-
* "value": "My text"
|
|
8636
|
-
* }
|
|
8637
|
-
*
|
|
8638
|
-
*
|
|
8639
|
-
*
|
|
8640
|
-
*/
|
|
8641
|
-
export interface I18NProperty76 {
|
|
8642
|
-
value: string;
|
|
8643
|
-
i18n?: string;
|
|
8644
|
-
[k: string]: unknown;
|
|
8645
|
-
}
|
|
8646
8730
|
/**
|
|
8647
8731
|
*
|
|
8648
8732
|
*
|
|
@@ -29663,7 +29747,7 @@ export interface I18NProperty83 {
|
|
|
29663
29747
|
*
|
|
29664
29748
|
*/
|
|
29665
29749
|
export interface MacroPropertyPanel1 {
|
|
29666
|
-
controls?: (
|
|
29750
|
+
controls?: (TextControl1 | ButtonControl2 | ControlGroup1 | ToggleGroup1)[];
|
|
29667
29751
|
cacheable?: boolean;
|
|
29668
29752
|
url: string;
|
|
29669
29753
|
[k: string]: unknown;
|
|
@@ -29671,7 +29755,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29671
29755
|
/**
|
|
29672
29756
|
*
|
|
29673
29757
|
*
|
|
29674
|
-
* Defines a
|
|
29758
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29675
29759
|
*
|
|
29676
29760
|
* <p><b>Example</b></p>
|
|
29677
29761
|
*
|
|
@@ -29679,44 +29763,27 @@ export interface MacroPropertyPanel1 {
|
|
|
29679
29763
|
*
|
|
29680
29764
|
*
|
|
29681
29765
|
*
|
|
29682
|
-
*
|
|
29683
|
-
*
|
|
29684
|
-
*
|
|
29685
|
-
* "
|
|
29686
|
-
*
|
|
29687
|
-
*
|
|
29688
|
-
*
|
|
29689
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29690
|
-
* "label": {
|
|
29691
|
-
* "value": "My Custom Control 0"
|
|
29692
|
-
* },
|
|
29693
|
-
* "key": "my-custom-toggle-button-0"
|
|
29694
|
-
* },
|
|
29695
|
-
* {
|
|
29696
|
-
* "type": "togglebutton",
|
|
29697
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29698
|
-
* "label": {
|
|
29699
|
-
* "value": "My Custom Control 1"
|
|
29700
|
-
* },
|
|
29701
|
-
* "key": "my-custom-toggle-button-1"
|
|
29702
|
-
* }
|
|
29703
|
-
* ]
|
|
29704
|
-
* }
|
|
29705
|
-
* ]
|
|
29766
|
+
* {
|
|
29767
|
+
* "type": "button",
|
|
29768
|
+
* "label": {
|
|
29769
|
+
* "value": "My Custom Control 0"
|
|
29770
|
+
* },
|
|
29771
|
+
* "key": "my-custom-control-0"
|
|
29772
|
+
* }
|
|
29706
29773
|
*
|
|
29707
29774
|
*
|
|
29708
29775
|
*
|
|
29709
29776
|
*/
|
|
29710
|
-
export interface
|
|
29711
|
-
controls: ToggleButtonControl1[];
|
|
29777
|
+
export interface TextControl1 {
|
|
29712
29778
|
macroParameter: string;
|
|
29713
|
-
type: '
|
|
29779
|
+
type: 'text' | 'TEXT';
|
|
29780
|
+
key: string;
|
|
29714
29781
|
[k: string]: unknown;
|
|
29715
29782
|
}
|
|
29716
29783
|
/**
|
|
29717
29784
|
*
|
|
29718
29785
|
*
|
|
29719
|
-
* Defines a
|
|
29786
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29720
29787
|
*
|
|
29721
29788
|
* <p><b>Example</b></p>
|
|
29722
29789
|
*
|
|
@@ -29725,21 +29792,19 @@ export interface ToggleGroup1 {
|
|
|
29725
29792
|
*
|
|
29726
29793
|
*
|
|
29727
29794
|
* {
|
|
29728
|
-
* "type": "
|
|
29729
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29795
|
+
* "type": "button",
|
|
29730
29796
|
* "label": {
|
|
29731
29797
|
* "value": "My Custom Control 0"
|
|
29732
29798
|
* },
|
|
29733
|
-
* "key": "my-custom-
|
|
29799
|
+
* "key": "my-custom-control-0"
|
|
29734
29800
|
* }
|
|
29735
29801
|
*
|
|
29736
29802
|
*
|
|
29737
29803
|
*
|
|
29738
29804
|
*/
|
|
29739
|
-
export interface
|
|
29740
|
-
macroParameterValue: string;
|
|
29805
|
+
export interface ButtonControl2 {
|
|
29741
29806
|
label: I18NProperty84;
|
|
29742
|
-
type: '
|
|
29807
|
+
type: 'button' | 'BUTTON';
|
|
29743
29808
|
key: string;
|
|
29744
29809
|
[k: string]: unknown;
|
|
29745
29810
|
}
|
|
@@ -29804,7 +29869,7 @@ export interface I18NProperty84 {
|
|
|
29804
29869
|
*
|
|
29805
29870
|
*/
|
|
29806
29871
|
export interface ControlGroup1 {
|
|
29807
|
-
controls:
|
|
29872
|
+
controls: ButtonControl3[];
|
|
29808
29873
|
type: 'group' | 'GROUP';
|
|
29809
29874
|
[k: string]: unknown;
|
|
29810
29875
|
}
|
|
@@ -29830,7 +29895,7 @@ export interface ControlGroup1 {
|
|
|
29830
29895
|
*
|
|
29831
29896
|
*
|
|
29832
29897
|
*/
|
|
29833
|
-
export interface
|
|
29898
|
+
export interface ButtonControl3 {
|
|
29834
29899
|
label: I18NProperty85;
|
|
29835
29900
|
type: 'button' | 'BUTTON';
|
|
29836
29901
|
key: string;
|
|
@@ -29863,7 +29928,7 @@ export interface I18NProperty85 {
|
|
|
29863
29928
|
/**
|
|
29864
29929
|
*
|
|
29865
29930
|
*
|
|
29866
|
-
* Defines a
|
|
29931
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29867
29932
|
*
|
|
29868
29933
|
* <p><b>Example</b></p>
|
|
29869
29934
|
*
|
|
@@ -29871,27 +29936,44 @@ export interface I18NProperty85 {
|
|
|
29871
29936
|
*
|
|
29872
29937
|
*
|
|
29873
29938
|
*
|
|
29874
|
-
*
|
|
29875
|
-
*
|
|
29876
|
-
*
|
|
29877
|
-
* "
|
|
29878
|
-
*
|
|
29879
|
-
*
|
|
29880
|
-
*
|
|
29939
|
+
* [
|
|
29940
|
+
* {
|
|
29941
|
+
* "type": "togglegroup",
|
|
29942
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29943
|
+
* "controls": [
|
|
29944
|
+
* {
|
|
29945
|
+
* "type": "togglebutton",
|
|
29946
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29947
|
+
* "label": {
|
|
29948
|
+
* "value": "My Custom Control 0"
|
|
29949
|
+
* },
|
|
29950
|
+
* "key": "my-custom-toggle-button-0"
|
|
29951
|
+
* },
|
|
29952
|
+
* {
|
|
29953
|
+
* "type": "togglebutton",
|
|
29954
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29955
|
+
* "label": {
|
|
29956
|
+
* "value": "My Custom Control 1"
|
|
29957
|
+
* },
|
|
29958
|
+
* "key": "my-custom-toggle-button-1"
|
|
29959
|
+
* }
|
|
29960
|
+
* ]
|
|
29961
|
+
* }
|
|
29962
|
+
* ]
|
|
29881
29963
|
*
|
|
29882
29964
|
*
|
|
29883
29965
|
*
|
|
29884
29966
|
*/
|
|
29885
|
-
export interface
|
|
29967
|
+
export interface ToggleGroup1 {
|
|
29968
|
+
controls: ToggleButtonControl1[];
|
|
29886
29969
|
macroParameter: string;
|
|
29887
|
-
type: '
|
|
29888
|
-
key: string;
|
|
29970
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29889
29971
|
[k: string]: unknown;
|
|
29890
29972
|
}
|
|
29891
29973
|
/**
|
|
29892
29974
|
*
|
|
29893
29975
|
*
|
|
29894
|
-
* Defines a button which
|
|
29976
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29895
29977
|
*
|
|
29896
29978
|
* <p><b>Example</b></p>
|
|
29897
29979
|
*
|
|
@@ -29900,19 +29982,21 @@ export interface TextControl1 {
|
|
|
29900
29982
|
*
|
|
29901
29983
|
*
|
|
29902
29984
|
* {
|
|
29903
|
-
* "type": "
|
|
29985
|
+
* "type": "togglebutton",
|
|
29986
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29904
29987
|
* "label": {
|
|
29905
29988
|
* "value": "My Custom Control 0"
|
|
29906
29989
|
* },
|
|
29907
|
-
* "key": "my-custom-
|
|
29990
|
+
* "key": "my-custom-toggle-button-0"
|
|
29908
29991
|
* }
|
|
29909
29992
|
*
|
|
29910
29993
|
*
|
|
29911
29994
|
*
|
|
29912
29995
|
*/
|
|
29913
|
-
export interface
|
|
29996
|
+
export interface ToggleButtonControl1 {
|
|
29997
|
+
macroParameterValue: string;
|
|
29914
29998
|
label: I18NProperty86;
|
|
29915
|
-
type: '
|
|
29999
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29916
30000
|
key: string;
|
|
29917
30001
|
[k: string]: unknown;
|
|
29918
30002
|
}
|
|
@@ -51741,6 +51825,12 @@ export interface Fetch {
|
|
|
51741
51825
|
export interface Remote {
|
|
51742
51826
|
remote: string;
|
|
51743
51827
|
}
|
|
51828
|
+
/**
|
|
51829
|
+
* References a Remote
|
|
51830
|
+
*/
|
|
51831
|
+
export interface Remote1 {
|
|
51832
|
+
remote: string;
|
|
51833
|
+
}
|
|
51744
51834
|
export interface HostedResourcesSchema {
|
|
51745
51835
|
/**
|
|
51746
51836
|
* A key for the resource, which other modules can refer to. Must be unique within the manifest and have a maximum of 23 characters.
|