@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.2.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 6f17340: Update manifest definitions
8
+
3
9
  ## 7.2.1
4
10
 
5
11
  ### Patch Changes
@@ -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,
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.2.1",
3
+ "version": "7.2.2-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {