@forge/manifest 6.3.0 → 6.3.1

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,17 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 6.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - af75e0f: Update manifest definitions
8
+
9
+ ## 6.3.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - af75e0f: Update manifest definitions
14
+
3
15
  ## 6.3.0
4
16
 
5
17
  ### Minor Changes
@@ -10185,6 +10185,80 @@
10185
10185
  },
10186
10186
  "minItems": 1
10187
10187
  },
10188
+ "bitbucket:dynamicPipelinesProvider": {
10189
+ "type": "array",
10190
+ "items": {
10191
+ "oneOf": [
10192
+ {
10193
+ "type": "object",
10194
+ "properties": {
10195
+ "name": {
10196
+ "type": "string"
10197
+ },
10198
+ "description": {
10199
+ "type": "string"
10200
+ },
10201
+ "icon": {
10202
+ "type": "string"
10203
+ },
10204
+ "function": {
10205
+ "type": "string",
10206
+ "minLength": 1,
10207
+ "maxLength": 255,
10208
+ "pattern": "^[a-zA-Z0-9-_]+$"
10209
+ },
10210
+ "key": {
10211
+ "$ref": "#/definitions/ModuleKeySchema"
10212
+ }
10213
+ },
10214
+ "required": [
10215
+ "name",
10216
+ "function",
10217
+ "key"
10218
+ ],
10219
+ "not": {
10220
+ "required": [
10221
+ "unlicensedAccess"
10222
+ ]
10223
+ }
10224
+ },
10225
+ {
10226
+ "type": "object",
10227
+ "properties": {
10228
+ "name": {
10229
+ "type": "string"
10230
+ },
10231
+ "description": {
10232
+ "type": "string"
10233
+ },
10234
+ "icon": {
10235
+ "type": "string"
10236
+ },
10237
+ "endpoint": {
10238
+ "type": "string",
10239
+ "minLength": 1,
10240
+ "maxLength": 255,
10241
+ "pattern": "^[a-zA-Z0-9-_]+$"
10242
+ },
10243
+ "key": {
10244
+ "$ref": "#/definitions/ModuleKeySchema"
10245
+ }
10246
+ },
10247
+ "required": [
10248
+ "name",
10249
+ "endpoint",
10250
+ "key"
10251
+ ],
10252
+ "not": {
10253
+ "required": [
10254
+ "unlicensedAccess"
10255
+ ]
10256
+ }
10257
+ }
10258
+ ]
10259
+ },
10260
+ "minItems": 1
10261
+ },
10188
10262
  "connect-jira:keyboardShortcuts": {
10189
10263
  "type": "array",
10190
10264
  "items": {
@@ -5135,6 +5135,44 @@ export interface Modules {
5135
5135
  }
5136
5136
  )[]
5137
5137
  ];
5138
+ 'bitbucket:dynamicPipelinesProvider'?: [
5139
+ (
5140
+ | {
5141
+ name: string;
5142
+ description?: string;
5143
+ icon?: string;
5144
+ function: string;
5145
+ key: ModuleKeySchema;
5146
+ [k: string]: unknown;
5147
+ }
5148
+ | {
5149
+ name: string;
5150
+ description?: string;
5151
+ icon?: string;
5152
+ endpoint: string;
5153
+ key: ModuleKeySchema;
5154
+ [k: string]: unknown;
5155
+ }
5156
+ ),
5157
+ ...(
5158
+ | {
5159
+ name: string;
5160
+ description?: string;
5161
+ icon?: string;
5162
+ function: string;
5163
+ key: ModuleKeySchema;
5164
+ [k: string]: unknown;
5165
+ }
5166
+ | {
5167
+ name: string;
5168
+ description?: string;
5169
+ icon?: string;
5170
+ endpoint: string;
5171
+ key: ModuleKeySchema;
5172
+ [k: string]: unknown;
5173
+ }
5174
+ )[]
5175
+ ];
5138
5176
  'connect-jira:keyboardShortcuts'?: [
5139
5177
  {
5140
5178
  shortcut: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "6.3.0",
3
+ "version": "6.3.1",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {