@forge/manifest 7.2.1 → 7.2.2-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 +6 -0
- package/out/schema/manifest-schema.json +15 -0
- package/out/schema/manifest.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -926,6 +926,21 @@
|
|
|
926
926
|
"minLength": 1,
|
|
927
927
|
"maxLength": 10000
|
|
928
928
|
},
|
|
929
|
+
"adfExport": {
|
|
930
|
+
"type": "object",
|
|
931
|
+
"additionalProperties": false,
|
|
932
|
+
"properties": {
|
|
933
|
+
"function": {
|
|
934
|
+
"type": "string",
|
|
935
|
+
"minLength": 1,
|
|
936
|
+
"maxLength": 255,
|
|
937
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"required": [
|
|
941
|
+
"function"
|
|
942
|
+
]
|
|
943
|
+
},
|
|
929
944
|
"refDataSchema": {
|
|
930
945
|
"type": "object",
|
|
931
946
|
"additionalProperties": false,
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -880,6 +880,9 @@ export interface Modules {
|
|
|
880
880
|
resource: string;
|
|
881
881
|
resourceUploadId?: string;
|
|
882
882
|
description?: string;
|
|
883
|
+
adfExport?: {
|
|
884
|
+
function: string;
|
|
885
|
+
};
|
|
883
886
|
refDataSchema?: {
|
|
884
887
|
inputType: string;
|
|
885
888
|
};
|
|
@@ -934,6 +937,9 @@ export interface Modules {
|
|
|
934
937
|
resource: string;
|
|
935
938
|
resourceUploadId?: string;
|
|
936
939
|
description?: string;
|
|
940
|
+
adfExport?: {
|
|
941
|
+
function: string;
|
|
942
|
+
};
|
|
937
943
|
refDataSchema?: {
|
|
938
944
|
inputType: string;
|
|
939
945
|
};
|