Skip to content

Commit 73ecea2

Browse files
authored
feat: added name for history executions
* added name for history executions * rebased and bumped
1 parent 6eae1fb commit 73ecea2

8 files changed

Lines changed: 18 additions & 10 deletions

File tree

packages/bubble-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bubblelab/bubble-core",
3-
"version": "0.1.302",
3+
"version": "0.1.303",
44
"type": "module",
55
"license": "Apache-2.0",
66
"main": "./dist/index.js",

packages/bubble-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bubblelab/bubble-runtime",
3-
"version": "0.1.302",
3+
"version": "0.1.303",
44
"type": "module",
55
"license": "Apache-2.0",
66
"main": "./dist/index.js",

packages/bubble-scope-manager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bubblelab/ts-scope-manager",
3-
"version": "0.1.302",
3+
"version": "0.1.303",
44
"private": false,
55
"license": "MIT",
66
"type": "commonjs",

packages/bubble-shared-schemas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bubblelab/shared-schemas",
3-
"version": "0.1.302",
3+
"version": "0.1.303",
44
"type": "module",
55
"license": "Apache-2.0",
66
"main": "./dist/index.js",

packages/bubble-shared-schemas/src/bubbleflow-execution-schema.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,17 @@ export const ExecutionSummarySchema = z
180180

181181
export type ExecutionSummary = z.infer<typeof ExecutionSummarySchema>;
182182

183+
// Max length for user-assigned execution labels. Shared between the PATCH
184+
// request schema, the DB-agnostic response schema, and the frontend input
185+
// maxLength attribute so the three sides can't drift apart.
186+
export const MAX_EXECUTION_NAME_LENGTH = 120;
187+
183188
// BubbleFlow execution history item schema
184189
export const bubbleFlowExecutionSchema = z.object({
185190
id: z.number().openapi({ description: 'Execution ID' }),
191+
name: z.string().nullable().optional().openapi({
192+
description: 'User-assigned label for this execution (checkpoint name)',
193+
}),
186194
status: z
187195
.enum(['running', 'success', 'error'])
188196
.openapi({ description: 'Execution status' }),

packages/create-bubblelab-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-bubblelab-app",
3-
"version": "0.1.302",
3+
"version": "0.1.303",
44
"type": "module",
55
"license": "Apache-2.0",
66
"description": "Create BubbleLab AI agent applications with one command",

packages/create-bubblelab-app/templates/basic/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"typecheck": "tsc --noEmit"
1212
},
1313
"dependencies": {
14-
"@bubblelab/bubble-core": "^0.1.302",
15-
"@bubblelab/bubble-runtime": "^0.1.302",
16-
"@bubblelab/shared-schemas": "^0.1.302",
14+
"@bubblelab/bubble-core": "^0.1.303",
15+
"@bubblelab/bubble-runtime": "^0.1.303",
16+
"@bubblelab/shared-schemas": "^0.1.303",
1717
"dotenv": "^16.4.5"
1818
},
1919
"devDependencies": {

packages/create-bubblelab-app/templates/reddit-scraper/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"typecheck": "tsc --noEmit"
1212
},
1313
"dependencies": {
14-
"@bubblelab/bubble-core": "^0.1.302",
15-
"@bubblelab/bubble-runtime": "^0.1.302",
14+
"@bubblelab/bubble-core": "^0.1.303",
15+
"@bubblelab/bubble-runtime": "^0.1.303",
1616
"dotenv": "^16.4.5"
1717
},
1818
"devDependencies": {

0 commit comments

Comments
 (0)