@bubblelab/bubble-core 0.1.66 → 0.1.67
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 +83 -83
- package/dist/bubbles/service-bubble/agi-inc.d.ts +88 -88
- package/dist/bubbles/service-bubble/ai-agent.d.ts +28 -16
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +18 -16
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +130 -130
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +138 -138
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +126 -126
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +755 -755
- package/dist/bubbles/service-bubble/followupboss.d.ts +140 -140
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +56 -56
- package/dist/bubbles/service-bubble/github.d.ts +160 -160
- package/dist/bubbles/service-bubble/gmail.d.ts +224 -224
- package/dist/bubbles/service-bubble/google-calendar.d.ts +218 -218
- package/dist/bubbles/service-bubble/google-drive.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +32 -32
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +16 -16
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1634 -1634
- package/dist/bubbles/service-bubble/postgresql.d.ts +16 -16
- package/dist/bubbles/service-bubble/resend.d.ts +28 -28
- package/dist/bubbles/service-bubble/slack/slack.d.ts +444 -444
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +103 -103
- package/dist/bubbles/service-bubble/telegram.d.ts +1562 -1562
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +13 -13
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +62 -62
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +294 -294
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +122 -122
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +72 -72
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +134 -134
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +40 -40
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +104 -104
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +11 -3
- package/package.json +2 -2
|
@@ -38,38 +38,38 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
38
38
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
|
-
text?: string | undefined;
|
|
42
|
-
image_url?: string | undefined;
|
|
43
41
|
fields?: {
|
|
44
42
|
value: string;
|
|
45
43
|
title: string;
|
|
46
44
|
short?: boolean | undefined;
|
|
47
45
|
}[] | undefined;
|
|
46
|
+
text?: string | undefined;
|
|
48
47
|
color?: string | undefined;
|
|
49
48
|
pretext?: string | undefined;
|
|
50
49
|
author_name?: string | undefined;
|
|
51
50
|
author_link?: string | undefined;
|
|
52
51
|
author_icon?: string | undefined;
|
|
53
52
|
title_link?: string | undefined;
|
|
53
|
+
image_url?: string | undefined;
|
|
54
54
|
thumb_url?: string | undefined;
|
|
55
55
|
footer?: string | undefined;
|
|
56
56
|
footer_icon?: string | undefined;
|
|
57
57
|
ts?: number | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
|
-
text?: string | undefined;
|
|
61
|
-
image_url?: string | undefined;
|
|
62
60
|
fields?: {
|
|
63
61
|
value: string;
|
|
64
62
|
title: string;
|
|
65
63
|
short?: boolean | undefined;
|
|
66
64
|
}[] | undefined;
|
|
65
|
+
text?: string | undefined;
|
|
67
66
|
color?: string | undefined;
|
|
68
67
|
pretext?: string | undefined;
|
|
69
68
|
author_name?: string | undefined;
|
|
70
69
|
author_link?: string | undefined;
|
|
71
70
|
author_icon?: string | undefined;
|
|
72
71
|
title_link?: string | undefined;
|
|
72
|
+
image_url?: string | undefined;
|
|
73
73
|
thumb_url?: string | undefined;
|
|
74
74
|
footer?: string | undefined;
|
|
75
75
|
footer_icon?: string | undefined;
|
|
@@ -101,14 +101,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
101
101
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
102
102
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
type: "
|
|
104
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
105
105
|
emoji?: boolean | undefined;
|
|
106
106
|
text?: string | undefined;
|
|
107
107
|
image_url?: string | undefined;
|
|
108
108
|
verbatim?: boolean | undefined;
|
|
109
109
|
alt_text?: string | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
type: "
|
|
111
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
112
112
|
emoji?: boolean | undefined;
|
|
113
113
|
text?: string | undefined;
|
|
114
114
|
image_url?: string | undefined;
|
|
@@ -141,14 +141,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
141
141
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
142
142
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
|
-
type: "
|
|
144
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
145
145
|
emoji?: boolean | undefined;
|
|
146
146
|
text?: string | undefined;
|
|
147
147
|
image_url?: string | undefined;
|
|
148
148
|
verbatim?: boolean | undefined;
|
|
149
149
|
alt_text?: string | undefined;
|
|
150
150
|
}, {
|
|
151
|
-
type: "
|
|
151
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
152
152
|
emoji?: boolean | undefined;
|
|
153
153
|
text?: string | undefined;
|
|
154
154
|
image_url?: string | undefined;
|
|
@@ -181,14 +181,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
181
181
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
182
182
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
type: "
|
|
184
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
185
185
|
emoji?: boolean | undefined;
|
|
186
186
|
text?: string | undefined;
|
|
187
187
|
image_url?: string | undefined;
|
|
188
188
|
verbatim?: boolean | undefined;
|
|
189
189
|
alt_text?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
type: "
|
|
191
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
192
192
|
emoji?: boolean | undefined;
|
|
193
193
|
text?: string | undefined;
|
|
194
194
|
image_url?: string | undefined;
|
|
@@ -202,9 +202,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
202
202
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
203
203
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
text: string;
|
|
206
205
|
operation: "send_message";
|
|
207
206
|
channel: string;
|
|
207
|
+
text: string;
|
|
208
208
|
reply_broadcast: boolean;
|
|
209
209
|
unfurl_links: boolean;
|
|
210
210
|
unfurl_media: boolean;
|
|
@@ -214,19 +214,19 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
214
214
|
icon_url?: string | undefined;
|
|
215
215
|
attachments?: {
|
|
216
216
|
title?: string | undefined;
|
|
217
|
-
text?: string | undefined;
|
|
218
|
-
image_url?: string | undefined;
|
|
219
217
|
fields?: {
|
|
220
218
|
value: string;
|
|
221
219
|
title: string;
|
|
222
220
|
short?: boolean | undefined;
|
|
223
221
|
}[] | undefined;
|
|
222
|
+
text?: string | undefined;
|
|
224
223
|
color?: string | undefined;
|
|
225
224
|
pretext?: string | undefined;
|
|
226
225
|
author_name?: string | undefined;
|
|
227
226
|
author_link?: string | undefined;
|
|
228
227
|
author_icon?: string | undefined;
|
|
229
228
|
title_link?: string | undefined;
|
|
229
|
+
image_url?: string | undefined;
|
|
230
230
|
thumb_url?: string | undefined;
|
|
231
231
|
footer?: string | undefined;
|
|
232
232
|
footer_icon?: string | undefined;
|
|
@@ -258,14 +258,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
258
258
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
259
259
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
|
-
type: "
|
|
261
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
262
262
|
emoji?: boolean | undefined;
|
|
263
263
|
text?: string | undefined;
|
|
264
264
|
image_url?: string | undefined;
|
|
265
265
|
verbatim?: boolean | undefined;
|
|
266
266
|
alt_text?: string | undefined;
|
|
267
267
|
}, {
|
|
268
|
-
type: "
|
|
268
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
269
269
|
emoji?: boolean | undefined;
|
|
270
270
|
text?: string | undefined;
|
|
271
271
|
image_url?: string | undefined;
|
|
@@ -275,28 +275,28 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
275
275
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
276
276
|
thread_ts?: string | undefined;
|
|
277
277
|
}, {
|
|
278
|
-
text: string;
|
|
279
278
|
operation: "send_message";
|
|
280
279
|
channel: string;
|
|
280
|
+
text: string;
|
|
281
281
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
282
282
|
username?: string | undefined;
|
|
283
283
|
icon_emoji?: string | undefined;
|
|
284
284
|
icon_url?: string | undefined;
|
|
285
285
|
attachments?: {
|
|
286
286
|
title?: string | undefined;
|
|
287
|
-
text?: string | undefined;
|
|
288
|
-
image_url?: string | undefined;
|
|
289
287
|
fields?: {
|
|
290
288
|
value: string;
|
|
291
289
|
title: string;
|
|
292
290
|
short?: boolean | undefined;
|
|
293
291
|
}[] | undefined;
|
|
292
|
+
text?: string | undefined;
|
|
294
293
|
color?: string | undefined;
|
|
295
294
|
pretext?: string | undefined;
|
|
296
295
|
author_name?: string | undefined;
|
|
297
296
|
author_link?: string | undefined;
|
|
298
297
|
author_icon?: string | undefined;
|
|
299
298
|
title_link?: string | undefined;
|
|
299
|
+
image_url?: string | undefined;
|
|
300
300
|
thumb_url?: string | undefined;
|
|
301
301
|
footer?: string | undefined;
|
|
302
302
|
footer_icon?: string | undefined;
|
|
@@ -328,14 +328,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
328
328
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
329
329
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
330
330
|
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
type: "
|
|
331
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
332
332
|
emoji?: boolean | undefined;
|
|
333
333
|
text?: string | undefined;
|
|
334
334
|
image_url?: string | undefined;
|
|
335
335
|
verbatim?: boolean | undefined;
|
|
336
336
|
alt_text?: string | undefined;
|
|
337
337
|
}, {
|
|
338
|
-
type: "
|
|
338
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
339
339
|
emoji?: boolean | undefined;
|
|
340
340
|
text?: string | undefined;
|
|
341
341
|
image_url?: string | undefined;
|
|
@@ -389,13 +389,13 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
389
389
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
390
390
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
|
-
user: string;
|
|
393
392
|
operation: "get_user_info";
|
|
394
393
|
include_locale: boolean;
|
|
394
|
+
user: string;
|
|
395
395
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
396
396
|
}, {
|
|
397
|
-
user: string;
|
|
398
397
|
operation: "get_user_info";
|
|
398
|
+
user: string;
|
|
399
399
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
400
400
|
include_locale?: boolean | undefined;
|
|
401
401
|
}>, z.ZodObject<{
|
|
@@ -455,18 +455,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
455
455
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
457
|
inclusive: boolean;
|
|
458
|
-
ts: string;
|
|
459
458
|
operation: "get_thread_replies";
|
|
460
459
|
channel: string;
|
|
460
|
+
ts: string;
|
|
461
461
|
limit: number;
|
|
462
462
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
463
463
|
cursor?: string | undefined;
|
|
464
464
|
latest?: string | undefined;
|
|
465
465
|
oldest?: string | undefined;
|
|
466
466
|
}, {
|
|
467
|
-
ts: string;
|
|
468
467
|
operation: "get_thread_replies";
|
|
469
468
|
channel: string;
|
|
469
|
+
ts: string;
|
|
470
470
|
inclusive?: boolean | undefined;
|
|
471
471
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
472
472
|
limit?: number | undefined;
|
|
@@ -507,38 +507,38 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
507
507
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
|
-
text?: string | undefined;
|
|
511
|
-
image_url?: string | undefined;
|
|
512
510
|
fields?: {
|
|
513
511
|
value: string;
|
|
514
512
|
title: string;
|
|
515
513
|
short?: boolean | undefined;
|
|
516
514
|
}[] | undefined;
|
|
515
|
+
text?: string | undefined;
|
|
517
516
|
color?: string | undefined;
|
|
518
517
|
pretext?: string | undefined;
|
|
519
518
|
author_name?: string | undefined;
|
|
520
519
|
author_link?: string | undefined;
|
|
521
520
|
author_icon?: string | undefined;
|
|
522
521
|
title_link?: string | undefined;
|
|
522
|
+
image_url?: string | undefined;
|
|
523
523
|
thumb_url?: string | undefined;
|
|
524
524
|
footer?: string | undefined;
|
|
525
525
|
footer_icon?: string | undefined;
|
|
526
526
|
ts?: number | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
|
-
text?: string | undefined;
|
|
530
|
-
image_url?: string | undefined;
|
|
531
529
|
fields?: {
|
|
532
530
|
value: string;
|
|
533
531
|
title: string;
|
|
534
532
|
short?: boolean | undefined;
|
|
535
533
|
}[] | undefined;
|
|
534
|
+
text?: string | undefined;
|
|
536
535
|
color?: string | undefined;
|
|
537
536
|
pretext?: string | undefined;
|
|
538
537
|
author_name?: string | undefined;
|
|
539
538
|
author_link?: string | undefined;
|
|
540
539
|
author_icon?: string | undefined;
|
|
541
540
|
title_link?: string | undefined;
|
|
541
|
+
image_url?: string | undefined;
|
|
542
542
|
thumb_url?: string | undefined;
|
|
543
543
|
footer?: string | undefined;
|
|
544
544
|
footer_icon?: string | undefined;
|
|
@@ -570,14 +570,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
570
570
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
571
571
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
|
-
type: "
|
|
573
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
574
574
|
emoji?: boolean | undefined;
|
|
575
575
|
text?: string | undefined;
|
|
576
576
|
image_url?: string | undefined;
|
|
577
577
|
verbatim?: boolean | undefined;
|
|
578
578
|
alt_text?: string | undefined;
|
|
579
579
|
}, {
|
|
580
|
-
type: "
|
|
580
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
581
581
|
emoji?: boolean | undefined;
|
|
582
582
|
text?: string | undefined;
|
|
583
583
|
image_url?: string | undefined;
|
|
@@ -610,14 +610,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
610
610
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
611
611
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
612
612
|
}, "strip", z.ZodTypeAny, {
|
|
613
|
-
type: "
|
|
613
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
614
614
|
emoji?: boolean | undefined;
|
|
615
615
|
text?: string | undefined;
|
|
616
616
|
image_url?: string | undefined;
|
|
617
617
|
verbatim?: boolean | undefined;
|
|
618
618
|
alt_text?: string | undefined;
|
|
619
619
|
}, {
|
|
620
|
-
type: "
|
|
620
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
621
621
|
emoji?: boolean | undefined;
|
|
622
622
|
text?: string | undefined;
|
|
623
623
|
image_url?: string | undefined;
|
|
@@ -650,14 +650,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
650
650
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
651
651
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
652
652
|
}, "strip", z.ZodTypeAny, {
|
|
653
|
-
type: "
|
|
653
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
654
654
|
emoji?: boolean | undefined;
|
|
655
655
|
text?: string | undefined;
|
|
656
656
|
image_url?: string | undefined;
|
|
657
657
|
verbatim?: boolean | undefined;
|
|
658
658
|
alt_text?: string | undefined;
|
|
659
659
|
}, {
|
|
660
|
-
type: "
|
|
660
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
661
661
|
emoji?: boolean | undefined;
|
|
662
662
|
text?: string | undefined;
|
|
663
663
|
image_url?: string | undefined;
|
|
@@ -667,26 +667,26 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
667
667
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
668
668
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
669
669
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
ts: string;
|
|
671
670
|
operation: "update_message";
|
|
672
671
|
channel: string;
|
|
672
|
+
ts: string;
|
|
673
673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
674
674
|
text?: string | undefined;
|
|
675
675
|
attachments?: {
|
|
676
676
|
title?: string | undefined;
|
|
677
|
-
text?: string | undefined;
|
|
678
|
-
image_url?: string | undefined;
|
|
679
677
|
fields?: {
|
|
680
678
|
value: string;
|
|
681
679
|
title: string;
|
|
682
680
|
short?: boolean | undefined;
|
|
683
681
|
}[] | undefined;
|
|
682
|
+
text?: string | undefined;
|
|
684
683
|
color?: string | undefined;
|
|
685
684
|
pretext?: string | undefined;
|
|
686
685
|
author_name?: string | undefined;
|
|
687
686
|
author_link?: string | undefined;
|
|
688
687
|
author_icon?: string | undefined;
|
|
689
688
|
title_link?: string | undefined;
|
|
689
|
+
image_url?: string | undefined;
|
|
690
690
|
thumb_url?: string | undefined;
|
|
691
691
|
footer?: string | undefined;
|
|
692
692
|
footer_icon?: string | undefined;
|
|
@@ -718,14 +718,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
718
718
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
719
719
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
|
-
type: "
|
|
721
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
722
722
|
emoji?: boolean | undefined;
|
|
723
723
|
text?: string | undefined;
|
|
724
724
|
image_url?: string | undefined;
|
|
725
725
|
verbatim?: boolean | undefined;
|
|
726
726
|
alt_text?: string | undefined;
|
|
727
727
|
}, {
|
|
728
|
-
type: "
|
|
728
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
729
729
|
emoji?: boolean | undefined;
|
|
730
730
|
text?: string | undefined;
|
|
731
731
|
image_url?: string | undefined;
|
|
@@ -734,26 +734,26 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
734
734
|
}>, "many">>;
|
|
735
735
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
736
736
|
}, {
|
|
737
|
-
ts: string;
|
|
738
737
|
operation: "update_message";
|
|
739
738
|
channel: string;
|
|
739
|
+
ts: string;
|
|
740
740
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
741
|
text?: string | undefined;
|
|
742
742
|
attachments?: {
|
|
743
743
|
title?: string | undefined;
|
|
744
|
-
text?: string | undefined;
|
|
745
|
-
image_url?: string | undefined;
|
|
746
744
|
fields?: {
|
|
747
745
|
value: string;
|
|
748
746
|
title: string;
|
|
749
747
|
short?: boolean | undefined;
|
|
750
748
|
}[] | undefined;
|
|
749
|
+
text?: string | undefined;
|
|
751
750
|
color?: string | undefined;
|
|
752
751
|
pretext?: string | undefined;
|
|
753
752
|
author_name?: string | undefined;
|
|
754
753
|
author_link?: string | undefined;
|
|
755
754
|
author_icon?: string | undefined;
|
|
756
755
|
title_link?: string | undefined;
|
|
756
|
+
image_url?: string | undefined;
|
|
757
757
|
thumb_url?: string | undefined;
|
|
758
758
|
footer?: string | undefined;
|
|
759
759
|
footer_icon?: string | undefined;
|
|
@@ -785,14 +785,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
785
785
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
786
786
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
type: "
|
|
788
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
789
789
|
emoji?: boolean | undefined;
|
|
790
790
|
text?: string | undefined;
|
|
791
791
|
image_url?: string | undefined;
|
|
792
792
|
verbatim?: boolean | undefined;
|
|
793
793
|
alt_text?: string | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
type: "
|
|
795
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
796
796
|
emoji?: boolean | undefined;
|
|
797
797
|
text?: string | undefined;
|
|
798
798
|
image_url?: string | undefined;
|
|
@@ -806,14 +806,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
806
806
|
ts: z.ZodString;
|
|
807
807
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
808
808
|
}, "strip", z.ZodTypeAny, {
|
|
809
|
-
ts: string;
|
|
810
809
|
operation: "delete_message";
|
|
811
810
|
channel: string;
|
|
811
|
+
ts: string;
|
|
812
812
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
813
813
|
}, {
|
|
814
|
-
ts: string;
|
|
815
814
|
operation: "delete_message";
|
|
816
815
|
channel: string;
|
|
816
|
+
ts: string;
|
|
817
817
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
818
818
|
}>, z.ZodObject<{
|
|
819
819
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -922,14 +922,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
922
922
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
923
923
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
924
924
|
}, "strip", z.ZodTypeAny, {
|
|
925
|
-
type: "
|
|
925
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
926
926
|
emoji?: boolean | undefined;
|
|
927
927
|
text?: string | undefined;
|
|
928
928
|
image_url?: string | undefined;
|
|
929
929
|
verbatim?: boolean | undefined;
|
|
930
930
|
alt_text?: string | undefined;
|
|
931
931
|
}, {
|
|
932
|
-
type: "
|
|
932
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
933
933
|
emoji?: boolean | undefined;
|
|
934
934
|
text?: string | undefined;
|
|
935
935
|
image_url?: string | undefined;
|
|
@@ -962,14 +962,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
962
962
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
963
963
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
type: "
|
|
965
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
966
966
|
emoji?: boolean | undefined;
|
|
967
967
|
text?: string | undefined;
|
|
968
968
|
image_url?: string | undefined;
|
|
969
969
|
verbatim?: boolean | undefined;
|
|
970
970
|
alt_text?: string | undefined;
|
|
971
971
|
}, {
|
|
972
|
-
type: "
|
|
972
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
973
973
|
emoji?: boolean | undefined;
|
|
974
974
|
text?: string | undefined;
|
|
975
975
|
image_url?: string | undefined;
|
|
@@ -1002,14 +1002,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1002
1002
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1003
1003
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1004
1004
|
}, "strip", z.ZodTypeAny, {
|
|
1005
|
-
type: "
|
|
1005
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1006
1006
|
emoji?: boolean | undefined;
|
|
1007
1007
|
text?: string | undefined;
|
|
1008
1008
|
image_url?: string | undefined;
|
|
1009
1009
|
verbatim?: boolean | undefined;
|
|
1010
1010
|
alt_text?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
|
-
type: "
|
|
1012
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1013
1013
|
emoji?: boolean | undefined;
|
|
1014
1014
|
text?: string | undefined;
|
|
1015
1015
|
image_url?: string | undefined;
|
|
@@ -1021,9 +1021,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1021
1021
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1022
1022
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1023
1023
|
}, "strip", z.ZodTypeAny, {
|
|
1024
|
-
text: string;
|
|
1025
1024
|
operation: "schedule_message";
|
|
1026
1025
|
channel: string;
|
|
1026
|
+
text: string;
|
|
1027
1027
|
unfurl_links: boolean;
|
|
1028
1028
|
unfurl_media: boolean;
|
|
1029
1029
|
post_at: number;
|
|
@@ -1054,14 +1054,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1054
1054
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1055
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1056
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1057
|
-
type: "
|
|
1057
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1058
1058
|
emoji?: boolean | undefined;
|
|
1059
1059
|
text?: string | undefined;
|
|
1060
1060
|
image_url?: string | undefined;
|
|
1061
1061
|
verbatim?: boolean | undefined;
|
|
1062
1062
|
alt_text?: string | undefined;
|
|
1063
1063
|
}, {
|
|
1064
|
-
type: "
|
|
1064
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1065
1065
|
emoji?: boolean | undefined;
|
|
1066
1066
|
text?: string | undefined;
|
|
1067
1067
|
image_url?: string | undefined;
|
|
@@ -1071,9 +1071,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1071
1071
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1072
1072
|
thread_ts?: string | undefined;
|
|
1073
1073
|
}, {
|
|
1074
|
-
text: string;
|
|
1075
1074
|
operation: "schedule_message";
|
|
1076
1075
|
channel: string;
|
|
1076
|
+
text: string;
|
|
1077
1077
|
post_at: number;
|
|
1078
1078
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1079
1079
|
blocks?: z.objectInputType<{
|
|
@@ -1102,14 +1102,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1102
1102
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1103
1103
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1105
|
-
type: "
|
|
1105
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1106
1106
|
emoji?: boolean | undefined;
|
|
1107
1107
|
text?: string | undefined;
|
|
1108
1108
|
image_url?: string | undefined;
|
|
1109
1109
|
verbatim?: boolean | undefined;
|
|
1110
1110
|
alt_text?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
|
-
type: "
|
|
1112
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1113
1113
|
emoji?: boolean | undefined;
|
|
1114
1114
|
text?: string | undefined;
|
|
1115
1115
|
image_url?: string | undefined;
|
|
@@ -1165,13 +1165,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1165
1165
|
}>, "many">>;
|
|
1166
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1167
|
type: string;
|
|
1168
|
-
user?: string | undefined;
|
|
1169
1168
|
text?: string | undefined;
|
|
1170
|
-
ts?: string | undefined;
|
|
1171
1169
|
username?: string | undefined;
|
|
1170
|
+
ts?: string | undefined;
|
|
1172
1171
|
attachments?: unknown[] | undefined;
|
|
1173
1172
|
blocks?: unknown[] | undefined;
|
|
1174
1173
|
thread_ts?: string | undefined;
|
|
1174
|
+
user?: string | undefined;
|
|
1175
1175
|
bot_id?: string | undefined;
|
|
1176
1176
|
bot_profile?: {
|
|
1177
1177
|
name?: string | undefined;
|
|
@@ -1190,13 +1190,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
}, {
|
|
1192
1192
|
type: string;
|
|
1193
|
-
user?: string | undefined;
|
|
1194
1193
|
text?: string | undefined;
|
|
1195
|
-
ts?: string | undefined;
|
|
1196
1194
|
username?: string | undefined;
|
|
1195
|
+
ts?: string | undefined;
|
|
1197
1196
|
attachments?: unknown[] | undefined;
|
|
1198
1197
|
blocks?: unknown[] | undefined;
|
|
1199
1198
|
thread_ts?: string | undefined;
|
|
1199
|
+
user?: string | undefined;
|
|
1200
1200
|
bot_id?: string | undefined;
|
|
1201
1201
|
bot_profile?: {
|
|
1202
1202
|
name?: string | undefined;
|
|
@@ -1217,19 +1217,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1217
1217
|
error: z.ZodString;
|
|
1218
1218
|
success: z.ZodBoolean;
|
|
1219
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1220
|
-
error: string;
|
|
1221
1220
|
success: boolean;
|
|
1221
|
+
error: string;
|
|
1222
1222
|
operation: "send_message";
|
|
1223
1223
|
ok: boolean;
|
|
1224
1224
|
message?: {
|
|
1225
1225
|
type: string;
|
|
1226
|
-
user?: string | undefined;
|
|
1227
1226
|
text?: string | undefined;
|
|
1228
|
-
ts?: string | undefined;
|
|
1229
1227
|
username?: string | undefined;
|
|
1228
|
+
ts?: string | undefined;
|
|
1230
1229
|
attachments?: unknown[] | undefined;
|
|
1231
1230
|
blocks?: unknown[] | undefined;
|
|
1232
1231
|
thread_ts?: string | undefined;
|
|
1232
|
+
user?: string | undefined;
|
|
1233
1233
|
bot_id?: string | undefined;
|
|
1234
1234
|
bot_profile?: {
|
|
1235
1235
|
name?: string | undefined;
|
|
@@ -1247,22 +1247,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1247
1247
|
count: number;
|
|
1248
1248
|
}[] | undefined;
|
|
1249
1249
|
} | undefined;
|
|
1250
|
-
ts?: string | undefined;
|
|
1251
1250
|
channel?: string | undefined;
|
|
1251
|
+
ts?: string | undefined;
|
|
1252
1252
|
}, {
|
|
1253
|
-
error: string;
|
|
1254
1253
|
success: boolean;
|
|
1254
|
+
error: string;
|
|
1255
1255
|
operation: "send_message";
|
|
1256
1256
|
ok: boolean;
|
|
1257
1257
|
message?: {
|
|
1258
1258
|
type: string;
|
|
1259
|
-
user?: string | undefined;
|
|
1260
1259
|
text?: string | undefined;
|
|
1261
|
-
ts?: string | undefined;
|
|
1262
1260
|
username?: string | undefined;
|
|
1261
|
+
ts?: string | undefined;
|
|
1263
1262
|
attachments?: unknown[] | undefined;
|
|
1264
1263
|
blocks?: unknown[] | undefined;
|
|
1265
1264
|
thread_ts?: string | undefined;
|
|
1265
|
+
user?: string | undefined;
|
|
1266
1266
|
bot_id?: string | undefined;
|
|
1267
1267
|
bot_profile?: {
|
|
1268
1268
|
name?: string | undefined;
|
|
@@ -1280,8 +1280,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1280
1280
|
count: number;
|
|
1281
1281
|
}[] | undefined;
|
|
1282
1282
|
} | undefined;
|
|
1283
|
-
ts?: string | undefined;
|
|
1284
1283
|
channel?: string | undefined;
|
|
1284
|
+
ts?: string | undefined;
|
|
1285
1285
|
}>, z.ZodObject<{
|
|
1286
1286
|
operation: z.ZodLiteral<"list_channels">;
|
|
1287
1287
|
ok: z.ZodBoolean;
|
|
@@ -1411,13 +1411,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1411
1411
|
error: z.ZodString;
|
|
1412
1412
|
success: z.ZodBoolean;
|
|
1413
1413
|
}, "strip", z.ZodTypeAny, {
|
|
1414
|
-
error: string;
|
|
1415
1414
|
success: boolean;
|
|
1415
|
+
error: string;
|
|
1416
1416
|
operation: "list_channels";
|
|
1417
1417
|
ok: boolean;
|
|
1418
|
-
response_metadata?: {
|
|
1419
|
-
next_cursor: string;
|
|
1420
|
-
} | undefined;
|
|
1421
1418
|
channels?: {
|
|
1422
1419
|
name: string;
|
|
1423
1420
|
id: string;
|
|
@@ -1452,14 +1449,14 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1452
1449
|
} | undefined;
|
|
1453
1450
|
num_members?: number | undefined;
|
|
1454
1451
|
}[] | undefined;
|
|
1452
|
+
response_metadata?: {
|
|
1453
|
+
next_cursor: string;
|
|
1454
|
+
} | undefined;
|
|
1455
1455
|
}, {
|
|
1456
|
-
error: string;
|
|
1457
1456
|
success: boolean;
|
|
1457
|
+
error: string;
|
|
1458
1458
|
operation: "list_channels";
|
|
1459
1459
|
ok: boolean;
|
|
1460
|
-
response_metadata?: {
|
|
1461
|
-
next_cursor: string;
|
|
1462
|
-
} | undefined;
|
|
1463
1460
|
channels?: {
|
|
1464
1461
|
name: string;
|
|
1465
1462
|
id: string;
|
|
@@ -1494,6 +1491,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1494
1491
|
} | undefined;
|
|
1495
1492
|
num_members?: number | undefined;
|
|
1496
1493
|
}[] | undefined;
|
|
1494
|
+
response_metadata?: {
|
|
1495
|
+
next_cursor: string;
|
|
1496
|
+
} | undefined;
|
|
1497
1497
|
}>, z.ZodObject<{
|
|
1498
1498
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
1499
1499
|
ok: z.ZodBoolean;
|
|
@@ -1616,8 +1616,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1616
1616
|
error: z.ZodString;
|
|
1617
1617
|
success: z.ZodBoolean;
|
|
1618
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1619
|
-
error: string;
|
|
1620
1619
|
success: boolean;
|
|
1620
|
+
error: string;
|
|
1621
1621
|
operation: "get_channel_info";
|
|
1622
1622
|
ok: boolean;
|
|
1623
1623
|
channel?: {
|
|
@@ -1655,8 +1655,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1655
1655
|
num_members?: number | undefined;
|
|
1656
1656
|
} | undefined;
|
|
1657
1657
|
}, {
|
|
1658
|
-
error: string;
|
|
1659
1658
|
success: boolean;
|
|
1659
|
+
error: string;
|
|
1660
1660
|
operation: "get_channel_info";
|
|
1661
1661
|
ok: boolean;
|
|
1662
1662
|
channel?: {
|
|
@@ -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;
|
|
@@ -1885,13 +1885,20 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1885
1885
|
error: z.ZodString;
|
|
1886
1886
|
success: z.ZodBoolean;
|
|
1887
1887
|
}, "strip", z.ZodTypeAny, {
|
|
1888
|
-
error: string;
|
|
1889
1888
|
success: boolean;
|
|
1889
|
+
error: string;
|
|
1890
1890
|
operation: "get_user_info";
|
|
1891
1891
|
ok: boolean;
|
|
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;
|
|
@@ -1936,13 +1936,20 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1936
1936
|
has_2fa?: boolean | undefined;
|
|
1937
1937
|
} | undefined;
|
|
1938
1938
|
}, {
|
|
1939
|
-
error: string;
|
|
1940
1939
|
success: boolean;
|
|
1940
|
+
error: string;
|
|
1941
1941
|
operation: "get_user_info";
|
|
1942
1942
|
ok: boolean;
|
|
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;
|
|
@@ -2185,8 +2185,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2185
2185
|
error: z.ZodString;
|
|
2186
2186
|
success: z.ZodBoolean;
|
|
2187
2187
|
}, "strip", z.ZodTypeAny, {
|
|
2188
|
-
error: string;
|
|
2189
2188
|
success: boolean;
|
|
2189
|
+
error: string;
|
|
2190
2190
|
operation: "list_users";
|
|
2191
2191
|
ok: boolean;
|
|
2192
2192
|
response_metadata?: {
|
|
@@ -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;
|
|
@@ -2239,8 +2239,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2239
2239
|
has_2fa?: boolean | undefined;
|
|
2240
2240
|
}[] | undefined;
|
|
2241
2241
|
}, {
|
|
2242
|
-
error: string;
|
|
2243
2242
|
success: boolean;
|
|
2243
|
+
error: string;
|
|
2244
2244
|
operation: "list_users";
|
|
2245
2245
|
ok: boolean;
|
|
2246
2246
|
response_metadata?: {
|
|
@@ -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;
|
|
@@ -2334,13 +2334,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2334
2334
|
}>, "many">>;
|
|
2335
2335
|
}, "strip", z.ZodTypeAny, {
|
|
2336
2336
|
type: string;
|
|
2337
|
-
user?: string | undefined;
|
|
2338
2337
|
text?: string | undefined;
|
|
2339
|
-
ts?: string | undefined;
|
|
2340
2338
|
username?: string | undefined;
|
|
2339
|
+
ts?: string | undefined;
|
|
2341
2340
|
attachments?: unknown[] | undefined;
|
|
2342
2341
|
blocks?: unknown[] | undefined;
|
|
2343
2342
|
thread_ts?: string | undefined;
|
|
2343
|
+
user?: string | undefined;
|
|
2344
2344
|
bot_id?: string | undefined;
|
|
2345
2345
|
bot_profile?: {
|
|
2346
2346
|
name?: string | undefined;
|
|
@@ -2359,13 +2359,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2359
2359
|
}[] | undefined;
|
|
2360
2360
|
}, {
|
|
2361
2361
|
type: string;
|
|
2362
|
-
user?: string | undefined;
|
|
2363
2362
|
text?: string | undefined;
|
|
2364
|
-
ts?: string | undefined;
|
|
2365
2363
|
username?: string | undefined;
|
|
2364
|
+
ts?: string | undefined;
|
|
2366
2365
|
attachments?: unknown[] | undefined;
|
|
2367
2366
|
blocks?: unknown[] | undefined;
|
|
2368
2367
|
thread_ts?: string | undefined;
|
|
2368
|
+
user?: string | undefined;
|
|
2369
2369
|
bot_id?: string | undefined;
|
|
2370
2370
|
bot_profile?: {
|
|
2371
2371
|
name?: string | undefined;
|
|
@@ -2394,19 +2394,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2394
2394
|
error: z.ZodString;
|
|
2395
2395
|
success: z.ZodBoolean;
|
|
2396
2396
|
}, "strip", z.ZodTypeAny, {
|
|
2397
|
-
error: string;
|
|
2398
2397
|
success: boolean;
|
|
2398
|
+
error: string;
|
|
2399
2399
|
operation: "get_conversation_history";
|
|
2400
2400
|
ok: boolean;
|
|
2401
|
+
response_metadata?: {
|
|
2402
|
+
next_cursor: string;
|
|
2403
|
+
} | undefined;
|
|
2401
2404
|
messages?: {
|
|
2402
2405
|
type: string;
|
|
2403
|
-
user?: string | undefined;
|
|
2404
2406
|
text?: string | undefined;
|
|
2405
|
-
ts?: string | undefined;
|
|
2406
2407
|
username?: string | undefined;
|
|
2408
|
+
ts?: string | undefined;
|
|
2407
2409
|
attachments?: unknown[] | undefined;
|
|
2408
2410
|
blocks?: unknown[] | undefined;
|
|
2409
2411
|
thread_ts?: string | undefined;
|
|
2412
|
+
user?: string | undefined;
|
|
2410
2413
|
bot_id?: string | undefined;
|
|
2411
2414
|
bot_profile?: {
|
|
2412
2415
|
name?: string | undefined;
|
|
@@ -2424,24 +2427,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2424
2427
|
count: number;
|
|
2425
2428
|
}[] | undefined;
|
|
2426
2429
|
}[] | undefined;
|
|
2427
|
-
response_metadata?: {
|
|
2428
|
-
next_cursor: string;
|
|
2429
|
-
} | undefined;
|
|
2430
2430
|
has_more?: boolean | undefined;
|
|
2431
2431
|
}, {
|
|
2432
|
-
error: string;
|
|
2433
2432
|
success: boolean;
|
|
2433
|
+
error: string;
|
|
2434
2434
|
operation: "get_conversation_history";
|
|
2435
2435
|
ok: boolean;
|
|
2436
|
+
response_metadata?: {
|
|
2437
|
+
next_cursor: string;
|
|
2438
|
+
} | undefined;
|
|
2436
2439
|
messages?: {
|
|
2437
2440
|
type: string;
|
|
2438
|
-
user?: string | undefined;
|
|
2439
2441
|
text?: string | undefined;
|
|
2440
|
-
ts?: string | undefined;
|
|
2441
2442
|
username?: string | undefined;
|
|
2443
|
+
ts?: string | undefined;
|
|
2442
2444
|
attachments?: unknown[] | undefined;
|
|
2443
2445
|
blocks?: unknown[] | undefined;
|
|
2444
2446
|
thread_ts?: string | undefined;
|
|
2447
|
+
user?: string | undefined;
|
|
2445
2448
|
bot_id?: string | undefined;
|
|
2446
2449
|
bot_profile?: {
|
|
2447
2450
|
name?: string | undefined;
|
|
@@ -2459,9 +2462,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2459
2462
|
count: number;
|
|
2460
2463
|
}[] | undefined;
|
|
2461
2464
|
}[] | undefined;
|
|
2462
|
-
response_metadata?: {
|
|
2463
|
-
next_cursor: string;
|
|
2464
|
-
} | undefined;
|
|
2465
2465
|
has_more?: boolean | undefined;
|
|
2466
2466
|
}>, z.ZodObject<{
|
|
2467
2467
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -2505,13 +2505,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2505
2505
|
}>, "many">>;
|
|
2506
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2507
2507
|
type: string;
|
|
2508
|
-
user?: string | undefined;
|
|
2509
2508
|
text?: string | undefined;
|
|
2510
|
-
ts?: string | undefined;
|
|
2511
2509
|
username?: string | undefined;
|
|
2510
|
+
ts?: string | undefined;
|
|
2512
2511
|
attachments?: unknown[] | undefined;
|
|
2513
2512
|
blocks?: unknown[] | undefined;
|
|
2514
2513
|
thread_ts?: string | undefined;
|
|
2514
|
+
user?: string | undefined;
|
|
2515
2515
|
bot_id?: string | undefined;
|
|
2516
2516
|
bot_profile?: {
|
|
2517
2517
|
name?: string | undefined;
|
|
@@ -2530,13 +2530,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2530
2530
|
}[] | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
type: string;
|
|
2533
|
-
user?: string | undefined;
|
|
2534
2533
|
text?: string | undefined;
|
|
2535
|
-
ts?: string | undefined;
|
|
2536
2534
|
username?: string | undefined;
|
|
2535
|
+
ts?: string | undefined;
|
|
2537
2536
|
attachments?: unknown[] | undefined;
|
|
2538
2537
|
blocks?: unknown[] | undefined;
|
|
2539
2538
|
thread_ts?: string | undefined;
|
|
2539
|
+
user?: string | undefined;
|
|
2540
2540
|
bot_id?: string | undefined;
|
|
2541
2541
|
bot_profile?: {
|
|
2542
2542
|
name?: string | undefined;
|
|
@@ -2565,19 +2565,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2565
2565
|
error: z.ZodString;
|
|
2566
2566
|
success: z.ZodBoolean;
|
|
2567
2567
|
}, "strip", z.ZodTypeAny, {
|
|
2568
|
-
error: string;
|
|
2569
2568
|
success: boolean;
|
|
2569
|
+
error: string;
|
|
2570
2570
|
operation: "get_thread_replies";
|
|
2571
2571
|
ok: boolean;
|
|
2572
|
+
response_metadata?: {
|
|
2573
|
+
next_cursor: string;
|
|
2574
|
+
} | undefined;
|
|
2572
2575
|
messages?: {
|
|
2573
2576
|
type: string;
|
|
2574
|
-
user?: string | undefined;
|
|
2575
2577
|
text?: string | undefined;
|
|
2576
|
-
ts?: string | undefined;
|
|
2577
2578
|
username?: string | undefined;
|
|
2579
|
+
ts?: string | undefined;
|
|
2578
2580
|
attachments?: unknown[] | undefined;
|
|
2579
2581
|
blocks?: unknown[] | undefined;
|
|
2580
2582
|
thread_ts?: string | undefined;
|
|
2583
|
+
user?: string | undefined;
|
|
2581
2584
|
bot_id?: string | undefined;
|
|
2582
2585
|
bot_profile?: {
|
|
2583
2586
|
name?: string | undefined;
|
|
@@ -2595,24 +2598,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2595
2598
|
count: number;
|
|
2596
2599
|
}[] | undefined;
|
|
2597
2600
|
}[] | undefined;
|
|
2598
|
-
response_metadata?: {
|
|
2599
|
-
next_cursor: string;
|
|
2600
|
-
} | undefined;
|
|
2601
2601
|
has_more?: boolean | undefined;
|
|
2602
2602
|
}, {
|
|
2603
|
-
error: string;
|
|
2604
2603
|
success: boolean;
|
|
2604
|
+
error: string;
|
|
2605
2605
|
operation: "get_thread_replies";
|
|
2606
2606
|
ok: boolean;
|
|
2607
|
+
response_metadata?: {
|
|
2608
|
+
next_cursor: string;
|
|
2609
|
+
} | undefined;
|
|
2607
2610
|
messages?: {
|
|
2608
2611
|
type: string;
|
|
2609
|
-
user?: string | undefined;
|
|
2610
2612
|
text?: string | undefined;
|
|
2611
|
-
ts?: string | undefined;
|
|
2612
2613
|
username?: string | undefined;
|
|
2614
|
+
ts?: string | undefined;
|
|
2613
2615
|
attachments?: unknown[] | undefined;
|
|
2614
2616
|
blocks?: unknown[] | undefined;
|
|
2615
2617
|
thread_ts?: string | undefined;
|
|
2618
|
+
user?: string | undefined;
|
|
2616
2619
|
bot_id?: string | undefined;
|
|
2617
2620
|
bot_profile?: {
|
|
2618
2621
|
name?: string | undefined;
|
|
@@ -2630,9 +2633,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2630
2633
|
count: number;
|
|
2631
2634
|
}[] | undefined;
|
|
2632
2635
|
}[] | undefined;
|
|
2633
|
-
response_metadata?: {
|
|
2634
|
-
next_cursor: string;
|
|
2635
|
-
} | undefined;
|
|
2636
2636
|
has_more?: boolean | undefined;
|
|
2637
2637
|
}>, z.ZodObject<{
|
|
2638
2638
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -2679,13 +2679,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2679
2679
|
}>, "many">>;
|
|
2680
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2681
2681
|
type: string;
|
|
2682
|
-
user?: string | undefined;
|
|
2683
2682
|
text?: string | undefined;
|
|
2684
|
-
ts?: string | undefined;
|
|
2685
2683
|
username?: string | undefined;
|
|
2684
|
+
ts?: string | undefined;
|
|
2686
2685
|
attachments?: unknown[] | undefined;
|
|
2687
2686
|
blocks?: unknown[] | undefined;
|
|
2688
2687
|
thread_ts?: string | undefined;
|
|
2688
|
+
user?: string | undefined;
|
|
2689
2689
|
bot_id?: string | undefined;
|
|
2690
2690
|
bot_profile?: {
|
|
2691
2691
|
name?: string | undefined;
|
|
@@ -2704,13 +2704,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2704
2704
|
}[] | undefined;
|
|
2705
2705
|
}, {
|
|
2706
2706
|
type: string;
|
|
2707
|
-
user?: string | undefined;
|
|
2708
2707
|
text?: string | undefined;
|
|
2709
|
-
ts?: string | undefined;
|
|
2710
2708
|
username?: string | undefined;
|
|
2709
|
+
ts?: string | undefined;
|
|
2711
2710
|
attachments?: unknown[] | undefined;
|
|
2712
2711
|
blocks?: unknown[] | undefined;
|
|
2713
2712
|
thread_ts?: string | undefined;
|
|
2713
|
+
user?: string | undefined;
|
|
2714
2714
|
bot_id?: string | undefined;
|
|
2715
2715
|
bot_profile?: {
|
|
2716
2716
|
name?: string | undefined;
|
|
@@ -2731,19 +2731,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2731
2731
|
error: z.ZodString;
|
|
2732
2732
|
success: z.ZodBoolean;
|
|
2733
2733
|
}, "strip", z.ZodTypeAny, {
|
|
2734
|
-
error: string;
|
|
2735
2734
|
success: boolean;
|
|
2735
|
+
error: string;
|
|
2736
2736
|
operation: "update_message";
|
|
2737
2737
|
ok: boolean;
|
|
2738
2738
|
message?: {
|
|
2739
2739
|
type: string;
|
|
2740
|
-
user?: string | undefined;
|
|
2741
2740
|
text?: string | undefined;
|
|
2742
|
-
ts?: string | undefined;
|
|
2743
2741
|
username?: string | undefined;
|
|
2742
|
+
ts?: string | undefined;
|
|
2744
2743
|
attachments?: unknown[] | undefined;
|
|
2745
2744
|
blocks?: unknown[] | undefined;
|
|
2746
2745
|
thread_ts?: string | undefined;
|
|
2746
|
+
user?: string | undefined;
|
|
2747
2747
|
bot_id?: string | undefined;
|
|
2748
2748
|
bot_profile?: {
|
|
2749
2749
|
name?: string | undefined;
|
|
@@ -2761,23 +2761,23 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2761
2761
|
count: number;
|
|
2762
2762
|
}[] | undefined;
|
|
2763
2763
|
} | undefined;
|
|
2764
|
+
channel?: string | undefined;
|
|
2764
2765
|
text?: string | undefined;
|
|
2765
2766
|
ts?: string | undefined;
|
|
2766
|
-
channel?: string | undefined;
|
|
2767
2767
|
}, {
|
|
2768
|
-
error: string;
|
|
2769
2768
|
success: boolean;
|
|
2769
|
+
error: string;
|
|
2770
2770
|
operation: "update_message";
|
|
2771
2771
|
ok: boolean;
|
|
2772
2772
|
message?: {
|
|
2773
2773
|
type: string;
|
|
2774
|
-
user?: string | undefined;
|
|
2775
2774
|
text?: string | undefined;
|
|
2776
|
-
ts?: string | undefined;
|
|
2777
2775
|
username?: string | undefined;
|
|
2776
|
+
ts?: string | undefined;
|
|
2778
2777
|
attachments?: unknown[] | undefined;
|
|
2779
2778
|
blocks?: unknown[] | undefined;
|
|
2780
2779
|
thread_ts?: string | undefined;
|
|
2780
|
+
user?: string | undefined;
|
|
2781
2781
|
bot_id?: string | undefined;
|
|
2782
2782
|
bot_profile?: {
|
|
2783
2783
|
name?: string | undefined;
|
|
@@ -2795,9 +2795,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2795
2795
|
count: number;
|
|
2796
2796
|
}[] | undefined;
|
|
2797
2797
|
} | undefined;
|
|
2798
|
+
channel?: string | undefined;
|
|
2798
2799
|
text?: string | undefined;
|
|
2799
2800
|
ts?: string | undefined;
|
|
2800
|
-
channel?: string | undefined;
|
|
2801
2801
|
}>, z.ZodObject<{
|
|
2802
2802
|
operation: z.ZodLiteral<"delete_message">;
|
|
2803
2803
|
ok: z.ZodBoolean;
|
|
@@ -2806,32 +2806,32 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2806
2806
|
error: z.ZodString;
|
|
2807
2807
|
success: z.ZodBoolean;
|
|
2808
2808
|
}, "strip", z.ZodTypeAny, {
|
|
2809
|
-
error: string;
|
|
2810
2809
|
success: boolean;
|
|
2810
|
+
error: string;
|
|
2811
2811
|
operation: "delete_message";
|
|
2812
2812
|
ok: boolean;
|
|
2813
|
-
ts?: string | undefined;
|
|
2814
2813
|
channel?: string | undefined;
|
|
2814
|
+
ts?: string | undefined;
|
|
2815
2815
|
}, {
|
|
2816
|
-
error: string;
|
|
2817
2816
|
success: boolean;
|
|
2817
|
+
error: string;
|
|
2818
2818
|
operation: "delete_message";
|
|
2819
2819
|
ok: boolean;
|
|
2820
|
-
ts?: string | undefined;
|
|
2821
2820
|
channel?: string | undefined;
|
|
2821
|
+
ts?: string | undefined;
|
|
2822
2822
|
}>, z.ZodObject<{
|
|
2823
2823
|
operation: z.ZodLiteral<"add_reaction">;
|
|
2824
2824
|
ok: z.ZodBoolean;
|
|
2825
2825
|
error: z.ZodString;
|
|
2826
2826
|
success: z.ZodBoolean;
|
|
2827
2827
|
}, "strip", z.ZodTypeAny, {
|
|
2828
|
-
error: string;
|
|
2829
2828
|
success: boolean;
|
|
2829
|
+
error: string;
|
|
2830
2830
|
operation: "add_reaction";
|
|
2831
2831
|
ok: boolean;
|
|
2832
2832
|
}, {
|
|
2833
|
-
error: string;
|
|
2834
2833
|
success: boolean;
|
|
2834
|
+
error: string;
|
|
2835
2835
|
operation: "add_reaction";
|
|
2836
2836
|
ok: boolean;
|
|
2837
2837
|
}>, z.ZodObject<{
|
|
@@ -2840,13 +2840,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2840
2840
|
error: z.ZodString;
|
|
2841
2841
|
success: z.ZodBoolean;
|
|
2842
2842
|
}, "strip", z.ZodTypeAny, {
|
|
2843
|
-
error: string;
|
|
2844
2843
|
success: boolean;
|
|
2844
|
+
error: string;
|
|
2845
2845
|
operation: "remove_reaction";
|
|
2846
2846
|
ok: boolean;
|
|
2847
2847
|
}, {
|
|
2848
|
-
error: string;
|
|
2849
2848
|
success: boolean;
|
|
2849
|
+
error: string;
|
|
2850
2850
|
operation: "remove_reaction";
|
|
2851
2851
|
ok: boolean;
|
|
2852
2852
|
}>, z.ZodObject<{
|
|
@@ -2972,8 +2972,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2972
2972
|
error: z.ZodString;
|
|
2973
2973
|
success: z.ZodBoolean;
|
|
2974
2974
|
}, "strip", z.ZodTypeAny, {
|
|
2975
|
-
error: string;
|
|
2976
2975
|
success: boolean;
|
|
2976
|
+
error: string;
|
|
2977
2977
|
operation: "join_channel";
|
|
2978
2978
|
ok: boolean;
|
|
2979
2979
|
channel?: {
|
|
@@ -3012,8 +3012,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3012
3012
|
} | undefined;
|
|
3013
3013
|
already_in_channel?: boolean | undefined;
|
|
3014
3014
|
}, {
|
|
3015
|
-
error: string;
|
|
3016
3015
|
success: boolean;
|
|
3016
|
+
error: string;
|
|
3017
3017
|
operation: "join_channel";
|
|
3018
3018
|
ok: boolean;
|
|
3019
3019
|
channel?: {
|
|
@@ -3087,17 +3087,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3087
3087
|
team_id: z.ZodString;
|
|
3088
3088
|
}, "strip", z.ZodTypeAny, {
|
|
3089
3089
|
ts: string;
|
|
3090
|
-
team_id: string;
|
|
3091
3090
|
reply_count: number;
|
|
3092
3091
|
reply_users_count: number;
|
|
3093
3092
|
reply_users: string[];
|
|
3093
|
+
team_id: string;
|
|
3094
3094
|
channel_name: string;
|
|
3095
3095
|
}, {
|
|
3096
3096
|
ts: string;
|
|
3097
|
-
team_id: string;
|
|
3098
3097
|
reply_count: number;
|
|
3099
3098
|
reply_users_count: number;
|
|
3100
3099
|
reply_users: string[];
|
|
3100
|
+
team_id: string;
|
|
3101
3101
|
channel_name: string;
|
|
3102
3102
|
}>, "many">>>;
|
|
3103
3103
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -3109,51 +3109,51 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3109
3109
|
team_id: z.ZodString;
|
|
3110
3110
|
}, "strip", z.ZodTypeAny, {
|
|
3111
3111
|
ts: string;
|
|
3112
|
-
team_id: string;
|
|
3113
3112
|
reply_count: number;
|
|
3114
3113
|
reply_users_count: number;
|
|
3115
3114
|
reply_users: string[];
|
|
3115
|
+
team_id: string;
|
|
3116
3116
|
channel_name: string;
|
|
3117
3117
|
}, {
|
|
3118
3118
|
ts: string;
|
|
3119
|
-
team_id: string;
|
|
3120
3119
|
reply_count: number;
|
|
3121
3120
|
reply_users_count: number;
|
|
3122
3121
|
reply_users: string[];
|
|
3122
|
+
team_id: string;
|
|
3123
3123
|
channel_name: string;
|
|
3124
3124
|
}>, "many">>>;
|
|
3125
3125
|
}, "strip", z.ZodTypeAny, {
|
|
3126
3126
|
public?: Record<string, {
|
|
3127
3127
|
ts: string;
|
|
3128
|
-
team_id: string;
|
|
3129
3128
|
reply_count: number;
|
|
3130
3129
|
reply_users_count: number;
|
|
3131
3130
|
reply_users: string[];
|
|
3131
|
+
team_id: string;
|
|
3132
3132
|
channel_name: string;
|
|
3133
3133
|
}[]> | undefined;
|
|
3134
3134
|
private?: Record<string, {
|
|
3135
3135
|
ts: string;
|
|
3136
|
-
team_id: string;
|
|
3137
3136
|
reply_count: number;
|
|
3138
3137
|
reply_users_count: number;
|
|
3139
3138
|
reply_users: string[];
|
|
3139
|
+
team_id: string;
|
|
3140
3140
|
channel_name: string;
|
|
3141
3141
|
}[]> | undefined;
|
|
3142
3142
|
}, {
|
|
3143
3143
|
public?: Record<string, {
|
|
3144
3144
|
ts: string;
|
|
3145
|
-
team_id: string;
|
|
3146
3145
|
reply_count: number;
|
|
3147
3146
|
reply_users_count: number;
|
|
3148
3147
|
reply_users: string[];
|
|
3148
|
+
team_id: string;
|
|
3149
3149
|
channel_name: string;
|
|
3150
3150
|
}[]> | undefined;
|
|
3151
3151
|
private?: Record<string, {
|
|
3152
3152
|
ts: string;
|
|
3153
|
-
team_id: string;
|
|
3154
3153
|
reply_count: number;
|
|
3155
3154
|
reply_users_count: number;
|
|
3156
3155
|
reply_users: string[];
|
|
3156
|
+
team_id: string;
|
|
3157
3157
|
channel_name: string;
|
|
3158
3158
|
}[]> | undefined;
|
|
3159
3159
|
}>>;
|
|
@@ -3163,10 +3163,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3163
3163
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3164
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3165
|
name: string;
|
|
3166
|
-
user: string;
|
|
3167
|
-
id: string;
|
|
3168
3166
|
username: string;
|
|
3167
|
+
user: string;
|
|
3169
3168
|
timestamp: number;
|
|
3169
|
+
id: string;
|
|
3170
3170
|
created: number;
|
|
3171
3171
|
mimetype: string;
|
|
3172
3172
|
filetype: string;
|
|
@@ -3188,18 +3188,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3188
3188
|
shares?: {
|
|
3189
3189
|
public?: Record<string, {
|
|
3190
3190
|
ts: string;
|
|
3191
|
-
team_id: string;
|
|
3192
3191
|
reply_count: number;
|
|
3193
3192
|
reply_users_count: number;
|
|
3194
3193
|
reply_users: string[];
|
|
3194
|
+
team_id: string;
|
|
3195
3195
|
channel_name: string;
|
|
3196
3196
|
}[]> | undefined;
|
|
3197
3197
|
private?: Record<string, {
|
|
3198
3198
|
ts: string;
|
|
3199
|
-
team_id: string;
|
|
3200
3199
|
reply_count: number;
|
|
3201
3200
|
reply_users_count: number;
|
|
3202
3201
|
reply_users: string[];
|
|
3202
|
+
team_id: string;
|
|
3203
3203
|
channel_name: string;
|
|
3204
3204
|
}[]> | undefined;
|
|
3205
3205
|
} | undefined;
|
|
@@ -3208,10 +3208,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3208
3208
|
has_rich_preview?: boolean | undefined;
|
|
3209
3209
|
}, {
|
|
3210
3210
|
name: string;
|
|
3211
|
-
user: string;
|
|
3212
|
-
id: string;
|
|
3213
3211
|
username: string;
|
|
3212
|
+
user: string;
|
|
3214
3213
|
timestamp: number;
|
|
3214
|
+
id: string;
|
|
3215
3215
|
created: number;
|
|
3216
3216
|
mimetype: string;
|
|
3217
3217
|
filetype: string;
|
|
@@ -3233,18 +3233,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3233
3233
|
shares?: {
|
|
3234
3234
|
public?: Record<string, {
|
|
3235
3235
|
ts: string;
|
|
3236
|
-
team_id: string;
|
|
3237
3236
|
reply_count: number;
|
|
3238
3237
|
reply_users_count: number;
|
|
3239
3238
|
reply_users: string[];
|
|
3239
|
+
team_id: string;
|
|
3240
3240
|
channel_name: string;
|
|
3241
3241
|
}[]> | undefined;
|
|
3242
3242
|
private?: Record<string, {
|
|
3243
3243
|
ts: string;
|
|
3244
|
-
team_id: string;
|
|
3245
3244
|
reply_count: number;
|
|
3246
3245
|
reply_users_count: number;
|
|
3247
3246
|
reply_users: string[];
|
|
3247
|
+
team_id: string;
|
|
3248
3248
|
channel_name: string;
|
|
3249
3249
|
}[]> | undefined;
|
|
3250
3250
|
} | undefined;
|
|
@@ -3255,16 +3255,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3255
3255
|
error: z.ZodString;
|
|
3256
3256
|
success: z.ZodBoolean;
|
|
3257
3257
|
}, "strip", z.ZodTypeAny, {
|
|
3258
|
-
error: string;
|
|
3259
3258
|
success: boolean;
|
|
3259
|
+
error: string;
|
|
3260
3260
|
operation: "upload_file";
|
|
3261
3261
|
ok: boolean;
|
|
3262
3262
|
file?: {
|
|
3263
3263
|
name: string;
|
|
3264
|
-
user: string;
|
|
3265
|
-
id: string;
|
|
3266
3264
|
username: string;
|
|
3265
|
+
user: string;
|
|
3267
3266
|
timestamp: number;
|
|
3267
|
+
id: string;
|
|
3268
3268
|
created: number;
|
|
3269
3269
|
mimetype: string;
|
|
3270
3270
|
filetype: string;
|
|
@@ -3286,18 +3286,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3286
3286
|
shares?: {
|
|
3287
3287
|
public?: Record<string, {
|
|
3288
3288
|
ts: string;
|
|
3289
|
-
team_id: string;
|
|
3290
3289
|
reply_count: number;
|
|
3291
3290
|
reply_users_count: number;
|
|
3292
3291
|
reply_users: string[];
|
|
3292
|
+
team_id: string;
|
|
3293
3293
|
channel_name: string;
|
|
3294
3294
|
}[]> | undefined;
|
|
3295
3295
|
private?: Record<string, {
|
|
3296
3296
|
ts: string;
|
|
3297
|
-
team_id: string;
|
|
3298
3297
|
reply_count: number;
|
|
3299
3298
|
reply_users_count: number;
|
|
3300
3299
|
reply_users: string[];
|
|
3300
|
+
team_id: string;
|
|
3301
3301
|
channel_name: string;
|
|
3302
3302
|
}[]> | undefined;
|
|
3303
3303
|
} | undefined;
|
|
@@ -3306,16 +3306,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3306
3306
|
has_rich_preview?: boolean | undefined;
|
|
3307
3307
|
} | undefined;
|
|
3308
3308
|
}, {
|
|
3309
|
-
error: string;
|
|
3310
3309
|
success: boolean;
|
|
3310
|
+
error: string;
|
|
3311
3311
|
operation: "upload_file";
|
|
3312
3312
|
ok: boolean;
|
|
3313
3313
|
file?: {
|
|
3314
3314
|
name: string;
|
|
3315
|
-
user: string;
|
|
3316
|
-
id: string;
|
|
3317
3315
|
username: string;
|
|
3316
|
+
user: string;
|
|
3318
3317
|
timestamp: number;
|
|
3318
|
+
id: string;
|
|
3319
3319
|
created: number;
|
|
3320
3320
|
mimetype: string;
|
|
3321
3321
|
filetype: string;
|
|
@@ -3337,18 +3337,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3337
3337
|
shares?: {
|
|
3338
3338
|
public?: Record<string, {
|
|
3339
3339
|
ts: string;
|
|
3340
|
-
team_id: string;
|
|
3341
3340
|
reply_count: number;
|
|
3342
3341
|
reply_users_count: number;
|
|
3343
3342
|
reply_users: string[];
|
|
3343
|
+
team_id: string;
|
|
3344
3344
|
channel_name: string;
|
|
3345
3345
|
}[]> | undefined;
|
|
3346
3346
|
private?: Record<string, {
|
|
3347
3347
|
ts: string;
|
|
3348
|
-
team_id: string;
|
|
3349
3348
|
reply_count: number;
|
|
3350
3349
|
reply_users_count: number;
|
|
3351
3350
|
reply_users: string[];
|
|
3351
|
+
team_id: string;
|
|
3352
3352
|
channel_name: string;
|
|
3353
3353
|
}[]> | undefined;
|
|
3354
3354
|
} | undefined;
|
|
@@ -3365,16 +3365,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3365
3365
|
error: z.ZodString;
|
|
3366
3366
|
success: z.ZodBoolean;
|
|
3367
3367
|
}, "strip", z.ZodTypeAny, {
|
|
3368
|
-
error: string;
|
|
3369
3368
|
success: boolean;
|
|
3369
|
+
error: string;
|
|
3370
3370
|
operation: "schedule_message";
|
|
3371
3371
|
ok: boolean;
|
|
3372
3372
|
channel?: string | undefined;
|
|
3373
3373
|
post_at?: number | undefined;
|
|
3374
3374
|
scheduled_message_id?: string | undefined;
|
|
3375
3375
|
}, {
|
|
3376
|
-
error: string;
|
|
3377
3376
|
success: boolean;
|
|
3377
|
+
error: string;
|
|
3378
3378
|
operation: "schedule_message";
|
|
3379
3379
|
ok: boolean;
|
|
3380
3380
|
channel?: string | undefined;
|
|
@@ -3430,38 +3430,38 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3430
3430
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3431
3431
|
}, "strip", z.ZodTypeAny, {
|
|
3432
3432
|
title?: string | undefined;
|
|
3433
|
-
text?: string | undefined;
|
|
3434
|
-
image_url?: string | undefined;
|
|
3435
3433
|
fields?: {
|
|
3436
3434
|
value: string;
|
|
3437
3435
|
title: string;
|
|
3438
3436
|
short?: boolean | undefined;
|
|
3439
3437
|
}[] | undefined;
|
|
3438
|
+
text?: string | undefined;
|
|
3440
3439
|
color?: string | undefined;
|
|
3441
3440
|
pretext?: string | undefined;
|
|
3442
3441
|
author_name?: string | undefined;
|
|
3443
3442
|
author_link?: string | undefined;
|
|
3444
3443
|
author_icon?: string | undefined;
|
|
3445
3444
|
title_link?: string | undefined;
|
|
3445
|
+
image_url?: string | undefined;
|
|
3446
3446
|
thumb_url?: string | undefined;
|
|
3447
3447
|
footer?: string | undefined;
|
|
3448
3448
|
footer_icon?: string | undefined;
|
|
3449
3449
|
ts?: number | undefined;
|
|
3450
3450
|
}, {
|
|
3451
3451
|
title?: string | undefined;
|
|
3452
|
-
text?: string | undefined;
|
|
3453
|
-
image_url?: string | undefined;
|
|
3454
3452
|
fields?: {
|
|
3455
3453
|
value: string;
|
|
3456
3454
|
title: string;
|
|
3457
3455
|
short?: boolean | undefined;
|
|
3458
3456
|
}[] | undefined;
|
|
3457
|
+
text?: string | undefined;
|
|
3459
3458
|
color?: string | undefined;
|
|
3460
3459
|
pretext?: string | undefined;
|
|
3461
3460
|
author_name?: string | undefined;
|
|
3462
3461
|
author_link?: string | undefined;
|
|
3463
3462
|
author_icon?: string | undefined;
|
|
3464
3463
|
title_link?: string | undefined;
|
|
3464
|
+
image_url?: string | undefined;
|
|
3465
3465
|
thumb_url?: string | undefined;
|
|
3466
3466
|
footer?: string | undefined;
|
|
3467
3467
|
footer_icon?: string | undefined;
|
|
@@ -3493,14 +3493,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3493
3493
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3494
3494
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3495
3495
|
}, "strip", z.ZodTypeAny, {
|
|
3496
|
-
type: "
|
|
3496
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3497
3497
|
emoji?: boolean | undefined;
|
|
3498
3498
|
text?: string | undefined;
|
|
3499
3499
|
image_url?: string | undefined;
|
|
3500
3500
|
verbatim?: boolean | undefined;
|
|
3501
3501
|
alt_text?: string | undefined;
|
|
3502
3502
|
}, {
|
|
3503
|
-
type: "
|
|
3503
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3504
3504
|
emoji?: boolean | undefined;
|
|
3505
3505
|
text?: string | undefined;
|
|
3506
3506
|
image_url?: string | undefined;
|
|
@@ -3533,14 +3533,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3533
3533
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3534
3534
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3535
3535
|
}, "strip", z.ZodTypeAny, {
|
|
3536
|
-
type: "
|
|
3536
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3537
3537
|
emoji?: boolean | undefined;
|
|
3538
3538
|
text?: string | undefined;
|
|
3539
3539
|
image_url?: string | undefined;
|
|
3540
3540
|
verbatim?: boolean | undefined;
|
|
3541
3541
|
alt_text?: string | undefined;
|
|
3542
3542
|
}, {
|
|
3543
|
-
type: "
|
|
3543
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3544
3544
|
emoji?: boolean | undefined;
|
|
3545
3545
|
text?: string | undefined;
|
|
3546
3546
|
image_url?: string | undefined;
|
|
@@ -3573,14 +3573,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3573
3573
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3574
3574
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3575
3575
|
}, "strip", z.ZodTypeAny, {
|
|
3576
|
-
type: "
|
|
3576
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3577
3577
|
emoji?: boolean | undefined;
|
|
3578
3578
|
text?: string | undefined;
|
|
3579
3579
|
image_url?: string | undefined;
|
|
3580
3580
|
verbatim?: boolean | undefined;
|
|
3581
3581
|
alt_text?: string | undefined;
|
|
3582
3582
|
}, {
|
|
3583
|
-
type: "
|
|
3583
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3584
3584
|
emoji?: boolean | undefined;
|
|
3585
3585
|
text?: string | undefined;
|
|
3586
3586
|
image_url?: string | undefined;
|
|
@@ -3594,9 +3594,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3594
3594
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3595
3595
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3596
3596
|
}, "strip", z.ZodTypeAny, {
|
|
3597
|
-
text: string;
|
|
3598
3597
|
operation: "send_message";
|
|
3599
3598
|
channel: string;
|
|
3599
|
+
text: string;
|
|
3600
3600
|
reply_broadcast: boolean;
|
|
3601
3601
|
unfurl_links: boolean;
|
|
3602
3602
|
unfurl_media: boolean;
|
|
@@ -3606,19 +3606,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3606
3606
|
icon_url?: string | undefined;
|
|
3607
3607
|
attachments?: {
|
|
3608
3608
|
title?: string | undefined;
|
|
3609
|
-
text?: string | undefined;
|
|
3610
|
-
image_url?: string | undefined;
|
|
3611
3609
|
fields?: {
|
|
3612
3610
|
value: string;
|
|
3613
3611
|
title: string;
|
|
3614
3612
|
short?: boolean | undefined;
|
|
3615
3613
|
}[] | undefined;
|
|
3614
|
+
text?: string | undefined;
|
|
3616
3615
|
color?: string | undefined;
|
|
3617
3616
|
pretext?: string | undefined;
|
|
3618
3617
|
author_name?: string | undefined;
|
|
3619
3618
|
author_link?: string | undefined;
|
|
3620
3619
|
author_icon?: string | undefined;
|
|
3621
3620
|
title_link?: string | undefined;
|
|
3621
|
+
image_url?: string | undefined;
|
|
3622
3622
|
thumb_url?: string | undefined;
|
|
3623
3623
|
footer?: string | undefined;
|
|
3624
3624
|
footer_icon?: string | undefined;
|
|
@@ -3650,14 +3650,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3650
3650
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3651
3651
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3652
3652
|
}, "strip", z.ZodTypeAny, {
|
|
3653
|
-
type: "
|
|
3653
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3654
3654
|
emoji?: boolean | undefined;
|
|
3655
3655
|
text?: string | undefined;
|
|
3656
3656
|
image_url?: string | undefined;
|
|
3657
3657
|
verbatim?: boolean | undefined;
|
|
3658
3658
|
alt_text?: string | undefined;
|
|
3659
3659
|
}, {
|
|
3660
|
-
type: "
|
|
3660
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3661
3661
|
emoji?: boolean | undefined;
|
|
3662
3662
|
text?: string | undefined;
|
|
3663
3663
|
image_url?: string | undefined;
|
|
@@ -3667,28 +3667,28 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3667
3667
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3668
3668
|
thread_ts?: string | undefined;
|
|
3669
3669
|
}, {
|
|
3670
|
-
text: string;
|
|
3671
3670
|
operation: "send_message";
|
|
3672
3671
|
channel: string;
|
|
3672
|
+
text: string;
|
|
3673
3673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3674
3674
|
username?: string | undefined;
|
|
3675
3675
|
icon_emoji?: string | undefined;
|
|
3676
3676
|
icon_url?: string | undefined;
|
|
3677
3677
|
attachments?: {
|
|
3678
3678
|
title?: string | undefined;
|
|
3679
|
-
text?: string | undefined;
|
|
3680
|
-
image_url?: string | undefined;
|
|
3681
3679
|
fields?: {
|
|
3682
3680
|
value: string;
|
|
3683
3681
|
title: string;
|
|
3684
3682
|
short?: boolean | undefined;
|
|
3685
3683
|
}[] | undefined;
|
|
3684
|
+
text?: string | undefined;
|
|
3686
3685
|
color?: string | undefined;
|
|
3687
3686
|
pretext?: string | undefined;
|
|
3688
3687
|
author_name?: string | undefined;
|
|
3689
3688
|
author_link?: string | undefined;
|
|
3690
3689
|
author_icon?: string | undefined;
|
|
3691
3690
|
title_link?: string | undefined;
|
|
3691
|
+
image_url?: string | undefined;
|
|
3692
3692
|
thumb_url?: string | undefined;
|
|
3693
3693
|
footer?: string | undefined;
|
|
3694
3694
|
footer_icon?: string | undefined;
|
|
@@ -3720,14 +3720,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3720
3720
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3721
3721
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3722
3722
|
}, "strip", z.ZodTypeAny, {
|
|
3723
|
-
type: "
|
|
3723
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3724
3724
|
emoji?: boolean | undefined;
|
|
3725
3725
|
text?: string | undefined;
|
|
3726
3726
|
image_url?: string | undefined;
|
|
3727
3727
|
verbatim?: boolean | undefined;
|
|
3728
3728
|
alt_text?: string | undefined;
|
|
3729
3729
|
}, {
|
|
3730
|
-
type: "
|
|
3730
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3731
3731
|
emoji?: boolean | undefined;
|
|
3732
3732
|
text?: string | undefined;
|
|
3733
3733
|
image_url?: string | undefined;
|
|
@@ -3781,13 +3781,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3781
3781
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3782
3782
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3783
3783
|
}, "strip", z.ZodTypeAny, {
|
|
3784
|
-
user: string;
|
|
3785
3784
|
operation: "get_user_info";
|
|
3786
3785
|
include_locale: boolean;
|
|
3786
|
+
user: string;
|
|
3787
3787
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3788
3788
|
}, {
|
|
3789
|
-
user: string;
|
|
3790
3789
|
operation: "get_user_info";
|
|
3790
|
+
user: string;
|
|
3791
3791
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3792
3792
|
include_locale?: boolean | undefined;
|
|
3793
3793
|
}>, z.ZodObject<{
|
|
@@ -3847,18 +3847,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3847
3847
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3848
3848
|
}, "strip", z.ZodTypeAny, {
|
|
3849
3849
|
inclusive: boolean;
|
|
3850
|
-
ts: string;
|
|
3851
3850
|
operation: "get_thread_replies";
|
|
3852
3851
|
channel: string;
|
|
3852
|
+
ts: string;
|
|
3853
3853
|
limit: number;
|
|
3854
3854
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3855
3855
|
cursor?: string | undefined;
|
|
3856
3856
|
latest?: string | undefined;
|
|
3857
3857
|
oldest?: string | undefined;
|
|
3858
3858
|
}, {
|
|
3859
|
-
ts: string;
|
|
3860
3859
|
operation: "get_thread_replies";
|
|
3861
3860
|
channel: string;
|
|
3861
|
+
ts: string;
|
|
3862
3862
|
inclusive?: boolean | undefined;
|
|
3863
3863
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3864
3864
|
limit?: number | undefined;
|
|
@@ -3899,38 +3899,38 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3899
3899
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3900
3900
|
}, "strip", z.ZodTypeAny, {
|
|
3901
3901
|
title?: string | undefined;
|
|
3902
|
-
text?: string | undefined;
|
|
3903
|
-
image_url?: string | undefined;
|
|
3904
3902
|
fields?: {
|
|
3905
3903
|
value: string;
|
|
3906
3904
|
title: string;
|
|
3907
3905
|
short?: boolean | undefined;
|
|
3908
3906
|
}[] | undefined;
|
|
3907
|
+
text?: string | undefined;
|
|
3909
3908
|
color?: string | undefined;
|
|
3910
3909
|
pretext?: string | undefined;
|
|
3911
3910
|
author_name?: string | undefined;
|
|
3912
3911
|
author_link?: string | undefined;
|
|
3913
3912
|
author_icon?: string | undefined;
|
|
3914
3913
|
title_link?: string | undefined;
|
|
3914
|
+
image_url?: string | undefined;
|
|
3915
3915
|
thumb_url?: string | undefined;
|
|
3916
3916
|
footer?: string | undefined;
|
|
3917
3917
|
footer_icon?: string | undefined;
|
|
3918
3918
|
ts?: number | undefined;
|
|
3919
3919
|
}, {
|
|
3920
3920
|
title?: string | undefined;
|
|
3921
|
-
text?: string | undefined;
|
|
3922
|
-
image_url?: string | undefined;
|
|
3923
3921
|
fields?: {
|
|
3924
3922
|
value: string;
|
|
3925
3923
|
title: string;
|
|
3926
3924
|
short?: boolean | undefined;
|
|
3927
3925
|
}[] | undefined;
|
|
3926
|
+
text?: string | undefined;
|
|
3928
3927
|
color?: string | undefined;
|
|
3929
3928
|
pretext?: string | undefined;
|
|
3930
3929
|
author_name?: string | undefined;
|
|
3931
3930
|
author_link?: string | undefined;
|
|
3932
3931
|
author_icon?: string | undefined;
|
|
3933
3932
|
title_link?: string | undefined;
|
|
3933
|
+
image_url?: string | undefined;
|
|
3934
3934
|
thumb_url?: string | undefined;
|
|
3935
3935
|
footer?: string | undefined;
|
|
3936
3936
|
footer_icon?: string | undefined;
|
|
@@ -3962,14 +3962,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3962
3962
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3963
3963
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3964
3964
|
}, "strip", z.ZodTypeAny, {
|
|
3965
|
-
type: "
|
|
3965
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3966
3966
|
emoji?: boolean | undefined;
|
|
3967
3967
|
text?: string | undefined;
|
|
3968
3968
|
image_url?: string | undefined;
|
|
3969
3969
|
verbatim?: boolean | undefined;
|
|
3970
3970
|
alt_text?: string | undefined;
|
|
3971
3971
|
}, {
|
|
3972
|
-
type: "
|
|
3972
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
3973
3973
|
emoji?: boolean | undefined;
|
|
3974
3974
|
text?: string | undefined;
|
|
3975
3975
|
image_url?: string | undefined;
|
|
@@ -4002,14 +4002,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4002
4002
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4003
4003
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4004
4004
|
}, "strip", z.ZodTypeAny, {
|
|
4005
|
-
type: "
|
|
4005
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4006
4006
|
emoji?: boolean | undefined;
|
|
4007
4007
|
text?: string | undefined;
|
|
4008
4008
|
image_url?: string | undefined;
|
|
4009
4009
|
verbatim?: boolean | undefined;
|
|
4010
4010
|
alt_text?: string | undefined;
|
|
4011
4011
|
}, {
|
|
4012
|
-
type: "
|
|
4012
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4013
4013
|
emoji?: boolean | undefined;
|
|
4014
4014
|
text?: string | undefined;
|
|
4015
4015
|
image_url?: string | undefined;
|
|
@@ -4042,14 +4042,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4042
4042
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4043
4043
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4044
4044
|
}, "strip", z.ZodTypeAny, {
|
|
4045
|
-
type: "
|
|
4045
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4046
4046
|
emoji?: boolean | undefined;
|
|
4047
4047
|
text?: string | undefined;
|
|
4048
4048
|
image_url?: string | undefined;
|
|
4049
4049
|
verbatim?: boolean | undefined;
|
|
4050
4050
|
alt_text?: string | undefined;
|
|
4051
4051
|
}, {
|
|
4052
|
-
type: "
|
|
4052
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4053
4053
|
emoji?: boolean | undefined;
|
|
4054
4054
|
text?: string | undefined;
|
|
4055
4055
|
image_url?: string | undefined;
|
|
@@ -4059,26 +4059,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4059
4059
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4060
4060
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4061
4061
|
}, "strip", z.ZodTypeAny, {
|
|
4062
|
-
ts: string;
|
|
4063
4062
|
operation: "update_message";
|
|
4064
4063
|
channel: string;
|
|
4064
|
+
ts: string;
|
|
4065
4065
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4066
4066
|
text?: string | undefined;
|
|
4067
4067
|
attachments?: {
|
|
4068
4068
|
title?: string | undefined;
|
|
4069
|
-
text?: string | undefined;
|
|
4070
|
-
image_url?: string | undefined;
|
|
4071
4069
|
fields?: {
|
|
4072
4070
|
value: string;
|
|
4073
4071
|
title: string;
|
|
4074
4072
|
short?: boolean | undefined;
|
|
4075
4073
|
}[] | undefined;
|
|
4074
|
+
text?: string | undefined;
|
|
4076
4075
|
color?: string | undefined;
|
|
4077
4076
|
pretext?: string | undefined;
|
|
4078
4077
|
author_name?: string | undefined;
|
|
4079
4078
|
author_link?: string | undefined;
|
|
4080
4079
|
author_icon?: string | undefined;
|
|
4081
4080
|
title_link?: string | undefined;
|
|
4081
|
+
image_url?: string | undefined;
|
|
4082
4082
|
thumb_url?: string | undefined;
|
|
4083
4083
|
footer?: string | undefined;
|
|
4084
4084
|
footer_icon?: string | undefined;
|
|
@@ -4110,14 +4110,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4110
4110
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4111
4111
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4112
4112
|
}, "strip", z.ZodTypeAny, {
|
|
4113
|
-
type: "
|
|
4113
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4114
4114
|
emoji?: boolean | undefined;
|
|
4115
4115
|
text?: string | undefined;
|
|
4116
4116
|
image_url?: string | undefined;
|
|
4117
4117
|
verbatim?: boolean | undefined;
|
|
4118
4118
|
alt_text?: string | undefined;
|
|
4119
4119
|
}, {
|
|
4120
|
-
type: "
|
|
4120
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4121
4121
|
emoji?: boolean | undefined;
|
|
4122
4122
|
text?: string | undefined;
|
|
4123
4123
|
image_url?: string | undefined;
|
|
@@ -4126,26 +4126,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4126
4126
|
}>, "many">>;
|
|
4127
4127
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4128
4128
|
}, {
|
|
4129
|
-
ts: string;
|
|
4130
4129
|
operation: "update_message";
|
|
4131
4130
|
channel: string;
|
|
4131
|
+
ts: string;
|
|
4132
4132
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
4133
|
text?: string | undefined;
|
|
4134
4134
|
attachments?: {
|
|
4135
4135
|
title?: string | undefined;
|
|
4136
|
-
text?: string | undefined;
|
|
4137
|
-
image_url?: string | undefined;
|
|
4138
4136
|
fields?: {
|
|
4139
4137
|
value: string;
|
|
4140
4138
|
title: string;
|
|
4141
4139
|
short?: boolean | undefined;
|
|
4142
4140
|
}[] | undefined;
|
|
4141
|
+
text?: string | undefined;
|
|
4143
4142
|
color?: string | undefined;
|
|
4144
4143
|
pretext?: string | undefined;
|
|
4145
4144
|
author_name?: string | undefined;
|
|
4146
4145
|
author_link?: string | undefined;
|
|
4147
4146
|
author_icon?: string | undefined;
|
|
4148
4147
|
title_link?: string | undefined;
|
|
4148
|
+
image_url?: string | undefined;
|
|
4149
4149
|
thumb_url?: string | undefined;
|
|
4150
4150
|
footer?: string | undefined;
|
|
4151
4151
|
footer_icon?: string | undefined;
|
|
@@ -4177,14 +4177,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4177
4177
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4178
4178
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4179
4179
|
}, "strip", z.ZodTypeAny, {
|
|
4180
|
-
type: "
|
|
4180
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4181
4181
|
emoji?: boolean | undefined;
|
|
4182
4182
|
text?: string | undefined;
|
|
4183
4183
|
image_url?: string | undefined;
|
|
4184
4184
|
verbatim?: boolean | undefined;
|
|
4185
4185
|
alt_text?: string | undefined;
|
|
4186
4186
|
}, {
|
|
4187
|
-
type: "
|
|
4187
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4188
4188
|
emoji?: boolean | undefined;
|
|
4189
4189
|
text?: string | undefined;
|
|
4190
4190
|
image_url?: string | undefined;
|
|
@@ -4198,14 +4198,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4198
4198
|
ts: z.ZodString;
|
|
4199
4199
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4200
4200
|
}, "strip", z.ZodTypeAny, {
|
|
4201
|
-
ts: string;
|
|
4202
4201
|
operation: "delete_message";
|
|
4203
4202
|
channel: string;
|
|
4203
|
+
ts: string;
|
|
4204
4204
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4205
4205
|
}, {
|
|
4206
|
-
ts: string;
|
|
4207
4206
|
operation: "delete_message";
|
|
4208
4207
|
channel: string;
|
|
4208
|
+
ts: string;
|
|
4209
4209
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4210
4210
|
}>, z.ZodObject<{
|
|
4211
4211
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -4314,14 +4314,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4314
4314
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4315
4315
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4316
4316
|
}, "strip", z.ZodTypeAny, {
|
|
4317
|
-
type: "
|
|
4317
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4318
4318
|
emoji?: boolean | undefined;
|
|
4319
4319
|
text?: string | undefined;
|
|
4320
4320
|
image_url?: string | undefined;
|
|
4321
4321
|
verbatim?: boolean | undefined;
|
|
4322
4322
|
alt_text?: string | undefined;
|
|
4323
4323
|
}, {
|
|
4324
|
-
type: "
|
|
4324
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4325
4325
|
emoji?: boolean | undefined;
|
|
4326
4326
|
text?: string | undefined;
|
|
4327
4327
|
image_url?: string | undefined;
|
|
@@ -4354,14 +4354,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4354
4354
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4355
4355
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4356
4356
|
}, "strip", z.ZodTypeAny, {
|
|
4357
|
-
type: "
|
|
4357
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4358
4358
|
emoji?: boolean | undefined;
|
|
4359
4359
|
text?: string | undefined;
|
|
4360
4360
|
image_url?: string | undefined;
|
|
4361
4361
|
verbatim?: boolean | undefined;
|
|
4362
4362
|
alt_text?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
|
-
type: "
|
|
4364
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4365
4365
|
emoji?: boolean | undefined;
|
|
4366
4366
|
text?: string | undefined;
|
|
4367
4367
|
image_url?: string | undefined;
|
|
@@ -4394,14 +4394,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4394
4394
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4395
4395
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4396
4396
|
}, "strip", z.ZodTypeAny, {
|
|
4397
|
-
type: "
|
|
4397
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4398
4398
|
emoji?: boolean | undefined;
|
|
4399
4399
|
text?: string | undefined;
|
|
4400
4400
|
image_url?: string | undefined;
|
|
4401
4401
|
verbatim?: boolean | undefined;
|
|
4402
4402
|
alt_text?: string | undefined;
|
|
4403
4403
|
}, {
|
|
4404
|
-
type: "
|
|
4404
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4405
4405
|
emoji?: boolean | undefined;
|
|
4406
4406
|
text?: string | undefined;
|
|
4407
4407
|
image_url?: string | undefined;
|
|
@@ -4413,9 +4413,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4413
4413
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4414
4414
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4415
4415
|
}, "strip", z.ZodTypeAny, {
|
|
4416
|
-
text: string;
|
|
4417
4416
|
operation: "schedule_message";
|
|
4418
4417
|
channel: string;
|
|
4418
|
+
text: string;
|
|
4419
4419
|
unfurl_links: boolean;
|
|
4420
4420
|
unfurl_media: boolean;
|
|
4421
4421
|
post_at: number;
|
|
@@ -4446,14 +4446,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4446
4446
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4447
4447
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4448
4448
|
}, "strip", z.ZodTypeAny, {
|
|
4449
|
-
type: "
|
|
4449
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4450
4450
|
emoji?: boolean | undefined;
|
|
4451
4451
|
text?: string | undefined;
|
|
4452
4452
|
image_url?: string | undefined;
|
|
4453
4453
|
verbatim?: boolean | undefined;
|
|
4454
4454
|
alt_text?: string | undefined;
|
|
4455
4455
|
}, {
|
|
4456
|
-
type: "
|
|
4456
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4457
4457
|
emoji?: boolean | undefined;
|
|
4458
4458
|
text?: string | undefined;
|
|
4459
4459
|
image_url?: string | undefined;
|
|
@@ -4463,9 +4463,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4463
4463
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4464
4464
|
thread_ts?: string | undefined;
|
|
4465
4465
|
}, {
|
|
4466
|
-
text: string;
|
|
4467
4466
|
operation: "schedule_message";
|
|
4468
4467
|
channel: string;
|
|
4468
|
+
text: string;
|
|
4469
4469
|
post_at: number;
|
|
4470
4470
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4471
4471
|
blocks?: z.objectInputType<{
|
|
@@ -4494,14 +4494,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4494
4494
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4495
4495
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4496
4496
|
}, "strip", z.ZodTypeAny, {
|
|
4497
|
-
type: "
|
|
4497
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4498
4498
|
emoji?: boolean | undefined;
|
|
4499
4499
|
text?: string | undefined;
|
|
4500
4500
|
image_url?: string | undefined;
|
|
4501
4501
|
verbatim?: boolean | undefined;
|
|
4502
4502
|
alt_text?: string | undefined;
|
|
4503
4503
|
}, {
|
|
4504
|
-
type: "
|
|
4504
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4505
4505
|
emoji?: boolean | undefined;
|
|
4506
4506
|
text?: string | undefined;
|
|
4507
4507
|
image_url?: string | undefined;
|
|
@@ -4557,13 +4557,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4557
4557
|
}>, "many">>;
|
|
4558
4558
|
}, "strip", z.ZodTypeAny, {
|
|
4559
4559
|
type: string;
|
|
4560
|
-
user?: string | undefined;
|
|
4561
4560
|
text?: string | undefined;
|
|
4562
|
-
ts?: string | undefined;
|
|
4563
4561
|
username?: string | undefined;
|
|
4562
|
+
ts?: string | undefined;
|
|
4564
4563
|
attachments?: unknown[] | undefined;
|
|
4565
4564
|
blocks?: unknown[] | undefined;
|
|
4566
4565
|
thread_ts?: string | undefined;
|
|
4566
|
+
user?: string | undefined;
|
|
4567
4567
|
bot_id?: string | undefined;
|
|
4568
4568
|
bot_profile?: {
|
|
4569
4569
|
name?: string | undefined;
|
|
@@ -4582,13 +4582,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4582
4582
|
}[] | undefined;
|
|
4583
4583
|
}, {
|
|
4584
4584
|
type: string;
|
|
4585
|
-
user?: string | undefined;
|
|
4586
4585
|
text?: string | undefined;
|
|
4587
|
-
ts?: string | undefined;
|
|
4588
4586
|
username?: string | undefined;
|
|
4587
|
+
ts?: string | undefined;
|
|
4589
4588
|
attachments?: unknown[] | undefined;
|
|
4590
4589
|
blocks?: unknown[] | undefined;
|
|
4591
4590
|
thread_ts?: string | undefined;
|
|
4591
|
+
user?: string | undefined;
|
|
4592
4592
|
bot_id?: string | undefined;
|
|
4593
4593
|
bot_profile?: {
|
|
4594
4594
|
name?: string | undefined;
|
|
@@ -4609,19 +4609,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4609
4609
|
error: z.ZodString;
|
|
4610
4610
|
success: z.ZodBoolean;
|
|
4611
4611
|
}, "strip", z.ZodTypeAny, {
|
|
4612
|
-
error: string;
|
|
4613
4612
|
success: boolean;
|
|
4613
|
+
error: string;
|
|
4614
4614
|
operation: "send_message";
|
|
4615
4615
|
ok: boolean;
|
|
4616
4616
|
message?: {
|
|
4617
4617
|
type: string;
|
|
4618
|
-
user?: string | undefined;
|
|
4619
4618
|
text?: string | undefined;
|
|
4620
|
-
ts?: string | undefined;
|
|
4621
4619
|
username?: string | undefined;
|
|
4620
|
+
ts?: string | undefined;
|
|
4622
4621
|
attachments?: unknown[] | undefined;
|
|
4623
4622
|
blocks?: unknown[] | undefined;
|
|
4624
4623
|
thread_ts?: string | undefined;
|
|
4624
|
+
user?: string | undefined;
|
|
4625
4625
|
bot_id?: string | undefined;
|
|
4626
4626
|
bot_profile?: {
|
|
4627
4627
|
name?: string | undefined;
|
|
@@ -4639,22 +4639,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4639
4639
|
count: number;
|
|
4640
4640
|
}[] | undefined;
|
|
4641
4641
|
} | undefined;
|
|
4642
|
-
ts?: string | undefined;
|
|
4643
4642
|
channel?: string | undefined;
|
|
4643
|
+
ts?: string | undefined;
|
|
4644
4644
|
}, {
|
|
4645
|
-
error: string;
|
|
4646
4645
|
success: boolean;
|
|
4646
|
+
error: string;
|
|
4647
4647
|
operation: "send_message";
|
|
4648
4648
|
ok: boolean;
|
|
4649
4649
|
message?: {
|
|
4650
4650
|
type: string;
|
|
4651
|
-
user?: string | undefined;
|
|
4652
4651
|
text?: string | undefined;
|
|
4653
|
-
ts?: string | undefined;
|
|
4654
4652
|
username?: string | undefined;
|
|
4653
|
+
ts?: string | undefined;
|
|
4655
4654
|
attachments?: unknown[] | undefined;
|
|
4656
4655
|
blocks?: unknown[] | undefined;
|
|
4657
4656
|
thread_ts?: string | undefined;
|
|
4657
|
+
user?: string | undefined;
|
|
4658
4658
|
bot_id?: string | undefined;
|
|
4659
4659
|
bot_profile?: {
|
|
4660
4660
|
name?: string | undefined;
|
|
@@ -4672,8 +4672,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4672
4672
|
count: number;
|
|
4673
4673
|
}[] | undefined;
|
|
4674
4674
|
} | undefined;
|
|
4675
|
-
ts?: string | undefined;
|
|
4676
4675
|
channel?: string | undefined;
|
|
4676
|
+
ts?: string | undefined;
|
|
4677
4677
|
}>, z.ZodObject<{
|
|
4678
4678
|
operation: z.ZodLiteral<"list_channels">;
|
|
4679
4679
|
ok: z.ZodBoolean;
|
|
@@ -4803,13 +4803,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4803
4803
|
error: z.ZodString;
|
|
4804
4804
|
success: z.ZodBoolean;
|
|
4805
4805
|
}, "strip", z.ZodTypeAny, {
|
|
4806
|
-
error: string;
|
|
4807
4806
|
success: boolean;
|
|
4807
|
+
error: string;
|
|
4808
4808
|
operation: "list_channels";
|
|
4809
4809
|
ok: boolean;
|
|
4810
|
-
response_metadata?: {
|
|
4811
|
-
next_cursor: string;
|
|
4812
|
-
} | undefined;
|
|
4813
4810
|
channels?: {
|
|
4814
4811
|
name: string;
|
|
4815
4812
|
id: string;
|
|
@@ -4844,14 +4841,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4844
4841
|
} | undefined;
|
|
4845
4842
|
num_members?: number | undefined;
|
|
4846
4843
|
}[] | undefined;
|
|
4844
|
+
response_metadata?: {
|
|
4845
|
+
next_cursor: string;
|
|
4846
|
+
} | undefined;
|
|
4847
4847
|
}, {
|
|
4848
|
-
error: string;
|
|
4849
4848
|
success: boolean;
|
|
4849
|
+
error: string;
|
|
4850
4850
|
operation: "list_channels";
|
|
4851
4851
|
ok: boolean;
|
|
4852
|
-
response_metadata?: {
|
|
4853
|
-
next_cursor: string;
|
|
4854
|
-
} | undefined;
|
|
4855
4852
|
channels?: {
|
|
4856
4853
|
name: string;
|
|
4857
4854
|
id: string;
|
|
@@ -4886,6 +4883,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4886
4883
|
} | undefined;
|
|
4887
4884
|
num_members?: number | undefined;
|
|
4888
4885
|
}[] | undefined;
|
|
4886
|
+
response_metadata?: {
|
|
4887
|
+
next_cursor: string;
|
|
4888
|
+
} | undefined;
|
|
4889
4889
|
}>, z.ZodObject<{
|
|
4890
4890
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
4891
4891
|
ok: z.ZodBoolean;
|
|
@@ -5008,8 +5008,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5008
5008
|
error: z.ZodString;
|
|
5009
5009
|
success: z.ZodBoolean;
|
|
5010
5010
|
}, "strip", z.ZodTypeAny, {
|
|
5011
|
-
error: string;
|
|
5012
5011
|
success: boolean;
|
|
5012
|
+
error: string;
|
|
5013
5013
|
operation: "get_channel_info";
|
|
5014
5014
|
ok: boolean;
|
|
5015
5015
|
channel?: {
|
|
@@ -5047,8 +5047,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5047
5047
|
num_members?: number | undefined;
|
|
5048
5048
|
} | undefined;
|
|
5049
5049
|
}, {
|
|
5050
|
-
error: string;
|
|
5051
5050
|
success: boolean;
|
|
5051
|
+
error: string;
|
|
5052
5052
|
operation: "get_channel_info";
|
|
5053
5053
|
ok: boolean;
|
|
5054
5054
|
channel?: {
|
|
@@ -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;
|
|
@@ -5277,13 +5277,20 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5277
5277
|
error: z.ZodString;
|
|
5278
5278
|
success: z.ZodBoolean;
|
|
5279
5279
|
}, "strip", z.ZodTypeAny, {
|
|
5280
|
-
error: string;
|
|
5281
5280
|
success: boolean;
|
|
5281
|
+
error: string;
|
|
5282
5282
|
operation: "get_user_info";
|
|
5283
5283
|
ok: boolean;
|
|
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;
|
|
@@ -5328,13 +5328,20 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5328
5328
|
has_2fa?: boolean | undefined;
|
|
5329
5329
|
} | undefined;
|
|
5330
5330
|
}, {
|
|
5331
|
-
error: string;
|
|
5332
5331
|
success: boolean;
|
|
5332
|
+
error: string;
|
|
5333
5333
|
operation: "get_user_info";
|
|
5334
5334
|
ok: boolean;
|
|
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;
|
|
@@ -5577,8 +5577,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5577
5577
|
error: z.ZodString;
|
|
5578
5578
|
success: z.ZodBoolean;
|
|
5579
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5580
|
-
error: string;
|
|
5581
5580
|
success: boolean;
|
|
5581
|
+
error: string;
|
|
5582
5582
|
operation: "list_users";
|
|
5583
5583
|
ok: boolean;
|
|
5584
5584
|
response_metadata?: {
|
|
@@ -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;
|
|
@@ -5631,8 +5631,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5631
5631
|
has_2fa?: boolean | undefined;
|
|
5632
5632
|
}[] | undefined;
|
|
5633
5633
|
}, {
|
|
5634
|
-
error: string;
|
|
5635
5634
|
success: boolean;
|
|
5635
|
+
error: string;
|
|
5636
5636
|
operation: "list_users";
|
|
5637
5637
|
ok: boolean;
|
|
5638
5638
|
response_metadata?: {
|
|
@@ -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;
|
|
@@ -5726,13 +5726,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5726
5726
|
}>, "many">>;
|
|
5727
5727
|
}, "strip", z.ZodTypeAny, {
|
|
5728
5728
|
type: string;
|
|
5729
|
-
user?: string | undefined;
|
|
5730
5729
|
text?: string | undefined;
|
|
5731
|
-
ts?: string | undefined;
|
|
5732
5730
|
username?: string | undefined;
|
|
5731
|
+
ts?: string | undefined;
|
|
5733
5732
|
attachments?: unknown[] | undefined;
|
|
5734
5733
|
blocks?: unknown[] | undefined;
|
|
5735
5734
|
thread_ts?: string | undefined;
|
|
5735
|
+
user?: string | undefined;
|
|
5736
5736
|
bot_id?: string | undefined;
|
|
5737
5737
|
bot_profile?: {
|
|
5738
5738
|
name?: string | undefined;
|
|
@@ -5751,13 +5751,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5751
5751
|
}[] | undefined;
|
|
5752
5752
|
}, {
|
|
5753
5753
|
type: string;
|
|
5754
|
-
user?: string | undefined;
|
|
5755
5754
|
text?: string | undefined;
|
|
5756
|
-
ts?: string | undefined;
|
|
5757
5755
|
username?: string | undefined;
|
|
5756
|
+
ts?: string | undefined;
|
|
5758
5757
|
attachments?: unknown[] | undefined;
|
|
5759
5758
|
blocks?: unknown[] | undefined;
|
|
5760
5759
|
thread_ts?: string | undefined;
|
|
5760
|
+
user?: string | undefined;
|
|
5761
5761
|
bot_id?: string | undefined;
|
|
5762
5762
|
bot_profile?: {
|
|
5763
5763
|
name?: string | undefined;
|
|
@@ -5786,19 +5786,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5786
5786
|
error: z.ZodString;
|
|
5787
5787
|
success: z.ZodBoolean;
|
|
5788
5788
|
}, "strip", z.ZodTypeAny, {
|
|
5789
|
-
error: string;
|
|
5790
5789
|
success: boolean;
|
|
5790
|
+
error: string;
|
|
5791
5791
|
operation: "get_conversation_history";
|
|
5792
5792
|
ok: boolean;
|
|
5793
|
+
response_metadata?: {
|
|
5794
|
+
next_cursor: string;
|
|
5795
|
+
} | undefined;
|
|
5793
5796
|
messages?: {
|
|
5794
5797
|
type: string;
|
|
5795
|
-
user?: string | undefined;
|
|
5796
5798
|
text?: string | undefined;
|
|
5797
|
-
ts?: string | undefined;
|
|
5798
5799
|
username?: string | undefined;
|
|
5800
|
+
ts?: string | undefined;
|
|
5799
5801
|
attachments?: unknown[] | undefined;
|
|
5800
5802
|
blocks?: unknown[] | undefined;
|
|
5801
5803
|
thread_ts?: string | undefined;
|
|
5804
|
+
user?: string | undefined;
|
|
5802
5805
|
bot_id?: string | undefined;
|
|
5803
5806
|
bot_profile?: {
|
|
5804
5807
|
name?: string | undefined;
|
|
@@ -5816,24 +5819,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5816
5819
|
count: number;
|
|
5817
5820
|
}[] | undefined;
|
|
5818
5821
|
}[] | undefined;
|
|
5819
|
-
response_metadata?: {
|
|
5820
|
-
next_cursor: string;
|
|
5821
|
-
} | undefined;
|
|
5822
5822
|
has_more?: boolean | undefined;
|
|
5823
5823
|
}, {
|
|
5824
|
-
error: string;
|
|
5825
5824
|
success: boolean;
|
|
5825
|
+
error: string;
|
|
5826
5826
|
operation: "get_conversation_history";
|
|
5827
5827
|
ok: boolean;
|
|
5828
|
+
response_metadata?: {
|
|
5829
|
+
next_cursor: string;
|
|
5830
|
+
} | undefined;
|
|
5828
5831
|
messages?: {
|
|
5829
5832
|
type: string;
|
|
5830
|
-
user?: string | undefined;
|
|
5831
5833
|
text?: string | undefined;
|
|
5832
|
-
ts?: string | undefined;
|
|
5833
5834
|
username?: string | undefined;
|
|
5835
|
+
ts?: string | undefined;
|
|
5834
5836
|
attachments?: unknown[] | undefined;
|
|
5835
5837
|
blocks?: unknown[] | undefined;
|
|
5836
5838
|
thread_ts?: string | undefined;
|
|
5839
|
+
user?: string | undefined;
|
|
5837
5840
|
bot_id?: string | undefined;
|
|
5838
5841
|
bot_profile?: {
|
|
5839
5842
|
name?: string | undefined;
|
|
@@ -5851,9 +5854,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5851
5854
|
count: number;
|
|
5852
5855
|
}[] | undefined;
|
|
5853
5856
|
}[] | undefined;
|
|
5854
|
-
response_metadata?: {
|
|
5855
|
-
next_cursor: string;
|
|
5856
|
-
} | undefined;
|
|
5857
5857
|
has_more?: boolean | undefined;
|
|
5858
5858
|
}>, z.ZodObject<{
|
|
5859
5859
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -5897,13 +5897,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5897
5897
|
}>, "many">>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
5899
|
type: string;
|
|
5900
|
-
user?: string | undefined;
|
|
5901
5900
|
text?: string | undefined;
|
|
5902
|
-
ts?: string | undefined;
|
|
5903
5901
|
username?: string | undefined;
|
|
5902
|
+
ts?: string | undefined;
|
|
5904
5903
|
attachments?: unknown[] | undefined;
|
|
5905
5904
|
blocks?: unknown[] | undefined;
|
|
5906
5905
|
thread_ts?: string | undefined;
|
|
5906
|
+
user?: string | undefined;
|
|
5907
5907
|
bot_id?: string | undefined;
|
|
5908
5908
|
bot_profile?: {
|
|
5909
5909
|
name?: string | undefined;
|
|
@@ -5922,13 +5922,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5922
5922
|
}[] | undefined;
|
|
5923
5923
|
}, {
|
|
5924
5924
|
type: string;
|
|
5925
|
-
user?: string | undefined;
|
|
5926
5925
|
text?: string | undefined;
|
|
5927
|
-
ts?: string | undefined;
|
|
5928
5926
|
username?: string | undefined;
|
|
5927
|
+
ts?: string | undefined;
|
|
5929
5928
|
attachments?: unknown[] | undefined;
|
|
5930
5929
|
blocks?: unknown[] | undefined;
|
|
5931
5930
|
thread_ts?: string | undefined;
|
|
5931
|
+
user?: string | undefined;
|
|
5932
5932
|
bot_id?: string | undefined;
|
|
5933
5933
|
bot_profile?: {
|
|
5934
5934
|
name?: string | undefined;
|
|
@@ -5957,19 +5957,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5957
5957
|
error: z.ZodString;
|
|
5958
5958
|
success: z.ZodBoolean;
|
|
5959
5959
|
}, "strip", z.ZodTypeAny, {
|
|
5960
|
-
error: string;
|
|
5961
5960
|
success: boolean;
|
|
5961
|
+
error: string;
|
|
5962
5962
|
operation: "get_thread_replies";
|
|
5963
5963
|
ok: boolean;
|
|
5964
|
+
response_metadata?: {
|
|
5965
|
+
next_cursor: string;
|
|
5966
|
+
} | undefined;
|
|
5964
5967
|
messages?: {
|
|
5965
5968
|
type: string;
|
|
5966
|
-
user?: string | undefined;
|
|
5967
5969
|
text?: string | undefined;
|
|
5968
|
-
ts?: string | undefined;
|
|
5969
5970
|
username?: string | undefined;
|
|
5971
|
+
ts?: string | undefined;
|
|
5970
5972
|
attachments?: unknown[] | undefined;
|
|
5971
5973
|
blocks?: unknown[] | undefined;
|
|
5972
5974
|
thread_ts?: string | undefined;
|
|
5975
|
+
user?: string | undefined;
|
|
5973
5976
|
bot_id?: string | undefined;
|
|
5974
5977
|
bot_profile?: {
|
|
5975
5978
|
name?: string | undefined;
|
|
@@ -5987,24 +5990,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5987
5990
|
count: number;
|
|
5988
5991
|
}[] | undefined;
|
|
5989
5992
|
}[] | undefined;
|
|
5990
|
-
response_metadata?: {
|
|
5991
|
-
next_cursor: string;
|
|
5992
|
-
} | undefined;
|
|
5993
5993
|
has_more?: boolean | undefined;
|
|
5994
5994
|
}, {
|
|
5995
|
-
error: string;
|
|
5996
5995
|
success: boolean;
|
|
5996
|
+
error: string;
|
|
5997
5997
|
operation: "get_thread_replies";
|
|
5998
5998
|
ok: boolean;
|
|
5999
|
+
response_metadata?: {
|
|
6000
|
+
next_cursor: string;
|
|
6001
|
+
} | undefined;
|
|
5999
6002
|
messages?: {
|
|
6000
6003
|
type: string;
|
|
6001
|
-
user?: string | undefined;
|
|
6002
6004
|
text?: string | undefined;
|
|
6003
|
-
ts?: string | undefined;
|
|
6004
6005
|
username?: string | undefined;
|
|
6006
|
+
ts?: string | undefined;
|
|
6005
6007
|
attachments?: unknown[] | undefined;
|
|
6006
6008
|
blocks?: unknown[] | undefined;
|
|
6007
6009
|
thread_ts?: string | undefined;
|
|
6010
|
+
user?: string | undefined;
|
|
6008
6011
|
bot_id?: string | undefined;
|
|
6009
6012
|
bot_profile?: {
|
|
6010
6013
|
name?: string | undefined;
|
|
@@ -6022,9 +6025,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6022
6025
|
count: number;
|
|
6023
6026
|
}[] | undefined;
|
|
6024
6027
|
}[] | undefined;
|
|
6025
|
-
response_metadata?: {
|
|
6026
|
-
next_cursor: string;
|
|
6027
|
-
} | undefined;
|
|
6028
6028
|
has_more?: boolean | undefined;
|
|
6029
6029
|
}>, z.ZodObject<{
|
|
6030
6030
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -6071,13 +6071,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6071
6071
|
}>, "many">>;
|
|
6072
6072
|
}, "strip", z.ZodTypeAny, {
|
|
6073
6073
|
type: string;
|
|
6074
|
-
user?: string | undefined;
|
|
6075
6074
|
text?: string | undefined;
|
|
6076
|
-
ts?: string | undefined;
|
|
6077
6075
|
username?: string | undefined;
|
|
6076
|
+
ts?: string | undefined;
|
|
6078
6077
|
attachments?: unknown[] | undefined;
|
|
6079
6078
|
blocks?: unknown[] | undefined;
|
|
6080
6079
|
thread_ts?: string | undefined;
|
|
6080
|
+
user?: string | undefined;
|
|
6081
6081
|
bot_id?: string | undefined;
|
|
6082
6082
|
bot_profile?: {
|
|
6083
6083
|
name?: string | undefined;
|
|
@@ -6096,13 +6096,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
}, {
|
|
6098
6098
|
type: string;
|
|
6099
|
-
user?: string | undefined;
|
|
6100
6099
|
text?: string | undefined;
|
|
6101
|
-
ts?: string | undefined;
|
|
6102
6100
|
username?: string | undefined;
|
|
6101
|
+
ts?: string | undefined;
|
|
6103
6102
|
attachments?: unknown[] | undefined;
|
|
6104
6103
|
blocks?: unknown[] | undefined;
|
|
6105
6104
|
thread_ts?: string | undefined;
|
|
6105
|
+
user?: string | undefined;
|
|
6106
6106
|
bot_id?: string | undefined;
|
|
6107
6107
|
bot_profile?: {
|
|
6108
6108
|
name?: string | undefined;
|
|
@@ -6123,19 +6123,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6123
6123
|
error: z.ZodString;
|
|
6124
6124
|
success: z.ZodBoolean;
|
|
6125
6125
|
}, "strip", z.ZodTypeAny, {
|
|
6126
|
-
error: string;
|
|
6127
6126
|
success: boolean;
|
|
6127
|
+
error: string;
|
|
6128
6128
|
operation: "update_message";
|
|
6129
6129
|
ok: boolean;
|
|
6130
6130
|
message?: {
|
|
6131
6131
|
type: string;
|
|
6132
|
-
user?: string | undefined;
|
|
6133
6132
|
text?: string | undefined;
|
|
6134
|
-
ts?: string | undefined;
|
|
6135
6133
|
username?: string | undefined;
|
|
6134
|
+
ts?: string | undefined;
|
|
6136
6135
|
attachments?: unknown[] | undefined;
|
|
6137
6136
|
blocks?: unknown[] | undefined;
|
|
6138
6137
|
thread_ts?: string | undefined;
|
|
6138
|
+
user?: string | undefined;
|
|
6139
6139
|
bot_id?: string | undefined;
|
|
6140
6140
|
bot_profile?: {
|
|
6141
6141
|
name?: string | undefined;
|
|
@@ -6153,23 +6153,23 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6153
6153
|
count: number;
|
|
6154
6154
|
}[] | undefined;
|
|
6155
6155
|
} | undefined;
|
|
6156
|
+
channel?: string | undefined;
|
|
6156
6157
|
text?: string | undefined;
|
|
6157
6158
|
ts?: string | undefined;
|
|
6158
|
-
channel?: string | undefined;
|
|
6159
6159
|
}, {
|
|
6160
|
-
error: string;
|
|
6161
6160
|
success: boolean;
|
|
6161
|
+
error: string;
|
|
6162
6162
|
operation: "update_message";
|
|
6163
6163
|
ok: boolean;
|
|
6164
6164
|
message?: {
|
|
6165
6165
|
type: string;
|
|
6166
|
-
user?: string | undefined;
|
|
6167
6166
|
text?: string | undefined;
|
|
6168
|
-
ts?: string | undefined;
|
|
6169
6167
|
username?: string | undefined;
|
|
6168
|
+
ts?: string | undefined;
|
|
6170
6169
|
attachments?: unknown[] | undefined;
|
|
6171
6170
|
blocks?: unknown[] | undefined;
|
|
6172
6171
|
thread_ts?: string | undefined;
|
|
6172
|
+
user?: string | undefined;
|
|
6173
6173
|
bot_id?: string | undefined;
|
|
6174
6174
|
bot_profile?: {
|
|
6175
6175
|
name?: string | undefined;
|
|
@@ -6187,9 +6187,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6187
6187
|
count: number;
|
|
6188
6188
|
}[] | undefined;
|
|
6189
6189
|
} | undefined;
|
|
6190
|
+
channel?: string | undefined;
|
|
6190
6191
|
text?: string | undefined;
|
|
6191
6192
|
ts?: string | undefined;
|
|
6192
|
-
channel?: string | undefined;
|
|
6193
6193
|
}>, z.ZodObject<{
|
|
6194
6194
|
operation: z.ZodLiteral<"delete_message">;
|
|
6195
6195
|
ok: z.ZodBoolean;
|
|
@@ -6198,32 +6198,32 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6198
6198
|
error: z.ZodString;
|
|
6199
6199
|
success: z.ZodBoolean;
|
|
6200
6200
|
}, "strip", z.ZodTypeAny, {
|
|
6201
|
-
error: string;
|
|
6202
6201
|
success: boolean;
|
|
6202
|
+
error: string;
|
|
6203
6203
|
operation: "delete_message";
|
|
6204
6204
|
ok: boolean;
|
|
6205
|
-
ts?: string | undefined;
|
|
6206
6205
|
channel?: string | undefined;
|
|
6206
|
+
ts?: string | undefined;
|
|
6207
6207
|
}, {
|
|
6208
|
-
error: string;
|
|
6209
6208
|
success: boolean;
|
|
6209
|
+
error: string;
|
|
6210
6210
|
operation: "delete_message";
|
|
6211
6211
|
ok: boolean;
|
|
6212
|
-
ts?: string | undefined;
|
|
6213
6212
|
channel?: string | undefined;
|
|
6213
|
+
ts?: string | undefined;
|
|
6214
6214
|
}>, z.ZodObject<{
|
|
6215
6215
|
operation: z.ZodLiteral<"add_reaction">;
|
|
6216
6216
|
ok: z.ZodBoolean;
|
|
6217
6217
|
error: z.ZodString;
|
|
6218
6218
|
success: z.ZodBoolean;
|
|
6219
6219
|
}, "strip", z.ZodTypeAny, {
|
|
6220
|
-
error: string;
|
|
6221
6220
|
success: boolean;
|
|
6221
|
+
error: string;
|
|
6222
6222
|
operation: "add_reaction";
|
|
6223
6223
|
ok: boolean;
|
|
6224
6224
|
}, {
|
|
6225
|
-
error: string;
|
|
6226
6225
|
success: boolean;
|
|
6226
|
+
error: string;
|
|
6227
6227
|
operation: "add_reaction";
|
|
6228
6228
|
ok: boolean;
|
|
6229
6229
|
}>, z.ZodObject<{
|
|
@@ -6232,13 +6232,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6232
6232
|
error: z.ZodString;
|
|
6233
6233
|
success: z.ZodBoolean;
|
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
|
6235
|
-
error: string;
|
|
6236
6235
|
success: boolean;
|
|
6236
|
+
error: string;
|
|
6237
6237
|
operation: "remove_reaction";
|
|
6238
6238
|
ok: boolean;
|
|
6239
6239
|
}, {
|
|
6240
|
-
error: string;
|
|
6241
6240
|
success: boolean;
|
|
6241
|
+
error: string;
|
|
6242
6242
|
operation: "remove_reaction";
|
|
6243
6243
|
ok: boolean;
|
|
6244
6244
|
}>, z.ZodObject<{
|
|
@@ -6364,8 +6364,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6364
6364
|
error: z.ZodString;
|
|
6365
6365
|
success: z.ZodBoolean;
|
|
6366
6366
|
}, "strip", z.ZodTypeAny, {
|
|
6367
|
-
error: string;
|
|
6368
6367
|
success: boolean;
|
|
6368
|
+
error: string;
|
|
6369
6369
|
operation: "join_channel";
|
|
6370
6370
|
ok: boolean;
|
|
6371
6371
|
channel?: {
|
|
@@ -6404,8 +6404,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6404
6404
|
} | undefined;
|
|
6405
6405
|
already_in_channel?: boolean | undefined;
|
|
6406
6406
|
}, {
|
|
6407
|
-
error: string;
|
|
6408
6407
|
success: boolean;
|
|
6408
|
+
error: string;
|
|
6409
6409
|
operation: "join_channel";
|
|
6410
6410
|
ok: boolean;
|
|
6411
6411
|
channel?: {
|
|
@@ -6479,17 +6479,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6479
6479
|
team_id: z.ZodString;
|
|
6480
6480
|
}, "strip", z.ZodTypeAny, {
|
|
6481
6481
|
ts: string;
|
|
6482
|
-
team_id: string;
|
|
6483
6482
|
reply_count: number;
|
|
6484
6483
|
reply_users_count: number;
|
|
6485
6484
|
reply_users: string[];
|
|
6485
|
+
team_id: string;
|
|
6486
6486
|
channel_name: string;
|
|
6487
6487
|
}, {
|
|
6488
6488
|
ts: string;
|
|
6489
|
-
team_id: string;
|
|
6490
6489
|
reply_count: number;
|
|
6491
6490
|
reply_users_count: number;
|
|
6492
6491
|
reply_users: string[];
|
|
6492
|
+
team_id: string;
|
|
6493
6493
|
channel_name: string;
|
|
6494
6494
|
}>, "many">>>;
|
|
6495
6495
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -6501,51 +6501,51 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6501
6501
|
team_id: z.ZodString;
|
|
6502
6502
|
}, "strip", z.ZodTypeAny, {
|
|
6503
6503
|
ts: string;
|
|
6504
|
-
team_id: string;
|
|
6505
6504
|
reply_count: number;
|
|
6506
6505
|
reply_users_count: number;
|
|
6507
6506
|
reply_users: string[];
|
|
6507
|
+
team_id: string;
|
|
6508
6508
|
channel_name: string;
|
|
6509
6509
|
}, {
|
|
6510
6510
|
ts: string;
|
|
6511
|
-
team_id: string;
|
|
6512
6511
|
reply_count: number;
|
|
6513
6512
|
reply_users_count: number;
|
|
6514
6513
|
reply_users: string[];
|
|
6514
|
+
team_id: string;
|
|
6515
6515
|
channel_name: string;
|
|
6516
6516
|
}>, "many">>>;
|
|
6517
6517
|
}, "strip", z.ZodTypeAny, {
|
|
6518
6518
|
public?: Record<string, {
|
|
6519
6519
|
ts: string;
|
|
6520
|
-
team_id: string;
|
|
6521
6520
|
reply_count: number;
|
|
6522
6521
|
reply_users_count: number;
|
|
6523
6522
|
reply_users: string[];
|
|
6523
|
+
team_id: string;
|
|
6524
6524
|
channel_name: string;
|
|
6525
6525
|
}[]> | undefined;
|
|
6526
6526
|
private?: Record<string, {
|
|
6527
6527
|
ts: string;
|
|
6528
|
-
team_id: string;
|
|
6529
6528
|
reply_count: number;
|
|
6530
6529
|
reply_users_count: number;
|
|
6531
6530
|
reply_users: string[];
|
|
6531
|
+
team_id: string;
|
|
6532
6532
|
channel_name: string;
|
|
6533
6533
|
}[]> | undefined;
|
|
6534
6534
|
}, {
|
|
6535
6535
|
public?: Record<string, {
|
|
6536
6536
|
ts: string;
|
|
6537
|
-
team_id: string;
|
|
6538
6537
|
reply_count: number;
|
|
6539
6538
|
reply_users_count: number;
|
|
6540
6539
|
reply_users: string[];
|
|
6540
|
+
team_id: string;
|
|
6541
6541
|
channel_name: string;
|
|
6542
6542
|
}[]> | undefined;
|
|
6543
6543
|
private?: Record<string, {
|
|
6544
6544
|
ts: string;
|
|
6545
|
-
team_id: string;
|
|
6546
6545
|
reply_count: number;
|
|
6547
6546
|
reply_users_count: number;
|
|
6548
6547
|
reply_users: string[];
|
|
6548
|
+
team_id: string;
|
|
6549
6549
|
channel_name: string;
|
|
6550
6550
|
}[]> | undefined;
|
|
6551
6551
|
}>>;
|
|
@@ -6555,10 +6555,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6555
6555
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
6556
6556
|
}, "strip", z.ZodTypeAny, {
|
|
6557
6557
|
name: string;
|
|
6558
|
-
user: string;
|
|
6559
|
-
id: string;
|
|
6560
6558
|
username: string;
|
|
6559
|
+
user: string;
|
|
6561
6560
|
timestamp: number;
|
|
6561
|
+
id: string;
|
|
6562
6562
|
created: number;
|
|
6563
6563
|
mimetype: string;
|
|
6564
6564
|
filetype: string;
|
|
@@ -6580,18 +6580,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6580
6580
|
shares?: {
|
|
6581
6581
|
public?: Record<string, {
|
|
6582
6582
|
ts: string;
|
|
6583
|
-
team_id: string;
|
|
6584
6583
|
reply_count: number;
|
|
6585
6584
|
reply_users_count: number;
|
|
6586
6585
|
reply_users: string[];
|
|
6586
|
+
team_id: string;
|
|
6587
6587
|
channel_name: string;
|
|
6588
6588
|
}[]> | undefined;
|
|
6589
6589
|
private?: Record<string, {
|
|
6590
6590
|
ts: string;
|
|
6591
|
-
team_id: string;
|
|
6592
6591
|
reply_count: number;
|
|
6593
6592
|
reply_users_count: number;
|
|
6594
6593
|
reply_users: string[];
|
|
6594
|
+
team_id: string;
|
|
6595
6595
|
channel_name: string;
|
|
6596
6596
|
}[]> | undefined;
|
|
6597
6597
|
} | undefined;
|
|
@@ -6600,10 +6600,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6600
6600
|
has_rich_preview?: boolean | undefined;
|
|
6601
6601
|
}, {
|
|
6602
6602
|
name: string;
|
|
6603
|
-
user: string;
|
|
6604
|
-
id: string;
|
|
6605
6603
|
username: string;
|
|
6604
|
+
user: string;
|
|
6606
6605
|
timestamp: number;
|
|
6606
|
+
id: string;
|
|
6607
6607
|
created: number;
|
|
6608
6608
|
mimetype: string;
|
|
6609
6609
|
filetype: string;
|
|
@@ -6625,18 +6625,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6625
6625
|
shares?: {
|
|
6626
6626
|
public?: Record<string, {
|
|
6627
6627
|
ts: string;
|
|
6628
|
-
team_id: string;
|
|
6629
6628
|
reply_count: number;
|
|
6630
6629
|
reply_users_count: number;
|
|
6631
6630
|
reply_users: string[];
|
|
6631
|
+
team_id: string;
|
|
6632
6632
|
channel_name: string;
|
|
6633
6633
|
}[]> | undefined;
|
|
6634
6634
|
private?: Record<string, {
|
|
6635
6635
|
ts: string;
|
|
6636
|
-
team_id: string;
|
|
6637
6636
|
reply_count: number;
|
|
6638
6637
|
reply_users_count: number;
|
|
6639
6638
|
reply_users: string[];
|
|
6639
|
+
team_id: string;
|
|
6640
6640
|
channel_name: string;
|
|
6641
6641
|
}[]> | undefined;
|
|
6642
6642
|
} | undefined;
|
|
@@ -6647,16 +6647,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6647
6647
|
error: z.ZodString;
|
|
6648
6648
|
success: z.ZodBoolean;
|
|
6649
6649
|
}, "strip", z.ZodTypeAny, {
|
|
6650
|
-
error: string;
|
|
6651
6650
|
success: boolean;
|
|
6651
|
+
error: string;
|
|
6652
6652
|
operation: "upload_file";
|
|
6653
6653
|
ok: boolean;
|
|
6654
6654
|
file?: {
|
|
6655
6655
|
name: string;
|
|
6656
|
-
user: string;
|
|
6657
|
-
id: string;
|
|
6658
6656
|
username: string;
|
|
6657
|
+
user: string;
|
|
6659
6658
|
timestamp: number;
|
|
6659
|
+
id: string;
|
|
6660
6660
|
created: number;
|
|
6661
6661
|
mimetype: string;
|
|
6662
6662
|
filetype: string;
|
|
@@ -6678,18 +6678,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6678
6678
|
shares?: {
|
|
6679
6679
|
public?: Record<string, {
|
|
6680
6680
|
ts: string;
|
|
6681
|
-
team_id: string;
|
|
6682
6681
|
reply_count: number;
|
|
6683
6682
|
reply_users_count: number;
|
|
6684
6683
|
reply_users: string[];
|
|
6684
|
+
team_id: string;
|
|
6685
6685
|
channel_name: string;
|
|
6686
6686
|
}[]> | undefined;
|
|
6687
6687
|
private?: Record<string, {
|
|
6688
6688
|
ts: string;
|
|
6689
|
-
team_id: string;
|
|
6690
6689
|
reply_count: number;
|
|
6691
6690
|
reply_users_count: number;
|
|
6692
6691
|
reply_users: string[];
|
|
6692
|
+
team_id: string;
|
|
6693
6693
|
channel_name: string;
|
|
6694
6694
|
}[]> | undefined;
|
|
6695
6695
|
} | undefined;
|
|
@@ -6698,16 +6698,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6698
6698
|
has_rich_preview?: boolean | undefined;
|
|
6699
6699
|
} | undefined;
|
|
6700
6700
|
}, {
|
|
6701
|
-
error: string;
|
|
6702
6701
|
success: boolean;
|
|
6702
|
+
error: string;
|
|
6703
6703
|
operation: "upload_file";
|
|
6704
6704
|
ok: boolean;
|
|
6705
6705
|
file?: {
|
|
6706
6706
|
name: string;
|
|
6707
|
-
user: string;
|
|
6708
|
-
id: string;
|
|
6709
6707
|
username: string;
|
|
6708
|
+
user: string;
|
|
6710
6709
|
timestamp: number;
|
|
6710
|
+
id: string;
|
|
6711
6711
|
created: number;
|
|
6712
6712
|
mimetype: string;
|
|
6713
6713
|
filetype: string;
|
|
@@ -6729,18 +6729,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6729
6729
|
shares?: {
|
|
6730
6730
|
public?: Record<string, {
|
|
6731
6731
|
ts: string;
|
|
6732
|
-
team_id: string;
|
|
6733
6732
|
reply_count: number;
|
|
6734
6733
|
reply_users_count: number;
|
|
6735
6734
|
reply_users: string[];
|
|
6735
|
+
team_id: string;
|
|
6736
6736
|
channel_name: string;
|
|
6737
6737
|
}[]> | undefined;
|
|
6738
6738
|
private?: Record<string, {
|
|
6739
6739
|
ts: string;
|
|
6740
|
-
team_id: string;
|
|
6741
6740
|
reply_count: number;
|
|
6742
6741
|
reply_users_count: number;
|
|
6743
6742
|
reply_users: string[];
|
|
6743
|
+
team_id: string;
|
|
6744
6744
|
channel_name: string;
|
|
6745
6745
|
}[]> | undefined;
|
|
6746
6746
|
} | undefined;
|
|
@@ -6757,16 +6757,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6757
6757
|
error: z.ZodString;
|
|
6758
6758
|
success: z.ZodBoolean;
|
|
6759
6759
|
}, "strip", z.ZodTypeAny, {
|
|
6760
|
-
error: string;
|
|
6761
6760
|
success: boolean;
|
|
6761
|
+
error: string;
|
|
6762
6762
|
operation: "schedule_message";
|
|
6763
6763
|
ok: boolean;
|
|
6764
6764
|
channel?: string | undefined;
|
|
6765
6765
|
post_at?: number | undefined;
|
|
6766
6766
|
scheduled_message_id?: string | undefined;
|
|
6767
6767
|
}, {
|
|
6768
|
-
error: string;
|
|
6769
6768
|
success: boolean;
|
|
6769
|
+
error: string;
|
|
6770
6770
|
operation: "schedule_message";
|
|
6771
6771
|
ok: boolean;
|
|
6772
6772
|
channel?: string | undefined;
|