@bubblelab/bubble-core 0.1.31 → 0.1.33
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/bubble-bundle.d.ts +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
- package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
- package/dist/bubbles/service-bubble/github.d.ts +98 -98
- package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
- package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +503 -493
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +47 -10
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +4 -3
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
- package/dist/bubbles/service-bubble/postgresql.d.ts +2 -2
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles.json +4 -16
- package/package.json +2 -2
|
@@ -81,14 +81,14 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
81
81
|
start_url: z.ZodOptional<z.ZodString>;
|
|
82
82
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
operation: "send_message";
|
|
85
84
|
message: string;
|
|
85
|
+
operation: "send_message";
|
|
86
86
|
session_id: string;
|
|
87
87
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
88
88
|
start_url?: string | undefined;
|
|
89
89
|
}, {
|
|
90
|
-
operation: "send_message";
|
|
91
90
|
message: string;
|
|
91
|
+
operation: "send_message";
|
|
92
92
|
session_id: string;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
start_url?: string | undefined;
|
|
@@ -401,14 +401,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
401
401
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
402
402
|
}, "strip", z.ZodTypeAny, {
|
|
403
403
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
404
|
-
content: string | Record<string, unknown>;
|
|
405
404
|
id: number;
|
|
405
|
+
content: string | Record<string, unknown>;
|
|
406
406
|
timestamp: string;
|
|
407
407
|
metadata?: Record<string, unknown> | undefined;
|
|
408
408
|
}, {
|
|
409
409
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
410
|
-
content: string | Record<string, unknown>;
|
|
411
410
|
id: number;
|
|
411
|
+
content: string | Record<string, unknown>;
|
|
412
412
|
timestamp: string;
|
|
413
413
|
metadata?: Record<string, unknown> | undefined;
|
|
414
414
|
}>, "many">>;
|
|
@@ -424,8 +424,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
424
424
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
425
425
|
messages?: {
|
|
426
426
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
427
|
-
content: string | Record<string, unknown>;
|
|
428
427
|
id: number;
|
|
428
|
+
content: string | Record<string, unknown>;
|
|
429
429
|
timestamp: string;
|
|
430
430
|
metadata?: Record<string, unknown> | undefined;
|
|
431
431
|
}[] | undefined;
|
|
@@ -438,8 +438,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
438
438
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
439
439
|
messages?: {
|
|
440
440
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
441
|
-
content: string | Record<string, unknown>;
|
|
442
441
|
id: number;
|
|
442
|
+
content: string | Record<string, unknown>;
|
|
443
443
|
timestamp: string;
|
|
444
444
|
metadata?: Record<string, unknown> | undefined;
|
|
445
445
|
}[] | undefined;
|
|
@@ -634,14 +634,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
634
634
|
start_url: z.ZodOptional<z.ZodString>;
|
|
635
635
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
636
636
|
}, "strip", z.ZodTypeAny, {
|
|
637
|
-
operation: "send_message";
|
|
638
637
|
message: string;
|
|
638
|
+
operation: "send_message";
|
|
639
639
|
session_id: string;
|
|
640
640
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
641
641
|
start_url?: string | undefined;
|
|
642
642
|
}, {
|
|
643
|
-
operation: "send_message";
|
|
644
643
|
message: string;
|
|
644
|
+
operation: "send_message";
|
|
645
645
|
session_id: string;
|
|
646
646
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
647
647
|
start_url?: string | undefined;
|
|
@@ -954,14 +954,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
954
954
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
955
955
|
}, "strip", z.ZodTypeAny, {
|
|
956
956
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
957
|
-
content: string | Record<string, unknown>;
|
|
958
957
|
id: number;
|
|
958
|
+
content: string | Record<string, unknown>;
|
|
959
959
|
timestamp: string;
|
|
960
960
|
metadata?: Record<string, unknown> | undefined;
|
|
961
961
|
}, {
|
|
962
962
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
963
|
-
content: string | Record<string, unknown>;
|
|
964
963
|
id: number;
|
|
964
|
+
content: string | Record<string, unknown>;
|
|
965
965
|
timestamp: string;
|
|
966
966
|
metadata?: Record<string, unknown> | undefined;
|
|
967
967
|
}>, "many">>;
|
|
@@ -977,8 +977,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
977
977
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
978
978
|
messages?: {
|
|
979
979
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
980
|
-
content: string | Record<string, unknown>;
|
|
981
980
|
id: number;
|
|
981
|
+
content: string | Record<string, unknown>;
|
|
982
982
|
timestamp: string;
|
|
983
983
|
metadata?: Record<string, unknown> | undefined;
|
|
984
984
|
}[] | undefined;
|
|
@@ -991,8 +991,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
991
991
|
status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
|
|
992
992
|
messages?: {
|
|
993
993
|
type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
|
|
994
|
-
content: string | Record<string, unknown>;
|
|
995
994
|
id: number;
|
|
995
|
+
content: string | Record<string, unknown>;
|
|
996
996
|
timestamp: string;
|
|
997
997
|
metadata?: Record<string, unknown> | undefined;
|
|
998
998
|
}[] | undefined;
|