@budibase/types 3.26.0 → 3.26.1

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,9 +1,13 @@
1
1
  import { AgentMessageMetadata, Document } from "../../";
2
2
  import type { UIMessage } from "ai";
3
+ export interface ConversationStarter {
4
+ prompt: string;
5
+ }
3
6
  export interface ChatAppAgent {
4
7
  agentId: string;
5
8
  isEnabled: boolean;
6
9
  isDefault: boolean;
10
+ conversationStarters?: ConversationStarter[];
7
11
  }
8
12
  export interface ChatApp extends Document {
9
13
  title?: string;
@@ -116,6 +116,7 @@ export declare enum HttpMethod {
116
116
  DELETE = "DELETE"
117
117
  }
118
118
  export interface RestTemplateQueryMetadata {
119
+ originalName?: string;
119
120
  operationId?: string;
120
121
  docsUrl?: string;
121
122
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.26.0",
3
+ "version": "3.26.1",
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": "94f6d3fcbeb2043d8144dc3be0cf560b71dd35dc"
30
+ "gitHead": "3ee1bf769467a216a2e44443e01810cb1b076dfc"
31
31
  }