@forge/manifest 5.3.0-next.4 → 5.3.0

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 CHANGED
@@ -1,5 +1,28 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 5.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - eb6edcad: add Bitbucket workspace settings menu page module
8
+
9
+ ### Patch Changes
10
+
11
+ - 2cf5ac83: Bumping dependencies via Renovate:
12
+
13
+ - @types/jest
14
+
15
+ - c0d1e462: Added board related product events to scope mapping
16
+ - 3a4a72d0: Added issue property related product events to scope mapping
17
+ - 1b86561b: Update manifest definitions
18
+ - 949b52dd: Update manifest definitions
19
+
20
+ ## 5.3.0-next.5
21
+
22
+ ### Patch Changes
23
+
24
+ - 1b86561b: Update manifest definitions
25
+
3
26
  ## 5.3.0-next.4
4
27
 
5
28
  ### Minor Changes
@@ -8962,6 +8962,111 @@
8962
8962
  "maxLength": 255,
8963
8963
  "pattern": "^[a-zA-Z0-9-_]+$"
8964
8964
  },
8965
+ "onDeleteImport": {
8966
+ "anyOf": [
8967
+ {
8968
+ "type": "object",
8969
+ "properties": {
8970
+ "function": {
8971
+ "type": "string",
8972
+ "minLength": 1,
8973
+ "maxLength": 255,
8974
+ "pattern": "^[a-zA-Z0-9-_]+$"
8975
+ }
8976
+ },
8977
+ "required": [
8978
+ "function"
8979
+ ]
8980
+ }
8981
+ ]
8982
+ },
8983
+ "startImport": {
8984
+ "anyOf": [
8985
+ {
8986
+ "type": "object",
8987
+ "properties": {
8988
+ "function": {
8989
+ "type": "string",
8990
+ "minLength": 1,
8991
+ "maxLength": 255,
8992
+ "pattern": "^[a-zA-Z0-9-_]+$"
8993
+ }
8994
+ },
8995
+ "required": [
8996
+ "function"
8997
+ ]
8998
+ }
8999
+ ]
9000
+ },
9001
+ "stopImport": {
9002
+ "anyOf": [
9003
+ {
9004
+ "type": "object",
9005
+ "properties": {
9006
+ "function": {
9007
+ "type": "string",
9008
+ "minLength": 1,
9009
+ "maxLength": 255,
9010
+ "pattern": "^[a-zA-Z0-9-_]+$"
9011
+ }
9012
+ },
9013
+ "required": [
9014
+ "function"
9015
+ ]
9016
+ }
9017
+ ]
9018
+ },
9019
+ "importStatus": {
9020
+ "anyOf": [
9021
+ {
9022
+ "type": "object",
9023
+ "properties": {
9024
+ "function": {
9025
+ "type": "string",
9026
+ "minLength": 1,
9027
+ "maxLength": 255,
9028
+ "pattern": "^[a-zA-Z0-9-_]+$"
9029
+ }
9030
+ },
9031
+ "required": [
9032
+ "function"
9033
+ ]
9034
+ }
9035
+ ]
9036
+ },
9037
+ "key": {
9038
+ "$ref": "#/definitions/ModuleKeySchema"
9039
+ }
9040
+ },
9041
+ "not": {
9042
+ "required": [
9043
+ "unlicensedAccess"
9044
+ ]
9045
+ }
9046
+ },
9047
+ {
9048
+ "type": "object",
9049
+ "required": [
9050
+ "title",
9051
+ "icon",
9052
+ "resource",
9053
+ "render",
9054
+ "startImport",
9055
+ "stopImport",
9056
+ "importStatus",
9057
+ "key"
9058
+ ],
9059
+ "properties": {
9060
+ "title": {
9061
+ "type": "string",
9062
+ "minLength": 1,
9063
+ "maxLength": 255
9064
+ },
9065
+ "icon": {
9066
+ "type": "string",
9067
+ "minLength": 1,
9068
+ "maxLength": 255
9069
+ },
8965
9070
  "resource": {
8966
9071
  "type": "string",
8967
9072
  "minLength": 1,
@@ -9191,18 +9296,37 @@
9191
9296
  "type": "string"
9192
9297
  },
9193
9298
  "resolver": {
9194
- "additionalProperties": false,
9195
- "type": "object",
9196
- "properties": {
9197
- "function": {
9198
- "type": "string",
9199
- "minLength": 1,
9200
- "maxLength": 255,
9201
- "pattern": "^[a-zA-Z0-9-_]+$"
9299
+ "oneOf": [
9300
+ {
9301
+ "additionalProperties": false,
9302
+ "type": "object",
9303
+ "properties": {
9304
+ "function": {
9305
+ "type": "string",
9306
+ "minLength": 1,
9307
+ "maxLength": 255,
9308
+ "pattern": "^[a-zA-Z0-9-_]+$"
9309
+ }
9310
+ },
9311
+ "required": [
9312
+ "function"
9313
+ ]
9314
+ },
9315
+ {
9316
+ "additionalProperties": false,
9317
+ "type": "object",
9318
+ "properties": {
9319
+ "endpoint": {
9320
+ "type": "string",
9321
+ "minLength": 1,
9322
+ "maxLength": 255,
9323
+ "pattern": "^[a-zA-Z0-9-_]+$"
9324
+ }
9325
+ },
9326
+ "required": [
9327
+ "endpoint"
9328
+ ]
9202
9329
  }
9203
- },
9204
- "required": [
9205
- "function"
9206
9330
  ]
9207
9331
  },
9208
9332
  "resource": {
@@ -9276,18 +9400,37 @@
9276
9400
  "maxLength": 255
9277
9401
  },
9278
9402
  "resolver": {
9279
- "additionalProperties": false,
9280
- "type": "object",
9281
- "properties": {
9282
- "function": {
9283
- "type": "string",
9284
- "minLength": 1,
9285
- "maxLength": 255,
9286
- "pattern": "^[a-zA-Z0-9-_]+$"
9403
+ "oneOf": [
9404
+ {
9405
+ "additionalProperties": false,
9406
+ "type": "object",
9407
+ "properties": {
9408
+ "function": {
9409
+ "type": "string",
9410
+ "minLength": 1,
9411
+ "maxLength": 255,
9412
+ "pattern": "^[a-zA-Z0-9-_]+$"
9413
+ }
9414
+ },
9415
+ "required": [
9416
+ "function"
9417
+ ]
9418
+ },
9419
+ {
9420
+ "additionalProperties": false,
9421
+ "type": "object",
9422
+ "properties": {
9423
+ "endpoint": {
9424
+ "type": "string",
9425
+ "minLength": 1,
9426
+ "maxLength": 255,
9427
+ "pattern": "^[a-zA-Z0-9-_]+$"
9428
+ }
9429
+ },
9430
+ "required": [
9431
+ "endpoint"
9432
+ ]
9287
9433
  }
9288
- },
9289
- "required": [
9290
- "function"
9291
9434
  ]
9292
9435
  },
9293
9436
  "resource": {
@@ -9367,18 +9510,37 @@
9367
9510
  "type": "string"
9368
9511
  },
9369
9512
  "resolver": {
9370
- "additionalProperties": false,
9371
- "type": "object",
9372
- "properties": {
9373
- "function": {
9374
- "type": "string",
9375
- "minLength": 1,
9376
- "maxLength": 255,
9377
- "pattern": "^[a-zA-Z0-9-_]+$"
9513
+ "oneOf": [
9514
+ {
9515
+ "additionalProperties": false,
9516
+ "type": "object",
9517
+ "properties": {
9518
+ "function": {
9519
+ "type": "string",
9520
+ "minLength": 1,
9521
+ "maxLength": 255,
9522
+ "pattern": "^[a-zA-Z0-9-_]+$"
9523
+ }
9524
+ },
9525
+ "required": [
9526
+ "function"
9527
+ ]
9528
+ },
9529
+ {
9530
+ "additionalProperties": false,
9531
+ "type": "object",
9532
+ "properties": {
9533
+ "endpoint": {
9534
+ "type": "string",
9535
+ "minLength": 1,
9536
+ "maxLength": 255,
9537
+ "pattern": "^[a-zA-Z0-9-_]+$"
9538
+ }
9539
+ },
9540
+ "required": [
9541
+ "endpoint"
9542
+ ]
9378
9543
  }
9379
- },
9380
- "required": [
9381
- "function"
9382
9544
  ]
9383
9545
  },
9384
9546
  "resource": {
@@ -9452,18 +9614,37 @@
9452
9614
  "maxLength": 255
9453
9615
  },
9454
9616
  "resolver": {
9455
- "additionalProperties": false,
9456
- "type": "object",
9457
- "properties": {
9458
- "function": {
9459
- "type": "string",
9460
- "minLength": 1,
9461
- "maxLength": 255,
9462
- "pattern": "^[a-zA-Z0-9-_]+$"
9617
+ "oneOf": [
9618
+ {
9619
+ "additionalProperties": false,
9620
+ "type": "object",
9621
+ "properties": {
9622
+ "function": {
9623
+ "type": "string",
9624
+ "minLength": 1,
9625
+ "maxLength": 255,
9626
+ "pattern": "^[a-zA-Z0-9-_]+$"
9627
+ }
9628
+ },
9629
+ "required": [
9630
+ "function"
9631
+ ]
9632
+ },
9633
+ {
9634
+ "additionalProperties": false,
9635
+ "type": "object",
9636
+ "properties": {
9637
+ "endpoint": {
9638
+ "type": "string",
9639
+ "minLength": 1,
9640
+ "maxLength": 255,
9641
+ "pattern": "^[a-zA-Z0-9-_]+$"
9642
+ }
9643
+ },
9644
+ "required": [
9645
+ "endpoint"
9646
+ ]
9463
9647
  }
9464
- },
9465
- "required": [
9466
- "function"
9467
9648
  ]
9468
9649
  },
9469
9650
  "resource": {
@@ -9543,18 +9724,37 @@
9543
9724
  "type": "string"
9544
9725
  },
9545
9726
  "resolver": {
9546
- "additionalProperties": false,
9547
- "type": "object",
9548
- "properties": {
9549
- "function": {
9550
- "type": "string",
9551
- "minLength": 1,
9552
- "maxLength": 255,
9553
- "pattern": "^[a-zA-Z0-9-_]+$"
9727
+ "oneOf": [
9728
+ {
9729
+ "additionalProperties": false,
9730
+ "type": "object",
9731
+ "properties": {
9732
+ "function": {
9733
+ "type": "string",
9734
+ "minLength": 1,
9735
+ "maxLength": 255,
9736
+ "pattern": "^[a-zA-Z0-9-_]+$"
9737
+ }
9738
+ },
9739
+ "required": [
9740
+ "function"
9741
+ ]
9742
+ },
9743
+ {
9744
+ "additionalProperties": false,
9745
+ "type": "object",
9746
+ "properties": {
9747
+ "endpoint": {
9748
+ "type": "string",
9749
+ "minLength": 1,
9750
+ "maxLength": 255,
9751
+ "pattern": "^[a-zA-Z0-9-_]+$"
9752
+ }
9753
+ },
9754
+ "required": [
9755
+ "endpoint"
9756
+ ]
9554
9757
  }
9555
- },
9556
- "required": [
9557
- "function"
9558
9758
  ]
9559
9759
  },
9560
9760
  "resource": {
@@ -9628,18 +9828,141 @@
9628
9828
  "maxLength": 255
9629
9829
  },
9630
9830
  "resolver": {
9631
- "additionalProperties": false,
9632
- "type": "object",
9633
- "properties": {
9634
- "function": {
9635
- "type": "string",
9636
- "minLength": 1,
9637
- "maxLength": 255,
9638
- "pattern": "^[a-zA-Z0-9-_]+$"
9831
+ "oneOf": [
9832
+ {
9833
+ "additionalProperties": false,
9834
+ "type": "object",
9835
+ "properties": {
9836
+ "function": {
9837
+ "type": "string",
9838
+ "minLength": 1,
9839
+ "maxLength": 255,
9840
+ "pattern": "^[a-zA-Z0-9-_]+$"
9841
+ }
9842
+ },
9843
+ "required": [
9844
+ "function"
9845
+ ]
9846
+ },
9847
+ {
9848
+ "additionalProperties": false,
9849
+ "type": "object",
9850
+ "properties": {
9851
+ "endpoint": {
9852
+ "type": "string",
9853
+ "minLength": 1,
9854
+ "maxLength": 255,
9855
+ "pattern": "^[a-zA-Z0-9-_]+$"
9856
+ }
9857
+ },
9858
+ "required": [
9859
+ "endpoint"
9860
+ ]
9861
+ }
9862
+ ]
9863
+ },
9864
+ "resource": {
9865
+ "type": "string",
9866
+ "minLength": 1,
9867
+ "maxLength": 23,
9868
+ "pattern": "^[a-zA-Z0-9-_]+$"
9869
+ },
9870
+ "key": {
9871
+ "$ref": "#/definitions/ModuleKeySchema"
9872
+ }
9873
+ },
9874
+ "required": [
9875
+ "title",
9876
+ "resource",
9877
+ "key"
9878
+ ],
9879
+ "not": {
9880
+ "required": [
9881
+ "unlicensedAccess"
9882
+ ]
9883
+ }
9884
+ }
9885
+ ]
9886
+ },
9887
+ "minItems": 1
9888
+ },
9889
+ "bitbucket:workspaceSettingsMenuPage": {
9890
+ "type": "array",
9891
+ "items": {
9892
+ "oneOf": [
9893
+ {
9894
+ "type": "object",
9895
+ "properties": {
9896
+ "title": {
9897
+ "type": "string"
9898
+ },
9899
+ "resource": {
9900
+ "type": "string",
9901
+ "minLength": 1,
9902
+ "maxLength": 23,
9903
+ "pattern": "^[a-zA-Z0-9-_]+$"
9904
+ },
9905
+ "function": {
9906
+ "type": "string",
9907
+ "minLength": 1,
9908
+ "maxLength": 255,
9909
+ "pattern": "^[a-zA-Z0-9-_]+$"
9910
+ },
9911
+ "key": {
9912
+ "$ref": "#/definitions/ModuleKeySchema"
9913
+ }
9914
+ },
9915
+ "required": [
9916
+ "title",
9917
+ "function",
9918
+ "key"
9919
+ ],
9920
+ "not": {
9921
+ "required": [
9922
+ "unlicensedAccess"
9923
+ ]
9924
+ }
9925
+ },
9926
+ {
9927
+ "type": "object",
9928
+ "properties": {
9929
+ "title": {
9930
+ "type": "string",
9931
+ "minLength": 1,
9932
+ "maxLength": 255
9933
+ },
9934
+ "resolver": {
9935
+ "oneOf": [
9936
+ {
9937
+ "additionalProperties": false,
9938
+ "type": "object",
9939
+ "properties": {
9940
+ "function": {
9941
+ "type": "string",
9942
+ "minLength": 1,
9943
+ "maxLength": 255,
9944
+ "pattern": "^[a-zA-Z0-9-_]+$"
9945
+ }
9946
+ },
9947
+ "required": [
9948
+ "function"
9949
+ ]
9950
+ },
9951
+ {
9952
+ "additionalProperties": false,
9953
+ "type": "object",
9954
+ "properties": {
9955
+ "endpoint": {
9956
+ "type": "string",
9957
+ "minLength": 1,
9958
+ "maxLength": 255,
9959
+ "pattern": "^[a-zA-Z0-9-_]+$"
9960
+ }
9961
+ },
9962
+ "required": [
9963
+ "endpoint"
9964
+ ]
9639
9965
  }
9640
- },
9641
- "required": [
9642
- "function"
9643
9966
  ]
9644
9967
  },
9645
9968
  "resource": {
@@ -4552,70 +4552,118 @@ export interface Modules {
4552
4552
  )[]
4553
4553
  ];
4554
4554
  'jiraServiceManagement:assetsImportType'?: [
4555
- {
4556
- title: string;
4557
- icon: string;
4558
- function: string;
4559
- resource?: string;
4560
- resolver?:
4561
- | {
4555
+ (
4556
+ | {
4557
+ title: string;
4558
+ icon: string;
4559
+ function: string;
4560
+ onDeleteImport?: {
4562
4561
  function: string;
4563
- }
4564
- | {
4565
- endpoint: string;
4562
+ [k: string]: unknown;
4566
4563
  };
4567
- render?: 'native' | 'default';
4568
- onDeleteImport?: {
4569
- function: string;
4570
- [k: string]: unknown;
4571
- };
4572
- startImport: {
4573
- function: string;
4574
- [k: string]: unknown;
4575
- };
4576
- stopImport: {
4577
- function: string;
4578
- [k: string]: unknown;
4579
- };
4580
- importStatus: {
4581
- function: string;
4582
- [k: string]: unknown;
4583
- };
4584
- key: ModuleKeySchema;
4585
- [k: string]: unknown;
4586
- },
4587
- ...{
4588
- title: string;
4589
- icon: string;
4590
- function: string;
4591
- resource?: string;
4592
- resolver?:
4593
- | {
4564
+ startImport: {
4594
4565
  function: string;
4595
- }
4596
- | {
4597
- endpoint: string;
4566
+ [k: string]: unknown;
4598
4567
  };
4599
- render?: 'native' | 'default';
4600
- onDeleteImport?: {
4601
- function: string;
4602
- [k: string]: unknown;
4603
- };
4604
- startImport: {
4605
- function: string;
4606
- [k: string]: unknown;
4607
- };
4608
- stopImport: {
4609
- function: string;
4610
- [k: string]: unknown;
4611
- };
4612
- importStatus: {
4613
- function: string;
4614
- [k: string]: unknown;
4615
- };
4616
- key: ModuleKeySchema;
4617
- [k: string]: unknown;
4618
- }[]
4568
+ stopImport: {
4569
+ function: string;
4570
+ [k: string]: unknown;
4571
+ };
4572
+ importStatus: {
4573
+ function: string;
4574
+ [k: string]: unknown;
4575
+ };
4576
+ key: ModuleKeySchema;
4577
+ [k: string]: unknown;
4578
+ }
4579
+ | {
4580
+ title: string;
4581
+ icon: string;
4582
+ resource: string;
4583
+ resolver?:
4584
+ | {
4585
+ function: string;
4586
+ }
4587
+ | {
4588
+ endpoint: string;
4589
+ };
4590
+ render: 'native' | 'default';
4591
+ onDeleteImport?: {
4592
+ function: string;
4593
+ [k: string]: unknown;
4594
+ };
4595
+ startImport: {
4596
+ function: string;
4597
+ [k: string]: unknown;
4598
+ };
4599
+ stopImport: {
4600
+ function: string;
4601
+ [k: string]: unknown;
4602
+ };
4603
+ importStatus: {
4604
+ function: string;
4605
+ [k: string]: unknown;
4606
+ };
4607
+ key: ModuleKeySchema;
4608
+ [k: string]: unknown;
4609
+ }
4610
+ ),
4611
+ ...(
4612
+ | {
4613
+ title: string;
4614
+ icon: string;
4615
+ function: string;
4616
+ onDeleteImport?: {
4617
+ function: string;
4618
+ [k: string]: unknown;
4619
+ };
4620
+ startImport: {
4621
+ function: string;
4622
+ [k: string]: unknown;
4623
+ };
4624
+ stopImport: {
4625
+ function: string;
4626
+ [k: string]: unknown;
4627
+ };
4628
+ importStatus: {
4629
+ function: string;
4630
+ [k: string]: unknown;
4631
+ };
4632
+ key: ModuleKeySchema;
4633
+ [k: string]: unknown;
4634
+ }
4635
+ | {
4636
+ title: string;
4637
+ icon: string;
4638
+ resource: string;
4639
+ resolver?:
4640
+ | {
4641
+ function: string;
4642
+ }
4643
+ | {
4644
+ endpoint: string;
4645
+ };
4646
+ render: 'native' | 'default';
4647
+ onDeleteImport?: {
4648
+ function: string;
4649
+ [k: string]: unknown;
4650
+ };
4651
+ startImport: {
4652
+ function: string;
4653
+ [k: string]: unknown;
4654
+ };
4655
+ stopImport: {
4656
+ function: string;
4657
+ [k: string]: unknown;
4658
+ };
4659
+ importStatus: {
4660
+ function: string;
4661
+ [k: string]: unknown;
4662
+ };
4663
+ key: ModuleKeySchema;
4664
+ [k: string]: unknown;
4665
+ }
4666
+ )[]
4619
4667
  ];
4620
4668
  'jiraServiceManagement:assetsSchemaPage'?: [
4621
4669
  {
@@ -4646,9 +4694,13 @@ export interface Modules {
4646
4694
  | {
4647
4695
  title: string;
4648
4696
  icon?: string;
4649
- resolver?: {
4650
- function: string;
4651
- };
4697
+ resolver?:
4698
+ | {
4699
+ function: string;
4700
+ }
4701
+ | {
4702
+ endpoint: string;
4703
+ };
4652
4704
  resource: string;
4653
4705
  key: ModuleKeySchema;
4654
4706
  [k: string]: unknown;
@@ -4666,9 +4718,13 @@ export interface Modules {
4666
4718
  | {
4667
4719
  title: string;
4668
4720
  icon?: string;
4669
- resolver?: {
4670
- function: string;
4671
- };
4721
+ resolver?:
4722
+ | {
4723
+ function: string;
4724
+ }
4725
+ | {
4726
+ endpoint: string;
4727
+ };
4672
4728
  resource: string;
4673
4729
  key: ModuleKeySchema;
4674
4730
  [k: string]: unknown;
@@ -4686,9 +4742,13 @@ export interface Modules {
4686
4742
  }
4687
4743
  | {
4688
4744
  title: string;
4689
- resolver?: {
4690
- function: string;
4691
- };
4745
+ resolver?:
4746
+ | {
4747
+ function: string;
4748
+ }
4749
+ | {
4750
+ endpoint: string;
4751
+ };
4692
4752
  resource: string;
4693
4753
  key: ModuleKeySchema;
4694
4754
  [k: string]: unknown;
@@ -4704,9 +4764,13 @@ export interface Modules {
4704
4764
  }
4705
4765
  | {
4706
4766
  title: string;
4707
- resolver?: {
4708
- function: string;
4709
- };
4767
+ resolver?:
4768
+ | {
4769
+ function: string;
4770
+ }
4771
+ | {
4772
+ endpoint: string;
4773
+ };
4710
4774
  resource: string;
4711
4775
  key: ModuleKeySchema;
4712
4776
  [k: string]: unknown;
@@ -4726,9 +4790,13 @@ export interface Modules {
4726
4790
  | {
4727
4791
  title: string;
4728
4792
  icon?: string;
4729
- resolver?: {
4730
- function: string;
4731
- };
4793
+ resolver?:
4794
+ | {
4795
+ function: string;
4796
+ }
4797
+ | {
4798
+ endpoint: string;
4799
+ };
4732
4800
  resource: string;
4733
4801
  key: ModuleKeySchema;
4734
4802
  [k: string]: unknown;
@@ -4746,9 +4814,13 @@ export interface Modules {
4746
4814
  | {
4747
4815
  title: string;
4748
4816
  icon?: string;
4749
- resolver?: {
4750
- function: string;
4751
- };
4817
+ resolver?:
4818
+ | {
4819
+ function: string;
4820
+ }
4821
+ | {
4822
+ endpoint: string;
4823
+ };
4752
4824
  resource: string;
4753
4825
  key: ModuleKeySchema;
4754
4826
  [k: string]: unknown;
@@ -4766,9 +4838,13 @@ export interface Modules {
4766
4838
  }
4767
4839
  | {
4768
4840
  title: string;
4769
- resolver?: {
4770
- function: string;
4771
- };
4841
+ resolver?:
4842
+ | {
4843
+ function: string;
4844
+ }
4845
+ | {
4846
+ endpoint: string;
4847
+ };
4772
4848
  resource: string;
4773
4849
  key: ModuleKeySchema;
4774
4850
  [k: string]: unknown;
@@ -4784,9 +4860,13 @@ export interface Modules {
4784
4860
  }
4785
4861
  | {
4786
4862
  title: string;
4787
- resolver?: {
4788
- function: string;
4789
- };
4863
+ resolver?:
4864
+ | {
4865
+ function: string;
4866
+ }
4867
+ | {
4868
+ endpoint: string;
4869
+ };
4790
4870
  resource: string;
4791
4871
  key: ModuleKeySchema;
4792
4872
  [k: string]: unknown;
@@ -4806,9 +4886,13 @@ export interface Modules {
4806
4886
  | {
4807
4887
  title: string;
4808
4888
  icon?: string;
4809
- resolver?: {
4810
- function: string;
4811
- };
4889
+ resolver?:
4890
+ | {
4891
+ function: string;
4892
+ }
4893
+ | {
4894
+ endpoint: string;
4895
+ };
4812
4896
  resource: string;
4813
4897
  key: ModuleKeySchema;
4814
4898
  [k: string]: unknown;
@@ -4826,9 +4910,13 @@ export interface Modules {
4826
4910
  | {
4827
4911
  title: string;
4828
4912
  icon?: string;
4829
- resolver?: {
4830
- function: string;
4831
- };
4913
+ resolver?:
4914
+ | {
4915
+ function: string;
4916
+ }
4917
+ | {
4918
+ endpoint: string;
4919
+ };
4832
4920
  resource: string;
4833
4921
  key: ModuleKeySchema;
4834
4922
  [k: string]: unknown;
@@ -4846,9 +4934,13 @@ export interface Modules {
4846
4934
  }
4847
4935
  | {
4848
4936
  title: string;
4849
- resolver?: {
4850
- function: string;
4851
- };
4937
+ resolver?:
4938
+ | {
4939
+ function: string;
4940
+ }
4941
+ | {
4942
+ endpoint: string;
4943
+ };
4852
4944
  resource: string;
4853
4945
  key: ModuleKeySchema;
4854
4946
  [k: string]: unknown;
@@ -4864,9 +4956,59 @@ export interface Modules {
4864
4956
  }
4865
4957
  | {
4866
4958
  title: string;
4867
- resolver?: {
4868
- function: string;
4869
- };
4959
+ resolver?:
4960
+ | {
4961
+ function: string;
4962
+ }
4963
+ | {
4964
+ endpoint: string;
4965
+ };
4966
+ resource: string;
4967
+ key: ModuleKeySchema;
4968
+ [k: string]: unknown;
4969
+ }
4970
+ )[]
4971
+ ];
4972
+ 'bitbucket:workspaceSettingsMenuPage'?: [
4973
+ (
4974
+ | {
4975
+ title: string;
4976
+ resource?: string;
4977
+ function: string;
4978
+ key: ModuleKeySchema;
4979
+ [k: string]: unknown;
4980
+ }
4981
+ | {
4982
+ title: string;
4983
+ resolver?:
4984
+ | {
4985
+ function: string;
4986
+ }
4987
+ | {
4988
+ endpoint: string;
4989
+ };
4990
+ resource: string;
4991
+ key: ModuleKeySchema;
4992
+ [k: string]: unknown;
4993
+ }
4994
+ ),
4995
+ ...(
4996
+ | {
4997
+ title: string;
4998
+ resource?: string;
4999
+ function: string;
5000
+ key: ModuleKeySchema;
5001
+ [k: string]: unknown;
5002
+ }
5003
+ | {
5004
+ title: string;
5005
+ resolver?:
5006
+ | {
5007
+ function: string;
5008
+ }
5009
+ | {
5010
+ endpoint: string;
5011
+ };
4870
5012
  resource: string;
4871
5013
  key: ModuleKeySchema;
4872
5014
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "5.3.0-next.4",
3
+ "version": "5.3.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {