@forge/manifest 2.4.1-next.0 → 2.5.0-next.4

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,30 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 2.5.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 4de9850: Added new product events to scope mapping for custom field: deleted/updated/trashed/restored
8
+
9
+ ## 2.5.0-next.3
10
+
11
+ ### Patch Changes
12
+
13
+ - dec8066: Update manifest definitions
14
+
15
+ ## 2.5.0-next.2
16
+
17
+ ### Patch Changes
18
+
19
+ - 755e35e: Added new product events to scope mapping for custom field context: added/updated/deleted
20
+ - f013199: Update manifest definitions
21
+
22
+ ## 2.5.0-next.1
23
+
24
+ ### Minor Changes
25
+
26
+ - 66f60f9: Add Jira global full page and Jira projects settings full page extensions
27
+
3
28
  ## 2.4.1-next.0
4
29
 
5
30
  ### Patch Changes
@@ -48,6 +48,48 @@
48
48
  "manage:jira-configuration"
49
49
  ]
50
50
  },
51
+ {
52
+ "productEvent": "avi:jira:updated:field",
53
+ "oAuthScopes": [
54
+ "manage:jira-configuration"
55
+ ]
56
+ },
57
+ {
58
+ "productEvent": "avi:jira:trashed:field",
59
+ "oAuthScopes": [
60
+ "manage:jira-configuration"
61
+ ]
62
+ },
63
+ {
64
+ "productEvent": "avi:jira:deleted:field",
65
+ "oAuthScopes": [
66
+ "manage:jira-configuration"
67
+ ]
68
+ },
69
+ {
70
+ "productEvent": "avi:jira:restored:field",
71
+ "oAuthScopes": [
72
+ "manage:jira-configuration"
73
+ ]
74
+ },
75
+ {
76
+ "productEvent": "avi:jira:created:field:context",
77
+ "oAuthScopes": [
78
+ "manage:jira-configuration"
79
+ ]
80
+ },
81
+ {
82
+ "productEvent": "avi:jira:updated:field:context",
83
+ "oAuthScopes": [
84
+ "manage:jira-configuration"
85
+ ]
86
+ },
87
+ {
88
+ "productEvent": "avi:jira:deleted:field:context",
89
+ "oAuthScopes": [
90
+ "manage:jira-configuration"
91
+ ]
92
+ },
51
93
  {
52
94
  "productEvent": "avi:confluence:updated:blogpost",
53
95
  "oAuthScopes": [
@@ -468,6 +468,42 @@
468
468
  },
469
469
  "type": "object"
470
470
  },
471
+ "ProjectSettingsPage": {
472
+ "additionalProperties": false,
473
+ "properties": {
474
+ "hasCoreAccess": {
475
+ "type": "boolean"
476
+ },
477
+ "hasServiceDeskAccess": {
478
+ "type": "boolean"
479
+ },
480
+ "hasSoftwareAccess": {
481
+ "type": "boolean"
482
+ },
483
+ "isAdmin": {
484
+ "type": "boolean"
485
+ },
486
+ "isLoggedIn": {
487
+ "type": "boolean"
488
+ },
489
+ "isSiteAdmin": {
490
+ "type": "boolean"
491
+ },
492
+ "projectId": {
493
+ "$ref": "#/definitions/StringOrListOfStrings"
494
+ },
495
+ "projectKey": {
496
+ "$ref": "#/definitions/StringOrListOfStrings"
497
+ },
498
+ "projectName": {
499
+ "$ref": "#/definitions/StringOrListOfStrings"
500
+ },
501
+ "projectType": {
502
+ "$ref": "#/definitions/StringOrListOfStrings"
503
+ }
504
+ },
505
+ "type": "object"
506
+ },
471
507
  "StringOrListOfStrings": {
472
508
  "anyOf": [
473
509
  {
@@ -508,6 +544,9 @@
508
544
  "jira:customField": {
509
545
  "$ref": "#/definitions/IssueView"
510
546
  },
547
+ "jira:globalPage": {
548
+ "$ref": "#/definitions/Jira"
549
+ },
511
550
  "jira:issueAction": {
512
551
  "$ref": "#/definitions/IssueView"
513
552
  },
@@ -522,6 +561,9 @@
522
561
  },
523
562
  "jira:projectPage": {
524
563
  "$ref": "#/definitions/ProjectPage"
564
+ },
565
+ "jira:projectSettingsPage": {
566
+ "$ref": "#/definitions/ProjectSettingsPage"
525
567
  }
526
568
  },
527
569
  "type": "object"