@forge/manifest 4.20.0-next.5 → 4.20.0-next.7
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 +14 -0
- package/out/schema/manifest-schema.json +176 -0
- package/out/schema/manifest.d.ts +80 -0
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.20.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 00b3e6cb: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- typescript-json-schema
|
|
10
|
+
|
|
11
|
+
## 4.20.0-next.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- a8ff99b1: Update manifest definitions
|
|
16
|
+
|
|
3
17
|
## 4.20.0-next.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -9192,6 +9192,182 @@
|
|
|
9192
9192
|
},
|
|
9193
9193
|
"minItems": 1
|
|
9194
9194
|
},
|
|
9195
|
+
"bitbucket:repoMainMenuPage": {
|
|
9196
|
+
"type": "array",
|
|
9197
|
+
"items": {
|
|
9198
|
+
"oneOf": [
|
|
9199
|
+
{
|
|
9200
|
+
"type": "object",
|
|
9201
|
+
"properties": {
|
|
9202
|
+
"title": {
|
|
9203
|
+
"type": "string"
|
|
9204
|
+
},
|
|
9205
|
+
"iconUrl": {
|
|
9206
|
+
"type": "string"
|
|
9207
|
+
},
|
|
9208
|
+
"resource": {
|
|
9209
|
+
"type": "string",
|
|
9210
|
+
"minLength": 1,
|
|
9211
|
+
"maxLength": 23,
|
|
9212
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9213
|
+
},
|
|
9214
|
+
"function": {
|
|
9215
|
+
"type": "string",
|
|
9216
|
+
"minLength": 1,
|
|
9217
|
+
"maxLength": 255,
|
|
9218
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9219
|
+
},
|
|
9220
|
+
"key": {
|
|
9221
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
9222
|
+
}
|
|
9223
|
+
},
|
|
9224
|
+
"required": [
|
|
9225
|
+
"title",
|
|
9226
|
+
"function",
|
|
9227
|
+
"key"
|
|
9228
|
+
],
|
|
9229
|
+
"not": {
|
|
9230
|
+
"required": [
|
|
9231
|
+
"unlicensedAccess"
|
|
9232
|
+
]
|
|
9233
|
+
}
|
|
9234
|
+
},
|
|
9235
|
+
{
|
|
9236
|
+
"type": "object",
|
|
9237
|
+
"properties": {
|
|
9238
|
+
"title": {
|
|
9239
|
+
"type": "string",
|
|
9240
|
+
"minLength": 1,
|
|
9241
|
+
"maxLength": 255
|
|
9242
|
+
},
|
|
9243
|
+
"resolver": {
|
|
9244
|
+
"additionalProperties": false,
|
|
9245
|
+
"type": "object",
|
|
9246
|
+
"properties": {
|
|
9247
|
+
"function": {
|
|
9248
|
+
"type": "string",
|
|
9249
|
+
"minLength": 1,
|
|
9250
|
+
"maxLength": 255,
|
|
9251
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9252
|
+
}
|
|
9253
|
+
},
|
|
9254
|
+
"required": [
|
|
9255
|
+
"function"
|
|
9256
|
+
]
|
|
9257
|
+
},
|
|
9258
|
+
"resource": {
|
|
9259
|
+
"type": "string",
|
|
9260
|
+
"minLength": 1,
|
|
9261
|
+
"maxLength": 23,
|
|
9262
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9263
|
+
},
|
|
9264
|
+
"key": {
|
|
9265
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
9266
|
+
}
|
|
9267
|
+
},
|
|
9268
|
+
"required": [
|
|
9269
|
+
"title",
|
|
9270
|
+
"resource",
|
|
9271
|
+
"key"
|
|
9272
|
+
],
|
|
9273
|
+
"not": {
|
|
9274
|
+
"required": [
|
|
9275
|
+
"unlicensedAccess"
|
|
9276
|
+
]
|
|
9277
|
+
}
|
|
9278
|
+
}
|
|
9279
|
+
]
|
|
9280
|
+
},
|
|
9281
|
+
"minItems": 1
|
|
9282
|
+
},
|
|
9283
|
+
"bitbucket:repoSettingsMenuPage": {
|
|
9284
|
+
"type": "array",
|
|
9285
|
+
"items": {
|
|
9286
|
+
"oneOf": [
|
|
9287
|
+
{
|
|
9288
|
+
"type": "object",
|
|
9289
|
+
"properties": {
|
|
9290
|
+
"title": {
|
|
9291
|
+
"type": "string"
|
|
9292
|
+
},
|
|
9293
|
+
"iconUrl": {
|
|
9294
|
+
"type": "string"
|
|
9295
|
+
},
|
|
9296
|
+
"resource": {
|
|
9297
|
+
"type": "string",
|
|
9298
|
+
"minLength": 1,
|
|
9299
|
+
"maxLength": 23,
|
|
9300
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9301
|
+
},
|
|
9302
|
+
"function": {
|
|
9303
|
+
"type": "string",
|
|
9304
|
+
"minLength": 1,
|
|
9305
|
+
"maxLength": 255,
|
|
9306
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9307
|
+
},
|
|
9308
|
+
"key": {
|
|
9309
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
9310
|
+
}
|
|
9311
|
+
},
|
|
9312
|
+
"required": [
|
|
9313
|
+
"title",
|
|
9314
|
+
"function",
|
|
9315
|
+
"key"
|
|
9316
|
+
],
|
|
9317
|
+
"not": {
|
|
9318
|
+
"required": [
|
|
9319
|
+
"unlicensedAccess"
|
|
9320
|
+
]
|
|
9321
|
+
}
|
|
9322
|
+
},
|
|
9323
|
+
{
|
|
9324
|
+
"type": "object",
|
|
9325
|
+
"properties": {
|
|
9326
|
+
"title": {
|
|
9327
|
+
"type": "string",
|
|
9328
|
+
"minLength": 1,
|
|
9329
|
+
"maxLength": 255
|
|
9330
|
+
},
|
|
9331
|
+
"resolver": {
|
|
9332
|
+
"additionalProperties": false,
|
|
9333
|
+
"type": "object",
|
|
9334
|
+
"properties": {
|
|
9335
|
+
"function": {
|
|
9336
|
+
"type": "string",
|
|
9337
|
+
"minLength": 1,
|
|
9338
|
+
"maxLength": 255,
|
|
9339
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9340
|
+
}
|
|
9341
|
+
},
|
|
9342
|
+
"required": [
|
|
9343
|
+
"function"
|
|
9344
|
+
]
|
|
9345
|
+
},
|
|
9346
|
+
"resource": {
|
|
9347
|
+
"type": "string",
|
|
9348
|
+
"minLength": 1,
|
|
9349
|
+
"maxLength": 23,
|
|
9350
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9351
|
+
},
|
|
9352
|
+
"key": {
|
|
9353
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
9354
|
+
}
|
|
9355
|
+
},
|
|
9356
|
+
"required": [
|
|
9357
|
+
"title",
|
|
9358
|
+
"resource",
|
|
9359
|
+
"key"
|
|
9360
|
+
],
|
|
9361
|
+
"not": {
|
|
9362
|
+
"required": [
|
|
9363
|
+
"unlicensedAccess"
|
|
9364
|
+
]
|
|
9365
|
+
}
|
|
9366
|
+
}
|
|
9367
|
+
]
|
|
9368
|
+
},
|
|
9369
|
+
"minItems": 1
|
|
9370
|
+
},
|
|
9195
9371
|
"connect-jira:keyboardShortcuts": {
|
|
9196
9372
|
"type": "array",
|
|
9197
9373
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4633,6 +4633,86 @@ export interface Modules {
|
|
|
4633
4633
|
}
|
|
4634
4634
|
)[]
|
|
4635
4635
|
];
|
|
4636
|
+
'bitbucket:repoMainMenuPage'?: [
|
|
4637
|
+
(
|
|
4638
|
+
| {
|
|
4639
|
+
title: string;
|
|
4640
|
+
iconUrl?: string;
|
|
4641
|
+
resource?: string;
|
|
4642
|
+
function: string;
|
|
4643
|
+
key: ModuleKeySchema;
|
|
4644
|
+
[k: string]: unknown;
|
|
4645
|
+
}
|
|
4646
|
+
| {
|
|
4647
|
+
title: string;
|
|
4648
|
+
resolver?: {
|
|
4649
|
+
function: string;
|
|
4650
|
+
};
|
|
4651
|
+
resource: string;
|
|
4652
|
+
key: ModuleKeySchema;
|
|
4653
|
+
[k: string]: unknown;
|
|
4654
|
+
}
|
|
4655
|
+
),
|
|
4656
|
+
...(
|
|
4657
|
+
| {
|
|
4658
|
+
title: string;
|
|
4659
|
+
iconUrl?: string;
|
|
4660
|
+
resource?: string;
|
|
4661
|
+
function: string;
|
|
4662
|
+
key: ModuleKeySchema;
|
|
4663
|
+
[k: string]: unknown;
|
|
4664
|
+
}
|
|
4665
|
+
| {
|
|
4666
|
+
title: string;
|
|
4667
|
+
resolver?: {
|
|
4668
|
+
function: string;
|
|
4669
|
+
};
|
|
4670
|
+
resource: string;
|
|
4671
|
+
key: ModuleKeySchema;
|
|
4672
|
+
[k: string]: unknown;
|
|
4673
|
+
}
|
|
4674
|
+
)[]
|
|
4675
|
+
];
|
|
4676
|
+
'bitbucket:repoSettingsMenuPage'?: [
|
|
4677
|
+
(
|
|
4678
|
+
| {
|
|
4679
|
+
title: string;
|
|
4680
|
+
iconUrl?: string;
|
|
4681
|
+
resource?: string;
|
|
4682
|
+
function: string;
|
|
4683
|
+
key: ModuleKeySchema;
|
|
4684
|
+
[k: string]: unknown;
|
|
4685
|
+
}
|
|
4686
|
+
| {
|
|
4687
|
+
title: string;
|
|
4688
|
+
resolver?: {
|
|
4689
|
+
function: string;
|
|
4690
|
+
};
|
|
4691
|
+
resource: string;
|
|
4692
|
+
key: ModuleKeySchema;
|
|
4693
|
+
[k: string]: unknown;
|
|
4694
|
+
}
|
|
4695
|
+
),
|
|
4696
|
+
...(
|
|
4697
|
+
| {
|
|
4698
|
+
title: string;
|
|
4699
|
+
iconUrl?: string;
|
|
4700
|
+
resource?: string;
|
|
4701
|
+
function: string;
|
|
4702
|
+
key: ModuleKeySchema;
|
|
4703
|
+
[k: string]: unknown;
|
|
4704
|
+
}
|
|
4705
|
+
| {
|
|
4706
|
+
title: string;
|
|
4707
|
+
resolver?: {
|
|
4708
|
+
function: string;
|
|
4709
|
+
};
|
|
4710
|
+
resource: string;
|
|
4711
|
+
key: ModuleKeySchema;
|
|
4712
|
+
[k: string]: unknown;
|
|
4713
|
+
}
|
|
4714
|
+
)[]
|
|
4715
|
+
];
|
|
4636
4716
|
'connect-jira:keyboardShortcuts'?: [
|
|
4637
4717
|
{
|
|
4638
4718
|
shortcut?: string;
|
|
@@ -143,6 +143,7 @@
|
|
|
143
143
|
"read:dashboard.property:jira",
|
|
144
144
|
"read:deployment-info:jira",
|
|
145
145
|
"read:deployment:jira-software",
|
|
146
|
+
"read:design:jira",
|
|
146
147
|
"read:dev-info:jira",
|
|
147
148
|
"read:epic:jira-software",
|
|
148
149
|
"read:event:compass",
|
|
@@ -323,6 +324,7 @@
|
|
|
323
324
|
"write:dashboard.property:jira",
|
|
324
325
|
"write:deployment-info:jira",
|
|
325
326
|
"write:deployment:jira-software",
|
|
327
|
+
"write:design:jira",
|
|
326
328
|
"write:dev-info:jira",
|
|
327
329
|
"write:epic:jira-software",
|
|
328
330
|
"write:event:compass",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "4.20.0-next.
|
|
3
|
+
"version": "4.20.0-next.7",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"json-schema-to-typescript": "^9.1.1",
|
|
31
31
|
"lodash": "^4.17.21",
|
|
32
32
|
"node-fetch": "2.7.0",
|
|
33
|
-
"typescript-json-schema": "^0.
|
|
33
|
+
"typescript-json-schema": "^0.60.0"
|
|
34
34
|
}
|
|
35
35
|
}
|