@forge/manifest 12.0.0 → 12.1.0-experimental-1ee2de3
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 +91 -0
- package/out/index.d.ts +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/processor/full-validation-processor.d.ts.map +1 -1
- package/out/processor/full-validation-processor.js +2 -0
- package/out/schema/display-conditions-schema.json +168 -13
- package/out/schema/manifest-schema.json +179 -28
- package/out/schema/manifest.d.ts +160 -22
- package/out/scopes/shipyard-scopes.json +1 -0
- package/out/text/errors.d.ts +2 -2
- package/out/text/errors.d.ts.map +1 -1
- package/out/text/errors.js +5 -3
- package/out/types/display-condition-types.d.ts +31 -1
- package/out/types/display-condition-types.d.ts.map +1 -1
- package/out/validators/permissions-validator.d.ts +1 -0
- package/out/validators/permissions-validator.d.ts.map +1 -1
- package/out/validators/permissions-validator.js +37 -22
- package/out/validators/remotes-is-configurable-validator.d.ts.map +1 -1
- package/out/validators/remotes-is-configurable-validator.js +7 -36
- package/out/validators/twg-preview-scopes-validator.d.ts +7 -0
- package/out/validators/twg-preview-scopes-validator.d.ts.map +1 -0
- package/out/validators/twg-preview-scopes-validator.js +32 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,96 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 12.1.0-experimental-1ee2de3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b59aee1: Support hot reloading for forge containers tunneling
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 561036a: Update manifest definitions
|
|
12
|
+
- b248c8f: Update manifest definitions
|
|
13
|
+
|
|
14
|
+
## 12.1.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 6204a94: Added validation logic for Rolling Releases display conditions
|
|
19
|
+
- e4c143c: Do not allow wildcard remote endpoints
|
|
20
|
+
- 42e069d: Add lint warning for backend fetch egress with path
|
|
21
|
+
- 19807bf: Changed schema for container resources
|
|
22
|
+
- 5de91aa: Added validation for displayConditions for jiraServiceManagement module types
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- e98e35c: Fix Remotes schema so configurable field is correct
|
|
27
|
+
- 6247657: Add TWG preview scopes validator that warns when manifest contains Teamwork Graph scopes (read:graph:jira, read:graph:confluence)
|
|
28
|
+
- 434fb15: Update manifest definitions
|
|
29
|
+
- d4bbee9: Update manifest definitions
|
|
30
|
+
- 8246b16: Update manifest definitions
|
|
31
|
+
- fa9b5aa: Update manifest definitions
|
|
32
|
+
- 63d29ca: Update dynamic egress and remote manifest in preparation for Preview
|
|
33
|
+
|
|
34
|
+
## 12.1.0-next.8
|
|
35
|
+
|
|
36
|
+
### Minor Changes
|
|
37
|
+
|
|
38
|
+
- 6204a94: Added validation logic for Rolling Releases display conditions
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- e98e35c: Fix Remotes schema so configurable field is correct
|
|
43
|
+
- d4bbee9: Update manifest definitions
|
|
44
|
+
|
|
45
|
+
## 12.1.0-next.7
|
|
46
|
+
|
|
47
|
+
### Minor Changes
|
|
48
|
+
|
|
49
|
+
- 5de91aa: Added validation for displayConditions for jiraServiceManagement module types
|
|
50
|
+
|
|
51
|
+
## 12.1.0-next.6
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- 434fb15: Update manifest definitions
|
|
56
|
+
- 63d29ca: Update dynamic egress and remote manifest in preparation for Preview
|
|
57
|
+
|
|
58
|
+
## 12.1.0-next.5
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- 8246b16: Update manifest definitions
|
|
63
|
+
|
|
64
|
+
## 12.1.0-next.4
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- 6247657: Add TWG preview scopes validator that warns when manifest contains Teamwork Graph scopes (read:graph:jira, read:graph:confluence)
|
|
69
|
+
|
|
70
|
+
## 12.1.0-next.3
|
|
71
|
+
|
|
72
|
+
### Minor Changes
|
|
73
|
+
|
|
74
|
+
- 42e069d: Add lint warning for backend fetch egress with path
|
|
75
|
+
|
|
76
|
+
## 12.1.0-next.2
|
|
77
|
+
|
|
78
|
+
### Minor Changes
|
|
79
|
+
|
|
80
|
+
- e4c143c: Do not allow wildcard remote endpoints
|
|
81
|
+
|
|
82
|
+
## 12.1.0-next.1
|
|
83
|
+
|
|
84
|
+
### Patch Changes
|
|
85
|
+
|
|
86
|
+
- fa9b5aa: Update manifest definitions
|
|
87
|
+
|
|
88
|
+
## 12.1.0-next.0
|
|
89
|
+
|
|
90
|
+
### Minor Changes
|
|
91
|
+
|
|
92
|
+
- 19807bf: Changed schema for container resources
|
|
93
|
+
|
|
3
94
|
## 12.0.0
|
|
4
95
|
|
|
5
96
|
### Major Changes
|
package/out/index.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ export * from './text';
|
|
|
8
8
|
export * from './types';
|
|
9
9
|
export * from './utils';
|
|
10
10
|
export * from './validators';
|
|
11
|
-
export { Modules, ManifestSchema, App, Resources, Permissions, Remotes, Fetch, Providers, Backend, Client, Frames, Navigation, Images, Media, Services, Scripts1, Styles1, Scopes, Content1, Fonts, Translations, ForgeSupportedLocaleCode, External } from './schema/manifest';
|
|
11
|
+
export { Modules, ManifestSchema, App, Resources, Permissions, Remotes, Fetch, Providers, Backend, Client, Frames, Navigation, Images, Media, Services, Containers, Scripts1, Styles1, Scopes, Content1, Fonts, Translations, ForgeSupportedLocaleCode, External } from './schema/manifest';
|
|
12
12
|
export declare const validate: (basic?: boolean, manifest?: string | undefined) => Promise<ManifestValidationResult<ManifestSchema | BasicManifestSchema>>;
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
package/out/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAmB,MAAM,SAAS,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAG9D,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,OAAO,EACL,OAAO,EACP,cAAc,EACd,GAAG,EACH,SAAS,EACT,WAAW,EACX,OAAO,EACP,KAAK,EACL,SAAS,EACT,OAAO,EACP,MAAM,EACN,MAAM,EACN,UAAU,EACV,MAAM,EACN,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,MAAM,EACN,QAAQ,EACR,KAAK,EACL,YAAY,EACZ,wBAAwB,EACxB,QAAQ,EACT,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,QAAQ,+BAET,MAAM,GAAG,SAAS,KAC3B,QAAQ,yBAAyB,cAAc,GAAG,mBAAmB,CAAC,CAInD,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAmB,MAAM,SAAS,CAAC;AACpE,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAG9D,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,OAAO,EACL,OAAO,EACP,cAAc,EACd,GAAG,EACH,SAAS,EACT,WAAW,EACX,OAAO,EACP,KAAK,EACL,SAAS,EACT,OAAO,EACP,MAAM,EACN,MAAM,EACN,UAAU,EACV,MAAM,EACN,KAAK,EACL,QAAQ,EACR,UAAU,EACV,QAAQ,EACR,OAAO,EACP,MAAM,EACN,QAAQ,EACR,KAAK,EACL,YAAY,EACZ,wBAAwB,EACxB,QAAQ,EACT,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,QAAQ,+BAET,MAAM,GAAG,SAAS,KAC3B,QAAQ,yBAAyB,cAAc,GAAG,mBAAmB,CAAC,CAInD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"full-validation-processor.d.ts","sourceRoot":"","sources":["../../src/processor/full-validation-processor.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"full-validation-processor.d.ts","sourceRoot":"","sources":["../../src/processor/full-validation-processor.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAUpD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,qBAAa,uBAAwB,SAAQ,2BAA2B,CAAC,cAAc,CAAC;gBAC1E,WAAW,EAAE,WAAW;CA6BrC"}
|
|
@@ -14,6 +14,7 @@ const remotes_is_configurable_validator_1 = require("../validators/remotes-is-co
|
|
|
14
14
|
const remote_regions_validator_1 = require("../validators/remote-regions-validator");
|
|
15
15
|
const remote_auth_scopes_validator_1 = require("../validators/remote-auth-scopes-validator");
|
|
16
16
|
const runtime_version_validator_1 = require("../validators/runtime-version-validator");
|
|
17
|
+
const twg_preview_scopes_validator_1 = require("../validators/twg-preview-scopes-validator");
|
|
17
18
|
const llm_validator_1 = require("../validators/llm-validator");
|
|
18
19
|
class FullValidationProcessor extends abstract_validation_processor_1.AbstractValidationProcessor {
|
|
19
20
|
constructor(lintOptions) {
|
|
@@ -40,6 +41,7 @@ class FullValidationProcessor extends abstract_validation_processor_1.AbstractVa
|
|
|
40
41
|
new remote_regions_validator_1.RemoteRegionsValidator(),
|
|
41
42
|
new remote_auth_scopes_validator_1.RemoteAuthScopesValidator(),
|
|
42
43
|
new runtime_version_validator_1.RuntimeVersionValidator(lintOptions),
|
|
44
|
+
new twg_preview_scopes_validator_1.TwgPreviewScopesValidator(),
|
|
43
45
|
new llm_validator_1.LLMValidator(),
|
|
44
46
|
new validators_1.CompatibilityValidator()
|
|
45
47
|
]);
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
"isSpaceAdmin": {
|
|
49
49
|
"type": "boolean"
|
|
50
50
|
},
|
|
51
|
+
"permissions": {
|
|
52
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
53
|
+
},
|
|
51
54
|
"userIsExternalCollaborator": {
|
|
52
55
|
"type": "boolean"
|
|
53
56
|
}
|
|
@@ -90,6 +93,9 @@
|
|
|
90
93
|
"isSpaceAdmin": {
|
|
91
94
|
"type": "boolean"
|
|
92
95
|
},
|
|
96
|
+
"permissions": {
|
|
97
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
98
|
+
},
|
|
93
99
|
"userIsExternalCollaborator": {
|
|
94
100
|
"type": "boolean"
|
|
95
101
|
}
|
|
@@ -132,6 +138,9 @@
|
|
|
132
138
|
"isSpaceAdmin": {
|
|
133
139
|
"type": "boolean"
|
|
134
140
|
},
|
|
141
|
+
"permissions": {
|
|
142
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
143
|
+
},
|
|
135
144
|
"userIsExternalCollaborator": {
|
|
136
145
|
"type": "boolean"
|
|
137
146
|
}
|
|
@@ -174,6 +183,9 @@
|
|
|
174
183
|
"isSpaceAdmin": {
|
|
175
184
|
"type": "boolean"
|
|
176
185
|
},
|
|
186
|
+
"permissions": {
|
|
187
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
188
|
+
},
|
|
177
189
|
"userIsExternalCollaborator": {
|
|
178
190
|
"type": "boolean"
|
|
179
191
|
}
|
|
@@ -216,6 +228,9 @@
|
|
|
216
228
|
"isSpaceAdmin": {
|
|
217
229
|
"type": "boolean"
|
|
218
230
|
},
|
|
231
|
+
"permissions": {
|
|
232
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
233
|
+
},
|
|
219
234
|
"userIsExternalCollaborator": {
|
|
220
235
|
"type": "boolean"
|
|
221
236
|
}
|
|
@@ -274,12 +289,81 @@
|
|
|
274
289
|
"isSpaceAdmin": {
|
|
275
290
|
"type": "boolean"
|
|
276
291
|
},
|
|
292
|
+
"permissions": {
|
|
293
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
294
|
+
},
|
|
277
295
|
"userIsExternalCollaborator": {
|
|
278
296
|
"type": "boolean"
|
|
279
297
|
}
|
|
280
298
|
},
|
|
281
299
|
"type": "object"
|
|
282
300
|
},
|
|
301
|
+
"DisplayConditionsExternal": {
|
|
302
|
+
"$ref": "#/definitions/DisplayConditionsExternal_1"
|
|
303
|
+
},
|
|
304
|
+
"DisplayConditionsExternal_1": {
|
|
305
|
+
"additionalProperties": false,
|
|
306
|
+
"properties": {
|
|
307
|
+
"fetch": {
|
|
308
|
+
"additionalProperties": false,
|
|
309
|
+
"properties": {
|
|
310
|
+
"backend": {
|
|
311
|
+
"$ref": "#/definitions/FetchBackendOrClient"
|
|
312
|
+
},
|
|
313
|
+
"client": {
|
|
314
|
+
"$ref": "#/definitions/FetchBackendOrClient"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"type": "object"
|
|
318
|
+
},
|
|
319
|
+
"fonts": {
|
|
320
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
321
|
+
},
|
|
322
|
+
"frames": {
|
|
323
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
324
|
+
},
|
|
325
|
+
"images": {
|
|
326
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
327
|
+
},
|
|
328
|
+
"media": {
|
|
329
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
330
|
+
},
|
|
331
|
+
"scripts": {
|
|
332
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
333
|
+
},
|
|
334
|
+
"styles": {
|
|
335
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"type": "object"
|
|
339
|
+
},
|
|
340
|
+
"DisplayConditionsPermissions": {
|
|
341
|
+
"$ref": "#/definitions/DisplayConditionsPermissions_1"
|
|
342
|
+
},
|
|
343
|
+
"DisplayConditionsPermissions_1": {
|
|
344
|
+
"additionalProperties": false,
|
|
345
|
+
"properties": {
|
|
346
|
+
"external": {
|
|
347
|
+
"$ref": "#/definitions/DisplayConditionsExternal"
|
|
348
|
+
},
|
|
349
|
+
"scopes": {
|
|
350
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"type": "object"
|
|
354
|
+
},
|
|
355
|
+
"EgressPermissionAddress": {
|
|
356
|
+
"additionalProperties": false,
|
|
357
|
+
"properties": {
|
|
358
|
+
"address": {
|
|
359
|
+
"type": "string"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"required": [
|
|
363
|
+
"address"
|
|
364
|
+
],
|
|
365
|
+
"type": "object"
|
|
366
|
+
},
|
|
283
367
|
"EntityPropertyCondition": {
|
|
284
368
|
"anyOf": [
|
|
285
369
|
{
|
|
@@ -327,7 +411,7 @@
|
|
|
327
411
|
"type": "string"
|
|
328
412
|
},
|
|
329
413
|
"value": {
|
|
330
|
-
"$ref": "#/definitions/
|
|
414
|
+
"$ref": "#/definitions/StringOrListOfStrings_1"
|
|
331
415
|
}
|
|
332
416
|
},
|
|
333
417
|
"required": [
|
|
@@ -377,7 +461,7 @@
|
|
|
377
461
|
"type": "string"
|
|
378
462
|
},
|
|
379
463
|
"value": {
|
|
380
|
-
"$ref": "#/definitions/
|
|
464
|
+
"$ref": "#/definitions/StringOrListOfStrings_1"
|
|
381
465
|
}
|
|
382
466
|
},
|
|
383
467
|
"required": [
|
|
@@ -471,6 +555,41 @@
|
|
|
471
555
|
],
|
|
472
556
|
"type": "string"
|
|
473
557
|
},
|
|
558
|
+
"FetchBackendOrClient": {
|
|
559
|
+
"anyOf": [
|
|
560
|
+
{
|
|
561
|
+
"items": {
|
|
562
|
+
"type": "string"
|
|
563
|
+
},
|
|
564
|
+
"type": "array"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"$ref": "#/definitions/EgressPermissionAddress"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"items": {
|
|
571
|
+
"anyOf": [
|
|
572
|
+
{
|
|
573
|
+
"items": {
|
|
574
|
+
"type": "string"
|
|
575
|
+
},
|
|
576
|
+
"type": "array"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"$ref": "#/definitions/EgressPermissionAddress"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"type": "string"
|
|
583
|
+
}
|
|
584
|
+
]
|
|
585
|
+
},
|
|
586
|
+
"type": "array"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"type": "string"
|
|
590
|
+
}
|
|
591
|
+
]
|
|
592
|
+
},
|
|
474
593
|
"IssueView": {
|
|
475
594
|
"$ref": "#/definitions/IssueView_1"
|
|
476
595
|
},
|
|
@@ -628,13 +747,13 @@
|
|
|
628
747
|
"type": "boolean"
|
|
629
748
|
},
|
|
630
749
|
"issueId": {
|
|
631
|
-
"$ref": "#/definitions/
|
|
750
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
632
751
|
},
|
|
633
752
|
"issueKey": {
|
|
634
|
-
"$ref": "#/definitions/
|
|
753
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
635
754
|
},
|
|
636
755
|
"issueType": {
|
|
637
|
-
"$ref": "#/definitions/
|
|
756
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
638
757
|
},
|
|
639
758
|
"jiraExpression": {
|
|
640
759
|
"type": "string"
|
|
@@ -642,17 +761,20 @@
|
|
|
642
761
|
"jiraTimeTrackingProviderEnabled": {
|
|
643
762
|
"type": "boolean"
|
|
644
763
|
},
|
|
764
|
+
"permissions": {
|
|
765
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
766
|
+
},
|
|
645
767
|
"projectId": {
|
|
646
|
-
"$ref": "#/definitions/
|
|
768
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
647
769
|
},
|
|
648
770
|
"projectKey": {
|
|
649
|
-
"$ref": "#/definitions/
|
|
771
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
650
772
|
},
|
|
651
773
|
"projectName": {
|
|
652
|
-
"$ref": "#/definitions/
|
|
774
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
653
775
|
},
|
|
654
776
|
"projectType": {
|
|
655
|
-
"$ref": "#/definitions/
|
|
777
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
656
778
|
},
|
|
657
779
|
"timeTrackingProviderEnabled": {
|
|
658
780
|
"$ref": "#/definitions/TimeTrackingProviderEnabled"
|
|
@@ -717,6 +839,9 @@
|
|
|
717
839
|
"jiraTimeTrackingProviderEnabled": {
|
|
718
840
|
"type": "boolean"
|
|
719
841
|
},
|
|
842
|
+
"permissions": {
|
|
843
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
844
|
+
},
|
|
720
845
|
"timeTrackingProviderEnabled": {
|
|
721
846
|
"$ref": "#/definitions/TimeTrackingProviderEnabled"
|
|
722
847
|
}
|
|
@@ -882,17 +1007,20 @@
|
|
|
882
1007
|
"jiraTimeTrackingProviderEnabled": {
|
|
883
1008
|
"type": "boolean"
|
|
884
1009
|
},
|
|
1010
|
+
"permissions": {
|
|
1011
|
+
"$ref": "#/definitions/DisplayConditionsPermissions"
|
|
1012
|
+
},
|
|
885
1013
|
"projectId": {
|
|
886
|
-
"$ref": "#/definitions/
|
|
1014
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
887
1015
|
},
|
|
888
1016
|
"projectKey": {
|
|
889
|
-
"$ref": "#/definitions/
|
|
1017
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
890
1018
|
},
|
|
891
1019
|
"projectName": {
|
|
892
|
-
"$ref": "#/definitions/
|
|
1020
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
893
1021
|
},
|
|
894
1022
|
"projectType": {
|
|
895
|
-
"$ref": "#/definitions/
|
|
1023
|
+
"$ref": "#/definitions/StringOrListOfStrings"
|
|
896
1024
|
},
|
|
897
1025
|
"timeTrackingProviderEnabled": {
|
|
898
1026
|
"$ref": "#/definitions/TimeTrackingProviderEnabled"
|
|
@@ -1002,6 +1130,33 @@
|
|
|
1002
1130
|
},
|
|
1003
1131
|
"jira:projectSettingsPage": {
|
|
1004
1132
|
"$ref": "#/definitions/ProjectView"
|
|
1133
|
+
},
|
|
1134
|
+
"jiraServiceManagement:portalFooter": {
|
|
1135
|
+
"$ref": "#/definitions/ProjectView"
|
|
1136
|
+
},
|
|
1137
|
+
"jiraServiceManagement:portalHeader": {
|
|
1138
|
+
"$ref": "#/definitions/ProjectView"
|
|
1139
|
+
},
|
|
1140
|
+
"jiraServiceManagement:portalProfilePanel": {
|
|
1141
|
+
"$ref": "#/definitions/Jira"
|
|
1142
|
+
},
|
|
1143
|
+
"jiraServiceManagement:portalRequestCreatePropertyPanel": {
|
|
1144
|
+
"$ref": "#/definitions/ProjectView"
|
|
1145
|
+
},
|
|
1146
|
+
"jiraServiceManagement:portalRequestDetail": {
|
|
1147
|
+
"$ref": "#/definitions/IssueView"
|
|
1148
|
+
},
|
|
1149
|
+
"jiraServiceManagement:portalRequestDetailPanel": {
|
|
1150
|
+
"$ref": "#/definitions/IssueView"
|
|
1151
|
+
},
|
|
1152
|
+
"jiraServiceManagement:portalRequestViewAction": {
|
|
1153
|
+
"$ref": "#/definitions/IssueView"
|
|
1154
|
+
},
|
|
1155
|
+
"jiraServiceManagement:portalSubheader": {
|
|
1156
|
+
"$ref": "#/definitions/ProjectView"
|
|
1157
|
+
},
|
|
1158
|
+
"jiraServiceManagement:portalUserMenuAction": {
|
|
1159
|
+
"$ref": "#/definitions/Jira"
|
|
1005
1160
|
}
|
|
1006
1161
|
},
|
|
1007
1162
|
"type": "object"
|