@budibase/types 3.4.22 → 3.4.23

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.
@@ -1,7 +1,22 @@
1
1
  export interface EnrichedBinding {
2
+ value: string;
3
+ valueHTML: string;
2
4
  runtimeBinding: string;
3
5
  readableBinding: string;
4
6
  type?: null | string;
7
+ icon?: string;
8
+ category: string;
9
+ display?: {
10
+ name: string;
11
+ type: string;
12
+ };
13
+ fieldSchema?: {
14
+ name: string;
15
+ tableId: string;
16
+ type: string;
17
+ subtype?: string;
18
+ prefixKeys?: string;
19
+ };
5
20
  }
6
21
  export declare enum BindingMode {
7
22
  Text = "Text",
@@ -1,6 +1,9 @@
1
1
  export interface Helper {
2
+ label: string;
3
+ displayText: string;
2
4
  example: string;
3
5
  description: string;
4
6
  args: any[];
5
7
  requiresBlock?: boolean;
8
+ allowsJs: boolean;
6
9
  }
@@ -1,4 +1,3 @@
1
- export * from "./sidepanel";
2
1
  export * from "./codeEditor";
3
2
  export * from "./errors";
4
3
  export interface CustomComponent {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.4.22",
3
+ "version": "3.4.23",
4
4
  "description": "Budibase types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,5 +27,5 @@
27
27
  "dependencies": {
28
28
  "scim-patch": "^0.8.1"
29
29
  },
30
- "gitHead": "d13bdcbc41f1c15066ef24c19290452cd5c4dd46"
30
+ "gitHead": "fb5453d9f7c6b72b1ba00564564ce966536a19de"
31
31
  }
@@ -1,5 +0,0 @@
1
- export declare enum SidePanel {
2
- Bindings = "FlashOn",
3
- Evaluation = "Play",
4
- Snippets = "Code"
5
- }