@forge/manifest 4.18.0-next.8 → 4.18.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,47 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3996498: Validate that JQL function names are unique within the manifest
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 35638fc: add bitbucket:repoPullRequestAction module
|
|
12
|
+
- 8105c45: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @types/jest
|
|
15
|
+
- jest
|
|
16
|
+
- jest-environment-jsdom
|
|
17
|
+
|
|
18
|
+
- f42e94b: THEIA-262 | Add PE scope mapping for project events softdelete and restored
|
|
19
|
+
- 9b00c5e: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- typescript-json-schema
|
|
22
|
+
|
|
23
|
+
- 1a0d245: Added worklog related product events to scope mapping
|
|
24
|
+
- c07722b: Update manifest definitions
|
|
25
|
+
- d8a2379: Update manifest definitions
|
|
26
|
+
- 7e827fa: Update manifest definitions
|
|
27
|
+
- ef2ad94: Update manifest definitions
|
|
28
|
+
- Updated dependencies [801ea11]
|
|
29
|
+
- Updated dependencies [4999c4b]
|
|
30
|
+
- Updated dependencies [94b724a]
|
|
31
|
+
- @forge/util@1.3.1
|
|
32
|
+
|
|
33
|
+
## 4.18.0-next.10
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 7e827fa: Update manifest definitions
|
|
38
|
+
|
|
39
|
+
## 4.18.0-next.9
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- f42e94b: THEIA-262 | Add PE scope mapping for project events softdelete and restored
|
|
44
|
+
|
|
3
45
|
## 4.18.0-next.8
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|
|
@@ -1106,6 +1106,28 @@
|
|
|
1106
1106
|
"read:jira-work"
|
|
1107
1107
|
]
|
|
1108
1108
|
}
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"productEvent": "avi:jira:softdeleted:project",
|
|
1112
|
+
"oAuthScopes": {
|
|
1113
|
+
"beta": [
|
|
1114
|
+
"read:project:jira"
|
|
1115
|
+
],
|
|
1116
|
+
"current": [
|
|
1117
|
+
"read:jira-work"
|
|
1118
|
+
]
|
|
1119
|
+
}
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"productEvent": "avi:jira:restored:project",
|
|
1123
|
+
"oAuthScopes": {
|
|
1124
|
+
"beta": [
|
|
1125
|
+
"read:project:jira"
|
|
1126
|
+
],
|
|
1127
|
+
"current": [
|
|
1128
|
+
"read:jira-work"
|
|
1129
|
+
]
|
|
1130
|
+
}
|
|
1109
1131
|
}
|
|
1110
1132
|
]
|
|
1111
1133
|
}
|
|
@@ -8883,6 +8883,94 @@
|
|
|
8883
8883
|
},
|
|
8884
8884
|
"minItems": 1
|
|
8885
8885
|
},
|
|
8886
|
+
"bitbucket:repoPullRequestAction": {
|
|
8887
|
+
"type": "array",
|
|
8888
|
+
"items": {
|
|
8889
|
+
"oneOf": [
|
|
8890
|
+
{
|
|
8891
|
+
"type": "object",
|
|
8892
|
+
"properties": {
|
|
8893
|
+
"title": {
|
|
8894
|
+
"type": "string"
|
|
8895
|
+
},
|
|
8896
|
+
"iconUrl": {
|
|
8897
|
+
"type": "string"
|
|
8898
|
+
},
|
|
8899
|
+
"resource": {
|
|
8900
|
+
"type": "string",
|
|
8901
|
+
"minLength": 1,
|
|
8902
|
+
"maxLength": 23,
|
|
8903
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8904
|
+
},
|
|
8905
|
+
"function": {
|
|
8906
|
+
"type": "string",
|
|
8907
|
+
"minLength": 1,
|
|
8908
|
+
"maxLength": 255,
|
|
8909
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8910
|
+
},
|
|
8911
|
+
"key": {
|
|
8912
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8913
|
+
}
|
|
8914
|
+
},
|
|
8915
|
+
"required": [
|
|
8916
|
+
"title",
|
|
8917
|
+
"function",
|
|
8918
|
+
"key"
|
|
8919
|
+
],
|
|
8920
|
+
"not": {
|
|
8921
|
+
"required": [
|
|
8922
|
+
"unlicensedAccess"
|
|
8923
|
+
]
|
|
8924
|
+
}
|
|
8925
|
+
},
|
|
8926
|
+
{
|
|
8927
|
+
"type": "object",
|
|
8928
|
+
"properties": {
|
|
8929
|
+
"title": {
|
|
8930
|
+
"type": "string",
|
|
8931
|
+
"minLength": 1,
|
|
8932
|
+
"maxLength": 255
|
|
8933
|
+
},
|
|
8934
|
+
"resolver": {
|
|
8935
|
+
"additionalProperties": false,
|
|
8936
|
+
"type": "object",
|
|
8937
|
+
"properties": {
|
|
8938
|
+
"function": {
|
|
8939
|
+
"type": "string",
|
|
8940
|
+
"minLength": 1,
|
|
8941
|
+
"maxLength": 255,
|
|
8942
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8943
|
+
}
|
|
8944
|
+
},
|
|
8945
|
+
"required": [
|
|
8946
|
+
"function"
|
|
8947
|
+
]
|
|
8948
|
+
},
|
|
8949
|
+
"resource": {
|
|
8950
|
+
"type": "string",
|
|
8951
|
+
"minLength": 1,
|
|
8952
|
+
"maxLength": 23,
|
|
8953
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8954
|
+
},
|
|
8955
|
+
"key": {
|
|
8956
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8957
|
+
}
|
|
8958
|
+
},
|
|
8959
|
+
"required": [
|
|
8960
|
+
"title",
|
|
8961
|
+
"resource",
|
|
8962
|
+
"key"
|
|
8963
|
+
],
|
|
8964
|
+
"not": {
|
|
8965
|
+
"required": [
|
|
8966
|
+
"unlicensedAccess"
|
|
8967
|
+
]
|
|
8968
|
+
}
|
|
8969
|
+
}
|
|
8970
|
+
]
|
|
8971
|
+
},
|
|
8972
|
+
"minItems": 1
|
|
8973
|
+
},
|
|
8886
8974
|
"bitbucket:repoCodeOverviewCard": {
|
|
8887
8975
|
"type": "array",
|
|
8888
8976
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4495,6 +4495,46 @@ export interface Modules {
|
|
|
4495
4495
|
}
|
|
4496
4496
|
)[]
|
|
4497
4497
|
];
|
|
4498
|
+
'bitbucket:repoPullRequestAction'?: [
|
|
4499
|
+
(
|
|
4500
|
+
| {
|
|
4501
|
+
title: string;
|
|
4502
|
+
iconUrl?: string;
|
|
4503
|
+
resource?: string;
|
|
4504
|
+
function: string;
|
|
4505
|
+
key: ModuleKeySchema;
|
|
4506
|
+
[k: string]: unknown;
|
|
4507
|
+
}
|
|
4508
|
+
| {
|
|
4509
|
+
title: string;
|
|
4510
|
+
resolver?: {
|
|
4511
|
+
function: string;
|
|
4512
|
+
};
|
|
4513
|
+
resource: string;
|
|
4514
|
+
key: ModuleKeySchema;
|
|
4515
|
+
[k: string]: unknown;
|
|
4516
|
+
}
|
|
4517
|
+
),
|
|
4518
|
+
...(
|
|
4519
|
+
| {
|
|
4520
|
+
title: string;
|
|
4521
|
+
iconUrl?: string;
|
|
4522
|
+
resource?: string;
|
|
4523
|
+
function: string;
|
|
4524
|
+
key: ModuleKeySchema;
|
|
4525
|
+
[k: string]: unknown;
|
|
4526
|
+
}
|
|
4527
|
+
| {
|
|
4528
|
+
title: string;
|
|
4529
|
+
resolver?: {
|
|
4530
|
+
function: string;
|
|
4531
|
+
};
|
|
4532
|
+
resource: string;
|
|
4533
|
+
key: ModuleKeySchema;
|
|
4534
|
+
[k: string]: unknown;
|
|
4535
|
+
}
|
|
4536
|
+
)[]
|
|
4537
|
+
];
|
|
4498
4538
|
'bitbucket:repoCodeOverviewCard'?: [
|
|
4499
4539
|
(
|
|
4500
4540
|
| {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "4.18.0
|
|
3
|
+
"version": "4.18.0",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Atlassian",
|
|
24
24
|
"license": "UNLICENSED",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@forge/util": "1.3.1
|
|
26
|
+
"@forge/util": "1.3.1",
|
|
27
27
|
"ajv": "^6.12.6",
|
|
28
28
|
"cheerio": "^0.22.0",
|
|
29
29
|
"js-yaml": "^3.14.1",
|