@forge/manifest 3.3.0-next.8 → 3.3.0-next.9

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 3.3.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 720953f: Update manifest definitions
8
+
3
9
  ## 3.3.0-next.8
4
10
 
5
11
  ### Minor Changes
@@ -3974,6 +3974,87 @@
3974
3974
  },
3975
3975
  "minItems": 1
3976
3976
  },
3977
+ "compass:teamPage": {
3978
+ "type": "array",
3979
+ "items": {
3980
+ "oneOf": [
3981
+ {
3982
+ "type": "object",
3983
+ "required": [
3984
+ "title",
3985
+ "function",
3986
+ "key"
3987
+ ],
3988
+ "properties": {
3989
+ "title": {
3990
+ "type": "string",
3991
+ "minLength": 1,
3992
+ "maxLength": 255
3993
+ },
3994
+ "icon": {
3995
+ "type": "string",
3996
+ "minLength": 1,
3997
+ "maxLength": 255
3998
+ },
3999
+ "function": {
4000
+ "type": "string",
4001
+ "minLength": 1,
4002
+ "maxLength": 255,
4003
+ "pattern": "^[a-zA-Z0-9-_]+$"
4004
+ },
4005
+ "key": {
4006
+ "$ref": "#/definitions/ModuleKeySchema"
4007
+ }
4008
+ }
4009
+ },
4010
+ {
4011
+ "type": "object",
4012
+ "required": [
4013
+ "title",
4014
+ "resource",
4015
+ "key"
4016
+ ],
4017
+ "properties": {
4018
+ "title": {
4019
+ "type": "string",
4020
+ "minLength": 1,
4021
+ "maxLength": 255
4022
+ },
4023
+ "icon": {
4024
+ "type": "string",
4025
+ "minLength": 1,
4026
+ "maxLength": 255
4027
+ },
4028
+ "resolver": {
4029
+ "additionalProperties": false,
4030
+ "type": "object",
4031
+ "properties": {
4032
+ "function": {
4033
+ "type": "string",
4034
+ "minLength": 1,
4035
+ "maxLength": 255,
4036
+ "pattern": "^[a-zA-Z0-9-_]+$"
4037
+ }
4038
+ },
4039
+ "required": [
4040
+ "function"
4041
+ ]
4042
+ },
4043
+ "resource": {
4044
+ "type": "string",
4045
+ "minLength": 1,
4046
+ "maxLength": 23,
4047
+ "pattern": "^[a-zA-Z0-9_\\-]+$"
4048
+ },
4049
+ "key": {
4050
+ "$ref": "#/definitions/ModuleKeySchema"
4051
+ }
4052
+ }
4053
+ }
4054
+ ]
4055
+ },
4056
+ "minItems": 1
4057
+ },
3977
4058
  "jiraServiceManagement:queuePage": {
3978
4059
  "type": "array",
3979
4060
  "items": {
@@ -2175,6 +2175,46 @@ export interface Modules {
2175
2175
  }
2176
2176
  )[]
2177
2177
  ];
2178
+ 'compass:teamPage'?: [
2179
+ (
2180
+ | {
2181
+ title: string;
2182
+ icon?: string;
2183
+ function: string;
2184
+ key: ModuleKeySchema;
2185
+ [k: string]: unknown;
2186
+ }
2187
+ | {
2188
+ title: string;
2189
+ icon?: string;
2190
+ resolver?: {
2191
+ function: string;
2192
+ };
2193
+ resource: string;
2194
+ key: ModuleKeySchema;
2195
+ [k: string]: unknown;
2196
+ }
2197
+ ),
2198
+ ...(
2199
+ | {
2200
+ title: string;
2201
+ icon?: string;
2202
+ function: string;
2203
+ key: ModuleKeySchema;
2204
+ [k: string]: unknown;
2205
+ }
2206
+ | {
2207
+ title: string;
2208
+ icon?: string;
2209
+ resolver?: {
2210
+ function: string;
2211
+ };
2212
+ resource: string;
2213
+ key: ModuleKeySchema;
2214
+ [k: string]: unknown;
2215
+ }
2216
+ )[]
2217
+ ];
2178
2218
  'jiraServiceManagement:queuePage'?: [
2179
2219
  (
2180
2220
  | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "3.3.0-next.8",
3
+ "version": "3.3.0-next.9",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {