@forge/manifest 12.7.1-next.0 → 12.8.0-next.10

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +69 -0
  2. package/out/processor/full-validation-processor.d.ts.map +1 -1
  3. package/out/processor/full-validation-processor.js +1 -0
  4. package/out/schema/manifest-schema.json +1187 -203
  5. package/out/schema/manifest.d.ts +365 -2
  6. package/out/text/errors.d.ts +12 -0
  7. package/out/text/errors.d.ts.map +1 -1
  8. package/out/text/errors.js +14 -2
  9. package/out/types/module-types.d.ts +3 -0
  10. package/out/types/module-types.d.ts.map +1 -1
  11. package/out/types/module-types.js +3 -0
  12. package/out/utils/module-references.d.ts +6 -0
  13. package/out/utils/module-references.d.ts.map +1 -1
  14. package/out/utils/module-references.js +32 -2
  15. package/out/validators/index.d.ts +1 -0
  16. package/out/validators/index.d.ts.map +1 -1
  17. package/out/validators/index.js +1 -0
  18. package/out/validators/internal-fields-validator.d.ts +8 -0
  19. package/out/validators/internal-fields-validator.d.ts.map +1 -0
  20. package/out/validators/internal-fields-validator.js +44 -0
  21. package/out/validators/modules-validators/rovo/index.d.ts.map +1 -1
  22. package/out/validators/modules-validators/rovo/index.js +2 -0
  23. package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.d.ts +4 -0
  24. package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.d.ts.map +1 -0
  25. package/out/validators/modules-validators/rovo/validate-rovo-skill-actions.js +29 -0
  26. package/out/validators/modules-validators/rovo/validate-unreferenced-actions.js +6 -0
  27. package/out/validators/resources-validator.d.ts +4 -0
  28. package/out/validators/resources-validator.d.ts.map +1 -1
  29. package/out/validators/resources-validator.js +158 -9
  30. package/package.json +1 -1
@@ -802,6 +802,21 @@ export type Services = {
802
802
  scaling?: Scaling;
803
803
  tunnel?: ServiceTunnelConfig;
804
804
  }[];
805
+ export type OverriddenServices = {
806
+ key: string;
807
+ containers: Containers;
808
+ scaling?: Scaling;
809
+ tunnel?: ServiceTunnelConfig;
810
+ }[];
811
+ export type ManifestOverrides = {
812
+ applyTo: {
813
+ environmentTypes?: ['DEVELOPMENT' | 'STAGING' | 'PRODUCTION', ...('DEVELOPMENT' | 'STAGING' | 'PRODUCTION')[]];
814
+ shards?: [string, ...string[]];
815
+ };
816
+ value: {
817
+ services?: OverriddenServices;
818
+ };
819
+ }[];
805
820
 
