@forge/manifest 5.0.0 → 5.0.1-next.1
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 +12 -0
- package/out/schema/manifest-schema.json +12 -12
- package/out/schema/manifest.d.ts +12 -12
- package/out/scopes/shipyard-scopes.json +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9018,7 +9018,7 @@
|
|
|
9018
9018
|
"title": {
|
|
9019
9019
|
"type": "string"
|
|
9020
9020
|
},
|
|
9021
|
-
"
|
|
9021
|
+
"icon": {
|
|
9022
9022
|
"type": "string"
|
|
9023
9023
|
},
|
|
9024
9024
|
"resource": {
|
|
@@ -9056,6 +9056,9 @@
|
|
|
9056
9056
|
"minLength": 1,
|
|
9057
9057
|
"maxLength": 255
|
|
9058
9058
|
},
|
|
9059
|
+
"icon": {
|
|
9060
|
+
"type": "string"
|
|
9061
|
+
},
|
|
9059
9062
|
"resolver": {
|
|
9060
9063
|
"additionalProperties": false,
|
|
9061
9064
|
"type": "object",
|
|
@@ -9106,9 +9109,6 @@
|
|
|
9106
9109
|
"title": {
|
|
9107
9110
|
"type": "string"
|
|
9108
9111
|
},
|
|
9109
|
-
"iconUrl": {
|
|
9110
|
-
"type": "string"
|
|
9111
|
-
},
|
|
9112
9112
|
"resource": {
|
|
9113
9113
|
"type": "string",
|
|
9114
9114
|
"minLength": 1,
|
|
@@ -9194,7 +9194,7 @@
|
|
|
9194
9194
|
"title": {
|
|
9195
9195
|
"type": "string"
|
|
9196
9196
|
},
|
|
9197
|
-
"
|
|
9197
|
+
"icon": {
|
|
9198
9198
|
"type": "string"
|
|
9199
9199
|
},
|
|
9200
9200
|
"resource": {
|
|
@@ -9232,6 +9232,9 @@
|
|
|
9232
9232
|
"minLength": 1,
|
|
9233
9233
|
"maxLength": 255
|
|
9234
9234
|
},
|
|
9235
|
+
"icon": {
|
|
9236
|
+
"type": "string"
|
|
9237
|
+
},
|
|
9235
9238
|
"resolver": {
|
|
9236
9239
|
"additionalProperties": false,
|
|
9237
9240
|
"type": "object",
|
|
@@ -9282,9 +9285,6 @@
|
|
|
9282
9285
|
"title": {
|
|
9283
9286
|
"type": "string"
|
|
9284
9287
|
},
|
|
9285
|
-
"iconUrl": {
|
|
9286
|
-
"type": "string"
|
|
9287
|
-
},
|
|
9288
9288
|
"resource": {
|
|
9289
9289
|
"type": "string",
|
|
9290
9290
|
"minLength": 1,
|
|
@@ -9370,7 +9370,7 @@
|
|
|
9370
9370
|
"title": {
|
|
9371
9371
|
"type": "string"
|
|
9372
9372
|
},
|
|
9373
|
-
"
|
|
9373
|
+
"icon": {
|
|
9374
9374
|
"type": "string"
|
|
9375
9375
|
},
|
|
9376
9376
|
"resource": {
|
|
@@ -9408,6 +9408,9 @@
|
|
|
9408
9408
|
"minLength": 1,
|
|
9409
9409
|
"maxLength": 255
|
|
9410
9410
|
},
|
|
9411
|
+
"icon": {
|
|
9412
|
+
"type": "string"
|
|
9413
|
+
},
|
|
9411
9414
|
"resolver": {
|
|
9412
9415
|
"additionalProperties": false,
|
|
9413
9416
|
"type": "object",
|
|
@@ -9458,9 +9461,6 @@
|
|
|
9458
9461
|
"title": {
|
|
9459
9462
|
"type": "string"
|
|
9460
9463
|
},
|
|
9461
|
-
"iconUrl": {
|
|
9462
|
-
"type": "string"
|
|
9463
|
-
},
|
|
9464
9464
|
"resource": {
|
|
9465
9465
|
"type": "string",
|
|
9466
9466
|
"minLength": 1,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4583,7 +4583,7 @@ export interface Modules {
|
|
|
4583
4583
|
(
|
|
4584
4584
|
| {
|
|
4585
4585
|
title: string;
|
|
4586
|
-
|
|
4586
|
+
icon?: string;
|
|
4587
4587
|
resource?: string;
|
|
4588
4588
|
function: string;
|
|
4589
4589
|
key: ModuleKeySchema;
|
|
@@ -4591,6 +4591,7 @@ export interface Modules {
|
|
|
4591
4591
|
}
|
|
4592
4592
|
| {
|
|
4593
4593
|
title: string;
|
|
4594
|
+
icon?: string;
|
|
4594
4595
|
resolver?: {
|
|
4595
4596
|
function: string;
|
|
4596
4597
|
};
|
|
@@ -4602,7 +4603,7 @@ export interface Modules {
|
|
|
4602
4603
|
...(
|
|
4603
4604
|
| {
|
|
4604
4605
|
title: string;
|
|
4605
|
-
|
|
4606
|
+
icon?: string;
|
|
4606
4607
|
resource?: string;
|
|
4607
4608
|
function: string;
|
|
4608
4609
|
key: ModuleKeySchema;
|
|
@@ -4610,6 +4611,7 @@ export interface Modules {
|
|
|
4610
4611
|
}
|
|
4611
4612
|
| {
|
|
4612
4613
|
title: string;
|
|
4614
|
+
icon?: string;
|
|
4613
4615
|
resolver?: {
|
|
4614
4616
|
function: string;
|
|
4615
4617
|
};
|
|
@@ -4623,7 +4625,6 @@ export interface Modules {
|
|
|
4623
4625
|
(
|
|
4624
4626
|
| {
|
|
4625
4627
|
title: string;
|
|
4626
|
-
iconUrl?: string;
|
|
4627
4628
|
resource?: string;
|
|
4628
4629
|
function: string;
|
|
4629
4630
|
key: ModuleKeySchema;
|
|
@@ -4642,7 +4643,6 @@ export interface Modules {
|
|
|
4642
4643
|
...(
|
|
4643
4644
|
| {
|
|
4644
4645
|
title: string;
|
|
4645
|
-
iconUrl?: string;
|
|
4646
4646
|
resource?: string;
|
|
4647
4647
|
function: string;
|
|
4648
4648
|
key: ModuleKeySchema;
|
|
@@ -4663,7 +4663,7 @@ export interface Modules {
|
|
|
4663
4663
|
(
|
|
4664
4664
|
| {
|
|
4665
4665
|
title: string;
|
|
4666
|
-
|
|
4666
|
+
icon?: string;
|
|
4667
4667
|
resource?: string;
|
|
4668
4668
|
function: string;
|
|
4669
4669
|
key: ModuleKeySchema;
|
|
@@ -4671,6 +4671,7 @@ export interface Modules {
|
|
|
4671
4671
|
}
|
|
4672
4672
|
| {
|
|
4673
4673
|
title: string;
|
|
4674
|
+
icon?: string;
|
|
4674
4675
|
resolver?: {
|
|
4675
4676
|
function: string;
|
|
4676
4677
|
};
|
|
@@ -4682,7 +4683,7 @@ export interface Modules {
|
|
|
4682
4683
|
...(
|
|
4683
4684
|
| {
|
|
4684
4685
|
title: string;
|
|
4685
|
-
|
|
4686
|
+
icon?: string;
|
|
4686
4687
|
resource?: string;
|
|
4687
4688
|
function: string;
|
|
4688
4689
|
key: ModuleKeySchema;
|
|
@@ -4690,6 +4691,7 @@ export interface Modules {
|
|
|
4690
4691
|
}
|
|
4691
4692
|
| {
|
|
4692
4693
|
title: string;
|
|
4694
|
+
icon?: string;
|
|
4693
4695
|
resolver?: {
|
|
4694
4696
|
function: string;
|
|
4695
4697
|
};
|
|
@@ -4703,7 +4705,6 @@ export interface Modules {
|
|
|
4703
4705
|
(
|
|
4704
4706
|
| {
|
|
4705
4707
|
title: string;
|
|
4706
|
-
iconUrl?: string;
|
|
4707
4708
|
resource?: string;
|
|
4708
4709
|
function: string;
|
|
4709
4710
|
key: ModuleKeySchema;
|
|
@@ -4722,7 +4723,6 @@ export interface Modules {
|
|
|
4722
4723
|
...(
|
|
4723
4724
|
| {
|
|
4724
4725
|
title: string;
|
|
4725
|
-
iconUrl?: string;
|
|
4726
4726
|
resource?: string;
|
|
4727
4727
|
function: string;
|
|
4728
4728
|
key: ModuleKeySchema;
|
|
@@ -4743,7 +4743,7 @@ export interface Modules {
|
|
|
4743
4743
|
(
|
|
4744
4744
|
| {
|
|
4745
4745
|
title: string;
|
|
4746
|
-
|
|
4746
|
+
icon?: string;
|
|
4747
4747
|
resource?: string;
|
|
4748
4748
|
function: string;
|
|
4749
4749
|
key: ModuleKeySchema;
|
|
@@ -4751,6 +4751,7 @@ export interface Modules {
|
|
|
4751
4751
|
}
|
|
4752
4752
|
| {
|
|
4753
4753
|
title: string;
|
|
4754
|
+
icon?: string;
|
|
4754
4755
|
resolver?: {
|
|
4755
4756
|
function: string;
|
|
4756
4757
|
};
|
|
@@ -4762,7 +4763,7 @@ export interface Modules {
|
|
|
4762
4763
|
...(
|
|
4763
4764
|
| {
|
|
4764
4765
|
title: string;
|
|
4765
|
-
|
|
4766
|
+
icon?: string;
|
|
4766
4767
|
resource?: string;
|
|
4767
4768
|
function: string;
|
|
4768
4769
|
key: ModuleKeySchema;
|
|
@@ -4770,6 +4771,7 @@ export interface Modules {
|
|
|
4770
4771
|
}
|
|
4771
4772
|
| {
|
|
4772
4773
|
title: string;
|
|
4774
|
+
icon?: string;
|
|
4773
4775
|
resolver?: {
|
|
4774
4776
|
function: string;
|
|
4775
4777
|
};
|
|
@@ -4783,7 +4785,6 @@ export interface Modules {
|
|
|
4783
4785
|
(
|
|
4784
4786
|
| {
|
|
4785
4787
|
title: string;
|
|
4786
|
-
iconUrl?: string;
|
|
4787
4788
|
resource?: string;
|
|
4788
4789
|
function: string;
|
|
4789
4790
|
key: ModuleKeySchema;
|
|
@@ -4802,7 +4803,6 @@ export interface Modules {
|
|
|
4802
4803
|
...(
|
|
4803
4804
|
| {
|
|
4804
4805
|
title: string;
|
|
4805
|
-
iconUrl?: string;
|
|
4806
4806
|
resource?: string;
|
|
4807
4807
|
function: string;
|
|
4808
4808
|
key: ModuleKeySchema;
|
|
@@ -140,6 +140,8 @@
|
|
|
140
140
|
"read:custom-content:confluence",
|
|
141
141
|
"read:custom-field-contextual-configuration:jira",
|
|
142
142
|
"read:customer:jira-service-management",
|
|
143
|
+
"read:customer.detail-field:jira-service-management",
|
|
144
|
+
"read:customer.detail:jira-service-management",
|
|
143
145
|
"read:dashboard:jira",
|
|
144
146
|
"read:dashboard.property:jira",
|
|
145
147
|
"read:deployment-info:jira",
|
|
@@ -204,6 +206,8 @@
|
|
|
204
206
|
"read:metric:compass",
|
|
205
207
|
"read:notification-scheme:jira",
|
|
206
208
|
"read:organization:jira-service-management",
|
|
209
|
+
"read:organization.detail-field:jira-service-management",
|
|
210
|
+
"read:organization.detail:jira-service-management",
|
|
207
211
|
"read:organization.property:jira-service-management",
|
|
208
212
|
"read:organization.user:jira-service-management",
|
|
209
213
|
"read:page:confluence",
|
|
@@ -322,6 +326,8 @@
|
|
|
322
326
|
"write:custom-content:confluence",
|
|
323
327
|
"write:custom-field-contextual-configuration:jira",
|
|
324
328
|
"write:customer:jira-service-management",
|
|
329
|
+
"write:customer.detail-field:jira-service-management",
|
|
330
|
+
"write:customer.detail:jira-service-management",
|
|
325
331
|
"write:dashboard:jira",
|
|
326
332
|
"write:dashboard.property:jira",
|
|
327
333
|
"write:deployment-info:jira",
|
|
@@ -366,6 +372,8 @@
|
|
|
366
372
|
"write:membership:teams",
|
|
367
373
|
"write:metric:compass",
|
|
368
374
|
"write:organization:jira-service-management",
|
|
375
|
+
"write:organization.detail-field:jira-service-management",
|
|
376
|
+
"write:organization.detail:jira-service-management",
|
|
369
377
|
"write:organization.property:jira-service-management",
|
|
370
378
|
"write:organization.user:jira-service-management",
|
|
371
379
|
"write:page:confluence",
|