@budibase/types 3.9.5 → 3.10.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/dist/sdk/ai.d.ts CHANGED
@@ -74,8 +74,7 @@ type SearchWebSchema = BaseSchema & {
74
74
  export type AIColumnSchema = SummariseTextSchema | CleanDataSchema | TranslateSchema | CategoriseTextSchema | SentimentAnalysisSchema | PromptSchema | SearchWebSchema;
75
75
  export interface LLMConfigOptions {
76
76
  model: string;
77
- apiKey: string;
78
- measureUsage: boolean;
77
+ apiKey?: string;
79
78
  }
80
79
  export interface LLMProviderConfig extends LLMConfigOptions {
81
80
  provider: AIProvider;
@@ -1,4 +1,5 @@
1
1
  export declare enum FeatureFlag {
2
+ DEBUG_UI = "DEBUG_UI",
2
3
  USE_ZOD_VALIDATOR = "USE_ZOD_VALIDATOR",
3
4
  AI_JS_GENERATION = "AI_JS_GENERATION",
4
5
  AI_TABLE_GENERATION = "AI_TABLE_GENERATION",
@@ -1,3 +1,4 @@
1
+ import { FieldType } from "@budibase/types";
1
2
  export * from "./codeEditor";
2
3
  export * from "./errors";
3
4
  export interface CustomComponent {
@@ -73,3 +74,10 @@ export declare const enum ComponentContextScopes {
73
74
  Local = "local",
74
75
  Global = "global"
75
76
  }
77
+ export type FilterConfig = {
78
+ active: boolean;
79
+ field: string;
80
+ label?: string;
81
+ _id?: string;
82
+ columnType?: FieldType;
83
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.9.5",
3
+ "version": "3.10.0",
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": "c8333d77db162c596063ce5f1cafe9997b45e828"
30
+ "gitHead": "35c16326f7215671d405cd811b28e78f5be70d07"
31
31
  }