@bubblelab/bubble-core 0.1.211 → 0.1.213
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 +58 -58
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js +15 -1
- package/dist/bubbles/service-bubble/ai-agent-slack-tools.js.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +192 -25
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/actors/instagram-hashtag-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/instagram-scraper.d.ts +8 -8
- package/dist/bubbles/service-bubble/apify/actors/linkedin-jobs-scraper.d.ts +2 -2
- package/dist/bubbles/service-bubble/apify/actors/linkedin-posts-search.d.ts +22 -22
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +38 -38
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-posts.d.ts +52 -52
- package/dist/bubbles/service-bubble/apify/actors/tiktok-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/twitter-scraper.d.ts +12 -12
- package/dist/bubbles/service-bubble/apify/actors/youtube-scraper.d.ts +12 -12
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +126 -126
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/assembled/assembled.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/attio/attio.d.ts +4 -4
- package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +12 -12
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
- package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
- package/dist/bubbles/service-bubble/notion/property-schemas.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts +4 -0
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.js +4 -0
- package/dist/bubbles/service-bubble/slack/slack-table-blocks.js.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.d.ts +154 -154
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +53 -7
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/storage.js +5 -3
- package/dist/bubbles/service-bubble/storage.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +80 -80
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -85,14 +85,14 @@ declare const EmailPropertySchema: z.ZodObject<{
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
type: "email";
|
|
87
87
|
name: string;
|
|
88
|
-
id: string;
|
|
89
88
|
email: {};
|
|
89
|
+
id: string;
|
|
90
90
|
description?: string | undefined;
|
|
91
91
|
}, {
|
|
92
92
|
type: "email";
|
|
93
93
|
name: string;
|
|
94
|
-
id: string;
|
|
95
94
|
email: {};
|
|
95
|
+
id: string;
|
|
96
96
|
description?: string | undefined;
|
|
97
97
|
}>;
|
|
98
98
|
declare const FilesPropertySchema: z.ZodObject<{
|
|
@@ -557,14 +557,14 @@ declare const URLPropertySchema: z.ZodObject<{
|
|
|
557
557
|
}, "strip", z.ZodTypeAny, {
|
|
558
558
|
type: "url";
|
|
559
559
|
name: string;
|
|
560
|
-
id: string;
|
|
561
560
|
url: {};
|
|
561
|
+
id: string;
|
|
562
562
|
description?: string | undefined;
|
|
563
563
|
}, {
|
|
564
564
|
type: "url";
|
|
565
565
|
name: string;
|
|
566
|
-
id: string;
|
|
567
566
|
url: {};
|
|
567
|
+
id: string;
|
|
568
568
|
description?: string | undefined;
|
|
569
569
|
}>;
|
|
570
570
|
declare const UniqueIDPropertySchema: z.ZodObject<{
|
|
@@ -677,14 +677,14 @@ export declare const DataSourcePropertySchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
677
677
|
}, "strip", z.ZodTypeAny, {
|
|
678
678
|
type: "email";
|
|
679
679
|
name: string;
|
|
680
|
-
id: string;
|
|
681
680
|
email: {};
|
|
681
|
+
id: string;
|
|
682
682
|
description?: string | undefined;
|
|
683
683
|
}, {
|
|
684
684
|
type: "email";
|
|
685
685
|
name: string;
|
|
686
|
-
id: string;
|
|
687
686
|
email: {};
|
|
687
|
+
id: string;
|
|
688
688
|
description?: string | undefined;
|
|
689
689
|
}>, z.ZodObject<{
|
|
690
690
|
id: z.ZodString;
|
|
@@ -1106,14 +1106,14 @@ export declare const DataSourcePropertySchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
1106
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1107
1107
|
type: "url";
|
|
1108
1108
|
name: string;
|
|
1109
|
-
id: string;
|
|
1110
1109
|
url: {};
|
|
1110
|
+
id: string;
|
|
1111
1111
|
description?: string | undefined;
|
|
1112
1112
|
}, {
|
|
1113
1113
|
type: "url";
|
|
1114
1114
|
name: string;
|
|
1115
|
-
id: string;
|
|
1116
1115
|
url: {};
|
|
1116
|
+
id: string;
|
|
1117
1117
|
description?: string | undefined;
|
|
1118
1118
|
}>, z.ZodObject<{
|
|
1119
1119
|
id: z.ZodString;
|
|
@@ -47,12 +47,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
47
47
|
to: string | string[];
|
|
48
48
|
subject: string;
|
|
49
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
50
|
-
text?: string | undefined;
|
|
51
50
|
tags?: {
|
|
52
51
|
value: string;
|
|
53
52
|
name: string;
|
|
54
53
|
}[] | undefined;
|
|
55
54
|
headers?: Record<string, string> | undefined;
|
|
55
|
+
text?: string | undefined;
|
|
56
56
|
attachments?: {
|
|
57
57
|
filename: string;
|
|
58
58
|
path?: string | undefined;
|
|
@@ -69,12 +69,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
69
69
|
to: string | string[];
|
|
70
70
|
subject: string;
|
|
71
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
|
-
text?: string | undefined;
|
|
73
72
|
tags?: {
|
|
74
73
|
value: string;
|
|
75
74
|
name: string;
|
|
76
75
|
}[] | undefined;
|
|
77
76
|
headers?: Record<string, string> | undefined;
|
|
77
|
+
text?: string | undefined;
|
|
78
78
|
attachments?: {
|
|
79
79
|
filename: string;
|
|
80
80
|
path?: string | undefined;
|
|
@@ -194,12 +194,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
194
194
|
to: string | string[];
|
|
195
195
|
subject: string;
|
|
196
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
|
-
text?: string | undefined;
|
|
198
197
|
tags?: {
|
|
199
198
|
value: string;
|
|
200
199
|
name: string;
|
|
201
200
|
}[] | undefined;
|
|
202
201
|
headers?: Record<string, string> | undefined;
|
|
202
|
+
text?: string | undefined;
|
|
203
203
|
attachments?: {
|
|
204
204
|
filename: string;
|
|
205
205
|
path?: string | undefined;
|
|
@@ -216,12 +216,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
216
216
|
to: string | string[];
|
|
217
217
|
subject: string;
|
|
218
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
|
-
text?: string | undefined;
|
|
220
219
|
tags?: {
|
|
221
220
|
value: string;
|
|
222
221
|
name: string;
|
|
223
222
|
}[] | undefined;
|
|
224
223
|
headers?: Record<string, string> | undefined;
|
|
224
|
+
text?: string | undefined;
|
|
225
225
|
attachments?: {
|
|
226
226
|
filename: string;
|
|
227
227
|
path?: string | undefined;
|
|
@@ -8,6 +8,10 @@ export declare const BLOCKS: {
|
|
|
8
8
|
readonly calendarAnnouncement: string;
|
|
9
9
|
readonly pricingComparisonCharts: string;
|
|
10
10
|
readonly dauChartHighlights: string;
|
|
11
|
+
readonly last5UsersSlackFormat: string;
|
|
12
|
+
readonly last5UsersPlainEmail: string;
|
|
13
|
+
readonly noToolDriveInstructions: string;
|
|
14
|
+
readonly sortlySearchResults: string;
|
|
11
15
|
};
|
|
12
16
|
export declare const BATCH_BLOCKS: string[];
|
|
13
17
|
//# sourceMappingURL=slack-table-blocks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slack-table-blocks.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack-table-blocks.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"slack-table-blocks.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack-table-blocks.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;CAcT,CAAC;AAEX,eAAO,MAAM,YAAY,UAExB,CAAC"}
|
|
@@ -16,6 +16,10 @@ export const BLOCKS = {
|
|
|
16
16
|
calendarAnnouncement: load('calendar-announcement.md'),
|
|
17
17
|
pricingComparisonCharts: load('pricing-comparison-charts.md'),
|
|
18
18
|
dauChartHighlights: load('dau-chart-highlights.md'),
|
|
19
|
+
last5UsersSlackFormat: load('last-5-users-slack-format.md'),
|
|
20
|
+
last5UsersPlainEmail: load('last-5-users-plain-email.md'),
|
|
21
|
+
noToolDriveInstructions: load('no-tool-drive-instructions.md'),
|
|
22
|
+
sortlySearchResults: load('sortly-search-results.md'),
|
|
19
23
|
};
|
|
20
24
|
export const BATCH_BLOCKS = [1, 2, 3, 4, 5].map((i) => load(path.join('batch', `${i}.md`)));
|
|
21
25
|
//# sourceMappingURL=slack-table-blocks.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slack-table-blocks.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack-table-blocks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAClC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAC/D,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAE9D,SAAS,IAAI,CAAC,IAAY;IACxB,OAAO,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC;AACnE,CAAC;AAED,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,iBAAiB,EAAE,IAAI,CAAC,wBAAwB,CAAC;IACjD,uBAAuB,EAAE,IAAI,CAAC,+BAA+B,CAAC;IAC9D,uBAAuB,EAAE,IAAI,CAAC,+BAA+B,CAAC;IAC9D,eAAe,EAAE,IAAI,CAAC,qBAAqB,CAAC;IAC5C,gBAAgB,EAAE,IAAI,CAAC,sBAAsB,CAAC;IAC9C,gBAAgB,EAAE,IAAI,CAAC,uBAAuB,CAAC;IAC/C,oBAAoB,EAAE,IAAI,CAAC,0BAA0B,CAAC;IACtD,uBAAuB,EAAE,IAAI,CAAC,8BAA8B,CAAC;IAC7D,kBAAkB,EAAE,IAAI,CAAC,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"slack-table-blocks.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/slack/slack-table-blocks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAClC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAC/D,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAE9D,SAAS,IAAI,CAAC,IAAY;IACxB,OAAO,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC;AACnE,CAAC;AAED,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,iBAAiB,EAAE,IAAI,CAAC,wBAAwB,CAAC;IACjD,uBAAuB,EAAE,IAAI,CAAC,+BAA+B,CAAC;IAC9D,uBAAuB,EAAE,IAAI,CAAC,+BAA+B,CAAC;IAC9D,eAAe,EAAE,IAAI,CAAC,qBAAqB,CAAC;IAC5C,gBAAgB,EAAE,IAAI,CAAC,sBAAsB,CAAC;IAC9C,gBAAgB,EAAE,IAAI,CAAC,uBAAuB,CAAC;IAC/C,oBAAoB,EAAE,IAAI,CAAC,0BAA0B,CAAC;IACtD,uBAAuB,EAAE,IAAI,CAAC,8BAA8B,CAAC;IAC7D,kBAAkB,EAAE,IAAI,CAAC,yBAAyB,CAAC;IACnD,qBAAqB,EAAE,IAAI,CAAC,8BAA8B,CAAC;IAC3D,oBAAoB,EAAE,IAAI,CAAC,6BAA6B,CAAC;IACzD,uBAAuB,EAAE,IAAI,CAAC,+BAA+B,CAAC;IAC9D,mBAAmB,EAAE,IAAI,CAAC,0BAA0B,CAAC;CAC7C,CAAC;AAEX,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CACpD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CACpC,CAAC"}
|