@bubblelab/shared-schemas 0.1.224 → 0.1.226
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-schema.d.ts +112 -0
- package/dist/bubbleflow-schema.d.ts.map +1 -1
- package/dist/index.js +12 -1
- 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,5 +1,5 @@
|
|
|
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", "google/gemini-3.1-pro-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-sonnet-4.6", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "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"]>;
|
|
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", "google/gemini-3.1-pro-preview", "google/gemini-3.1-flash-lite-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-sonnet-4-6", "anthropic/claude-opus-4-5", "anthropic/claude-opus-4-6", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-sonnet-4.6", "openrouter/anthropic/claude-opus-4.5", "openrouter/anthropic/claude-opus-4.6", "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
|
export declare const RECOMMENDED_MODELS: Record<string, AvailableModel>;
|
|
5
5
|
//# 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,q9BAmC1B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAG7D,eAAO,MAAM,kBAAkB,EAwB1B,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC"}
|
|
@@ -2011,6 +2011,32 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
2011
2011
|
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2012
2012
|
createdAt: z.ZodString;
|
|
2013
2013
|
updatedAt: z.ZodString;
|
|
2014
|
+
lastExecution: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2015
|
+
status: z.ZodEnum<["running", "success", "error"]>;
|
|
2016
|
+
startedAt: z.ZodString;
|
|
2017
|
+
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2018
|
+
}, "strip", z.ZodTypeAny, {
|
|
2019
|
+
status: "error" | "running" | "success";
|
|
2020
|
+
startedAt: string;
|
|
2021
|
+
completedAt?: string | null | undefined;
|
|
2022
|
+
}, {
|
|
2023
|
+
status: "error" | "running" | "success";
|
|
2024
|
+
startedAt: string;
|
|
2025
|
+
completedAt?: string | null | undefined;
|
|
2026
|
+
}>>>;
|
|
2027
|
+
ownerInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2028
|
+
userId: z.ZodString;
|
|
2029
|
+
email: z.ZodString;
|
|
2030
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
name: string | null;
|
|
2033
|
+
userId: string;
|
|
2034
|
+
email: string;
|
|
2035
|
+
}, {
|
|
2036
|
+
name: string | null;
|
|
2037
|
+
userId: string;
|
|
2038
|
+
email: string;
|
|
2039
|
+
}>>>;
|
|
2014
2040
|
}, "strip", z.ZodTypeAny, {
|
|
2015
2041
|
name: string;
|
|
2016
2042
|
id: number;
|
|
@@ -2032,6 +2058,16 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
2032
2058
|
triggerCredentialId?: number | null | undefined;
|
|
2033
2059
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2034
2060
|
cronSchedule?: string | undefined;
|
|
2061
|
+
lastExecution?: {
|
|
2062
|
+
status: "error" | "running" | "success";
|
|
2063
|
+
startedAt: string;
|
|
2064
|
+
completedAt?: string | null | undefined;
|
|
2065
|
+
} | null | undefined;
|
|
2066
|
+
ownerInfo?: {
|
|
2067
|
+
name: string | null;
|
|
2068
|
+
userId: string;
|
|
2069
|
+
email: string;
|
|
2070
|
+
} | null | undefined;
|
|
2035
2071
|
}, {
|
|
2036
2072
|
name: string;
|
|
2037
2073
|
id: number;
|
|
@@ -2053,6 +2089,16 @@ export declare const bubbleFlowListItemSchema: z.ZodObject<{
|
|
|
2053
2089
|
triggerCredentialId?: number | null | undefined;
|
|
2054
2090
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2055
2091
|
cronSchedule?: string | undefined;
|
|
2092
|
+
lastExecution?: {
|
|
2093
|
+
status: "error" | "running" | "success";
|
|
2094
|
+
startedAt: string;
|
|
2095
|
+
completedAt?: string | null | undefined;
|
|
2096
|
+
} | null | undefined;
|
|
2097
|
+
ownerInfo?: {
|
|
2098
|
+
name: string | null;
|
|
2099
|
+
userId: string;
|
|
2100
|
+
email: string;
|
|
2101
|
+
} | null | undefined;
|
|
2056
2102
|
}>;
|
|
2057
2103
|
export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
2058
2104
|
bubbleFlows: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -2082,6 +2128,32 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2082
2128
|
triggerCredentialId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2083
2129
|
createdAt: z.ZodString;
|
|
2084
2130
|
updatedAt: z.ZodString;
|
|
2131
|
+
lastExecution: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2132
|
+
status: z.ZodEnum<["running", "success", "error"]>;
|
|
2133
|
+
startedAt: z.ZodString;
|
|
2134
|
+
completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2135
|
+
}, "strip", z.ZodTypeAny, {
|
|
2136
|
+
status: "error" | "running" | "success";
|
|
2137
|
+
startedAt: string;
|
|
2138
|
+
completedAt?: string | null | undefined;
|
|
2139
|
+
}, {
|
|
2140
|
+
status: "error" | "running" | "success";
|
|
2141
|
+
startedAt: string;
|
|
2142
|
+
completedAt?: string | null | undefined;
|
|
2143
|
+
}>>>;
|
|
2144
|
+
ownerInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2145
|
+
userId: z.ZodString;
|
|
2146
|
+
email: z.ZodString;
|
|
2147
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2148
|
+
}, "strip", z.ZodTypeAny, {
|
|
2149
|
+
name: string | null;
|
|
2150
|
+
userId: string;
|
|
2151
|
+
email: string;
|
|
2152
|
+
}, {
|
|
2153
|
+
name: string | null;
|
|
2154
|
+
userId: string;
|
|
2155
|
+
email: string;
|
|
2156
|
+
}>>>;
|
|
2085
2157
|
}, "strip", z.ZodTypeAny, {
|
|
2086
2158
|
name: string;
|
|
2087
2159
|
id: number;
|
|
@@ -2103,6 +2175,16 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2103
2175
|
triggerCredentialId?: number | null | undefined;
|
|
2104
2176
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2105
2177
|
cronSchedule?: string | undefined;
|
|
2178
|
+
lastExecution?: {
|
|
2179
|
+
status: "error" | "running" | "success";
|
|
2180
|
+
startedAt: string;
|
|
2181
|
+
completedAt?: string | null | undefined;
|
|
2182
|
+
} | null | undefined;
|
|
2183
|
+
ownerInfo?: {
|
|
2184
|
+
name: string | null;
|
|
2185
|
+
userId: string;
|
|
2186
|
+
email: string;
|
|
2187
|
+
} | null | undefined;
|
|
2106
2188
|
}, {
|
|
2107
2189
|
name: string;
|
|
2108
2190
|
id: number;
|
|
@@ -2124,6 +2206,16 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2124
2206
|
triggerCredentialId?: number | null | undefined;
|
|
2125
2207
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2126
2208
|
cronSchedule?: string | undefined;
|
|
2209
|
+
lastExecution?: {
|
|
2210
|
+
status: "error" | "running" | "success";
|
|
2211
|
+
startedAt: string;
|
|
2212
|
+
completedAt?: string | null | undefined;
|
|
2213
|
+
} | null | undefined;
|
|
2214
|
+
ownerInfo?: {
|
|
2215
|
+
name: string | null;
|
|
2216
|
+
userId: string;
|
|
2217
|
+
email: string;
|
|
2218
|
+
} | null | undefined;
|
|
2127
2219
|
}>, "many">>;
|
|
2128
2220
|
userMonthlyUsage: z.ZodObject<{
|
|
2129
2221
|
count: z.ZodNumber;
|
|
@@ -2154,6 +2246,16 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2154
2246
|
triggerCredentialId?: number | null | undefined;
|
|
2155
2247
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2156
2248
|
cronSchedule?: string | undefined;
|
|
2249
|
+
lastExecution?: {
|
|
2250
|
+
status: "error" | "running" | "success";
|
|
2251
|
+
startedAt: string;
|
|
2252
|
+
completedAt?: string | null | undefined;
|
|
2253
|
+
} | null | undefined;
|
|
2254
|
+
ownerInfo?: {
|
|
2255
|
+
name: string | null;
|
|
2256
|
+
userId: string;
|
|
2257
|
+
email: string;
|
|
2258
|
+
} | null | undefined;
|
|
2157
2259
|
}[];
|
|
2158
2260
|
userMonthlyUsage: {
|
|
2159
2261
|
count: number;
|
|
@@ -2183,6 +2285,16 @@ export declare const bubbleFlowListResponseSchema: z.ZodObject<{
|
|
|
2183
2285
|
triggerCredentialId?: number | null | undefined;
|
|
2184
2286
|
permission?: "owner" | "editor" | "runner" | "viewer" | undefined;
|
|
2185
2287
|
cronSchedule?: string | undefined;
|
|
2288
|
+
lastExecution?: {
|
|
2289
|
+
status: "error" | "running" | "success";
|
|
2290
|
+
startedAt: string;
|
|
2291
|
+
completedAt?: string | null | undefined;
|
|
2292
|
+
} | null | undefined;
|
|
2293
|
+
ownerInfo?: {
|
|
2294
|
+
name: string | null;
|
|
2295
|
+
userId: string;
|
|
2296
|
+
email: string;
|
|
2297
|
+
} | null | undefined;
|
|
2186
2298
|
}[] | undefined;
|
|
2187
2299
|
}>;
|
|
2188
2300
|
export declare const activateBubbleFlowResponseSchema: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bubbleflow-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-schema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"bubbleflow-schema.d.ts","sourceRoot":"","sources":["../src/bubbleflow-schema.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -3502,7 +3502,17 @@ var bubbleFlowListItemSchema = z8.object({
|
|
|
3502
3502
|
description: "Credential ID for trigger authentication"
|
|
3503
3503
|
}),
|
|
3504
3504
|
createdAt: z8.string().openapi({ description: "Creation timestamp" }),
|
|
3505
|
-
updatedAt: z8.string().openapi({ description: "Update timestamp" })
|
|
3505
|
+
updatedAt: z8.string().openapi({ description: "Update timestamp" }),
|
|
3506
|
+
lastExecution: z8.object({
|
|
3507
|
+
status: z8.enum(["running", "success", "error"]),
|
|
3508
|
+
startedAt: z8.string(),
|
|
3509
|
+
completedAt: z8.string().nullable().optional()
|
|
3510
|
+
}).nullable().optional().openapi({ description: "Most recent execution summary" }),
|
|
3511
|
+
ownerInfo: z8.object({
|
|
3512
|
+
userId: z8.string(),
|
|
3513
|
+
email: z8.string(),
|
|
3514
|
+
name: z8.string().nullable()
|
|
3515
|
+
}).nullable().optional().openapi({ description: "Flow owner display info" })
|
|
3506
3516
|
});
|
|
3507
3517
|
var bubbleFlowListResponseSchema = z8.object({
|
|
3508
3518
|
bubbleFlows: z8.array(bubbleFlowListItemSchema).default([]),
|
|
@@ -4703,6 +4713,7 @@ var AvailableModels = z15.enum([
|
|
|
4703
4713
|
"google/gemini-3-pro-image-preview",
|
|
4704
4714
|
"google/gemini-3-flash-preview",
|
|
4705
4715
|
"google/gemini-3.1-pro-preview",
|
|
4716
|
+
"google/gemini-3.1-flash-lite-preview",
|
|
4706
4717
|
// Anthropic models
|
|
4707
4718
|
"anthropic/claude-sonnet-4-5",
|
|
4708
4719
|
"anthropic/claude-sonnet-4-6",
|