@budibase/types 3.28.1 → 3.28.2
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/api/web/ai.d.ts
CHANGED
|
@@ -35,6 +35,9 @@ export interface ChatCompletionResponse {
|
|
|
35
35
|
messages: Message[];
|
|
36
36
|
tokensUsed: number;
|
|
37
37
|
}
|
|
38
|
+
export interface AIQuotaUsageResponse {
|
|
39
|
+
monthlyCredits: number;
|
|
40
|
+
}
|
|
38
41
|
export interface GenerateJsRequest {
|
|
39
42
|
prompt: string;
|
|
40
43
|
bindings?: EnrichedBinding[];
|
|
@@ -10,6 +10,7 @@ export interface FetchAgentsResponse {
|
|
|
10
10
|
}
|
|
11
11
|
export type CreateAgentRequest = Optional<Omit<Agent, "_id" | "_rev" | "createdAt" | "updatedAt">, "aiconfig">;
|
|
12
12
|
export type CreateAgentResponse = Agent;
|
|
13
|
+
export type DuplicateAgentResponse = Agent;
|
|
13
14
|
export type UpdateAgentRequest = Omit<Agent, "createdAt" | "updatedAt" | "_deleted" | "createdBy">;
|
|
14
15
|
export type UpdateAgentResponse = Agent;
|
|
15
16
|
export interface FetchAgentFilesResponse {
|
package/dist/ui/home/types.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import type { PublishResourceState } from "../../api";
|
|
|
2
2
|
import type { Agent, WorkspaceFavourite } from "../../documents";
|
|
3
3
|
import type { UIAutomation } from "../stores/automations";
|
|
4
4
|
import type { UIWorkspaceApp } from "../workspaceApps";
|
|
5
|
-
export type HomeType = "all" | "app" | "automation" | "agent"
|
|
5
|
+
export type HomeType = "all" | "app" | "automation" | "agent";
|
|
6
6
|
export type HomeRowType = "app" | "automation" | "agent";
|
|
7
|
-
export type HomeSortColumn = "name" | "type" | "status" | "
|
|
7
|
+
export type HomeSortColumn = "name" | "type" | "status" | "updated";
|
|
8
8
|
export type HomeSortOrder = "asc" | "desc";
|
|
9
9
|
interface HomeRowBase {
|
|
10
10
|
_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.28.
|
|
3
|
+
"version": "3.28.2",
|
|
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": "
|
|
30
|
+
"gitHead": "b2bb9e6fcbd6ae283ab41464e5552af68f3a12a1"
|
|
31
31
|
}
|