806
821
  export interface ManifestSchema {
807
822
  app: App;
@@ -814,6 +829,7 @@ export interface ManifestSchema {
814
829
  environment?: Environment;
815
830
  translations?: Translations;
816
831
  services?: Services;
832
+ overrides?: ManifestOverrides;
817
833
  }
818
834
  export interface App {
819
835
  description?: Description;
@@ -1836,6 +1852,7 @@ export interface Modules {
1836
1852
  icon?: string;
1837
1853
  config?: {
1838
1854
  resource?: string;
1855
+ resolvedResourceEntry?: string;
1839
1856
  render?: 'default' | 'native';
1840
1857
  renderRuntimeType?: 'iframe' | 'webworker';
1841
1858
  };
@@ -1867,6 +1884,7 @@ export interface Modules {
1867
1884
  icon?: string;
1868
1885
  config?: {
1869
1886
  resource?: string;
1887
+ resolvedResourceEntry?: string;
1870
1888
  render?: 'default' | 'native';
1871
1889
  renderRuntimeType?: 'iframe' | 'webworker';
1872
1890
  };
@@ -1894,6 +1912,7 @@ export interface Modules {
1894
1912
  | {
1895
1913
  config?: {
1896
1914
  resource?: string;
1915
+ resolvedResourceEntry?: string;
1897
1916
  render?: 'default' | 'native';
1898
1917
  renderRuntimeType?: 'iframe' | 'webworker';
1899
1918
  };
@@ -1952,6 +1971,7 @@ export interface Modules {
1952
1971
  icon?: string;
1953
1972
  config?: {
1954
1973
  resource?: string;
1974
+ resolvedResourceEntry?: string;
1955
1975
  render?: 'default' | 'native';
1956
1976
  renderRuntimeType?: 'iframe' | 'webworker';
1957
1977
  };
@@ -1983,6 +2003,7 @@ export interface Modules {
1983
2003
  icon?: string;
1984
2004
  config?: {
1985
2005
  resource?: string;
2006
+ resolvedResourceEntry?: string;
1986
2007
  render?: 'default' | 'native';
1987
2008
  renderRuntimeType?: 'iframe' | 'webworker';
1988
2009
  };
@@ -2010,6 +2031,7 @@ export interface Modules {
2010
2031
  | {
2011
2032
  config?: {
2012
2033
  resource?: string;
2034
+ resolvedResourceEntry?: string;
2013
2035
  render?: 'default' | 'native';
2014
2036
  renderRuntimeType?: 'iframe' | 'webworker';
2015
2037
  };
@@ -12521,6 +12543,7 @@ export interface Modules {
12521
12543
  endpoint: string;
12522
12544
  };
12523
12545
  resource: string;
12546
+ resolvedResourceEntry?: string;
12524
12547
  resourceUploadId?: string;
12525
12548
  description?:
12526
12549
  | {
@@ -12537,7 +12560,15 @@ export interface Modules {
12537
12560
  config?:
12538
12561
  | boolean
12539
12562
  | {
12540
- openOnInsert: boolean;
12563
+ openOnInsert?: boolean;
12564
+ parameters?: {
12565
+ /**
12566
+ * A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
12567
+ *
12568
+ */
12569
+ identifier: string;
12570
+ type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
12571
+ }[];
12541
12572
  }
12542
12573
  | {
12543
12574
  function?: string;
@@ -12555,6 +12586,14 @@ export interface Modules {
12555
12586
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
12556
12587
  openOnInsert?: boolean;
12557
12588
  icon?: string;
12589
+ parameters?: {
12590
+ /**
12591
+ * A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
12592
+ *
12593
+ */
12594
+ identifier: string;
12595
+ type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
12596
+ }[];
12558
12597
  };
12559
12598
  autoConvert?: {
12560
12599
  matchers: [
@@ -12637,6 +12676,7 @@ export interface Modules {
12637
12676
  endpoint: string;
12638
12677
  };
12639
12678
  resource: string;
12679
+ resolvedResourceEntry?: string;
12640
12680
  resourceUploadId?: string;
12641
12681
  description?:
12642
12682
  | {
@@ -12653,7 +12693,15 @@ export interface Modules {
12653
12693
  config?:
12654
12694
  | boolean
12655
12695
  | {
12656
- openOnInsert: boolean;
12696
+ openOnInsert?: boolean;
12697
+ parameters?: {
12698
+ /**
12699
+ * A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
12700
+ *
12701
+ */
12702
+ identifier: string;
12703
+ type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
12704
+ }[];
12657
12705
  }
12658
12706
  | {
12659
12707
  function?: string;
@@ -12671,6 +12719,14 @@ export interface Modules {
12671
12719
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max' | 'fullscreen';
12672
12720
  openOnInsert?: boolean;
12673
12721
  icon?: string;
12722
+ parameters?: {
12723
+ /**
12724
+ * A unique identifier for the parameter. Must start with a lowercase letter and contain only lowercase alphanumeric characters, dashes, and underscores.
12725
+ *
12726
+ */
12727
+ identifier: string;
12728
+ type: 'string' | 'confluence-content' | 'attachment' | 'spacekey';
12729
+ }[];
12674
12730
  };
12675
12731
  autoConvert?: {
12676
12732
  matchers: [
@@ -12853,6 +12909,7 @@ export interface Modules {
12853
12909
  endpoint: string;
12854
12910
  };
12855
12911
  resource: string;
12912
+ resolvedResourceEntry?: string;
12856
12913
  resourceUploadId?: string;
12857
12914
  viewportSize?: 'small' | 'medium' | 'large';
12858
12915
  displayConditions?: {
@@ -12920,6 +12977,7 @@ export interface Modules {
12920
12977
  endpoint: string;
12921
12978
  };
12922
12979
  resource: string;
12980
+ resolvedResourceEntry?: string;
12923
12981
  resourceUploadId?: string;
12924
12982
  viewportSize?: 'small' | 'medium' | 'large';
12925
12983
  displayConditions?: {
@@ -12989,6 +13047,7 @@ export interface Modules {
12989
13047
  endpoint: string;
12990
13048
  };
12991
13049
  resource: string;
13050
+ resolvedResourceEntry?: string;
12992
13051
  resourceUploadId?: string;
12993
13052
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
12994
13053
  displayConditions?: {
@@ -13056,6 +13115,7 @@ export interface Modules {
13056
13115
  endpoint: string;
13057
13116
  };
13058
13117
  resource: string;
13118
+ resolvedResourceEntry?: string;
13059
13119
  resourceUploadId?: string;
13060
13120
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
13061
13121
  displayConditions?: {
@@ -13157,6 +13217,7 @@ export interface Modules {
13157
13217
  };
13158
13218
  contentPropertyKey?: string;
13159
13219
  resource: string;
13220
+ resolvedResourceEntry?: string;
13160
13221
  resourceUploadId?: string;
13161
13222
  viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
13162
13223
  viewportContainer?: 'popup' | 'modal';
@@ -13256,6 +13317,7 @@ export interface Modules {
13256
13317
  };
13257
13318
  contentPropertyKey?: string;
13258
13319
  resource: string;
13320
+ resolvedResourceEntry?: string;
13259
13321
  resourceUploadId?: string;
13260
13322
  viewportSize?: 'small' | 'medium' | 'large' | 'fullscreen';
13261
13323
  viewportContainer?: 'popup' | 'modal';
@@ -13324,6 +13386,7 @@ export interface Modules {
13324
13386
  endpoint: string;
13325
13387
  };
13326
13388
  resource: string;
13389
+ resolvedResourceEntry?: string;
13327
13390
  resourceUploadId?: string;
13328
13391
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
13329
13392
  displayConditions?: {
@@ -13389,6 +13452,7 @@ export interface Modules {
13389
13452
  endpoint: string;
13390
13453
  };
13391
13454
  resource: string;
13455
+ resolvedResourceEntry?: string;
13392
13456
  resourceUploadId?: string;
13393
13457
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
13394
13458
  displayConditions?: {
@@ -13461,6 +13525,7 @@ export interface Modules {
13461
13525
  endpoint: string;
13462
13526
  };
13463
13527
  resource: string;
13528
+ resolvedResourceEntry?: string;
13464
13529
  resourceUploadId?: string;
13465
13530
  displayConditions?: {
13466
13531
  [k: string]: unknown;
@@ -13531,6 +13596,7 @@ export interface Modules {
13531
13596
  endpoint: string;
13532
13597
  };
13533
13598
  resource: string;
13599
+ resolvedResourceEntry?: string;
13534
13600
  resourceUploadId?: string;
13535
13601
  displayConditions?: {
13536
13602
  [k: string]: unknown;
@@ -13600,6 +13666,7 @@ export interface Modules {
13600
13666
  endpoint: string;
13601
13667
  };
13602
13668
  resource: string;
13669
+ resolvedResourceEntry?: string;
13603
13670
  resourceUploadId?: string;
13604
13671
  displayConditions?: {
13605
13672
  [k: string]: unknown;
@@ -13666,6 +13733,7 @@ export interface Modules {
13666
13733
  endpoint: string;
13667
13734
  };
13668
13735
  resource: string;
13736
+ resolvedResourceEntry?: string;
13669
13737
  resourceUploadId?: string;
13670
13738
  displayConditions?: {
13671
13739
  [k: string]: unknown;
@@ -13740,6 +13808,7 @@ export interface Modules {
13740
13808
  endpoint: string;
13741
13809
  };
13742
13810
  resource: string;
13811
+ resolvedResourceEntry?: string;
13743
13812
  resourceUploadId?: string;
13744
13813
  displayConditions?: {
13745
13814
  [k: string]: unknown;
@@ -13820,6 +13889,7 @@ export interface Modules {
13820
13889
  endpoint: string;
13821
13890
  };
13822
13891
  resource: string;
13892
+ resolvedResourceEntry?: string;
13823
13893
  resourceUploadId?: string;
13824
13894
  displayConditions?: {
13825
13895
  [k: string]: unknown;
@@ -13898,6 +13968,7 @@ export interface Modules {
13898
13968
  endpoint: string;
13899
13969
  };
13900
13970
  resource: string;
13971
+ resolvedResourceEntry?: string;
13901
13972
  resourceUploadId?: string;
13902
13973
  displayConditions?: {
13903
13974
  [k: string]: unknown;
@@ -13966,6 +14037,7 @@ export interface Modules {
13966
14037
  endpoint: string;
13967
14038
  };
13968
14039
  resource: string;
14040
+ resolvedResourceEntry?: string;
13969
14041
  resourceUploadId?: string;
13970
14042
  displayConditions?: {
13971
14043
  [k: string]: unknown;
@@ -14001,6 +14073,7 @@ export interface Modules {
14001
14073
  routePrefix: string;
14002
14074
  icon?: string;
14003
14075
  resource: string;
14076
+ resolvedResourceEntry?: string;
14004
14077
  resourceUploadId?: string;
14005
14078
  resolver?:
14006
14079
  | {
@@ -14027,6 +14100,7 @@ export interface Modules {
14027
14100
  endpoint: string;
14028
14101
  };
14029
14102
  resource: string;
14103
+ resolvedResourceEntry?: string;
14030
14104
  resourceUploadId?: string;
14031
14105
  render: 'native' | 'default';
14032
14106
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -14047,6 +14121,7 @@ export interface Modules {
14047
14121
  routePrefix: string;
14048
14122
  icon?: string;
14049
14123
  resource: string;
14124
+ resolvedResourceEntry?: string;
14050
14125
  resourceUploadId?: string;
14051
14126
  resolver?:
14052
14127
  | {
@@ -14073,6 +14148,7 @@ export interface Modules {
14073
14148
  endpoint: string;
14074
14149
  };
14075
14150
  resource: string;
14151
+ resolvedResourceEntry?: string;
14076
14152
  resourceUploadId?: string;
14077
14153
  render: 'native' | 'default';
14078
14154
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -14133,6 +14209,7 @@ export interface Modules {
14133
14209
  function: string;
14134
14210
  };
14135
14211
  resource: string;
14212
+ resolvedResourceEntry?: string;
14136
14213
  resourceUploadId?: string;
14137
14214
  render?: 'native' | 'default';
14138
14215
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -14193,6 +14270,7 @@ export interface Modules {
14193
14270
  function: string;
14194
14271
  };
14195
14272
  resource: string;
14273
+ resolvedResourceEntry?: string;
14196
14274
  resourceUploadId?: string;
14197
14275
  render?: 'native' | 'default';
14198
14276
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -14232,6 +14310,7 @@ export interface Modules {
14232
14310
  endpoint: string;
14233
14311
  };
14234
14312
  resource: string;
14313
+ resolvedResourceEntry?: string;
14235
14314
  render?: 'native' | 'default';
14236
14315
  renderRuntimeType?: 'webworker' | 'iframe';
14237
14316
  displayConditions?: {
@@ -14268,6 +14347,7 @@ export interface Modules {
14268
14347
  endpoint: string;
14269
14348
  };
14270
14349
  resource: string;
14350
+ resolvedResourceEntry?: string;
14271
14351
  render?: 'native' | 'default';
14272
14352
  renderRuntimeType?: 'webworker' | 'iframe';
14273
14353
  displayConditions?: {
@@ -14306,6 +14386,7 @@ export interface Modules {
14306
14386
  endpoint: string;
14307
14387
  };
14308
14388
  resource: string;
14389
+ resolvedResourceEntry?: string;
14309
14390
  render?: 'native' | 'default';
14310
14391
  renderRuntimeType?: 'webworker' | 'iframe';
14311
14392
  displayConditions?: {
@@ -14342,6 +14423,7 @@ export interface Modules {
14342
14423
  endpoint: string;
14343
14424
  };
14344
14425
  resource: string;
14426
+ resolvedResourceEntry?: string;
14345
14427
  render?: 'native' | 'default';
14346
14428
  renderRuntimeType?: 'webworker' | 'iframe';
14347
14429
  displayConditions?: {
@@ -14446,18 +14528,21 @@ export interface Modules {
14446
14528
  };
14447
14529
  view?: {
14448
14530
  resource: string;
14531
+ resolvedResourceEntry?: string;
14449
14532
  render?: 'default' | 'native';
14450
14533
  renderRuntimeType?: 'iframe' | 'webworker';
14451
14534
  [k: string]: unknown;
14452
14535
  };
14453
14536
  edit?: {
14454
14537
  resource: string;
14538
+ resolvedResourceEntry?: string;
14455
14539
  render?: 'default' | 'native';
14456
14540
  renderRuntimeType?: 'iframe' | 'webworker';
14457
14541
  [k: string]: unknown;
14458
14542
  };
14459
14543
  create?: {
14460
14544
  resource: string;
14545
+ resolvedResourceEntry?: string;
14461
14546
  render?: 'default' | 'native';
14462
14547
  renderRuntimeType?: 'iframe' | 'webworker';
14463
14548
  [k: string]: unknown;
@@ -14500,18 +14585,21 @@ export interface Modules {
14500
14585
  };
14501
14586
  view?: {
14502
14587
  resource: string;
14588
+ resolvedResourceEntry?: string;
14503
14589
  render?: 'default' | 'native';
14504
14590
  renderRuntimeType?: 'iframe' | 'webworker';
14505
14591
  [k: string]: unknown;
14506
14592
  };
14507
14593
  edit?: {
14508
14594
  resource: string;
14595
+ resolvedResourceEntry?: string;
14509
14596
  render?: 'default' | 'native';
14510
14597
  renderRuntimeType?: 'iframe' | 'webworker';
14511
14598
  [k: string]: unknown;
14512
14599
  };
14513
14600
  create?: {
14514
14601
  resource: string;
14602
+ resolvedResourceEntry?: string;
14515
14603
  render?: 'default' | 'native';
14516
14604
  renderRuntimeType?: 'iframe' | 'webworker';
14517
14605
  [k: string]: unknown;
@@ -14552,6 +14640,7 @@ export interface Modules {
14552
14640
  | {
14553
14641
  view?: {
14554
14642
  resource?: string;
14643
+ resolvedResourceEntry?: string;
14555
14644
  render?: 'default' | 'native';
14556
14645
  renderRuntimeType?: 'iframe' | 'webworker';
14557
14646
  formatter?: {
@@ -14607,6 +14696,7 @@ export interface Modules {
14607
14696
  }
14608
14697
  | ({
14609
14698
  resource: string;
14699
+ resolvedResourceEntry?: string;
14610
14700
  render?: 'default' | 'native';
14611
14701
  renderRuntimeType?: 'iframe' | 'webworker';
14612
14702
  [k: string]: unknown;
@@ -14616,6 +14706,7 @@ export interface Modules {
14616
14706
  })
14617
14707
  | {
14618
14708
  resource?: string;
14709
+ resolvedResourceEntry?: string;
14619
14710
  render?: 'default' | 'native';
14620
14711
  renderRuntimeType?: 'iframe' | 'webworker';
14621
14712
  validation?: {
@@ -14651,6 +14742,7 @@ export interface Modules {
14651
14742
  };
14652
14743
  function?: string;
14653
14744
  resource?: string;
14745
+ resolvedResourceEntry?: string;
14654
14746
  render?: 'default' | 'native';
14655
14747
  renderRuntimeType?: 'iframe' | 'webworker';
14656
14748
  parser?: {
@@ -14674,6 +14766,7 @@ export interface Modules {
14674
14766
  | {
14675
14767
  view: {
14676
14768
  resource?: string;
14769
+ resolvedResourceEntry?: string;
14677
14770
  render?: 'default' | 'native';
14678
14771
  renderRuntimeType?: 'iframe' | 'webworker';
14679
14772
  formatter: {
@@ -14732,6 +14825,7 @@ export interface Modules {
14732
14825
  }
14733
14826
  | ({
14734
14827
  resource: string;
14828
+ resolvedResourceEntry?: string;
14735
14829
  render?: 'default' | 'native';
14736
14830
  renderRuntimeType?: 'iframe' | 'webworker';
14737
14831
  [k: string]: unknown;
@@ -14741,6 +14835,7 @@ export interface Modules {
14741
14835
  })
14742
14836
  | {
14743
14837
  resource?: string;
14838
+ resolvedResourceEntry?: string;
14744
14839
  render?: 'default' | 'native';
14745
14840
  renderRuntimeType?: 'iframe' | 'webworker';
14746
14841
  validation?: {
@@ -14776,6 +14871,7 @@ export interface Modules {
14776
14871
  };
14777
14872
  function?: string;
14778
14873
  resource?: string;
14874
+ resolvedResourceEntry?: string;
14779
14875
  render?: 'default' | 'native';
14780
14876
  renderRuntimeType?: 'iframe' | 'webworker';
14781
14877
  parser?: {
@@ -14846,6 +14942,7 @@ export interface Modules {
14846
14942
  }
14847
14943
  | ({
14848
14944
  resource: string;
14945
+ resolvedResourceEntry?: string;
14849
14946
  render?: 'default' | 'native';
14850
14947
  renderRuntimeType?: 'iframe' | 'webworker';
14851
14948
  [k: string]: unknown;
@@ -14855,6 +14952,7 @@ export interface Modules {
14855
14952
  })
14856
14953
  | {
14857
14954
  resource?: string;
14955
+ resolvedResourceEntry?: string;
14858
14956
  render?: 'default' | 'native';
14859
14957
  renderRuntimeType?: 'iframe' | 'webworker';
14860
14958
  validation?: {
@@ -14890,6 +14988,7 @@ export interface Modules {
14890
14988
  };
14891
14989
  function?: string;
14892
14990
  resource?: string;
14991
+ resolvedResourceEntry?: string;
14893
14992
  render?: 'default' | 'native';
14894
14993
  renderRuntimeType?: 'iframe' | 'webworker';
14895
14994
  parser?: {
@@ -14915,6 +15014,7 @@ export interface Modules {
14915
15014
  | {
14916
15015
  view?: {
14917
15016
  resource?: string;
15017
+ resolvedResourceEntry?: string;
14918
15018
  render?: 'default' | 'native';
14919
15019
  renderRuntimeType?: 'iframe' | 'webworker';
14920
15020
  formatter?: {
@@ -14970,6 +15070,7 @@ export interface Modules {
14970
15070
  }
14971
15071
  | ({
14972
15072
  resource: string;
15073
+ resolvedResourceEntry?: string;
14973
15074
  render?: 'default' | 'native';
14974
15075
  renderRuntimeType?: 'iframe' | 'webworker';
14975
15076
  [k: string]: unknown;
@@ -14979,6 +15080,7 @@ export interface Modules {
14979
15080
  })
14980
15081
  | {
14981
15082
  resource?: string;
15083
+ resolvedResourceEntry?: string;
14982
15084
  render?: 'default' | 'native';
14983
15085
  renderRuntimeType?: 'iframe' | 'webworker';
14984
15086
  validation?: {
@@ -15014,6 +15116,7 @@ export interface Modules {
15014
15116
  };
15015
15117
  function?: string;
15016
15118
  resource?: string;
15119
+ resolvedResourceEntry?: string;
15017
15120
  render?: 'default' | 'native';
15018
15121
  renderRuntimeType?: 'iframe' | 'webworker';
15019
15122
  parser?: {
@@ -15037,6 +15140,7 @@ export interface Modules {
15037
15140
  | {
15038
15141
  view: {
15039
15142
  resource?: string;
15143
+ resolvedResourceEntry?: string;
15040
15144
  render?: 'default' | 'native';
15041
15145
  renderRuntimeType?: 'iframe' | 'webworker';
15042
15146
  formatter: {
@@ -15095,6 +15199,7 @@ export interface Modules {
15095
15199
  }
15096
15200
  | ({
15097
15201
  resource: string;
15202
+ resolvedResourceEntry?: string;
15098
15203
  render?: 'default' | 'native';
15099
15204
  renderRuntimeType?: 'iframe' | 'webworker';
15100
15205
  [k: string]: unknown;
@@ -15104,6 +15209,7 @@ export interface Modules {
15104
15209
  })
15105
15210
  | {
15106
15211
  resource?: string;
15212
+ resolvedResourceEntry?: string;
15107
15213
  render?: 'default' | 'native';
15108
15214
  renderRuntimeType?: 'iframe' | 'webworker';
15109
15215
  validation?: {
@@ -15139,6 +15245,7 @@ export interface Modules {
15139
15245
  };
15140
15246
  function?: string;
15141
15247
  resource?: string;
15248
+ resolvedResourceEntry?: string;
15142
15249
  render?: 'default' | 'native';
15143
15250
  renderRuntimeType?: 'iframe' | 'webworker';
15144
15251
  parser?: {
@@ -15209,6 +15316,7 @@ export interface Modules {
15209
15316
  }
15210
15317
  | ({
15211
15318
  resource: string;
15319
+ resolvedResourceEntry?: string;
15212
15320
  render?: 'default' | 'native';
15213
15321
  renderRuntimeType?: 'iframe' | 'webworker';
15214
15322
  [k: string]: unknown;
@@ -15218,6 +15326,7 @@ export interface Modules {
15218
15326
  })
15219
15327
  | {
15220
15328
  resource?: string;
15329
+ resolvedResourceEntry?: string;
15221
15330
  render?: 'default' | 'native';
15222
15331
  renderRuntimeType?: 'iframe' | 'webworker';
15223
15332
  validation?: {
@@ -15253,6 +15362,7 @@ export interface Modules {
15253
15362
  };
15254
15363
  function?: string;
15255
15364
  resource?: string;
15365
+ resolvedResourceEntry?: string;
15256
15366
  render?: 'default' | 'native';
15257
15367
  renderRuntimeType?: 'iframe' | 'webworker';
15258
15368
  parser?: {
@@ -15280,6 +15390,7 @@ export interface Modules {
15280
15390
  | {
15281
15391
  view?: {
15282
15392
  resource?: string;
15393
+ resolvedResourceEntry?: string;
15283
15394
  render?: 'default' | 'native';
15284
15395
  renderRuntimeType?: 'iframe' | 'webworker';
15285
15396
  formatter?: {
@@ -15328,6 +15439,7 @@ export interface Modules {
15328
15439
  }
15329
15440
  | ({
15330
15441
  resource: string;
15442
+ resolvedResourceEntry?: string;
15331
15443
  render?: 'default' | 'native';
15332
15444
  renderRuntimeType?: 'iframe' | 'webworker';
15333
15445
  [k: string]: unknown;
@@ -15337,6 +15449,7 @@ export interface Modules {
15337
15449
  })
15338
15450
  | {
15339
15451
  resource?: string;
15452
+ resolvedResourceEntry?: string;
15340
15453
  render?: 'default' | 'native';
15341
15454
  renderRuntimeType?: 'iframe' | 'webworker';
15342
15455
  validation?: {
@@ -15386,6 +15499,7 @@ export interface Modules {
15386
15499
  }
15387
15500
  | {
15388
15501
  resource: string;
15502
+ resolvedResourceEntry?: string;
15389
15503
  layout?: 'basic' | 'blank' | 'native';
15390
15504
  render?: 'default' | 'native';
15391
15505
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -15393,6 +15507,7 @@ export interface Modules {
15393
15507
  }
15394
15508
  | ({
15395
15509
  resource: string;
15510
+ resolvedResourceEntry?: string;
15396
15511
  render?: 'default' | 'native';
15397
15512
  renderRuntimeType?: 'iframe' | 'webworker';
15398
15513
  [k: string]: unknown;
@@ -15402,6 +15517,7 @@ export interface Modules {
15402
15517
  });
15403
15518
  function?: string;
15404
15519
  resource?: string;
15520
+ resolvedResourceEntry?: string;
15405
15521
  render?: 'default' | 'native';
15406
15522
  renderRuntimeType?: 'iframe' | 'webworker';
15407
15523
  parser?: {
@@ -15418,6 +15534,7 @@ export interface Modules {
15418
15534
  | {
15419
15535
  view: {
15420
15536
  resource?: string;
15537
+ resolvedResourceEntry?: string;
15421
15538
  render?: 'default' | 'native';
15422
15539
  renderRuntimeType?: 'iframe' | 'webworker';
15423
15540
  formatter: {
@@ -15469,6 +15586,7 @@ export interface Modules {
15469
15586
  }
15470
15587
  | ({
15471
15588
  resource: string;
15589
+ resolvedResourceEntry?: string;
15472
15590
  render?: 'default' | 'native';
15473
15591
  renderRuntimeType?: 'iframe' | 'webworker';
15474
15592
  [k: string]: unknown;
@@ -15478,6 +15596,7 @@ export interface Modules {
15478
15596
  })
15479
15597
  | {
15480
15598
  resource?: string;
15599
+ resolvedResourceEntry?: string;
15481
15600
  render?: 'default' | 'native';
15482
15601
  renderRuntimeType?: 'iframe' | 'webworker';
15483
15602
  validation?: {
@@ -15527,6 +15646,7 @@ export interface Modules {
15527
15646
  }
15528
15647
  | {
15529
15648
  resource: string;
15649
+ resolvedResourceEntry?: string;
15530
15650
  layout?: 'basic' | 'blank' | 'native';
15531
15651
  render?: 'default' | 'native';
15532
15652
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -15534,6 +15654,7 @@ export interface Modules {
15534
15654
  }
15535
15655
  | ({
15536
15656
  resource: string;
15657
+ resolvedResourceEntry?: string;
15537
15658
  render?: 'default' | 'native';
15538
15659
  renderRuntimeType?: 'iframe' | 'webworker';
15539
15660
  [k: string]: unknown;
@@ -15543,6 +15664,7 @@ export interface Modules {
15543
15664
  });
15544
15665
  function?: string;
15545
15666
  resource?: string;
15667
+ resolvedResourceEntry?: string;
15546
15668
  render?: 'default' | 'native';
15547
15669
  renderRuntimeType?: 'iframe' | 'webworker';
15548
15670
  parser?: {
@@ -15599,6 +15721,7 @@ export interface Modules {
15599
15721
  }
15600
15722
  | ({
15601
15723
  resource: string;
15724
+ resolvedResourceEntry?: string;
15602
15725
  render?: 'default' | 'native';
15603
15726
  renderRuntimeType?: 'iframe' | 'webworker';
15604
15727
  [k: string]: unknown;
@@ -15608,6 +15731,7 @@ export interface Modules {
15608
15731
  })
15609
15732
  | {
15610
15733
  resource?: string;
15734
+ resolvedResourceEntry?: string;
15611
15735
  render?: 'default' | 'native';
15612
15736
  renderRuntimeType?: 'iframe' | 'webworker';
15613
15737
  validation?: {
@@ -15657,6 +15781,7 @@ export interface Modules {
15657
15781
  }
15658
15782
  | {
15659
15783
  resource: string;
15784
+ resolvedResourceEntry?: string;
15660
15785
  layout?: 'basic' | 'blank' | 'native';
15661
15786
  render?: 'default' | 'native';
15662
15787
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -15664,6 +15789,7 @@ export interface Modules {
15664
15789
  }
15665
15790
  | ({
15666
15791
  resource: string;
15792
+ resolvedResourceEntry?: string;
15667
15793
  render?: 'default' | 'native';
15668
15794
  renderRuntimeType?: 'iframe' | 'webworker';
15669
15795
  [k: string]: unknown;
@@ -15673,6 +15799,7 @@ export interface Modules {
15673
15799
  });
15674
15800
  function?: string;
15675
15801
  resource?: string;
15802
+ resolvedResourceEntry?: string;
15676
15803
  render?: 'default' | 'native';
15677
15804
  renderRuntimeType?: 'iframe' | 'webworker';
15678
15805
  parser?: {
@@ -15691,6 +15818,7 @@ export interface Modules {
15691
15818
  | {
15692
15819
  view?: {
15693
15820
  resource?: string;
15821
+ resolvedResourceEntry?: string;
15694
15822
  render?: 'default' | 'native';
15695
15823
  renderRuntimeType?: 'iframe' | 'webworker';
15696
15824
  formatter?: {
@@ -15739,6 +15867,7 @@ export interface Modules {
15739
15867
  }
15740
15868
  | ({
15741
15869
  resource: string;
15870
+ resolvedResourceEntry?: string;
15742
15871
  render?: 'default' | 'native';
15743
15872
  renderRuntimeType?: 'iframe' | 'webworker';
15744
15873
  [k: string]: unknown;
@@ -15748,6 +15877,7 @@ export interface Modules {
15748
15877
  })
15749
15878
  | {
15750
15879
  resource?: string;
15880
+ resolvedResourceEntry?: string;
15751
15881
  render?: 'default' | 'native';
15752
15882
  renderRuntimeType?: 'iframe' | 'webworker';
15753
15883
  validation?: {
@@ -15797,6 +15927,7 @@ export interface Modules {
15797
15927
  }
15798
15928
  | {
15799
15929
  resource: string;
15930
+ resolvedResourceEntry?: string;
15800
15931
  layout?: 'basic' | 'blank' | 'native';
15801
15932
  render?: 'default' | 'native';
15802
15933
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -15804,6 +15935,7 @@ export interface Modules {
15804
15935
  }
15805
15936
  | ({
15806
15937
  resource: string;
15938
+ resolvedResourceEntry?: string;
15807
15939
  render?: 'default' | 'native';
15808
15940
  renderRuntimeType?: 'iframe' | 'webworker';
15809
15941
  [k: string]: unknown;
@@ -15813,6 +15945,7 @@ export interface Modules {
15813
15945
  });
15814
15946
  function?: string;
15815
15947
  resource?: string;
15948
+ resolvedResourceEntry?: string;
15816
15949
  render?: 'default' | 'native';
15817
15950
  renderRuntimeType?: 'iframe' | 'webworker';
15818
15951
  parser?: {
@@ -15829,6 +15962,7 @@ export interface Modules {
15829
15962
  | {
15830
15963
  view: {
15831
15964
  resource?: string;
15965
+ resolvedResourceEntry?: string;
15832
15966
  render?: 'default' | 'native';
15833
15967
  renderRuntimeType?: 'iframe' | 'webworker';
15834
15968
  formatter: {
@@ -15880,6 +16014,7 @@ export interface Modules {
15880
16014
  }
15881
16015
  | ({
15882
16016
  resource: string;
16017
+ resolvedResourceEntry?: string;
15883
16018
  render?: 'default' | 'native';
15884
16019
  renderRuntimeType?: 'iframe' | 'webworker';
15885
16020
  [k: string]: unknown;
@@ -15889,6 +16024,7 @@ export interface Modules {
15889
16024
  })
15890
16025
  | {
15891
16026
  resource?: string;
16027
+ resolvedResourceEntry?: string;
15892
16028
  render?: 'default' | 'native';
15893
16029
  renderRuntimeType?: 'iframe' | 'webworker';
15894
16030
  validation?: {
@@ -15938,6 +16074,7 @@ export interface Modules {
15938
16074
  }
15939
16075
  | {
15940
16076
  resource: string;
16077
+ resolvedResourceEntry?: string;
15941
16078
  layout?: 'basic' | 'blank' | 'native';
15942
16079
  render?: 'default' | 'native';
15943
16080
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -15945,6 +16082,7 @@ export interface Modules {
15945
16082
  }
15946
16083
  | ({
15947
16084
  resource: string;
16085
+ resolvedResourceEntry?: string;
15948
16086
  render?: 'default' | 'native';
15949
16087
  renderRuntimeType?: 'iframe' | 'webworker';
15950
16088
  [k: string]: unknown;
@@ -15954,6 +16092,7 @@ export interface Modules {
15954
16092
  });
15955
16093
  function?: string;
15956
16094
  resource?: string;
16095
+ resolvedResourceEntry?: string;
15957
16096
  render?: 'default' | 'native';
15958
16097
  renderRuntimeType?: 'iframe' | 'webworker';
15959
16098
  parser?: {
@@ -16010,6 +16149,7 @@ export interface Modules {
16010
16149
  }
16011
16150
  | ({
16012
16151
  resource: string;
16152
+ resolvedResourceEntry?: string;
16013
16153
  render?: 'default' | 'native';
16014
16154
  renderRuntimeType?: 'iframe' | 'webworker';
16015
16155
  [k: string]: unknown;
@@ -16019,6 +16159,7 @@ export interface Modules {
16019
16159
  })
16020
16160
  | {
16021
16161
  resource?: string;
16162
+ resolvedResourceEntry?: string;
16022
16163
  render?: 'default' | 'native';
16023
16164
  renderRuntimeType?: 'iframe' | 'webworker';
16024
16165
  validation?: {
@@ -16068,6 +16209,7 @@ export interface Modules {
16068
16209
  }
16069
16210
  | {
16070
16211
  resource: string;
16212
+ resolvedResourceEntry?: string;
16071
16213
  layout?: 'basic' | 'blank' | 'native';
16072
16214
  render?: 'default' | 'native';
16073
16215
  renderRuntimeType?: 'iframe' | 'webworker';
@@ -16075,6 +16217,7 @@ export interface Modules {
16075
16217
  }
16076
16218
  | ({
16077
16219
  resource: string;
16220
+ resolvedResourceEntry?: string;
16078
16221
  render?: 'default' | 'native';
16079
16222
  renderRuntimeType?: 'iframe' | 'webworker';
16080
16223
  [k: string]: unknown;
@@ -16084,6 +16227,7 @@ export interface Modules {
16084
16227
  });
16085
16228
  function?: string;
16086
16229
  resource?: string;
16230
+ resolvedResourceEntry?: string;
16087
16231
  render?: 'default' | 'native';
16088
16232
  renderRuntimeType?: 'iframe' | 'webworker';
16089
16233
  parser?: {
@@ -16117,6 +16261,7 @@ export interface Modules {
16117
16261
  }
16118
16262
  | {
16119
16263
  resource: string;
16264
+ resolvedResourceEntry?: string;
16120
16265
  resolver?:
16121
16266
  | {
16122
16267
  function: string;
@@ -16158,6 +16303,7 @@ export interface Modules {
16158
16303
  }
16159
16304
  | {
16160
16305
  resource: string;
16306
+ resolvedResourceEntry?: string;
16161
16307
  resolver?:
16162
16308
  | {
16163
16309
  function: string;
@@ -16192,6 +16338,7 @@ export interface Modules {
16192
16338
  };
16193
16339
  title__i18n?: string;
16194
16340
  resource: string;
16341
+ resolvedResourceEntry?: string;
16195
16342
  resolver?:
16196
16343
  | {
16197
16344
  function: string;
@@ -16212,6 +16359,7 @@ export interface Modules {
16212
16359
  };
16213
16360
  title__i18n?: string;
16214
16361
  resource: string;
16362
+ resolvedResourceEntry?: string;
16215
16363
  resolver?:
16216
16364
  | {
16217
16365
  function: string;
@@ -16260,6 +16408,7 @@ export interface Modules {
16260
16408
  }
16261
16409
  | {
16262
16410
  resource: string;
16411
+ resolvedResourceEntry?: string;
16263
16412
  resolver?:
16264
16413
  | {
16265
16414
  function: string;
@@ -16333,6 +16482,7 @@ export interface Modules {
16333
16482
  }
16334
16483
  | {
16335
16484
  resource: string;
16485
+ resolvedResourceEntry?: string;
16336
16486
  resolver?:
16337
16487
  | {
16338
16488
  function: string;
@@ -16397,6 +16547,7 @@ export interface Modules {
16397
16547
  }
16398
16548
  | {
16399
16549
  resource: string;
16550
+ resolvedResourceEntry?: string;
16400
16551
  resolver?:
16401
16552
  | {
16402
16553
  function: string;
@@ -16450,6 +16601,7 @@ export interface Modules {
16450
16601
  }
16451
16602
  | {
16452
16603
  resource: string;
16604
+ resolvedResourceEntry?: string;
16453
16605
  resolver?:
16454
16606
  | {
16455
16607
  function: string;
@@ -16499,6 +16651,7 @@ export interface Modules {
16499
16651
  }
16500
16652
  | {
16501
16653
  resource: string;
16654
+ resolvedResourceEntry?: string;
16502
16655
  resolver?:
16503
16656
  | {
16504
16657
  function: string;
@@ -16540,6 +16693,7 @@ export interface Modules {
16540
16693
  }
16541
16694
  | {
16542
16695
  resource: string;
16696
+ resolvedResourceEntry?: string;
16543
16697
  resolver?:
16544
16698
  | {
16545
16699
  function: string;
@@ -16601,6 +16755,7 @@ export interface Modules {
16601
16755
  }
16602
16756
  | {
16603
16757
  resource: string;
16758
+ resolvedResourceEntry?: string;
16604
16759
  resolver?:
16605
16760
  | {
16606
16761
  function: string;
@@ -16610,6 +16765,7 @@ export interface Modules {
16610
16765
  };
16611
16766
  edit?: {
16612
16767
  resource: string;
16768
+ resolvedResourceEntry?: string;
16613
16769
  render?: 'default' | 'native';
16614
16770
  renderRuntimeType?: 'iframe' | 'webworker';
16615
16771
  [k: string]: unknown;
@@ -16678,6 +16834,7 @@ export interface Modules {
16678
16834
  }
16679
16835
  | {
16680
16836
  resource: string;
16837
+ resolvedResourceEntry?: string;
16681
16838
  resolver?:
16682
16839
  | {
16683
16840
  function: string;
@@ -16687,6 +16844,7 @@ export interface Modules {
16687
16844
  };
16688
16845
  edit?: {
16689
16846
  resource: string;
16847
+ resolvedResourceEntry?: string;
16690
16848
  render?: 'default' | 'native';
16691
16849
  renderRuntimeType?: 'iframe' | 'webworker';
16692
16850
  [k: string]: unknown;
@@ -16774,6 +16932,7 @@ export interface Modules {
16774
16932
  }
16775
16933
  | {
16776
16934
  resource: string;
16935
+ resolvedResourceEntry?: string;
16777
16936
  resourceUploadId?: string;
16778
16937
  resolver?:
16779
16938
  | {
@@ -16884,6 +17043,7 @@ export interface Modules {
16884
17043
  }
16885
17044
  | {
16886
17045
  resource: string;
17046
+ resolvedResourceEntry?: string;
16887
17047
  resourceUploadId?: string;
16888
17048
  resolver?:
16889
17049
  | {
@@ -16994,6 +17154,7 @@ export interface Modules {
16994
17154
  }
16995
17155
  | {
16996
17156
  resource: string;
17157
+ resolvedResourceEntry?: string;
16997
17158
  resourceUploadId?: string;
16998
17159
  resolver?:
16999
17160
  | {
@@ -17100,6 +17261,7 @@ export interface Modules {
17100
17261
  }
17101
17262
  | {
17102
17263
  resource: string;
17264
+ resolvedResourceEntry?: string;
17103
17265
  resourceUploadId?: string;
17104
17266
  resolver?:
17105
17267
  | {
@@ -17296,6 +17458,7 @@ export interface Modules {
17296
17458
  }
17297
17459
  | {
17298
17460
  resource: string;
17461
+ resolvedResourceEntry?: string;
17299
17462
  resourceUploadId?: string;
17300
17463
  resolver?:
17301
17464
  | {
@@ -17402,6 +17565,7 @@ export interface Modules {
17402
17565
  }
17403
17566
  | {
17404
17567
  resource: string;
17568
+ resolvedResourceEntry?: string;
17405
17569
  resourceUploadId?: string;
17406
17570
  resolver?:
17407
17571
  | {
@@ -17510,6 +17674,7 @@ export interface Modules {
17510
17674
  }
17511
17675
  | {
17512
17676
  resource: string;
17677
+ resolvedResourceEntry?: string;
17513
17678
  resourceUploadId?: string;
17514
17679
  resolver?:
17515
17680
  | {
@@ -17616,6 +17781,7 @@ export interface Modules {
17616
17781
  }
17617
17782
  | {
17618
17783
  resource: string;
17784
+ resolvedResourceEntry?: string;
17619
17785
  resourceUploadId?: string;
17620
17786
  resolver?:
17621
17787
  | {
@@ -17697,18 +17863,21 @@ export interface Modules {
17697
17863
  };
17698
17864
  view?: {
17699
17865
  resource: string;
17866
+ resolvedResourceEntry?: string;
17700
17867
  render?: 'default' | 'native';
17701
17868
  renderRuntimeType?: 'iframe' | 'webworker';
17702
17869
  [k: string]: unknown;
17703
17870
  };
17704
17871
  edit?: {
17705
17872
  resource: string;
17873
+ resolvedResourceEntry?: string;
17706
17874
  render?: 'default' | 'native';
17707
17875
  renderRuntimeType?: 'iframe' | 'webworker';
17708
17876
  [k: string]: unknown;
17709
17877
  };
17710
17878
  create?: {
17711
17879
  resource: string;
17880
+ resolvedResourceEntry?: string;
17712
17881
  render?: 'default' | 'native';
17713
17882
  renderRuntimeType?: 'iframe' | 'webworker';
17714
17883
  [k: string]: unknown;
@@ -17740,18 +17909,21 @@ export interface Modules {
17740
17909
  };
17741
17910
  view?: {
17742
17911
  resource: string;
17912
+ resolvedResourceEntry?: string;
17743
17913
  render?: 'default' | 'native';
17744
17914
  renderRuntimeType?: 'iframe' | 'webworker';
17745
17915
  [k: string]: unknown;
17746
17916
  };
17747
17917
  edit?: {
17748
17918
  resource: string;
17919
+ resolvedResourceEntry?: string;
17749
17920
  render?: 'default' | 'native';
17750
17921
  renderRuntimeType?: 'iframe' | 'webworker';
17751
17922
  [k: string]: unknown;
17752
17923
  };
17753
17924
  create?: {
17754
17925
  resource: string;
17926
+ resolvedResourceEntry?: string;
17755
17927
  render?: 'default' | 'native';
17756
17928
  renderRuntimeType?: 'iframe' | 'webworker';
17757
17929
  [k: string]: unknown;
@@ -17764,6 +17936,7 @@ export interface Modules {
17764
17936
  'jira:dashboardBackgroundScript'?: [
17765
17937
  {
17766
17938
  resource: string;
17939
+ resolvedResourceEntry?: string;
17767
17940
  resolver?:
17768
17941
  | {
17769
17942
  function: string;
@@ -17781,6 +17954,7 @@ export interface Modules {
17781
17954
  },
17782
17955
  ...{
17783
17956
  resource: string;
17957
+ resolvedResourceEntry?: string;
17784
17958
  resolver?:
17785
17959
  | {
17786
17960
  function: string;
@@ -17900,18 +18074,21 @@ export interface Modules {
17900
18074
  };
17901
18075
  view?: {
17902
18076
  resource: string;
18077
+ resolvedResourceEntry?: string;
17903
18078
  render?: 'default' | 'native';
17904
18079
  renderRuntimeType?: 'iframe' | 'webworker';
17905
18080
  [k: string]: unknown;
17906
18081
  };
17907
18082
  edit?: {
17908
18083
  resource: string;
18084
+ resolvedResourceEntry?: string;
17909
18085
  render?: 'default' | 'native';
17910
18086
  renderRuntimeType?: 'iframe' | 'webworker';
17911
18087
  [k: string]: unknown;
17912
18088
  };
17913
18089
  create?: {
17914
18090
  resource: string;
18091
+ resolvedResourceEntry?: string;
17915
18092
  render?: 'default' | 'native';
17916
18093
  renderRuntimeType?: 'iframe' | 'webworker';
17917
18094
  [k: string]: unknown;
@@ -17943,18 +18120,21 @@ export interface Modules {
17943
18120
  };
17944
18121
  view?: {
17945
18122
  resource: string;
18123
+ resolvedResourceEntry?: string;
17946
18124
  render?: 'default' | 'native';
17947
18125
  renderRuntimeType?: 'iframe' | 'webworker';
17948
18126
  [k: string]: unknown;
17949
18127
  };
17950
18128
  edit?: {
17951
18129
  resource: string;
18130
+ resolvedResourceEntry?: string;
17952
18131
  render?: 'default' | 'native';
17953
18132
  renderRuntimeType?: 'iframe' | 'webworker';
17954
18133
  [k: string]: unknown;
17955
18134
  };
17956
18135
  create?: {
17957
18136
  resource: string;
18137
+ resolvedResourceEntry?: string;
17958
18138
  render?: 'default' | 'native';
17959
18139
  renderRuntimeType?: 'iframe' | 'webworker';
17960
18140
  [k: string]: unknown;
@@ -17988,18 +18168,21 @@ export interface Modules {
17988
18168
  };
17989
18169
  view?: {
17990
18170
  resource: string;
18171
+ resolvedResourceEntry?: string;
17991
18172
  render?: 'default' | 'native';
17992
18173
  renderRuntimeType?: 'iframe' | 'webworker';
17993
18174
  [k: string]: unknown;
17994
18175
  };
17995
18176
  edit?: {
17996
18177
  resource: string;
18178
+ resolvedResourceEntry?: string;
17997
18179
  render?: 'default' | 'native';
17998
18180
  renderRuntimeType?: 'iframe' | 'webworker';
17999
18181
  [k: string]: unknown;
18000
18182
  };
18001
18183
  create?: {
18002
18184
  resource: string;
18185
+ resolvedResourceEntry?: string;
18003
18186
  render?: 'default' | 'native';
18004
18187
  renderRuntimeType?: 'iframe' | 'webworker';
18005
18188
  [k: string]: unknown;
@@ -18031,18 +18214,21 @@ export interface Modules {
18031
18214
  };
18032
18215
  view?: {
18033
18216
  resource: string;
18217
+ resolvedResourceEntry?: string;
18034
18218
  render?: 'default' | 'native';
18035
18219
  renderRuntimeType?: 'iframe' | 'webworker';
18036
18220
  [k: string]: unknown;
18037
18221
  };
18038
18222
  edit?: {
18039
18223
  resource: string;
18224
+ resolvedResourceEntry?: string;
18040
18225
  render?: 'default' | 'native';
18041
18226
  renderRuntimeType?: 'iframe' | 'webworker';
18042
18227
  [k: string]: unknown;
18043
18228
  };
18044
18229
  create?: {
18045
18230
  resource: string;
18231
+ resolvedResourceEntry?: string;
18046
18232
  render?: 'default' | 'native';
18047
18233
  renderRuntimeType?: 'iframe' | 'webworker';
18048
18234
  [k: string]: unknown;
@@ -18088,6 +18274,7 @@ export interface Modules {
18088
18274
  }
18089
18275
  | {
18090
18276
  resource: string;
18277
+ resolvedResourceEntry?: string;
18091
18278
  resolver?:
18092
18279
  | {
18093
18280
  function: string;
@@ -18161,6 +18348,7 @@ export interface Modules {
18161
18348
  }
18162
18349
  | {
18163
18350
  resource: string;
18351
+ resolvedResourceEntry?: string;
18164
18352
  resolver?:
18165
18353
  | {
18166
18354
  function: string;
@@ -18205,6 +18393,7 @@ export interface Modules {
18205
18393
  {
18206
18394
  shouldReloadOnRefresh?: boolean;
18207
18395
  resource: string;
18396
+ resolvedResourceEntry?: string;
18208
18397
  resolver?:
18209
18398
  | {
18210
18399
  function: string;
@@ -18223,6 +18412,7 @@ export interface Modules {
18223
18412
  ...{
18224
18413
  shouldReloadOnRefresh?: boolean;
18225
18414
  resource: string;
18415
+ resolvedResourceEntry?: string;
18226
18416
  resolver?:
18227
18417
  | {
18228
18418
  function: string;
@@ -18437,6 +18627,7 @@ export interface Modules {
18437
18627
  {
18438
18628
  icon?: string;
18439
18629
  resource: string;
18630
+ resolvedResourceEntry?: string;
18440
18631
  title:
18441
18632
  | string
18442
18633
  | {
@@ -18486,6 +18677,7 @@ export interface Modules {
18486
18677
  ...{
18487
18678
  icon?: string;
18488
18679
  resource: string;
18680
+ resolvedResourceEntry?: string;
18489
18681
  title:
18490
18682
  | string
18491
18683
  | {
@@ -18536,6 +18728,7 @@ export interface Modules {
18536
18728
  'jira:personalSettingsPage'?: [
18537
18729
  {
18538
18730
  resource: string;
18731
+ resolvedResourceEntry?: string;
18539
18732
  resourceUploadId?: string;
18540
18733
  resolver?:
18541
18734
  | {
@@ -18592,6 +18785,7 @@ export interface Modules {
18592
18785
  },
18593
18786
  ...{
18594
18787
  resource: string;
18788
+ resolvedResourceEntry?: string;
18595
18789
  resourceUploadId?: string;
18596
18790
  resolver?:
18597
18791
  | {
@@ -18651,6 +18845,7 @@ export interface Modules {
18651
18845
  {
18652
18846
  icon?: string;
18653
18847
  resource: string;
18848
+ resolvedResourceEntry?: string;
18654
18849
  title:
18655
18850
  | string
18656
18851
  | {
@@ -18700,6 +18895,7 @@ export interface Modules {
18700
18895
  ...{
18701
18896
  icon?: string;
18702
18897
  resource: string;
18898
+ resolvedResourceEntry?: string;
18703
18899
  title:
18704
18900
  | string
18705
18901
  | {
@@ -18761,6 +18957,7 @@ export interface Modules {
18761
18957
  target:
18762
18958
  | {
18763
18959
  resource: string;
18960
+ resolvedResourceEntry?: string;
18764
18961
  render?: 'default' | 'native';
18765
18962
  renderRuntimeType?: 'iframe' | 'webworker';
18766
18963
  [k: string]: unknown;
@@ -18792,6 +18989,7 @@ export interface Modules {
18792
18989
  target:
18793
18990
  | {
18794
18991
  resource: string;
18992
+ resolvedResourceEntry?: string;
18795
18993
  render?: 'default' | 'native';
18796
18994
  renderRuntimeType?: 'iframe' | 'webworker';
18797
18995
  [k: string]: unknown;
@@ -18815,6 +19013,7 @@ export interface Modules {
18815
19013
  {
18816
19014
  icon?: string;
18817
19015
  resource: string;
19016
+ resolvedResourceEntry?: string;
18818
19017
  title:
18819
19018
  | string
18820
19019
  | {
@@ -18864,6 +19063,7 @@ export interface Modules {
18864
19063
  ...{
18865
19064
  icon?: string;
18866
19065
  resource: string;
19066
+ resolvedResourceEntry?: string;
18867
19067
  title:
18868
19068
  | string
18869
19069
  | {
@@ -18915,6 +19115,7 @@ export interface Modules {
18915
19115
  {
18916
19116
  icon?: string;
18917
19117
  resource: string;
19118
+ resolvedResourceEntry?: string;
18918
19119
  title:
18919
19120
  | string
18920
19121
  | {
@@ -18964,6 +19165,7 @@ export interface Modules {
18964
19165
  ...{
18965
19166
  icon?: string;
18966
19167
  resource: string;
19168
+ resolvedResourceEntry?: string;
18967
19169
  title:
18968
19170
  | string
18969
19171
  | {
@@ -19041,12 +19243,14 @@ export interface Modules {
19041
19243
  {
19042
19244
  target?: {
19043
19245
  resource: string;
19246
+ resolvedResourceEntry?: string;
19044
19247
  render?: 'default' | 'native';
19045
19248
  renderRuntimeType?: 'iframe' | 'webworker';
19046
19249
  [k: string]: unknown;
19047
19250
  };
19048
19251
  experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
19049
19252
  resource: string;
19253
+ resolvedResourceEntry?: string;
19050
19254
  resolver?:
19051
19255
  | {
19052
19256
  function: string;
@@ -19065,12 +19269,14 @@ export interface Modules {
19065
19269
  ...{
19066
19270
  target?: {
19067
19271
  resource: string;
19272
+ resolvedResourceEntry?: string;
19068
19273
  render?: 'default' | 'native';
19069
19274
  renderRuntimeType?: 'iframe' | 'webworker';
19070
19275
  [k: string]: unknown;
19071
19276
  };
19072
19277
  experience: ('all' | 'board' | 'dashboard' | 'issue-view')[];
19073
19278
  resource: string;
19279
+ resolvedResourceEntry?: string;
19074
19280
  resolver?:
19075
19281
  | {
19076
19282
  function: string;
@@ -19425,6 +19631,7 @@ export interface Modules {
19425
19631
  endpoint: string;
19426
19632
  };
19427
19633
  resource: string;
19634
+ resolvedResourceEntry?: string;
19428
19635
  resourceUploadId?: string;
19429
19636
  render?: 'native' | 'default';
19430
19637
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19463,6 +19670,7 @@ export interface Modules {
19463
19670
  endpoint: string;
19464
19671
  };
19465
19672
  resource: string;
19673
+ resolvedResourceEntry?: string;
19466
19674
  resourceUploadId?: string;
19467
19675
  render?: 'native' | 'default';
19468
19676
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19507,6 +19715,7 @@ export interface Modules {
19507
19715
  endpoint: string;
19508
19716
  };
19509
19717
  resource: string;
19718
+ resolvedResourceEntry?: string;
19510
19719
  resourceUploadId?: string;
19511
19720
  render?: 'native' | 'default';
19512
19721
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19552,6 +19761,7 @@ export interface Modules {
19552
19761
  endpoint: string;
19553
19762
  };
19554
19763
  resource: string;
19764
+ resolvedResourceEntry?: string;
19555
19765
  resourceUploadId?: string;
19556
19766
  render?: 'native' | 'default';
19557
19767
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19599,6 +19809,7 @@ export interface Modules {
19599
19809
  endpoint: string;
19600
19810
  };
19601
19811
  resource: string;
19812
+ resolvedResourceEntry?: string;
19602
19813
  resourceUploadId?: string;
19603
19814
  render?: 'native' | 'default';
19604
19815
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19644,6 +19855,7 @@ export interface Modules {
19644
19855
  endpoint: string;
19645
19856
  };
19646
19857
  resource: string;
19858
+ resolvedResourceEntry?: string;
19647
19859
  resourceUploadId?: string;
19648
19860
  render?: 'native' | 'default';
19649
19861
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19688,6 +19900,7 @@ export interface Modules {
19688
19900
  endpoint: string;
19689
19901
  };
19690
19902
  resource: string;
19903
+ resolvedResourceEntry?: string;
19691
19904
  resourceUploadId?: string;
19692
19905
  render?: 'native' | 'default';
19693
19906
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19727,6 +19940,7 @@ export interface Modules {
19727
19940
  endpoint: string;
19728
19941
  };
19729
19942
  resource: string;
19943
+ resolvedResourceEntry?: string;
19730
19944
  resourceUploadId?: string;
19731
19945
  render?: 'native' | 'default';
19732
19946
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19775,6 +19989,7 @@ export interface Modules {
19775
19989
  endpoint: string;
19776
19990
  };
19777
19991
  resource: string;
19992
+ resolvedResourceEntry?: string;
19778
19993
  resourceUploadId?: string;
19779
19994
  render?: 'native' | 'default';
19780
19995
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19824,6 +20039,7 @@ export interface Modules {
19824
20039
  endpoint: string;
19825
20040
  };
19826
20041
  resource: string;
20042
+ resolvedResourceEntry?: string;
19827
20043
  resourceUploadId?: string;
19828
20044
  render?: 'native' | 'default';
19829
20045
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19874,6 +20090,7 @@ export interface Modules {
19874
20090
  endpoint: string;
19875
20091
  };
19876
20092
  resource: string;
20093
+ resolvedResourceEntry?: string;
19877
20094
  resourceUploadId?: string;
19878
20095
  render?: 'native' | 'default';
19879
20096
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19922,6 +20139,7 @@ export interface Modules {
19922
20139
  endpoint: string;
19923
20140
  };
19924
20141
  resource: string;
20142
+ resolvedResourceEntry?: string;
19925
20143
  resourceUploadId?: string;
19926
20144
  render?: 'native' | 'default';
19927
20145
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -19972,6 +20190,7 @@ export interface Modules {
19972
20190
  endpoint: string;
19973
20191
  };
19974
20192
  resource: string;
20193
+ resolvedResourceEntry?: string;
19975
20194
  resourceUploadId?: string;
19976
20195
  render?: 'native' | 'default';
19977
20196
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20020,6 +20239,7 @@ export interface Modules {
20020
20239
  endpoint: string;
20021
20240
  };
20022
20241
  resource: string;
20242
+ resolvedResourceEntry?: string;
20023
20243
  resourceUploadId?: string;
20024
20244
  render?: 'native' | 'default';
20025
20245
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20067,6 +20287,7 @@ export interface Modules {
20067
20287
  endpoint: string;
20068
20288
  };
20069
20289
  resource: string;
20290
+ resolvedResourceEntry?: string;
20070
20291
  resourceUploadId?: string;
20071
20292
  render?: 'native' | 'default';
20072
20293
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20112,6 +20333,7 @@ export interface Modules {
20112
20333
  endpoint: string;
20113
20334
  };
20114
20335
  resource: string;
20336
+ resolvedResourceEntry?: string;
20115
20337
  resourceUploadId?: string;
20116
20338
  render?: 'native' | 'default';
20117
20339
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20154,6 +20376,7 @@ export interface Modules {
20154
20376
  endpoint: string;
20155
20377
  };
20156
20378
  resource: string;
20379
+ resolvedResourceEntry?: string;
20157
20380
  resourceUploadId?: string;
20158
20381
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
20159
20382
  displayConditions?: {
@@ -20195,6 +20418,7 @@ export interface Modules {
20195
20418
  endpoint: string;
20196
20419
  };
20197
20420
  resource: string;
20421
+ resolvedResourceEntry?: string;
20198
20422
  resourceUploadId?: string;
20199
20423
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
20200
20424
  displayConditions?: {
@@ -20238,6 +20462,7 @@ export interface Modules {
20238
20462
  endpoint: string;
20239
20463
  };
20240
20464
  resource: string;
20465
+ resolvedResourceEntry?: string;
20241
20466
  resourceUploadId?: string;
20242
20467
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
20243
20468
  render?: 'native' | 'default';
@@ -20279,6 +20504,7 @@ export interface Modules {
20279
20504
  endpoint: string;
20280
20505
  };
20281
20506
  resource: string;
20507
+ resolvedResourceEntry?: string;
20282
20508
  resourceUploadId?: string;
20283
20509
  viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
20284
20510
  render?: 'native' | 'default';
@@ -20328,6 +20554,7 @@ export interface Modules {
20328
20554
  endpoint: string;
20329
20555
  };
20330
20556
  resource: string;
20557
+ resolvedResourceEntry?: string;
20331
20558
  resourceUploadId?: string;
20332
20559
  render?: 'native' | 'default';
20333
20560
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20374,6 +20601,7 @@ export interface Modules {
20374
20601
  endpoint: string;
20375
20602
  };
20376
20603
  resource: string;
20604
+ resolvedResourceEntry?: string;
20377
20605
  resourceUploadId?: string;
20378
20606
  render?: 'native' | 'default';
20379
20607
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20436,6 +20664,7 @@ export interface Modules {
20436
20664
  description__i18n?: string;
20437
20665
  icon: string;
20438
20666
  resource: string;
20667
+ resolvedResourceEntry?: string;
20439
20668
  resolver?:
20440
20669
  | {
20441
20670
  function: string;
@@ -20515,6 +20744,7 @@ export interface Modules {
20515
20744
  description__i18n?: string;
20516
20745
  icon: string;
20517
20746
  resource: string;
20747
+ resolvedResourceEntry?: string;
20518
20748
  resolver?:
20519
20749
  | {
20520
20750
  function: string;
@@ -20577,6 +20807,7 @@ export interface Modules {
20577
20807
  endpoint: string;
20578
20808
  };
20579
20809
  resource: string;
20810
+ resolvedResourceEntry?: string;
20580
20811
  resourceUploadId?: string;
20581
20812
  render?: 'native' | 'default';
20582
20813
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20615,6 +20846,7 @@ export interface Modules {
20615
20846
  endpoint: string;
20616
20847
  };
20617
20848
  resource: string;
20849
+ resolvedResourceEntry?: string;
20618
20850
  resourceUploadId?: string;
20619
20851
  render?: 'native' | 'default';
20620
20852
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20660,6 +20892,7 @@ export interface Modules {
20660
20892
  endpoint: string;
20661
20893
  };
20662
20894
  resource: string;
20895
+ resolvedResourceEntry?: string;
20663
20896
  resourceUploadId?: string;
20664
20897
  render?: 'native' | 'default';
20665
20898
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -20706,6 +20939,7 @@ export interface Modules {
20706
20939
  endpoint: string;
20707
20940
  };
20708
20941
  resource: string;
20942
+ resolvedResourceEntry?: string;
20709
20943
  resourceUploadId?: string;
20710
20944
  render?: 'native' | 'default';
20711
20945
  renderRuntimeType?: 'webworker' | 'iframe';
@@ -24927,6 +25161,26 @@ export interface Modules {
24927
25161
  key: ModuleKeySchema;
24928
25162
  }[]
24929
25163
  ];
25164
+ 'rovo:skill'?: [
25165
+ {
25166
+ path: string;
25167
+ dependencies?: {
25168
+ tools?: string[];
25169
+ [k: string]: unknown;
25170
+ };
25171
+ key: ModuleKeySchema;
25172
+ [k: string]: unknown;
25173
+ },
25174
+ ...{
25175
+ path: string;
25176
+ dependencies?: {
25177
+ tools?: string[];
25178
+ [k: string]: unknown;
25179
+ };
25180
+ key: ModuleKeySchema;
25181
+ [k: string]: unknown;
25182
+ }[]
25183
+ ];
24930
25184
  'graph:smartLink'?: [
24931
25185
  {
24932
25186
  /**
@@ -25301,6 +25555,56 @@ export interface Modules {
25301
25555
  [k: string]: unknown;
25302
25556
  }[]
25303
25557
  ];
25558
+ 'devops:designInfoProvider'?: [
25559
+ {
25560
+ name: {
25561
+ value: string;
25562
+ [k: string]: unknown;
25563
+ };
25564
+ homeUrl: string;
25565
+ logoUrl?: string;
25566
+ handledDomainName?: string;
25567
+ documentationUrl?: string;
25568
+ checkAuth: {
25569
+ endpoint: string;
25570
+ };
25571
+ getEntityByUrl: {
25572
+ endpoint: string;
25573
+ };
25574
+ onEntityAssociated: {
25575
+ endpoint: string;
25576
+ };
25577
+ onEntityDisassociated: {
25578
+ endpoint: string;
25579
+ };
25580
+ key: ModuleKeySchema;
25581
+ [k: string]: unknown;
25582
+ },
25583
+ ...{
25584
+ name: {
25585
+ value: string;
25586
+ [k: string]: unknown;
25587
+ };
25588
+ homeUrl: string;
25589
+ logoUrl?: string;
25590
+ handledDomainName?: string;
25591
+ documentationUrl?: string;
25592
+ checkAuth: {
25593
+ endpoint: string;
25594
+ };
25595
+ getEntityByUrl: {
25596
+ endpoint: string;
25597
+ };
25598
+ onEntityAssociated: {
25599
+ endpoint: string;
25600
+ };
25601
+ onEntityDisassociated: {
25602
+ endpoint: string;
25603
+ };
25604
+ key: ModuleKeySchema;
25605
+ [k: string]: unknown;
25606
+ }[]
25607
+ ];
25304
25608
  'devops:featureFlagInfoProvider'?: [
25305
25609
  {
25306
25610
  name: {
@@ -25397,6 +25701,60 @@ export interface Modules {
25397
25701
  [k: string]: unknown;
25398
25702
  }[]
25399
25703
  ];
25704
+ 'devops:securityInfoProvider'?: [
25705
+ {
25706
+ name: {
25707
+ value: string;
25708
+ [k: string]: unknown;
25709
+ };
25710
+ homeUrl: string;
25711
+ logoUrl?: string;
25712
+ documentationUrl?: string;
25713
+ fetchWorkspaces: {
25714
+ endpoint: string;
25715
+ };
25716
+ fetchContainers: {
25717
+ endpoint: string;
25718
+ };
25719
+ searchContainers: {
25720
+ endpoint: string;
25721
+ };
25722
+ onEntityAssociated?: {
25723
+ endpoint: string;
25724
+ };
25725
+ onEntityDisassociated?: {
25726
+ endpoint: string;
25727
+ };
25728
+ key: ModuleKeySchema;
25729
+ [k: string]: unknown;
25730
+ },
25731
+ ...{
25732
+ name: {
25733
+ value: string;
25734
+ [k: string]: unknown;
25735
+ };
25736
+ homeUrl: string;
25737
+ logoUrl?: string;
25738
+ documentationUrl?: string;
25739
+ fetchWorkspaces: {
25740
+ endpoint: string;
25741
+ };
25742
+ fetchContainers: {
25743
+ endpoint: string;
25744
+ };
25745
+ searchContainers: {
25746
+ endpoint: string;
25747
+ };
25748
+ onEntityAssociated?: {
25749
+ endpoint: string;
25750
+ };
25751
+ onEntityDisassociated?: {
25752
+ endpoint: string;
25753
+ };
25754
+ key: ModuleKeySchema;
25755
+ [k: string]: unknown;
25756
+ }[]
25757
+ ];
25400
25758
  'devops:remoteLinkInfoProvider'?: [
25401
25759
  {
25402
25760
  name: {
@@ -25431,6 +25789,7 @@ export interface Modules {
25431
25789
  title__i18n?: string;
25432
25790
  icon?: string;
25433
25791
  resource: string;
25792
+ resolvedResourceEntry?: string;
25434
25793
  resourceUploadId?: string;
25435
25794
  resolver?:
25436
25795
  | {
@@ -25452,6 +25811,7 @@ export interface Modules {
25452
25811
  title__i18n?: string;
25453
25812
  icon?: string;
25454
25813
  resource: string;
25814
+ resolvedResourceEntry?: string;
25455
25815
  resourceUploadId?: string;
25456
25816
  resolver?:
25457
25817
  | {
@@ -74607,6 +74967,9 @@ export interface HostedResourcesSchema {
74607
74967
  */
74608
74968
  key: string;
74609
74969
  path: string;
74970
+ entry?: {
74971
+ [k: string]: string;
74972
+ };
74610
74973
  tunnel?: {
74611
74974
  port: number;
74612
74975
  };