@bubblelab/bubble-core 0.1.69 → 0.1.70
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 +37 -37
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +32 -32
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +12 -12
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +72 -72
- package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/google-drive.d.ts +61 -0
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +57 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +122 -122
- 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 +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +67 -2
- package/package.json +2 -2
|
@@ -356,18 +356,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
356
356
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
358
|
operation: "list_channels";
|
|
359
|
-
limit: number;
|
|
360
359
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
361
360
|
exclude_archived: boolean;
|
|
361
|
+
limit: number;
|
|
362
362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
363
363
|
cursor?: string | undefined;
|
|
364
364
|
}, {
|
|
365
365
|
operation: "list_channels";
|
|
366
366
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
367
|
-
limit?: number | undefined;
|
|
368
|
-
cursor?: string | undefined;
|
|
369
367
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
370
368
|
exclude_archived?: boolean | undefined;
|
|
369
|
+
limit?: number | undefined;
|
|
370
|
+
cursor?: string | undefined;
|
|
371
371
|
}>, z.ZodObject<{
|
|
372
372
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
373
373
|
channel: z.ZodString;
|
|
@@ -428,8 +428,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
429
|
operation: "get_conversation_history";
|
|
430
430
|
inclusive: boolean;
|
|
431
|
-
limit: number;
|
|
432
431
|
channel: string;
|
|
432
|
+
limit: number;
|
|
433
433
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
434
434
|
cursor?: string | undefined;
|
|
435
435
|
latest?: string | undefined;
|
|
@@ -456,9 +456,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
457
|
operation: "get_thread_replies";
|
|
458
458
|
inclusive: boolean;
|
|
459
|
-
limit: number;
|
|
460
459
|
ts: string;
|
|
461
460
|
channel: string;
|
|
461
|
+
limit: number;
|
|
462
462
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
463
463
|
cursor?: string | undefined;
|
|
464
464
|
latest?: string | undefined;
|
|
@@ -1794,6 +1794,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1794
1794
|
}, "strip", z.ZodTypeAny, {
|
|
1795
1795
|
name: string;
|
|
1796
1796
|
id: string;
|
|
1797
|
+
color?: string | undefined;
|
|
1798
|
+
team_id?: string | undefined;
|
|
1799
|
+
deleted?: boolean | undefined;
|
|
1800
|
+
real_name?: string | undefined;
|
|
1801
|
+
tz?: string | undefined;
|
|
1802
|
+
tz_label?: string | undefined;
|
|
1803
|
+
tz_offset?: number | undefined;
|
|
1797
1804
|
profile?: {
|
|
1798
1805
|
title?: string | undefined;
|
|
1799
1806
|
email?: string | undefined;
|
|
@@ -1820,13 +1827,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1820
1827
|
image_512?: string | undefined;
|
|
1821
1828
|
image_1024?: string | undefined;
|
|
1822
1829
|
} | undefined;
|
|
1823
|
-
color?: string | undefined;
|
|
1824
|
-
team_id?: string | undefined;
|
|
1825
|
-
deleted?: boolean | undefined;
|
|
1826
|
-
real_name?: string | undefined;
|
|
1827
|
-
tz?: string | undefined;
|
|
1828
|
-
tz_label?: string | undefined;
|
|
1829
|
-
tz_offset?: number | undefined;
|
|
1830
1830
|
is_admin?: boolean | undefined;
|
|
1831
1831
|
is_owner?: boolean | undefined;
|
|
1832
1832
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1839,6 +1839,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1839
1839
|
}, {
|
|
1840
1840
|
name: string;
|
|
1841
1841
|
id: string;
|
|
1842
|
+
color?: string | undefined;
|
|
1843
|
+
team_id?: string | undefined;
|
|
1844
|
+
deleted?: boolean | undefined;
|
|
1845
|
+
real_name?: string | undefined;
|
|
1846
|
+
tz?: string | undefined;
|
|
1847
|
+
tz_label?: string | undefined;
|
|
1848
|
+
tz_offset?: number | undefined;
|
|
1842
1849
|
profile?: {
|
|
1843
1850
|
title?: string | undefined;
|
|
1844
1851
|
email?: string | undefined;
|
|
@@ -1865,13 +1872,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1865
1872
|
image_512?: string | undefined;
|
|
1866
1873
|
image_1024?: string | undefined;
|
|
1867
1874
|
} | undefined;
|
|
1868
|
-
color?: string | undefined;
|
|
1869
|
-
team_id?: string | undefined;
|
|
1870
|
-
deleted?: boolean | undefined;
|
|
1871
|
-
real_name?: string | undefined;
|
|
1872
|
-
tz?: string | undefined;
|
|
1873
|
-
tz_label?: string | undefined;
|
|
1874
|
-
tz_offset?: number | undefined;
|
|
1875
1875
|
is_admin?: boolean | undefined;
|
|
1876
1876
|
is_owner?: boolean | undefined;
|
|
1877
1877
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1892,6 +1892,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1892
1892
|
user?: {
|
|
1893
1893
|
name: string;
|
|
1894
1894
|
id: string;
|
|
1895
|
+
color?: string | undefined;
|
|
1896
|
+
team_id?: string | undefined;
|
|
1897
|
+
deleted?: boolean | undefined;
|
|
1898
|
+
real_name?: string | undefined;
|
|
1899
|
+
tz?: string | undefined;
|
|
1900
|
+
tz_label?: string | undefined;
|
|
1901
|
+
tz_offset?: number | undefined;
|
|
1895
1902
|
profile?: {
|
|
1896
1903
|
title?: string | undefined;
|
|
1897
1904
|
email?: string | undefined;
|
|
@@ -1918,13 +1925,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1918
1925
|
image_512?: string | undefined;
|
|
1919
1926
|
image_1024?: string | undefined;
|
|
1920
1927
|
} | undefined;
|
|
1921
|
-
color?: string | undefined;
|
|
1922
|
-
team_id?: string | undefined;
|
|
1923
|
-
deleted?: boolean | undefined;
|
|
1924
|
-
real_name?: string | undefined;
|
|
1925
|
-
tz?: string | undefined;
|
|
1926
|
-
tz_label?: string | undefined;
|
|
1927
|
-
tz_offset?: number | undefined;
|
|
1928
1928
|
is_admin?: boolean | undefined;
|
|
1929
1929
|
is_owner?: boolean | undefined;
|
|
1930
1930
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1943,6 +1943,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1943
1943
|
user?: {
|
|
1944
1944
|
name: string;
|
|
1945
1945
|
id: string;
|
|
1946
|
+
color?: string | undefined;
|
|
1947
|
+
team_id?: string | undefined;
|
|
1948
|
+
deleted?: boolean | undefined;
|
|
1949
|
+
real_name?: string | undefined;
|
|
1950
|
+
tz?: string | undefined;
|
|
1951
|
+
tz_label?: string | undefined;
|
|
1952
|
+
tz_offset?: number | undefined;
|
|
1946
1953
|
profile?: {
|
|
1947
1954
|
title?: string | undefined;
|
|
1948
1955
|
email?: string | undefined;
|
|
@@ -1969,13 +1976,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1969
1976
|
image_512?: string | undefined;
|
|
1970
1977
|
image_1024?: string | undefined;
|
|
1971
1978
|
} | undefined;
|
|
1972
|
-
color?: string | undefined;
|
|
1973
|
-
team_id?: string | undefined;
|
|
1974
|
-
deleted?: boolean | undefined;
|
|
1975
|
-
real_name?: string | undefined;
|
|
1976
|
-
tz?: string | undefined;
|
|
1977
|
-
tz_label?: string | undefined;
|
|
1978
|
-
tz_offset?: number | undefined;
|
|
1979
1979
|
is_admin?: boolean | undefined;
|
|
1980
1980
|
is_owner?: boolean | undefined;
|
|
1981
1981
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2087,6 +2087,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2087
2087
|
}, "strip", z.ZodTypeAny, {
|
|
2088
2088
|
name: string;
|
|
2089
2089
|
id: string;
|
|
2090
|
+
color?: string | undefined;
|
|
2091
|
+
team_id?: string | undefined;
|
|
2092
|
+
deleted?: boolean | undefined;
|
|
2093
|
+
real_name?: string | undefined;
|
|
2094
|
+
tz?: string | undefined;
|
|
2095
|
+
tz_label?: string | undefined;
|
|
2096
|
+
tz_offset?: number | undefined;
|
|
2090
2097
|
profile?: {
|
|
2091
2098
|
title?: string | undefined;
|
|
2092
2099
|
email?: string | undefined;
|
|
@@ -2113,13 +2120,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2113
2120
|
image_512?: string | undefined;
|
|
2114
2121
|
image_1024?: string | undefined;
|
|
2115
2122
|
} | undefined;
|
|
2116
|
-
color?: string | undefined;
|
|
2117
|
-
team_id?: string | undefined;
|
|
2118
|
-
deleted?: boolean | undefined;
|
|
2119
|
-
real_name?: string | undefined;
|
|
2120
|
-
tz?: string | undefined;
|
|
2121
|
-
tz_label?: string | undefined;
|
|
2122
|
-
tz_offset?: number | undefined;
|
|
2123
2123
|
is_admin?: boolean | undefined;
|
|
2124
2124
|
is_owner?: boolean | undefined;
|
|
2125
2125
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2132,6 +2132,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2132
2132
|
}, {
|
|
2133
2133
|
name: string;
|
|
2134
2134
|
id: string;
|
|
2135
|
+
color?: string | undefined;
|
|
2136
|
+
team_id?: string | undefined;
|
|
2137
|
+
deleted?: boolean | undefined;
|
|
2138
|
+
real_name?: string | undefined;
|
|
2139
|
+
tz?: string | undefined;
|
|
2140
|
+
tz_label?: string | undefined;
|
|
2141
|
+
tz_offset?: number | undefined;
|
|
2135
2142
|
profile?: {
|
|
2136
2143
|
title?: string | undefined;
|
|
2137
2144
|
email?: string | undefined;
|
|
@@ -2158,13 +2165,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2158
2165
|
image_512?: string | undefined;
|
|
2159
2166
|
image_1024?: string | undefined;
|
|
2160
2167
|
} | undefined;
|
|
2161
|
-
color?: string | undefined;
|
|
2162
|
-
team_id?: string | undefined;
|
|
2163
|
-
deleted?: boolean | undefined;
|
|
2164
|
-
real_name?: string | undefined;
|
|
2165
|
-
tz?: string | undefined;
|
|
2166
|
-
tz_label?: string | undefined;
|
|
2167
|
-
tz_offset?: number | undefined;
|
|
2168
2168
|
is_admin?: boolean | undefined;
|
|
2169
2169
|
is_owner?: boolean | undefined;
|
|
2170
2170
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2195,6 +2195,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2195
2195
|
members?: {
|
|
2196
2196
|
name: string;
|
|
2197
2197
|
id: string;
|
|
2198
|
+
color?: string | undefined;
|
|
2199
|
+
team_id?: string | undefined;
|
|
2200
|
+
deleted?: boolean | undefined;
|
|
2201
|
+
real_name?: string | undefined;
|
|
2202
|
+
tz?: string | undefined;
|
|
2203
|
+
tz_label?: string | undefined;
|
|
2204
|
+
tz_offset?: number | undefined;
|
|
2198
2205
|
profile?: {
|
|
2199
2206
|
title?: string | undefined;
|
|
2200
2207
|
email?: string | undefined;
|
|
@@ -2221,13 +2228,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2221
2228
|
image_512?: string | undefined;
|
|
2222
2229
|
image_1024?: string | undefined;
|
|
2223
2230
|
} | undefined;
|
|
2224
|
-
color?: string | undefined;
|
|
2225
|
-
team_id?: string | undefined;
|
|
2226
|
-
deleted?: boolean | undefined;
|
|
2227
|
-
real_name?: string | undefined;
|
|
2228
|
-
tz?: string | undefined;
|
|
2229
|
-
tz_label?: string | undefined;
|
|
2230
|
-
tz_offset?: number | undefined;
|
|
2231
2231
|
is_admin?: boolean | undefined;
|
|
2232
2232
|
is_owner?: boolean | undefined;
|
|
2233
2233
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2249,6 +2249,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2249
2249
|
members?: {
|
|
2250
2250
|
name: string;
|
|
2251
2251
|
id: string;
|
|
2252
|
+
color?: string | undefined;
|
|
2253
|
+
team_id?: string | undefined;
|
|
2254
|
+
deleted?: boolean | undefined;
|
|
2255
|
+
real_name?: string | undefined;
|
|
2256
|
+
tz?: string | undefined;
|
|
2257
|
+
tz_label?: string | undefined;
|
|
2258
|
+
tz_offset?: number | undefined;
|
|
2252
2259
|
profile?: {
|
|
2253
2260
|
title?: string | undefined;
|
|
2254
2261
|
email?: string | undefined;
|
|
@@ -2275,13 +2282,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2275
2282
|
image_512?: string | undefined;
|
|
2276
2283
|
image_1024?: string | undefined;
|
|
2277
2284
|
} | undefined;
|
|
2278
|
-
color?: string | undefined;
|
|
2279
|
-
team_id?: string | undefined;
|
|
2280
|
-
deleted?: boolean | undefined;
|
|
2281
|
-
real_name?: string | undefined;
|
|
2282
|
-
tz?: string | undefined;
|
|
2283
|
-
tz_label?: string | undefined;
|
|
2284
|
-
tz_offset?: number | undefined;
|
|
2285
2285
|
is_admin?: boolean | undefined;
|
|
2286
2286
|
is_owner?: boolean | undefined;
|
|
2287
2287
|
is_primary_owner?: boolean | undefined;
|
|
@@ -3748,18 +3748,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3748
3748
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3749
3749
|
}, "strip", z.ZodTypeAny, {
|
|
3750
3750
|
operation: "list_channels";
|
|
3751
|
-
limit: number;
|
|
3752
3751
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
3753
3752
|
exclude_archived: boolean;
|
|
3753
|
+
limit: number;
|
|
3754
3754
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3755
3755
|
cursor?: string | undefined;
|
|
3756
3756
|
}, {
|
|
3757
3757
|
operation: "list_channels";
|
|
3758
3758
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3759
|
-
limit?: number | undefined;
|
|
3760
|
-
cursor?: string | undefined;
|
|
3761
3759
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
3762
3760
|
exclude_archived?: boolean | undefined;
|
|
3761
|
+
limit?: number | undefined;
|
|
3762
|
+
cursor?: string | undefined;
|
|
3763
3763
|
}>, z.ZodObject<{
|
|
3764
3764
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
3765
3765
|
channel: z.ZodString;
|
|
@@ -3820,8 +3820,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3820
3820
|
}, "strip", z.ZodTypeAny, {
|
|
3821
3821
|
operation: "get_conversation_history";
|
|
3822
3822
|
inclusive: boolean;
|
|
3823
|
-
limit: number;
|
|
3824
3823
|
channel: string;
|
|
3824
|
+
limit: number;
|
|
3825
3825
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3826
3826
|
cursor?: string | undefined;
|
|
3827
3827
|
latest?: string | undefined;
|
|
@@ -3848,9 +3848,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3848
3848
|
}, "strip", z.ZodTypeAny, {
|
|
3849
3849
|
operation: "get_thread_replies";
|
|
3850
3850
|
inclusive: boolean;
|
|
3851
|
-
limit: number;
|
|
3852
3851
|
ts: string;
|
|
3853
3852
|
channel: string;
|
|
3853
|
+
limit: number;
|
|
3854
3854
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3855
3855
|
cursor?: string | undefined;
|
|
3856
3856
|
latest?: string | undefined;
|
|
@@ -5186,6 +5186,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5186
5186
|
}, "strip", z.ZodTypeAny, {
|
|
5187
5187
|
name: string;
|
|
5188
5188
|
id: string;
|
|
5189
|
+
color?: string | undefined;
|
|
5190
|
+
team_id?: string | undefined;
|
|
5191
|
+
deleted?: boolean | undefined;
|
|
5192
|
+
real_name?: string | undefined;
|
|
5193
|
+
tz?: string | undefined;
|
|
5194
|
+
tz_label?: string | undefined;
|
|
5195
|
+
tz_offset?: number | undefined;
|
|
5189
5196
|
profile?: {
|
|
5190
5197
|
title?: string | undefined;
|
|
5191
5198
|
email?: string | undefined;
|
|
@@ -5212,13 +5219,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5212
5219
|
image_512?: string | undefined;
|
|
5213
5220
|
image_1024?: string | undefined;
|
|
5214
5221
|
} | undefined;
|
|
5215
|
-
color?: string | undefined;
|
|
5216
|
-
team_id?: string | undefined;
|
|
5217
|
-
deleted?: boolean | undefined;
|
|
5218
|
-
real_name?: string | undefined;
|
|
5219
|
-
tz?: string | undefined;
|
|
5220
|
-
tz_label?: string | undefined;
|
|
5221
|
-
tz_offset?: number | undefined;
|
|
5222
5222
|
is_admin?: boolean | undefined;
|
|
5223
5223
|
is_owner?: boolean | undefined;
|
|
5224
5224
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5231,6 +5231,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5231
5231
|
}, {
|
|
5232
5232
|
name: string;
|
|
5233
5233
|
id: string;
|
|
5234
|
+
color?: string | undefined;
|
|
5235
|
+
team_id?: string | undefined;
|
|
5236
|
+
deleted?: boolean | undefined;
|
|
5237
|
+
real_name?: string | undefined;
|
|
5238
|
+
tz?: string | undefined;
|
|
5239
|
+
tz_label?: string | undefined;
|
|
5240
|
+
tz_offset?: number | undefined;
|
|
5234
5241
|
profile?: {
|
|
5235
5242
|
title?: string | undefined;
|
|
5236
5243
|
email?: string | undefined;
|
|
@@ -5257,13 +5264,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5257
5264
|
image_512?: string | undefined;
|
|
5258
5265
|
image_1024?: string | undefined;
|
|
5259
5266
|
} | undefined;
|
|
5260
|
-
color?: string | undefined;
|
|
5261
|
-
team_id?: string | undefined;
|
|
5262
|
-
deleted?: boolean | undefined;
|
|
5263
|
-
real_name?: string | undefined;
|
|
5264
|
-
tz?: string | undefined;
|
|
5265
|
-
tz_label?: string | undefined;
|
|
5266
|
-
tz_offset?: number | undefined;
|
|
5267
5267
|
is_admin?: boolean | undefined;
|
|
5268
5268
|
is_owner?: boolean | undefined;
|
|
5269
5269
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5284,6 +5284,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5284
5284
|
user?: {
|
|
5285
5285
|
name: string;
|
|
5286
5286
|
id: string;
|
|
5287
|
+
color?: string | undefined;
|
|
5288
|
+
team_id?: string | undefined;
|
|
5289
|
+
deleted?: boolean | undefined;
|
|
5290
|
+
real_name?: string | undefined;
|
|
5291
|
+
tz?: string | undefined;
|
|
5292
|
+
tz_label?: string | undefined;
|
|
5293
|
+
tz_offset?: number | undefined;
|
|
5287
5294
|
profile?: {
|
|
5288
5295
|
title?: string | undefined;
|
|
5289
5296
|
email?: string | undefined;
|
|
@@ -5310,13 +5317,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5310
5317
|
image_512?: string | undefined;
|
|
5311
5318
|
image_1024?: string | undefined;
|
|
5312
5319
|
} | undefined;
|
|
5313
|
-
color?: string | undefined;
|
|
5314
|
-
team_id?: string | undefined;
|
|
5315
|
-
deleted?: boolean | undefined;
|
|
5316
|
-
real_name?: string | undefined;
|
|
5317
|
-
tz?: string | undefined;
|
|
5318
|
-
tz_label?: string | undefined;
|
|
5319
|
-
tz_offset?: number | undefined;
|
|
5320
5320
|
is_admin?: boolean | undefined;
|
|
5321
5321
|
is_owner?: boolean | undefined;
|
|
5322
5322
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5335,6 +5335,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5335
5335
|
user?: {
|
|
5336
5336
|
name: string;
|
|
5337
5337
|
id: string;
|
|
5338
|
+
color?: string | undefined;
|
|
5339
|
+
team_id?: string | undefined;
|
|
5340
|
+
deleted?: boolean | undefined;
|
|
5341
|
+
real_name?: string | undefined;
|
|
5342
|
+
tz?: string | undefined;
|
|
5343
|
+
tz_label?: string | undefined;
|
|
5344
|
+
tz_offset?: number | undefined;
|
|
5338
5345
|
profile?: {
|
|
5339
5346
|
title?: string | undefined;
|
|
5340
5347
|
email?: string | undefined;
|
|
@@ -5361,13 +5368,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5361
5368
|
image_512?: string | undefined;
|
|
5362
5369
|
image_1024?: string | undefined;
|
|
5363
5370
|
} | undefined;
|
|
5364
|
-
color?: string | undefined;
|
|
5365
|
-
team_id?: string | undefined;
|
|
5366
|
-
deleted?: boolean | undefined;
|
|
5367
|
-
real_name?: string | undefined;
|
|
5368
|
-
tz?: string | undefined;
|
|
5369
|
-
tz_label?: string | undefined;
|
|
5370
|
-
tz_offset?: number | undefined;
|
|
5371
5371
|
is_admin?: boolean | undefined;
|
|
5372
5372
|
is_owner?: boolean | undefined;
|
|
5373
5373
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5479,6 +5479,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5479
5479
|
}, "strip", z.ZodTypeAny, {
|
|
5480
5480
|
name: string;
|
|
5481
5481
|
id: string;
|
|
5482
|
+
color?: string | undefined;
|
|
5483
|
+
team_id?: string | undefined;
|
|
5484
|
+
deleted?: boolean | undefined;
|
|
5485
|
+
real_name?: string | undefined;
|
|
5486
|
+
tz?: string | undefined;
|
|
5487
|
+
tz_label?: string | undefined;
|
|
5488
|
+
tz_offset?: number | undefined;
|
|
5482
5489
|
profile?: {
|
|
5483
5490
|
title?: string | undefined;
|
|
5484
5491
|
email?: string | undefined;
|
|
@@ -5505,13 +5512,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5505
5512
|
image_512?: string | undefined;
|
|
5506
5513
|
image_1024?: string | undefined;
|
|
5507
5514
|
} | undefined;
|
|
5508
|
-
color?: string | undefined;
|
|
5509
|
-
team_id?: string | undefined;
|
|
5510
|
-
deleted?: boolean | undefined;
|
|
5511
|
-
real_name?: string | undefined;
|
|
5512
|
-
tz?: string | undefined;
|
|
5513
|
-
tz_label?: string | undefined;
|
|
5514
|
-
tz_offset?: number | undefined;
|
|
5515
5515
|
is_admin?: boolean | undefined;
|
|
5516
5516
|
is_owner?: boolean | undefined;
|
|
5517
5517
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5524,6 +5524,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5524
5524
|
}, {
|
|
5525
5525
|
name: string;
|
|
5526
5526
|
id: string;
|
|
5527
|
+
color?: string | undefined;
|
|
5528
|
+
team_id?: string | undefined;
|
|
5529
|
+
deleted?: boolean | undefined;
|
|
5530
|
+
real_name?: string | undefined;
|
|
5531
|
+
tz?: string | undefined;
|
|
5532
|
+
tz_label?: string | undefined;
|
|
5533
|
+
tz_offset?: number | undefined;
|
|
5527
5534
|
profile?: {
|
|
5528
5535
|
title?: string | undefined;
|
|
5529
5536
|
email?: string | undefined;
|
|
@@ -5550,13 +5557,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5550
5557
|
image_512?: string | undefined;
|
|
5551
5558
|
image_1024?: string | undefined;
|
|
5552
5559
|
} | undefined;
|
|
5553
|
-
color?: string | undefined;
|
|
5554
|
-
team_id?: string | undefined;
|
|
5555
|
-
deleted?: boolean | undefined;
|
|
5556
|
-
real_name?: string | undefined;
|
|
5557
|
-
tz?: string | undefined;
|
|
5558
|
-
tz_label?: string | undefined;
|
|
5559
|
-
tz_offset?: number | undefined;
|
|
5560
5560
|
is_admin?: boolean | undefined;
|
|
5561
5561
|
is_owner?: boolean | undefined;
|
|
5562
5562
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5587,6 +5587,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5587
5587
|
members?: {
|
|
5588
5588
|
name: string;
|
|
5589
5589
|
id: string;
|
|
5590
|
+
color?: string | undefined;
|
|
5591
|
+
team_id?: string | undefined;
|
|
5592
|
+
deleted?: boolean | undefined;
|
|
5593
|
+
real_name?: string | undefined;
|
|
5594
|
+
tz?: string | undefined;
|
|
5595
|
+
tz_label?: string | undefined;
|
|
5596
|
+
tz_offset?: number | undefined;
|
|
5590
5597
|
profile?: {
|
|
5591
5598
|
title?: string | undefined;
|
|
5592
5599
|
email?: string | undefined;
|
|
@@ -5613,13 +5620,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5613
5620
|
image_512?: string | undefined;
|
|
5614
5621
|
image_1024?: string | undefined;
|
|
5615
5622
|
} | undefined;
|
|
5616
|
-
color?: string | undefined;
|
|
5617
|
-
team_id?: string | undefined;
|
|
5618
|
-
deleted?: boolean | undefined;
|
|
5619
|
-
real_name?: string | undefined;
|
|
5620
|
-
tz?: string | undefined;
|
|
5621
|
-
tz_label?: string | undefined;
|
|
5622
|
-
tz_offset?: number | undefined;
|
|
5623
5623
|
is_admin?: boolean | undefined;
|
|
5624
5624
|
is_owner?: boolean | undefined;
|
|
5625
5625
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5641,6 +5641,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5641
5641
|
members?: {
|
|
5642
5642
|
name: string;
|
|
5643
5643
|
id: string;
|
|
5644
|
+
color?: string | undefined;
|
|
5645
|
+
team_id?: string | undefined;
|
|
5646
|
+
deleted?: boolean | undefined;
|
|
5647
|
+
real_name?: string | undefined;
|
|
5648
|
+
tz?: string | undefined;
|
|
5649
|
+
tz_label?: string | undefined;
|
|
5650
|
+
tz_offset?: number | undefined;
|
|
5644
5651
|
profile?: {
|
|
5645
5652
|
title?: string | undefined;
|
|
5646
5653
|
email?: string | undefined;
|
|
@@ -5667,13 +5674,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5667
5674
|
image_512?: string | undefined;
|
|
5668
5675
|
image_1024?: string | undefined;
|
|
5669
5676
|
} | undefined;
|
|
5670
|
-
color?: string | undefined;
|
|
5671
|
-
team_id?: string | undefined;
|
|
5672
|
-
deleted?: boolean | undefined;
|
|
5673
|
-
real_name?: string | undefined;
|
|
5674
|
-
tz?: string | undefined;
|
|
5675
|
-
tz_label?: string | undefined;
|
|
5676
|
-
tz_offset?: number | undefined;
|
|
5677
5677
|
is_admin?: boolean | undefined;
|
|
5678
5678
|
is_owner?: boolean | undefined;
|
|
5679
5679
|
is_primary_owner?: boolean | undefined;
|
|
@@ -819,8 +819,8 @@ declare const TelegramParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
819
819
|
}, {
|
|
820
820
|
operation: "get_updates";
|
|
821
821
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
822
|
-
limit?: number | undefined;
|
|
823
822
|
timeout?: number | undefined;
|
|
823
|
+
limit?: number | undefined;
|
|
824
824
|
offset?: number | undefined;
|
|
825
825
|
allowed_updates?: string[] | undefined;
|
|
826
826
|
}>, z.ZodObject<{
|
|
@@ -4680,8 +4680,8 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
|
|
|
4680
4680
|
}, {
|
|
4681
4681
|
operation: "get_updates";
|
|
4682
4682
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4683
|
-
limit?: number | undefined;
|
|
4684
4683
|
timeout?: number | undefined;
|
|
4684
|
+
limit?: number | undefined;
|
|
4685
4685
|
offset?: number | undefined;
|
|
4686
4686
|
allowed_updates?: string[] | undefined;
|
|
4687
4687
|
}>, z.ZodObject<{
|
|
@@ -68,10 +68,10 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
68
68
|
name: string | null;
|
|
69
69
|
role: "founder" | "cxo" | "decision_maker";
|
|
70
70
|
location: string | null;
|
|
71
|
+
summary: string | null;
|
|
72
|
+
headline: string | null;
|
|
71
73
|
emails: string[] | null;
|
|
72
74
|
linkedinUrl: string | null;
|
|
73
|
-
headline: string | null;
|
|
74
|
-
summary: string | null;
|
|
75
75
|
languages: string[] | null;
|
|
76
76
|
skills: string[] | null;
|
|
77
77
|
education: {
|
|
@@ -99,10 +99,10 @@ declare const ContactSchema: z.ZodObject<{
|
|
|
99
99
|
name: string | null;
|
|
100
100
|
role: "founder" | "cxo" | "decision_maker";
|
|
101
101
|
location: string | null;
|
|
102
|
+
summary: string | null;
|
|
103
|
+
headline: string | null;
|
|
102
104
|
emails: string[] | null;
|
|
103
105
|
linkedinUrl: string | null;
|
|
104
|
-
headline: string | null;
|
|
105
|
-
summary: string | null;
|
|
106
106
|
languages: string[] | null;
|
|
107
107
|
skills: string[] | null;
|
|
108
108
|
education: {
|
|
@@ -206,10 +206,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
206
206
|
name: string | null;
|
|
207
207
|
role: "founder" | "cxo" | "decision_maker";
|
|
208
208
|
location: string | null;
|
|
209
|
+
summary: string | null;
|
|
210
|
+
headline: string | null;
|
|
209
211
|
emails: string[] | null;
|
|
210
212
|
linkedinUrl: string | null;
|
|
211
|
-
headline: string | null;
|
|
212
|
-
summary: string | null;
|
|
213
213
|
languages: string[] | null;
|
|
214
214
|
skills: string[] | null;
|
|
215
215
|
education: {
|
|
@@ -237,10 +237,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
237
237
|
name: string | null;
|
|
238
238
|
role: "founder" | "cxo" | "decision_maker";
|
|
239
239
|
location: string | null;
|
|
240
|
+
summary: string | null;
|
|
241
|
+
headline: string | null;
|
|
240
242
|
emails: string[] | null;
|
|
241
243
|
linkedinUrl: string | null;
|
|
242
|
-
headline: string | null;
|
|
243
|
-
summary: string | null;
|
|
244
244
|
languages: string[] | null;
|
|
245
245
|
skills: string[] | null;
|
|
246
246
|
education: {
|
|
@@ -325,10 +325,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
325
325
|
name: string | null;
|
|
326
326
|
role: "founder" | "cxo" | "decision_maker";
|
|
327
327
|
location: string | null;
|
|
328
|
+
summary: string | null;
|
|
329
|
+
headline: string | null;
|
|
328
330
|
emails: string[] | null;
|
|
329
331
|
linkedinUrl: string | null;
|
|
330
|
-
headline: string | null;
|
|
331
|
-
summary: string | null;
|
|
332
332
|
languages: string[] | null;
|
|
333
333
|
skills: string[] | null;
|
|
334
334
|
education: {
|
|
@@ -374,10 +374,10 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
|
|
|
374
374
|
name: string | null;
|
|
375
375
|
role: "founder" | "cxo" | "decision_maker";
|
|
376
376
|
location: string | null;
|
|
377
|
+
summary: string | null;
|
|
378
|
+
headline: string | null;
|
|
377
379
|
emails: string[] | null;
|
|
378
380
|
linkedinUrl: string | null;
|
|
379
|
-
headline: string | null;
|
|
380
|
-
summary: string | null;
|
|
381
381
|
languages: string[] | null;
|
|
382
382
|
skills: string[] | null;
|
|
383
383
|
education: {
|
|
@@ -507,10 +507,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
507
507
|
name: string | null;
|
|
508
508
|
role: "founder" | "cxo" | "decision_maker";
|
|
509
509
|
location: string | null;
|
|
510
|
+
summary: string | null;
|
|
511
|
+
headline: string | null;
|
|
510
512
|
emails: string[] | null;
|
|
511
513
|
linkedinUrl: string | null;
|
|
512
|
-
headline: string | null;
|
|
513
|
-
summary: string | null;
|
|
514
514
|
languages: string[] | null;
|
|
515
515
|
skills: string[] | null;
|
|
516
516
|
education: {
|
|
@@ -538,10 +538,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
538
538
|
name: string | null;
|
|
539
539
|
role: "founder" | "cxo" | "decision_maker";
|
|
540
540
|
location: string | null;
|
|
541
|
+
summary: string | null;
|
|
542
|
+
headline: string | null;
|
|
541
543
|
emails: string[] | null;
|
|
542
544
|
linkedinUrl: string | null;
|
|
543
|
-
headline: string | null;
|
|
544
|
-
summary: string | null;
|
|
545
545
|
languages: string[] | null;
|
|
546
546
|
skills: string[] | null;
|
|
547
547
|
education: {
|
|
@@ -626,10 +626,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
626
626
|
name: string | null;
|
|
627
627
|
role: "founder" | "cxo" | "decision_maker";
|
|
628
628
|
location: string | null;
|
|
629
|
+
summary: string | null;
|
|
630
|
+
headline: string | null;
|
|
629
631
|
emails: string[] | null;
|
|
630
632
|
linkedinUrl: string | null;
|
|
631
|
-
headline: string | null;
|
|
632
|
-
summary: string | null;
|
|
633
633
|
languages: string[] | null;
|
|
634
634
|
skills: string[] | null;
|
|
635
635
|
education: {
|
|
@@ -675,10 +675,10 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
|
|
|
675
675
|
name: string | null;
|
|
676
676
|
role: "founder" | "cxo" | "decision_maker";
|
|
677
677
|
location: string | null;
|
|
678
|
+
summary: string | null;
|
|
679
|
+
headline: string | null;
|
|
678
680
|
emails: string[] | null;
|
|
679
681
|
linkedinUrl: string | null;
|
|
680
|
-
headline: string | null;
|
|
681
|
-
summary: string | null;
|
|
682
682
|
languages: string[] | null;
|
|
683
683
|
skills: string[] | null;
|
|
684
684
|
education: {
|