@bubblelab/bubble-core 0.1.24 → 0.1.25
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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
- package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
- package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -11,21 +11,21 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
11
11
|
convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
operation: "upload_file";
|
|
15
14
|
name: string;
|
|
16
15
|
content: string;
|
|
16
|
+
operation: "upload_file";
|
|
17
17
|
convert_to_google_docs: boolean;
|
|
18
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18
19
|
mimeType?: string | undefined;
|
|
19
20
|
parent_folder_id?: string | undefined;
|
|
20
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
operation: "upload_file";
|
|
23
22
|
name: string;
|
|
24
23
|
content: string;
|
|
24
|
+
operation: "upload_file";
|
|
25
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
25
26
|
mimeType?: string | undefined;
|
|
26
27
|
parent_folder_id?: string | undefined;
|
|
27
28
|
convert_to_google_docs?: boolean | undefined;
|
|
28
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
29
29
|
}>, z.ZodObject<{
|
|
30
30
|
operation: z.ZodLiteral<"download_file">;
|
|
31
31
|
file_id: z.ZodString;
|
|
@@ -55,13 +55,13 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
55
55
|
include_folders: boolean;
|
|
56
56
|
order_by: string;
|
|
57
57
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
58
|
-
folder_id?: string | undefined;
|
|
59
58
|
query?: string | undefined;
|
|
59
|
+
folder_id?: string | undefined;
|
|
60
60
|
}, {
|
|
61
61
|
operation: "list_files";
|
|
62
62
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
63
|
-
folder_id?: string | undefined;
|
|
64
63
|
query?: string | undefined;
|
|
64
|
+
folder_id?: string | undefined;
|
|
65
65
|
max_results?: number | undefined;
|
|
66
66
|
include_folders?: boolean | undefined;
|
|
67
67
|
order_by?: string | undefined;
|
|
@@ -71,15 +71,15 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
71
71
|
parent_folder_id: z.ZodOptional<z.ZodString>;
|
|
72
72
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
operation: "create_folder";
|
|
75
74
|
name: string;
|
|
76
|
-
|
|
75
|
+
operation: "create_folder";
|
|
77
76
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
77
|
+
parent_folder_id?: string | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
operation: "create_folder";
|
|
80
79
|
name: string;
|
|
81
|
-
|
|
80
|
+
operation: "create_folder";
|
|
82
81
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
82
|
+
parent_folder_id?: string | undefined;
|
|
83
83
|
}>, z.ZodObject<{
|
|
84
84
|
operation: z.ZodLiteral<"delete_file">;
|
|
85
85
|
file_id: z.ZodString;
|
|
@@ -119,20 +119,20 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
119
119
|
send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
120
120
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
|
+
type: "domain" | "user" | "group" | "anyone";
|
|
122
123
|
operation: "share_file";
|
|
123
|
-
|
|
124
|
+
role: "writer" | "reader" | "commenter" | "owner";
|
|
124
125
|
file_id: string;
|
|
125
|
-
role: "reader" | "writer" | "commenter" | "owner";
|
|
126
126
|
send_notification: boolean;
|
|
127
127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
128
128
|
email_address?: string | undefined;
|
|
129
129
|
}, {
|
|
130
130
|
operation: "share_file";
|
|
131
131
|
file_id: string;
|
|
132
|
-
type?: "
|
|
132
|
+
type?: "domain" | "user" | "group" | "anyone" | undefined;
|
|
133
133
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
134
|
+
role?: "writer" | "reader" | "commenter" | "owner" | undefined;
|
|
134
135
|
email_address?: string | undefined;
|
|
135
|
-
role?: "reader" | "writer" | "commenter" | "owner" | undefined;
|
|
136
136
|
send_notification?: boolean | undefined;
|
|
137
137
|
}>, z.ZodObject<{
|
|
138
138
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -171,14 +171,14 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
171
171
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["replace", "append"]>>>;
|
|
172
172
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
operation: "update_doc";
|
|
175
174
|
content: string;
|
|
176
|
-
|
|
175
|
+
operation: "update_doc";
|
|
177
176
|
mode: "replace" | "append";
|
|
177
|
+
document_id: string;
|
|
178
178
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
179
179
|
}, {
|
|
180
|
-
operation: "update_doc";
|
|
181
180
|
content: string;
|
|
181
|
+
operation: "update_doc";
|
|
182
182
|
document_id: string;
|
|
183
183
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
184
184
|
mode?: "replace" | "append" | undefined;
|
|
@@ -362,6 +362,7 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
362
362
|
operation: "list_files";
|
|
363
363
|
success: boolean;
|
|
364
364
|
error: string;
|
|
365
|
+
total_count?: number | undefined;
|
|
365
366
|
files?: {
|
|
366
367
|
name: string;
|
|
367
368
|
mimeType: string;
|
|
@@ -378,12 +379,12 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
378
379
|
emailAddress?: string | undefined;
|
|
379
380
|
}[] | undefined;
|
|
380
381
|
}[] | undefined;
|
|
381
|
-
total_count?: number | undefined;
|
|
382
382
|
next_page_token?: string | undefined;
|
|
383
383
|
}, {
|
|
384
384
|
operation: "list_files";
|
|
385
385
|
success: boolean;
|
|
386
386
|
error: string;
|
|
387
|
+
total_count?: number | undefined;
|
|
387
388
|
files?: {
|
|
388
389
|
name: string;
|
|
389
390
|
mimeType: string;
|
|
@@ -400,7 +401,6 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
400
401
|
emailAddress?: string | undefined;
|
|
401
402
|
}[] | undefined;
|
|
402
403
|
}[] | undefined;
|
|
403
|
-
total_count?: number | undefined;
|
|
404
404
|
next_page_token?: string | undefined;
|
|
405
405
|
}>, z.ZodObject<{
|
|
406
406
|
operation: z.ZodLiteral<"create_folder">;
|
|
@@ -799,21 +799,21 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
799
799
|
convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
800
800
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
-
operation: "upload_file";
|
|
803
802
|
name: string;
|
|
804
803
|
content: string;
|
|
804
|
+
operation: "upload_file";
|
|
805
805
|
convert_to_google_docs: boolean;
|
|
806
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
806
807
|
mimeType?: string | undefined;
|
|
807
808
|
parent_folder_id?: string | undefined;
|
|
808
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
809
809
|
}, {
|
|
810
|
-
operation: "upload_file";
|
|
811
810
|
name: string;
|
|
812
811
|
content: string;
|
|
812
|
+
operation: "upload_file";
|
|
813
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
813
814
|
mimeType?: string | undefined;
|
|
814
815
|
parent_folder_id?: string | undefined;
|
|
815
816
|
convert_to_google_docs?: boolean | undefined;
|
|
816
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
817
817
|
}>, z.ZodObject<{
|
|
818
818
|
operation: z.ZodLiteral<"download_file">;
|
|
819
819
|
file_id: z.ZodString;
|
|
@@ -843,13 +843,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
843
843
|
include_folders: boolean;
|
|
844
844
|
order_by: string;
|
|
845
845
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
846
|
-
folder_id?: string | undefined;
|
|
847
846
|
query?: string | undefined;
|
|
847
|
+
folder_id?: string | undefined;
|
|
848
848
|
}, {
|
|
849
849
|
operation: "list_files";
|
|
850
850
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
851
|
-
folder_id?: string | undefined;
|
|
852
851
|
query?: string | undefined;
|
|
852
|
+
folder_id?: string | undefined;
|
|
853
853
|
max_results?: number | undefined;
|
|
854
854
|
include_folders?: boolean | undefined;
|
|
855
855
|
order_by?: string | undefined;
|
|
@@ -859,15 +859,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
859
859
|
parent_folder_id: z.ZodOptional<z.ZodString>;
|
|
860
860
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
861
861
|
}, "strip", z.ZodTypeAny, {
|
|
862
|
-
operation: "create_folder";
|
|
863
862
|
name: string;
|
|
864
|
-
|
|
863
|
+
operation: "create_folder";
|
|
865
864
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
865
|
+
parent_folder_id?: string | undefined;
|
|
866
866
|
}, {
|
|
867
|
-
operation: "create_folder";
|
|
868
867
|
name: string;
|
|
869
|
-
|
|
868
|
+
operation: "create_folder";
|
|
870
869
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
870
|
+
parent_folder_id?: string | undefined;
|
|
871
871
|
}>, z.ZodObject<{
|
|
872
872
|
operation: z.ZodLiteral<"delete_file">;
|
|
873
873
|
file_id: z.ZodString;
|
|
@@ -907,20 +907,20 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
907
907
|
send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
908
908
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
909
909
|
}, "strip", z.ZodTypeAny, {
|
|
910
|
+
type: "domain" | "user" | "group" | "anyone";
|
|
910
911
|
operation: "share_file";
|
|
911
|
-
|
|
912
|
+
role: "writer" | "reader" | "commenter" | "owner";
|
|
912
913
|
file_id: string;
|
|
913
|
-
role: "reader" | "writer" | "commenter" | "owner";
|
|
914
914
|
send_notification: boolean;
|
|
915
915
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
916
916
|
email_address?: string | undefined;
|
|
917
917
|
}, {
|
|
918
918
|
operation: "share_file";
|
|
919
919
|
file_id: string;
|
|
920
|
-
type?: "
|
|
920
|
+
type?: "domain" | "user" | "group" | "anyone" | undefined;
|
|
921
921
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
922
|
+
role?: "writer" | "reader" | "commenter" | "owner" | undefined;
|
|
922
923
|
email_address?: string | undefined;
|
|
923
|
-
role?: "reader" | "writer" | "commenter" | "owner" | undefined;
|
|
924
924
|
send_notification?: boolean | undefined;
|
|
925
925
|
}>, z.ZodObject<{
|
|
926
926
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -959,14 +959,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
959
959
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["replace", "append"]>>>;
|
|
960
960
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
-
operation: "update_doc";
|
|
963
962
|
content: string;
|
|
964
|
-
|
|
963
|
+
operation: "update_doc";
|
|
965
964
|
mode: "replace" | "append";
|
|
965
|
+
document_id: string;
|
|
966
966
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
967
967
|
}, {
|
|
968
|
-
operation: "update_doc";
|
|
969
968
|
content: string;
|
|
969
|
+
operation: "update_doc";
|
|
970
970
|
document_id: string;
|
|
971
971
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
972
972
|
mode?: "replace" | "append" | undefined;
|
|
@@ -1150,6 +1150,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1150
1150
|
operation: "list_files";
|
|
1151
1151
|
success: boolean;
|
|
1152
1152
|
error: string;
|
|
1153
|
+
total_count?: number | undefined;
|
|
1153
1154
|
files?: {
|
|
1154
1155
|
name: string;
|
|
1155
1156
|
mimeType: string;
|
|
@@ -1166,12 +1167,12 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1166
1167
|
emailAddress?: string | undefined;
|
|
1167
1168
|
}[] | undefined;
|
|
1168
1169
|
}[] | undefined;
|
|
1169
|
-
total_count?: number | undefined;
|
|
1170
1170
|
next_page_token?: string | undefined;
|
|
1171
1171
|
}, {
|
|
1172
1172
|
operation: "list_files";
|
|
1173
1173
|
success: boolean;
|
|
1174
1174
|
error: string;
|
|
1175
|
+
total_count?: number | undefined;
|
|
1175
1176
|
files?: {
|
|
1176
1177
|
name: string;
|
|
1177
1178
|
mimeType: string;
|
|
@@ -1188,7 +1189,6 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1188
1189
|
emailAddress?: string | undefined;
|
|
1189
1190
|
}[] | undefined;
|
|
1190
1191
|
}[] | undefined;
|
|
1191
|
-
total_count?: number | undefined;
|
|
1192
1192
|
next_page_token?: string | undefined;
|
|
1193
1193
|
}>, z.ZodObject<{
|
|
1194
1194
|
operation: z.ZodLiteral<"create_folder">;
|
|
@@ -67,8 +67,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
67
67
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
68
68
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
69
69
|
}, "strip", import("zod").ZodTypeAny, {
|
|
70
|
-
operation: "write_values";
|
|
71
70
|
values: (string | number | boolean)[][];
|
|
71
|
+
operation: "write_values";
|
|
72
72
|
spreadsheet_id: string;
|
|
73
73
|
range: string;
|
|
74
74
|
major_dimension: "ROWS" | "COLUMNS";
|
|
@@ -76,8 +76,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
76
76
|
include_values_in_response: boolean;
|
|
77
77
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
operation: "write_values";
|
|
80
79
|
values: unknown[][];
|
|
80
|
+
operation: "write_values";
|
|
81
81
|
spreadsheet_id: string;
|
|
82
82
|
range: string;
|
|
83
83
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -94,8 +94,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
94
94
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
95
95
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
96
96
|
}, "strip", import("zod").ZodTypeAny, {
|
|
97
|
-
operation: "update_values";
|
|
98
97
|
values: (string | number | boolean)[][];
|
|
98
|
+
operation: "update_values";
|
|
99
99
|
spreadsheet_id: string;
|
|
100
100
|
range: string;
|
|
101
101
|
major_dimension: "ROWS" | "COLUMNS";
|
|
@@ -103,8 +103,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
103
103
|
include_values_in_response: boolean;
|
|
104
104
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
105
105
|
}, {
|
|
106
|
-
operation: "update_values";
|
|
107
106
|
values: unknown[][];
|
|
107
|
+
operation: "update_values";
|
|
108
108
|
spreadsheet_id: string;
|
|
109
109
|
range: string;
|
|
110
110
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -122,8 +122,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
122
122
|
include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
123
123
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
124
124
|
}, "strip", import("zod").ZodTypeAny, {
|
|
125
|
-
operation: "append_values";
|
|
126
125
|
values: (string | number | boolean)[][];
|
|
126
|
+
operation: "append_values";
|
|
127
127
|
spreadsheet_id: string;
|
|
128
128
|
range: string;
|
|
129
129
|
major_dimension: "ROWS" | "COLUMNS";
|
|
@@ -132,8 +132,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
132
132
|
insert_data_option: "OVERWRITE" | "INSERT_ROWS";
|
|
133
133
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
134
134
|
}, {
|
|
135
|
-
operation: "append_values";
|
|
136
135
|
values: unknown[][];
|
|
136
|
+
operation: "append_values";
|
|
137
137
|
spreadsheet_id: string;
|
|
138
138
|
range: string;
|
|
139
139
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -242,13 +242,13 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
|
|
|
242
242
|
sheet_titles: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>>;
|
|
243
243
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
244
244
|
}, "strip", import("zod").ZodTypeAny, {
|
|
245
|
-
operation: "create_spreadsheet";
|
|
246
245
|
title: string;
|
|
246
|
+
operation: "create_spreadsheet";
|
|
247
247
|
sheet_titles: string[];
|
|
248
248
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
249
249
|
}, {
|
|
250
|
-
operation: "create_spreadsheet";
|
|
251
250
|
title: string;
|
|
251
|
+
operation: "create_spreadsheet";
|
|
252
252
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
253
253
|
sheet_titles?: string[] | undefined;
|
|
254
254
|
}>, import("zod").ZodObject<{
|
|
@@ -7,8 +7,8 @@ declare const HelloWorldParamsSchema: z.ZodObject<{
|
|
|
7
7
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8
8
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
|
-
message: string;
|
|
11
10
|
name: string;
|
|
11
|
+
message: string;
|
|
12
12
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
13
13
|
}, {
|
|
14
14
|
name: string;
|
|
@@ -41,8 +41,8 @@ export declare class HelloWorldBubble extends ServiceBubble<HelloWorldParams, He
|
|
|
41
41
|
message: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
42
42
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
-
message: string;
|
|
45
44
|
name: string;
|
|
45
|
+
message: string;
|
|
46
46
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
name: string;
|
|
@@ -15,20 +15,20 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
url: string;
|
|
17
17
|
timeout: number;
|
|
18
|
-
method: "
|
|
18
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
19
19
|
followRedirects: boolean;
|
|
20
20
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
|
-
body?: string | Record<string, unknown> | undefined;
|
|
23
22
|
headers?: Record<string, string> | undefined;
|
|
23
|
+
body?: string | Record<string, unknown> | undefined;
|
|
24
24
|
authHeader?: string | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
url: string;
|
|
27
27
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
28
|
-
body?: string | Record<string, unknown> | undefined;
|
|
29
28
|
timeout?: number | undefined;
|
|
30
29
|
headers?: Record<string, string> | undefined;
|
|
31
|
-
method?: "
|
|
30
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
31
|
+
body?: string | Record<string, unknown> | undefined;
|
|
32
32
|
followRedirects?: boolean | undefined;
|
|
33
33
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
34
34
|
authHeader?: string | undefined;
|
|
@@ -48,20 +48,20 @@ declare const HttpResultSchema: z.ZodObject<{
|
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
status: number;
|
|
50
50
|
success: boolean;
|
|
51
|
-
size: number;
|
|
52
51
|
error: string;
|
|
53
|
-
body: string;
|
|
54
52
|
headers: Record<string, string>;
|
|
53
|
+
size: number;
|
|
54
|
+
body: string;
|
|
55
55
|
statusText: string;
|
|
56
56
|
responseTime: number;
|
|
57
57
|
json?: unknown;
|
|
58
58
|
}, {
|
|
59
59
|
status: number;
|
|
60
60
|
success: boolean;
|
|
61
|
-
size: number;
|
|
62
61
|
error: string;
|
|
63
|
-
body: string;
|
|
64
62
|
headers: Record<string, string>;
|
|
63
|
+
size: number;
|
|
64
|
+
body: string;
|
|
65
65
|
statusText: string;
|
|
66
66
|
responseTime: number;
|
|
67
67
|
json?: unknown;
|
|
@@ -85,20 +85,20 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
url: string;
|
|
87
87
|
timeout: number;
|
|
88
|
-
method: "
|
|
88
|
+
method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
89
89
|
followRedirects: boolean;
|
|
90
90
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
91
91
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
92
|
-
body?: string | Record<string, unknown> | undefined;
|
|
93
92
|
headers?: Record<string, string> | undefined;
|
|
93
|
+
body?: string | Record<string, unknown> | undefined;
|
|
94
94
|
authHeader?: string | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
url: string;
|
|
97
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
98
|
-
body?: string | Record<string, unknown> | undefined;
|
|
99
98
|
timeout?: number | undefined;
|
|
100
99
|
headers?: Record<string, string> | undefined;
|
|
101
|
-
method?: "
|
|
100
|
+
method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
101
|
+
body?: string | Record<string, unknown> | undefined;
|
|
102
102
|
followRedirects?: boolean | undefined;
|
|
103
103
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
104
104
|
authHeader?: string | undefined;
|
|
@@ -116,20 +116,20 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
116
116
|
}, "strip", z.ZodTypeAny, {
|
|
117
117
|
status: number;
|
|
118
118
|
success: boolean;
|
|
119
|
-
size: number;
|
|
120
119
|
error: string;
|
|
121
|
-
body: string;
|
|
122
120
|
headers: Record<string, string>;
|
|
121
|
+
size: number;
|
|
122
|
+
body: string;
|
|
123
123
|
statusText: string;
|
|
124
124
|
responseTime: number;
|
|
125
125
|
json?: unknown;
|
|
126
126
|
}, {
|
|
127
127
|
status: number;
|
|
128
128
|
success: boolean;
|
|
129
|
-
size: number;
|
|
130
129
|
error: string;
|
|
131
|
-
body: string;
|
|
132
130
|
headers: Record<string, string>;
|
|
131
|
+
size: number;
|
|
132
|
+
body: string;
|
|
133
133
|
statusText: string;
|
|
134
134
|
responseTime: number;
|
|
135
135
|
json?: unknown;
|
|
@@ -11,9 +11,9 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
query: string;
|
|
15
14
|
timeout: number;
|
|
16
|
-
|
|
15
|
+
query: string;
|
|
16
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
17
17
|
parameters: unknown[];
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -21,7 +21,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
21
21
|
query: string;
|
|
22
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
23
|
timeout?: number | undefined;
|
|
24
|
-
allowedOperations?: ("
|
|
24
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
25
25
|
parameters?: unknown[] | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
@@ -85,9 +85,9 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
query: string;
|
|
89
88
|
timeout: number;
|
|
90
|
-
|
|
89
|
+
query: string;
|
|
90
|
+
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
91
91
|
parameters: unknown[];
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -95,7 +95,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
95
95
|
query: string;
|
|
96
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
97
|
timeout?: number | undefined;
|
|
98
|
-
allowedOperations?: ("
|
|
98
|
+
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
99
99
|
parameters?: unknown[] | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|