@forge/manifest 3.6.0-next.5 → 3.6.0
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,38 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 3.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a8d47c: Add following Jira Service Management modules:
|
|
8
|
+
|
|
9
|
+
- jiraServiceManagement:portalUserMenuAction module
|
|
10
|
+
- jiraServiceManagement:portalRequestViewAction module
|
|
11
|
+
|
|
12
|
+
- e314dd0: Renaming Issue Adjustments to UI modifications
|
|
13
|
+
- 2bd062d: Add support for Forge Post Functions module
|
|
14
|
+
- 9047581: Add compass:dataProvider module
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 0137135: Scopes for failed expression event
|
|
19
|
+
- 5c9419f: Update manifest definitions
|
|
20
|
+
- e8a6926: Update manifest definitions
|
|
21
|
+
- cb28bc0: Update manifest definitions
|
|
22
|
+
- 0920759: Update manifest definitions
|
|
23
|
+
|
|
24
|
+
## 3.6.0-next.7
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 0920759f: Update manifest definitions
|
|
29
|
+
|
|
30
|
+
## 3.6.0-next.6
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- 2bd062d0: Add support for Forge Post Functions module
|
|
35
|
+
|
|
3
36
|
## 3.6.0-next.5
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -4221,6 +4221,82 @@
|
|
|
4221
4221
|
},
|
|
4222
4222
|
"minItems": 1
|
|
4223
4223
|
},
|
|
4224
|
+
"jira:workflowPostFunction": {
|
|
4225
|
+
"type": "array",
|
|
4226
|
+
"items": {
|
|
4227
|
+
"type": "object",
|
|
4228
|
+
"properties": {
|
|
4229
|
+
"name": {
|
|
4230
|
+
"minLength": 1,
|
|
4231
|
+
"maxLength": 255,
|
|
4232
|
+
"type": "string"
|
|
4233
|
+
},
|
|
4234
|
+
"description": {
|
|
4235
|
+
"minLength": 1,
|
|
4236
|
+
"maxLength": 1000,
|
|
4237
|
+
"type": "string"
|
|
4238
|
+
},
|
|
4239
|
+
"function": {
|
|
4240
|
+
"type": "string",
|
|
4241
|
+
"minLength": 1,
|
|
4242
|
+
"maxLength": 255,
|
|
4243
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
4244
|
+
},
|
|
4245
|
+
"view": {
|
|
4246
|
+
"type": "object",
|
|
4247
|
+
"properties": {
|
|
4248
|
+
"resource": {
|
|
4249
|
+
"type": "string",
|
|
4250
|
+
"minLength": 1,
|
|
4251
|
+
"maxLength": 23,
|
|
4252
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4253
|
+
}
|
|
4254
|
+
},
|
|
4255
|
+
"required": [
|
|
4256
|
+
"resource"
|
|
4257
|
+
]
|
|
4258
|
+
},
|
|
4259
|
+
"edit": {
|
|
4260
|
+
"type": "object",
|
|
4261
|
+
"properties": {
|
|
4262
|
+
"resource": {
|
|
4263
|
+
"type": "string",
|
|
4264
|
+
"minLength": 1,
|
|
4265
|
+
"maxLength": 23,
|
|
4266
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4267
|
+
}
|
|
4268
|
+
},
|
|
4269
|
+
"required": [
|
|
4270
|
+
"resource"
|
|
4271
|
+
]
|
|
4272
|
+
},
|
|
4273
|
+
"create": {
|
|
4274
|
+
"type": "object",
|
|
4275
|
+
"properties": {
|
|
4276
|
+
"resource": {
|
|
4277
|
+
"type": "string",
|
|
4278
|
+
"minLength": 1,
|
|
4279
|
+
"maxLength": 23,
|
|
4280
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
4281
|
+
}
|
|
4282
|
+
},
|
|
4283
|
+
"required": [
|
|
4284
|
+
"resource"
|
|
4285
|
+
]
|
|
4286
|
+
},
|
|
4287
|
+
"key": {
|
|
4288
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
4289
|
+
}
|
|
4290
|
+
},
|
|
4291
|
+
"required": [
|
|
4292
|
+
"description",
|
|
4293
|
+
"function",
|
|
4294
|
+
"name",
|
|
4295
|
+
"key"
|
|
4296
|
+
]
|
|
4297
|
+
},
|
|
4298
|
+
"minItems": 1
|
|
4299
|
+
},
|
|
4224
4300
|
"compass:adminPage": {
|
|
4225
4301
|
"type": "array",
|
|
4226
4302
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2285,6 +2285,46 @@ export interface Modules {
|
|
|
2285
2285
|
[k: string]: unknown;
|
|
2286
2286
|
}[]
|
|
2287
2287
|
];
|
|
2288
|
+
'jira:workflowPostFunction'?: [
|
|
2289
|
+
{
|
|
2290
|
+
name: string;
|
|
2291
|
+
description: string;
|
|
2292
|
+
function: string;
|
|
2293
|
+
view?: {
|
|
2294
|
+
resource: string;
|
|
2295
|
+
[k: string]: unknown;
|
|
2296
|
+
};
|
|
2297
|
+
edit?: {
|
|
2298
|
+
resource: string;
|
|
2299
|
+
[k: string]: unknown;
|
|
2300
|
+
};
|
|
2301
|
+
create?: {
|
|
2302
|
+
resource: string;
|
|
2303
|
+
[k: string]: unknown;
|
|
2304
|
+
};
|
|
2305
|
+
key: ModuleKeySchema;
|
|
2306
|
+
[k: string]: unknown;
|
|
2307
|
+
},
|
|
2308
|
+
...{
|
|
2309
|
+
name: string;
|
|
2310
|
+
description: string;
|
|
2311
|
+
function: string;
|
|
2312
|
+
view?: {
|
|
2313
|
+
resource: string;
|
|
2314
|
+
[k: string]: unknown;
|
|
2315
|
+
};
|
|
2316
|
+
edit?: {
|
|
2317
|
+
resource: string;
|
|
2318
|
+
[k: string]: unknown;
|
|
2319
|
+
};
|
|
2320
|
+
create?: {
|
|
2321
|
+
resource: string;
|
|
2322
|
+
[k: string]: unknown;
|
|
2323
|
+
};
|
|
2324
|
+
key: ModuleKeySchema;
|
|
2325
|
+
[k: string]: unknown;
|
|
2326
|
+
}[]
|
|
2327
|
+
];
|
|
2288
2328
|
'compass:adminPage'?: [
|
|
2289
2329
|
(
|
|
2290
2330
|
| {
|
|
@@ -17,6 +17,7 @@ export declare enum AllModuleTypes {
|
|
|
17
17
|
JiraEntityProperty = "jira:entityProperty",
|
|
18
18
|
JiraWorkflowValidator = "jira:workflowValidator",
|
|
19
19
|
JiraWorkflowCondition = "jira:workflowCondition",
|
|
20
|
+
JiraWorkflowPostFunction = "jira:workflowPostFunction",
|
|
20
21
|
JiraCustomField = "jira:customField",
|
|
21
22
|
JiraCustomFieldType = "jira:customFieldType",
|
|
22
23
|
JiraIssueAction = "jira:issueAction",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"module-types.d.ts","sourceRoot":"","sources":["../../src/types/module-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -21,6 +21,7 @@ var AllModuleTypes;
|
|
|
21
21
|
AllModuleTypes["JiraEntityProperty"] = "jira:entityProperty";
|
|
22
22
|
AllModuleTypes["JiraWorkflowValidator"] = "jira:workflowValidator";
|
|
23
23
|
AllModuleTypes["JiraWorkflowCondition"] = "jira:workflowCondition";
|
|
24
|
+
AllModuleTypes["JiraWorkflowPostFunction"] = "jira:workflowPostFunction";
|
|
24
25
|
AllModuleTypes["JiraCustomField"] = "jira:customField";
|
|
25
26
|
AllModuleTypes["JiraCustomFieldType"] = "jira:customFieldType";
|
|
26
27
|
AllModuleTypes["JiraIssueAction"] = "jira:issueAction";
|