@bubblelab/bubble-core 0.1.51 → 0.1.53
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 +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +272 -2
- package/package.json +2 -2
|
@@ -33,11 +33,11 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
33
33
|
name: z.ZodString;
|
|
34
34
|
value: z.ZodString;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
value: string;
|
|
37
36
|
name: string;
|
|
38
|
-
}, {
|
|
39
37
|
value: string;
|
|
38
|
+
}, {
|
|
40
39
|
name: string;
|
|
40
|
+
value: string;
|
|
41
41
|
}>, "many">>;
|
|
42
42
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
43
43
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -48,8 +48,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
48
48
|
subject: string;
|
|
49
49
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
50
50
|
tags?: {
|
|
51
|
-
value: string;
|
|
52
51
|
name: string;
|
|
52
|
+
value: string;
|
|
53
53
|
}[] | undefined;
|
|
54
54
|
headers?: Record<string, string> | undefined;
|
|
55
55
|
text?: string | undefined;
|
|
@@ -70,8 +70,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
70
70
|
subject: string;
|
|
71
71
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
72
72
|
tags?: {
|
|
73
|
-
value: string;
|
|
74
73
|
name: string;
|
|
74
|
+
value: string;
|
|
75
75
|
}[] | undefined;
|
|
76
76
|
headers?: Record<string, string> | undefined;
|
|
77
77
|
text?: string | undefined;
|
|
@@ -180,11 +180,11 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
180
180
|
name: z.ZodString;
|
|
181
181
|
value: z.ZodString;
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
value: string;
|
|
184
183
|
name: string;
|
|
185
|
-
}, {
|
|
186
184
|
value: string;
|
|
185
|
+
}, {
|
|
187
186
|
name: string;
|
|
187
|
+
value: string;
|
|
188
188
|
}>, "many">>;
|
|
189
189
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
190
190
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -195,8 +195,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
195
195
|
subject: string;
|
|
196
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
197
|
tags?: {
|
|
198
|
-
value: string;
|
|
199
198
|
name: string;
|
|
199
|
+
value: string;
|
|
200
200
|
}[] | undefined;
|
|
201
201
|
headers?: Record<string, string> | undefined;
|
|
202
202
|
text?: string | undefined;
|
|
@@ -217,8 +217,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
|
|
|
217
217
|
subject: string;
|
|
218
218
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
219
219
|
tags?: {
|
|
220
|
-
value: string;
|
|
221
220
|
name: string;
|
|
221
|
+
value: string;
|
|
222
222
|
}[] | undefined;
|
|
223
223
|
headers?: Record<string, string> | undefined;
|
|
224
224
|
text?: string | undefined;
|
|
@@ -355,17 +355,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
355
355
|
cursor: z.ZodOptional<z.ZodString>;
|
|
356
356
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
|
-
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
359
358
|
operation: "list_channels";
|
|
360
359
|
limit: number;
|
|
360
|
+
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
361
361
|
exclude_archived: boolean;
|
|
362
362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
363
363
|
cursor?: string | undefined;
|
|
364
364
|
}, {
|
|
365
365
|
operation: "list_channels";
|
|
366
|
-
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
367
366
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
368
367
|
limit?: number | undefined;
|
|
368
|
+
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
369
369
|
exclude_archived?: boolean | undefined;
|
|
370
370
|
cursor?: string | undefined;
|
|
371
371
|
}>, z.ZodObject<{
|
|
@@ -1732,8 +1732,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1732
1732
|
image_512: z.ZodOptional<z.ZodString>;
|
|
1733
1733
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
1734
1734
|
}, "strip", z.ZodTypeAny, {
|
|
1735
|
-
title?: string | undefined;
|
|
1736
1735
|
email?: string | undefined;
|
|
1736
|
+
title?: string | undefined;
|
|
1737
1737
|
fields?: Record<string, unknown> | undefined;
|
|
1738
1738
|
real_name?: string | undefined;
|
|
1739
1739
|
phone?: string | undefined;
|
|
@@ -1757,8 +1757,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1757
1757
|
image_512?: string | undefined;
|
|
1758
1758
|
image_1024?: string | undefined;
|
|
1759
1759
|
}, {
|
|
1760
|
-
title?: string | undefined;
|
|
1761
1760
|
email?: string | undefined;
|
|
1761
|
+
title?: string | undefined;
|
|
1762
1762
|
fields?: Record<string, unknown> | undefined;
|
|
1763
1763
|
real_name?: string | undefined;
|
|
1764
1764
|
phone?: string | undefined;
|
|
@@ -1802,8 +1802,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1802
1802
|
tz_label?: string | undefined;
|
|
1803
1803
|
tz_offset?: number | undefined;
|
|
1804
1804
|
profile?: {
|
|
1805
|
-
title?: string | undefined;
|
|
1806
1805
|
email?: string | undefined;
|
|
1806
|
+
title?: string | undefined;
|
|
1807
1807
|
fields?: Record<string, unknown> | undefined;
|
|
1808
1808
|
real_name?: string | undefined;
|
|
1809
1809
|
phone?: string | undefined;
|
|
@@ -1847,8 +1847,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1847
1847
|
tz_label?: string | undefined;
|
|
1848
1848
|
tz_offset?: number | undefined;
|
|
1849
1849
|
profile?: {
|
|
1850
|
-
title?: string | undefined;
|
|
1851
1850
|
email?: string | undefined;
|
|
1851
|
+
title?: string | undefined;
|
|
1852
1852
|
fields?: Record<string, unknown> | undefined;
|
|
1853
1853
|
real_name?: string | undefined;
|
|
1854
1854
|
phone?: string | undefined;
|
|
@@ -1900,8 +1900,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1900
1900
|
tz_label?: string | undefined;
|
|
1901
1901
|
tz_offset?: number | undefined;
|
|
1902
1902
|
profile?: {
|
|
1903
|
-
title?: string | undefined;
|
|
1904
1903
|
email?: string | undefined;
|
|
1904
|
+
title?: string | undefined;
|
|
1905
1905
|
fields?: Record<string, unknown> | undefined;
|
|
1906
1906
|
real_name?: string | undefined;
|
|
1907
1907
|
phone?: string | undefined;
|
|
@@ -1951,8 +1951,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1951
1951
|
tz_label?: string | undefined;
|
|
1952
1952
|
tz_offset?: number | undefined;
|
|
1953
1953
|
profile?: {
|
|
1954
|
-
title?: string | undefined;
|
|
1955
1954
|
email?: string | undefined;
|
|
1955
|
+
title?: string | undefined;
|
|
1956
1956
|
fields?: Record<string, unknown> | undefined;
|
|
1957
1957
|
real_name?: string | undefined;
|
|
1958
1958
|
phone?: string | undefined;
|
|
@@ -2025,8 +2025,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2025
2025
|
image_512: z.ZodOptional<z.ZodString>;
|
|
2026
2026
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
2027
2027
|
}, "strip", z.ZodTypeAny, {
|
|
2028
|
-
title?: string | undefined;
|
|
2029
2028
|
email?: string | undefined;
|
|
2029
|
+
title?: string | undefined;
|
|
2030
2030
|
fields?: Record<string, unknown> | undefined;
|
|
2031
2031
|
real_name?: string | undefined;
|
|
2032
2032
|
phone?: string | undefined;
|
|
@@ -2050,8 +2050,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2050
2050
|
image_512?: string | undefined;
|
|
2051
2051
|
image_1024?: string | undefined;
|
|
2052
2052
|
}, {
|
|
2053
|
-
title?: string | undefined;
|
|
2054
2053
|
email?: string | undefined;
|
|
2054
|
+
title?: string | undefined;
|
|
2055
2055
|
fields?: Record<string, unknown> | undefined;
|
|
2056
2056
|
real_name?: string | undefined;
|
|
2057
2057
|
phone?: string | undefined;
|
|
@@ -2095,8 +2095,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2095
2095
|
tz_label?: string | undefined;
|
|
2096
2096
|
tz_offset?: number | undefined;
|
|
2097
2097
|
profile?: {
|
|
2098
|
-
title?: string | undefined;
|
|
2099
2098
|
email?: string | undefined;
|
|
2099
|
+
title?: string | undefined;
|
|
2100
2100
|
fields?: Record<string, unknown> | undefined;
|
|
2101
2101
|
real_name?: string | undefined;
|
|
2102
2102
|
phone?: string | undefined;
|
|
@@ -2140,8 +2140,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2140
2140
|
tz_label?: string | undefined;
|
|
2141
2141
|
tz_offset?: number | undefined;
|
|
2142
2142
|
profile?: {
|
|
2143
|
-
title?: string | undefined;
|
|
2144
2143
|
email?: string | undefined;
|
|
2144
|
+
title?: string | undefined;
|
|
2145
2145
|
fields?: Record<string, unknown> | undefined;
|
|
2146
2146
|
real_name?: string | undefined;
|
|
2147
2147
|
phone?: string | undefined;
|
|
@@ -2203,8 +2203,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2203
2203
|
tz_label?: string | undefined;
|
|
2204
2204
|
tz_offset?: number | undefined;
|
|
2205
2205
|
profile?: {
|
|
2206
|
-
title?: string | undefined;
|
|
2207
2206
|
email?: string | undefined;
|
|
2207
|
+
title?: string | undefined;
|
|
2208
2208
|
fields?: Record<string, unknown> | undefined;
|
|
2209
2209
|
real_name?: string | undefined;
|
|
2210
2210
|
phone?: string | undefined;
|
|
@@ -2257,8 +2257,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2257
2257
|
tz_label?: string | undefined;
|
|
2258
2258
|
tz_offset?: number | undefined;
|
|
2259
2259
|
profile?: {
|
|
2260
|
-
title?: string | undefined;
|
|
2261
2260
|
email?: string | undefined;
|
|
2261
|
+
title?: string | undefined;
|
|
2262
2262
|
fields?: Record<string, unknown> | undefined;
|
|
2263
2263
|
real_name?: string | undefined;
|
|
2264
2264
|
phone?: string | undefined;
|
|
@@ -3747,17 +3747,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3747
3747
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3748
3748
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3749
3749
|
}, "strip", z.ZodTypeAny, {
|
|
3750
|
-
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
3751
3750
|
operation: "list_channels";
|
|
3752
3751
|
limit: number;
|
|
3752
|
+
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
3753
3753
|
exclude_archived: boolean;
|
|
3754
3754
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3755
3755
|
cursor?: string | undefined;
|
|
3756
3756
|
}, {
|
|
3757
3757
|
operation: "list_channels";
|
|
3758
|
-
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
3759
3758
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3760
3759
|
limit?: number | undefined;
|
|
3760
|
+
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
3761
3761
|
exclude_archived?: boolean | undefined;
|
|
3762
3762
|
cursor?: string | undefined;
|
|
3763
3763
|
}>, z.ZodObject<{
|
|
@@ -5124,8 +5124,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5124
5124
|
image_512: z.ZodOptional<z.ZodString>;
|
|
5125
5125
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5126
5126
|
}, "strip", z.ZodTypeAny, {
|
|
5127
|
-
title?: string | undefined;
|
|
5128
5127
|
email?: string | undefined;
|
|
5128
|
+
title?: string | undefined;
|
|
5129
5129
|
fields?: Record<string, unknown> | undefined;
|
|
5130
5130
|
real_name?: string | undefined;
|
|
5131
5131
|
phone?: string | undefined;
|
|
@@ -5149,8 +5149,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5149
5149
|
image_512?: string | undefined;
|
|
5150
5150
|
image_1024?: string | undefined;
|
|
5151
5151
|
}, {
|
|
5152
|
-
title?: string | undefined;
|
|
5153
5152
|
email?: string | undefined;
|
|
5153
|
+
title?: string | undefined;
|
|
5154
5154
|
fields?: Record<string, unknown> | undefined;
|
|
5155
5155
|
real_name?: string | undefined;
|
|
5156
5156
|
phone?: string | undefined;
|
|
@@ -5194,8 +5194,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5194
5194
|
tz_label?: string | undefined;
|
|
5195
5195
|
tz_offset?: number | undefined;
|
|
5196
5196
|
profile?: {
|
|
5197
|
-
title?: string | undefined;
|
|
5198
5197
|
email?: string | undefined;
|
|
5198
|
+
title?: string | undefined;
|
|
5199
5199
|
fields?: Record<string, unknown> | undefined;
|
|
5200
5200
|
real_name?: string | undefined;
|
|
5201
5201
|
phone?: string | undefined;
|
|
@@ -5239,8 +5239,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5239
5239
|
tz_label?: string | undefined;
|
|
5240
5240
|
tz_offset?: number | undefined;
|
|
5241
5241
|
profile?: {
|
|
5242
|
-
title?: string | undefined;
|
|
5243
5242
|
email?: string | undefined;
|
|
5243
|
+
title?: string | undefined;
|
|
5244
5244
|
fields?: Record<string, unknown> | undefined;
|
|
5245
5245
|
real_name?: string | undefined;
|
|
5246
5246
|
phone?: string | undefined;
|
|
@@ -5292,8 +5292,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5292
5292
|
tz_label?: string | undefined;
|
|
5293
5293
|
tz_offset?: number | undefined;
|
|
5294
5294
|
profile?: {
|
|
5295
|
-
title?: string | undefined;
|
|
5296
5295
|
email?: string | undefined;
|
|
5296
|
+
title?: string | undefined;
|
|
5297
5297
|
fields?: Record<string, unknown> | undefined;
|
|
5298
5298
|
real_name?: string | undefined;
|
|
5299
5299
|
phone?: string | undefined;
|
|
@@ -5343,8 +5343,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5343
5343
|
tz_label?: string | undefined;
|
|
5344
5344
|
tz_offset?: number | undefined;
|
|
5345
5345
|
profile?: {
|
|
5346
|
-
title?: string | undefined;
|
|
5347
5346
|
email?: string | undefined;
|
|
5347
|
+
title?: string | undefined;
|
|
5348
5348
|
fields?: Record<string, unknown> | undefined;
|
|
5349
5349
|
real_name?: string | undefined;
|
|
5350
5350
|
phone?: string | undefined;
|
|
@@ -5417,8 +5417,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5417
5417
|
image_512: z.ZodOptional<z.ZodString>;
|
|
5418
5418
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5419
5419
|
}, "strip", z.ZodTypeAny, {
|
|
5420
|
-
title?: string | undefined;
|
|
5421
5420
|
email?: string | undefined;
|
|
5421
|
+
title?: string | undefined;
|
|
5422
5422
|
fields?: Record<string, unknown> | undefined;
|
|
5423
5423
|
real_name?: string | undefined;
|
|
5424
5424
|
phone?: string | undefined;
|
|
@@ -5442,8 +5442,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5442
5442
|
image_512?: string | undefined;
|
|
5443
5443
|
image_1024?: string | undefined;
|
|
5444
5444
|
}, {
|
|
5445
|
-
title?: string | undefined;
|
|
5446
5445
|
email?: string | undefined;
|
|
5446
|
+
title?: string | undefined;
|
|
5447
5447
|
fields?: Record<string, unknown> | undefined;
|
|
5448
5448
|
real_name?: string | undefined;
|
|
5449
5449
|
phone?: string | undefined;
|
|
@@ -5487,8 +5487,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5487
5487
|
tz_label?: string | undefined;
|
|
5488
5488
|
tz_offset?: number | undefined;
|
|
5489
5489
|
profile?: {
|
|
5490
|
-
title?: string | undefined;
|
|
5491
5490
|
email?: string | undefined;
|
|
5491
|
+
title?: string | undefined;
|
|
5492
5492
|
fields?: Record<string, unknown> | undefined;
|
|
5493
5493
|
real_name?: string | undefined;
|
|
5494
5494
|
phone?: string | undefined;
|
|
@@ -5532,8 +5532,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5532
5532
|
tz_label?: string | undefined;
|
|
5533
5533
|
tz_offset?: number | undefined;
|
|
5534
5534
|
profile?: {
|
|
5535
|
-
title?: string | undefined;
|
|
5536
5535
|
email?: string | undefined;
|
|
5536
|
+
title?: string | undefined;
|
|
5537
5537
|
fields?: Record<string, unknown> | undefined;
|
|
5538
5538
|
real_name?: string | undefined;
|
|
5539
5539
|
phone?: string | undefined;
|
|
@@ -5595,8 +5595,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5595
5595
|
tz_label?: string | undefined;
|
|
5596
5596
|
tz_offset?: number | undefined;
|
|
5597
5597
|
profile?: {
|
|
5598
|
-
title?: string | undefined;
|
|
5599
5598
|
email?: string | undefined;
|
|
5599
|
+
title?: string | undefined;
|
|
5600
5600
|
fields?: Record<string, unknown> | undefined;
|
|
5601
5601
|
real_name?: string | undefined;
|
|
5602
5602
|
phone?: string | undefined;
|
|
@@ -5649,8 +5649,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5649
5649
|
tz_label?: string | undefined;
|
|
5650
5650
|
tz_offset?: number | undefined;
|
|
5651
5651
|
profile?: {
|
|
5652
|
-
title?: string | undefined;
|
|
5653
5652
|
email?: string | undefined;
|
|
5653
|
+
title?: string | undefined;
|
|
5654
5654
|
fields?: Record<string, unknown> | undefined;
|
|
5655
5655
|
real_name?: string | undefined;
|
|
5656
5656
|
phone?: string | undefined;
|