@forge/manifest 3.6.0-next.6 → 3.6.1-next.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.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9e700ef8: Remove Deprecated Permissions validator due to Shipyard modification
|
|
8
|
+
|
|
9
|
+
## 3.6.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 1a8d47c: Add following Jira Service Management modules:
|
|
14
|
+
|
|
15
|
+
- jiraServiceManagement:portalUserMenuAction module
|
|
16
|
+
- jiraServiceManagement:portalRequestViewAction module
|
|
17
|
+
|
|
18
|
+
- e314dd0: Renaming Issue Adjustments to UI modifications
|
|
19
|
+
- 2bd062d: Add support for Forge Post Functions module
|
|
20
|
+
- 9047581: Add compass:dataProvider module
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 0137135: Scopes for failed expression event
|
|
25
|
+
- 5c9419f: Update manifest definitions
|
|
26
|
+
- e8a6926: Update manifest definitions
|
|
27
|
+
- cb28bc0: Update manifest definitions
|
|
28
|
+
- 0920759: Update manifest definitions
|
|
29
|
+
|
|
30
|
+
## 3.6.0-next.7
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- 0920759f: Update manifest definitions
|
|
35
|
+
|
|
3
36
|
## 3.6.0-next.6
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"full-validation-processor.d.ts","sourceRoot":"","sources":["../../src/processor/full-validation-processor.ts"],"names":[],"mappings":"AAgBA,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":"AAgBA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEpD,qBAAa,uBAAwB,SAAQ,2BAA2B,CAAC,cAAc,CAAC;;CAiBvF"}
|
|
@@ -6,7 +6,6 @@ const validators_1 = require("../validators");
|
|
|
6
6
|
const FULL_SCHEMA = tslib_1.__importStar(require("../schema/manifest-schema.json"));
|
|
7
7
|
const DISPLAY_CONDITIONS_SCHEMA = tslib_1.__importStar(require("../schema/display-conditions-schema.json"));
|
|
8
8
|
const abstract_validation_processor_1 = require("./abstract-validation-processor");
|
|
9
|
-
const deprecated_permissions_validator_1 = require("../validators/deprecated-permissions-validator");
|
|
10
9
|
class FullValidationProcessor extends abstract_validation_processor_1.AbstractValidationProcessor {
|
|
11
10
|
constructor() {
|
|
12
11
|
super([
|
|
@@ -19,7 +18,6 @@ class FullValidationProcessor extends abstract_validation_processor_1.AbstractVa
|
|
|
19
18
|
new validators_1.ConnectRemoteValidator(),
|
|
20
19
|
new validators_1.ConnectAuthenticationValidator(),
|
|
21
20
|
new validators_1.PermissionsValidator(),
|
|
22
|
-
new deprecated_permissions_validator_1.DeprecatedPermissionsValidator(),
|
|
23
21
|
new validators_1.DisplayConditionsValidator(DISPLAY_CONDITIONS_SCHEMA),
|
|
24
22
|
new validators_1.ProvidersValidator(),
|
|
25
23
|
new validators_1.EntityPropertyValidator()
|
|
@@ -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
|
| {
|