@forge/manifest 5.2.1-next.1 → 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 +6 -0
- package/out/schema/manifest-schema.json +48 -0
- package/out/schema/manifest.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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;
|