@forge/manifest 4.17.0-next.10 → 4.17.0-next.12

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,20 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 4.17.0-next.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a1424a3c]
8
+ - @forge/util@1.3.0-next.2
9
+
10
+ ## 4.17.0-next.11
11
+
12
+ ### Patch Changes
13
+
14
+ - 1c36258c: Bumping dependencies via Renovate:
15
+
16
+ - typescript-json-schema
17
+
3
18
  ## 4.17.0-next.10
4
19
 
5
20
  ### Patch Changes
@@ -5,22 +5,7 @@
5
5
  "Confluence": {
6
6
  "anyOf": [
7
7
  {
8
- "additionalProperties": false,
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
- "anyOf": [
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-next.10",
3
+ "version": "4.17.0-next.12",
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.3.0-next.1",
26
+ "@forge/util": "1.3.0-next.2",
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.45.1"
33
+ "typescript-json-schema": "^0.58.1"
34
34
  }
35
35
  }