@bubblelab/bubble-core 0.1.96 → 0.1.97
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 +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- 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/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -6
- package/package.json +2 -2
|
@@ -902,8 +902,8 @@ declare const TelegramParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
902
902
|
secret_token: z.ZodOptional<z.ZodString>;
|
|
903
903
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
904
904
|
}, "strip", z.ZodTypeAny, {
|
|
905
|
-
url: string;
|
|
906
905
|
operation: "set_webhook";
|
|
906
|
+
url: string;
|
|
907
907
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
908
908
|
allowed_updates?: string[] | undefined;
|
|
909
909
|
ip_address?: string | undefined;
|
|
@@ -911,8 +911,8 @@ declare const TelegramParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
911
911
|
drop_pending_updates?: boolean | undefined;
|
|
912
912
|
secret_token?: string | undefined;
|
|
913
913
|
}, {
|
|
914
|
-
url: string;
|
|
915
914
|
operation: "set_webhook";
|
|
915
|
+
url: string;
|
|
916
916
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
917
917
|
allowed_updates?: string[] | undefined;
|
|
918
918
|
ip_address?: string | undefined;
|
|
@@ -1105,9 +1105,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1105
1105
|
error: z.ZodString;
|
|
1106
1106
|
success: z.ZodBoolean;
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
|
+
operation: "send_message";
|
|
1108
1109
|
success: boolean;
|
|
1109
1110
|
error: string;
|
|
1110
|
-
operation: "send_message";
|
|
1111
1111
|
ok: boolean;
|
|
1112
1112
|
message?: {
|
|
1113
1113
|
date: number;
|
|
@@ -1145,9 +1145,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1145
1145
|
}[] | undefined;
|
|
1146
1146
|
} | undefined;
|
|
1147
1147
|
}, {
|
|
1148
|
+
operation: "send_message";
|
|
1148
1149
|
success: boolean;
|
|
1149
1150
|
error: string;
|
|
1150
|
-
operation: "send_message";
|
|
1151
1151
|
ok: boolean;
|
|
1152
1152
|
message?: {
|
|
1153
1153
|
date: number;
|
|
@@ -1345,9 +1345,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1345
1345
|
error: z.ZodString;
|
|
1346
1346
|
success: z.ZodBoolean;
|
|
1347
1347
|
}, "strip", z.ZodTypeAny, {
|
|
1348
|
+
operation: "send_photo";
|
|
1348
1349
|
success: boolean;
|
|
1349
1350
|
error: string;
|
|
1350
|
-
operation: "send_photo";
|
|
1351
1351
|
ok: boolean;
|
|
1352
1352
|
message?: {
|
|
1353
1353
|
date: number;
|
|
@@ -1385,9 +1385,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1385
1385
|
}[] | undefined;
|
|
1386
1386
|
} | undefined;
|
|
1387
1387
|
}, {
|
|
1388
|
+
operation: "send_photo";
|
|
1388
1389
|
success: boolean;
|
|
1389
1390
|
error: string;
|
|
1390
|
-
operation: "send_photo";
|
|
1391
1391
|
ok: boolean;
|
|
1392
1392
|
message?: {
|
|
1393
1393
|
date: number;
|
|
@@ -1585,9 +1585,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1585
1585
|
error: z.ZodString;
|
|
1586
1586
|
success: z.ZodBoolean;
|
|
1587
1587
|
}, "strip", z.ZodTypeAny, {
|
|
1588
|
+
operation: "send_document";
|
|
1588
1589
|
success: boolean;
|
|
1589
1590
|
error: string;
|
|
1590
|
-
operation: "send_document";
|
|
1591
1591
|
ok: boolean;
|
|
1592
1592
|
message?: {
|
|
1593
1593
|
date: number;
|
|
@@ -1625,9 +1625,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1625
1625
|
}[] | undefined;
|
|
1626
1626
|
} | undefined;
|
|
1627
1627
|
}, {
|
|
1628
|
+
operation: "send_document";
|
|
1628
1629
|
success: boolean;
|
|
1629
1630
|
error: string;
|
|
1630
|
-
operation: "send_document";
|
|
1631
1631
|
ok: boolean;
|
|
1632
1632
|
message?: {
|
|
1633
1633
|
date: number;
|
|
@@ -1825,9 +1825,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1825
1825
|
error: z.ZodString;
|
|
1826
1826
|
success: z.ZodBoolean;
|
|
1827
1827
|
}, "strip", z.ZodTypeAny, {
|
|
1828
|
+
operation: "edit_message";
|
|
1828
1829
|
success: boolean;
|
|
1829
1830
|
error: string;
|
|
1830
|
-
operation: "edit_message";
|
|
1831
1831
|
ok: boolean;
|
|
1832
1832
|
message?: {
|
|
1833
1833
|
date: number;
|
|
@@ -1865,9 +1865,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1865
1865
|
}[] | undefined;
|
|
1866
1866
|
} | undefined;
|
|
1867
1867
|
}, {
|
|
1868
|
+
operation: "edit_message";
|
|
1868
1869
|
success: boolean;
|
|
1869
1870
|
error: string;
|
|
1870
|
-
operation: "edit_message";
|
|
1871
1871
|
ok: boolean;
|
|
1872
1872
|
message?: {
|
|
1873
1873
|
date: number;
|
|
@@ -1910,14 +1910,14 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1910
1910
|
error: z.ZodString;
|
|
1911
1911
|
success: z.ZodBoolean;
|
|
1912
1912
|
}, "strip", z.ZodTypeAny, {
|
|
1913
|
+
operation: "delete_message";
|
|
1913
1914
|
success: boolean;
|
|
1914
1915
|
error: string;
|
|
1915
|
-
operation: "delete_message";
|
|
1916
1916
|
ok: boolean;
|
|
1917
1917
|
}, {
|
|
1918
|
+
operation: "delete_message";
|
|
1918
1919
|
success: boolean;
|
|
1919
1920
|
error: string;
|
|
1920
|
-
operation: "delete_message";
|
|
1921
1921
|
ok: boolean;
|
|
1922
1922
|
}>, z.ZodObject<{
|
|
1923
1923
|
operation: z.ZodLiteral<"get_me">;
|
|
@@ -1947,9 +1947,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1947
1947
|
error: z.ZodString;
|
|
1948
1948
|
success: z.ZodBoolean;
|
|
1949
1949
|
}, "strip", z.ZodTypeAny, {
|
|
1950
|
+
operation: "get_me";
|
|
1950
1951
|
success: boolean;
|
|
1951
1952
|
error: string;
|
|
1952
|
-
operation: "get_me";
|
|
1953
1953
|
ok: boolean;
|
|
1954
1954
|
user?: {
|
|
1955
1955
|
id: number;
|
|
@@ -1960,9 +1960,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
1960
1960
|
language_code?: string | undefined;
|
|
1961
1961
|
} | undefined;
|
|
1962
1962
|
}, {
|
|
1963
|
+
operation: "get_me";
|
|
1963
1964
|
success: boolean;
|
|
1964
1965
|
error: string;
|
|
1965
|
-
operation: "get_me";
|
|
1966
1966
|
ok: boolean;
|
|
1967
1967
|
user?: {
|
|
1968
1968
|
id: number;
|
|
@@ -2006,9 +2006,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
2006
2006
|
error: z.ZodString;
|
|
2007
2007
|
success: z.ZodBoolean;
|
|
2008
2008
|
}, "strip", z.ZodTypeAny, {
|
|
2009
|
+
operation: "get_chat";
|
|
2009
2010
|
success: boolean;
|
|
2010
2011
|
error: string;
|
|
2011
|
-
operation: "get_chat";
|
|
2012
2012
|
ok: boolean;
|
|
2013
2013
|
chat?: {
|
|
2014
2014
|
type: "channel" | "private" | "group" | "supergroup";
|
|
@@ -2021,9 +2021,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
2021
2021
|
invite_link?: string | undefined;
|
|
2022
2022
|
} | undefined;
|
|
2023
2023
|
}, {
|
|
2024
|
+
operation: "get_chat";
|
|
2024
2025
|
success: boolean;
|
|
2025
2026
|
error: string;
|
|
2026
|
-
operation: "get_chat";
|
|
2027
2027
|
ok: boolean;
|
|
2028
2028
|
chat?: {
|
|
2029
2029
|
type: "channel" | "private" | "group" | "supergroup";
|
|
@@ -3330,9 +3330,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3330
3330
|
error: z.ZodString;
|
|
3331
3331
|
success: z.ZodBoolean;
|
|
3332
3332
|
}, "strip", z.ZodTypeAny, {
|
|
3333
|
+
operation: "get_updates";
|
|
3333
3334
|
success: boolean;
|
|
3334
3335
|
error: string;
|
|
3335
|
-
operation: "get_updates";
|
|
3336
3336
|
ok: boolean;
|
|
3337
3337
|
updates?: {
|
|
3338
3338
|
update_id: number;
|
|
@@ -3528,9 +3528,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3528
3528
|
} | undefined;
|
|
3529
3529
|
}[] | undefined;
|
|
3530
3530
|
}, {
|
|
3531
|
+
operation: "get_updates";
|
|
3531
3532
|
success: boolean;
|
|
3532
3533
|
error: string;
|
|
3533
|
-
operation: "get_updates";
|
|
3534
3534
|
ok: boolean;
|
|
3535
3535
|
updates?: {
|
|
3536
3536
|
update_id: number;
|
|
@@ -3731,14 +3731,14 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3731
3731
|
error: z.ZodString;
|
|
3732
3732
|
success: z.ZodBoolean;
|
|
3733
3733
|
}, "strip", z.ZodTypeAny, {
|
|
3734
|
+
operation: "send_chat_action";
|
|
3734
3735
|
success: boolean;
|
|
3735
3736
|
error: string;
|
|
3736
|
-
operation: "send_chat_action";
|
|
3737
3737
|
ok: boolean;
|
|
3738
3738
|
}, {
|
|
3739
|
+
operation: "send_chat_action";
|
|
3739
3740
|
success: boolean;
|
|
3740
3741
|
error: string;
|
|
3741
|
-
operation: "send_chat_action";
|
|
3742
3742
|
ok: boolean;
|
|
3743
3743
|
}>, z.ZodObject<{
|
|
3744
3744
|
operation: z.ZodLiteral<"set_message_reaction">;
|
|
@@ -3746,14 +3746,14 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3746
3746
|
error: z.ZodString;
|
|
3747
3747
|
success: z.ZodBoolean;
|
|
3748
3748
|
}, "strip", z.ZodTypeAny, {
|
|
3749
|
+
operation: "set_message_reaction";
|
|
3749
3750
|
success: boolean;
|
|
3750
3751
|
error: string;
|
|
3751
|
-
operation: "set_message_reaction";
|
|
3752
3752
|
ok: boolean;
|
|
3753
3753
|
}, {
|
|
3754
|
+
operation: "set_message_reaction";
|
|
3754
3755
|
success: boolean;
|
|
3755
3756
|
error: string;
|
|
3756
|
-
operation: "set_message_reaction";
|
|
3757
3757
|
ok: boolean;
|
|
3758
3758
|
}>, z.ZodObject<{
|
|
3759
3759
|
operation: z.ZodLiteral<"set_webhook">;
|
|
@@ -3761,14 +3761,14 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3761
3761
|
error: z.ZodString;
|
|
3762
3762
|
success: z.ZodBoolean;
|
|
3763
3763
|
}, "strip", z.ZodTypeAny, {
|
|
3764
|
+
operation: "set_webhook";
|
|
3764
3765
|
success: boolean;
|
|
3765
3766
|
error: string;
|
|
3766
|
-
operation: "set_webhook";
|
|
3767
3767
|
ok: boolean;
|
|
3768
3768
|
}, {
|
|
3769
|
+
operation: "set_webhook";
|
|
3769
3770
|
success: boolean;
|
|
3770
3771
|
error: string;
|
|
3771
|
-
operation: "set_webhook";
|
|
3772
3772
|
ok: boolean;
|
|
3773
3773
|
}>, z.ZodObject<{
|
|
3774
3774
|
operation: z.ZodLiteral<"delete_webhook">;
|
|
@@ -3776,14 +3776,14 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3776
3776
|
error: z.ZodString;
|
|
3777
3777
|
success: z.ZodBoolean;
|
|
3778
3778
|
}, "strip", z.ZodTypeAny, {
|
|
3779
|
+
operation: "delete_webhook";
|
|
3779
3780
|
success: boolean;
|
|
3780
3781
|
error: string;
|
|
3781
|
-
operation: "delete_webhook";
|
|
3782
3782
|
ok: boolean;
|
|
3783
3783
|
}, {
|
|
3784
|
+
operation: "delete_webhook";
|
|
3784
3785
|
success: boolean;
|
|
3785
3786
|
error: string;
|
|
3786
|
-
operation: "delete_webhook";
|
|
3787
3787
|
ok: boolean;
|
|
3788
3788
|
}>, z.ZodObject<{
|
|
3789
3789
|
operation: z.ZodLiteral<"get_webhook_info">;
|
|
@@ -3822,9 +3822,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3822
3822
|
error: z.ZodString;
|
|
3823
3823
|
success: z.ZodBoolean;
|
|
3824
3824
|
}, "strip", z.ZodTypeAny, {
|
|
3825
|
+
operation: "get_webhook_info";
|
|
3825
3826
|
success: boolean;
|
|
3826
3827
|
error: string;
|
|
3827
|
-
operation: "get_webhook_info";
|
|
3828
3828
|
ok: boolean;
|
|
3829
3829
|
webhook_info?: {
|
|
3830
3830
|
url: string;
|
|
@@ -3838,9 +3838,9 @@ declare const TelegramResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
3838
3838
|
last_synchronization_error_date?: number | undefined;
|
|
3839
3839
|
} | undefined;
|
|
3840
3840
|
}, {
|
|
3841
|
+
operation: "get_webhook_info";
|
|
3841
3842
|
success: boolean;
|
|
3842
3843
|
error: string;
|
|
3843
|
-
operation: "get_webhook_info";
|
|
3844
3844
|
ok: boolean;
|
|
3845
3845
|
webhook_info?: {
|
|
3846
3846
|
url: string;
|
|
@@ -4763,8 +4763,8 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
4763
4763
|
secret_token: z.ZodOptional<z.ZodString>;
|
|
4764
4764
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4765
4765
|
}, "strip", z.ZodTypeAny, {
|
|
4766
|
-
url: string;
|
|
4767
4766
|
operation: "set_webhook";
|
|
4767
|
+
url: string;
|
|
4768
4768
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4769
4769
|
allowed_updates?: string[] | undefined;
|
|
4770
4770
|
ip_address?: string | undefined;
|
|
@@ -4772,8 +4772,8 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
4772
4772
|
drop_pending_updates?: boolean | undefined;
|
|
4773
4773
|
secret_token?: string | undefined;
|
|
4774
4774
|
}, {
|
|
4775
|
-
url: string;
|
|
4776
4775
|
operation: "set_webhook";
|
|
4776
|
+
url: string;
|
|
4777
4777
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4778
4778
|
allowed_updates?: string[] | undefined;
|
|
4779
4779
|
ip_address?: string | undefined;
|
|
@@ -4963,9 +4963,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
4963
4963
|
error: z.ZodString;
|
|
4964
4964
|
success: z.ZodBoolean;
|
|
4965
4965
|
}, "strip", z.ZodTypeAny, {
|
|
4966
|
+
operation: "send_message";
|
|
4966
4967
|
success: boolean;
|
|
4967
4968
|
error: string;
|
|
4968
|
-
operation: "send_message";
|
|
4969
4969
|
ok: boolean;
|
|
4970
4970
|
message?: {
|
|
4971
4971
|
date: number;
|
|
@@ -5003,9 +5003,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5003
5003
|
}[] | undefined;
|
|
5004
5004
|
} | undefined;
|
|
5005
5005
|
}, {
|
|
5006
|
+
operation: "send_message";
|
|
5006
5007
|
success: boolean;
|
|
5007
5008
|
error: string;
|
|
5008
|
-
operation: "send_message";
|
|
5009
5009
|
ok: boolean;
|
|
5010
5010
|
message?: {
|
|
5011
5011
|
date: number;
|
|
@@ -5203,9 +5203,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5203
5203
|
error: z.ZodString;
|
|
5204
5204
|
success: z.ZodBoolean;
|
|
5205
5205
|
}, "strip", z.ZodTypeAny, {
|
|
5206
|
+
operation: "send_photo";
|
|
5206
5207
|
success: boolean;
|
|
5207
5208
|
error: string;
|
|
5208
|
-
operation: "send_photo";
|
|
5209
5209
|
ok: boolean;
|
|
5210
5210
|
message?: {
|
|
5211
5211
|
date: number;
|
|
@@ -5243,9 +5243,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5243
5243
|
}[] | undefined;
|
|
5244
5244
|
} | undefined;
|
|
5245
5245
|
}, {
|
|
5246
|
+
operation: "send_photo";
|
|
5246
5247
|
success: boolean;
|
|
5247
5248
|
error: string;
|
|
5248
|
-
operation: "send_photo";
|
|
5249
5249
|
ok: boolean;
|
|
5250
5250
|
message?: {
|
|
5251
5251
|
date: number;
|
|
@@ -5443,9 +5443,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5443
5443
|
error: z.ZodString;
|
|
5444
5444
|
success: z.ZodBoolean;
|
|
5445
5445
|
}, "strip", z.ZodTypeAny, {
|
|
5446
|
+
operation: "send_document";
|
|
5446
5447
|
success: boolean;
|
|
5447
5448
|
error: string;
|
|
5448
|
-
operation: "send_document";
|
|
5449
5449
|
ok: boolean;
|
|
5450
5450
|
message?: {
|
|
5451
5451
|
date: number;
|
|
@@ -5483,9 +5483,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5483
5483
|
}[] | undefined;
|
|
5484
5484
|
} | undefined;
|
|
5485
5485
|
}, {
|
|
5486
|
+
operation: "send_document";
|
|
5486
5487
|
success: boolean;
|
|
5487
5488
|
error: string;
|
|
5488
|
-
operation: "send_document";
|
|
5489
5489
|
ok: boolean;
|
|
5490
5490
|
message?: {
|
|
5491
5491
|
date: number;
|
|
@@ -5683,9 +5683,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5683
5683
|
error: z.ZodString;
|
|
5684
5684
|
success: z.ZodBoolean;
|
|
5685
5685
|
}, "strip", z.ZodTypeAny, {
|
|
5686
|
+
operation: "edit_message";
|
|
5686
5687
|
success: boolean;
|
|
5687
5688
|
error: string;
|
|
5688
|
-
operation: "edit_message";
|
|
5689
5689
|
ok: boolean;
|
|
5690
5690
|
message?: {
|
|
5691
5691
|
date: number;
|
|
@@ -5723,9 +5723,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5723
5723
|
}[] | undefined;
|
|
5724
5724
|
} | undefined;
|
|
5725
5725
|
}, {
|
|
5726
|
+
operation: "edit_message";
|
|
5726
5727
|
success: boolean;
|
|
5727
5728
|
error: string;
|
|
5728
|
-
operation: "edit_message";
|
|
5729
5729
|
ok: boolean;
|
|
5730
5730
|
message?: {
|
|
5731
5731
|
date: number;
|
|
@@ -5768,14 +5768,14 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5768
5768
|
error: z.ZodString;
|
|
5769
5769
|
success: z.ZodBoolean;
|
|
5770
5770
|
}, "strip", z.ZodTypeAny, {
|
|
5771
|
+
operation: "delete_message";
|
|
5771
5772
|
success: boolean;
|
|
5772
5773
|
error: string;
|
|
5773
|
-
operation: "delete_message";
|
|
5774
5774
|
ok: boolean;
|
|
5775
5775
|
}, {
|
|
5776
|
+
operation: "delete_message";
|
|
5776
5777
|
success: boolean;
|
|
5777
5778
|
error: string;
|
|
5778
|
-
operation: "delete_message";
|
|
5779
5779
|
ok: boolean;
|
|
5780
5780
|
}>, z.ZodObject<{
|
|
5781
5781
|
operation: z.ZodLiteral<"get_me">;
|
|
@@ -5805,9 +5805,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5805
5805
|
error: z.ZodString;
|
|
5806
5806
|
success: z.ZodBoolean;
|
|
5807
5807
|
}, "strip", z.ZodTypeAny, {
|
|
5808
|
+
operation: "get_me";
|
|
5808
5809
|
success: boolean;
|
|
5809
5810
|
error: string;
|
|
5810
|
-
operation: "get_me";
|
|
5811
5811
|
ok: boolean;
|
|
5812
5812
|
user?: {
|
|
5813
5813
|
id: number;
|
|
@@ -5818,9 +5818,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5818
5818
|
language_code?: string | undefined;
|
|
5819
5819
|
} | undefined;
|
|
5820
5820
|
}, {
|
|
5821
|
+
operation: "get_me";
|
|
5821
5822
|
success: boolean;
|
|
5822
5823
|
error: string;
|
|
5823
|
-
operation: "get_me";
|
|
5824
5824
|
ok: boolean;
|
|
5825
5825
|
user?: {
|
|
5826
5826
|
id: number;
|
|
@@ -5864,9 +5864,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5864
5864
|
error: z.ZodString;
|
|
5865
5865
|
success: z.ZodBoolean;
|
|
5866
5866
|
}, "strip", z.ZodTypeAny, {
|
|
5867
|
+
operation: "get_chat";
|
|
5867
5868
|
success: boolean;
|
|
5868
5869
|
error: string;
|
|
5869
|
-
operation: "get_chat";
|
|
5870
5870
|
ok: boolean;
|
|
5871
5871
|
chat?: {
|
|
5872
5872
|
type: "channel" | "private" | "group" | "supergroup";
|
|
@@ -5879,9 +5879,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
5879
5879
|
invite_link?: string | undefined;
|
|
5880
5880
|
} | undefined;
|
|
5881
5881
|
}, {
|
|
5882
|
+
operation: "get_chat";
|
|
5882
5883
|
success: boolean;
|
|
5883
5884
|
error: string;
|
|
5884
|
-
operation: "get_chat";
|
|
5885
5885
|
ok: boolean;
|
|
5886
5886
|
chat?: {
|
|
5887
5887
|
type: "channel" | "private" | "group" | "supergroup";
|
|
@@ -7188,9 +7188,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7188
7188
|
error: z.ZodString;
|
|
7189
7189
|
success: z.ZodBoolean;
|
|
7190
7190
|
}, "strip", z.ZodTypeAny, {
|
|
7191
|
+
operation: "get_updates";
|
|
7191
7192
|
success: boolean;
|
|
7192
7193
|
error: string;
|
|
7193
|
-
operation: "get_updates";
|
|
7194
7194
|
ok: boolean;
|
|
7195
7195
|
updates?: {
|
|
7196
7196
|
update_id: number;
|
|
@@ -7386,9 +7386,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7386
7386
|
} | undefined;
|
|
7387
7387
|
}[] | undefined;
|
|
7388
7388
|
}, {
|
|
7389
|
+
operation: "get_updates";
|
|
7389
7390
|
success: boolean;
|
|
7390
7391
|
error: string;
|
|
7391
|
-
operation: "get_updates";
|
|
7392
7392
|
ok: boolean;
|
|
7393
7393
|
updates?: {
|
|
7394
7394
|
update_id: number;
|
|
@@ -7589,14 +7589,14 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7589
7589
|
error: z.ZodString;
|
|
7590
7590
|
success: z.ZodBoolean;
|
|
7591
7591
|
}, "strip", z.ZodTypeAny, {
|
|
7592
|
+
operation: "send_chat_action";
|
|
7592
7593
|
success: boolean;
|
|
7593
7594
|
error: string;
|
|
7594
|
-
operation: "send_chat_action";
|
|
7595
7595
|
ok: boolean;
|
|
7596
7596
|
}, {
|
|
7597
|
+
operation: "send_chat_action";
|
|
7597
7598
|
success: boolean;
|
|
7598
7599
|
error: string;
|
|
7599
|
-
operation: "send_chat_action";
|
|
7600
7600
|
ok: boolean;
|
|
7601
7601
|
}>, z.ZodObject<{
|
|
7602
7602
|
operation: z.ZodLiteral<"set_message_reaction">;
|
|
@@ -7604,14 +7604,14 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7604
7604
|
error: z.ZodString;
|
|
7605
7605
|
success: z.ZodBoolean;
|
|
7606
7606
|
}, "strip", z.ZodTypeAny, {
|
|
7607
|
+
operation: "set_message_reaction";
|
|
7607
7608
|
success: boolean;
|
|
7608
7609
|
error: string;
|
|
7609
|
-
operation: "set_message_reaction";
|
|
7610
7610
|
ok: boolean;
|
|
7611
7611
|
}, {
|
|
7612
|
+
operation: "set_message_reaction";
|
|
7612
7613
|
success: boolean;
|
|
7613
7614
|
error: string;
|
|
7614
|
-
operation: "set_message_reaction";
|
|
7615
7615
|
ok: boolean;
|
|
7616
7616
|
}>, z.ZodObject<{
|
|
7617
7617
|
operation: z.ZodLiteral<"set_webhook">;
|
|
@@ -7619,14 +7619,14 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7619
7619
|
error: z.ZodString;
|
|
7620
7620
|
success: z.ZodBoolean;
|
|
7621
7621
|
}, "strip", z.ZodTypeAny, {
|
|
7622
|
+
operation: "set_webhook";
|
|
7622
7623
|
success: boolean;
|
|
7623
7624
|
error: string;
|
|
7624
|
-
operation: "set_webhook";
|
|
7625
7625
|
ok: boolean;
|
|
7626
7626
|
}, {
|
|
7627
|
+
operation: "set_webhook";
|
|
7627
7628
|
success: boolean;
|
|
7628
7629
|
error: string;
|
|
7629
|
-
operation: "set_webhook";
|
|
7630
7630
|
ok: boolean;
|
|
7631
7631
|
}>, z.ZodObject<{
|
|
7632
7632
|
operation: z.ZodLiteral<"delete_webhook">;
|
|
@@ -7634,14 +7634,14 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7634
7634
|
error: z.ZodString;
|
|
7635
7635
|
success: z.ZodBoolean;
|
|
7636
7636
|
}, "strip", z.ZodTypeAny, {
|
|
7637
|
+
operation: "delete_webhook";
|
|
7637
7638
|
success: boolean;
|
|
7638
7639
|
error: string;
|
|
7639
|
-
operation: "delete_webhook";
|
|
7640
7640
|
ok: boolean;
|
|
7641
7641
|
}, {
|
|
7642
|
+
operation: "delete_webhook";
|
|
7642
7643
|
success: boolean;
|
|
7643
7644
|
error: string;
|
|
7644
|
-
operation: "delete_webhook";
|
|
7645
7645
|
ok: boolean;
|
|
7646
7646
|
}>, z.ZodObject<{
|
|
7647
7647
|
operation: z.ZodLiteral<"get_webhook_info">;
|
|
@@ -7680,9 +7680,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7680
7680
|
error: z.ZodString;
|
|
7681
7681
|
success: z.ZodBoolean;
|
|
7682
7682
|
}, "strip", z.ZodTypeAny, {
|
|
7683
|
+
operation: "get_webhook_info";
|
|
7683
7684
|
success: boolean;
|
|
7684
7685
|
error: string;
|
|
7685
|
-
operation: "get_webhook_info";
|
|
7686
7686
|
ok: boolean;
|
|
7687
7687
|
webhook_info?: {
|
|
7688
7688
|
url: string;
|
|
@@ -7696,9 +7696,9 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
7696
7696
|
last_synchronization_error_date?: number | undefined;
|
|
7697
7697
|
} | undefined;
|
|
7698
7698
|
}, {
|
|
7699
|
+
operation: "get_webhook_info";
|
|
7699
7700
|
success: boolean;
|
|
7700
7701
|
error: string;
|
|
7701
|
-
operation: "get_webhook_info";
|
|
7702
7702
|
ok: boolean;
|
|
7703
7703
|
webhook_info?: {
|
|
7704
7704
|
url: string;
|
|
@@ -69,13 +69,13 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
69
69
|
max_results: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
70
70
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
71
71
|
}, "strip", import("zod").ZodTypeAny, {
|
|
72
|
-
query: string;
|
|
73
72
|
operation: "search";
|
|
73
|
+
query: string;
|
|
74
74
|
max_results: number;
|
|
75
75
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
query: string;
|
|
78
77
|
operation: "search";
|
|
78
|
+
query: string;
|
|
79
79
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
80
80
|
max_results?: number | undefined;
|
|
81
81
|
}>, import("zod").ZodObject<{
|
|
@@ -113,15 +113,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
113
113
|
cart_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
114
114
|
error: import("zod").ZodString;
|
|
115
115
|
}, "strip", import("zod").ZodTypeAny, {
|
|
116
|
+
operation: "add_to_cart";
|
|
116
117
|
success: boolean;
|
|
117
118
|
error: string;
|
|
118
|
-
operation: "add_to_cart";
|
|
119
119
|
message?: string | undefined;
|
|
120
120
|
cart_count?: number | undefined;
|
|
121
121
|
}, {
|
|
122
|
+
operation: "add_to_cart";
|
|
122
123
|
success: boolean;
|
|
123
124
|
error: string;
|
|
124
|
-
operation: "add_to_cart";
|
|
125
125
|
message?: string | undefined;
|
|
126
126
|
cart_count?: number | undefined;
|
|
127
127
|
}>, import("zod").ZodObject<{
|
|
@@ -154,9 +154,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
154
154
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
155
155
|
error: import("zod").ZodString;
|
|
156
156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
157
|
+
operation: "get_cart";
|
|
157
158
|
success: boolean;
|
|
158
159
|
error: string;
|
|
159
|
-
operation: "get_cart";
|
|
160
160
|
items?: {
|
|
161
161
|
title: string;
|
|
162
162
|
price: string;
|
|
@@ -169,9 +169,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
169
169
|
total_items?: number | undefined;
|
|
170
170
|
screenshot_url?: string | undefined;
|
|
171
171
|
}, {
|
|
172
|
+
operation: "get_cart";
|
|
172
173
|
success: boolean;
|
|
173
174
|
error: string;
|
|
174
|
-
operation: "get_cart";
|
|
175
175
|
items?: {
|
|
176
176
|
title: string;
|
|
177
177
|
price: string;
|
|
@@ -210,9 +210,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
210
210
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
211
211
|
error: import("zod").ZodString;
|
|
212
212
|
}, "strip", import("zod").ZodTypeAny, {
|
|
213
|
+
operation: "checkout";
|
|
213
214
|
success: boolean;
|
|
214
215
|
error: string;
|
|
215
|
-
operation: "checkout";
|
|
216
216
|
items?: {
|
|
217
217
|
title: string;
|
|
218
218
|
price?: string | undefined;
|
|
@@ -228,9 +228,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
228
228
|
shipping_address?: string | undefined;
|
|
229
229
|
payment_method?: string | undefined;
|
|
230
230
|
}, {
|
|
231
|
+
operation: "checkout";
|
|
231
232
|
success: boolean;
|
|
232
233
|
error: string;
|
|
233
|
-
operation: "checkout";
|
|
234
234
|
items?: {
|
|
235
235
|
title: string;
|
|
236
236
|
price?: string | undefined;
|
|
@@ -279,9 +279,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
279
279
|
total_results: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
280
280
|
error: import("zod").ZodString;
|
|
281
281
|
}, "strip", import("zod").ZodTypeAny, {
|
|
282
|
+
operation: "search";
|
|
282
283
|
success: boolean;
|
|
283
284
|
error: string;
|
|
284
|
-
operation: "search";
|
|
285
285
|
results?: {
|
|
286
286
|
title: string;
|
|
287
287
|
url: string;
|
|
@@ -294,9 +294,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
294
294
|
}[] | undefined;
|
|
295
295
|
total_results?: number | undefined;
|
|
296
296
|
}, {
|
|
297
|
+
operation: "search";
|
|
297
298
|
success: boolean;
|
|
298
299
|
error: string;
|
|
299
|
-
operation: "search";
|
|
300
300
|
results?: {
|
|
301
301
|
title: string;
|
|
302
302
|
url: string;
|
|
@@ -347,9 +347,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
347
347
|
}>>;
|
|
348
348
|
error: import("zod").ZodString;
|
|
349
349
|
}, "strip", import("zod").ZodTypeAny, {
|
|
350
|
+
operation: "get_product";
|
|
350
351
|
success: boolean;
|
|
351
352
|
error: string;
|
|
352
|
-
operation: "get_product";
|
|
353
353
|
product?: {
|
|
354
354
|
title: string;
|
|
355
355
|
url: string;
|
|
@@ -363,9 +363,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
363
363
|
availability?: string | undefined;
|
|
364
364
|
} | undefined;
|
|
365
365
|
}, {
|
|
366
|
+
operation: "get_product";
|
|
366
367
|
success: boolean;
|
|
367
368
|
error: string;
|
|
368
|
-
operation: "get_product";
|
|
369
369
|
product?: {
|
|
370
370
|
title: string;
|
|
371
371
|
url: string;
|
|
@@ -384,14 +384,14 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
384
384
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
385
385
|
error: import("zod").ZodString;
|
|
386
386
|
}, "strip", import("zod").ZodTypeAny, {
|
|
387
|
+
operation: "screenshot";
|
|
387
388
|
success: boolean;
|
|
388
389
|
error: string;
|
|
389
|
-
operation: "screenshot";
|
|
390
390
|
screenshot_url?: string | undefined;
|
|
391
391
|
}, {
|
|
392
|
+
operation: "screenshot";
|
|
392
393
|
success: boolean;
|
|
393
394
|
error: string;
|
|
394
|
-
operation: "screenshot";
|
|
395
395
|
screenshot_url?: string | undefined;
|
|
396
396
|
}>]>;
|
|
397
397
|
static readonly shortDescription = "Amazon shopping automation - add to cart, view cart, checkout, search products";
|