@forge/manifest 12.7.0 → 12.8.0-experimental-4a332af
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 +106 -0
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +1 -0
- package/out/schema/manifest-schema.json +1300 -257
- package/out/schema/manifest.d.ts +424 -16
- package/out/text/errors.d.ts +12 -0
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +14 -2
- package/out/types/module-types.d.ts +3 -0
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +3 -0
- package/out/utils/module-references.d.ts +6 -0
- package/out/utils/module-references.d.ts.map +1 -1
- package/out/utils/module-references.js +32 -2
- package/out/validators/index.d.ts +1 -0
- package/out/validators/index.d.ts.map +1 -1
- package/out/validators/index.js +1 -0
- package/out/validators/internal-fields-validator.d.ts +8 -0
- package/out/validators/internal-fields-validator.d.ts.map +1 -0
- package/out/validators/internal-fields-validator.js +44 -0
- package/out/validators/modules-validators/rovo/index.d.ts.map +1 -1
- package/out/validators/modules-validators/rovo/index.js +2 -0
- package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.d.ts +4 -0
- package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.d.ts.map +1 -0
- package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.js +29 -0
- package/out/validators/modules-validators/rovo/validate-unreferenced-actions.js +6 -0
- package/out/validators/resources-validator.d.ts +4 -0
- package/out/validators/resources-validator.d.ts.map +1 -1
- package/out/validators/resources-validator.js +158 -9
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -63,6 +63,9 @@ export type Filter =
|
|
|
63
63
|
| {
|
|
64
64
|
[k: string]: unknown;
|
|
65
65
|
}
|
|
66
|
+
| {
|
|
67
|
+
[k: string]: unknown;
|
|
68
|
+
}
|
|
66
69
|
| {
|
|
67
70
|
[k: string]: unknown;
|
|
68
71
|
};
|
|
@@ -90,6 +93,9 @@ export type Filter1 =
|
|
|
90
93
|
| {
|
|
91
94
|
[k: string]: unknown;
|
|
92
95
|
}
|
|
96
|
+
| {
|
|
97
|
+
[k: string]: unknown;
|
|
98
|
+
}
|
|
93
99
|
| {
|
|
94
100
|
[k: string]: unknown;
|
|
95
101
|
};
|
|
@@ -105,6 +111,9 @@ export type Filter2 =
|
|
|
105
111
|
| {
|
|
106
112
|
[k: string]: unknown;
|
|
107
113
|
}
|
|
114
|
+
| {
|
|
115
|
+
[k: string]: unknown;
|
|
116
|
+
}
|
|
108
117
|
| {
|
|
109
118
|
[k: string]: unknown;
|
|
110
119
|
};
|
|
@@ -165,6 +174,10 @@ export type ExtensionKey4 = string;
|
|
|
165
174
|
* The interval at which to trigger function invocation.
|
|
166
175
|
*/
|
|
167
176
|
export type Interval = 'fiveMinute' | 'hour' | 'day' | 'week';
|
|
177
|
+
/**
|
|
178
|
+
* When set to true, invocations are skipped if the app does not have an active license for the site.
|
|
179
|
+
*/
|
|
180
|
+
export type AppIsLicensed = boolean;
|
|
168
181
|
/**
|
|
169
182
|
* The key for an extension in CaaS. That means that this is a reference to another extension in your descriptor / manifest.
|
|
170
183
|
*/
|
|
@@ -802,6 +815,21 @@ export type Services = {
|
|
|
802
815
|
scaling?: Scaling;
|
|
803
816
|
tunnel?: ServiceTunnelConfig;
|
|
804
817
|
}[];
|
|
818
|
+
export type OverriddenServices = {
|
|
819
|
+
key: string;
|
|
820
|
+
containers: Containers;
|
|
821
|
+
scaling?: Scaling;
|
|
822
|
+
tunnel?: ServiceTunnelConfig;
|
|
823
|
+
}[];
|
|
824
|
+
export type ManifestOverrides = {
|
|
825
|
+
applyTo: {
|
|
826
|
+
environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
|
|
827
|
+
shards?: [string, ...string[]];
|
|
828
|
+
};
|
|
829
|
+
value: {
|
|
830
|
+
services?: OverriddenServices;
|
|
831
|
+
};
|
|
832
|
+
}[];
|
|
805
833
|
|
|
806
834
|
export interface ManifestSchema {
|
|
807
835
|
app: App;
|
|
@@ -814,6 +842,7 @@ export interface ManifestSchema {
|
|
|
814
842
|
environment?: Environment;
|
|
815
843
|
translations?: Translations;
|
|
816
844
|
services?: Services;
|
|
845
|
+
overrides?: ManifestOverrides;
|
|
817
846
|
}
|
|
818
847
|
export interface App {
|
|
819
848
|
description?: Description;
|
|
@@ -1502,11 +1531,13 @@ export interface Modules {
|
|
|
1502
1531
|
| {
|
|
1503
1532
|
function: ExtensionKey4;
|
|
1504
1533
|
interval: Interval;
|
|
1534
|
+
filter?: Filter3;
|
|
1505
1535
|
key: ModuleKeySchema;
|
|
1506
1536
|
}
|
|
1507
1537
|
| {
|
|
1508
1538
|
endpoint: ExtensionKey5;
|
|
1509
1539
|
interval: Interval1;
|
|
1540
|
+
filter?: Filter4;
|
|
1510
1541
|
key: ModuleKeySchema;
|
|
1511
1542
|
}
|
|
1512
1543
|
),
|
|
@@ -1514,11 +1545,13 @@ export interface Modules {
|
|
|
1514
1545
|
| {
|
|
1515
1546
|
function: ExtensionKey4;
|
|
1516
1547
|
interval: Interval;
|
|
1548
|
+
filter?: Filter3;
|
|
1517
1549
|
key: ModuleKeySchema;
|
|
1518
1550
|
}
|
|
1519
1551
|
| {
|
|
1520
1552
|
endpoint: ExtensionKey5;
|
|
1521
1553
|
interval: Interval1;
|
|
1554
|
+
filter?: Filter4;
|
|
1522
1555
|
key: ModuleKeySchema;
|
|
1523
1556
|
}
|
|
1524
1557
|
)[]
|
|
@@ -1836,6 +1869,7 @@ export interface Modules {
|
|
|
1836
1869
|
icon?: string;
|
|
1837
1870
|
config?: {
|
|
1838
1871
|
resource?: string;
|
|
1872
|
+
resolvedResourceEntry?: string;
|
|
1839
1873
|
render?: 'default' | 'native';
|
|
1840
1874
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1841
1875
|
};
|
|
@@ -1867,6 +1901,7 @@ export interface Modules {
|
|
|
1867
1901
|
icon?: string;
|
|
1868
1902
|
config?: {
|
|
1869
1903
|
resource?: string;
|
|
1904
|
+
resolvedResourceEntry?: string;
|
|
1870
1905
|
render?: 'default' | 'native';
|
|
1871
1906
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1872
1907
|
};
|
|
@@ -1894,6 +1929,7 @@ export interface Modules {
|
|
|
1894
1929
|
| {
|
|
1895
1930
|
config?: {
|
|
1896
1931
|
resource?: string;
|
|
1932
|
+
resolvedResourceEntry?: string;
|
|
1897
1933
|
render?: 'default' | 'native';
|
|
1898
1934
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1899
1935
|
};
|
|
@@ -1952,6 +1988,7 @@ export interface Modules {
|
|
|
1952
1988
|
icon?: string;
|
|
1953
1989
|
config?: {
|
|
1954
1990
|
resource?: string;
|
|
1991
|
+
resolvedResourceEntry?: string;
|
|
1955
1992
|
render?: 'default' | 'native';
|
|
1956
1993
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1957
1994
|
};
|
|
@@ -1983,6 +2020,7 @@ export interface Modules {
|
|
|
1983
2020
|
icon?: string;
|
|
1984
2021
|
config?: {
|
|
1985
2022
|
resource?: string;
|
|
2023
|
+
resolvedResourceEntry?: string;
|
|
1986
2024
|
render?: 'default' | 'native';
|
|
1987
2025
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1988
2026
|
};
|
|
@@ -2010,6 +2048,7 @@ export interface Modules {
|
|
|
2010
2048
|
| {
|
|
2011
2049
|
config?: {
|
|
2012
2050
|
resource?: string;
|
|
2051
|
+
resolvedResourceEntry?: string;
|
|
2013
2052
|
render?: 'default' | 'native';
|
|
2014
2053
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
2015
2054
|
};
|
|
@@ -12521,6 +12560,7 @@ export interface Modules {
|
|
|
12521
12560
|
endpoint: string;
|
|
12522
12561
|
};
|
|
12523
12562
|
resource: string;
|
|
12563
|
+
resolvedResourceEntry?: string;
|
|
12524
12564
|
resourceUploadId?: string;
|
|
12525
12565
|
description?:
|
|
12526
12566
|
| {
|
|
@@ -12537,7 +12577,15 @@ export interface Modules {
|
|
|
12537
12577
|
config?:
|
|
12538
12578
|
| boolean
|
|
12539
12579
|
| {
|
|
12540
|
-
openOnInsert
|
|
12580
|
+
openOnInsert?: boolean;
|
|
12581
|
+
parameters?: {
|
|
12582
|
+
/**
|
|
12583
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12584
|
+
*
|
|
12585
|
+
*/
|
|
12586
|
+
identifier: string;
|
|
12587
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12588
|
+
}[];
|
|
12541
12589
|
}
|
|
12542
12590
|
| {
|
|
12543
12591
|
function?: string;
|
|
@@ -12555,6 +12603,14 @@ export interface Modules {
|
|
|
12555
12603
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12556
12604
|
openOnInsert?: boolean;
|
|
12557
12605
|
icon?: string;
|
|
12606
|
+
parameters?: {
|
|
12607
|
+
/**
|
|
12608
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12609
|
+
*
|
|
12610
|
+
*/
|
|
12611
|
+
identifier: string;
|
|
12612
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12613
|
+
}[];
|
|
12558
12614
|
};
|
|
12559
12615
|
autoConvert?: {
|
|
12560
12616
|
matchers: [
|
|
@@ -12637,6 +12693,7 @@ export interface Modules {
|
|
|
12637
12693
|
endpoint: string;
|
|
12638
12694
|
};
|
|
12639
12695
|
resource: string;
|
|
12696
|
+
resolvedResourceEntry?: string;
|
|
12640
12697
|
resourceUploadId?: string;
|
|
12641
12698
|
description?:
|
|
12642
12699
|
| {
|
|
@@ -12653,7 +12710,15 @@ export interface Modules {
|
|
|
12653
12710
|
config?:
|
|
12654
12711
|
| boolean
|
|
12655
12712
|
| {
|
|
12656
|
-
openOnInsert
|
|
12713
|
+
openOnInsert?: boolean;
|
|
12714
|
+
parameters?: {
|
|
12715
|
+
/**
|
|
12716
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12717
|
+
*
|
|
12718
|
+
*/
|
|
12719
|
+
identifier: string;
|
|
12720
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12721
|
+
}[];
|
|
12657
12722
|
}
|
|
12658
12723
|
| {
|
|
12659
12724
|
function?: string;
|
|
@@ -12671,6 +12736,14 @@ export interface Modules {
|
|
|
12671
12736
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12672
12737
|
openOnInsert?: boolean;
|
|
12673
12738
|
icon?: string;
|
|
12739
|
+
parameters?: {
|
|
12740
|
+
/**
|
|
12741
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12742
|
+
*
|
|
12743
|
+
*/
|
|
12744
|
+
identifier: string;
|
|
12745
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12746
|
+
}[];
|
|
12674
12747
|
};
|
|
12675
12748
|
autoConvert?: {
|
|
12676
12749
|
matchers: [
|
|
@@ -12853,6 +12926,7 @@ export interface Modules {
|
|
|
12853
12926
|
endpoint: string;
|
|
12854
12927
|
};
|
|
12855
12928
|
resource: string;
|
|
12929
|
+
resolvedResourceEntry?: string;
|
|
12856
12930
|
resourceUploadId?: string;
|
|
12857
12931
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
12858
12932
|
displayConditions?: {
|
|
@@ -12920,6 +12994,7 @@ export interface Modules {
|
|
|
12920
12994
|
endpoint: string;
|
|
12921
12995
|
};
|
|
12922
12996
|
resource: string;
|
|
12997
|
+
resolvedResourceEntry?: string;
|
|
12923
12998
|
resourceUploadId?: string;
|
|
12924
12999
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
12925
13000
|
displayConditions?: {
|
|
@@ -12989,6 +13064,7 @@ export interface Modules {
|
|
|
12989
13064
|
endpoint: string;
|
|
12990
13065
|
};
|
|
12991
13066
|
resource: string;
|
|
13067
|
+
resolvedResourceEntry?: string;
|
|
12992
13068
|
resourceUploadId?: string;
|
|
12993
13069
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
12994
13070
|
displayConditions?: {
|
|
@@ -13056,6 +13132,7 @@ export interface Modules {
|
|
|
13056
13132
|
endpoint: string;
|
|
13057
13133
|
};
|
|
13058
13134
|
resource: string;
|
|
13135
|
+
resolvedResourceEntry?: string;
|
|
13059
13136
|
resourceUploadId?: string;
|
|
13060
13137
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13061
13138
|
displayConditions?: {
|
|
@@ -13157,6 +13234,7 @@ export interface Modules {
|
|
|
13157
13234
|
};
|
|
13158
13235
|
contentPropertyKey?: string;
|
|
13159
13236
|
resource: string;
|
|
13237
|
+
resolvedResourceEntry?: string;
|
|
13160
13238
|
resourceUploadId?: string;
|
|
13161
13239
|
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13162
13240
|
viewportContainer?: 'popup' | 'modal';
|
|
@@ -13256,6 +13334,7 @@ export interface Modules {
|
|
|
13256
13334
|
};
|
|
13257
13335
|
contentPropertyKey?: string;
|
|
13258
13336
|
resource: string;
|
|
13337
|
+
resolvedResourceEntry?: string;
|
|
13259
13338
|
resourceUploadId?: string;
|
|
13260
13339
|
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13261
13340
|
viewportContainer?: 'popup' | 'modal';
|
|
@@ -13324,6 +13403,7 @@ export interface Modules {
|
|
|
13324
13403
|
endpoint: string;
|
|
13325
13404
|
};
|
|
13326
13405
|
resource: string;
|
|
13406
|
+
resolvedResourceEntry?: string;
|
|
13327
13407
|
resourceUploadId?: string;
|
|
13328
13408
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13329
13409
|
displayConditions?: {
|
|
@@ -13389,6 +13469,7 @@ export interface Modules {
|
|
|
13389
13469
|
endpoint: string;
|
|
13390
13470
|
};
|
|
13391
13471
|
resource: string;
|
|
13472
|
+
resolvedResourceEntry?: string;
|
|
13392
13473
|
resourceUploadId?: string;
|
|
13393
13474
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13394
13475
|
displayConditions?: {
|
|
@@ -13461,6 +13542,7 @@ export interface Modules {
|
|
|
13461
13542
|
endpoint: string;
|
|
13462
13543
|
};
|
|
13463
13544
|
resource: string;
|
|
13545
|
+
resolvedResourceEntry?: string;
|
|
13464
13546
|
resourceUploadId?: string;
|
|
13465
13547
|
displayConditions?: {
|
|
13466
13548
|
[k: string]: unknown;
|
|
@@ -13531,6 +13613,7 @@ export interface Modules {
|
|
|
13531
13613
|
endpoint: string;
|
|
13532
13614
|
};
|
|
13533
13615
|
resource: string;
|
|
13616
|
+
resolvedResourceEntry?: string;
|
|
13534
13617
|
resourceUploadId?: string;
|
|
13535
13618
|
displayConditions?: {
|
|
13536
13619
|
[k: string]: unknown;
|
|
@@ -13600,6 +13683,7 @@ export interface Modules {
|
|
|
13600
13683
|
endpoint: string;
|
|
13601
13684
|
};
|
|
13602
13685
|
resource: string;
|
|
13686
|
+
resolvedResourceEntry?: string;
|
|
13603
13687
|
resourceUploadId?: string;
|
|
13604
13688
|
displayConditions?: {
|
|
13605
13689
|
[k: string]: unknown;
|
|
@@ -13666,6 +13750,7 @@ export interface Modules {
|
|
|
13666
13750
|
endpoint: string;
|
|
13667
13751
|
};
|
|
13668
13752
|
resource: string;
|
|
13753
|
+
resolvedResourceEntry?: string;
|
|
13669
13754
|
resourceUploadId?: string;
|
|
13670
13755
|
displayConditions?: {
|
|
13671
13756
|
[k: string]: unknown;
|
|
@@ -13740,6 +13825,7 @@ export interface Modules {
|
|
|
13740
13825
|
endpoint: string;
|
|
13741
13826
|
};
|
|
13742
13827
|
resource: string;
|
|
13828
|
+
resolvedResourceEntry?: string;
|
|
13743
13829
|
resourceUploadId?: string;
|
|
13744
13830
|
displayConditions?: {
|
|
13745
13831
|
[k: string]: unknown;
|
|
@@ -13820,6 +13906,7 @@ export interface Modules {
|
|
|
13820
13906
|
endpoint: string;
|
|
13821
13907
|
};
|
|
13822
13908
|
resource: string;
|
|
13909
|
+
resolvedResourceEntry?: string;
|
|
13823
13910
|
resourceUploadId?: string;
|
|
13824
13911
|
displayConditions?: {
|
|
13825
13912
|
[k: string]: unknown;
|
|
@@ -13898,6 +13985,7 @@ export interface Modules {
|
|
|
13898
13985
|
endpoint: string;
|
|
13899
13986
|
};
|
|
13900
13987
|
resource: string;
|
|
13988
|
+
resolvedResourceEntry?: string;
|
|
13901
13989
|
resourceUploadId?: string;
|
|
13902
13990
|
displayConditions?: {
|
|
13903
13991
|
[k: string]: unknown;
|
|
@@ -13966,6 +14054,7 @@ export interface Modules {
|
|
|
13966
14054
|
endpoint: string;
|
|
13967
14055
|
};
|
|
13968
14056
|
resource: string;
|
|
14057
|
+
resolvedResourceEntry?: string;
|
|
13969
14058
|
resourceUploadId?: string;
|
|
13970
14059
|
displayConditions?: {
|
|
13971
14060
|
[k: string]: unknown;
|
|
@@ -14001,6 +14090,7 @@ export interface Modules {
|
|
|
14001
14090
|
routePrefix: string;
|
|
14002
14091
|
icon?: string;
|
|
14003
14092
|
resource: string;
|
|
14093
|
+
resolvedResourceEntry?: string;
|
|
14004
14094
|
resourceUploadId?: string;
|
|
14005
14095
|
resolver?:
|
|
14006
14096
|
| {
|
|
@@ -14027,6 +14117,7 @@ export interface Modules {
|
|
|
14027
14117
|
endpoint: string;
|
|
14028
14118
|
};
|
|
14029
14119
|
resource: string;
|
|
14120
|
+
resolvedResourceEntry?: string;
|
|
14030
14121
|
resourceUploadId?: string;
|
|
14031
14122
|
render: 'native' | 'default';
|
|
14032
14123
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14047,6 +14138,7 @@ export interface Modules {
|
|
|
14047
14138
|
routePrefix: string;
|
|
14048
14139
|
icon?: string;
|
|
14049
14140
|
resource: string;
|
|
14141
|
+
resolvedResourceEntry?: string;
|
|
14050
14142
|
resourceUploadId?: string;
|
|
14051
14143
|
resolver?:
|
|
14052
14144
|
| {
|
|
@@ -14073,6 +14165,7 @@ export interface Modules {
|
|
|
14073
14165
|
endpoint: string;
|
|
14074
14166
|
};
|
|
14075
14167
|
resource: string;
|
|
14168
|
+
resolvedResourceEntry?: string;
|
|
14076
14169
|
resourceUploadId?: string;
|
|
14077
14170
|
render: 'native' | 'default';
|
|
14078
14171
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14133,6 +14226,7 @@ export interface Modules {
|
|
|
14133
14226
|
function: string;
|
|
14134
14227
|
};
|
|
14135
14228
|
resource: string;
|
|
14229
|
+
resolvedResourceEntry?: string;
|
|
14136
14230
|
resourceUploadId?: string;
|
|
14137
14231
|
render?: 'native' | 'default';
|
|
14138
14232
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14193,6 +14287,7 @@ export interface Modules {
|
|
|
14193
14287
|
function: string;
|
|
14194
14288
|
};
|
|
14195
14289
|
resource: string;
|
|
14290
|
+
resolvedResourceEntry?: string;
|
|
14196
14291
|
resourceUploadId?: string;
|
|
14197
14292
|
render?: 'native' | 'default';
|
|
14198
14293
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14232,6 +14327,7 @@ export interface Modules {
|
|
|
14232
14327
|
endpoint: string;
|
|
14233
14328
|
};
|
|
14234
14329
|
resource: string;
|
|
14330
|
+
resolvedResourceEntry?: string;
|
|
14235
14331
|
render?: 'native' | 'default';
|
|
14236
14332
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14237
14333
|
displayConditions?: {
|
|
@@ -14268,6 +14364,7 @@ export interface Modules {
|
|
|
14268
14364
|
endpoint: string;
|
|
14269
14365
|
};
|
|
14270
14366
|
resource: string;
|
|
14367
|
+
resolvedResourceEntry?: string;
|
|
14271
14368
|
render?: 'native' | 'default';
|
|
14272
14369
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14273
14370
|
displayConditions?: {
|
|
@@ -14306,6 +14403,7 @@ export interface Modules {
|
|
|
14306
14403
|
endpoint: string;
|
|
14307
14404
|
};
|
|
14308
14405
|
resource: string;
|
|
14406
|
+
resolvedResourceEntry?: string;
|
|
14309
14407
|
render?: 'native' | 'default';
|
|
14310
14408
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14311
14409
|
displayConditions?: {
|
|
@@ -14342,6 +14440,7 @@ export interface Modules {
|
|
|
14342
14440
|
endpoint: string;
|
|
14343
14441
|
};
|
|
14344
14442
|
resource: string;
|
|
14443
|
+
resolvedResourceEntry?: string;
|
|
14345
14444
|
render?: 'native' | 'default';
|
|
14346
14445
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14347
14446
|
displayConditions?: {
|
|
@@ -14446,18 +14545,21 @@ export interface Modules {
|
|
|
14446
14545
|
};
|
|
14447
14546
|
view?: {
|
|
14448
14547
|
resource: string;
|
|
14548
|
+
resolvedResourceEntry?: string;
|
|
14449
14549
|
render?: 'default' | 'native';
|
|
14450
14550
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14451
14551
|
[k: string]: unknown;
|
|
14452
14552
|
};
|
|
14453
14553
|
edit?: {
|
|
14454
14554
|
resource: string;
|
|
14555
|
+
resolvedResourceEntry?: string;
|
|
14455
14556
|
render?: 'default' | 'native';
|
|
14456
14557
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14457
14558
|
[k: string]: unknown;
|
|
14458
14559
|
};
|
|
14459
14560
|
create?: {
|
|
14460
14561
|
resource: string;
|
|
14562
|
+
resolvedResourceEntry?: string;
|
|
14461
14563
|
render?: 'default' | 'native';
|
|
14462
14564
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14463
14565
|
[k: string]: unknown;
|
|
@@ -14500,18 +14602,21 @@ export interface Modules {
|
|
|
14500
14602
|
};
|
|
14501
14603
|
view?: {
|
|
14502
14604
|
resource: string;
|
|
14605
|
+
resolvedResourceEntry?: string;
|
|
14503
14606
|
render?: 'default' | 'native';
|
|
14504
14607
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14505
14608
|
[k: string]: unknown;
|
|
14506
14609
|
};
|
|
14507
14610
|
edit?: {
|
|
14508
14611
|
resource: string;
|
|
14612
|
+
resolvedResourceEntry?: string;
|
|
14509
14613
|
render?: 'default' | 'native';
|
|
14510
14614
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14511
14615
|
[k: string]: unknown;
|
|
14512
14616
|
};
|
|
14513
14617
|
create?: {
|
|
14514
14618
|
resource: string;
|
|
14619
|
+
resolvedResourceEntry?: string;
|
|
14515
14620
|
render?: 'default' | 'native';
|
|
14516
14621
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14517
14622
|
[k: string]: unknown;
|
|
@@ -14552,6 +14657,7 @@ export interface Modules {
|
|
|
14552
14657
|
| {
|
|
14553
14658
|
view?: {
|
|
14554
14659
|
resource?: string;
|
|
14660
|
+
resolvedResourceEntry?: string;
|
|
14555
14661
|
render?: 'default' | 'native';
|
|
14556
14662
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14557
14663
|
formatter?: {
|
|
@@ -14607,6 +14713,7 @@ export interface Modules {
|
|
|
14607
14713
|
}
|
|
14608
14714
|
| ({
|
|
14609
14715
|
resource: string;
|
|
14716
|
+
resolvedResourceEntry?: string;
|
|
14610
14717
|
render?: 'default' | 'native';
|
|
14611
14718
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14612
14719
|
[k: string]: unknown;
|
|
@@ -14616,6 +14723,7 @@ export interface Modules {
|
|
|
14616
14723
|
})
|
|
14617
14724
|
| {
|
|
14618
14725
|
resource?: string;
|
|
14726
|
+
resolvedResourceEntry?: string;
|
|
14619
14727
|
render?: 'default' | 'native';
|
|
14620
14728
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14621
14729
|
validation?: {
|
|
@@ -14632,7 +14740,7 @@ export interface Modules {
|
|
|
14632
14740
|
expression: string;
|
|
14633
14741
|
[k: string]: unknown;
|
|
14634
14742
|
};
|
|
14635
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
14743
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
14636
14744
|
isInline?: boolean;
|
|
14637
14745
|
[k: string]: unknown;
|
|
14638
14746
|
};
|
|
@@ -14651,6 +14759,7 @@ export interface Modules {
|
|
|
14651
14759
|
};
|
|
14652
14760
|
function?: string;
|
|
14653
14761
|
resource?: string;
|
|
14762
|
+
resolvedResourceEntry?: string;
|
|
14654
14763
|
render?: 'default' | 'native';
|
|
14655
14764
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14656
14765
|
parser?: {
|
|
@@ -14674,6 +14783,7 @@ export interface Modules {
|
|
|
14674
14783
|
| {
|
|
14675
14784
|
view: {
|
|
14676
14785
|
resource?: string;
|
|
14786
|
+
resolvedResourceEntry?: string;
|
|
14677
14787
|
render?: 'default' | 'native';
|
|
14678
14788
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14679
14789
|
formatter: {
|
|
@@ -14732,6 +14842,7 @@ export interface Modules {
|
|
|
14732
14842
|
}
|
|
14733
14843
|
| ({
|
|
14734
14844
|
resource: string;
|
|
14845
|
+
resolvedResourceEntry?: string;
|
|
14735
14846
|
render?: 'default' | 'native';
|
|
14736
14847
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14737
14848
|
[k: string]: unknown;
|
|
@@ -14741,6 +14852,7 @@ export interface Modules {
|
|
|
14741
14852
|
})
|
|
14742
14853
|
| {
|
|
14743
14854
|
resource?: string;
|
|
14855
|
+
resolvedResourceEntry?: string;
|
|
14744
14856
|
render?: 'default' | 'native';
|
|
14745
14857
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14746
14858
|
validation?: {
|
|
@@ -14757,7 +14869,7 @@ export interface Modules {
|
|
|
14757
14869
|
expression: string;
|
|
14758
14870
|
[k: string]: unknown;
|
|
14759
14871
|
};
|
|
14760
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
14872
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
14761
14873
|
isInline?: boolean;
|
|
14762
14874
|
[k: string]: unknown;
|
|
14763
14875
|
};
|
|
@@ -14776,6 +14888,7 @@ export interface Modules {
|
|
|
14776
14888
|
};
|
|
14777
14889
|
function?: string;
|
|
14778
14890
|
resource?: string;
|
|
14891
|
+
resolvedResourceEntry?: string;
|
|
14779
14892
|
render?: 'default' | 'native';
|
|
14780
14893
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14781
14894
|
parser?: {
|
|
@@ -14846,6 +14959,7 @@ export interface Modules {
|
|
|
14846
14959
|
}
|
|
14847
14960
|
| ({
|
|
14848
14961
|
resource: string;
|
|
14962
|
+
resolvedResourceEntry?: string;
|
|
14849
14963
|
render?: 'default' | 'native';
|
|
14850
14964
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14851
14965
|
[k: string]: unknown;
|
|
@@ -14855,6 +14969,7 @@ export interface Modules {
|
|
|
14855
14969
|
})
|
|
14856
14970
|
| {
|
|
14857
14971
|
resource?: string;
|
|
14972
|
+
resolvedResourceEntry?: string;
|
|
14858
14973
|
render?: 'default' | 'native';
|
|
14859
14974
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14860
14975
|
validation?: {
|
|
@@ -14871,7 +14986,7 @@ export interface Modules {
|
|
|
14871
14986
|
expression: string;
|
|
14872
14987
|
[k: string]: unknown;
|
|
14873
14988
|
};
|
|
14874
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
14989
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
14875
14990
|
isInline?: boolean;
|
|
14876
14991
|
[k: string]: unknown;
|
|
14877
14992
|
};
|
|
@@ -14890,6 +15005,7 @@ export interface Modules {
|
|
|
14890
15005
|
};
|
|
14891
15006
|
function?: string;
|
|
14892
15007
|
resource?: string;
|
|
15008
|
+
resolvedResourceEntry?: string;
|
|
14893
15009
|
render?: 'default' | 'native';
|
|
14894
15010
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14895
15011
|
parser?: {
|
|
@@ -14915,6 +15031,7 @@ export interface Modules {
|
|
|
14915
15031
|
| {
|
|
14916
15032
|
view?: {
|
|
14917
15033
|
resource?: string;
|
|
15034
|
+
resolvedResourceEntry?: string;
|
|
14918
15035
|
render?: 'default' | 'native';
|
|
14919
15036
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14920
15037
|
formatter?: {
|
|
@@ -14970,6 +15087,7 @@ export interface Modules {
|
|
|
14970
15087
|
}
|
|
14971
15088
|
| ({
|
|
14972
15089
|
resource: string;
|
|
15090
|
+
resolvedResourceEntry?: string;
|
|
14973
15091
|
render?: 'default' | 'native';
|
|
14974
15092
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14975
15093
|
[k: string]: unknown;
|
|
@@ -14979,6 +15097,7 @@ export interface Modules {
|
|
|
14979
15097
|
})
|
|
14980
15098
|
| {
|
|
14981
15099
|
resource?: string;
|
|
15100
|
+
resolvedResourceEntry?: string;
|
|
14982
15101
|
render?: 'default' | 'native';
|
|
14983
15102
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14984
15103
|
validation?: {
|
|
@@ -14995,7 +15114,7 @@ export interface Modules {
|
|
|
14995
15114
|
expression: string;
|
|
14996
15115
|
[k: string]: unknown;
|
|
14997
15116
|
};
|
|
14998
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15117
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
14999
15118
|
isInline?: boolean;
|
|
15000
15119
|
[k: string]: unknown;
|
|
15001
15120
|
};
|
|
@@ -15014,6 +15133,7 @@ export interface Modules {
|
|
|
15014
15133
|
};
|
|
15015
15134
|
function?: string;
|
|
15016
15135
|
resource?: string;
|
|
15136
|
+
resolvedResourceEntry?: string;
|
|
15017
15137
|
render?: 'default' | 'native';
|
|
15018
15138
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15019
15139
|
parser?: {
|
|
@@ -15037,6 +15157,7 @@ export interface Modules {
|
|
|
15037
15157
|
| {
|
|
15038
15158
|
view: {
|
|
15039
15159
|
resource?: string;
|
|
15160
|
+
resolvedResourceEntry?: string;
|
|
15040
15161
|
render?: 'default' | 'native';
|
|
15041
15162
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15042
15163
|
formatter: {
|
|
@@ -15095,6 +15216,7 @@ export interface Modules {
|
|
|
15095
15216
|
}
|
|
15096
15217
|
| ({
|
|
15097
15218
|
resource: string;
|
|
15219
|
+
resolvedResourceEntry?: string;
|
|
15098
15220
|
render?: 'default' | 'native';
|
|
15099
15221
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15100
15222
|
[k: string]: unknown;
|
|
@@ -15104,6 +15226,7 @@ export interface Modules {
|
|
|
15104
15226
|
})
|
|
15105
15227
|
| {
|
|
15106
15228
|
resource?: string;
|
|
15229
|
+
resolvedResourceEntry?: string;
|
|
15107
15230
|
render?: 'default' | 'native';
|
|
15108
15231
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15109
15232
|
validation?: {
|
|
@@ -15120,7 +15243,7 @@ export interface Modules {
|
|
|
15120
15243
|
expression: string;
|
|
15121
15244
|
[k: string]: unknown;
|
|
15122
15245
|
};
|
|
15123
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15246
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15124
15247
|
isInline?: boolean;
|
|
15125
15248
|
[k: string]: unknown;
|
|
15126
15249
|
};
|
|
@@ -15139,6 +15262,7 @@ export interface Modules {
|
|
|
15139
15262
|
};
|
|
15140
15263
|
function?: string;
|
|
15141
15264
|
resource?: string;
|
|
15265
|
+
resolvedResourceEntry?: string;
|
|
15142
15266
|
render?: 'default' | 'native';
|
|
15143
15267
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15144
15268
|
parser?: {
|
|
@@ -15209,6 +15333,7 @@ export interface Modules {
|
|
|
15209
15333
|
}
|
|
15210
15334
|
| ({
|
|
15211
15335
|
resource: string;
|
|
15336
|
+
resolvedResourceEntry?: string;
|
|
15212
15337
|
render?: 'default' | 'native';
|
|
15213
15338
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15214
15339
|
[k: string]: unknown;
|
|
@@ -15218,6 +15343,7 @@ export interface Modules {
|
|
|
15218
15343
|
})
|
|
15219
15344
|
| {
|
|
15220
15345
|
resource?: string;
|
|
15346
|
+
resolvedResourceEntry?: string;
|
|
15221
15347
|
render?: 'default' | 'native';
|
|
15222
15348
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15223
15349
|
validation?: {
|
|
@@ -15234,7 +15360,7 @@ export interface Modules {
|
|
|
15234
15360
|
expression: string;
|
|
15235
15361
|
[k: string]: unknown;
|
|
15236
15362
|
};
|
|
15237
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15363
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15238
15364
|
isInline?: boolean;
|
|
15239
15365
|
[k: string]: unknown;
|
|
15240
15366
|
};
|
|
@@ -15253,6 +15379,7 @@ export interface Modules {
|
|
|
15253
15379
|
};
|
|
15254
15380
|
function?: string;
|
|
15255
15381
|
resource?: string;
|
|
15382
|
+
resolvedResourceEntry?: string;
|
|
15256
15383
|
render?: 'default' | 'native';
|
|
15257
15384
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15258
15385
|
parser?: {
|
|
@@ -15280,6 +15407,7 @@ export interface Modules {
|
|
|
15280
15407
|
| {
|
|
15281
15408
|
view?: {
|
|
15282
15409
|
resource?: string;
|
|
15410
|
+
resolvedResourceEntry?: string;
|
|
15283
15411
|
render?: 'default' | 'native';
|
|
15284
15412
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15285
15413
|
formatter?: {
|
|
@@ -15328,6 +15456,7 @@ export interface Modules {
|
|
|
15328
15456
|
}
|
|
15329
15457
|
| ({
|
|
15330
15458
|
resource: string;
|
|
15459
|
+
resolvedResourceEntry?: string;
|
|
15331
15460
|
render?: 'default' | 'native';
|
|
15332
15461
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15333
15462
|
[k: string]: unknown;
|
|
@@ -15337,6 +15466,7 @@ export interface Modules {
|
|
|
15337
15466
|
})
|
|
15338
15467
|
| {
|
|
15339
15468
|
resource?: string;
|
|
15469
|
+
resolvedResourceEntry?: string;
|
|
15340
15470
|
render?: 'default' | 'native';
|
|
15341
15471
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15342
15472
|
validation?: {
|
|
@@ -15353,7 +15483,7 @@ export interface Modules {
|
|
|
15353
15483
|
expression: string;
|
|
15354
15484
|
[k: string]: unknown;
|
|
15355
15485
|
};
|
|
15356
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15486
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15357
15487
|
isInline?: boolean;
|
|
15358
15488
|
[k: string]: unknown;
|
|
15359
15489
|
};
|
|
@@ -15386,6 +15516,7 @@ export interface Modules {
|
|
|
15386
15516
|
}
|
|
15387
15517
|
| {
|
|
15388
15518
|
resource: string;
|
|
15519
|
+
resolvedResourceEntry?: string;
|
|
15389
15520
|
layout?: 'basic' | 'blank' | 'native';
|
|
15390
15521
|
render?: 'default' | 'native';
|
|
15391
15522
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15393,6 +15524,7 @@ export interface Modules {
|
|
|
15393
15524
|
}
|
|
15394
15525
|
| ({
|
|
15395
15526
|
resource: string;
|
|
15527
|
+
resolvedResourceEntry?: string;
|
|
15396
15528
|
render?: 'default' | 'native';
|
|
15397
15529
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15398
15530
|
[k: string]: unknown;
|
|
@@ -15402,6 +15534,7 @@ export interface Modules {
|
|
|
15402
15534
|
});
|
|
15403
15535
|
function?: string;
|
|
15404
15536
|
resource?: string;
|
|
15537
|
+
resolvedResourceEntry?: string;
|
|
15405
15538
|
render?: 'default' | 'native';
|
|
15406
15539
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15407
15540
|
parser?: {
|
|
@@ -15418,6 +15551,7 @@ export interface Modules {
|
|
|
15418
15551
|
| {
|
|
15419
15552
|
view: {
|
|
15420
15553
|
resource?: string;
|
|
15554
|
+
resolvedResourceEntry?: string;
|
|
15421
15555
|
render?: 'default' | 'native';
|
|
15422
15556
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15423
15557
|
formatter: {
|
|
@@ -15469,6 +15603,7 @@ export interface Modules {
|
|
|
15469
15603
|
}
|
|
15470
15604
|
| ({
|
|
15471
15605
|
resource: string;
|
|
15606
|
+
resolvedResourceEntry?: string;
|
|
15472
15607
|
render?: 'default' | 'native';
|
|
15473
15608
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15474
15609
|
[k: string]: unknown;
|
|
@@ -15478,6 +15613,7 @@ export interface Modules {
|
|
|
15478
15613
|
})
|
|
15479
15614
|
| {
|
|
15480
15615
|
resource?: string;
|
|
15616
|
+
resolvedResourceEntry?: string;
|
|
15481
15617
|
render?: 'default' | 'native';
|
|
15482
15618
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15483
15619
|
validation?: {
|
|
@@ -15494,7 +15630,7 @@ export interface Modules {
|
|
|
15494
15630
|
expression: string;
|
|
15495
15631
|
[k: string]: unknown;
|
|
15496
15632
|
};
|
|
15497
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15633
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15498
15634
|
isInline?: boolean;
|
|
15499
15635
|
[k: string]: unknown;
|
|
15500
15636
|
};
|
|
@@ -15527,6 +15663,7 @@ export interface Modules {
|
|
|
15527
15663
|
}
|
|
15528
15664
|
| {
|
|
15529
15665
|
resource: string;
|
|
15666
|
+
resolvedResourceEntry?: string;
|
|
15530
15667
|
layout?: 'basic' | 'blank' | 'native';
|
|
15531
15668
|
render?: 'default' | 'native';
|
|
15532
15669
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15534,6 +15671,7 @@ export interface Modules {
|
|
|
15534
15671
|
}
|
|
15535
15672
|
| ({
|
|
15536
15673
|
resource: string;
|
|
15674
|
+
resolvedResourceEntry?: string;
|
|
15537
15675
|
render?: 'default' | 'native';
|
|
15538
15676
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15539
15677
|
[k: string]: unknown;
|
|
@@ -15543,6 +15681,7 @@ export interface Modules {
|
|
|
15543
15681
|
});
|
|
15544
15682
|
function?: string;
|
|
15545
15683
|
resource?: string;
|
|
15684
|
+
resolvedResourceEntry?: string;
|
|
15546
15685
|
render?: 'default' | 'native';
|
|
15547
15686
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15548
15687
|
parser?: {
|
|
@@ -15599,6 +15738,7 @@ export interface Modules {
|
|
|
15599
15738
|
}
|
|
15600
15739
|
| ({
|
|
15601
15740
|
resource: string;
|
|
15741
|
+
resolvedResourceEntry?: string;
|
|
15602
15742
|
render?: 'default' | 'native';
|
|
15603
15743
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15604
15744
|
[k: string]: unknown;
|
|
@@ -15608,6 +15748,7 @@ export interface Modules {
|
|
|
15608
15748
|
})
|
|
15609
15749
|
| {
|
|
15610
15750
|
resource?: string;
|
|
15751
|
+
resolvedResourceEntry?: string;
|
|
15611
15752
|
render?: 'default' | 'native';
|
|
15612
15753
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15613
15754
|
validation?: {
|
|
@@ -15624,7 +15765,7 @@ export interface Modules {
|
|
|
15624
15765
|
expression: string;
|
|
15625
15766
|
[k: string]: unknown;
|
|
15626
15767
|
};
|
|
15627
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15768
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15628
15769
|
isInline?: boolean;
|
|
15629
15770
|
[k: string]: unknown;
|
|
15630
15771
|
};
|
|
@@ -15657,6 +15798,7 @@ export interface Modules {
|
|
|
15657
15798
|
}
|
|
15658
15799
|
| {
|
|
15659
15800
|
resource: string;
|
|
15801
|
+
resolvedResourceEntry?: string;
|
|
15660
15802
|
layout?: 'basic' | 'blank' | 'native';
|
|
15661
15803
|
render?: 'default' | 'native';
|
|
15662
15804
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15664,6 +15806,7 @@ export interface Modules {
|
|
|
15664
15806
|
}
|
|
15665
15807
|
| ({
|
|
15666
15808
|
resource: string;
|
|
15809
|
+
resolvedResourceEntry?: string;
|
|
15667
15810
|
render?: 'default' | 'native';
|
|
15668
15811
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15669
15812
|
[k: string]: unknown;
|
|
@@ -15673,6 +15816,7 @@ export interface Modules {
|
|
|
15673
15816
|
});
|
|
15674
15817
|
function?: string;
|
|
15675
15818
|
resource?: string;
|
|
15819
|
+
resolvedResourceEntry?: string;
|
|
15676
15820
|
render?: 'default' | 'native';
|
|
15677
15821
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15678
15822
|
parser?: {
|
|
@@ -15691,6 +15835,7 @@ export interface Modules {
|
|
|
15691
15835
|
| {
|
|
15692
15836
|
view?: {
|
|
15693
15837
|
resource?: string;
|
|
15838
|
+
resolvedResourceEntry?: string;
|
|
15694
15839
|
render?: 'default' | 'native';
|
|
15695
15840
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15696
15841
|
formatter?: {
|
|
@@ -15739,6 +15884,7 @@ export interface Modules {
|
|
|
15739
15884
|
}
|
|
15740
15885
|
| ({
|
|
15741
15886
|
resource: string;
|
|
15887
|
+
resolvedResourceEntry?: string;
|
|
15742
15888
|
render?: 'default' | 'native';
|
|
15743
15889
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15744
15890
|
[k: string]: unknown;
|
|
@@ -15748,6 +15894,7 @@ export interface Modules {
|
|
|
15748
15894
|
})
|
|
15749
15895
|
| {
|
|
15750
15896
|
resource?: string;
|
|
15897
|
+
resolvedResourceEntry?: string;
|
|
15751
15898
|
render?: 'default' | 'native';
|
|
15752
15899
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15753
15900
|
validation?: {
|
|
@@ -15764,7 +15911,7 @@ export interface Modules {
|
|
|
15764
15911
|
expression: string;
|
|
15765
15912
|
[k: string]: unknown;
|
|
15766
15913
|
};
|
|
15767
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
15914
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15768
15915
|
isInline?: boolean;
|
|
15769
15916
|
[k: string]: unknown;
|
|
15770
15917
|
};
|
|
@@ -15797,6 +15944,7 @@ export interface Modules {
|
|
|
15797
15944
|
}
|
|
15798
15945
|
| {
|
|
15799
15946
|
resource: string;
|
|
15947
|
+
resolvedResourceEntry?: string;
|
|
15800
15948
|
layout?: 'basic' | 'blank' | 'native';
|
|
15801
15949
|
render?: 'default' | 'native';
|
|
15802
15950
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15804,6 +15952,7 @@ export interface Modules {
|
|
|
15804
15952
|
}
|
|
15805
15953
|
| ({
|
|
15806
15954
|
resource: string;
|
|
15955
|
+
resolvedResourceEntry?: string;
|
|
15807
15956
|
render?: 'default' | 'native';
|
|
15808
15957
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15809
15958
|
[k: string]: unknown;
|
|
@@ -15813,6 +15962,7 @@ export interface Modules {
|
|
|
15813
15962
|
});
|
|
15814
15963
|
function?: string;
|
|
15815
15964
|
resource?: string;
|
|
15965
|
+
resolvedResourceEntry?: string;
|
|
15816
15966
|
render?: 'default' | 'native';
|
|
15817
15967
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15818
15968
|
parser?: {
|
|
@@ -15829,6 +15979,7 @@ export interface Modules {
|
|
|
15829
15979
|
| {
|
|
15830
15980
|
view: {
|
|
15831
15981
|
resource?: string;
|
|
15982
|
+
resolvedResourceEntry?: string;
|
|
15832
15983
|
render?: 'default' | 'native';
|
|
15833
15984
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15834
15985
|
formatter: {
|
|
@@ -15880,6 +16031,7 @@ export interface Modules {
|
|
|
15880
16031
|
}
|
|
15881
16032
|
| ({
|
|
15882
16033
|
resource: string;
|
|
16034
|
+
resolvedResourceEntry?: string;
|
|
15883
16035
|
render?: 'default' | 'native';
|
|
15884
16036
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15885
16037
|
[k: string]: unknown;
|
|
@@ -15889,6 +16041,7 @@ export interface Modules {
|
|
|
15889
16041
|
})
|
|
15890
16042
|
| {
|
|
15891
16043
|
resource?: string;
|
|
16044
|
+
resolvedResourceEntry?: string;
|
|
15892
16045
|
render?: 'default' | 'native';
|
|
15893
16046
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15894
16047
|
validation?: {
|
|
@@ -15905,7 +16058,7 @@ export interface Modules {
|
|
|
15905
16058
|
expression: string;
|
|
15906
16059
|
[k: string]: unknown;
|
|
15907
16060
|
};
|
|
15908
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
16061
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
15909
16062
|
isInline?: boolean;
|
|
15910
16063
|
[k: string]: unknown;
|
|
15911
16064
|
};
|
|
@@ -15938,6 +16091,7 @@ export interface Modules {
|
|
|
15938
16091
|
}
|
|
15939
16092
|
| {
|
|
15940
16093
|
resource: string;
|
|
16094
|
+
resolvedResourceEntry?: string;
|
|
15941
16095
|
layout?: 'basic' | 'blank' | 'native';
|
|
15942
16096
|
render?: 'default' | 'native';
|
|
15943
16097
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15945,6 +16099,7 @@ export interface Modules {
|
|
|
15945
16099
|
}
|
|
15946
16100
|
| ({
|
|
15947
16101
|
resource: string;
|
|
16102
|
+
resolvedResourceEntry?: string;
|
|
15948
16103
|
render?: 'default' | 'native';
|
|
15949
16104
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15950
16105
|
[k: string]: unknown;
|
|
@@ -15954,6 +16109,7 @@ export interface Modules {
|
|
|
15954
16109
|
});
|
|
15955
16110
|
function?: string;
|
|
15956
16111
|
resource?: string;
|
|
16112
|
+
resolvedResourceEntry?: string;
|
|
15957
16113
|
render?: 'default' | 'native';
|
|
15958
16114
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15959
16115
|
parser?: {
|
|
@@ -16010,6 +16166,7 @@ export interface Modules {
|
|
|
16010
16166
|
}
|
|
16011
16167
|
| ({
|
|
16012
16168
|
resource: string;
|
|
16169
|
+
resolvedResourceEntry?: string;
|
|
16013
16170
|
render?: 'default' | 'native';
|
|
16014
16171
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16015
16172
|
[k: string]: unknown;
|
|
@@ -16019,6 +16176,7 @@ export interface Modules {
|
|
|
16019
16176
|
})
|
|
16020
16177
|
| {
|
|
16021
16178
|
resource?: string;
|
|
16179
|
+
resolvedResourceEntry?: string;
|
|
16022
16180
|
render?: 'default' | 'native';
|
|
16023
16181
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16024
16182
|
validation?: {
|
|
@@ -16035,7 +16193,7 @@ export interface Modules {
|
|
|
16035
16193
|
expression: string;
|
|
16036
16194
|
[k: string]: unknown;
|
|
16037
16195
|
};
|
|
16038
|
-
experience?: ('issue-create' | 'issue-view' | 'portal-request')[];
|
|
16196
|
+
experience?: ('issue-create' | 'issue-view' | 'portal-request' | 'issue-bulk-edit')[];
|
|
16039
16197
|
isInline?: boolean;
|
|
16040
16198
|
[k: string]: unknown;
|
|
16041
16199
|
};
|
|
@@ -16068,6 +16226,7 @@ export interface Modules {
|
|
|
16068
16226
|
}
|
|
16069
16227
|
| {
|
|
16070
16228
|
resource: string;
|
|
16229
|
+
resolvedResourceEntry?: string;
|
|
16071
16230
|
layout?: 'basic' | 'blank' | 'native';
|
|
16072
16231
|
render?: 'default' | 'native';
|
|
16073
16232
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -16075,6 +16234,7 @@ export interface Modules {
|
|
|
16075
16234
|
}
|
|
16076
16235
|
| ({
|
|
16077
16236
|
resource: string;
|
|
16237
|
+
resolvedResourceEntry?: string;
|
|
16078
16238
|
render?: 'default' | 'native';
|
|
16079
16239
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16080
16240
|
[k: string]: unknown;
|
|
@@ -16084,6 +16244,7 @@ export interface Modules {
|
|
|
16084
16244
|
});
|
|
16085
16245
|
function?: string;
|
|
16086
16246
|
resource?: string;
|
|
16247
|
+
resolvedResourceEntry?: string;
|
|
16087
16248
|
render?: 'default' | 'native';
|
|
16088
16249
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16089
16250
|
parser?: {
|
|
@@ -16117,6 +16278,7 @@ export interface Modules {
|
|
|
16117
16278
|
}
|
|
16118
16279
|
| {
|
|
16119
16280
|
resource: string;
|
|
16281
|
+
resolvedResourceEntry?: string;
|
|
16120
16282
|
resolver?:
|
|
16121
16283
|
| {
|
|
16122
16284
|
function: string;
|
|
@@ -16158,6 +16320,7 @@ export interface Modules {
|
|
|
16158
16320
|
}
|
|
16159
16321
|
| {
|
|
16160
16322
|
resource: string;
|
|
16323
|
+
resolvedResourceEntry?: string;
|
|
16161
16324
|
resolver?:
|
|
16162
16325
|
| {
|
|
16163
16326
|
function: string;
|
|
@@ -16192,6 +16355,7 @@ export interface Modules {
|
|
|
16192
16355
|
};
|
|
16193
16356
|
title__i18n?: string;
|
|
16194
16357
|
resource: string;
|
|
16358
|
+
resolvedResourceEntry?: string;
|
|
16195
16359
|
resolver?:
|
|
16196
16360
|
| {
|
|
16197
16361
|
function: string;
|
|
@@ -16212,6 +16376,7 @@ export interface Modules {
|
|
|
16212
16376
|
};
|
|
16213
16377
|
title__i18n?: string;
|
|
16214
16378
|
resource: string;
|
|
16379
|
+
resolvedResourceEntry?: string;
|
|
16215
16380
|
resolver?:
|
|
16216
16381
|
| {
|
|
16217
16382
|
function: string;
|
|
@@ -16260,6 +16425,7 @@ export interface Modules {
|
|
|
16260
16425
|
}
|
|
16261
16426
|
| {
|
|
16262
16427
|
resource: string;
|
|
16428
|
+
resolvedResourceEntry?: string;
|
|
16263
16429
|
resolver?:
|
|
16264
16430
|
| {
|
|
16265
16431
|
function: string;
|
|
@@ -16333,6 +16499,7 @@ export interface Modules {
|
|
|
16333
16499
|
}
|
|
16334
16500
|
| {
|
|
16335
16501
|
resource: string;
|
|
16502
|
+
resolvedResourceEntry?: string;
|
|
16336
16503
|
resolver?:
|
|
16337
16504
|
| {
|
|
16338
16505
|
function: string;
|
|
@@ -16397,6 +16564,7 @@ export interface Modules {
|
|
|
16397
16564
|
}
|
|
16398
16565
|
| {
|
|
16399
16566
|
resource: string;
|
|
16567
|
+
resolvedResourceEntry?: string;
|
|
16400
16568
|
resolver?:
|
|
16401
16569
|
| {
|
|
16402
16570
|
function: string;
|
|
@@ -16450,6 +16618,7 @@ export interface Modules {
|
|
|
16450
16618
|
}
|
|
16451
16619
|
| {
|
|
16452
16620
|
resource: string;
|
|
16621
|
+
resolvedResourceEntry?: string;
|
|
16453
16622
|
resolver?:
|
|
16454
16623
|
| {
|
|
16455
16624
|
function: string;
|
|
@@ -16499,6 +16668,7 @@ export interface Modules {
|
|
|
16499
16668
|
}
|
|
16500
16669
|
| {
|
|
16501
16670
|
resource: string;
|
|
16671
|
+
resolvedResourceEntry?: string;
|
|
16502
16672
|
resolver?:
|
|
16503
16673
|
| {
|
|
16504
16674
|
function: string;
|
|
@@ -16540,6 +16710,7 @@ export interface Modules {
|
|
|
16540
16710
|
}
|
|
16541
16711
|
| {
|
|
16542
16712
|
resource: string;
|
|
16713
|
+
resolvedResourceEntry?: string;
|
|
16543
16714
|
resolver?:
|
|
16544
16715
|
| {
|
|
16545
16716
|
function: string;
|
|
@@ -16601,6 +16772,7 @@ export interface Modules {
|
|
|
16601
16772
|
}
|
|
16602
16773
|
| {
|
|
16603
16774
|
resource: string;
|
|
16775
|
+
resolvedResourceEntry?: string;
|
|
16604
16776
|
resolver?:
|
|
16605
16777
|
| {
|
|
16606
16778
|
function: string;
|
|
@@ -16610,6 +16782,7 @@ export interface Modules {
|
|
|
16610
16782
|
};
|
|
16611
16783
|
edit?: {
|
|
16612
16784
|
resource: string;
|
|
16785
|
+
resolvedResourceEntry?: string;
|
|
16613
16786
|
render?: 'default' | 'native';
|
|
16614
16787
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16615
16788
|
[k: string]: unknown;
|
|
@@ -16678,6 +16851,7 @@ export interface Modules {
|
|
|
16678
16851
|
}
|
|
16679
16852
|
| {
|
|
16680
16853
|
resource: string;
|
|
16854
|
+
resolvedResourceEntry?: string;
|
|
16681
16855
|
resolver?:
|
|
16682
16856
|
| {
|
|
16683
16857
|
function: string;
|
|
@@ -16687,6 +16861,7 @@ export interface Modules {
|
|
|
16687
16861
|
};
|
|
16688
16862
|
edit?: {
|
|
16689
16863
|
resource: string;
|
|
16864
|
+
resolvedResourceEntry?: string;
|
|
16690
16865
|
render?: 'default' | 'native';
|
|
16691
16866
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16692
16867
|
[k: string]: unknown;
|
|
@@ -16774,6 +16949,7 @@ export interface Modules {
|
|
|
16774
16949
|
}
|
|
16775
16950
|
| {
|
|
16776
16951
|
resource: string;
|
|
16952
|
+
resolvedResourceEntry?: string;
|
|
16777
16953
|
resourceUploadId?: string;
|
|
16778
16954
|
resolver?:
|
|
16779
16955
|
| {
|
|
@@ -16884,6 +17060,7 @@ export interface Modules {
|
|
|
16884
17060
|
}
|
|
16885
17061
|
| {
|
|
16886
17062
|
resource: string;
|
|
17063
|
+
resolvedResourceEntry?: string;
|
|
16887
17064
|
resourceUploadId?: string;
|
|
16888
17065
|
resolver?:
|
|
16889
17066
|
| {
|
|
@@ -16994,6 +17171,7 @@ export interface Modules {
|
|
|
16994
17171
|
}
|
|
16995
17172
|
| {
|
|
16996
17173
|
resource: string;
|
|
17174
|
+
resolvedResourceEntry?: string;
|
|
16997
17175
|
resourceUploadId?: string;
|
|
16998
17176
|
resolver?:
|
|
16999
17177
|
| {
|
|
@@ -17100,6 +17278,7 @@ export interface Modules {
|
|
|
17100
17278
|
}
|
|
17101
17279
|
| {
|
|
17102
17280
|
resource: string;
|
|
17281
|
+
resolvedResourceEntry?: string;
|
|
17103
17282
|
resourceUploadId?: string;
|
|
17104
17283
|
resolver?:
|
|
17105
17284
|
| {
|
|
@@ -17296,6 +17475,7 @@ export interface Modules {
|
|
|
17296
17475
|
}
|
|
17297
17476
|
| {
|
|
17298
17477
|
resource: string;
|
|
17478
|
+
resolvedResourceEntry?: string;
|
|
17299
17479
|
resourceUploadId?: string;
|
|
17300
17480
|
resolver?:
|
|
17301
17481
|
| {
|
|
@@ -17402,6 +17582,7 @@ export interface Modules {
|
|
|
17402
17582
|
}
|
|
17403
17583
|
| {
|
|
17404
17584
|
resource: string;
|
|
17585
|
+
resolvedResourceEntry?: string;
|
|
17405
17586
|
resourceUploadId?: string;
|
|
17406
17587
|
resolver?:
|
|
17407
17588
|
| {
|
|
@@ -17510,6 +17691,7 @@ export interface Modules {
|
|
|
17510
17691
|
}
|
|
17511
17692
|
| {
|
|
17512
17693
|
resource: string;
|
|
17694
|
+
resolvedResourceEntry?: string;
|
|
17513
17695
|
resourceUploadId?: string;
|
|
17514
17696
|
resolver?:
|
|
17515
17697
|
| {
|
|
@@ -17616,6 +17798,7 @@ export interface Modules {
|
|
|
17616
17798
|
}
|
|
17617
17799
|
| {
|
|
17618
17800
|
resource: string;
|
|
17801
|
+
resolvedResourceEntry?: string;
|
|
17619
17802
|
resourceUploadId?: string;
|
|
17620
17803
|
resolver?:
|
|
17621
17804
|
| {
|
|
@@ -17697,18 +17880,21 @@ export interface Modules {
|
|
|
17697
17880
|
};
|
|
17698
17881
|
view?: {
|
|
17699
17882
|
resource: string;
|
|
17883
|
+
resolvedResourceEntry?: string;
|
|
17700
17884
|
render?: 'default' | 'native';
|
|
17701
17885
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17702
17886
|
[k: string]: unknown;
|
|
17703
17887
|
};
|
|
17704
17888
|
edit?: {
|
|
17705
17889
|
resource: string;
|
|
17890
|
+
resolvedResourceEntry?: string;
|
|
17706
17891
|
render?: 'default' | 'native';
|
|
17707
17892
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17708
17893
|
[k: string]: unknown;
|
|
17709
17894
|
};
|
|
17710
17895
|
create?: {
|
|
17711
17896
|
resource: string;
|
|
17897
|
+
resolvedResourceEntry?: string;
|
|
17712
17898
|
render?: 'default' | 'native';
|
|
17713
17899
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17714
17900
|
[k: string]: unknown;
|
|
@@ -17740,18 +17926,21 @@ export interface Modules {
|
|
|
17740
17926
|
};
|
|
17741
17927
|
view?: {
|
|
17742
17928
|
resource: string;
|
|
17929
|
+
resolvedResourceEntry?: string;
|
|
17743
17930
|
render?: 'default' | 'native';
|
|
17744
17931
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17745
17932
|
[k: string]: unknown;
|
|
17746
17933
|
};
|
|
17747
17934
|
edit?: {
|
|
17748
17935
|
resource: string;
|
|
17936
|
+
resolvedResourceEntry?: string;
|
|
17749
17937
|
render?: 'default' | 'native';
|
|
17750
17938
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17751
17939
|
[k: string]: unknown;
|
|
17752
17940
|
};
|
|
17753
17941
|
create?: {
|
|
17754
17942
|
resource: string;
|
|
17943
|
+
resolvedResourceEntry?: string;
|
|
17755
17944
|
render?: 'default' | 'native';
|
|
17756
17945
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17757
17946
|
[k: string]: unknown;
|
|
@@ -17764,6 +17953,7 @@ export interface Modules {
|
|
|
17764
17953
|
'jira:dashboardBackgroundScript'?: [
|
|
17765
17954
|
{
|
|
17766
17955
|
resource: string;
|
|
17956
|
+
resolvedResourceEntry?: string;
|
|
17767
17957
|
resolver?:
|
|
17768
17958
|
| {
|
|
17769
17959
|
function: string;
|
|
@@ -17781,6 +17971,7 @@ export interface Modules {
|
|
|
17781
17971
|
},
|
|
17782
17972
|
...{
|
|
17783
17973
|
resource: string;
|
|
17974
|
+
resolvedResourceEntry?: string;
|
|
17784
17975
|
resolver?:
|
|
17785
17976
|
| {
|
|
17786
17977
|
function: string;
|
|
@@ -17900,18 +18091,21 @@ export interface Modules {
|
|
|
17900
18091
|
};
|
|
17901
18092
|
view?: {
|
|
17902
18093
|
resource: string;
|
|
18094
|
+
resolvedResourceEntry?: string;
|
|
17903
18095
|
render?: 'default' | 'native';
|
|
17904
18096
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17905
18097
|
[k: string]: unknown;
|
|
17906
18098
|
};
|
|
17907
18099
|
edit?: {
|
|
17908
18100
|
resource: string;
|
|
18101
|
+
resolvedResourceEntry?: string;
|
|
17909
18102
|
render?: 'default' | 'native';
|
|
17910
18103
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17911
18104
|
[k: string]: unknown;
|
|
17912
18105
|
};
|
|
17913
18106
|
create?: {
|
|
17914
18107
|
resource: string;
|
|
18108
|
+
resolvedResourceEntry?: string;
|
|
17915
18109
|
render?: 'default' | 'native';
|
|
17916
18110
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17917
18111
|
[k: string]: unknown;
|
|
@@ -17943,18 +18137,21 @@ export interface Modules {
|
|
|
17943
18137
|
};
|
|
17944
18138
|
view?: {
|
|
17945
18139
|
resource: string;
|
|
18140
|
+
resolvedResourceEntry?: string;
|
|
17946
18141
|
render?: 'default' | 'native';
|
|
17947
18142
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17948
18143
|
[k: string]: unknown;
|
|
17949
18144
|
};
|
|
17950
18145
|
edit?: {
|
|
17951
18146
|
resource: string;
|
|
18147
|
+
resolvedResourceEntry?: string;
|
|
17952
18148
|
render?: 'default' | 'native';
|
|
17953
18149
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17954
18150
|
[k: string]: unknown;
|
|
17955
18151
|
};
|
|
17956
18152
|
create?: {
|
|
17957
18153
|
resource: string;
|
|
18154
|
+
resolvedResourceEntry?: string;
|
|
17958
18155
|
render?: 'default' | 'native';
|
|
17959
18156
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17960
18157
|
[k: string]: unknown;
|
|
@@ -17988,18 +18185,21 @@ export interface Modules {
|
|
|
17988
18185
|
};
|
|
17989
18186
|
view?: {
|
|
17990
18187
|
resource: string;
|
|
18188
|
+
resolvedResourceEntry?: string;
|
|
17991
18189
|
render?: 'default' | 'native';
|
|
17992
18190
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17993
18191
|
[k: string]: unknown;
|
|
17994
18192
|
};
|
|
17995
18193
|
edit?: {
|
|
17996
18194
|
resource: string;
|
|
18195
|
+
resolvedResourceEntry?: string;
|
|
17997
18196
|
render?: 'default' | 'native';
|
|
17998
18197
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17999
18198
|
[k: string]: unknown;
|
|
18000
18199
|
};
|
|
18001
18200
|
create?: {
|
|
18002
18201
|
resource: string;
|
|
18202
|
+
resolvedResourceEntry?: string;
|
|
18003
18203
|
render?: 'default' | 'native';
|
|
18004
18204
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18005
18205
|
[k: string]: unknown;
|
|
@@ -18031,18 +18231,21 @@ export interface Modules {
|
|
|
18031
18231
|
};
|
|
18032
18232
|
view?: {
|
|
18033
18233
|
resource: string;
|
|
18234
|
+
resolvedResourceEntry?: string;
|
|
18034
18235
|
render?: 'default' | 'native';
|
|
18035
18236
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18036
18237
|
[k: string]: unknown;
|
|
18037
18238
|
};
|
|
18038
18239
|
edit?: {
|
|
18039
18240
|
resource: string;
|
|
18241
|
+
resolvedResourceEntry?: string;
|
|
18040
18242
|
render?: 'default' | 'native';
|
|
18041
18243
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18042
18244
|
[k: string]: unknown;
|
|
18043
18245
|
};
|
|
18044
18246
|
create?: {
|
|
18045
18247
|
resource: string;
|
|
18248
|
+
resolvedResourceEntry?: string;
|
|
18046
18249
|
render?: 'default' | 'native';
|
|
18047
18250
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18048
18251
|
[k: string]: unknown;
|
|
@@ -18088,6 +18291,7 @@ export interface Modules {
|
|
|
18088
18291
|
}
|
|
18089
18292
|
| {
|
|
18090
18293
|
resource: string;
|
|
18294
|
+
resolvedResourceEntry?: string;
|
|
18091
18295
|
resolver?:
|
|
18092
18296
|
| {
|
|
18093
18297
|
function: string;
|
|
@@ -18161,6 +18365,7 @@ export interface Modules {
|
|
|
18161
18365
|
}
|
|
18162
18366
|
| {
|
|
18163
18367
|
resource: string;
|
|
18368
|
+
resolvedResourceEntry?: string;
|
|
18164
18369
|
resolver?:
|
|
18165
18370
|
| {
|
|
18166
18371
|
function: string;
|
|
@@ -18205,6 +18410,7 @@ export interface Modules {
|
|
|
18205
18410
|
{
|
|
18206
18411
|
shouldReloadOnRefresh?: boolean;
|
|
18207
18412
|
resource: string;
|
|
18413
|
+
resolvedResourceEntry?: string;
|
|
18208
18414
|
resolver?:
|
|
18209
18415
|
| {
|
|
18210
18416
|
function: string;
|
|
@@ -18223,6 +18429,7 @@ export interface Modules {
|
|
|
18223
18429
|
...{
|
|
18224
18430
|
shouldReloadOnRefresh?: boolean;
|
|
18225
18431
|
resource: string;
|
|
18432
|
+
resolvedResourceEntry?: string;
|
|
18226
18433
|
resolver?:
|
|
18227
18434
|
| {
|
|
18228
18435
|
function: string;
|
|
@@ -18437,6 +18644,7 @@ export interface Modules {
|
|
|
18437
18644
|
{
|
|
18438
18645
|
icon?: string;
|
|
18439
18646
|
resource: string;
|
|
18647
|
+
resolvedResourceEntry?: string;
|
|
18440
18648
|
title:
|
|
18441
18649
|
| string
|
|
18442
18650
|
| {
|
|
@@ -18486,6 +18694,7 @@ export interface Modules {
|
|
|
18486
18694
|
...{
|
|
18487
18695
|
icon?: string;
|
|
18488
18696
|
resource: string;
|
|
18697
|
+
resolvedResourceEntry?: string;
|
|
18489
18698
|
title:
|
|
18490
18699
|
| string
|
|
18491
18700
|
| {
|
|
@@ -18536,6 +18745,7 @@ export interface Modules {
|
|
|
18536
18745
|
'jira:personalSettingsPage'?: [
|
|
18537
18746
|
{
|
|
18538
18747
|
resource: string;
|
|
18748
|
+
resolvedResourceEntry?: string;
|
|
18539
18749
|
resourceUploadId?: string;
|
|
18540
18750
|
resolver?:
|
|
18541
18751
|
| {
|
|
@@ -18592,6 +18802,7 @@ export interface Modules {
|
|
|
18592
18802
|
},
|
|
18593
18803
|
...{
|
|
18594
18804
|
resource: string;
|
|
18805
|
+
resolvedResourceEntry?: string;
|
|
18595
18806
|
resourceUploadId?: string;
|
|
18596
18807
|
resolver?:
|
|
18597
18808
|
| {
|
|
@@ -18651,6 +18862,7 @@ export interface Modules {
|
|
|
18651
18862
|
{
|
|
18652
18863
|
icon?: string;
|
|
18653
18864
|
resource: string;
|
|
18865
|
+
resolvedResourceEntry?: string;
|
|
18654
18866
|
title:
|
|
18655
18867
|
| string
|
|
18656
18868
|
| {
|
|
@@ -18700,6 +18912,7 @@ export interface Modules {
|
|
|
18700
18912
|
...{
|
|
18701
18913
|
icon?: string;
|
|
18702
18914
|
resource: string;
|
|
18915
|
+
resolvedResourceEntry?: string;
|
|
18703
18916
|
title:
|
|
18704
18917
|
| string
|
|
18705
18918
|
| {
|
|
@@ -18761,6 +18974,7 @@ export interface Modules {
|
|
|
18761
18974
|
target:
|
|
18762
18975
|
| {
|
|
18763
18976
|
resource: string;
|
|
18977
|
+
resolvedResourceEntry?: string;
|
|
18764
18978
|
render?: 'default' | 'native';
|
|
18765
18979
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18766
18980
|
[k: string]: unknown;
|
|
@@ -18792,6 +19006,7 @@ export interface Modules {
|
|
|
18792
19006
|
target:
|
|
18793
19007
|
| {
|
|
18794
19008
|
resource: string;
|
|
19009
|
+
resolvedResourceEntry?: string;
|
|
18795
19010
|
render?: 'default' | 'native';
|
|
18796
19011
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18797
19012
|
[k: string]: unknown;
|
|
@@ -18815,6 +19030,7 @@ export interface Modules {
|
|
|
18815
19030
|
{
|
|
18816
19031
|
icon?: string;
|
|
18817
19032
|
resource: string;
|
|
19033
|
+
resolvedResourceEntry?: string;
|
|
18818
19034
|
title:
|
|
18819
19035
|
| string
|
|
18820
19036
|
| {
|
|
@@ -18864,6 +19080,7 @@ export interface Modules {
|
|
|
18864
19080
|
...{
|
|
18865
19081
|
icon?: string;
|
|
18866
19082
|
resource: string;
|
|
19083
|
+
resolvedResourceEntry?: string;
|
|
18867
19084
|
title:
|
|
18868
19085
|
| string
|
|
18869
19086
|
| {
|
|
@@ -18915,6 +19132,7 @@ export interface Modules {
|
|
|
18915
19132
|
{
|
|
18916
19133
|
icon?: string;
|
|
18917
19134
|
resource: string;
|
|
19135
|
+
resolvedResourceEntry?: string;
|
|
18918
19136
|
title:
|
|
18919
19137
|
| string
|
|
18920
19138
|
| {
|
|
@@ -18964,6 +19182,7 @@ export interface Modules {
|
|
|
18964
19182
|
...{
|
|
18965
19183
|
icon?: string;
|
|
18966
19184
|
resource: string;
|
|
19185
|
+
resolvedResourceEntry?: string;
|
|
18967
19186
|
title:
|
|
18968
19187
|
| string
|
|
18969
19188
|
| {
|
|
@@ -19013,7 +19232,14 @@ export interface Modules {
|
|
|
19013
19232
|
];
|
|
19014
19233
|
'jira:actionValidator'?: [
|
|
19015
19234
|
{
|
|
19016
|
-
action:
|
|
19235
|
+
action:
|
|
19236
|
+
| 'workItemTypeChanged'
|
|
19237
|
+
| 'workItemMoved'
|
|
19238
|
+
| 'workItemCloned'
|
|
19239
|
+
| 'workItemDeleted'
|
|
19240
|
+
| 'subtaskCreated'
|
|
19241
|
+
| 'workItemEdited'
|
|
19242
|
+
| 'workItemAssigned';
|
|
19017
19243
|
expression: string;
|
|
19018
19244
|
errorMessage?:
|
|
19019
19245
|
| {
|
|
@@ -19025,7 +19251,14 @@ export interface Modules {
|
|
|
19025
19251
|
[k: string]: unknown;
|
|
19026
19252
|
},
|
|
19027
19253
|
...{
|
|
19028
|
-
action:
|
|
19254
|
+
action:
|
|
19255
|
+
| 'workItemTypeChanged'
|
|
19256
|
+
| 'workItemMoved'
|
|
19257
|
+
| 'workItemCloned'
|
|
19258
|
+
| 'workItemDeleted'
|
|
19259
|
+
| 'subtaskCreated'
|
|
19260
|
+
| 'workItemEdited'
|
|
19261
|
+
| 'workItemAssigned';
|
|
19029
19262
|
expression: string;
|
|
19030
19263
|
errorMessage?:
|
|
19031
19264
|
| {
|
|
@@ -19041,12 +19274,14 @@ export interface Modules {
|
|
|
19041
19274
|
{
|
|
19042
19275
|
target?: {
|
|
19043
19276
|
resource: string;
|
|
19277
|
+
resolvedResourceEntry?: string;
|
|
19044
19278
|
render?: 'default' | 'native';
|
|
19045
19279
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
19046
19280
|
[k: string]: unknown;
|
|
19047
19281
|
};
|
|
19048
19282
|
experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
|
|
19049
19283
|
resource: string;
|
|
19284
|
+
resolvedResourceEntry?: string;
|
|
19050
19285
|
resolver?:
|
|
19051
19286
|
| {
|
|
19052
19287
|
function: string;
|
|
@@ -19065,12 +19300,14 @@ export interface Modules {
|
|
|
19065
19300
|
...{
|
|
19066
19301
|
target?: {
|
|
19067
19302
|
resource: string;
|
|
19303
|
+
resolvedResourceEntry?: string;
|
|
19068
19304
|
render?: 'default' | 'native';
|
|
19069
19305
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
19070
19306
|
[k: string]: unknown;
|
|
19071
19307
|
};
|
|
19072
19308
|
experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
|
|
19073
19309
|
resource: string;
|
|
19310
|
+
resolvedResourceEntry?: string;
|
|
19074
19311
|
resolver?:
|
|
19075
19312
|
| {
|
|
19076
19313
|
function: string;
|
|
@@ -19425,6 +19662,7 @@ export interface Modules {
|
|
|
19425
19662
|
endpoint: string;
|
|
19426
19663
|
};
|
|
19427
19664
|
resource: string;
|
|
19665
|
+
resolvedResourceEntry?: string;
|
|
19428
19666
|
resourceUploadId?: string;
|
|
19429
19667
|
render?: 'native' | 'default';
|
|
19430
19668
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19463,6 +19701,7 @@ export interface Modules {
|
|
|
19463
19701
|
endpoint: string;
|
|
19464
19702
|
};
|
|
19465
19703
|
resource: string;
|
|
19704
|
+
resolvedResourceEntry?: string;
|
|
19466
19705
|
resourceUploadId?: string;
|
|
19467
19706
|
render?: 'native' | 'default';
|
|
19468
19707
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19507,6 +19746,7 @@ export interface Modules {
|
|
|
19507
19746
|
endpoint: string;
|
|
19508
19747
|
};
|
|
19509
19748
|
resource: string;
|
|
19749
|
+
resolvedResourceEntry?: string;
|
|
19510
19750
|
resourceUploadId?: string;
|
|
19511
19751
|
render?: 'native' | 'default';
|
|
19512
19752
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19552,6 +19792,7 @@ export interface Modules {
|
|
|
19552
19792
|
endpoint: string;
|
|
19553
19793
|
};
|
|
19554
19794
|
resource: string;
|
|
19795
|
+
resolvedResourceEntry?: string;
|
|
19555
19796
|
resourceUploadId?: string;
|
|
19556
19797
|
render?: 'native' | 'default';
|
|
19557
19798
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19599,6 +19840,7 @@ export interface Modules {
|
|
|
19599
19840
|
endpoint: string;
|
|
19600
19841
|
};
|
|
19601
19842
|
resource: string;
|
|
19843
|
+
resolvedResourceEntry?: string;
|
|
19602
19844
|
resourceUploadId?: string;
|
|
19603
19845
|
render?: 'native' | 'default';
|
|
19604
19846
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19644,6 +19886,7 @@ export interface Modules {
|
|
|
19644
19886
|
endpoint: string;
|
|
19645
19887
|
};
|
|
19646
19888
|
resource: string;
|
|
19889
|
+
resolvedResourceEntry?: string;
|
|
19647
19890
|
resourceUploadId?: string;
|
|
19648
19891
|
render?: 'native' | 'default';
|
|
19649
19892
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19688,6 +19931,7 @@ export interface Modules {
|
|
|
19688
19931
|
endpoint: string;
|
|
19689
19932
|
};
|
|
19690
19933
|
resource: string;
|
|
19934
|
+
resolvedResourceEntry?: string;
|
|
19691
19935
|
resourceUploadId?: string;
|
|
19692
19936
|
render?: 'native' | 'default';
|
|
19693
19937
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19727,6 +19971,7 @@ export interface Modules {
|
|
|
19727
19971
|
endpoint: string;
|
|
19728
19972
|
};
|
|
19729
19973
|
resource: string;
|
|
19974
|
+
resolvedResourceEntry?: string;
|
|
19730
19975
|
resourceUploadId?: string;
|
|
19731
19976
|
render?: 'native' | 'default';
|
|
19732
19977
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19775,6 +20020,7 @@ export interface Modules {
|
|
|
19775
20020
|
endpoint: string;
|
|
19776
20021
|
};
|
|
19777
20022
|
resource: string;
|
|
20023
|
+
resolvedResourceEntry?: string;
|
|
19778
20024
|
resourceUploadId?: string;
|
|
19779
20025
|
render?: 'native' | 'default';
|
|
19780
20026
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19824,6 +20070,7 @@ export interface Modules {
|
|
|
19824
20070
|
endpoint: string;
|
|
19825
20071
|
};
|
|
19826
20072
|
resource: string;
|
|
20073
|
+
resolvedResourceEntry?: string;
|
|
19827
20074
|
resourceUploadId?: string;
|
|
19828
20075
|
render?: 'native' | 'default';
|
|
19829
20076
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19874,6 +20121,7 @@ export interface Modules {
|
|
|
19874
20121
|
endpoint: string;
|
|
19875
20122
|
};
|
|
19876
20123
|
resource: string;
|
|
20124
|
+
resolvedResourceEntry?: string;
|
|
19877
20125
|
resourceUploadId?: string;
|
|
19878
20126
|
render?: 'native' | 'default';
|
|
19879
20127
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19922,6 +20170,7 @@ export interface Modules {
|
|
|
19922
20170
|
endpoint: string;
|
|
19923
20171
|
};
|
|
19924
20172
|
resource: string;
|
|
20173
|
+
resolvedResourceEntry?: string;
|
|
19925
20174
|
resourceUploadId?: string;
|
|
19926
20175
|
render?: 'native' | 'default';
|
|
19927
20176
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19972,6 +20221,7 @@ export interface Modules {
|
|
|
19972
20221
|
endpoint: string;
|
|
19973
20222
|
};
|
|
19974
20223
|
resource: string;
|
|
20224
|
+
resolvedResourceEntry?: string;
|
|
19975
20225
|
resourceUploadId?: string;
|
|
19976
20226
|
render?: 'native' | 'default';
|
|
19977
20227
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20020,6 +20270,7 @@ export interface Modules {
|
|
|
20020
20270
|
endpoint: string;
|
|
20021
20271
|
};
|
|
20022
20272
|
resource: string;
|
|
20273
|
+
resolvedResourceEntry?: string;
|
|
20023
20274
|
resourceUploadId?: string;
|
|
20024
20275
|
render?: 'native' | 'default';
|
|
20025
20276
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20067,6 +20318,7 @@ export interface Modules {
|
|
|
20067
20318
|
endpoint: string;
|
|
20068
20319
|
};
|
|
20069
20320
|
resource: string;
|
|
20321
|
+
resolvedResourceEntry?: string;
|
|
20070
20322
|
resourceUploadId?: string;
|
|
20071
20323
|
render?: 'native' | 'default';
|
|
20072
20324
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20112,6 +20364,7 @@ export interface Modules {
|
|
|
20112
20364
|
endpoint: string;
|
|
20113
20365
|
};
|
|
20114
20366
|
resource: string;
|
|
20367
|
+
resolvedResourceEntry?: string;
|
|
20115
20368
|
resourceUploadId?: string;
|
|
20116
20369
|
render?: 'native' | 'default';
|
|
20117
20370
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20154,6 +20407,7 @@ export interface Modules {
|
|
|
20154
20407
|
endpoint: string;
|
|
20155
20408
|
};
|
|
20156
20409
|
resource: string;
|
|
20410
|
+
resolvedResourceEntry?: string;
|
|
20157
20411
|
resourceUploadId?: string;
|
|
20158
20412
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20159
20413
|
displayConditions?: {
|
|
@@ -20195,6 +20449,7 @@ export interface Modules {
|
|
|
20195
20449
|
endpoint: string;
|
|
20196
20450
|
};
|
|
20197
20451
|
resource: string;
|
|
20452
|
+
resolvedResourceEntry?: string;
|
|
20198
20453
|
resourceUploadId?: string;
|
|
20199
20454
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20200
20455
|
displayConditions?: {
|
|
@@ -20238,6 +20493,7 @@ export interface Modules {
|
|
|
20238
20493
|
endpoint: string;
|
|
20239
20494
|
};
|
|
20240
20495
|
resource: string;
|
|
20496
|
+
resolvedResourceEntry?: string;
|
|
20241
20497
|
resourceUploadId?: string;
|
|
20242
20498
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20243
20499
|
render?: 'native' | 'default';
|
|
@@ -20279,6 +20535,7 @@ export interface Modules {
|
|
|
20279
20535
|
endpoint: string;
|
|
20280
20536
|
};
|
|
20281
20537
|
resource: string;
|
|
20538
|
+
resolvedResourceEntry?: string;
|
|
20282
20539
|
resourceUploadId?: string;
|
|
20283
20540
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20284
20541
|
render?: 'native' | 'default';
|
|
@@ -20328,6 +20585,7 @@ export interface Modules {
|
|
|
20328
20585
|
endpoint: string;
|
|
20329
20586
|
};
|
|
20330
20587
|
resource: string;
|
|
20588
|
+
resolvedResourceEntry?: string;
|
|
20331
20589
|
resourceUploadId?: string;
|
|
20332
20590
|
render?: 'native' | 'default';
|
|
20333
20591
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20374,6 +20632,7 @@ export interface Modules {
|
|
|
20374
20632
|
endpoint: string;
|
|
20375
20633
|
};
|
|
20376
20634
|
resource: string;
|
|
20635
|
+
resolvedResourceEntry?: string;
|
|
20377
20636
|
resourceUploadId?: string;
|
|
20378
20637
|
render?: 'native' | 'default';
|
|
20379
20638
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20436,6 +20695,7 @@ export interface Modules {
|
|
|
20436
20695
|
description__i18n?: string;
|
|
20437
20696
|
icon: string;
|
|
20438
20697
|
resource: string;
|
|
20698
|
+
resolvedResourceEntry?: string;
|
|
20439
20699
|
resolver?:
|
|
20440
20700
|
| {
|
|
20441
20701
|
function: string;
|
|
@@ -20515,6 +20775,7 @@ export interface Modules {
|
|
|
20515
20775
|
description__i18n?: string;
|
|
20516
20776
|
icon: string;
|
|
20517
20777
|
resource: string;
|
|
20778
|
+
resolvedResourceEntry?: string;
|
|
20518
20779
|
resolver?:
|
|
20519
20780
|
| {
|
|
20520
20781
|
function: string;
|
|
@@ -20577,6 +20838,7 @@ export interface Modules {
|
|
|
20577
20838
|
endpoint: string;
|
|
20578
20839
|
};
|
|
20579
20840
|
resource: string;
|
|
20841
|
+
resolvedResourceEntry?: string;
|
|
20580
20842
|
resourceUploadId?: string;
|
|
20581
20843
|
render?: 'native' | 'default';
|
|
20582
20844
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20615,6 +20877,7 @@ export interface Modules {
|
|
|
20615
20877
|
endpoint: string;
|
|
20616
20878
|
};
|
|
20617
20879
|
resource: string;
|
|
20880
|
+
resolvedResourceEntry?: string;
|
|
20618
20881
|
resourceUploadId?: string;
|
|
20619
20882
|
render?: 'native' | 'default';
|
|
20620
20883
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20660,6 +20923,7 @@ export interface Modules {
|
|
|
20660
20923
|
endpoint: string;
|
|
20661
20924
|
};
|
|
20662
20925
|
resource: string;
|
|
20926
|
+
resolvedResourceEntry?: string;
|
|
20663
20927
|
resourceUploadId?: string;
|
|
20664
20928
|
render?: 'native' | 'default';
|
|
20665
20929
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20706,6 +20970,7 @@ export interface Modules {
|
|
|
20706
20970
|
endpoint: string;
|
|
20707
20971
|
};
|
|
20708
20972
|
resource: string;
|
|
20973
|
+
resolvedResourceEntry?: string;
|
|
20709
20974
|
resourceUploadId?: string;
|
|
20710
20975
|
render?: 'native' | 'default';
|
|
20711
20976
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -24927,6 +25192,26 @@ export interface Modules {
|
|
|
24927
25192
|
key: ModuleKeySchema;
|
|
24928
25193
|
}[]
|
|
24929
25194
|
];
|
|
25195
|
+
'rovo:skill'?: [
|
|
25196
|
+
{
|
|
25197
|
+
path: string;
|
|
25198
|
+
dependencies?: {
|
|
25199
|
+
tools?: string[];
|
|
25200
|
+
[k: string]: unknown;
|
|
25201
|
+
};
|
|
25202
|
+
key: ModuleKeySchema;
|
|
25203
|
+
[k: string]: unknown;
|
|
25204
|
+
},
|
|
25205
|
+
...{
|
|
25206
|
+
path: string;
|
|
25207
|
+
dependencies?: {
|
|
25208
|
+
tools?: string[];
|
|
25209
|
+
[k: string]: unknown;
|
|
25210
|
+
};
|
|
25211
|
+
key: ModuleKeySchema;
|
|
25212
|
+
[k: string]: unknown;
|
|
25213
|
+
}[]
|
|
25214
|
+
];
|
|
24930
25215
|
'graph:smartLink'?: [
|
|
24931
25216
|
{
|
|
24932
25217
|
/**
|
|
@@ -25301,6 +25586,56 @@ export interface Modules {
|
|
|
25301
25586
|
[k: string]: unknown;
|
|
25302
25587
|
}[]
|
|
25303
25588
|
];
|
|
25589
|
+
'devops:designInfoProvider'?: [
|
|
25590
|
+
{
|
|
25591
|
+
name: {
|
|
25592
|
+
value: string;
|
|
25593
|
+
[k: string]: unknown;
|
|
25594
|
+
};
|
|
25595
|
+
homeUrl: string;
|
|
25596
|
+
logoUrl?: string;
|
|
25597
|
+
handledDomainName?: string;
|
|
25598
|
+
documentationUrl?: string;
|
|
25599
|
+
checkAuth: {
|
|
25600
|
+
endpoint: string;
|
|
25601
|
+
};
|
|
25602
|
+
getEntityByUrl: {
|
|
25603
|
+
endpoint: string;
|
|
25604
|
+
};
|
|
25605
|
+
onEntityAssociated: {
|
|
25606
|
+
endpoint: string;
|
|
25607
|
+
};
|
|
25608
|
+
onEntityDisassociated: {
|
|
25609
|
+
endpoint: string;
|
|
25610
|
+
};
|
|
25611
|
+
key: ModuleKeySchema;
|
|
25612
|
+
[k: string]: unknown;
|
|
25613
|
+
},
|
|
25614
|
+
...{
|
|
25615
|
+
name: {
|
|
25616
|
+
value: string;
|
|
25617
|
+
[k: string]: unknown;
|
|
25618
|
+
};
|
|
25619
|
+
homeUrl: string;
|
|
25620
|
+
logoUrl?: string;
|
|
25621
|
+
handledDomainName?: string;
|
|
25622
|
+
documentationUrl?: string;
|
|
25623
|
+
checkAuth: {
|
|
25624
|
+
endpoint: string;
|
|
25625
|
+
};
|
|
25626
|
+
getEntityByUrl: {
|
|
25627
|
+
endpoint: string;
|
|
25628
|
+
};
|
|
25629
|
+
onEntityAssociated: {
|
|
25630
|
+
endpoint: string;
|
|
25631
|
+
};
|
|
25632
|
+
onEntityDisassociated: {
|
|
25633
|
+
endpoint: string;
|
|
25634
|
+
};
|
|
25635
|
+
key: ModuleKeySchema;
|
|
25636
|
+
[k: string]: unknown;
|
|
25637
|
+
}[]
|
|
25638
|
+
];
|
|
25304
25639
|
'devops:featureFlagInfoProvider'?: [
|
|
25305
25640
|
{
|
|
25306
25641
|
name: {
|
|
@@ -25397,6 +25732,60 @@ export interface Modules {
|
|
|
25397
25732
|
[k: string]: unknown;
|
|
25398
25733
|
}[]
|
|
25399
25734
|
];
|
|
25735
|
+
'devops:securityInfoProvider'?: [
|
|
25736
|
+
{
|
|
25737
|
+
name: {
|
|
25738
|
+
value: string;
|
|
25739
|
+
[k: string]: unknown;
|
|
25740
|
+
};
|
|
25741
|
+
homeUrl: string;
|
|
25742
|
+
logoUrl?: string;
|
|
25743
|
+
documentationUrl?: string;
|
|
25744
|
+
fetchWorkspaces: {
|
|
25745
|
+
endpoint: string;
|
|
25746
|
+
};
|
|
25747
|
+
fetchContainers: {
|
|
25748
|
+
endpoint: string;
|
|
25749
|
+
};
|
|
25750
|
+
searchContainers: {
|
|
25751
|
+
endpoint: string;
|
|
25752
|
+
};
|
|
25753
|
+
onEntityAssociated?: {
|
|
25754
|
+
endpoint: string;
|
|
25755
|
+
};
|
|
25756
|
+
onEntityDisassociated?: {
|
|
25757
|
+
endpoint: string;
|
|
25758
|
+
};
|
|
25759
|
+
key: ModuleKeySchema;
|
|
25760
|
+
[k: string]: unknown;
|
|
25761
|
+
},
|
|
25762
|
+
...{
|
|
25763
|
+
name: {
|
|
25764
|
+
value: string;
|
|
25765
|
+
[k: string]: unknown;
|
|
25766
|
+
};
|
|
25767
|
+
homeUrl: string;
|
|
25768
|
+
logoUrl?: string;
|
|
25769
|
+
documentationUrl?: string;
|
|
25770
|
+
fetchWorkspaces: {
|
|
25771
|
+
endpoint: string;
|
|
25772
|
+
};
|
|
25773
|
+
fetchContainers: {
|
|
25774
|
+
endpoint: string;
|
|
25775
|
+
};
|
|
25776
|
+
searchContainers: {
|
|
25777
|
+
endpoint: string;
|
|
25778
|
+
};
|
|
25779
|
+
onEntityAssociated?: {
|
|
25780
|
+
endpoint: string;
|
|
25781
|
+
};
|
|
25782
|
+
onEntityDisassociated?: {
|
|
25783
|
+
endpoint: string;
|
|
25784
|
+
};
|
|
25785
|
+
key: ModuleKeySchema;
|
|
25786
|
+
[k: string]: unknown;
|
|
25787
|
+
}[]
|
|
25788
|
+
];
|
|
25400
25789
|
'devops:remoteLinkInfoProvider'?: [
|
|
25401
25790
|
{
|
|
25402
25791
|
name: {
|
|
@@ -25431,6 +25820,7 @@ export interface Modules {
|
|
|
25431
25820
|
title__i18n?: string;
|
|
25432
25821
|
icon?: string;
|
|
25433
25822
|
resource: string;
|
|
25823
|
+
resolvedResourceEntry?: string;
|
|
25434
25824
|
resourceUploadId?: string;
|
|
25435
25825
|
resolver?:
|
|
25436
25826
|
| {
|
|
@@ -25452,6 +25842,7 @@ export interface Modules {
|
|
|
25452
25842
|
title__i18n?: string;
|
|
25453
25843
|
icon?: string;
|
|
25454
25844
|
resource: string;
|
|
25845
|
+
resolvedResourceEntry?: string;
|
|
25455
25846
|
resourceUploadId?: string;
|
|
25456
25847
|
resolver?:
|
|
25457
25848
|
| {
|
|
@@ -25482,6 +25873,12 @@ export interface Payload2 {
|
|
|
25482
25873
|
export interface Request {
|
|
25483
25874
|
authentication?: Authentication;
|
|
25484
25875
|
}
|
|
25876
|
+
export interface Filter3 {
|
|
25877
|
+
appIsLicensed: AppIsLicensed;
|
|
25878
|
+
}
|
|
25879
|
+
export interface Filter4 {
|
|
25880
|
+
appIsLicensed: AppIsLicensed;
|
|
25881
|
+
}
|
|
25485
25882
|
export interface RuntimeLayer {
|
|
25486
25883
|
identifier: string;
|
|
25487
25884
|
layer: {
|
|
@@ -74607,6 +75004,9 @@ export interface HostedResourcesSchema {
|
|
|
74607
75004
|
*/
|
|
74608
75005
|
key: string;
|
|
74609
75006
|
path: string;
|
|
75007
|
+
entry?: {
|
|
75008
|
+
[k: string]: string;
|
|
75009
|
+
};
|
|
74610
75010
|
tunnel?: {
|
|
74611
75011
|
port: number;
|
|
74612
75012
|
};
|
|
@@ -74679,6 +75079,10 @@ export interface AuthProviderCustom {
|
|
|
74679
75079
|
type: 'oauth2';
|
|
74680
75080
|
bearerMethod: BearerMethodSchema;
|
|
74681
75081
|
clientId: string;
|
|
75082
|
+
/**
|
|
75083
|
+
* Optional flag to enable PKCE as an authentication flow; when provided it must be true
|
|
75084
|
+
*/
|
|
75085
|
+
pkce?: true;
|
|
74682
75086
|
scopes?: OAuth2ScopeName[];
|
|
74683
75087
|
remotes?: ModuleKeySchema[];
|
|
74684
75088
|
actions: {
|
|
@@ -74901,6 +75305,10 @@ export interface AuthProviderPredefined {
|
|
|
74901
75305
|
integration: 'adobe' | 'azuredevops' | 'dropbox' | 'google' | 'miro';
|
|
74902
75306
|
bearerMethod: BearerMethodSchema;
|
|
74903
75307
|
clientId: string;
|
|
75308
|
+
/**
|
|
75309
|
+
* Optional flag to enable PKCE as an authentication flow; when provided it must be true
|
|
75310
|
+
*/
|
|
75311
|
+
pkce?: true;
|
|
74904
75312
|
scopes?: OAuth2ScopeName[];
|
|
74905
75313
|
remotes: ModuleKeySchema[];
|
|
74906
75314
|
}
|