@bubblelab/shared-schemas 0.1.65 → 0.1.67
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/ai-models.d.ts +1 -1
- package/dist/ai-models.d.ts.map +1 -1
- package/dist/bubbleflow-execution-schema.d.ts +11 -0
- package/dist/bubbleflow-execution-schema.d.ts.map +1 -1
- package/dist/bubbleflow-schema.d.ts +20 -0
- package/dist/bubbleflow-schema.d.ts.map +1 -1
- package/dist/credential-schema.d.ts +5 -0
- package/dist/credential-schema.d.ts.map +1 -1
- package/dist/database-definition-schema.d.ts +12 -0
- package/dist/database-definition-schema.d.ts.map +1 -1
- package/dist/index.js +30 -4
- package/dist/index.js.map +1 -1
- package/dist/milk-tea.d.ts +3 -3
- package/dist/pearl.d.ts +3 -3
- package/dist/rice.d.ts +3 -3
- package/package.json +1 -1
package/dist/ai-models.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const AvailableModels: z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b"]>;
|
|
2
|
+
export declare const AvailableModels: z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>;
|
|
3
3
|
export type AvailableModel = z.infer<typeof AvailableModels>;
|
|
4
4
|
//# sourceMappingURL=ai-models.d.ts.map
|
package/dist/ai-models.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-models.d.ts","sourceRoot":"","sources":["../src/ai-models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"ai-models.d.ts","sourceRoot":"","sources":["../src/ai-models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe,2rBA2B1B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -246,6 +246,7 @@ export declare const bubbleFlowExecutionSchema: z.ZodObject<{
|
|
|
246
246
|
webhook_url: z.ZodString;
|
|
247
247
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
248
248
|
code: z.ZodOptional<z.ZodString>;
|
|
249
|
+
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
249
250
|
}, "strip", z.ZodTypeAny, {
|
|
250
251
|
status: "error" | "running" | "success";
|
|
251
252
|
id: number;
|
|
@@ -254,6 +255,7 @@ export declare const bubbleFlowExecutionSchema: z.ZodObject<{
|
|
|
254
255
|
webhook_url: string;
|
|
255
256
|
code?: string | undefined;
|
|
256
257
|
error?: string | undefined;
|
|
258
|
+
totalCost?: number | undefined;
|
|
257
259
|
result?: any;
|
|
258
260
|
completedAt?: string | undefined;
|
|
259
261
|
}, {
|
|
@@ -264,6 +266,7 @@ export declare const bubbleFlowExecutionSchema: z.ZodObject<{
|
|
|
264
266
|
webhook_url: string;
|
|
265
267
|
code?: string | undefined;
|
|
266
268
|
error?: string | undefined;
|
|
269
|
+
totalCost?: number | undefined;
|
|
267
270
|
result?: any;
|
|
268
271
|
completedAt?: string | undefined;
|
|
269
272
|
}>;
|
|
@@ -278,6 +281,7 @@ export declare const listBubbleFlowExecutionsResponseSchema: z.ZodObject<{
|
|
|
278
281
|
webhook_url: z.ZodString;
|
|
279
282
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
280
283
|
code: z.ZodOptional<z.ZodString>;
|
|
284
|
+
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
281
285
|
}, "strip", z.ZodTypeAny, {
|
|
282
286
|
status: "error" | "running" | "success";
|
|
283
287
|
id: number;
|
|
@@ -286,6 +290,7 @@ export declare const listBubbleFlowExecutionsResponseSchema: z.ZodObject<{
|
|
|
286
290
|
webhook_url: string;
|
|
287
291
|
code?: string | undefined;
|
|
288
292
|
error?: string | undefined;
|
|
293
|
+
totalCost?: number | undefined;
|
|
289
294
|
result?: any;
|
|
290
295
|
completedAt?: string | undefined;
|
|
291
296
|
}, {
|
|
@@ -296,6 +301,7 @@ export declare const listBubbleFlowExecutionsResponseSchema: z.ZodObject<{
|
|
|
296
301
|
webhook_url: string;
|
|
297
302
|
code?: string | undefined;
|
|
298
303
|
error?: string | undefined;
|
|
304
|
+
totalCost?: number | undefined;
|
|
299
305
|
result?: any;
|
|
300
306
|
completedAt?: string | undefined;
|
|
301
307
|
}>, "many">;
|
|
@@ -309,6 +315,7 @@ export declare const listBubbleFlowExecutionsResponseSchema: z.ZodObject<{
|
|
|
309
315
|
webhook_url: string;
|
|
310
316
|
code?: string | undefined;
|
|
311
317
|
error?: string | undefined;
|
|
318
|
+
totalCost?: number | undefined;
|
|
312
319
|
result?: any;
|
|
313
320
|
completedAt?: string | undefined;
|
|
314
321
|
}[];
|
|
@@ -322,6 +329,7 @@ export declare const listBubbleFlowExecutionsResponseSchema: z.ZodObject<{
|
|
|
322
329
|
webhook_url: string;
|
|
323
330
|
code?: string | undefined;
|
|
324
331
|
error?: string | undefined;
|
|
332
|
+
totalCost?: number | undefined;
|
|
325
333
|
result?: any;
|
|
326
334
|
completedAt?: string | undefined;
|
|
327
335
|
}[];
|
|
@@ -338,6 +346,7 @@ export declare const bubbleFlowExecutionDetailSchema: z.ZodObject<{
|
|
|
338
346
|
webhook_url: z.ZodString;
|
|
339
347
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
340
348
|
code: z.ZodOptional<z.ZodString>;
|
|
349
|
+
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
341
350
|
} & {
|
|
342
351
|
executionLogs: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
343
352
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -348,6 +357,7 @@ export declare const bubbleFlowExecutionDetailSchema: z.ZodObject<{
|
|
|
348
357
|
webhook_url: string;
|
|
349
358
|
code?: string | undefined;
|
|
350
359
|
error?: string | undefined;
|
|
360
|
+
totalCost?: number | undefined;
|
|
351
361
|
result?: any;
|
|
352
362
|
completedAt?: string | undefined;
|
|
353
363
|
executionLogs?: any[] | undefined;
|
|
@@ -359,6 +369,7 @@ export declare const bubbleFlowExecutionDetailSchema: z.ZodObject<{
|
|
|
359
369
|
webhook_url: string;
|
|
360
370
|
code?: string | undefined;
|
|
361
371
|
error?: string | undefined;
|
|
372
|
+
totalCost?: number | undefined;
|
|
362
373
|
result?: any;
|
|
363
374
|
completedAt?: string | undefined;
|
|
364
375
|
executionLogs?: any[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bubbleflow-execution-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-execution-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AAKtC,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAEzC,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;EA2BL,CAAC;AAE3B,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4IL,CAAC;AAE/B,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGtE,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"bubbleflow-execution-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-execution-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -157,6 +157,7 @@ export declare const createBubbleFlowSchema: z.ZodObject<{
|
|
|
157
157
|
isInsideCustomTool?: boolean | undefined;
|
|
158
158
|
containingCustomToolId?: string | undefined;
|
|
159
159
|
}>>>;
|
|
160
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
160
161
|
}, "strip", z.ZodTypeAny, {
|
|
161
162
|
name: string;
|
|
162
163
|
code: string;
|
|
@@ -200,6 +201,7 @@ export declare const createBubbleFlowSchema: z.ZodObject<{
|
|
|
200
201
|
isInsideCustomTool?: boolean | undefined;
|
|
201
202
|
containingCustomToolId?: string | undefined;
|
|
202
203
|
}> | undefined;
|
|
204
|
+
triggerCredentialId?: number | null | undefined;
|
|
203
205
|
}, {
|
|
204
206
|
name: string;
|
|
205
207
|
code: string;
|
|
@@ -243,6 +245,7 @@ export declare const createBubbleFlowSchema: z.ZodObject<{
|
|
|
243
245
|
isInsideCustomTool?: boolean | undefined;
|
|
244
246
|
containingCustomToolId?: string | undefined;
|
|
245
247
|
}> | undefined;
|
|
248
|
+
triggerCredentialId?: number | null | undefined;
|
|
246
249
|
}>;
|
|
247
250
|
export declare const createEmptyBubbleFlowSchema: z.ZodObject<{
|
|
248
251
|
name: z.ZodString;
|
|
@@ -251,6 +254,7 @@ export declare const createEmptyBubbleFlowSchema: z.ZodObject<{
|
|
|
251
254
|
eventType: z.ZodString;
|
|
252
255
|
webhookPath: z.ZodOptional<z.ZodString>;
|
|
253
256
|
webhookActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
257
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
254
258
|
}, "strip", z.ZodTypeAny, {
|
|
255
259
|
name: string;
|
|
256
260
|
eventType: string;
|
|
@@ -258,6 +262,7 @@ export declare const createEmptyBubbleFlowSchema: z.ZodObject<{
|
|
|
258
262
|
description?: string | undefined;
|
|
259
263
|
webhookPath?: string | undefined;
|
|
260
264
|
webhookActive?: boolean | undefined;
|
|
265
|
+
triggerCredentialId?: number | null | undefined;
|
|
261
266
|
}, {
|
|
262
267
|
name: string;
|
|
263
268
|
eventType: string;
|
|
@@ -265,6 +270,7 @@ export declare const createEmptyBubbleFlowSchema: z.ZodObject<{
|
|
|
265
270
|
description?: string | undefined;
|
|
266
271
|
webhookPath?: string | undefined;
|
|
267
272
|
webhookActive?: boolean | undefined;
|
|
273
|
+
triggerCredentialId?: number | null | undefined;
|
|
268
274
|
}>;
|
|
269
275
|
export declare const executeBubbleFlowSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
270
276
|
export declare const updateBubbleFlowParametersSchema: z.ZodObject<{
|
|
@@ -1011,6 +1017,7 @@ export declare const createBubbleFlowResponseSchema: z.ZodObject<{
|
|
|
1011
1017
|
}>>;
|
|
1012
1018
|
requiredCredentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNativeEnum<typeof CredentialType>, "many">>>;
|
|
1013
1019
|
eventType: z.ZodString;
|
|
1020
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1014
1021
|
webhook: z.ZodOptional<z.ZodObject<{
|
|
1015
1022
|
id: z.ZodNumber;
|
|
1016
1023
|
url: z.ZodString;
|
|
@@ -1106,6 +1113,7 @@ export declare const createBubbleFlowResponseSchema: z.ZodObject<{
|
|
|
1106
1113
|
} | undefined;
|
|
1107
1114
|
inputSchema?: Record<string, unknown> | undefined;
|
|
1108
1115
|
requiredCredentials?: Record<string, CredentialType[]> | undefined;
|
|
1116
|
+
triggerCredentialId?: number | null | undefined;
|
|
1109
1117
|
webhook?: {
|
|
1110
1118
|
path: string;
|
|
1111
1119
|
id: number;
|
|
@@ -1191,6 +1199,7 @@ export declare const createBubbleFlowResponseSchema: z.ZodObject<{
|
|
|
1191
1199
|
} | undefined;
|
|
1192
1200
|
inputSchema?: Record<string, unknown> | undefined;
|
|
1193
1201
|
requiredCredentials?: Record<string, CredentialType[]> | undefined;
|
|
1202
|
+
triggerCredentialId?: number | null | undefined;
|
|
1194
1203
|
webhook?: {
|
|
1195
1204
|
path: string;
|
|
1196
1205
|
id: number;
|
|
@@ -1705,6 +1714,7 @@ export declare const bubbleFlowDetailsResponseSchema: z.ZodObject<{
|
|
|
1705
1714
|
}>>;
|
|
1706
1715
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1707
1716
|
permission: z.ZodOptional<z.ZodEnum<["owner", "editor", "runner", "viewer"]>>;
|
|
1717
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1708
1718
|
createdAt: z.ZodString;
|
|
1709
1719
|
updatedAt: z.ZodString;
|
|
1710
1720
|
webhook_url: z.ZodString;
|
|
@@ -1799,6 +1809,7 @@ export declare const bubbleFlowDetailsResponseSchema: z.ZodObject<{
|
|
|
1799
1809
|
cronActive?: boolean | undefined;
|
|
1800
1810
|
organizationId?: number | undefined;
|
|
1801
1811
|
prompt?: string | undefined;
|
|
1812
|
+
triggerCredentialId?: number | null | undefined;
|
|
1802
1813
|
generationError?: string | null | undefined;
|
|
1803
1814
|
usedCredentials?: {
|
|
1804
1815
|
name: string;
|
|
@@ -1911,6 +1922,7 @@ export declare const bubbleFlowDetailsResponseSchema: z.ZodObject<{
|
|
|
1911
1922
|
cronActive?: boolean | undefined;
|
|
1912
1923
|
organizationId?: number | undefined;
|
|
1913
1924
|
prompt?: string | undefined;
|
|
1925
|
+
triggerCredentialId?: number | null | undefined;
|
|
1914
1926
|
generationError?: string | null | undefined;
|
|
1915
1927
|
usedCredentials?: {
|
|
1916
1928
|
name: string;
|
|
@@ -1957,6 +1969,7 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
1957
1969
|
permission: z.ZodOptional<z.ZodEnum<["owner", "editor", "runner", "viewer"]>>;
|
|
1958
1970
|
organizationId: z.ZodOptional<z.ZodNumber>;
|
|
1959
1971
|
ownerId: z.ZodString;
|
|
1972
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1960
1973
|
createdAt: z.ZodString;
|
|
1961
1974
|
updatedAt: z.ZodString;
|
|
1962
1975
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1977,6 +1990,7 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
1977
1990
|
bubbleName: BubbleName;
|
|
1978
1991
|
}[] | undefined;
|
|
1979
1992
|
organizationId?: number | undefined;
|
|
1993
|
+
triggerCredentialId?: number | null | undefined;
|
|
1980
1994
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
1981
1995
|
cronSchedule?: string | undefined;
|
|
1982
1996
|
}, {
|
|
@@ -1997,6 +2011,7 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
1997
2011
|
bubbleName: BubbleName;
|
|
1998
2012
|
}[] | undefined;
|
|
1999
2013
|
organizationId?: number | undefined;
|
|
2014
|
+
triggerCredentialId?: number | null | undefined;
|
|
2000
2015
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2001
2016
|
cronSchedule?: string | undefined;
|
|
2002
2017
|
}>;
|
|
@@ -2025,6 +2040,7 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2025
2040
|
permission: z.ZodOptional<z.ZodEnum<["owner", "editor", "runner", "viewer"]>>;
|
|
2026
2041
|
organizationId: z.ZodOptional<z.ZodNumber>;
|
|
2027
2042
|
ownerId: z.ZodString;
|
|
2043
|
+
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2028
2044
|
createdAt: z.ZodString;
|
|
2029
2045
|
updatedAt: z.ZodString;
|
|
2030
2046
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2045,6 +2061,7 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2045
2061
|
bubbleName: BubbleName;
|
|
2046
2062
|
}[] | undefined;
|
|
2047
2063
|
organizationId?: number | undefined;
|
|
2064
|
+
triggerCredentialId?: number | null | undefined;
|
|
2048
2065
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2049
2066
|
cronSchedule?: string | undefined;
|
|
2050
2067
|
}, {
|
|
@@ -2065,6 +2082,7 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2065
2082
|
bubbleName: BubbleName;
|
|
2066
2083
|
}[] | undefined;
|
|
2067
2084
|
organizationId?: number | undefined;
|
|
2085
|
+
triggerCredentialId?: number | null | undefined;
|
|
2068
2086
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2069
2087
|
cronSchedule?: string | undefined;
|
|
2070
2088
|
}>, "many">>;
|
|
@@ -2094,6 +2112,7 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2094
2112
|
bubbleName: BubbleName;
|
|
2095
2113
|
}[] | undefined;
|
|
2096
2114
|
organizationId?: number | undefined;
|
|
2115
|
+
triggerCredentialId?: number | null | undefined;
|
|
2097
2116
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2098
2117
|
cronSchedule?: string | undefined;
|
|
2099
2118
|
}[];
|
|
@@ -2122,6 +2141,7 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2122
2141
|
bubbleName: BubbleName;
|
|
2123
2142
|
}[] | undefined;
|
|
2124
2143
|
organizationId?: number | undefined;
|
|
2144
|
+
triggerCredentialId?: number | null | undefined;
|
|
2125
2145
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2126
2146
|
cronSchedule?: string | undefined;
|
|
2127
2147
|
}[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bubbleflow-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AACtC,OAAO,EAGL,mBAAmB,EAEpB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAG7C,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"bubbleflow-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -398,14 +398,17 @@ export declare const credentialResponseSchema: z.ZodObject<{
|
|
|
398
398
|
cloudId: z.ZodString;
|
|
399
399
|
siteUrl: z.ZodString;
|
|
400
400
|
siteName: z.ZodOptional<z.ZodString>;
|
|
401
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
401
402
|
}, "strip", z.ZodTypeAny, {
|
|
402
403
|
cloudId: string;
|
|
403
404
|
siteUrl: string;
|
|
404
405
|
siteName?: string | undefined;
|
|
406
|
+
displayName?: string | undefined;
|
|
405
407
|
}, {
|
|
406
408
|
cloudId: string;
|
|
407
409
|
siteUrl: string;
|
|
408
410
|
siteName?: string | undefined;
|
|
411
|
+
displayName?: string | undefined;
|
|
409
412
|
}>]>>;
|
|
410
413
|
createdAt: z.ZodString;
|
|
411
414
|
isOauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -450,6 +453,7 @@ export declare const credentialResponseSchema: z.ZodObject<{
|
|
|
450
453
|
cloudId: string;
|
|
451
454
|
siteUrl: string;
|
|
452
455
|
siteName?: string | undefined;
|
|
456
|
+
displayName?: string | undefined;
|
|
453
457
|
} | undefined;
|
|
454
458
|
isOauth?: boolean | undefined;
|
|
455
459
|
oauthProvider?: string | undefined;
|
|
@@ -485,6 +489,7 @@ export declare const credentialResponseSchema: z.ZodObject<{
|
|
|
485
489
|
cloudId: string;
|
|
486
490
|
siteUrl: string;
|
|
487
491
|
siteName?: string | undefined;
|
|
492
|
+
displayName?: string | undefined;
|
|
488
493
|
} | undefined;
|
|
489
494
|
isOauth?: boolean | undefined;
|
|
490
495
|
oauthProvider?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credential-schema.d.ts","sourceRoot":"","sources":["../src/credential-schema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"credential-schema.d.ts","sourceRoot":"","sources":["../src/credential-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -101,14 +101,18 @@ export declare const jiraOAuthMetadataSchema: z.ZodObject<{
|
|
|
101
101
|
cloudId: z.ZodString;
|
|
102
102
|
siteUrl: z.ZodString;
|
|
103
103
|
siteName: z.ZodOptional<z.ZodString>;
|
|
104
|
+
/** Human-readable display name for the credential (e.g., Jira site name) */
|
|
105
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
104
106
|
}, "strip", z.ZodTypeAny, {
|
|
105
107
|
cloudId: string;
|
|
106
108
|
siteUrl: string;
|
|
107
109
|
siteName?: string | undefined;
|
|
110
|
+
displayName?: string | undefined;
|
|
108
111
|
}, {
|
|
109
112
|
cloudId: string;
|
|
110
113
|
siteUrl: string;
|
|
111
114
|
siteName?: string | undefined;
|
|
115
|
+
displayName?: string | undefined;
|
|
112
116
|
}>;
|
|
113
117
|
export type JiraOAuthMetadata = z.infer<typeof jiraOAuthMetadataSchema>;
|
|
114
118
|
/**
|
|
@@ -118,14 +122,18 @@ export declare const stripeOAuthMetadataSchema: z.ZodObject<{
|
|
|
118
122
|
stripeUserId: z.ZodString;
|
|
119
123
|
stripePublishableKey: z.ZodString;
|
|
120
124
|
livemode: z.ZodBoolean;
|
|
125
|
+
/** Human-readable display name for the credential */
|
|
126
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
121
127
|
}, "strip", z.ZodTypeAny, {
|
|
122
128
|
stripeUserId: string;
|
|
123
129
|
stripePublishableKey: string;
|
|
124
130
|
livemode: boolean;
|
|
131
|
+
displayName?: string | undefined;
|
|
125
132
|
}, {
|
|
126
133
|
stripeUserId: string;
|
|
127
134
|
stripePublishableKey: string;
|
|
128
135
|
livemode: boolean;
|
|
136
|
+
displayName?: string | undefined;
|
|
129
137
|
}>;
|
|
130
138
|
export type StripeOAuthMetadata = z.infer<typeof stripeOAuthMetadataSchema>;
|
|
131
139
|
/**
|
|
@@ -135,14 +143,18 @@ export declare const slackOAuthMetadataSchema: z.ZodObject<{
|
|
|
135
143
|
teamId: z.ZodString;
|
|
136
144
|
teamName: z.ZodString;
|
|
137
145
|
botUserId: z.ZodString;
|
|
146
|
+
/** Human-readable display name for the credential (workspace name) */
|
|
147
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
138
148
|
}, "strip", z.ZodTypeAny, {
|
|
139
149
|
teamId: string;
|
|
140
150
|
teamName: string;
|
|
141
151
|
botUserId: string;
|
|
152
|
+
displayName?: string | undefined;
|
|
142
153
|
}, {
|
|
143
154
|
teamId: string;
|
|
144
155
|
teamName: string;
|
|
145
156
|
botUserId: string;
|
|
157
|
+
displayName?: string | undefined;
|
|
146
158
|
}>;
|
|
147
159
|
export type SlackOAuthMetadata = z.infer<typeof slackOAuthMetadataSchema>;
|
|
148
160
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"database-definition-schema.d.ts","sourceRoot":"","sources":["../src/database-definition-schema.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AAGtC,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,YAAY,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,CAAC;IACjE,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,WAAW,GAAG,cAAc,GAAG,OAAO,CAAC;IAC/C,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG,cAAc,GAAG,OAAO,CAAC;AACpE,MAAM,MAAM,YAAY,GACpB,YAAY,GACZ,OAAO,GACP,SAAS,GACT,UAAU,GACV,QAAQ,CAAC;AAGb,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAGD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"database-definition-schema.d.ts","sourceRoot":"","sources":["../src/database-definition-schema.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AAGtC,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,YAAY,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,CAAC;IACjE,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,WAAW,GAAG,cAAc,GAAG,OAAO,CAAC;IAC/C,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG,cAAc,GAAG,OAAO,CAAC;AACpE,MAAM,MAAM,YAAY,GACpB,YAAY,GACZ,OAAO,GACP,SAAS,GACT,UAAU,GACV,QAAQ,CAAC;AAGb,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,aAAa,EAAE,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAGD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;IAIlC,4EAA4E;;;;;;;;;;;;EAE5E,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;IAIpC,qDAAqD;;;;;;;;;;;;EAErD,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE5E;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;IAInC,sEAAsE;;;;;;;;;;;;EAEtE,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E;;;;;GAKG;AACH,MAAM,MAAM,kBAAkB,GAC1B,gBAAgB,GAChB,iBAAiB,GACjB,kBAAkB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -58,20 +58,26 @@ var databaseMetadataSchema = z2.object({
|
|
|
58
58
|
var jiraOAuthMetadataSchema = z2.object({
|
|
59
59
|
cloudId: z2.string(),
|
|
60
60
|
siteUrl: z2.string(),
|
|
61
|
-
siteName: z2.string().optional()
|
|
61
|
+
siteName: z2.string().optional(),
|
|
62
|
+
/** Human-readable display name for the credential (e.g., Jira site name) */
|
|
63
|
+
displayName: z2.string().optional()
|
|
62
64
|
});
|
|
63
65
|
var stripeOAuthMetadataSchema = z2.object({
|
|
64
66
|
stripeUserId: z2.string(),
|
|
65
67
|
// Connected account ID (acct_xxx)
|
|
66
68
|
stripePublishableKey: z2.string(),
|
|
67
69
|
// Publishable key (pk_live_xxx or pk_test_xxx)
|
|
68
|
-
livemode: z2.boolean()
|
|
70
|
+
livemode: z2.boolean(),
|
|
69
71
|
// true = production, false = test mode
|
|
72
|
+
/** Human-readable display name for the credential */
|
|
73
|
+
displayName: z2.string().optional()
|
|
70
74
|
});
|
|
71
75
|
var slackOAuthMetadataSchema = z2.object({
|
|
72
76
|
teamId: z2.string(),
|
|
73
77
|
teamName: z2.string(),
|
|
74
|
-
botUserId: z2.string()
|
|
78
|
+
botUserId: z2.string(),
|
|
79
|
+
/** Human-readable display name for the credential (workspace name) */
|
|
80
|
+
displayName: z2.string().optional()
|
|
75
81
|
});
|
|
76
82
|
|
|
77
83
|
// src/types.ts
|
|
@@ -2325,6 +2331,9 @@ var createBubbleFlowSchema = z8.object({
|
|
|
2325
2331
|
}),
|
|
2326
2332
|
bubbleParameters: z8.record(z8.string(), ParsedBubbleWithInfoSchema).optional().openapi({
|
|
2327
2333
|
description: "Optional pre-parsed bubble parameters with descriptions (from AI generation). If provided, will be used instead of re-parsing the code."
|
|
2334
|
+
}),
|
|
2335
|
+
triggerCredentialId: z8.number().nullable().optional().openapi({
|
|
2336
|
+
description: "ID of credential for trigger authentication (e.g., Slack OAuth)"
|
|
2328
2337
|
})
|
|
2329
2338
|
}).openapi("CreateBubbleFlowRequest");
|
|
2330
2339
|
var createEmptyBubbleFlowSchema = z8.object({
|
|
@@ -2351,6 +2360,9 @@ var createEmptyBubbleFlowSchema = z8.object({
|
|
|
2351
2360
|
webhookActive: z8.boolean().default(false).optional().openapi({
|
|
2352
2361
|
description: "Whether the webhook should be active immediately",
|
|
2353
2362
|
example: true
|
|
2363
|
+
}),
|
|
2364
|
+
triggerCredentialId: z8.number().nullable().optional().openapi({
|
|
2365
|
+
description: "ID of credential for trigger authentication (e.g., Slack OAuth)"
|
|
2354
2366
|
})
|
|
2355
2367
|
}).openapi("CreateEmptyBubbleFlowRequest");
|
|
2356
2368
|
var executeBubbleFlowSchema = z8.record(z8.string(), z8.unknown()).openapi("ExecuteBubbleFlowRequest");
|
|
@@ -2400,6 +2412,9 @@ var createBubbleFlowResponseSchema = z8.object({
|
|
|
2400
2412
|
description: "Event type this BubbleFlow responds to",
|
|
2401
2413
|
example: "webhook/http"
|
|
2402
2414
|
}),
|
|
2415
|
+
triggerCredentialId: z8.number().nullable().optional().openapi({
|
|
2416
|
+
description: "ID of credential for trigger authentication (e.g., Slack OAuth)"
|
|
2417
|
+
}),
|
|
2403
2418
|
webhook: z8.object({
|
|
2404
2419
|
id: z8.number().openapi({ description: "Webhook ID", example: 456 }),
|
|
2405
2420
|
url: z8.string().openapi({
|
|
@@ -2520,6 +2535,9 @@ var bubbleFlowDetailsResponseSchema = z8.object({
|
|
|
2520
2535
|
description: "Current user permission level for this flow",
|
|
2521
2536
|
example: "owner"
|
|
2522
2537
|
}),
|
|
2538
|
+
triggerCredentialId: z8.number().nullable().optional().openapi({
|
|
2539
|
+
description: "Credential ID for trigger authentication"
|
|
2540
|
+
}),
|
|
2523
2541
|
createdAt: z8.string().openapi({ description: "Creation timestamp" }),
|
|
2524
2542
|
updatedAt: z8.string().openapi({ description: "Update timestamp" }),
|
|
2525
2543
|
webhook_url: z8.string().openapi({ description: "Webhook URL for this bubble flow" })
|
|
@@ -2553,6 +2571,9 @@ var bubbleFlowListItemSchema = z8.object({
|
|
|
2553
2571
|
description: "User ID of the flow owner",
|
|
2554
2572
|
example: "user_abc123"
|
|
2555
2573
|
}),
|
|
2574
|
+
triggerCredentialId: z8.number().nullable().optional().openapi({
|
|
2575
|
+
description: "Credential ID for trigger authentication"
|
|
2576
|
+
}),
|
|
2556
2577
|
createdAt: z8.string().openapi({ description: "Creation timestamp" }),
|
|
2557
2578
|
updatedAt: z8.string().openapi({ description: "Update timestamp" })
|
|
2558
2579
|
});
|
|
@@ -2741,6 +2762,9 @@ var bubbleFlowExecutionSchema = z9.object({
|
|
|
2741
2762
|
completedAt: z9.string().optional().openapi({ description: "Execution completion timestamp" }),
|
|
2742
2763
|
code: z9.string().optional().openapi({
|
|
2743
2764
|
description: "The code that was executed (snapshot of the code at execution time)"
|
|
2765
|
+
}),
|
|
2766
|
+
totalCost: z9.number().optional().openapi({
|
|
2767
|
+
description: "Total cost of the execution in credits"
|
|
2744
2768
|
})
|
|
2745
2769
|
});
|
|
2746
2770
|
var listBubbleFlowExecutionsResponseSchema = z9.object({
|
|
@@ -3752,7 +3776,9 @@ var AvailableModels = z15.enum([
|
|
|
3752
3776
|
"openrouter/anthropic/claude-sonnet-4.5",
|
|
3753
3777
|
"openrouter/google/gemini-3-pro-preview",
|
|
3754
3778
|
"openrouter/morph/morph-v3-large",
|
|
3755
|
-
"openrouter/openai/gpt-oss-120b"
|
|
3779
|
+
"openrouter/openai/gpt-oss-120b",
|
|
3780
|
+
"openrouter/openai/o3-deep-research",
|
|
3781
|
+
"openrouter/openai/o4-mini-deep-research"
|
|
3756
3782
|
]);
|
|
3757
3783
|
|
|
3758
3784
|
// src/agent-memory.ts
|