@forge/manifest 12.7.1-next.0 → 12.8.0-next.2
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 +19 -0
- package/out/schema/manifest-schema.json +1119 -204
- package/out/schema/manifest.d.ts +346 -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/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -1836,6 +1836,7 @@ export interface Modules {
|
|
|
1836
1836
|
icon?: string;
|
|
1837
1837
|
config?: {
|
|
1838
1838
|
resource?: string;
|
|
1839
|
+
resolvedResourceEntry?: string;
|
|
1839
1840
|
render?: 'default' | 'native';
|
|
1840
1841
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1841
1842
|
};
|
|
@@ -1867,6 +1868,7 @@ export interface Modules {
|
|
|
1867
1868
|
icon?: string;
|
|
1868
1869
|
config?: {
|
|
1869
1870
|
resource?: string;
|
|
1871
|
+
resolvedResourceEntry?: string;
|
|
1870
1872
|
render?: 'default' | 'native';
|
|
1871
1873
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1872
1874
|
};
|
|
@@ -1894,6 +1896,7 @@ export interface Modules {
|
|
|
1894
1896
|
| {
|
|
1895
1897
|
config?: {
|
|
1896
1898
|
resource?: string;
|
|
1899
|
+
resolvedResourceEntry?: string;
|
|
1897
1900
|
render?: 'default' | 'native';
|
|
1898
1901
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1899
1902
|
};
|
|
@@ -1952,6 +1955,7 @@ export interface Modules {
|
|
|
1952
1955
|
icon?: string;
|
|
1953
1956
|
config?: {
|
|
1954
1957
|
resource?: string;
|
|
1958
|
+
resolvedResourceEntry?: string;
|
|
1955
1959
|
render?: 'default' | 'native';
|
|
1956
1960
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1957
1961
|
};
|
|
@@ -1983,6 +1987,7 @@ export interface Modules {
|
|
|
1983
1987
|
icon?: string;
|
|
1984
1988
|
config?: {
|
|
1985
1989
|
resource?: string;
|
|
1990
|
+
resolvedResourceEntry?: string;
|
|
1986
1991
|
render?: 'default' | 'native';
|
|
1987
1992
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
1988
1993
|
};
|
|
@@ -2010,6 +2015,7 @@ export interface Modules {
|
|
|
2010
2015
|
| {
|
|
2011
2016
|
config?: {
|
|
2012
2017
|
resource?: string;
|
|
2018
|
+
resolvedResourceEntry?: string;
|
|
2013
2019
|
render?: 'default' | 'native';
|
|
2014
2020
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
2015
2021
|
};
|
|
@@ -12521,6 +12527,7 @@ export interface Modules {
|
|
|
12521
12527
|
endpoint: string;
|
|
12522
12528
|
};
|
|
12523
12529
|
resource: string;
|
|
12530
|
+
resolvedResourceEntry?: string;
|
|
12524
12531
|
resourceUploadId?: string;
|
|
12525
12532
|
description?:
|
|
12526
12533
|
| {
|
|
@@ -12537,7 +12544,15 @@ export interface Modules {
|
|
|
12537
12544
|
config?:
|
|
12538
12545
|
| boolean
|
|
12539
12546
|
| {
|
|
12540
|
-
openOnInsert
|
|
12547
|
+
openOnInsert?: boolean;
|
|
12548
|
+
parameters?: {
|
|
12549
|
+
/**
|
|
12550
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12551
|
+
*
|
|
12552
|
+
*/
|
|
12553
|
+
identifier: string;
|
|
12554
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12555
|
+
}[];
|
|
12541
12556
|
}
|
|
12542
12557
|
| {
|
|
12543
12558
|
function?: string;
|
|
@@ -12555,6 +12570,14 @@ export interface Modules {
|
|
|
12555
12570
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12556
12571
|
openOnInsert?: boolean;
|
|
12557
12572
|
icon?: string;
|
|
12573
|
+
parameters?: {
|
|
12574
|
+
/**
|
|
12575
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12576
|
+
*
|
|
12577
|
+
*/
|
|
12578
|
+
identifier: string;
|
|
12579
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12580
|
+
}[];
|
|
12558
12581
|
};
|
|
12559
12582
|
autoConvert?: {
|
|
12560
12583
|
matchers: [
|
|
@@ -12637,6 +12660,7 @@ export interface Modules {
|
|
|
12637
12660
|
endpoint: string;
|
|
12638
12661
|
};
|
|
12639
12662
|
resource: string;
|
|
12663
|
+
resolvedResourceEntry?: string;
|
|
12640
12664
|
resourceUploadId?: string;
|
|
12641
12665
|
description?:
|
|
12642
12666
|
| {
|
|
@@ -12653,7 +12677,15 @@ export interface Modules {
|
|
|
12653
12677
|
config?:
|
|
12654
12678
|
| boolean
|
|
12655
12679
|
| {
|
|
12656
|
-
openOnInsert
|
|
12680
|
+
openOnInsert?: boolean;
|
|
12681
|
+
parameters?: {
|
|
12682
|
+
/**
|
|
12683
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12684
|
+
*
|
|
12685
|
+
*/
|
|
12686
|
+
identifier: string;
|
|
12687
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12688
|
+
}[];
|
|
12657
12689
|
}
|
|
12658
12690
|
| {
|
|
12659
12691
|
function?: string;
|
|
@@ -12671,6 +12703,14 @@ export interface Modules {
|
|
|
12671
12703
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
|
|
12672
12704
|
openOnInsert?: boolean;
|
|
12673
12705
|
icon?: string;
|
|
12706
|
+
parameters?: {
|
|
12707
|
+
/**
|
|
12708
|
+
* A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
|
|
12709
|
+
*
|
|
12710
|
+
*/
|
|
12711
|
+
identifier: string;
|
|
12712
|
+
type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
|
|
12713
|
+
}[];
|
|
12674
12714
|
};
|
|
12675
12715
|
autoConvert?: {
|
|
12676
12716
|
matchers: [
|
|
@@ -12853,6 +12893,7 @@ export interface Modules {
|
|
|
12853
12893
|
endpoint: string;
|
|
12854
12894
|
};
|
|
12855
12895
|
resource: string;
|
|
12896
|
+
resolvedResourceEntry?: string;
|
|
12856
12897
|
resourceUploadId?: string;
|
|
12857
12898
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
12858
12899
|
displayConditions?: {
|
|
@@ -12920,6 +12961,7 @@ export interface Modules {
|
|
|
12920
12961
|
endpoint: string;
|
|
12921
12962
|
};
|
|
12922
12963
|
resource: string;
|
|
12964
|
+
resolvedResourceEntry?: string;
|
|
12923
12965
|
resourceUploadId?: string;
|
|
12924
12966
|
viewportSize?: 'small' | 'medium' | 'large';
|
|
12925
12967
|
displayConditions?: {
|
|
@@ -12989,6 +13031,7 @@ export interface Modules {
|
|
|
12989
13031
|
endpoint: string;
|
|
12990
13032
|
};
|
|
12991
13033
|
resource: string;
|
|
13034
|
+
resolvedResourceEntry?: string;
|
|
12992
13035
|
resourceUploadId?: string;
|
|
12993
13036
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
12994
13037
|
displayConditions?: {
|
|
@@ -13056,6 +13099,7 @@ export interface Modules {
|
|
|
13056
13099
|
endpoint: string;
|
|
13057
13100
|
};
|
|
13058
13101
|
resource: string;
|
|
13102
|
+
resolvedResourceEntry?: string;
|
|
13059
13103
|
resourceUploadId?: string;
|
|
13060
13104
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13061
13105
|
displayConditions?: {
|
|
@@ -13157,6 +13201,7 @@ export interface Modules {
|
|
|
13157
13201
|
};
|
|
13158
13202
|
contentPropertyKey?: string;
|
|
13159
13203
|
resource: string;
|
|
13204
|
+
resolvedResourceEntry?: string;
|
|
13160
13205
|
resourceUploadId?: string;
|
|
13161
13206
|
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13162
13207
|
viewportContainer?: 'popup' | 'modal';
|
|
@@ -13256,6 +13301,7 @@ export interface Modules {
|
|
|
13256
13301
|
};
|
|
13257
13302
|
contentPropertyKey?: string;
|
|
13258
13303
|
resource: string;
|
|
13304
|
+
resolvedResourceEntry?: string;
|
|
13259
13305
|
resourceUploadId?: string;
|
|
13260
13306
|
viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
|
|
13261
13307
|
viewportContainer?: 'popup' | 'modal';
|
|
@@ -13324,6 +13370,7 @@ export interface Modules {
|
|
|
13324
13370
|
endpoint: string;
|
|
13325
13371
|
};
|
|
13326
13372
|
resource: string;
|
|
13373
|
+
resolvedResourceEntry?: string;
|
|
13327
13374
|
resourceUploadId?: string;
|
|
13328
13375
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13329
13376
|
displayConditions?: {
|
|
@@ -13389,6 +13436,7 @@ export interface Modules {
|
|
|
13389
13436
|
endpoint: string;
|
|
13390
13437
|
};
|
|
13391
13438
|
resource: string;
|
|
13439
|
+
resolvedResourceEntry?: string;
|
|
13392
13440
|
resourceUploadId?: string;
|
|
13393
13441
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
13394
13442
|
displayConditions?: {
|
|
@@ -13461,6 +13509,7 @@ export interface Modules {
|
|
|
13461
13509
|
endpoint: string;
|
|
13462
13510
|
};
|
|
13463
13511
|
resource: string;
|
|
13512
|
+
resolvedResourceEntry?: string;
|
|
13464
13513
|
resourceUploadId?: string;
|
|
13465
13514
|
displayConditions?: {
|
|
13466
13515
|
[k: string]: unknown;
|
|
@@ -13531,6 +13580,7 @@ export interface Modules {
|
|
|
13531
13580
|
endpoint: string;
|
|
13532
13581
|
};
|
|
13533
13582
|
resource: string;
|
|
13583
|
+
resolvedResourceEntry?: string;
|
|
13534
13584
|
resourceUploadId?: string;
|
|
13535
13585
|
displayConditions?: {
|
|
13536
13586
|
[k: string]: unknown;
|
|
@@ -13600,6 +13650,7 @@ export interface Modules {
|
|
|
13600
13650
|
endpoint: string;
|
|
13601
13651
|
};
|
|
13602
13652
|
resource: string;
|
|
13653
|
+
resolvedResourceEntry?: string;
|
|
13603
13654
|
resourceUploadId?: string;
|
|
13604
13655
|
displayConditions?: {
|
|
13605
13656
|
[k: string]: unknown;
|
|
@@ -13666,6 +13717,7 @@ export interface Modules {
|
|
|
13666
13717
|
endpoint: string;
|
|
13667
13718
|
};
|
|
13668
13719
|
resource: string;
|
|
13720
|
+
resolvedResourceEntry?: string;
|
|
13669
13721
|
resourceUploadId?: string;
|
|
13670
13722
|
displayConditions?: {
|
|
13671
13723
|
[k: string]: unknown;
|
|
@@ -13740,6 +13792,7 @@ export interface Modules {
|
|
|
13740
13792
|
endpoint: string;
|
|
13741
13793
|
};
|
|
13742
13794
|
resource: string;
|
|
13795
|
+
resolvedResourceEntry?: string;
|
|
13743
13796
|
resourceUploadId?: string;
|
|
13744
13797
|
displayConditions?: {
|
|
13745
13798
|
[k: string]: unknown;
|
|
@@ -13820,6 +13873,7 @@ export interface Modules {
|
|
|
13820
13873
|
endpoint: string;
|
|
13821
13874
|
};
|
|
13822
13875
|
resource: string;
|
|
13876
|
+
resolvedResourceEntry?: string;
|
|
13823
13877
|
resourceUploadId?: string;
|
|
13824
13878
|
displayConditions?: {
|
|
13825
13879
|
[k: string]: unknown;
|
|
@@ -13898,6 +13952,7 @@ export interface Modules {
|
|
|
13898
13952
|
endpoint: string;
|
|
13899
13953
|
};
|
|
13900
13954
|
resource: string;
|
|
13955
|
+
resolvedResourceEntry?: string;
|
|
13901
13956
|
resourceUploadId?: string;
|
|
13902
13957
|
displayConditions?: {
|
|
13903
13958
|
[k: string]: unknown;
|
|
@@ -13966,6 +14021,7 @@ export interface Modules {
|
|
|
13966
14021
|
endpoint: string;
|
|
13967
14022
|
};
|
|
13968
14023
|
resource: string;
|
|
14024
|
+
resolvedResourceEntry?: string;
|
|
13969
14025
|
resourceUploadId?: string;
|
|
13970
14026
|
displayConditions?: {
|
|
13971
14027
|
[k: string]: unknown;
|
|
@@ -14001,6 +14057,7 @@ export interface Modules {
|
|
|
14001
14057
|
routePrefix: string;
|
|
14002
14058
|
icon?: string;
|
|
14003
14059
|
resource: string;
|
|
14060
|
+
resolvedResourceEntry?: string;
|
|
14004
14061
|
resourceUploadId?: string;
|
|
14005
14062
|
resolver?:
|
|
14006
14063
|
| {
|
|
@@ -14027,6 +14084,7 @@ export interface Modules {
|
|
|
14027
14084
|
endpoint: string;
|
|
14028
14085
|
};
|
|
14029
14086
|
resource: string;
|
|
14087
|
+
resolvedResourceEntry?: string;
|
|
14030
14088
|
resourceUploadId?: string;
|
|
14031
14089
|
render: 'native' | 'default';
|
|
14032
14090
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14047,6 +14105,7 @@ export interface Modules {
|
|
|
14047
14105
|
routePrefix: string;
|
|
14048
14106
|
icon?: string;
|
|
14049
14107
|
resource: string;
|
|
14108
|
+
resolvedResourceEntry?: string;
|
|
14050
14109
|
resourceUploadId?: string;
|
|
14051
14110
|
resolver?:
|
|
14052
14111
|
| {
|
|
@@ -14073,6 +14132,7 @@ export interface Modules {
|
|
|
14073
14132
|
endpoint: string;
|
|
14074
14133
|
};
|
|
14075
14134
|
resource: string;
|
|
14135
|
+
resolvedResourceEntry?: string;
|
|
14076
14136
|
resourceUploadId?: string;
|
|
14077
14137
|
render: 'native' | 'default';
|
|
14078
14138
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14133,6 +14193,7 @@ export interface Modules {
|
|
|
14133
14193
|
function: string;
|
|
14134
14194
|
};
|
|
14135
14195
|
resource: string;
|
|
14196
|
+
resolvedResourceEntry?: string;
|
|
14136
14197
|
resourceUploadId?: string;
|
|
14137
14198
|
render?: 'native' | 'default';
|
|
14138
14199
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14193,6 +14254,7 @@ export interface Modules {
|
|
|
14193
14254
|
function: string;
|
|
14194
14255
|
};
|
|
14195
14256
|
resource: string;
|
|
14257
|
+
resolvedResourceEntry?: string;
|
|
14196
14258
|
resourceUploadId?: string;
|
|
14197
14259
|
render?: 'native' | 'default';
|
|
14198
14260
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -14232,6 +14294,7 @@ export interface Modules {
|
|
|
14232
14294
|
endpoint: string;
|
|
14233
14295
|
};
|
|
14234
14296
|
resource: string;
|
|
14297
|
+
resolvedResourceEntry?: string;
|
|
14235
14298
|
render?: 'native' | 'default';
|
|
14236
14299
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14237
14300
|
displayConditions?: {
|
|
@@ -14268,6 +14331,7 @@ export interface Modules {
|
|
|
14268
14331
|
endpoint: string;
|
|
14269
14332
|
};
|
|
14270
14333
|
resource: string;
|
|
14334
|
+
resolvedResourceEntry?: string;
|
|
14271
14335
|
render?: 'native' | 'default';
|
|
14272
14336
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14273
14337
|
displayConditions?: {
|
|
@@ -14306,6 +14370,7 @@ export interface Modules {
|
|
|
14306
14370
|
endpoint: string;
|
|
14307
14371
|
};
|
|
14308
14372
|
resource: string;
|
|
14373
|
+
resolvedResourceEntry?: string;
|
|
14309
14374
|
render?: 'native' | 'default';
|
|
14310
14375
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14311
14376
|
displayConditions?: {
|
|
@@ -14342,6 +14407,7 @@ export interface Modules {
|
|
|
14342
14407
|
endpoint: string;
|
|
14343
14408
|
};
|
|
14344
14409
|
resource: string;
|
|
14410
|
+
resolvedResourceEntry?: string;
|
|
14345
14411
|
render?: 'native' | 'default';
|
|
14346
14412
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
14347
14413
|
displayConditions?: {
|
|
@@ -14446,18 +14512,21 @@ export interface Modules {
|
|
|
14446
14512
|
};
|
|
14447
14513
|
view?: {
|
|
14448
14514
|
resource: string;
|
|
14515
|
+
resolvedResourceEntry?: string;
|
|
14449
14516
|
render?: 'default' | 'native';
|
|
14450
14517
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14451
14518
|
[k: string]: unknown;
|
|
14452
14519
|
};
|
|
14453
14520
|
edit?: {
|
|
14454
14521
|
resource: string;
|
|
14522
|
+
resolvedResourceEntry?: string;
|
|
14455
14523
|
render?: 'default' | 'native';
|
|
14456
14524
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14457
14525
|
[k: string]: unknown;
|
|
14458
14526
|
};
|
|
14459
14527
|
create?: {
|
|
14460
14528
|
resource: string;
|
|
14529
|
+
resolvedResourceEntry?: string;
|
|
14461
14530
|
render?: 'default' | 'native';
|
|
14462
14531
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14463
14532
|
[k: string]: unknown;
|
|
@@ -14500,18 +14569,21 @@ export interface Modules {
|
|
|
14500
14569
|
};
|
|
14501
14570
|
view?: {
|
|
14502
14571
|
resource: string;
|
|
14572
|
+
resolvedResourceEntry?: string;
|
|
14503
14573
|
render?: 'default' | 'native';
|
|
14504
14574
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14505
14575
|
[k: string]: unknown;
|
|
14506
14576
|
};
|
|
14507
14577
|
edit?: {
|
|
14508
14578
|
resource: string;
|
|
14579
|
+
resolvedResourceEntry?: string;
|
|
14509
14580
|
render?: 'default' | 'native';
|
|
14510
14581
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14511
14582
|
[k: string]: unknown;
|
|
14512
14583
|
};
|
|
14513
14584
|
create?: {
|
|
14514
14585
|
resource: string;
|
|
14586
|
+
resolvedResourceEntry?: string;
|
|
14515
14587
|
render?: 'default' | 'native';
|
|
14516
14588
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14517
14589
|
[k: string]: unknown;
|
|
@@ -14552,6 +14624,7 @@ export interface Modules {
|
|
|
14552
14624
|
| {
|
|
14553
14625
|
view?: {
|
|
14554
14626
|
resource?: string;
|
|
14627
|
+
resolvedResourceEntry?: string;
|
|
14555
14628
|
render?: 'default' | 'native';
|
|
14556
14629
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14557
14630
|
formatter?: {
|
|
@@ -14607,6 +14680,7 @@ export interface Modules {
|
|
|
14607
14680
|
}
|
|
14608
14681
|
| ({
|
|
14609
14682
|
resource: string;
|
|
14683
|
+
resolvedResourceEntry?: string;
|
|
14610
14684
|
render?: 'default' | 'native';
|
|
14611
14685
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14612
14686
|
[k: string]: unknown;
|
|
@@ -14616,6 +14690,7 @@ export interface Modules {
|
|
|
14616
14690
|
})
|
|
14617
14691
|
| {
|
|
14618
14692
|
resource?: string;
|
|
14693
|
+
resolvedResourceEntry?: string;
|
|
14619
14694
|
render?: 'default' | 'native';
|
|
14620
14695
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14621
14696
|
validation?: {
|
|
@@ -14651,6 +14726,7 @@ export interface Modules {
|
|
|
14651
14726
|
};
|
|
14652
14727
|
function?: string;
|
|
14653
14728
|
resource?: string;
|
|
14729
|
+
resolvedResourceEntry?: string;
|
|
14654
14730
|
render?: 'default' | 'native';
|
|
14655
14731
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14656
14732
|
parser?: {
|
|
@@ -14674,6 +14750,7 @@ export interface Modules {
|
|
|
14674
14750
|
| {
|
|
14675
14751
|
view: {
|
|
14676
14752
|
resource?: string;
|
|
14753
|
+
resolvedResourceEntry?: string;
|
|
14677
14754
|
render?: 'default' | 'native';
|
|
14678
14755
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14679
14756
|
formatter: {
|
|
@@ -14732,6 +14809,7 @@ export interface Modules {
|
|
|
14732
14809
|
}
|
|
14733
14810
|
| ({
|
|
14734
14811
|
resource: string;
|
|
14812
|
+
resolvedResourceEntry?: string;
|
|
14735
14813
|
render?: 'default' | 'native';
|
|
14736
14814
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14737
14815
|
[k: string]: unknown;
|
|
@@ -14741,6 +14819,7 @@ export interface Modules {
|
|
|
14741
14819
|
})
|
|
14742
14820
|
| {
|
|
14743
14821
|
resource?: string;
|
|
14822
|
+
resolvedResourceEntry?: string;
|
|
14744
14823
|
render?: 'default' | 'native';
|
|
14745
14824
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14746
14825
|
validation?: {
|
|
@@ -14776,6 +14855,7 @@ export interface Modules {
|
|
|
14776
14855
|
};
|
|
14777
14856
|
function?: string;
|
|
14778
14857
|
resource?: string;
|
|
14858
|
+
resolvedResourceEntry?: string;
|
|
14779
14859
|
render?: 'default' | 'native';
|
|
14780
14860
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14781
14861
|
parser?: {
|
|
@@ -14846,6 +14926,7 @@ export interface Modules {
|
|
|
14846
14926
|
}
|
|
14847
14927
|
| ({
|
|
14848
14928
|
resource: string;
|
|
14929
|
+
resolvedResourceEntry?: string;
|
|
14849
14930
|
render?: 'default' | 'native';
|
|
14850
14931
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14851
14932
|
[k: string]: unknown;
|
|
@@ -14855,6 +14936,7 @@ export interface Modules {
|
|
|
14855
14936
|
})
|
|
14856
14937
|
| {
|
|
14857
14938
|
resource?: string;
|
|
14939
|
+
resolvedResourceEntry?: string;
|
|
14858
14940
|
render?: 'default' | 'native';
|
|
14859
14941
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14860
14942
|
validation?: {
|
|
@@ -14890,6 +14972,7 @@ export interface Modules {
|
|
|
14890
14972
|
};
|
|
14891
14973
|
function?: string;
|
|
14892
14974
|
resource?: string;
|
|
14975
|
+
resolvedResourceEntry?: string;
|
|
14893
14976
|
render?: 'default' | 'native';
|
|
14894
14977
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14895
14978
|
parser?: {
|
|
@@ -14915,6 +14998,7 @@ export interface Modules {
|
|
|
14915
14998
|
| {
|
|
14916
14999
|
view?: {
|
|
14917
15000
|
resource?: string;
|
|
15001
|
+
resolvedResourceEntry?: string;
|
|
14918
15002
|
render?: 'default' | 'native';
|
|
14919
15003
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14920
15004
|
formatter?: {
|
|
@@ -14970,6 +15054,7 @@ export interface Modules {
|
|
|
14970
15054
|
}
|
|
14971
15055
|
| ({
|
|
14972
15056
|
resource: string;
|
|
15057
|
+
resolvedResourceEntry?: string;
|
|
14973
15058
|
render?: 'default' | 'native';
|
|
14974
15059
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14975
15060
|
[k: string]: unknown;
|
|
@@ -14979,6 +15064,7 @@ export interface Modules {
|
|
|
14979
15064
|
})
|
|
14980
15065
|
| {
|
|
14981
15066
|
resource?: string;
|
|
15067
|
+
resolvedResourceEntry?: string;
|
|
14982
15068
|
render?: 'default' | 'native';
|
|
14983
15069
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
14984
15070
|
validation?: {
|
|
@@ -15014,6 +15100,7 @@ export interface Modules {
|
|
|
15014
15100
|
};
|
|
15015
15101
|
function?: string;
|
|
15016
15102
|
resource?: string;
|
|
15103
|
+
resolvedResourceEntry?: string;
|
|
15017
15104
|
render?: 'default' | 'native';
|
|
15018
15105
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15019
15106
|
parser?: {
|
|
@@ -15037,6 +15124,7 @@ export interface Modules {
|
|
|
15037
15124
|
| {
|
|
15038
15125
|
view: {
|
|
15039
15126
|
resource?: string;
|
|
15127
|
+
resolvedResourceEntry?: string;
|
|
15040
15128
|
render?: 'default' | 'native';
|
|
15041
15129
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15042
15130
|
formatter: {
|
|
@@ -15095,6 +15183,7 @@ export interface Modules {
|
|
|
15095
15183
|
}
|
|
15096
15184
|
| ({
|
|
15097
15185
|
resource: string;
|
|
15186
|
+
resolvedResourceEntry?: string;
|
|
15098
15187
|
render?: 'default' | 'native';
|
|
15099
15188
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15100
15189
|
[k: string]: unknown;
|
|
@@ -15104,6 +15193,7 @@ export interface Modules {
|
|
|
15104
15193
|
})
|
|
15105
15194
|
| {
|
|
15106
15195
|
resource?: string;
|
|
15196
|
+
resolvedResourceEntry?: string;
|
|
15107
15197
|
render?: 'default' | 'native';
|
|
15108
15198
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15109
15199
|
validation?: {
|
|
@@ -15139,6 +15229,7 @@ export interface Modules {
|
|
|
15139
15229
|
};
|
|
15140
15230
|
function?: string;
|
|
15141
15231
|
resource?: string;
|
|
15232
|
+
resolvedResourceEntry?: string;
|
|
15142
15233
|
render?: 'default' | 'native';
|
|
15143
15234
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15144
15235
|
parser?: {
|
|
@@ -15209,6 +15300,7 @@ export interface Modules {
|
|
|
15209
15300
|
}
|
|
15210
15301
|
| ({
|
|
15211
15302
|
resource: string;
|
|
15303
|
+
resolvedResourceEntry?: string;
|
|
15212
15304
|
render?: 'default' | 'native';
|
|
15213
15305
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15214
15306
|
[k: string]: unknown;
|
|
@@ -15218,6 +15310,7 @@ export interface Modules {
|
|
|
15218
15310
|
})
|
|
15219
15311
|
| {
|
|
15220
15312
|
resource?: string;
|
|
15313
|
+
resolvedResourceEntry?: string;
|
|
15221
15314
|
render?: 'default' | 'native';
|
|
15222
15315
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15223
15316
|
validation?: {
|
|
@@ -15253,6 +15346,7 @@ export interface Modules {
|
|
|
15253
15346
|
};
|
|
15254
15347
|
function?: string;
|
|
15255
15348
|
resource?: string;
|
|
15349
|
+
resolvedResourceEntry?: string;
|
|
15256
15350
|
render?: 'default' | 'native';
|
|
15257
15351
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15258
15352
|
parser?: {
|
|
@@ -15280,6 +15374,7 @@ export interface Modules {
|
|
|
15280
15374
|
| {
|
|
15281
15375
|
view?: {
|
|
15282
15376
|
resource?: string;
|
|
15377
|
+
resolvedResourceEntry?: string;
|
|
15283
15378
|
render?: 'default' | 'native';
|
|
15284
15379
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15285
15380
|
formatter?: {
|
|
@@ -15328,6 +15423,7 @@ export interface Modules {
|
|
|
15328
15423
|
}
|
|
15329
15424
|
| ({
|
|
15330
15425
|
resource: string;
|
|
15426
|
+
resolvedResourceEntry?: string;
|
|
15331
15427
|
render?: 'default' | 'native';
|
|
15332
15428
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15333
15429
|
[k: string]: unknown;
|
|
@@ -15337,6 +15433,7 @@ export interface Modules {
|
|
|
15337
15433
|
})
|
|
15338
15434
|
| {
|
|
15339
15435
|
resource?: string;
|
|
15436
|
+
resolvedResourceEntry?: string;
|
|
15340
15437
|
render?: 'default' | 'native';
|
|
15341
15438
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15342
15439
|
validation?: {
|
|
@@ -15386,6 +15483,7 @@ export interface Modules {
|
|
|
15386
15483
|
}
|
|
15387
15484
|
| {
|
|
15388
15485
|
resource: string;
|
|
15486
|
+
resolvedResourceEntry?: string;
|
|
15389
15487
|
layout?: 'basic' | 'blank' | 'native';
|
|
15390
15488
|
render?: 'default' | 'native';
|
|
15391
15489
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15393,6 +15491,7 @@ export interface Modules {
|
|
|
15393
15491
|
}
|
|
15394
15492
|
| ({
|
|
15395
15493
|
resource: string;
|
|
15494
|
+
resolvedResourceEntry?: string;
|
|
15396
15495
|
render?: 'default' | 'native';
|
|
15397
15496
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15398
15497
|
[k: string]: unknown;
|
|
@@ -15402,6 +15501,7 @@ export interface Modules {
|
|
|
15402
15501
|
});
|
|
15403
15502
|
function?: string;
|
|
15404
15503
|
resource?: string;
|
|
15504
|
+
resolvedResourceEntry?: string;
|
|
15405
15505
|
render?: 'default' | 'native';
|
|
15406
15506
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15407
15507
|
parser?: {
|
|
@@ -15418,6 +15518,7 @@ export interface Modules {
|
|
|
15418
15518
|
| {
|
|
15419
15519
|
view: {
|
|
15420
15520
|
resource?: string;
|
|
15521
|
+
resolvedResourceEntry?: string;
|
|
15421
15522
|
render?: 'default' | 'native';
|
|
15422
15523
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15423
15524
|
formatter: {
|
|
@@ -15469,6 +15570,7 @@ export interface Modules {
|
|
|
15469
15570
|
}
|
|
15470
15571
|
| ({
|
|
15471
15572
|
resource: string;
|
|
15573
|
+
resolvedResourceEntry?: string;
|
|
15472
15574
|
render?: 'default' | 'native';
|
|
15473
15575
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15474
15576
|
[k: string]: unknown;
|
|
@@ -15478,6 +15580,7 @@ export interface Modules {
|
|
|
15478
15580
|
})
|
|
15479
15581
|
| {
|
|
15480
15582
|
resource?: string;
|
|
15583
|
+
resolvedResourceEntry?: string;
|
|
15481
15584
|
render?: 'default' | 'native';
|
|
15482
15585
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15483
15586
|
validation?: {
|
|
@@ -15527,6 +15630,7 @@ export interface Modules {
|
|
|
15527
15630
|
}
|
|
15528
15631
|
| {
|
|
15529
15632
|
resource: string;
|
|
15633
|
+
resolvedResourceEntry?: string;
|
|
15530
15634
|
layout?: 'basic' | 'blank' | 'native';
|
|
15531
15635
|
render?: 'default' | 'native';
|
|
15532
15636
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15534,6 +15638,7 @@ export interface Modules {
|
|
|
15534
15638
|
}
|
|
15535
15639
|
| ({
|
|
15536
15640
|
resource: string;
|
|
15641
|
+
resolvedResourceEntry?: string;
|
|
15537
15642
|
render?: 'default' | 'native';
|
|
15538
15643
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15539
15644
|
[k: string]: unknown;
|
|
@@ -15543,6 +15648,7 @@ export interface Modules {
|
|
|
15543
15648
|
});
|
|
15544
15649
|
function?: string;
|
|
15545
15650
|
resource?: string;
|
|
15651
|
+
resolvedResourceEntry?: string;
|
|
15546
15652
|
render?: 'default' | 'native';
|
|
15547
15653
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15548
15654
|
parser?: {
|
|
@@ -15599,6 +15705,7 @@ export interface Modules {
|
|
|
15599
15705
|
}
|
|
15600
15706
|
| ({
|
|
15601
15707
|
resource: string;
|
|
15708
|
+
resolvedResourceEntry?: string;
|
|
15602
15709
|
render?: 'default' | 'native';
|
|
15603
15710
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15604
15711
|
[k: string]: unknown;
|
|
@@ -15608,6 +15715,7 @@ export interface Modules {
|
|
|
15608
15715
|
})
|
|
15609
15716
|
| {
|
|
15610
15717
|
resource?: string;
|
|
15718
|
+
resolvedResourceEntry?: string;
|
|
15611
15719
|
render?: 'default' | 'native';
|
|
15612
15720
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15613
15721
|
validation?: {
|
|
@@ -15657,6 +15765,7 @@ export interface Modules {
|
|
|
15657
15765
|
}
|
|
15658
15766
|
| {
|
|
15659
15767
|
resource: string;
|
|
15768
|
+
resolvedResourceEntry?: string;
|
|
15660
15769
|
layout?: 'basic' | 'blank' | 'native';
|
|
15661
15770
|
render?: 'default' | 'native';
|
|
15662
15771
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15664,6 +15773,7 @@ export interface Modules {
|
|
|
15664
15773
|
}
|
|
15665
15774
|
| ({
|
|
15666
15775
|
resource: string;
|
|
15776
|
+
resolvedResourceEntry?: string;
|
|
15667
15777
|
render?: 'default' | 'native';
|
|
15668
15778
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15669
15779
|
[k: string]: unknown;
|
|
@@ -15673,6 +15783,7 @@ export interface Modules {
|
|
|
15673
15783
|
});
|
|
15674
15784
|
function?: string;
|
|
15675
15785
|
resource?: string;
|
|
15786
|
+
resolvedResourceEntry?: string;
|
|
15676
15787
|
render?: 'default' | 'native';
|
|
15677
15788
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15678
15789
|
parser?: {
|
|
@@ -15691,6 +15802,7 @@ export interface Modules {
|
|
|
15691
15802
|
| {
|
|
15692
15803
|
view?: {
|
|
15693
15804
|
resource?: string;
|
|
15805
|
+
resolvedResourceEntry?: string;
|
|
15694
15806
|
render?: 'default' | 'native';
|
|
15695
15807
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15696
15808
|
formatter?: {
|
|
@@ -15739,6 +15851,7 @@ export interface Modules {
|
|
|
15739
15851
|
}
|
|
15740
15852
|
| ({
|
|
15741
15853
|
resource: string;
|
|
15854
|
+
resolvedResourceEntry?: string;
|
|
15742
15855
|
render?: 'default' | 'native';
|
|
15743
15856
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15744
15857
|
[k: string]: unknown;
|
|
@@ -15748,6 +15861,7 @@ export interface Modules {
|
|
|
15748
15861
|
})
|
|
15749
15862
|
| {
|
|
15750
15863
|
resource?: string;
|
|
15864
|
+
resolvedResourceEntry?: string;
|
|
15751
15865
|
render?: 'default' | 'native';
|
|
15752
15866
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15753
15867
|
validation?: {
|
|
@@ -15797,6 +15911,7 @@ export interface Modules {
|
|
|
15797
15911
|
}
|
|
15798
15912
|
| {
|
|
15799
15913
|
resource: string;
|
|
15914
|
+
resolvedResourceEntry?: string;
|
|
15800
15915
|
layout?: 'basic' | 'blank' | 'native';
|
|
15801
15916
|
render?: 'default' | 'native';
|
|
15802
15917
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15804,6 +15919,7 @@ export interface Modules {
|
|
|
15804
15919
|
}
|
|
15805
15920
|
| ({
|
|
15806
15921
|
resource: string;
|
|
15922
|
+
resolvedResourceEntry?: string;
|
|
15807
15923
|
render?: 'default' | 'native';
|
|
15808
15924
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15809
15925
|
[k: string]: unknown;
|
|
@@ -15813,6 +15929,7 @@ export interface Modules {
|
|
|
15813
15929
|
});
|
|
15814
15930
|
function?: string;
|
|
15815
15931
|
resource?: string;
|
|
15932
|
+
resolvedResourceEntry?: string;
|
|
15816
15933
|
render?: 'default' | 'native';
|
|
15817
15934
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15818
15935
|
parser?: {
|
|
@@ -15829,6 +15946,7 @@ export interface Modules {
|
|
|
15829
15946
|
| {
|
|
15830
15947
|
view: {
|
|
15831
15948
|
resource?: string;
|
|
15949
|
+
resolvedResourceEntry?: string;
|
|
15832
15950
|
render?: 'default' | 'native';
|
|
15833
15951
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15834
15952
|
formatter: {
|
|
@@ -15880,6 +15998,7 @@ export interface Modules {
|
|
|
15880
15998
|
}
|
|
15881
15999
|
| ({
|
|
15882
16000
|
resource: string;
|
|
16001
|
+
resolvedResourceEntry?: string;
|
|
15883
16002
|
render?: 'default' | 'native';
|
|
15884
16003
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15885
16004
|
[k: string]: unknown;
|
|
@@ -15889,6 +16008,7 @@ export interface Modules {
|
|
|
15889
16008
|
})
|
|
15890
16009
|
| {
|
|
15891
16010
|
resource?: string;
|
|
16011
|
+
resolvedResourceEntry?: string;
|
|
15892
16012
|
render?: 'default' | 'native';
|
|
15893
16013
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15894
16014
|
validation?: {
|
|
@@ -15938,6 +16058,7 @@ export interface Modules {
|
|
|
15938
16058
|
}
|
|
15939
16059
|
| {
|
|
15940
16060
|
resource: string;
|
|
16061
|
+
resolvedResourceEntry?: string;
|
|
15941
16062
|
layout?: 'basic' | 'blank' | 'native';
|
|
15942
16063
|
render?: 'default' | 'native';
|
|
15943
16064
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -15945,6 +16066,7 @@ export interface Modules {
|
|
|
15945
16066
|
}
|
|
15946
16067
|
| ({
|
|
15947
16068
|
resource: string;
|
|
16069
|
+
resolvedResourceEntry?: string;
|
|
15948
16070
|
render?: 'default' | 'native';
|
|
15949
16071
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15950
16072
|
[k: string]: unknown;
|
|
@@ -15954,6 +16076,7 @@ export interface Modules {
|
|
|
15954
16076
|
});
|
|
15955
16077
|
function?: string;
|
|
15956
16078
|
resource?: string;
|
|
16079
|
+
resolvedResourceEntry?: string;
|
|
15957
16080
|
render?: 'default' | 'native';
|
|
15958
16081
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
15959
16082
|
parser?: {
|
|
@@ -16010,6 +16133,7 @@ export interface Modules {
|
|
|
16010
16133
|
}
|
|
16011
16134
|
| ({
|
|
16012
16135
|
resource: string;
|
|
16136
|
+
resolvedResourceEntry?: string;
|
|
16013
16137
|
render?: 'default' | 'native';
|
|
16014
16138
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16015
16139
|
[k: string]: unknown;
|
|
@@ -16019,6 +16143,7 @@ export interface Modules {
|
|
|
16019
16143
|
})
|
|
16020
16144
|
| {
|
|
16021
16145
|
resource?: string;
|
|
16146
|
+
resolvedResourceEntry?: string;
|
|
16022
16147
|
render?: 'default' | 'native';
|
|
16023
16148
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16024
16149
|
validation?: {
|
|
@@ -16068,6 +16193,7 @@ export interface Modules {
|
|
|
16068
16193
|
}
|
|
16069
16194
|
| {
|
|
16070
16195
|
resource: string;
|
|
16196
|
+
resolvedResourceEntry?: string;
|
|
16071
16197
|
layout?: 'basic' | 'blank' | 'native';
|
|
16072
16198
|
render?: 'default' | 'native';
|
|
16073
16199
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
@@ -16075,6 +16201,7 @@ export interface Modules {
|
|
|
16075
16201
|
}
|
|
16076
16202
|
| ({
|
|
16077
16203
|
resource: string;
|
|
16204
|
+
resolvedResourceEntry?: string;
|
|
16078
16205
|
render?: 'default' | 'native';
|
|
16079
16206
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16080
16207
|
[k: string]: unknown;
|
|
@@ -16084,6 +16211,7 @@ export interface Modules {
|
|
|
16084
16211
|
});
|
|
16085
16212
|
function?: string;
|
|
16086
16213
|
resource?: string;
|
|
16214
|
+
resolvedResourceEntry?: string;
|
|
16087
16215
|
render?: 'default' | 'native';
|
|
16088
16216
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16089
16217
|
parser?: {
|
|
@@ -16117,6 +16245,7 @@ export interface Modules {
|
|
|
16117
16245
|
}
|
|
16118
16246
|
| {
|
|
16119
16247
|
resource: string;
|
|
16248
|
+
resolvedResourceEntry?: string;
|
|
16120
16249
|
resolver?:
|
|
16121
16250
|
| {
|
|
16122
16251
|
function: string;
|
|
@@ -16158,6 +16287,7 @@ export interface Modules {
|
|
|
16158
16287
|
}
|
|
16159
16288
|
| {
|
|
16160
16289
|
resource: string;
|
|
16290
|
+
resolvedResourceEntry?: string;
|
|
16161
16291
|
resolver?:
|
|
16162
16292
|
| {
|
|
16163
16293
|
function: string;
|
|
@@ -16192,6 +16322,7 @@ export interface Modules {
|
|
|
16192
16322
|
};
|
|
16193
16323
|
title__i18n?: string;
|
|
16194
16324
|
resource: string;
|
|
16325
|
+
resolvedResourceEntry?: string;
|
|
16195
16326
|
resolver?:
|
|
16196
16327
|
| {
|
|
16197
16328
|
function: string;
|
|
@@ -16212,6 +16343,7 @@ export interface Modules {
|
|
|
16212
16343
|
};
|
|
16213
16344
|
title__i18n?: string;
|
|
16214
16345
|
resource: string;
|
|
16346
|
+
resolvedResourceEntry?: string;
|
|
16215
16347
|
resolver?:
|
|
16216
16348
|
| {
|
|
16217
16349
|
function: string;
|
|
@@ -16260,6 +16392,7 @@ export interface Modules {
|
|
|
16260
16392
|
}
|
|
16261
16393
|
| {
|
|
16262
16394
|
resource: string;
|
|
16395
|
+
resolvedResourceEntry?: string;
|
|
16263
16396
|
resolver?:
|
|
16264
16397
|
| {
|
|
16265
16398
|
function: string;
|
|
@@ -16333,6 +16466,7 @@ export interface Modules {
|
|
|
16333
16466
|
}
|
|
16334
16467
|
| {
|
|
16335
16468
|
resource: string;
|
|
16469
|
+
resolvedResourceEntry?: string;
|
|
16336
16470
|
resolver?:
|
|
16337
16471
|
| {
|
|
16338
16472
|
function: string;
|
|
@@ -16397,6 +16531,7 @@ export interface Modules {
|
|
|
16397
16531
|
}
|
|
16398
16532
|
| {
|
|
16399
16533
|
resource: string;
|
|
16534
|
+
resolvedResourceEntry?: string;
|
|
16400
16535
|
resolver?:
|
|
16401
16536
|
| {
|
|
16402
16537
|
function: string;
|
|
@@ -16450,6 +16585,7 @@ export interface Modules {
|
|
|
16450
16585
|
}
|
|
16451
16586
|
| {
|
|
16452
16587
|
resource: string;
|
|
16588
|
+
resolvedResourceEntry?: string;
|
|
16453
16589
|
resolver?:
|
|
16454
16590
|
| {
|
|
16455
16591
|
function: string;
|
|
@@ -16499,6 +16635,7 @@ export interface Modules {
|
|
|
16499
16635
|
}
|
|
16500
16636
|
| {
|
|
16501
16637
|
resource: string;
|
|
16638
|
+
resolvedResourceEntry?: string;
|
|
16502
16639
|
resolver?:
|
|
16503
16640
|
| {
|
|
16504
16641
|
function: string;
|
|
@@ -16540,6 +16677,7 @@ export interface Modules {
|
|
|
16540
16677
|
}
|
|
16541
16678
|
| {
|
|
16542
16679
|
resource: string;
|
|
16680
|
+
resolvedResourceEntry?: string;
|
|
16543
16681
|
resolver?:
|
|
16544
16682
|
| {
|
|
16545
16683
|
function: string;
|
|
@@ -16601,6 +16739,7 @@ export interface Modules {
|
|
|
16601
16739
|
}
|
|
16602
16740
|
| {
|
|
16603
16741
|
resource: string;
|
|
16742
|
+
resolvedResourceEntry?: string;
|
|
16604
16743
|
resolver?:
|
|
16605
16744
|
| {
|
|
16606
16745
|
function: string;
|
|
@@ -16610,6 +16749,7 @@ export interface Modules {
|
|
|
16610
16749
|
};
|
|
16611
16750
|
edit?: {
|
|
16612
16751
|
resource: string;
|
|
16752
|
+
resolvedResourceEntry?: string;
|
|
16613
16753
|
render?: 'default' | 'native';
|
|
16614
16754
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16615
16755
|
[k: string]: unknown;
|
|
@@ -16678,6 +16818,7 @@ export interface Modules {
|
|
|
16678
16818
|
}
|
|
16679
16819
|
| {
|
|
16680
16820
|
resource: string;
|
|
16821
|
+
resolvedResourceEntry?: string;
|
|
16681
16822
|
resolver?:
|
|
16682
16823
|
| {
|
|
16683
16824
|
function: string;
|
|
@@ -16687,6 +16828,7 @@ export interface Modules {
|
|
|
16687
16828
|
};
|
|
16688
16829
|
edit?: {
|
|
16689
16830
|
resource: string;
|
|
16831
|
+
resolvedResourceEntry?: string;
|
|
16690
16832
|
render?: 'default' | 'native';
|
|
16691
16833
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
16692
16834
|
[k: string]: unknown;
|
|
@@ -16774,6 +16916,7 @@ export interface Modules {
|
|
|
16774
16916
|
}
|
|
16775
16917
|
| {
|
|
16776
16918
|
resource: string;
|
|
16919
|
+
resolvedResourceEntry?: string;
|
|
16777
16920
|
resourceUploadId?: string;
|
|
16778
16921
|
resolver?:
|
|
16779
16922
|
| {
|
|
@@ -16884,6 +17027,7 @@ export interface Modules {
|
|
|
16884
17027
|
}
|
|
16885
17028
|
| {
|
|
16886
17029
|
resource: string;
|
|
17030
|
+
resolvedResourceEntry?: string;
|
|
16887
17031
|
resourceUploadId?: string;
|
|
16888
17032
|
resolver?:
|
|
16889
17033
|
| {
|
|
@@ -16994,6 +17138,7 @@ export interface Modules {
|
|
|
16994
17138
|
}
|
|
16995
17139
|
| {
|
|
16996
17140
|
resource: string;
|
|
17141
|
+
resolvedResourceEntry?: string;
|
|
16997
17142
|
resourceUploadId?: string;
|
|
16998
17143
|
resolver?:
|
|
16999
17144
|
| {
|
|
@@ -17100,6 +17245,7 @@ export interface Modules {
|
|
|
17100
17245
|
}
|
|
17101
17246
|
| {
|
|
17102
17247
|
resource: string;
|
|
17248
|
+
resolvedResourceEntry?: string;
|
|
17103
17249
|
resourceUploadId?: string;
|
|
17104
17250
|
resolver?:
|
|
17105
17251
|
| {
|
|
@@ -17296,6 +17442,7 @@ export interface Modules {
|
|
|
17296
17442
|
}
|
|
17297
17443
|
| {
|
|
17298
17444
|
resource: string;
|
|
17445
|
+
resolvedResourceEntry?: string;
|
|
17299
17446
|
resourceUploadId?: string;
|
|
17300
17447
|
resolver?:
|
|
17301
17448
|
| {
|
|
@@ -17402,6 +17549,7 @@ export interface Modules {
|
|
|
17402
17549
|
}
|
|
17403
17550
|
| {
|
|
17404
17551
|
resource: string;
|
|
17552
|
+
resolvedResourceEntry?: string;
|
|
17405
17553
|
resourceUploadId?: string;
|
|
17406
17554
|
resolver?:
|
|
17407
17555
|
| {
|
|
@@ -17510,6 +17658,7 @@ export interface Modules {
|
|
|
17510
17658
|
}
|
|
17511
17659
|
| {
|
|
17512
17660
|
resource: string;
|
|
17661
|
+
resolvedResourceEntry?: string;
|
|
17513
17662
|
resourceUploadId?: string;
|
|
17514
17663
|
resolver?:
|
|
17515
17664
|
| {
|
|
@@ -17616,6 +17765,7 @@ export interface Modules {
|
|
|
17616
17765
|
}
|
|
17617
17766
|
| {
|
|
17618
17767
|
resource: string;
|
|
17768
|
+
resolvedResourceEntry?: string;
|
|
17619
17769
|
resourceUploadId?: string;
|
|
17620
17770
|
resolver?:
|
|
17621
17771
|
| {
|
|
@@ -17697,18 +17847,21 @@ export interface Modules {
|
|
|
17697
17847
|
};
|
|
17698
17848
|
view?: {
|
|
17699
17849
|
resource: string;
|
|
17850
|
+
resolvedResourceEntry?: string;
|
|
17700
17851
|
render?: 'default' | 'native';
|
|
17701
17852
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17702
17853
|
[k: string]: unknown;
|
|
17703
17854
|
};
|
|
17704
17855
|
edit?: {
|
|
17705
17856
|
resource: string;
|
|
17857
|
+
resolvedResourceEntry?: string;
|
|
17706
17858
|
render?: 'default' | 'native';
|
|
17707
17859
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17708
17860
|
[k: string]: unknown;
|
|
17709
17861
|
};
|
|
17710
17862
|
create?: {
|
|
17711
17863
|
resource: string;
|
|
17864
|
+
resolvedResourceEntry?: string;
|
|
17712
17865
|
render?: 'default' | 'native';
|
|
17713
17866
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17714
17867
|
[k: string]: unknown;
|
|
@@ -17740,18 +17893,21 @@ export interface Modules {
|
|
|
17740
17893
|
};
|
|
17741
17894
|
view?: {
|
|
17742
17895
|
resource: string;
|
|
17896
|
+
resolvedResourceEntry?: string;
|
|
17743
17897
|
render?: 'default' | 'native';
|
|
17744
17898
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17745
17899
|
[k: string]: unknown;
|
|
17746
17900
|
};
|
|
17747
17901
|
edit?: {
|
|
17748
17902
|
resource: string;
|
|
17903
|
+
resolvedResourceEntry?: string;
|
|
17749
17904
|
render?: 'default' | 'native';
|
|
17750
17905
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17751
17906
|
[k: string]: unknown;
|
|
17752
17907
|
};
|
|
17753
17908
|
create?: {
|
|
17754
17909
|
resource: string;
|
|
17910
|
+
resolvedResourceEntry?: string;
|
|
17755
17911
|
render?: 'default' | 'native';
|
|
17756
17912
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17757
17913
|
[k: string]: unknown;
|
|
@@ -17764,6 +17920,7 @@ export interface Modules {
|
|
|
17764
17920
|
'jira:dashboardBackgroundScript'?: [
|
|
17765
17921
|
{
|
|
17766
17922
|
resource: string;
|
|
17923
|
+
resolvedResourceEntry?: string;
|
|
17767
17924
|
resolver?:
|
|
17768
17925
|
| {
|
|
17769
17926
|
function: string;
|
|
@@ -17781,6 +17938,7 @@ export interface Modules {
|
|
|
17781
17938
|
},
|
|
17782
17939
|
...{
|
|
17783
17940
|
resource: string;
|
|
17941
|
+
resolvedResourceEntry?: string;
|
|
17784
17942
|
resolver?:
|
|
17785
17943
|
| {
|
|
17786
17944
|
function: string;
|
|
@@ -17900,18 +18058,21 @@ export interface Modules {
|
|
|
17900
18058
|
};
|
|
17901
18059
|
view?: {
|
|
17902
18060
|
resource: string;
|
|
18061
|
+
resolvedResourceEntry?: string;
|
|
17903
18062
|
render?: 'default' | 'native';
|
|
17904
18063
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17905
18064
|
[k: string]: unknown;
|
|
17906
18065
|
};
|
|
17907
18066
|
edit?: {
|
|
17908
18067
|
resource: string;
|
|
18068
|
+
resolvedResourceEntry?: string;
|
|
17909
18069
|
render?: 'default' | 'native';
|
|
17910
18070
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17911
18071
|
[k: string]: unknown;
|
|
17912
18072
|
};
|
|
17913
18073
|
create?: {
|
|
17914
18074
|
resource: string;
|
|
18075
|
+
resolvedResourceEntry?: string;
|
|
17915
18076
|
render?: 'default' | 'native';
|
|
17916
18077
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17917
18078
|
[k: string]: unknown;
|
|
@@ -17943,18 +18104,21 @@ export interface Modules {
|
|
|
17943
18104
|
};
|
|
17944
18105
|
view?: {
|
|
17945
18106
|
resource: string;
|
|
18107
|
+
resolvedResourceEntry?: string;
|
|
17946
18108
|
render?: 'default' | 'native';
|
|
17947
18109
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17948
18110
|
[k: string]: unknown;
|
|
17949
18111
|
};
|
|
17950
18112
|
edit?: {
|
|
17951
18113
|
resource: string;
|
|
18114
|
+
resolvedResourceEntry?: string;
|
|
17952
18115
|
render?: 'default' | 'native';
|
|
17953
18116
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17954
18117
|
[k: string]: unknown;
|
|
17955
18118
|
};
|
|
17956
18119
|
create?: {
|
|
17957
18120
|
resource: string;
|
|
18121
|
+
resolvedResourceEntry?: string;
|
|
17958
18122
|
render?: 'default' | 'native';
|
|
17959
18123
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17960
18124
|
[k: string]: unknown;
|
|
@@ -17988,18 +18152,21 @@ export interface Modules {
|
|
|
17988
18152
|
};
|
|
17989
18153
|
view?: {
|
|
17990
18154
|
resource: string;
|
|
18155
|
+
resolvedResourceEntry?: string;
|
|
17991
18156
|
render?: 'default' | 'native';
|
|
17992
18157
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17993
18158
|
[k: string]: unknown;
|
|
17994
18159
|
};
|
|
17995
18160
|
edit?: {
|
|
17996
18161
|
resource: string;
|
|
18162
|
+
resolvedResourceEntry?: string;
|
|
17997
18163
|
render?: 'default' | 'native';
|
|
17998
18164
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
17999
18165
|
[k: string]: unknown;
|
|
18000
18166
|
};
|
|
18001
18167
|
create?: {
|
|
18002
18168
|
resource: string;
|
|
18169
|
+
resolvedResourceEntry?: string;
|
|
18003
18170
|
render?: 'default' | 'native';
|
|
18004
18171
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18005
18172
|
[k: string]: unknown;
|
|
@@ -18031,18 +18198,21 @@ export interface Modules {
|
|
|
18031
18198
|
};
|
|
18032
18199
|
view?: {
|
|
18033
18200
|
resource: string;
|
|
18201
|
+
resolvedResourceEntry?: string;
|
|
18034
18202
|
render?: 'default' | 'native';
|
|
18035
18203
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18036
18204
|
[k: string]: unknown;
|
|
18037
18205
|
};
|
|
18038
18206
|
edit?: {
|
|
18039
18207
|
resource: string;
|
|
18208
|
+
resolvedResourceEntry?: string;
|
|
18040
18209
|
render?: 'default' | 'native';
|
|
18041
18210
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18042
18211
|
[k: string]: unknown;
|
|
18043
18212
|
};
|
|
18044
18213
|
create?: {
|
|
18045
18214
|
resource: string;
|
|
18215
|
+
resolvedResourceEntry?: string;
|
|
18046
18216
|
render?: 'default' | 'native';
|
|
18047
18217
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18048
18218
|
[k: string]: unknown;
|
|
@@ -18088,6 +18258,7 @@ export interface Modules {
|
|
|
18088
18258
|
}
|
|
18089
18259
|
| {
|
|
18090
18260
|
resource: string;
|
|
18261
|
+
resolvedResourceEntry?: string;
|
|
18091
18262
|
resolver?:
|
|
18092
18263
|
| {
|
|
18093
18264
|
function: string;
|
|
@@ -18161,6 +18332,7 @@ export interface Modules {
|
|
|
18161
18332
|
}
|
|
18162
18333
|
| {
|
|
18163
18334
|
resource: string;
|
|
18335
|
+
resolvedResourceEntry?: string;
|
|
18164
18336
|
resolver?:
|
|
18165
18337
|
| {
|
|
18166
18338
|
function: string;
|
|
@@ -18205,6 +18377,7 @@ export interface Modules {
|
|
|
18205
18377
|
{
|
|
18206
18378
|
shouldReloadOnRefresh?: boolean;
|
|
18207
18379
|
resource: string;
|
|
18380
|
+
resolvedResourceEntry?: string;
|
|
18208
18381
|
resolver?:
|
|
18209
18382
|
| {
|
|
18210
18383
|
function: string;
|
|
@@ -18223,6 +18396,7 @@ export interface Modules {
|
|
|
18223
18396
|
...{
|
|
18224
18397
|
shouldReloadOnRefresh?: boolean;
|
|
18225
18398
|
resource: string;
|
|
18399
|
+
resolvedResourceEntry?: string;
|
|
18226
18400
|
resolver?:
|
|
18227
18401
|
| {
|
|
18228
18402
|
function: string;
|
|
@@ -18437,6 +18611,7 @@ export interface Modules {
|
|
|
18437
18611
|
{
|
|
18438
18612
|
icon?: string;
|
|
18439
18613
|
resource: string;
|
|
18614
|
+
resolvedResourceEntry?: string;
|
|
18440
18615
|
title:
|
|
18441
18616
|
| string
|
|
18442
18617
|
| {
|
|
@@ -18486,6 +18661,7 @@ export interface Modules {
|
|
|
18486
18661
|
...{
|
|
18487
18662
|
icon?: string;
|
|
18488
18663
|
resource: string;
|
|
18664
|
+
resolvedResourceEntry?: string;
|
|
18489
18665
|
title:
|
|
18490
18666
|
| string
|
|
18491
18667
|
| {
|
|
@@ -18536,6 +18712,7 @@ export interface Modules {
|
|
|
18536
18712
|
'jira:personalSettingsPage'?: [
|
|
18537
18713
|
{
|
|
18538
18714
|
resource: string;
|
|
18715
|
+
resolvedResourceEntry?: string;
|
|
18539
18716
|
resourceUploadId?: string;
|
|
18540
18717
|
resolver?:
|
|
18541
18718
|
| {
|
|
@@ -18592,6 +18769,7 @@ export interface Modules {
|
|
|
18592
18769
|
},
|
|
18593
18770
|
...{
|
|
18594
18771
|
resource: string;
|
|
18772
|
+
resolvedResourceEntry?: string;
|
|
18595
18773
|
resourceUploadId?: string;
|
|
18596
18774
|
resolver?:
|
|
18597
18775
|
| {
|
|
@@ -18651,6 +18829,7 @@ export interface Modules {
|
|
|
18651
18829
|
{
|
|
18652
18830
|
icon?: string;
|
|
18653
18831
|
resource: string;
|
|
18832
|
+
resolvedResourceEntry?: string;
|
|
18654
18833
|
title:
|
|
18655
18834
|
| string
|
|
18656
18835
|
| {
|
|
@@ -18700,6 +18879,7 @@ export interface Modules {
|
|
|
18700
18879
|
...{
|
|
18701
18880
|
icon?: string;
|
|
18702
18881
|
resource: string;
|
|
18882
|
+
resolvedResourceEntry?: string;
|
|
18703
18883
|
title:
|
|
18704
18884
|
| string
|
|
18705
18885
|
| {
|
|
@@ -18761,6 +18941,7 @@ export interface Modules {
|
|
|
18761
18941
|
target:
|
|
18762
18942
|
| {
|
|
18763
18943
|
resource: string;
|
|
18944
|
+
resolvedResourceEntry?: string;
|
|
18764
18945
|
render?: 'default' | 'native';
|
|
18765
18946
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18766
18947
|
[k: string]: unknown;
|
|
@@ -18792,6 +18973,7 @@ export interface Modules {
|
|
|
18792
18973
|
target:
|
|
18793
18974
|
| {
|
|
18794
18975
|
resource: string;
|
|
18976
|
+
resolvedResourceEntry?: string;
|
|
18795
18977
|
render?: 'default' | 'native';
|
|
18796
18978
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
18797
18979
|
[k: string]: unknown;
|
|
@@ -18815,6 +18997,7 @@ export interface Modules {
|
|
|
18815
18997
|
{
|
|
18816
18998
|
icon?: string;
|
|
18817
18999
|
resource: string;
|
|
19000
|
+
resolvedResourceEntry?: string;
|
|
18818
19001
|
title:
|
|
18819
19002
|
| string
|
|
18820
19003
|
| {
|
|
@@ -18864,6 +19047,7 @@ export interface Modules {
|
|
|
18864
19047
|
...{
|
|
18865
19048
|
icon?: string;
|
|
18866
19049
|
resource: string;
|
|
19050
|
+
resolvedResourceEntry?: string;
|
|
18867
19051
|
title:
|
|
18868
19052
|
| string
|
|
18869
19053
|
| {
|
|
@@ -18915,6 +19099,7 @@ export interface Modules {
|
|
|
18915
19099
|
{
|
|
18916
19100
|
icon?: string;
|
|
18917
19101
|
resource: string;
|
|
19102
|
+
resolvedResourceEntry?: string;
|
|
18918
19103
|
title:
|
|
18919
19104
|
| string
|
|
18920
19105
|
| {
|
|
@@ -18964,6 +19149,7 @@ export interface Modules {
|
|
|
18964
19149
|
...{
|
|
18965
19150
|
icon?: string;
|
|
18966
19151
|
resource: string;
|
|
19152
|
+
resolvedResourceEntry?: string;
|
|
18967
19153
|
title:
|
|
18968
19154
|
| string
|
|
18969
19155
|
| {
|
|
@@ -19041,12 +19227,14 @@ export interface Modules {
|
|
|
19041
19227
|
{
|
|
19042
19228
|
target?: {
|
|
19043
19229
|
resource: string;
|
|
19230
|
+
resolvedResourceEntry?: string;
|
|
19044
19231
|
render?: 'default' | 'native';
|
|
19045
19232
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
19046
19233
|
[k: string]: unknown;
|
|
19047
19234
|
};
|
|
19048
19235
|
experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
|
|
19049
19236
|
resource: string;
|
|
19237
|
+
resolvedResourceEntry?: string;
|
|
19050
19238
|
resolver?:
|
|
19051
19239
|
| {
|
|
19052
19240
|
function: string;
|
|
@@ -19065,12 +19253,14 @@ export interface Modules {
|
|
|
19065
19253
|
...{
|
|
19066
19254
|
target?: {
|
|
19067
19255
|
resource: string;
|
|
19256
|
+
resolvedResourceEntry?: string;
|
|
19068
19257
|
render?: 'default' | 'native';
|
|
19069
19258
|
renderRuntimeType?: 'iframe' | 'webworker';
|
|
19070
19259
|
[k: string]: unknown;
|
|
19071
19260
|
};
|
|
19072
19261
|
experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
|
|
19073
19262
|
resource: string;
|
|
19263
|
+
resolvedResourceEntry?: string;
|
|
19074
19264
|
resolver?:
|
|
19075
19265
|
| {
|
|
19076
19266
|
function: string;
|
|
@@ -19425,6 +19615,7 @@ export interface Modules {
|
|
|
19425
19615
|
endpoint: string;
|
|
19426
19616
|
};
|
|
19427
19617
|
resource: string;
|
|
19618
|
+
resolvedResourceEntry?: string;
|
|
19428
19619
|
resourceUploadId?: string;
|
|
19429
19620
|
render?: 'native' | 'default';
|
|
19430
19621
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19463,6 +19654,7 @@ export interface Modules {
|
|
|
19463
19654
|
endpoint: string;
|
|
19464
19655
|
};
|
|
19465
19656
|
resource: string;
|
|
19657
|
+
resolvedResourceEntry?: string;
|
|
19466
19658
|
resourceUploadId?: string;
|
|
19467
19659
|
render?: 'native' | 'default';
|
|
19468
19660
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19507,6 +19699,7 @@ export interface Modules {
|
|
|
19507
19699
|
endpoint: string;
|
|
19508
19700
|
};
|
|
19509
19701
|
resource: string;
|
|
19702
|
+
resolvedResourceEntry?: string;
|
|
19510
19703
|
resourceUploadId?: string;
|
|
19511
19704
|
render?: 'native' | 'default';
|
|
19512
19705
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19552,6 +19745,7 @@ export interface Modules {
|
|
|
19552
19745
|
endpoint: string;
|
|
19553
19746
|
};
|
|
19554
19747
|
resource: string;
|
|
19748
|
+
resolvedResourceEntry?: string;
|
|
19555
19749
|
resourceUploadId?: string;
|
|
19556
19750
|
render?: 'native' | 'default';
|
|
19557
19751
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19599,6 +19793,7 @@ export interface Modules {
|
|
|
19599
19793
|
endpoint: string;
|
|
19600
19794
|
};
|
|
19601
19795
|
resource: string;
|
|
19796
|
+
resolvedResourceEntry?: string;
|
|
19602
19797
|
resourceUploadId?: string;
|
|
19603
19798
|
render?: 'native' | 'default';
|
|
19604
19799
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19644,6 +19839,7 @@ export interface Modules {
|
|
|
19644
19839
|
endpoint: string;
|
|
19645
19840
|
};
|
|
19646
19841
|
resource: string;
|
|
19842
|
+
resolvedResourceEntry?: string;
|
|
19647
19843
|
resourceUploadId?: string;
|
|
19648
19844
|
render?: 'native' | 'default';
|
|
19649
19845
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19688,6 +19884,7 @@ export interface Modules {
|
|
|
19688
19884
|
endpoint: string;
|
|
19689
19885
|
};
|
|
19690
19886
|
resource: string;
|
|
19887
|
+
resolvedResourceEntry?: string;
|
|
19691
19888
|
resourceUploadId?: string;
|
|
19692
19889
|
render?: 'native' | 'default';
|
|
19693
19890
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19727,6 +19924,7 @@ export interface Modules {
|
|
|
19727
19924
|
endpoint: string;
|
|
19728
19925
|
};
|
|
19729
19926
|
resource: string;
|
|
19927
|
+
resolvedResourceEntry?: string;
|
|
19730
19928
|
resourceUploadId?: string;
|
|
19731
19929
|
render?: 'native' | 'default';
|
|
19732
19930
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19775,6 +19973,7 @@ export interface Modules {
|
|
|
19775
19973
|
endpoint: string;
|
|
19776
19974
|
};
|
|
19777
19975
|
resource: string;
|
|
19976
|
+
resolvedResourceEntry?: string;
|
|
19778
19977
|
resourceUploadId?: string;
|
|
19779
19978
|
render?: 'native' | 'default';
|
|
19780
19979
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19824,6 +20023,7 @@ export interface Modules {
|
|
|
19824
20023
|
endpoint: string;
|
|
19825
20024
|
};
|
|
19826
20025
|
resource: string;
|
|
20026
|
+
resolvedResourceEntry?: string;
|
|
19827
20027
|
resourceUploadId?: string;
|
|
19828
20028
|
render?: 'native' | 'default';
|
|
19829
20029
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19874,6 +20074,7 @@ export interface Modules {
|
|
|
19874
20074
|
endpoint: string;
|
|
19875
20075
|
};
|
|
19876
20076
|
resource: string;
|
|
20077
|
+
resolvedResourceEntry?: string;
|
|
19877
20078
|
resourceUploadId?: string;
|
|
19878
20079
|
render?: 'native' | 'default';
|
|
19879
20080
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19922,6 +20123,7 @@ export interface Modules {
|
|
|
19922
20123
|
endpoint: string;
|
|
19923
20124
|
};
|
|
19924
20125
|
resource: string;
|
|
20126
|
+
resolvedResourceEntry?: string;
|
|
19925
20127
|
resourceUploadId?: string;
|
|
19926
20128
|
render?: 'native' | 'default';
|
|
19927
20129
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -19972,6 +20174,7 @@ export interface Modules {
|
|
|
19972
20174
|
endpoint: string;
|
|
19973
20175
|
};
|
|
19974
20176
|
resource: string;
|
|
20177
|
+
resolvedResourceEntry?: string;
|
|
19975
20178
|
resourceUploadId?: string;
|
|
19976
20179
|
render?: 'native' | 'default';
|
|
19977
20180
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20020,6 +20223,7 @@ export interface Modules {
|
|
|
20020
20223
|
endpoint: string;
|
|
20021
20224
|
};
|
|
20022
20225
|
resource: string;
|
|
20226
|
+
resolvedResourceEntry?: string;
|
|
20023
20227
|
resourceUploadId?: string;
|
|
20024
20228
|
render?: 'native' | 'default';
|
|
20025
20229
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20067,6 +20271,7 @@ export interface Modules {
|
|
|
20067
20271
|
endpoint: string;
|
|
20068
20272
|
};
|
|
20069
20273
|
resource: string;
|
|
20274
|
+
resolvedResourceEntry?: string;
|
|
20070
20275
|
resourceUploadId?: string;
|
|
20071
20276
|
render?: 'native' | 'default';
|
|
20072
20277
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20112,6 +20317,7 @@ export interface Modules {
|
|
|
20112
20317
|
endpoint: string;
|
|
20113
20318
|
};
|
|
20114
20319
|
resource: string;
|
|
20320
|
+
resolvedResourceEntry?: string;
|
|
20115
20321
|
resourceUploadId?: string;
|
|
20116
20322
|
render?: 'native' | 'default';
|
|
20117
20323
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20154,6 +20360,7 @@ export interface Modules {
|
|
|
20154
20360
|
endpoint: string;
|
|
20155
20361
|
};
|
|
20156
20362
|
resource: string;
|
|
20363
|
+
resolvedResourceEntry?: string;
|
|
20157
20364
|
resourceUploadId?: string;
|
|
20158
20365
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20159
20366
|
displayConditions?: {
|
|
@@ -20195,6 +20402,7 @@ export interface Modules {
|
|
|
20195
20402
|
endpoint: string;
|
|
20196
20403
|
};
|
|
20197
20404
|
resource: string;
|
|
20405
|
+
resolvedResourceEntry?: string;
|
|
20198
20406
|
resourceUploadId?: string;
|
|
20199
20407
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20200
20408
|
displayConditions?: {
|
|
@@ -20238,6 +20446,7 @@ export interface Modules {
|
|
|
20238
20446
|
endpoint: string;
|
|
20239
20447
|
};
|
|
20240
20448
|
resource: string;
|
|
20449
|
+
resolvedResourceEntry?: string;
|
|
20241
20450
|
resourceUploadId?: string;
|
|
20242
20451
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20243
20452
|
render?: 'native' | 'default';
|
|
@@ -20279,6 +20488,7 @@ export interface Modules {
|
|
|
20279
20488
|
endpoint: string;
|
|
20280
20489
|
};
|
|
20281
20490
|
resource: string;
|
|
20491
|
+
resolvedResourceEntry?: string;
|
|
20282
20492
|
resourceUploadId?: string;
|
|
20283
20493
|
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
20284
20494
|
render?: 'native' | 'default';
|
|
@@ -20328,6 +20538,7 @@ export interface Modules {
|
|
|
20328
20538
|
endpoint: string;
|
|
20329
20539
|
};
|
|
20330
20540
|
resource: string;
|
|
20541
|
+
resolvedResourceEntry?: string;
|
|
20331
20542
|
resourceUploadId?: string;
|
|
20332
20543
|
render?: 'native' | 'default';
|
|
20333
20544
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20374,6 +20585,7 @@ export interface Modules {
|
|
|
20374
20585
|
endpoint: string;
|
|
20375
20586
|
};
|
|
20376
20587
|
resource: string;
|
|
20588
|
+
resolvedResourceEntry?: string;
|
|
20377
20589
|
resourceUploadId?: string;
|
|
20378
20590
|
render?: 'native' | 'default';
|
|
20379
20591
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20436,6 +20648,7 @@ export interface Modules {
|
|
|
20436
20648
|
description__i18n?: string;
|
|
20437
20649
|
icon: string;
|
|
20438
20650
|
resource: string;
|
|
20651
|
+
resolvedResourceEntry?: string;
|
|
20439
20652
|
resolver?:
|
|
20440
20653
|
| {
|
|
20441
20654
|
function: string;
|
|
@@ -20515,6 +20728,7 @@ export interface Modules {
|
|
|
20515
20728
|
description__i18n?: string;
|
|
20516
20729
|
icon: string;
|
|
20517
20730
|
resource: string;
|
|
20731
|
+
resolvedResourceEntry?: string;
|
|
20518
20732
|
resolver?:
|
|
20519
20733
|
| {
|
|
20520
20734
|
function: string;
|
|
@@ -20577,6 +20791,7 @@ export interface Modules {
|
|
|
20577
20791
|
endpoint: string;
|
|
20578
20792
|
};
|
|
20579
20793
|
resource: string;
|
|
20794
|
+
resolvedResourceEntry?: string;
|
|
20580
20795
|
resourceUploadId?: string;
|
|
20581
20796
|
render?: 'native' | 'default';
|
|
20582
20797
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20615,6 +20830,7 @@ export interface Modules {
|
|
|
20615
20830
|
endpoint: string;
|
|
20616
20831
|
};
|
|
20617
20832
|
resource: string;
|
|
20833
|
+
resolvedResourceEntry?: string;
|
|
20618
20834
|
resourceUploadId?: string;
|
|
20619
20835
|
render?: 'native' | 'default';
|
|
20620
20836
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20660,6 +20876,7 @@ export interface Modules {
|
|
|
20660
20876
|
endpoint: string;
|
|
20661
20877
|
};
|
|
20662
20878
|
resource: string;
|
|
20879
|
+
resolvedResourceEntry?: string;
|
|
20663
20880
|
resourceUploadId?: string;
|
|
20664
20881
|
render?: 'native' | 'default';
|
|
20665
20882
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -20706,6 +20923,7 @@ export interface Modules {
|
|
|
20706
20923
|
endpoint: string;
|
|
20707
20924
|
};
|
|
20708
20925
|
resource: string;
|
|
20926
|
+
resolvedResourceEntry?: string;
|
|
20709
20927
|
resourceUploadId?: string;
|
|
20710
20928
|
render?: 'native' | 'default';
|
|
20711
20929
|
renderRuntimeType?: 'webworker' | 'iframe';
|
|
@@ -24927,6 +25145,26 @@ export interface Modules {
|
|
|
24927
25145
|
key: ModuleKeySchema;
|
|
24928
25146
|
}[]
|
|
24929
25147
|
];
|
|
25148
|
+
'rovo:skill'?: [
|
|
25149
|
+
{
|
|
25150
|
+
path: string;
|
|
25151
|
+
dependencies?: {
|
|
25152
|
+
tools?: string[];
|
|
25153
|
+
[k: string]: unknown;
|
|
25154
|
+
};
|
|
25155
|
+
key: ModuleKeySchema;
|
|
25156
|
+
[k: string]: unknown;
|
|
25157
|
+
},
|
|
25158
|
+
...{
|
|
25159
|
+
path: string;
|
|
25160
|
+
dependencies?: {
|
|
25161
|
+
tools?: string[];
|
|
25162
|
+
[k: string]: unknown;
|
|
25163
|
+
};
|
|
25164
|
+
key: ModuleKeySchema;
|
|
25165
|
+
[k: string]: unknown;
|
|
25166
|
+
}[]
|
|
25167
|
+
];
|
|
24930
25168
|
'graph:smartLink'?: [
|
|
24931
25169
|
{
|
|
24932
25170
|
/**
|
|
@@ -25301,6 +25539,56 @@ export interface Modules {
|
|
|
25301
25539
|
[k: string]: unknown;
|
|
25302
25540
|
}[]
|
|
25303
25541
|
];
|
|
25542
|
+
'devops:designInfoProvider'?: [
|
|
25543
|
+
{
|
|
25544
|
+
name: {
|
|
25545
|
+
value: string;
|
|
25546
|
+
[k: string]: unknown;
|
|
25547
|
+
};
|
|
25548
|
+
homeUrl: string;
|
|
25549
|
+
logoUrl?: string;
|
|
25550
|
+
handledDomainName?: string;
|
|
25551
|
+
documentationUrl?: string;
|
|
25552
|
+
checkAuth: {
|
|
25553
|
+
endpoint: string;
|
|
25554
|
+
};
|
|
25555
|
+
getEntityByUrl: {
|
|
25556
|
+
endpoint: string;
|
|
25557
|
+
};
|
|
25558
|
+
onEntityAssociated: {
|
|
25559
|
+
endpoint: string;
|
|
25560
|
+
};
|
|
25561
|
+
onEntityDisassociated: {
|
|
25562
|
+
endpoint: string;
|
|
25563
|
+
};
|
|
25564
|
+
key: ModuleKeySchema;
|
|
25565
|
+
[k: string]: unknown;
|
|
25566
|
+
},
|
|
25567
|
+
...{
|
|
25568
|
+
name: {
|
|
25569
|
+
value: string;
|
|
25570
|
+
[k: string]: unknown;
|
|
25571
|
+
};
|
|
25572
|
+
homeUrl: string;
|
|
25573
|
+
logoUrl?: string;
|
|
25574
|
+
handledDomainName?: string;
|
|
25575
|
+
documentationUrl?: string;
|
|
25576
|
+
checkAuth: {
|
|
25577
|
+
endpoint: string;
|
|
25578
|
+
};
|
|
25579
|
+
getEntityByUrl: {
|
|
25580
|
+
endpoint: string;
|
|
25581
|
+
};
|
|
25582
|
+
onEntityAssociated: {
|
|
25583
|
+
endpoint: string;
|
|
25584
|
+
};
|
|
25585
|
+
onEntityDisassociated: {
|
|
25586
|
+
endpoint: string;
|
|
25587
|
+
};
|
|
25588
|
+
key: ModuleKeySchema;
|
|
25589
|
+
[k: string]: unknown;
|
|
25590
|
+
}[]
|
|
25591
|
+
];
|
|
25304
25592
|
'devops:featureFlagInfoProvider'?: [
|
|
25305
25593
|
{
|
|
25306
25594
|
name: {
|
|
@@ -25397,6 +25685,60 @@ export interface Modules {
|
|
|
25397
25685
|
[k: string]: unknown;
|
|
25398
25686
|
}[]
|
|
25399
25687
|
];
|
|
25688
|
+
'devops:securityInfoProvider'?: [
|
|
25689
|
+
{
|
|
25690
|
+
name: {
|
|
25691
|
+
value: string;
|
|
25692
|
+
[k: string]: unknown;
|
|
25693
|
+
};
|
|
25694
|
+
homeUrl: string;
|
|
25695
|
+
logoUrl?: string;
|
|
25696
|
+
documentationUrl?: string;
|
|
25697
|
+
fetchWorkspaces: {
|
|
25698
|
+
endpoint: string;
|
|
25699
|
+
};
|
|
25700
|
+
fetchContainers: {
|
|
25701
|
+
endpoint: string;
|
|
25702
|
+
};
|
|
25703
|
+
searchContainers: {
|
|
25704
|
+
endpoint: string;
|
|
25705
|
+
};
|
|
25706
|
+
onEntityAssociated?: {
|
|
25707
|
+
endpoint: string;
|
|
25708
|
+
};
|
|
25709
|
+
onEntityDisassociated?: {
|
|
25710
|
+
endpoint: string;
|
|
25711
|
+
};
|
|
25712
|
+
key: ModuleKeySchema;
|
|
25713
|
+
[k: string]: unknown;
|
|
25714
|
+
},
|
|
25715
|
+
...{
|
|
25716
|
+
name: {
|
|
25717
|
+
value: string;
|
|
25718
|
+
[k: string]: unknown;
|
|
25719
|
+
};
|
|
25720
|
+
homeUrl: string;
|
|
25721
|
+
logoUrl?: string;
|
|
25722
|
+
documentationUrl?: string;
|
|
25723
|
+
fetchWorkspaces: {
|
|
25724
|
+
endpoint: string;
|
|
25725
|
+
};
|
|
25726
|
+
fetchContainers: {
|
|
25727
|
+
endpoint: string;
|
|
25728
|
+
};
|
|
25729
|
+
searchContainers: {
|
|
25730
|
+
endpoint: string;
|
|
25731
|
+
};
|
|
25732
|
+
onEntityAssociated?: {
|
|
25733
|
+
endpoint: string;
|
|
25734
|
+
};
|
|
25735
|
+
onEntityDisassociated?: {
|
|
25736
|
+
endpoint: string;
|
|
25737
|
+
};
|
|
25738
|
+
key: ModuleKeySchema;
|
|
25739
|
+
[k: string]: unknown;
|
|
25740
|
+
}[]
|
|
25741
|
+
];
|
|
25400
25742
|
'devops:remoteLinkInfoProvider'?: [
|
|
25401
25743
|
{
|
|
25402
25744
|
name: {
|
|
@@ -25431,6 +25773,7 @@ export interface Modules {
|
|
|
25431
25773
|
title__i18n?: string;
|
|
25432
25774
|
icon?: string;
|
|
25433
25775
|
resource: string;
|
|
25776
|
+
resolvedResourceEntry?: string;
|
|
25434
25777
|
resourceUploadId?: string;
|
|
25435
25778
|
resolver?:
|
|
25436
25779
|
| {
|
|
@@ -25452,6 +25795,7 @@ export interface Modules {
|
|
|
25452
25795
|
title__i18n?: string;
|
|
25453
25796
|
icon?: string;
|
|
25454
25797
|
resource: string;
|
|
25798
|
+
resolvedResourceEntry?: string;
|
|
25455
25799
|
resourceUploadId?: string;
|
|
25456
25800
|
resolver?:
|
|
25457
25801
|
| {
|