@bubblelab/bubble-core 0.1.44 → 0.1.46
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 +65 -65
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +10 -10
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +168 -168
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +32 -32
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +384 -384
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +160 -160
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -37,8 +37,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
37
37
|
field: string;
|
|
38
38
|
}[] | undefined;
|
|
39
39
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
40
|
-
fields?: string[] | undefined;
|
|
41
40
|
offset?: string | undefined;
|
|
41
|
+
fields?: string[] | undefined;
|
|
42
42
|
timeZone?: string | undefined;
|
|
43
43
|
filterByFormula?: string | undefined;
|
|
44
44
|
maxRecords?: number | undefined;
|
|
@@ -53,8 +53,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
53
53
|
direction?: "asc" | "desc" | undefined;
|
|
54
54
|
}[] | undefined;
|
|
55
55
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
56
|
-
fields?: string[] | undefined;
|
|
57
56
|
offset?: string | undefined;
|
|
57
|
+
fields?: string[] | undefined;
|
|
58
58
|
pageSize?: number | undefined;
|
|
59
59
|
timeZone?: string | undefined;
|
|
60
60
|
filterByFormula?: string | undefined;
|
|
@@ -197,12 +197,12 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
197
197
|
description: z.ZodOptional<z.ZodString>;
|
|
198
198
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
200
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
201
201
|
name: string;
|
|
202
202
|
options?: Record<string, unknown> | undefined;
|
|
203
203
|
description?: string | undefined;
|
|
204
204
|
}, {
|
|
205
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
205
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
206
206
|
name: string;
|
|
207
207
|
options?: Record<string, unknown> | undefined;
|
|
208
208
|
description?: string | undefined;
|
|
@@ -212,7 +212,7 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
212
212
|
operation: "create_table";
|
|
213
213
|
name: string;
|
|
214
214
|
fields: {
|
|
215
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
215
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
216
216
|
name: string;
|
|
217
217
|
options?: Record<string, unknown> | undefined;
|
|
218
218
|
description?: string | undefined;
|
|
@@ -224,7 +224,7 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
224
224
|
operation: "create_table";
|
|
225
225
|
name: string;
|
|
226
226
|
fields: {
|
|
227
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
227
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
228
228
|
name: string;
|
|
229
229
|
options?: Record<string, unknown> | undefined;
|
|
230
230
|
description?: string | undefined;
|
|
@@ -264,7 +264,7 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
264
264
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
266
266
|
operation: "create_field";
|
|
267
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
267
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
268
268
|
name: string;
|
|
269
269
|
baseId: string;
|
|
270
270
|
tableIdOrName: string;
|
|
@@ -273,7 +273,7 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
}, {
|
|
275
275
|
operation: "create_field";
|
|
276
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
276
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
277
277
|
name: string;
|
|
278
278
|
baseId: string;
|
|
279
279
|
tableIdOrName: string;
|
|
@@ -667,11 +667,11 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
667
667
|
name: z.ZodString;
|
|
668
668
|
type: z.ZodEnum<["singleLineText", "multilineText", "richText", "email", "url", "phoneNumber", "number", "percent", "currency", "rating", "duration", "singleSelect", "multipleSelects", "singleCollaborator", "multipleCollaborators", "date", "dateTime", "checkbox", "multipleRecordLinks", "multipleAttachments", "barcode", "button", "formula", "createdTime", "lastModifiedTime", "createdBy", "lastModifiedBy", "autoNumber", "externalSyncSource", "count", "lookup", "rollup"]>;
|
|
669
669
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
670
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
671
671
|
name: string;
|
|
672
672
|
id: string;
|
|
673
673
|
}, {
|
|
674
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
674
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
675
675
|
name: string;
|
|
676
676
|
id: string;
|
|
677
677
|
}>, "many">;
|
|
@@ -679,7 +679,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
679
679
|
name: string;
|
|
680
680
|
id: string;
|
|
681
681
|
fields: {
|
|
682
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
682
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
683
683
|
name: string;
|
|
684
684
|
id: string;
|
|
685
685
|
}[];
|
|
@@ -689,7 +689,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
689
689
|
name: string;
|
|
690
690
|
id: string;
|
|
691
691
|
fields: {
|
|
692
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
692
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
693
693
|
name: string;
|
|
694
694
|
id: string;
|
|
695
695
|
}[];
|
|
@@ -707,7 +707,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
707
707
|
name: string;
|
|
708
708
|
id: string;
|
|
709
709
|
fields: {
|
|
710
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
710
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
711
711
|
name: string;
|
|
712
712
|
id: string;
|
|
713
713
|
}[];
|
|
@@ -723,7 +723,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
723
723
|
name: string;
|
|
724
724
|
id: string;
|
|
725
725
|
fields: {
|
|
726
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
726
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
727
727
|
name: string;
|
|
728
728
|
id: string;
|
|
729
729
|
}[];
|
|
@@ -904,8 +904,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
904
904
|
field: string;
|
|
905
905
|
}[] | undefined;
|
|
906
906
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
907
|
-
fields?: string[] | undefined;
|
|
908
907
|
offset?: string | undefined;
|
|
908
|
+
fields?: string[] | undefined;
|
|
909
909
|
timeZone?: string | undefined;
|
|
910
910
|
filterByFormula?: string | undefined;
|
|
911
911
|
maxRecords?: number | undefined;
|
|
@@ -920,8 +920,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
920
920
|
direction?: "asc" | "desc" | undefined;
|
|
921
921
|
}[] | undefined;
|
|
922
922
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
923
|
-
fields?: string[] | undefined;
|
|
924
923
|
offset?: string | undefined;
|
|
924
|
+
fields?: string[] | undefined;
|
|
925
925
|
pageSize?: number | undefined;
|
|
926
926
|
timeZone?: string | undefined;
|
|
927
927
|
filterByFormula?: string | undefined;
|
|
@@ -1064,12 +1064,12 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1064
1064
|
description: z.ZodOptional<z.ZodString>;
|
|
1065
1065
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1067
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1068
1068
|
name: string;
|
|
1069
1069
|
options?: Record<string, unknown> | undefined;
|
|
1070
1070
|
description?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1072
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1073
1073
|
name: string;
|
|
1074
1074
|
options?: Record<string, unknown> | undefined;
|
|
1075
1075
|
description?: string | undefined;
|
|
@@ -1079,7 +1079,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1079
1079
|
operation: "create_table";
|
|
1080
1080
|
name: string;
|
|
1081
1081
|
fields: {
|
|
1082
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1082
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1083
1083
|
name: string;
|
|
1084
1084
|
options?: Record<string, unknown> | undefined;
|
|
1085
1085
|
description?: string | undefined;
|
|
@@ -1091,7 +1091,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1091
1091
|
operation: "create_table";
|
|
1092
1092
|
name: string;
|
|
1093
1093
|
fields: {
|
|
1094
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1094
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1095
1095
|
name: string;
|
|
1096
1096
|
options?: Record<string, unknown> | undefined;
|
|
1097
1097
|
description?: string | undefined;
|
|
@@ -1131,7 +1131,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1131
1131
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1132
1132
|
}, "strip", z.ZodTypeAny, {
|
|
1133
1133
|
operation: "create_field";
|
|
1134
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1134
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1135
1135
|
name: string;
|
|
1136
1136
|
baseId: string;
|
|
1137
1137
|
tableIdOrName: string;
|
|
@@ -1140,7 +1140,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1140
1140
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1141
1141
|
}, {
|
|
1142
1142
|
operation: "create_field";
|
|
1143
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1143
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1144
1144
|
name: string;
|
|
1145
1145
|
baseId: string;
|
|
1146
1146
|
tableIdOrName: string;
|
|
@@ -1534,11 +1534,11 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1534
1534
|
name: z.ZodString;
|
|
1535
1535
|
type: z.ZodEnum<["singleLineText", "multilineText", "richText", "email", "url", "phoneNumber", "number", "percent", "currency", "rating", "duration", "singleSelect", "multipleSelects", "singleCollaborator", "multipleCollaborators", "date", "dateTime", "checkbox", "multipleRecordLinks", "multipleAttachments", "barcode", "button", "formula", "createdTime", "lastModifiedTime", "createdBy", "lastModifiedBy", "autoNumber", "externalSyncSource", "count", "lookup", "rollup"]>;
|
|
1536
1536
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1537
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1538
1538
|
name: string;
|
|
1539
1539
|
id: string;
|
|
1540
1540
|
}, {
|
|
1541
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1541
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1542
1542
|
name: string;
|
|
1543
1543
|
id: string;
|
|
1544
1544
|
}>, "many">;
|
|
@@ -1546,7 +1546,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1546
1546
|
name: string;
|
|
1547
1547
|
id: string;
|
|
1548
1548
|
fields: {
|
|
1549
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1549
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1550
1550
|
name: string;
|
|
1551
1551
|
id: string;
|
|
1552
1552
|
}[];
|
|
@@ -1556,7 +1556,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1556
1556
|
name: string;
|
|
1557
1557
|
id: string;
|
|
1558
1558
|
fields: {
|
|
1559
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1559
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1560
1560
|
name: string;
|
|
1561
1561
|
id: string;
|
|
1562
1562
|
}[];
|
|
@@ -1574,7 +1574,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1574
1574
|
name: string;
|
|
1575
1575
|
id: string;
|
|
1576
1576
|
fields: {
|
|
1577
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1577
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1578
1578
|
name: string;
|
|
1579
1579
|
id: string;
|
|
1580
1580
|
}[];
|
|
@@ -1590,7 +1590,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1590
1590
|
name: string;
|
|
1591
1591
|
id: string;
|
|
1592
1592
|
fields: {
|
|
1593
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "
|
|
1593
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "button" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1594
1594
|
name: string;
|
|
1595
1595
|
id: string;
|
|
1596
1596
|
}[];
|
|
@@ -27,13 +27,13 @@ declare const ApifyParamsSchema: z.ZodObject<{
|
|
|
27
27
|
input: Record<string, unknown>;
|
|
28
28
|
limit: number;
|
|
29
29
|
waitForFinish: boolean;
|
|
30
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
31
30
|
search?: string | undefined;
|
|
31
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
32
32
|
actorId?: string | undefined;
|
|
33
33
|
}, {
|
|
34
34
|
input: Record<string, unknown>;
|
|
35
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
36
35
|
search?: string | undefined;
|
|
36
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
37
|
timeout?: number | undefined;
|
|
38
38
|
limit?: number | undefined;
|
|
39
39
|
actorId?: string | undefined;
|
|
@@ -163,13 +163,13 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
163
163
|
input: Record<string, unknown>;
|
|
164
164
|
limit: number;
|
|
165
165
|
waitForFinish: boolean;
|
|
166
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
167
166
|
search?: string | undefined;
|
|
167
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
168
168
|
actorId?: string | undefined;
|
|
169
169
|
}, {
|
|
170
170
|
input: Record<string, unknown>;
|
|
171
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
172
171
|
search?: string | undefined;
|
|
172
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
173
|
timeout?: number | undefined;
|
|
174
174
|
limit?: number | undefined;
|
|
175
175
|
actorId?: string | undefined;
|
|
@@ -385,6 +385,7 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
386
|
name: string;
|
|
387
387
|
id: string;
|
|
388
|
+
company?: string | null | undefined;
|
|
388
389
|
tags?: {
|
|
389
390
|
title: string;
|
|
390
391
|
id: string;
|
|
@@ -423,7 +424,6 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
423
424
|
url: string;
|
|
424
425
|
}[] | undefined;
|
|
425
426
|
position?: string | null | undefined;
|
|
426
|
-
company?: string | null | undefined;
|
|
427
427
|
school?: string | null | undefined;
|
|
428
428
|
applicationIds?: string[] | undefined;
|
|
429
429
|
resumeFileHandle?: {
|
|
@@ -439,6 +439,7 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
439
439
|
}, {
|
|
440
440
|
name: string;
|
|
441
441
|
id: string;
|
|
442
|
+
company?: string | null | undefined;
|
|
442
443
|
tags?: {
|
|
443
444
|
title: string;
|
|
444
445
|
id: string;
|
|
@@ -477,7 +478,6 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
477
478
|
url: string;
|
|
478
479
|
}[] | undefined;
|
|
479
480
|
position?: string | null | undefined;
|
|
480
|
-
company?: string | null | undefined;
|
|
481
481
|
school?: string | null | undefined;
|
|
482
482
|
applicationIds?: string[] | undefined;
|
|
483
483
|
resumeFileHandle?: {
|
|
@@ -551,14 +551,14 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
552
|
operation: "create_candidate";
|
|
553
553
|
name: string;
|
|
554
|
+
linkedin_url?: string | undefined;
|
|
554
555
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
555
|
-
website?: string | undefined;
|
|
556
556
|
emails?: {
|
|
557
557
|
type: "Personal" | "Work" | "Other";
|
|
558
558
|
email: string;
|
|
559
559
|
}[] | undefined;
|
|
560
|
+
website?: string | undefined;
|
|
560
561
|
phone_number?: string | undefined;
|
|
561
|
-
linkedin_url?: string | undefined;
|
|
562
562
|
github_url?: string | undefined;
|
|
563
563
|
source_id?: string | undefined;
|
|
564
564
|
credited_to_user_id?: string | undefined;
|
|
@@ -566,14 +566,14 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
566
566
|
}, {
|
|
567
567
|
operation: "create_candidate";
|
|
568
568
|
name: string;
|
|
569
|
+
linkedin_url?: string | undefined;
|
|
569
570
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
570
|
-
website?: string | undefined;
|
|
571
571
|
emails?: {
|
|
572
572
|
type: "Personal" | "Work" | "Other";
|
|
573
573
|
email: string;
|
|
574
574
|
}[] | undefined;
|
|
575
|
+
website?: string | undefined;
|
|
575
576
|
phone_number?: string | undefined;
|
|
576
|
-
linkedin_url?: string | undefined;
|
|
577
577
|
github_url?: string | undefined;
|
|
578
578
|
source_id?: string | undefined;
|
|
579
579
|
credited_to_user_id?: string | undefined;
|
|
@@ -783,6 +783,7 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
784
|
name: string;
|
|
785
785
|
id: string;
|
|
786
|
+
company?: string | null | undefined;
|
|
786
787
|
tags?: {
|
|
787
788
|
title: string;
|
|
788
789
|
id: string;
|
|
@@ -821,7 +822,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
821
822
|
url: string;
|
|
822
823
|
}[] | undefined;
|
|
823
824
|
position?: string | null | undefined;
|
|
824
|
-
company?: string | null | undefined;
|
|
825
825
|
school?: string | null | undefined;
|
|
826
826
|
applicationIds?: string[] | undefined;
|
|
827
827
|
resumeFileHandle?: {
|
|
@@ -837,6 +837,7 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
837
837
|
}, {
|
|
838
838
|
name: string;
|
|
839
839
|
id: string;
|
|
840
|
+
company?: string | null | undefined;
|
|
840
841
|
tags?: {
|
|
841
842
|
title: string;
|
|
842
843
|
id: string;
|
|
@@ -875,7 +876,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
875
876
|
url: string;
|
|
876
877
|
}[] | undefined;
|
|
877
878
|
position?: string | null | undefined;
|
|
878
|
-
company?: string | null | undefined;
|
|
879
879
|
school?: string | null | undefined;
|
|
880
880
|
applicationIds?: string[] | undefined;
|
|
881
881
|
resumeFileHandle?: {
|
|
@@ -902,6 +902,7 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
902
902
|
candidates?: {
|
|
903
903
|
name: string;
|
|
904
904
|
id: string;
|
|
905
|
+
company?: string | null | undefined;
|
|
905
906
|
tags?: {
|
|
906
907
|
title: string;
|
|
907
908
|
id: string;
|
|
@@ -940,7 +941,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
940
941
|
url: string;
|
|
941
942
|
}[] | undefined;
|
|
942
943
|
position?: string | null | undefined;
|
|
943
|
-
company?: string | null | undefined;
|
|
944
944
|
school?: string | null | undefined;
|
|
945
945
|
applicationIds?: string[] | undefined;
|
|
946
946
|
resumeFileHandle?: {
|
|
@@ -964,6 +964,7 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
964
964
|
candidates?: {
|
|
965
965
|
name: string;
|
|
966
966
|
id: string;
|
|
967
|
+
company?: string | null | undefined;
|
|
967
968
|
tags?: {
|
|
968
969
|
title: string;
|
|
969
970
|
id: string;
|
|
@@ -1002,7 +1003,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1002
1003
|
url: string;
|
|
1003
1004
|
}[] | undefined;
|
|
1004
1005
|
position?: string | null | undefined;
|
|
1005
|
-
company?: string | null | undefined;
|
|
1006
1006
|
school?: string | null | undefined;
|
|
1007
1007
|
applicationIds?: string[] | undefined;
|
|
1008
1008
|
resumeFileHandle?: {
|
|
@@ -12,6 +12,7 @@ interface ActiveSession {
|
|
|
12
12
|
browser: Browser;
|
|
13
13
|
page: Page;
|
|
14
14
|
connectUrl: string;
|
|
15
|
+
startTime: number;
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
17
18
|
* BrowserBase Service Bubble
|
|
@@ -80,7 +81,7 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
80
81
|
operation: "start_session";
|
|
81
82
|
viewport_width: number;
|
|
82
83
|
viewport_height: number;
|
|
83
|
-
|
|
84
|
+
context_id?: string | undefined;
|
|
84
85
|
cookies?: {
|
|
85
86
|
value: string;
|
|
86
87
|
path: string;
|
|
@@ -90,10 +91,10 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
90
91
|
httpOnly: boolean;
|
|
91
92
|
secure: boolean;
|
|
92
93
|
}[] | undefined;
|
|
93
|
-
|
|
94
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
95
|
}, {
|
|
95
96
|
operation: "start_session";
|
|
96
|
-
|
|
97
|
+
context_id?: string | undefined;
|
|
97
98
|
cookies?: {
|
|
98
99
|
value: string;
|
|
99
100
|
path: string;
|
|
@@ -103,9 +104,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
103
104
|
httpOnly: boolean;
|
|
104
105
|
secure: boolean;
|
|
105
106
|
}[] | undefined;
|
|
106
|
-
context_id?: string | undefined;
|
|
107
107
|
viewport_width?: number | undefined;
|
|
108
108
|
viewport_height?: number | undefined;
|
|
109
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
109
110
|
}>, import("zod").ZodObject<{
|
|
110
111
|
operation: import("zod").ZodLiteral<"navigate">;
|
|
111
112
|
session_id: import("zod").ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"browserbase.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/browserbase/browserbase.ts"],"names":[],"mappings":"AAAA,OAAkB,EAAE,KAAK,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAKL,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EAGvB,MAAM,yBAAyB,CAAC;AAWjC;;GAEG;AACH,UAAU,aAAa;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,IAAI,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"browserbase.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/browserbase/browserbase.ts"],"names":[],"mappings":"AAAA,OAAkB,EAAE,KAAK,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAKL,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EAGvB,MAAM,yBAAyB,CAAC;AAWjC;;GAEG;AACH,UAAU,aAAa;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,IAAI,CAAC;IACX,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB;AAgDD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAAa,iBAAiB,CAC5B,CAAC,SAAS,sBAAsB,GAAG,sBAAsB,CACzD,SAAQ,aAAa,CACrB,CAAC,EACD,OAAO,CAAC,iBAAiB,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CAC1D;IACC,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,iBAAiB;IACxC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,QAAQ,CAAU;IAC7C,MAAM,CAAC,QAAQ,CAAC,UAAU,iBAAiB;IAC3C,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAA2B;IACjD,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAA2B;IACvD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,iEACgC;IAChE,MAAM,CAAC,QAAQ,CAAC,eAAe,urBAqB7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,aAAa;IAGlC,OAAO,CAAC,MAAM,CAAC,cAAc,CAAyC;gBAGpE,MAAM,GAAE,CAEF,EACN,OAAO,CAAC,EAAE,aAAa,EACvB,UAAU,CAAC,EAAE,MAAM;IAKrB;;OAEG;IACH,OAAO,CAAC,SAAS;IAejB;;OAEG;YACW,cAAc;IAiC5B;;;OAGG;IACH,OAAO,CAAC,6BAA6B;IAwBxB,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;cAe/B,aAAa,CAC3B,OAAO,CAAC,EAAE,aAAa,GACtB,OAAO,CAAC,OAAO,CAAC,iBAAiB,EAAE;QAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;KAAE,CAAC,CAAC;IAyFrE;;OAEG;YACW,YAAY;IA2I1B;;OAEG;YACW,QAAQ;IAyBtB;;OAEG;YACW,KAAK;IAmCnB;;OAEG;YACW,QAAQ;IA8BtB;;OAEG;YACW,QAAQ;IAuBtB;;OAEG;YACW,UAAU;IAkCxB;;OAEG;YACW,UAAU;IAuDxB;;OAEG;YACW,OAAO;IA6CrB;;OAEG;YACW,UAAU;IAgCxB;;OAEG;YACW,UAAU;IAwFxB,SAAS,CAAC,gBAAgB,IAAI,MAAM,GAAG,SAAS;IAchD;;OAEG;WACW,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,aAAa,GAAG,SAAS;IAItE;;OAEG;WACW,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO;CAGrD"}
|
|
@@ -261,13 +261,14 @@ export class BrowserBaseBubble extends ServiceBubble {
|
|
|
261
261
|
}
|
|
262
262
|
// Get debug URL
|
|
263
263
|
const debugResponse = await this.browserbaseApi(`/sessions/${sessionId}/debug`);
|
|
264
|
-
// Store session
|
|
264
|
+
// Store session with start time for cost tracking
|
|
265
265
|
BrowserBaseBubble.activeSessions.set(sessionId, {
|
|
266
266
|
sessionId,
|
|
267
267
|
contextId,
|
|
268
268
|
browser,
|
|
269
269
|
page,
|
|
270
270
|
connectUrl,
|
|
271
|
+
startTime: Date.now(),
|
|
271
272
|
});
|
|
272
273
|
// Emit browser session start event for live viewing in UI
|
|
273
274
|
if (this.context?.logger) {
|
|
@@ -538,17 +539,37 @@ export class BrowserBaseBubble extends ServiceBubble {
|
|
|
538
539
|
};
|
|
539
540
|
}
|
|
540
541
|
try {
|
|
541
|
-
//
|
|
542
|
-
if (this.context?.logger) {
|
|
543
|
-
this.context.logger.logBrowserSessionEnd(params.session_id, this.context.variableId);
|
|
544
|
-
}
|
|
545
|
-
// Disconnect browser
|
|
542
|
+
// Disconnect browser first
|
|
546
543
|
await session.browser.disconnect();
|
|
547
|
-
// Release session via API
|
|
548
|
-
await this.browserbaseApi(`/sessions/${params.session_id}`, 'POST', {
|
|
544
|
+
// Release session via API and get the updated session data
|
|
545
|
+
const sessionUpdateResponse = await this.browserbaseApi(`/sessions/${params.session_id}`, 'POST', {
|
|
549
546
|
projectId: this.getConfig()?.projectId,
|
|
550
547
|
status: 'REQUEST_RELEASE',
|
|
551
548
|
});
|
|
549
|
+
// Calculate session duration from API response (most accurate)
|
|
550
|
+
// Use endedAt if available, otherwise use updatedAt as fallback
|
|
551
|
+
const endTime = sessionUpdateResponse.endedAt
|
|
552
|
+
? new Date(sessionUpdateResponse.endedAt).getTime()
|
|
553
|
+
: new Date(sessionUpdateResponse.updatedAt).getTime();
|
|
554
|
+
const startTime = new Date(sessionUpdateResponse.startedAt).getTime();
|
|
555
|
+
const sessionDurationMs = endTime - startTime;
|
|
556
|
+
const sessionDurationMinutes = Math.max(0, sessionDurationMs / (1000 * 60)); // Ensure non-negative
|
|
557
|
+
// Track service usage for browser session duration based on API response
|
|
558
|
+
// Using AMAZON_CRED as service type with subService 'browserbase' to distinguish
|
|
559
|
+
// TODO: Consider adding BROWSERBASE_CRED as a new CredentialType for proper tracking
|
|
560
|
+
if (this.context?.logger && sessionDurationMinutes > 0) {
|
|
561
|
+
this.context.logger.addServiceUsage({
|
|
562
|
+
service: CredentialType.AMAZON_CRED, // Using AMAZON_CRED as workaround - BrowserBase doesn't have its own CredentialType
|
|
563
|
+
subService: 'browserbase',
|
|
564
|
+
unit: 'per_minute',
|
|
565
|
+
usage: sessionDurationMinutes,
|
|
566
|
+
}, this.context.variableId);
|
|
567
|
+
console.log(`[BrowserBaseBubble] Tracked session duration: ${sessionDurationMinutes.toFixed(2)} minutes (from API: startedAt=${sessionUpdateResponse.startedAt}, endedAt=${sessionUpdateResponse.endedAt || sessionUpdateResponse.updatedAt}) for session ${params.session_id}`);
|
|
568
|
+
}
|
|
569
|
+
// Emit browser session end event before closing
|
|
570
|
+
if (this.context?.logger) {
|
|
571
|
+
this.context.logger.logBrowserSessionEnd(params.session_id, this.context.variableId);
|
|
572
|
+
}
|
|
552
573
|
// Remove from active sessions
|
|
553
574
|
BrowserBaseBubble.activeSessions.delete(params.session_id);
|
|
554
575
|
console.log(`[BrowserBaseBubble] Session ${params.session_id} closed`);
|