impaktapps-ui-builder 0.0.369 → 0.0.370

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.
@@ -49,10 +49,15 @@ export declare const EventSchema: {
49
49
  };
50
50
  inBuiltFunctionType: {
51
51
  type: string;
52
- oneOf: {
52
+ oneOf: ({
53
53
  title: string;
54
54
  const: string;
55
- }[];
55
+ consts?: undefined;
56
+ } | {
57
+ title: string;
58
+ consts: string;
59
+ const?: undefined;
60
+ })[];
56
61
  };
57
62
  body: {
58
63
  type: string;
@@ -54,10 +54,15 @@ declare const _default: (store: any, dynamicData: any, submitHandler: any, servi
54
54
  };
55
55
  inBuiltFunctionType: {
56
56
  type: string;
57
- oneOf: {
57
+ oneOf: ({
58
58
  title: string;
59
59
  const: string;
60
- }[];
60
+ consts?: undefined;
61
+ } | {
62
+ title: string;
63
+ consts: string;
64
+ const?: undefined;
65
+ })[];
61
66
  };
62
67
  body: {
63
68
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.369",
3
+ "version": "0.0.370",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -65,6 +65,7 @@ export const EventSchema = {
65
65
  oneOf: [
66
66
  { title: "RankProvider", const: "RankProvider" },
67
67
  { title: "Download File", const: "downloadFile" },
68
+ { title: "Download Blob File", consts: "downloadBlobFile" }
68
69
  ]
69
70
  },
70
71
  body: {