@forge/manifest 0.0.0-experimental-7c72fec → 0.0.0-experimental-edeb51b
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 +375 -3
- package/out/mapping/product-event-to-scope-mapping.json +334 -110
- package/out/processor/basic-validation-processor.d.ts.map +1 -1
- package/out/processor/basic-validation-processor.js +2 -1
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -1
- package/out/schema/basic-manifest-schema.json +23 -0
- package/out/schema/basic-manifest.d.ts +9 -0
- package/out/schema/manifest-schema.json +2055 -460
- package/out/schema/manifest.d.ts +1373 -463
- package/out/scopes/shipyard-scopes.json +20 -0
- package/out/text/errors.d.ts +16 -3
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +16 -3
- package/out/types/egress-types.d.ts +1 -1
- package/out/types/egress-types.d.ts.map +1 -1
- package/out/types/egress-types.js +3 -1
- package/out/types/module-types.d.ts +5 -1
- package/out/types/module-types.d.ts.map +1 -1
- package/out/types/module-types.js +5 -1
- package/out/validators/entity-property-validator.d.ts +6 -0
- package/out/validators/entity-property-validator.d.ts.map +1 -0
- package/out/validators/entity-property-validator.js +35 -0
- package/out/validators/index.d.ts +1 -0
- package/out/validators/index.d.ts.map +1 -1
- package/out/validators/index.js +1 -0
- package/out/validators/modules-validator.d.ts.map +1 -1
- package/out/validators/modules-validator.js +25 -8
- package/out/validators/modules-validators/confluence/global-settings.d.ts +5 -0
- package/out/validators/modules-validators/confluence/global-settings.d.ts.map +1 -0
- package/out/validators/modules-validators/confluence/global-settings.js +27 -0
- package/out/validators/modules-validators/jira/issue-adjustment.d.ts +4 -0
- package/out/validators/modules-validators/jira/issue-adjustment.d.ts.map +1 -0
- package/out/validators/modules-validators/jira/issue-adjustment.js +16 -0
- package/out/validators/permissions-validator.d.ts +6 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +76 -73
- package/out/validators/product-trigger-scopes-validator.d.ts +4 -1
- package/out/validators/product-trigger-scopes-validator.d.ts.map +1 -1
- package/out/validators/product-trigger-scopes-validator.js +23 -7
- package/out/validators/providers-validator.d.ts +2 -1
- package/out/validators/providers-validator.d.ts.map +1 -1
- package/out/validators/providers-validator.js +13 -9
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,251 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
-
## 0.0.0-experimental-
|
|
3
|
+
## 0.0.0-experimental-edeb51b
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d094c69: [CONFDEV-79785] Add manifest validation for confluence:globalSettings new, optional, useAsConfig property to ensure it's only designated once
|
|
8
|
+
- ba67459: Add validation for Issue Adjustments module
|
|
9
|
+
- d196b41: [CONFDEV-79785] Add manifest validation for confluence:globalSettings new, optional, useAsGetStarted property to ensure it's only designated once
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- e411a29: Update manifest definitions
|
|
14
|
+
- 0accde8: Update manifest definitions
|
|
15
|
+
- a3bfe81: Update manifest definitions
|
|
16
|
+
- 02839be: Update manifest definitions
|
|
17
|
+
- ffb508a: Update manifest definitions
|
|
18
|
+
|
|
19
|
+
## 3.5.0-next.5
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- d196b41: [CONFDEV-79785] Add manifest validation for confluence:globalSettings new, optional, useAsGetStarted property to ensure it's only designated once
|
|
24
|
+
|
|
25
|
+
## 3.5.0-next.4
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- e411a29: Update manifest definitions
|
|
30
|
+
|
|
31
|
+
## 3.5.0-next.3
|
|
32
|
+
|
|
33
|
+
### Minor Changes
|
|
34
|
+
|
|
35
|
+
- d094c69: [CONFDEV-79785] Add manifest validation for confluence:globalSettings new, optional, useAsConfig property to ensure it's only designated once
|
|
36
|
+
|
|
37
|
+
## 3.5.0-next.2
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- 02839be: Update manifest definitions
|
|
42
|
+
|
|
43
|
+
## 3.5.0-next.1
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- a3bfe81: Update manifest definitions
|
|
48
|
+
|
|
49
|
+
## 3.5.0-next.0
|
|
50
|
+
|
|
51
|
+
### Minor Changes
|
|
52
|
+
|
|
53
|
+
- ba674590: Add validation for Issue Adjustments module
|
|
54
|
+
|
|
55
|
+
## 3.4.0
|
|
56
|
+
|
|
57
|
+
### Minor Changes
|
|
58
|
+
|
|
59
|
+
- 64dd525: Make revokeToken optional in External Auth
|
|
60
|
+
- 8e2c90f: Manifest schema updated. Includes new jira:workflowCondition module
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- 1c6c578: Add jiraEntityProperty values validation
|
|
65
|
+
- 8b4fede: Update manifest definitions
|
|
66
|
+
- 54bf134: Update manifest definitions
|
|
67
|
+
- 10f147f: Update manifest definitions
|
|
68
|
+
- 2484683: Update manifest definitions
|
|
69
|
+
- 1a8a4bb: Update manifest definitions
|
|
70
|
+
- e0a44d4: Update manifest definitions
|
|
71
|
+
- 19820d3: Update manifest definitions
|
|
72
|
+
- 1ca8bbc: Update manifest definitions
|
|
73
|
+
|
|
74
|
+
## 3.4.0-next.9
|
|
75
|
+
|
|
76
|
+
### Patch Changes
|
|
77
|
+
|
|
78
|
+
- 19820d3: Update manifest definitions
|
|
79
|
+
|
|
80
|
+
## 3.4.0-next.8
|
|
81
|
+
|
|
82
|
+
### Minor Changes
|
|
83
|
+
|
|
84
|
+
- 8e2c90f: Manifest schema updated. Includes new jira:workflowCondition module
|
|
85
|
+
|
|
86
|
+
## 3.4.0-next.7
|
|
87
|
+
|
|
88
|
+
### Patch Changes
|
|
89
|
+
|
|
90
|
+
- e0a44d40: Update manifest definitions
|
|
91
|
+
|
|
92
|
+
## 3.4.0-next.6
|
|
93
|
+
|
|
94
|
+
### Patch Changes
|
|
95
|
+
|
|
96
|
+
- 1ca8bbc9: Update manifest definitions
|
|
97
|
+
|
|
98
|
+
## 3.4.0-next.5
|
|
99
|
+
|
|
100
|
+
### Patch Changes
|
|
101
|
+
|
|
102
|
+
- 1c6c578: Add jiraEntityProperty values validation
|
|
103
|
+
|
|
104
|
+
## 3.4.0-next.4
|
|
105
|
+
|
|
106
|
+
### Minor Changes
|
|
107
|
+
|
|
108
|
+
- 64dd525: Make revokeToken optional in External Auth
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- 10f147f: Update manifest definitions
|
|
113
|
+
|
|
114
|
+
## 3.3.1-next.3
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- 1a8a4bb: Update manifest definitions
|
|
119
|
+
|
|
120
|
+
## 3.3.1-next.2
|
|
121
|
+
|
|
122
|
+
### Patch Changes
|
|
123
|
+
|
|
124
|
+
- 8b4fede: Update manifest definitions
|
|
125
|
+
|
|
126
|
+
## 3.3.1-next.1
|
|
127
|
+
|
|
128
|
+
### Patch Changes
|
|
129
|
+
|
|
130
|
+
- 24846832: Update manifest definitions
|
|
131
|
+
|
|
132
|
+
## 3.3.1-next.0
|
|
133
|
+
|
|
134
|
+
### Patch Changes
|
|
135
|
+
|
|
136
|
+
- 54bf134: Update manifest definitions
|
|
137
|
+
|
|
138
|
+
## 3.3.0
|
|
139
|
+
|
|
140
|
+
### Minor Changes
|
|
141
|
+
|
|
142
|
+
- fcd9580: Add support for compass:teamPage extensions
|
|
143
|
+
- 6c44d2b: Add following Jira Service Management modules:
|
|
144
|
+
- jiraServiceManagement:organizationPanel module
|
|
145
|
+
- jiraServiceManagement:portalHeader module
|
|
146
|
+
- jiraServiceManagement:portalSubheader module
|
|
147
|
+
- jiraServiceManagement:portalFooter module
|
|
148
|
+
- jiraServiceManagement:portalRequestDetail module
|
|
149
|
+
- jiraServiceManagement:portalRequestDetailPanel module
|
|
150
|
+
- jiraServiceManagement:queuePage module
|
|
151
|
+
- jiraServiceManagement:portalProfilePanel module
|
|
152
|
+
- e95919f: Added blob csp support for script content permissions with manifest validation
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- e822a8a: Update manifest definitions
|
|
157
|
+
- 720953f: Update manifest definitions
|
|
158
|
+
- 2420378: Update manifest definitions
|
|
159
|
+
- 051ed1f: Update manifest definitions
|
|
160
|
+
- ad94136: Update manifest definitions
|
|
161
|
+
- e65d33e: Update manifest definitions
|
|
162
|
+
- ae111cd: Update manifest definitions
|
|
163
|
+
- 8e35955: Update manifest definitions
|
|
164
|
+
- c255b24: Update manifest definitions
|
|
165
|
+
- f894871: Update manifest definitions
|
|
166
|
+
- Updated dependencies [88e57a12]
|
|
167
|
+
- @forge/util@1.2.0
|
|
168
|
+
|
|
169
|
+
## 3.3.0-next.9
|
|
170
|
+
|
|
171
|
+
### Patch Changes
|
|
172
|
+
|
|
173
|
+
- 720953f: Update manifest definitions
|
|
174
|
+
|
|
175
|
+
## 3.3.0-next.8
|
|
176
|
+
|
|
177
|
+
### Minor Changes
|
|
178
|
+
|
|
179
|
+
- fcd95803: Add support for compass:teamPage extensions
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- e65d33e6: Update manifest definitions
|
|
184
|
+
|
|
185
|
+
## 3.3.0-next.7
|
|
186
|
+
|
|
187
|
+
### Patch Changes
|
|
188
|
+
|
|
189
|
+
- 8e35955: Update manifest definitions
|
|
190
|
+
|
|
191
|
+
## 3.3.0-next.6
|
|
192
|
+
|
|
193
|
+
### Patch Changes
|
|
194
|
+
|
|
195
|
+
- ad94136: Update manifest definitions
|
|
196
|
+
|
|
197
|
+
## 3.3.0-next.5
|
|
198
|
+
|
|
199
|
+
### Minor Changes
|
|
200
|
+
|
|
201
|
+
- e95919f: Added blob csp support for script content permissions with manifest validation
|
|
202
|
+
|
|
203
|
+
### Patch Changes
|
|
204
|
+
|
|
205
|
+
- f894871: Update manifest definitions
|
|
206
|
+
|
|
207
|
+
## 3.3.0-next.4
|
|
208
|
+
|
|
209
|
+
### Patch Changes
|
|
210
|
+
|
|
211
|
+
- ae111cd: Update manifest definitions
|
|
212
|
+
|
|
213
|
+
## 3.3.0-next.3
|
|
214
|
+
|
|
215
|
+
### Minor Changes
|
|
216
|
+
|
|
217
|
+
- 6c44d2b: Add following Jira Service Management modules:
|
|
218
|
+
- jiraServiceManagement:organizationPanel module
|
|
219
|
+
- jiraServiceManagement:portalHeader module
|
|
220
|
+
- jiraServiceManagement:portalSubheader module
|
|
221
|
+
- jiraServiceManagement:portalFooter module
|
|
222
|
+
- jiraServiceManagement:portalRequestDetail module
|
|
223
|
+
- jiraServiceManagement:portalRequestDetailPanel module
|
|
224
|
+
- jiraServiceManagement:queuePage module
|
|
225
|
+
- jiraServiceManagement:portalProfilePanel module
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- 051ed1f: Update manifest definitions
|
|
230
|
+
|
|
231
|
+
## 3.3.0-next.2
|
|
232
|
+
|
|
233
|
+
### Patch Changes
|
|
234
|
+
|
|
235
|
+
- e822a8a: Update manifest definitions
|
|
236
|
+
- c255b24: Update manifest definitions
|
|
237
|
+
- Updated dependencies [88e57a1]
|
|
238
|
+
- @forge/util@1.2.0-next.0
|
|
239
|
+
|
|
240
|
+
## 3.3.0-next.1
|
|
241
|
+
|
|
242
|
+
### Patch Changes
|
|
243
|
+
|
|
244
|
+
- 24203783: Update manifest definitions
|
|
245
|
+
|
|
246
|
+
## 3.3.0-next.0
|
|
247
|
+
|
|
248
|
+
### Minor Changes
|
|
6
249
|
|
|
7
250
|
- c145946: Add following Jira Service Management modules:
|
|
8
251
|
- jiraServiceManagement:organizationPanel module
|
|
@@ -12,16 +255,145 @@
|
|
|
12
255
|
- jiraServiceManagement:portalRequestDetail module
|
|
13
256
|
- jiraServiceManagement:portalRequestDetailPanel module
|
|
14
257
|
- jiraServiceManagement:queuePage module
|
|
258
|
+
- jiraServiceManagement:portalProfilePanel module
|
|
259
|
+
|
|
260
|
+
## 3.2.0
|
|
261
|
+
|
|
262
|
+
### Minor Changes
|
|
263
|
+
|
|
264
|
+
- 7f869f7: Added manifest validation for modules using Subpages
|
|
265
|
+
- 72e020c: Adds schemas properties for Data Classifications
|
|
266
|
+
|
|
267
|
+
### Patch Changes
|
|
268
|
+
|
|
269
|
+
- b2cef71: Update manifest definitions
|
|
270
|
+
- 254b239: Update manifest definitions
|
|
271
|
+
- 47744fc: Update manifest definitions
|
|
272
|
+
- 860c4fb: Update manifest definitions
|
|
273
|
+
- 66e969f: Update manifest definitions
|
|
274
|
+
- 2c635f9: Update manifest definitions
|
|
275
|
+
|
|
276
|
+
## 3.2.0-next.6
|
|
277
|
+
|
|
278
|
+
### Patch Changes
|
|
279
|
+
|
|
280
|
+
- 860c4fb0: Update manifest definitions
|
|
281
|
+
|
|
282
|
+
## 3.2.0-next.5
|
|
283
|
+
|
|
284
|
+
### Minor Changes
|
|
285
|
+
|
|
286
|
+
- 72e020c: Adds schemas properties for Data Classifications
|
|
287
|
+
|
|
288
|
+
## 3.2.0-next.4
|
|
289
|
+
|
|
290
|
+
### Patch Changes
|
|
291
|
+
|
|
292
|
+
- 254b2397: Update manifest definitions
|
|
293
|
+
|
|
294
|
+
## 3.2.0-next.3
|
|
295
|
+
|
|
296
|
+
### Patch Changes
|
|
297
|
+
|
|
298
|
+
- b2cef71d: Update manifest definitions
|
|
299
|
+
|
|
300
|
+
## 3.2.0-next.2
|
|
301
|
+
|
|
302
|
+
### Minor Changes
|
|
303
|
+
|
|
304
|
+
- 7f869f7: Added manifest validation for modules using Subpages
|
|
305
|
+
|
|
306
|
+
## 3.1.1-next.1
|
|
307
|
+
|
|
308
|
+
### Patch Changes
|
|
309
|
+
|
|
310
|
+
- 47744fc: Update manifest definitions
|
|
311
|
+
|
|
312
|
+
## 3.1.1-next.0
|
|
313
|
+
|
|
314
|
+
### Patch Changes
|
|
315
|
+
|
|
316
|
+
- 2c635f9: Update manifest definitions
|
|
317
|
+
|
|
318
|
+
## 3.1.0
|
|
15
319
|
|
|
16
320
|
### Minor Changes
|
|
17
321
|
|
|
18
|
-
-
|
|
322
|
+
- 037c31a5: Upgrade webpack from 4 to 5 and other relavent packages to fix the issue for node17+ (openssl change)
|
|
19
323
|
- 813f8f3: Add remotes to external auth config
|
|
20
324
|
|
|
21
325
|
### Patch Changes
|
|
22
326
|
|
|
327
|
+
- debe251: Accept both deprecated scopes and granular scopes when verifying scopes required for product events.
|
|
328
|
+
- f6901fd: Fix invalid scope in product event linting.
|
|
23
329
|
- 8ee1c58: Update manifest definitions
|
|
330
|
+
- 67d2e17: Update manifest definitions
|
|
331
|
+
- 14102be: Update manifest definitions
|
|
332
|
+
- 7b2d17a: Update manifest definitions
|
|
333
|
+
- 8aaa65c: Update manifest definitions
|
|
334
|
+
- d3ccc04: Update manifest definitions
|
|
24
335
|
- 5152239: Update manifest definitions
|
|
336
|
+
- Updated dependencies [037c31a5]
|
|
337
|
+
- @forge/util@1.1.0
|
|
338
|
+
|
|
339
|
+
## 3.1.0-next.9
|
|
340
|
+
|
|
341
|
+
### Patch Changes
|
|
342
|
+
|
|
343
|
+
- 8aaa65c: Update manifest definitions
|
|
344
|
+
|
|
345
|
+
## 3.1.0-next.8
|
|
346
|
+
|
|
347
|
+
### Patch Changes
|
|
348
|
+
|
|
349
|
+
- 67d2e17c: Update manifest definitions
|
|
350
|
+
|
|
351
|
+
## 3.1.0-next.7
|
|
352
|
+
|
|
353
|
+
### Minor Changes
|
|
354
|
+
|
|
355
|
+
- 037c31a: Upgrade webpack from 4 to 5 and other relavent packages to fix the issue for node17+ (openssl change)
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- Updated dependencies [037c31a]
|
|
360
|
+
- @forge/util@1.1.0-next.0
|
|
361
|
+
|
|
362
|
+
## 3.1.0-next.6
|
|
363
|
+
|
|
364
|
+
### Patch Changes
|
|
365
|
+
|
|
366
|
+
- 7b2d17a: Update manifest definitions
|
|
367
|
+
|
|
368
|
+
## 3.1.0-next.5
|
|
369
|
+
|
|
370
|
+
### Patch Changes
|
|
371
|
+
|
|
372
|
+
- f6901fd: Fix invalid scope in product event linting.
|
|
373
|
+
|
|
374
|
+
## 3.1.0-next.4
|
|
375
|
+
|
|
376
|
+
### Patch Changes
|
|
377
|
+
|
|
378
|
+
- d3ccc04: Update manifest definitions
|
|
379
|
+
|
|
380
|
+
## 3.1.0-next.3
|
|
381
|
+
|
|
382
|
+
### Patch Changes
|
|
383
|
+
|
|
384
|
+
- debe251: Accept both deprecated scopes and granular scopes when verifying scopes required for product events.
|
|
385
|
+
|
|
386
|
+
## 3.1.0-next.2
|
|
387
|
+
|
|
388
|
+
### Patch Changes
|
|
389
|
+
|
|
390
|
+
- 14102be: Update manifest definitions
|
|
391
|
+
|
|
392
|
+
## 3.1.0-next.1
|
|
393
|
+
|
|
394
|
+
### Patch Changes
|
|
395
|
+
|
|
396
|
+
- 8ee1c58: Update manifest definitions
|
|
25
397
|
|
|
26
398
|
## 3.1.0-next.0
|
|
27
399
|
|