@forge/manifest 4.17.0-next.9 → 4.17.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 +60 -0
- package/out/schema/display-conditions-schema.json +48 -30
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,65 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 12737d0: CCECO-1377 Added a new manifest lint rule isSpaceAdmin to Confluence modules
|
|
8
|
+
- 3471747: Because hasServiceDeskAccess is deprecated from some time and changed to hasServiceManagementAccess Forge linter enables devs to properly pass code linter review. This change is to enable linter pass (which refers to schema) but also not to brake down code for those who are still using the old experience.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- a31a1f95: Added component related product events to scope mapping
|
|
13
|
+
- a006df23: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- @types/node
|
|
16
|
+
|
|
17
|
+
- 1c36258: Bumping dependencies via Renovate:
|
|
18
|
+
|
|
19
|
+
- typescript-json-schema
|
|
20
|
+
|
|
21
|
+
- 33e6ca1e: Bumping dependencies via Renovate:
|
|
22
|
+
|
|
23
|
+
- node-fetch
|
|
24
|
+
|
|
25
|
+
- 463e90b3: Added version related product events to scope mapping
|
|
26
|
+
- 607ae912: Bumping dependencies via Renovate:
|
|
27
|
+
|
|
28
|
+
- @types/node
|
|
29
|
+
|
|
30
|
+
- 8e172afc: Added project related product event scope mapping
|
|
31
|
+
- 9e15cc40: Bumping dependencies via Renovate:
|
|
32
|
+
|
|
33
|
+
- js-yaml
|
|
34
|
+
- @types/js-yaml
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [a1424a3]
|
|
37
|
+
- Updated dependencies [04271c2]
|
|
38
|
+
- Updated dependencies [6715b6a]
|
|
39
|
+
- @forge/util@1.3.0
|
|
40
|
+
|
|
41
|
+
## 4.17.0-next.12
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [a1424a3c]
|
|
46
|
+
- @forge/util@1.3.0-next.2
|
|
47
|
+
|
|
48
|
+
## 4.17.0-next.11
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- 1c36258c: Bumping dependencies via Renovate:
|
|
53
|
+
|
|
54
|
+
- typescript-json-schema
|
|
55
|
+
|
|
56
|
+
## 4.17.0-next.10
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies [6715b6a1]
|
|
61
|
+
- @forge/util@1.3.0-next.1
|
|
62
|
+
|
|
3
63
|
## 4.17.0-next.9
|
|
4
64
|
|
|
5
65
|
### Minor Changes
|
|
@@ -5,22 +5,7 @@
|
|
|
5
5
|
"Confluence": {
|
|
6
6
|
"anyOf": [
|
|
7
7
|
{
|
|
8
|
-
"
|
|
9
|
-
"properties": {
|
|
10
|
-
"isAdmin": {
|
|
11
|
-
"type": "boolean"
|
|
12
|
-
},
|
|
13
|
-
"isLoggedIn": {
|
|
14
|
-
"type": "boolean"
|
|
15
|
-
},
|
|
16
|
-
"isSiteAdmin": {
|
|
17
|
-
"type": "boolean"
|
|
18
|
-
},
|
|
19
|
-
"isSpaceAdmin": {
|
|
20
|
-
"type": "boolean"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"type": "object"
|
|
8
|
+
"$ref": "#/definitions/ConfluenceSpecificProperties"
|
|
24
9
|
},
|
|
25
10
|
{
|
|
26
11
|
"additionalProperties": false,
|
|
@@ -120,25 +105,46 @@
|
|
|
120
105
|
},
|
|
121
106
|
{
|
|
122
107
|
"items": {
|
|
123
|
-
"
|
|
124
|
-
{
|
|
125
|
-
"$ref": "#/definitions/EntityPropertyExistsItem"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"$ref": "#/definitions/EntityPropertyEqualToItem"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"$ref": "#/definitions/EntityPropertyContainsAnyItem"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"$ref": "#/definitions/EntityPropertyContainsAllItem"
|
|
135
|
-
}
|
|
136
|
-
]
|
|
108
|
+
"$ref": "#/definitions/EntityPropertyCondition"
|
|
137
109
|
},
|
|
138
110
|
"type": "array"
|
|
139
111
|
}
|
|
140
112
|
]
|
|
141
113
|
},
|
|
114
|
+
"ConfluenceSpecificProperties": {
|
|
115
|
+
"additionalProperties": false,
|
|
116
|
+
"properties": {
|
|
117
|
+
"isAdmin": {
|
|
118
|
+
"type": "boolean"
|
|
119
|
+
},
|
|
120
|
+
"isLoggedIn": {
|
|
121
|
+
"type": "boolean"
|
|
122
|
+
},
|
|
123
|
+
"isSiteAdmin": {
|
|
124
|
+
"type": "boolean"
|
|
125
|
+
},
|
|
126
|
+
"isSpaceAdmin": {
|
|
127
|
+
"type": "boolean"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"type": "object"
|
|
131
|
+
},
|
|
132
|
+
"EntityPropertyCondition": {
|
|
133
|
+
"anyOf": [
|
|
134
|
+
{
|
|
135
|
+
"$ref": "#/definitions/EntityPropertyExistsItem"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"$ref": "#/definitions/EntityPropertyEqualToItem"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"$ref": "#/definitions/EntityPropertyContainsAnyItem"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"$ref": "#/definitions/EntityPropertyContainsAllItem"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
142
148
|
"EntityPropertyContainsAll": {
|
|
143
149
|
"additionalProperties": false,
|
|
144
150
|
"properties": {
|
|
@@ -283,6 +289,9 @@
|
|
|
283
289
|
"type": "string"
|
|
284
290
|
},
|
|
285
291
|
"IssueView": {
|
|
292
|
+
"$ref": "#/definitions/IssueView_1"
|
|
293
|
+
},
|
|
294
|
+
"IssueView_1": {
|
|
286
295
|
"additionalProperties": false,
|
|
287
296
|
"properties": {
|
|
288
297
|
"canAddComments": {
|
|
@@ -421,6 +430,9 @@
|
|
|
421
430
|
"type": "object"
|
|
422
431
|
},
|
|
423
432
|
"Jira": {
|
|
433
|
+
"$ref": "#/definitions/Jira_1"
|
|
434
|
+
},
|
|
435
|
+
"Jira_1": {
|
|
424
436
|
"additionalProperties": false,
|
|
425
437
|
"properties": {
|
|
426
438
|
"hasCoreAccess": {
|
|
@@ -448,6 +460,9 @@
|
|
|
448
460
|
"type": "object"
|
|
449
461
|
},
|
|
450
462
|
"ProjectPage": {
|
|
463
|
+
"$ref": "#/definitions/ProjectPage_1"
|
|
464
|
+
},
|
|
465
|
+
"ProjectPage_1": {
|
|
451
466
|
"additionalProperties": false,
|
|
452
467
|
"properties": {
|
|
453
468
|
"hasCoreAccess": {
|
|
@@ -493,6 +508,9 @@
|
|
|
493
508
|
"type": "object"
|
|
494
509
|
},
|
|
495
510
|
"ProjectSettingsPage": {
|
|
511
|
+
"$ref": "#/definitions/ProjectSettingsPage_1"
|
|
512
|
+
},
|
|
513
|
+
"ProjectSettingsPage_1": {
|
|
496
514
|
"additionalProperties": false,
|
|
497
515
|
"properties": {
|
|
498
516
|
"hasCoreAccess": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "4.17.0
|
|
3
|
+
"version": "4.17.0",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"author": "Atlassian",
|
|
24
24
|
"license": "UNLICENSED",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@forge/util": "1.
|
|
26
|
+
"@forge/util": "1.3.0",
|
|
27
27
|
"ajv": "^6.12.6",
|
|
28
28
|
"cheerio": "^0.22.0",
|
|
29
29
|
"js-yaml": "^3.14.1",
|
|
30
30
|
"json-schema-to-typescript": "^9.1.1",
|
|
31
31
|
"lodash": "^4.17.21",
|
|
32
32
|
"node-fetch": "2.6.12",
|
|
33
|
-
"typescript-json-schema": "^0.
|
|
33
|
+
"typescript-json-schema": "^0.58.1"
|
|
34
34
|
}
|
|
35
35
|
}
|