@forge/manifest 5.2.1-next.0 → 5.2.1-next.2
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 +14 -0
- package/out/schema/manifest-schema.json +48 -0
- package/out/schema/manifest.d.ts +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/manifest
|
|
2
2
|
|
|
3
|
+
## 5.2.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 949b52dd: Update manifest definitions
|
|
8
|
+
|
|
9
|
+
## 5.2.1-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2cf5ac83: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- @types/jest
|
|
16
|
+
|
|
3
17
|
## 5.2.1-next.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -8962,6 +8962,54 @@
|
|
|
8962
8962
|
"maxLength": 255,
|
|
8963
8963
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8964
8964
|
},
|
|
8965
|
+
"resource": {
|
|
8966
|
+
"type": "string",
|
|
8967
|
+
"minLength": 1,
|
|
8968
|
+
"maxLength": 23,
|
|
8969
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
8970
|
+
},
|
|
8971
|
+
"resolver": {
|
|
8972
|
+
"anyOf": [
|
|
8973
|
+
{
|
|
8974
|
+
"additionalProperties": false,
|
|
8975
|
+
"type": "object",
|
|
8976
|
+
"properties": {
|
|
8977
|
+
"function": {
|
|
8978
|
+
"type": "string",
|
|
8979
|
+
"minLength": 1,
|
|
8980
|
+
"maxLength": 255,
|
|
8981
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8982
|
+
}
|
|
8983
|
+
},
|
|
8984
|
+
"required": [
|
|
8985
|
+
"function"
|
|
8986
|
+
]
|
|
8987
|
+
},
|
|
8988
|
+
{
|
|
8989
|
+
"additionalProperties": false,
|
|
8990
|
+
"type": "object",
|
|
8991
|
+
"properties": {
|
|
8992
|
+
"endpoint": {
|
|
8993
|
+
"type": "string",
|
|
8994
|
+
"minLength": 1,
|
|
8995
|
+
"maxLength": 255,
|
|
8996
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
8997
|
+
}
|
|
8998
|
+
},
|
|
8999
|
+
"required": [
|
|
9000
|
+
"endpoint"
|
|
9001
|
+
]
|
|
9002
|
+
}
|
|
9003
|
+
]
|
|
9004
|
+
},
|
|
9005
|
+
"render": {
|
|
9006
|
+
"enum": [
|
|
9007
|
+
"native",
|
|
9008
|
+
"default"
|
|
9009
|
+
],
|
|
9010
|
+
"type": "string",
|
|
9011
|
+
"default": "default"
|
|
9012
|
+
},
|
|
8965
9013
|
"onDeleteImport": {
|
|
8966
9014
|
"anyOf": [
|
|
8967
9015
|
{
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -4556,6 +4556,15 @@ export interface Modules {
|
|
|
4556
4556
|
title: string;
|
|
4557
4557
|
icon: string;
|
|
4558
4558
|
function: string;
|
|
4559
|
+
resource?: string;
|
|
4560
|
+
resolver?:
|
|
4561
|
+
| {
|
|
4562
|
+
function: string;
|
|
4563
|
+
}
|
|
4564
|
+
| {
|
|
4565
|
+
endpoint: string;
|
|
4566
|
+
};
|
|
4567
|
+
render?: 'native' | 'default';
|
|
4559
4568
|
onDeleteImport?: {
|
|
4560
4569
|
function: string;
|
|
4561
4570
|
[k: string]: unknown;
|
|
@@ -4579,6 +4588,15 @@ export interface Modules {
|
|
|
4579
4588
|
title: string;
|
|
4580
4589
|
icon: string;
|
|
4581
4590
|
function: string;
|
|
4591
|
+
resource?: string;
|
|
4592
|
+
resolver?:
|
|
4593
|
+
| {
|
|
4594
|
+
function: string;
|
|
4595
|
+
}
|
|
4596
|
+
| {
|
|
4597
|
+
endpoint: string;
|
|
4598
|
+
};
|
|
4599
|
+
render?: 'native' | 'default';
|
|
4582
4600
|
onDeleteImport?: {
|
|
4583
4601
|
function: string;
|
|
4584
4602
|
[k: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/manifest",
|
|
3
|
-
"version": "5.2.1-next.
|
|
3
|
+
"version": "5.2.1-next.2",
|
|
4
4
|
"description": "Definitions and validations of the Forge manifest",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"fetch-config": "yarn run build && node out/config/index.js"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@types/jest": "^29.5.
|
|
18
|
+
"@types/jest": "^29.5.10",
|
|
19
19
|
"@types/node": "14.18.63",
|
|
20
20
|
"@types/node-fetch": "^2.6.9"
|
|
21
21
|
},
|