@forge/manifest 4.19.0-next.4 → 4.19.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 +23 -0
- package/out/schema/manifest-schema.json +43 -0
- package/out/schema/manifest.d.ts +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 4.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8a1848c: Add Jira Service Management - Assets Schema Page Module
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 484f9079: Added attachment related product events to scope mapping
|
|
12
|
+
- 4640d4fb: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @types/node
|
|
15
|
+
|
|
16
|
+
- 161031c: Update manifest definitions
|
|
17
|
+
- 7827779: Update manifest definitions
|
|
18
|
+
- 06a3e19: Update manifest definitions
|
|
19
|
+
|
|
20
|
+
## 4.19.0-next.5
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 7827779: Update manifest definitions
|
|
25
|
+
|
|
3
26
|
## 4.19.0-next.4
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -8797,6 +8797,49 @@
|
|
|
8797
8797
|
},
|
|
8798
8798
|
"minItems": 1
|
|
8799
8799
|
},
|
|
8800
|
+
"jiraServiceManagement:assetsSchemaPage": {
|
|
8801
|
+
"type": "array",
|
|
8802
|
+
"items": {
|
|
8803
|
+
"oneOf": [
|
|
8804
|
+
{
|
|
8805
|
+
"type": "object",
|
|
8806
|
+
"required": [
|
|
8807
|
+
"title",
|
|
8808
|
+
"icon",
|
|
8809
|
+
"function",
|
|
8810
|
+
"key"
|
|
8811
|
+
],
|
|
8812
|
+
"properties": {
|
|
8813
|
+
"title": {
|
|
8814
|
+
"type": "string",
|
|
8815
|
+
"minLength": 1,
|
|
8816
|
+
"maxLength": 255
|
|
8817
|
+
},
|
|
8818
|
+
"icon": {
|
|
8819
|
+
"type": "string",
|
|
8820
|
+
"minLength": 1,
|
|
8821
|
+
"maxLength": 255
|
|
8822
|
+
},
|
|
8823
|
+
"function": {
|
|
8824
|
+
"type": "string",
|
|
8825
|
+
"minLength": 1,
|
|
8826
|
+
"maxLength": 255,
|
|
8827
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8828
|
+
},
|
|
8829
|
+
"key": {
|
|
8830
|
+
"$ref": "#/definitions/ModuleKeySchema"
|
|
8831
|
+
}
|
|
8832
|
+
},
|
|
8833
|
+
"not": {
|
|
8834
|
+
"required": [
|
|
8835
|
+
"unlicensedAccess"
|
|
8836
|
+
]
|
|
8837
|
+
}
|
|
8838
|
+
}
|
|
8839
|
+
]
|
|
8840
|
+
},
|
|
8841
|
+
"minItems": 1
|
|
8842
|
+
},
|
|
8800
8843
|
"bitbucket:repoPullRequestCard": {
|
|
8801
8844
|
"type": "array",
|
|
8802
8845
|
"items": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4455,6 +4455,22 @@ export interface Modules {
|
|
|
4455
4455
|
[k: string]: unknown;
|
|
4456
4456
|
}[]
|
|
4457
4457
|
];
|
|
4458
|
+
'jiraServiceManagement:assetsSchemaPage'?: [
|
|
4459
|
+
{
|
|
4460
|
+
title: string;
|
|
4461
|
+
icon: string;
|
|
4462
|
+
function: string;
|
|
4463
|
+
key: ModuleKeySchema;
|
|
4464
|
+
[k: string]: unknown;
|
|
4465
|
+
},
|
|
4466
|
+
...{
|
|
4467
|
+
title: string;
|
|
4468
|
+
icon: string;
|
|
4469
|
+
function: string;
|
|
4470
|
+
key: ModuleKeySchema;
|
|
4471
|
+
[k: string]: unknown;
|
|
4472
|
+
}[]
|
|
4473
|
+
];
|
|
4458
4474
|
'bitbucket:repoPullRequestCard'?: [
|
|
4459
4475
|
(
|
|
4460
4476
|
| {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "4.19.0
|
|
3
|
+
"version": "4.19.0",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"compile": "tsc -b -v",
|
|
10
10
|
"generate:full-schema": "json2ts --input src/schema/manifest-schema.json --output src/schema/manifest.d.ts --style.singleQuote",
|
|
11
11
|
"generate:basic-schema": "json2ts --input src/schema/basic-manifest-schema.json --output src/schema/basic-manifest.d.ts --style.singleQuote",
|
|
12
|
-
"generate:display-conditions-json-schema": "typescript-json-schema src/types/display-condition-types.ts DisplayConditions --out src/schema/display-conditions-schema.json --refs --aliasRefs --strictNullChecks --required
|
|
12
|
+
"generate:display-conditions-json-schema": "typescript-json-schema src/types/display-condition-types.ts DisplayConditions --out src/schema/display-conditions-schema.json --refs --aliasRefs --strictNullChecks --required --noExtraProps --skipLibCheck",
|
|
13
13
|
"copy:schema-definitions": "mkdir -p out/schema && cp src/schema/*.d.ts out/schema",
|
|
14
14
|
"prebuild": "yarn run clean && yarn run generate:full-schema && yarn run generate:basic-schema && yarn run generate:display-conditions-json-schema && yarn run copy:schema-definitions",
|
|
15
15
|
"fetch-config": "yarn run build && node out/config/index.js"
|