@bubblelab/bubble-core 0.1.80 → 0.1.82
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 +107 -107
- package/dist/bubbles/service-bubble/agi-inc.d.ts +120 -120
- package/dist/bubbles/service-bubble/ai-agent.d.ts +32 -32
- package/dist/bubbles/service-bubble/airtable.d.ts +170 -170
- package/dist/bubbles/service-bubble/apify/apify.d.ts +26 -26
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +62 -62
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +302 -302
- package/dist/bubbles/service-bubble/followupboss.d.ts +148 -148
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +88 -88
- package/dist/bubbles/service-bubble/gmail.d.ts +584 -584
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +66 -66
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +46 -46
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/notion/notion.d.ts +92 -92
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +32 -32
- package/dist/bubbles/service-bubble/slack/slack.d.ts +668 -668
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +75 -75
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/telegram.d.ts +108 -108
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +26 -26
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +304 -304
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +110 -110
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +42 -42
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
- package/dist/bubbles.json +4 -2
- package/package.json +2 -2
|
@@ -39,18 +39,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
text?: string | undefined;
|
|
42
|
+
image_url?: string | undefined;
|
|
43
|
+
fields?: {
|
|
44
|
+
value: string;
|
|
45
|
+
title: string;
|
|
46
|
+
short?: boolean | undefined;
|
|
47
|
+
}[] | undefined;
|
|
42
48
|
color?: string | undefined;
|
|
43
49
|
pretext?: string | undefined;
|
|
44
50
|
author_name?: string | undefined;
|
|
45
51
|
author_link?: string | undefined;
|
|
46
52
|
author_icon?: string | undefined;
|
|
47
53
|
title_link?: string | undefined;
|
|
48
|
-
fields?: {
|
|
49
|
-
value: string;
|
|
50
|
-
title: string;
|
|
51
|
-
short?: boolean | undefined;
|
|
52
|
-
}[] | undefined;
|
|
53
|
-
image_url?: string | undefined;
|
|
54
54
|
thumb_url?: string | undefined;
|
|
55
55
|
footer?: string | undefined;
|
|
56
56
|
footer_icon?: string | undefined;
|
|
@@ -58,18 +58,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
60
|
text?: string | undefined;
|
|
61
|
+
image_url?: string | undefined;
|
|
62
|
+
fields?: {
|
|
63
|
+
value: string;
|
|
64
|
+
title: string;
|
|
65
|
+
short?: boolean | undefined;
|
|
66
|
+
}[] | undefined;
|
|
61
67
|
color?: string | undefined;
|
|
62
68
|
pretext?: string | undefined;
|
|
63
69
|
author_name?: string | undefined;
|
|
64
70
|
author_link?: string | undefined;
|
|
65
71
|
author_icon?: string | undefined;
|
|
66
72
|
title_link?: string | undefined;
|
|
67
|
-
fields?: {
|
|
68
|
-
value: string;
|
|
69
|
-
title: string;
|
|
70
|
-
short?: boolean | undefined;
|
|
71
|
-
}[] | undefined;
|
|
72
|
-
image_url?: string | undefined;
|
|
73
73
|
thumb_url?: string | undefined;
|
|
74
74
|
footer?: string | undefined;
|
|
75
75
|
footer_icon?: string | undefined;
|
|
@@ -101,17 +101,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
105
|
+
emoji?: boolean | undefined;
|
|
105
106
|
text?: string | undefined;
|
|
106
107
|
image_url?: string | undefined;
|
|
107
|
-
emoji?: boolean | undefined;
|
|
108
108
|
verbatim?: boolean | undefined;
|
|
109
109
|
alt_text?: string | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
type: "
|
|
111
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
112
|
+
emoji?: boolean | undefined;
|
|
112
113
|
text?: string | undefined;
|
|
113
114
|
image_url?: string | undefined;
|
|
114
|
-
emoji?: boolean | undefined;
|
|
115
115
|
verbatim?: boolean | undefined;
|
|
116
116
|
alt_text?: string | undefined;
|
|
117
117
|
}>, "many">>;
|
|
@@ -141,17 +141,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
145
|
+
emoji?: boolean | undefined;
|
|
145
146
|
text?: string | undefined;
|
|
146
147
|
image_url?: string | undefined;
|
|
147
|
-
emoji?: boolean | undefined;
|
|
148
148
|
verbatim?: boolean | undefined;
|
|
149
149
|
alt_text?: string | undefined;
|
|
150
150
|
}, {
|
|
151
|
-
type: "
|
|
151
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
152
|
+
emoji?: boolean | undefined;
|
|
152
153
|
text?: string | undefined;
|
|
153
154
|
image_url?: string | undefined;
|
|
154
|
-
emoji?: boolean | undefined;
|
|
155
155
|
verbatim?: boolean | undefined;
|
|
156
156
|
alt_text?: string | undefined;
|
|
157
157
|
}>, "many">>;
|
|
@@ -181,17 +181,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
185
|
+
emoji?: boolean | undefined;
|
|
185
186
|
text?: string | undefined;
|
|
186
187
|
image_url?: string | undefined;
|
|
187
|
-
emoji?: boolean | undefined;
|
|
188
188
|
verbatim?: boolean | undefined;
|
|
189
189
|
alt_text?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
type: "
|
|
191
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
192
|
+
emoji?: boolean | undefined;
|
|
192
193
|
text?: string | undefined;
|
|
193
194
|
image_url?: string | undefined;
|
|
194
|
-
emoji?: boolean | undefined;
|
|
195
195
|
verbatim?: boolean | undefined;
|
|
196
196
|
alt_text?: string | undefined;
|
|
197
197
|
}>, "many">>;
|
|
@@ -202,30 +202,31 @@ 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;
|
|
205
206
|
operation: "send_message";
|
|
206
207
|
channel: string;
|
|
207
|
-
text: string;
|
|
208
208
|
reply_broadcast: boolean;
|
|
209
209
|
unfurl_links: boolean;
|
|
210
210
|
unfurl_media: boolean;
|
|
211
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
211
212
|
username?: string | undefined;
|
|
212
213
|
icon_emoji?: string | undefined;
|
|
213
214
|
icon_url?: string | undefined;
|
|
214
215
|
attachments?: {
|
|
215
216
|
title?: string | undefined;
|
|
216
217
|
text?: string | undefined;
|
|
218
|
+
image_url?: string | undefined;
|
|
219
|
+
fields?: {
|
|
220
|
+
value: string;
|
|
221
|
+
title: string;
|
|
222
|
+
short?: boolean | undefined;
|
|
223
|
+
}[] | undefined;
|
|
217
224
|
color?: string | undefined;
|
|
218
225
|
pretext?: string | undefined;
|
|
219
226
|
author_name?: string | undefined;
|
|
220
227
|
author_link?: string | undefined;
|
|
221
228
|
author_icon?: string | undefined;
|
|
222
229
|
title_link?: string | undefined;
|
|
223
|
-
fields?: {
|
|
224
|
-
value: string;
|
|
225
|
-
title: string;
|
|
226
|
-
short?: boolean | undefined;
|
|
227
|
-
}[] | undefined;
|
|
228
|
-
image_url?: string | undefined;
|
|
229
230
|
thumb_url?: string | undefined;
|
|
230
231
|
footer?: string | undefined;
|
|
231
232
|
footer_icon?: string | undefined;
|
|
@@ -257,45 +258,45 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
257
258
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
258
259
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
259
260
|
}, "strip", z.ZodTypeAny, {
|
|
260
|
-
type: "
|
|
261
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
262
|
+
emoji?: boolean | undefined;
|
|
261
263
|
text?: string | undefined;
|
|
262
264
|
image_url?: string | undefined;
|
|
263
|
-
emoji?: boolean | undefined;
|
|
264
265
|
verbatim?: boolean | undefined;
|
|
265
266
|
alt_text?: string | undefined;
|
|
266
267
|
}, {
|
|
267
|
-
type: "
|
|
268
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
269
|
+
emoji?: boolean | undefined;
|
|
268
270
|
text?: string | undefined;
|
|
269
271
|
image_url?: string | undefined;
|
|
270
|
-
emoji?: boolean | undefined;
|
|
271
272
|
verbatim?: boolean | undefined;
|
|
272
273
|
alt_text?: string | undefined;
|
|
273
274
|
}>, "many">>;
|
|
274
275
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
275
276
|
thread_ts?: string | undefined;
|
|
276
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
277
277
|
}, {
|
|
278
|
+
text: string;
|
|
278
279
|
operation: "send_message";
|
|
279
280
|
channel: string;
|
|
280
|
-
|
|
281
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
281
282
|
username?: string | undefined;
|
|
282
283
|
icon_emoji?: string | undefined;
|
|
283
284
|
icon_url?: string | undefined;
|
|
284
285
|
attachments?: {
|
|
285
286
|
title?: string | undefined;
|
|
286
287
|
text?: string | undefined;
|
|
288
|
+
image_url?: string | undefined;
|
|
289
|
+
fields?: {
|
|
290
|
+
value: string;
|
|
291
|
+
title: string;
|
|
292
|
+
short?: boolean | undefined;
|
|
293
|
+
}[] | undefined;
|
|
287
294
|
color?: string | undefined;
|
|
288
295
|
pretext?: string | undefined;
|
|
289
296
|
author_name?: string | undefined;
|
|
290
297
|
author_link?: string | undefined;
|
|
291
298
|
author_icon?: string | undefined;
|
|
292
299
|
title_link?: string | undefined;
|
|
293
|
-
fields?: {
|
|
294
|
-
value: string;
|
|
295
|
-
title: string;
|
|
296
|
-
short?: boolean | undefined;
|
|
297
|
-
}[] | undefined;
|
|
298
|
-
image_url?: string | undefined;
|
|
299
300
|
thumb_url?: string | undefined;
|
|
300
301
|
footer?: string | undefined;
|
|
301
302
|
footer_icon?: string | undefined;
|
|
@@ -327,24 +328,23 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
327
328
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
328
329
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
329
330
|
}, "strip", z.ZodTypeAny, {
|
|
330
|
-
type: "
|
|
331
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
332
|
+
emoji?: boolean | undefined;
|
|
331
333
|
text?: string | undefined;
|
|
332
334
|
image_url?: string | undefined;
|
|
333
|
-
emoji?: boolean | undefined;
|
|
334
335
|
verbatim?: boolean | undefined;
|
|
335
336
|
alt_text?: string | undefined;
|
|
336
337
|
}, {
|
|
337
|
-
type: "
|
|
338
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
339
|
+
emoji?: boolean | undefined;
|
|
338
340
|
text?: string | undefined;
|
|
339
341
|
image_url?: string | undefined;
|
|
340
|
-
emoji?: boolean | undefined;
|
|
341
342
|
verbatim?: boolean | undefined;
|
|
342
343
|
alt_text?: string | undefined;
|
|
343
344
|
}>, "many">>;
|
|
344
345
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
345
346
|
thread_ts?: string | undefined;
|
|
346
347
|
reply_broadcast?: boolean | undefined;
|
|
347
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
348
348
|
unfurl_links?: boolean | undefined;
|
|
349
349
|
unfurl_media?: boolean | undefined;
|
|
350
350
|
}>, z.ZodObject<{
|
|
@@ -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;
|
|
392
393
|
operation: "get_user_info";
|
|
393
394
|
include_locale: boolean;
|
|
394
|
-
user: string;
|
|
395
395
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
396
396
|
}, {
|
|
397
|
-
operation: "get_user_info";
|
|
398
397
|
user: string;
|
|
398
|
+
operation: "get_user_info";
|
|
399
399
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
400
400
|
include_locale?: boolean | undefined;
|
|
401
401
|
}>, z.ZodObject<{
|
|
@@ -426,8 +426,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
426
426
|
cursor: z.ZodOptional<z.ZodString>;
|
|
427
427
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
operation: "get_conversation_history";
|
|
430
429
|
inclusive: boolean;
|
|
430
|
+
operation: "get_conversation_history";
|
|
431
431
|
channel: string;
|
|
432
432
|
limit: number;
|
|
433
433
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -454,19 +454,19 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
454
454
|
cursor: z.ZodOptional<z.ZodString>;
|
|
455
455
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
|
-
operation: "get_thread_replies";
|
|
458
457
|
inclusive: boolean;
|
|
459
|
-
channel: string;
|
|
460
458
|
ts: string;
|
|
459
|
+
operation: "get_thread_replies";
|
|
460
|
+
channel: 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;
|
|
467
468
|
operation: "get_thread_replies";
|
|
468
469
|
channel: string;
|
|
469
|
-
ts: string;
|
|
470
470
|
inclusive?: boolean | undefined;
|
|
471
471
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
472
472
|
limit?: number | undefined;
|
|
@@ -508,18 +508,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
510
|
text?: string | undefined;
|
|
511
|
+
image_url?: string | undefined;
|
|
512
|
+
fields?: {
|
|
513
|
+
value: string;
|
|
514
|
+
title: string;
|
|
515
|
+
short?: boolean | undefined;
|
|
516
|
+
}[] | undefined;
|
|
511
517
|
color?: string | undefined;
|
|
512
518
|
pretext?: string | undefined;
|
|
513
519
|
author_name?: string | undefined;
|
|
514
520
|
author_link?: string | undefined;
|
|
515
521
|
author_icon?: string | undefined;
|
|
516
522
|
title_link?: string | undefined;
|
|
517
|
-
fields?: {
|
|
518
|
-
value: string;
|
|
519
|
-
title: string;
|
|
520
|
-
short?: boolean | undefined;
|
|
521
|
-
}[] | undefined;
|
|
522
|
-
image_url?: string | undefined;
|
|
523
523
|
thumb_url?: string | undefined;
|
|
524
524
|
footer?: string | undefined;
|
|
525
525
|
footer_icon?: string | undefined;
|
|
@@ -527,18 +527,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
529
|
text?: string | undefined;
|
|
530
|
+
image_url?: string | undefined;
|
|
531
|
+
fields?: {
|
|
532
|
+
value: string;
|
|
533
|
+
title: string;
|
|
534
|
+
short?: boolean | undefined;
|
|
535
|
+
}[] | undefined;
|
|
530
536
|
color?: string | undefined;
|
|
531
537
|
pretext?: string | undefined;
|
|
532
538
|
author_name?: string | undefined;
|
|
533
539
|
author_link?: string | undefined;
|
|
534
540
|
author_icon?: string | undefined;
|
|
535
541
|
title_link?: string | undefined;
|
|
536
|
-
fields?: {
|
|
537
|
-
value: string;
|
|
538
|
-
title: string;
|
|
539
|
-
short?: boolean | undefined;
|
|
540
|
-
}[] | undefined;
|
|
541
|
-
image_url?: string | undefined;
|
|
542
542
|
thumb_url?: string | undefined;
|
|
543
543
|
footer?: string | undefined;
|
|
544
544
|
footer_icon?: string | undefined;
|
|
@@ -570,17 +570,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
574
|
+
emoji?: boolean | undefined;
|
|
574
575
|
text?: string | undefined;
|
|
575
576
|
image_url?: string | undefined;
|
|
576
|
-
emoji?: boolean | undefined;
|
|
577
577
|
verbatim?: boolean | undefined;
|
|
578
578
|
alt_text?: string | undefined;
|
|
579
579
|
}, {
|
|
580
|
-
type: "
|
|
580
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
581
|
+
emoji?: boolean | undefined;
|
|
581
582
|
text?: string | undefined;
|
|
582
583
|
image_url?: string | undefined;
|
|
583
|
-
emoji?: boolean | undefined;
|
|
584
584
|
verbatim?: boolean | undefined;
|
|
585
585
|
alt_text?: string | undefined;
|
|
586
586
|
}>, "many">>;
|
|
@@ -610,17 +610,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
614
|
+
emoji?: boolean | undefined;
|
|
614
615
|
text?: string | undefined;
|
|
615
616
|
image_url?: string | undefined;
|
|
616
|
-
emoji?: boolean | undefined;
|
|
617
617
|
verbatim?: boolean | undefined;
|
|
618
618
|
alt_text?: string | undefined;
|
|
619
619
|
}, {
|
|
620
|
-
type: "
|
|
620
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
621
|
+
emoji?: boolean | undefined;
|
|
621
622
|
text?: string | undefined;
|
|
622
623
|
image_url?: string | undefined;
|
|
623
|
-
emoji?: boolean | undefined;
|
|
624
624
|
verbatim?: boolean | undefined;
|
|
625
625
|
alt_text?: string | undefined;
|
|
626
626
|
}>, "many">>;
|
|
@@ -650,42 +650,43 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
654
|
+
emoji?: boolean | undefined;
|
|
654
655
|
text?: string | undefined;
|
|
655
656
|
image_url?: string | undefined;
|
|
656
|
-
emoji?: boolean | undefined;
|
|
657
657
|
verbatim?: boolean | undefined;
|
|
658
658
|
alt_text?: string | undefined;
|
|
659
659
|
}, {
|
|
660
|
-
type: "
|
|
660
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
661
|
+
emoji?: boolean | undefined;
|
|
661
662
|
text?: string | undefined;
|
|
662
663
|
image_url?: string | undefined;
|
|
663
|
-
emoji?: boolean | undefined;
|
|
664
664
|
verbatim?: boolean | undefined;
|
|
665
665
|
alt_text?: string | undefined;
|
|
666
666
|
}>, "many">>;
|
|
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;
|
|
670
671
|
operation: "update_message";
|
|
671
672
|
channel: string;
|
|
672
|
-
|
|
673
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
673
674
|
text?: string | undefined;
|
|
674
675
|
attachments?: {
|
|
675
676
|
title?: string | undefined;
|
|
676
677
|
text?: string | undefined;
|
|
678
|
+
image_url?: string | undefined;
|
|
679
|
+
fields?: {
|
|
680
|
+
value: string;
|
|
681
|
+
title: string;
|
|
682
|
+
short?: boolean | undefined;
|
|
683
|
+
}[] | undefined;
|
|
677
684
|
color?: string | undefined;
|
|
678
685
|
pretext?: string | undefined;
|
|
679
686
|
author_name?: string | undefined;
|
|
680
687
|
author_link?: string | undefined;
|
|
681
688
|
author_icon?: string | undefined;
|
|
682
689
|
title_link?: string | undefined;
|
|
683
|
-
fields?: {
|
|
684
|
-
value: string;
|
|
685
|
-
title: string;
|
|
686
|
-
short?: boolean | undefined;
|
|
687
|
-
}[] | undefined;
|
|
688
|
-
image_url?: string | undefined;
|
|
689
690
|
thumb_url?: string | undefined;
|
|
690
691
|
footer?: string | undefined;
|
|
691
692
|
footer_icon?: string | undefined;
|
|
@@ -717,42 +718,42 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
717
718
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
718
719
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
719
720
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
type: "
|
|
721
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
722
|
+
emoji?: boolean | undefined;
|
|
721
723
|
text?: string | undefined;
|
|
722
724
|
image_url?: string | undefined;
|
|
723
|
-
emoji?: boolean | undefined;
|
|
724
725
|
verbatim?: boolean | undefined;
|
|
725
726
|
alt_text?: string | undefined;
|
|
726
727
|
}, {
|
|
727
|
-
type: "
|
|
728
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
729
|
+
emoji?: boolean | undefined;
|
|
728
730
|
text?: string | undefined;
|
|
729
731
|
image_url?: string | undefined;
|
|
730
|
-
emoji?: boolean | undefined;
|
|
731
732
|
verbatim?: boolean | undefined;
|
|
732
733
|
alt_text?: string | undefined;
|
|
733
734
|
}>, "many">>;
|
|
734
735
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
735
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
736
736
|
}, {
|
|
737
|
+
ts: string;
|
|
737
738
|
operation: "update_message";
|
|
738
739
|
channel: string;
|
|
739
|
-
|
|
740
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
740
741
|
text?: string | undefined;
|
|
741
742
|
attachments?: {
|
|
742
743
|
title?: string | undefined;
|
|
743
744
|
text?: string | undefined;
|
|
745
|
+
image_url?: string | undefined;
|
|
746
|
+
fields?: {
|
|
747
|
+
value: string;
|
|
748
|
+
title: string;
|
|
749
|
+
short?: boolean | undefined;
|
|
750
|
+
}[] | undefined;
|
|
744
751
|
color?: string | undefined;
|
|
745
752
|
pretext?: string | undefined;
|
|
746
753
|
author_name?: string | undefined;
|
|
747
754
|
author_link?: string | undefined;
|
|
748
755
|
author_icon?: string | undefined;
|
|
749
756
|
title_link?: string | undefined;
|
|
750
|
-
fields?: {
|
|
751
|
-
value: string;
|
|
752
|
-
title: string;
|
|
753
|
-
short?: boolean | undefined;
|
|
754
|
-
}[] | undefined;
|
|
755
|
-
image_url?: string | undefined;
|
|
756
757
|
thumb_url?: string | undefined;
|
|
757
758
|
footer?: string | undefined;
|
|
758
759
|
footer_icon?: string | undefined;
|
|
@@ -784,36 +785,35 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
784
785
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
785
786
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
786
787
|
}, "strip", z.ZodTypeAny, {
|
|
787
|
-
type: "
|
|
788
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
789
|
+
emoji?: boolean | undefined;
|
|
788
790
|
text?: string | undefined;
|
|
789
791
|
image_url?: string | undefined;
|
|
790
|
-
emoji?: boolean | undefined;
|
|
791
792
|
verbatim?: boolean | undefined;
|
|
792
793
|
alt_text?: string | undefined;
|
|
793
794
|
}, {
|
|
794
|
-
type: "
|
|
795
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
796
|
+
emoji?: boolean | undefined;
|
|
795
797
|
text?: string | undefined;
|
|
796
798
|
image_url?: string | undefined;
|
|
797
|
-
emoji?: boolean | undefined;
|
|
798
799
|
verbatim?: boolean | undefined;
|
|
799
800
|
alt_text?: string | undefined;
|
|
800
801
|
}>, "many">>;
|
|
801
802
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
802
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
803
803
|
}>, z.ZodObject<{
|
|
804
804
|
operation: z.ZodLiteral<"delete_message">;
|
|
805
805
|
channel: z.ZodString;
|
|
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;
|
|
809
810
|
operation: "delete_message";
|
|
810
811
|
channel: string;
|
|
811
|
-
ts: string;
|
|
812
812
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
813
813
|
}, {
|
|
814
|
+
ts: string;
|
|
814
815
|
operation: "delete_message";
|
|
815
816
|
channel: string;
|
|
816
|
-
ts: string;
|
|
817
817
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
818
818
|
}>, z.ZodObject<{
|
|
819
819
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -822,15 +822,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
822
822
|
timestamp: z.ZodString;
|
|
823
823
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
824
824
|
}, "strip", z.ZodTypeAny, {
|
|
825
|
+
name: string;
|
|
825
826
|
operation: "add_reaction";
|
|
826
827
|
channel: string;
|
|
827
|
-
name: string;
|
|
828
828
|
timestamp: string;
|
|
829
829
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
830
830
|
}, {
|
|
831
|
+
name: string;
|
|
831
832
|
operation: "add_reaction";
|
|
832
833
|
channel: string;
|
|
833
|
-
name: string;
|
|
834
834
|
timestamp: string;
|
|
835
835
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
836
836
|
}>, z.ZodObject<{
|
|
@@ -840,15 +840,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
840
840
|
timestamp: z.ZodString;
|
|
841
841
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
842
842
|
}, "strip", z.ZodTypeAny, {
|
|
843
|
+
name: string;
|
|
843
844
|
operation: "remove_reaction";
|
|
844
845
|
channel: string;
|
|
845
|
-
name: string;
|
|
846
846
|
timestamp: string;
|
|
847
847
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
848
848
|
}, {
|
|
849
|
+
name: string;
|
|
849
850
|
operation: "remove_reaction";
|
|
850
851
|
channel: string;
|
|
851
|
-
name: string;
|
|
852
852
|
timestamp: string;
|
|
853
853
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
854
854
|
}>, z.ZodObject<{
|
|
@@ -877,8 +877,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
877
877
|
channel: string;
|
|
878
878
|
file_path: string;
|
|
879
879
|
title?: string | undefined;
|
|
880
|
-
thread_ts?: string | undefined;
|
|
881
880
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
881
|
+
thread_ts?: string | undefined;
|
|
882
882
|
filename?: string | undefined;
|
|
883
883
|
initial_comment?: string | undefined;
|
|
884
884
|
}, {
|
|
@@ -886,8 +886,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
886
886
|
channel: string;
|
|
887
887
|
file_path: string;
|
|
888
888
|
title?: string | undefined;
|
|
889
|
-
thread_ts?: string | undefined;
|
|
890
889
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
890
|
+
thread_ts?: string | undefined;
|
|
891
891
|
filename?: string | undefined;
|
|
892
892
|
initial_comment?: string | undefined;
|
|
893
893
|
}>, z.ZodObject<{
|
|
@@ -922,17 +922,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
926
|
+
emoji?: boolean | undefined;
|
|
926
927
|
text?: string | undefined;
|
|
927
928
|
image_url?: string | undefined;
|
|
928
|
-
emoji?: boolean | undefined;
|
|
929
929
|
verbatim?: boolean | undefined;
|
|
930
930
|
alt_text?: string | undefined;
|
|
931
931
|
}, {
|
|
932
|
-
type: "
|
|
932
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
933
|
+
emoji?: boolean | undefined;
|
|
933
934
|
text?: string | undefined;
|
|
934
935
|
image_url?: string | undefined;
|
|
935
|
-
emoji?: boolean | undefined;
|
|
936
936
|
verbatim?: boolean | undefined;
|
|
937
937
|
alt_text?: string | undefined;
|
|
938
938
|
}>, "many">>;
|
|
@@ -962,17 +962,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
966
|
+
emoji?: boolean | undefined;
|
|
966
967
|
text?: string | undefined;
|
|
967
968
|
image_url?: string | undefined;
|
|
968
|
-
emoji?: boolean | undefined;
|
|
969
969
|
verbatim?: boolean | undefined;
|
|
970
970
|
alt_text?: string | undefined;
|
|
971
971
|
}, {
|
|
972
|
-
type: "
|
|
972
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
973
|
+
emoji?: boolean | undefined;
|
|
973
974
|
text?: string | undefined;
|
|
974
975
|
image_url?: string | undefined;
|
|
975
|
-
emoji?: boolean | undefined;
|
|
976
976
|
verbatim?: boolean | undefined;
|
|
977
977
|
alt_text?: string | undefined;
|
|
978
978
|
}>, "many">>;
|
|
@@ -1002,17 +1002,17 @@ 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: "image" | "plain_text" | "mrkdwn";
|
|
1006
|
+
emoji?: boolean | undefined;
|
|
1006
1007
|
text?: string | undefined;
|
|
1007
1008
|
image_url?: string | undefined;
|
|
1008
|
-
emoji?: boolean | undefined;
|
|
1009
1009
|
verbatim?: boolean | undefined;
|
|
1010
1010
|
alt_text?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
|
-
type: "
|
|
1012
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1013
|
+
emoji?: boolean | undefined;
|
|
1013
1014
|
text?: string | undefined;
|
|
1014
1015
|
image_url?: string | undefined;
|
|
1015
|
-
emoji?: boolean | undefined;
|
|
1016
1016
|
verbatim?: boolean | undefined;
|
|
1017
1017
|
alt_text?: string | undefined;
|
|
1018
1018
|
}>, "many">>;
|
|
@@ -1021,12 +1021,13 @@ 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;
|
|
1024
1025
|
operation: "schedule_message";
|
|
1025
1026
|
channel: string;
|
|
1026
|
-
text: string;
|
|
1027
1027
|
unfurl_links: boolean;
|
|
1028
1028
|
unfurl_media: boolean;
|
|
1029
1029
|
post_at: number;
|
|
1030
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1030
1031
|
blocks?: z.objectOutputType<{
|
|
1031
1032
|
type: z.ZodString;
|
|
1032
1033
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -1053,28 +1054,28 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1053
1054
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1054
1055
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1056
|
-
type: "
|
|
1057
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1058
|
+
emoji?: boolean | undefined;
|
|
1057
1059
|
text?: string | undefined;
|
|
1058
1060
|
image_url?: string | undefined;
|
|
1059
|
-
emoji?: boolean | undefined;
|
|
1060
1061
|
verbatim?: boolean | undefined;
|
|
1061
1062
|
alt_text?: string | undefined;
|
|
1062
1063
|
}, {
|
|
1063
|
-
type: "
|
|
1064
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1065
|
+
emoji?: boolean | undefined;
|
|
1064
1066
|
text?: string | undefined;
|
|
1065
1067
|
image_url?: string | undefined;
|
|
1066
|
-
emoji?: boolean | undefined;
|
|
1067
1068
|
verbatim?: boolean | undefined;
|
|
1068
1069
|
alt_text?: string | undefined;
|
|
1069
1070
|
}>, "many">>;
|
|
1070
1071
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1071
1072
|
thread_ts?: string | undefined;
|
|
1072
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1073
1073
|
}, {
|
|
1074
|
+
text: string;
|
|
1074
1075
|
operation: "schedule_message";
|
|
1075
1076
|
channel: string;
|
|
1076
|
-
text: string;
|
|
1077
1077
|
post_at: number;
|
|
1078
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1078
1079
|
blocks?: z.objectInputType<{
|
|
1079
1080
|
type: z.ZodString;
|
|
1080
1081
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -1101,23 +1102,22 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1101
1102
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1102
1103
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1103
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1104
|
-
type: "
|
|
1105
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1106
|
+
emoji?: boolean | undefined;
|
|
1105
1107
|
text?: string | undefined;
|
|
1106
1108
|
image_url?: string | undefined;
|
|
1107
|
-
emoji?: boolean | undefined;
|
|
1108
1109
|
verbatim?: boolean | undefined;
|
|
1109
1110
|
alt_text?: string | undefined;
|
|
1110
1111
|
}, {
|
|
1111
|
-
type: "
|
|
1112
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1113
|
+
emoji?: boolean | undefined;
|
|
1112
1114
|
text?: string | undefined;
|
|
1113
1115
|
image_url?: string | undefined;
|
|
1114
|
-
emoji?: boolean | undefined;
|
|
1115
1116
|
verbatim?: boolean | undefined;
|
|
1116
1117
|
alt_text?: string | undefined;
|
|
1117
1118
|
}>, "many">>;
|
|
1118
1119
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1119
1120
|
thread_ts?: string | undefined;
|
|
1120
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1121
1121
|
unfurl_links?: boolean | undefined;
|
|
1122
1122
|
unfurl_media?: boolean | undefined;
|
|
1123
1123
|
}>, z.ZodObject<{
|
|
@@ -1192,13 +1192,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1192
1192
|
}>, "many">>;
|
|
1193
1193
|
}, "strip", z.ZodTypeAny, {
|
|
1194
1194
|
type: string;
|
|
1195
|
+
user?: string | undefined;
|
|
1195
1196
|
text?: string | undefined;
|
|
1196
|
-
username?: string | undefined;
|
|
1197
1197
|
ts?: string | undefined;
|
|
1198
|
+
username?: string | undefined;
|
|
1198
1199
|
attachments?: unknown[] | undefined;
|
|
1199
1200
|
blocks?: unknown[] | undefined;
|
|
1200
1201
|
thread_ts?: string | undefined;
|
|
1201
|
-
user?: string | undefined;
|
|
1202
1202
|
bot_id?: string | undefined;
|
|
1203
1203
|
bot_profile?: {
|
|
1204
1204
|
name?: string | undefined;
|
|
@@ -1217,13 +1217,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1217
1217
|
}[] | undefined;
|
|
1218
1218
|
}, {
|
|
1219
1219
|
type: string;
|
|
1220
|
+
user?: string | undefined;
|
|
1220
1221
|
text?: string | undefined;
|
|
1221
|
-
username?: string | undefined;
|
|
1222
1222
|
ts?: string | undefined;
|
|
1223
|
+
username?: string | undefined;
|
|
1223
1224
|
attachments?: unknown[] | undefined;
|
|
1224
1225
|
blocks?: unknown[] | undefined;
|
|
1225
1226
|
thread_ts?: string | undefined;
|
|
1226
|
-
user?: string | undefined;
|
|
1227
1227
|
bot_id?: string | undefined;
|
|
1228
1228
|
bot_profile?: {
|
|
1229
1229
|
name?: string | undefined;
|
|
@@ -1244,19 +1244,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1244
1244
|
error: z.ZodString;
|
|
1245
1245
|
success: z.ZodBoolean;
|
|
1246
1246
|
}, "strip", z.ZodTypeAny, {
|
|
1247
|
-
operation: "send_message";
|
|
1248
|
-
ok: boolean;
|
|
1249
1247
|
error: string;
|
|
1250
1248
|
success: boolean;
|
|
1249
|
+
operation: "send_message";
|
|
1250
|
+
ok: boolean;
|
|
1251
1251
|
message?: {
|
|
1252
1252
|
type: string;
|
|
1253
|
+
user?: string | undefined;
|
|
1253
1254
|
text?: string | undefined;
|
|
1254
|
-
username?: string | undefined;
|
|
1255
1255
|
ts?: string | undefined;
|
|
1256
|
+
username?: string | undefined;
|
|
1256
1257
|
attachments?: unknown[] | undefined;
|
|
1257
1258
|
blocks?: unknown[] | undefined;
|
|
1258
1259
|
thread_ts?: string | undefined;
|
|
1259
|
-
user?: string | undefined;
|
|
1260
1260
|
bot_id?: string | undefined;
|
|
1261
1261
|
bot_profile?: {
|
|
1262
1262
|
name?: string | undefined;
|
|
@@ -1274,22 +1274,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1274
1274
|
count: number;
|
|
1275
1275
|
}[] | undefined;
|
|
1276
1276
|
} | undefined;
|
|
1277
|
-
channel?: string | undefined;
|
|
1278
1277
|
ts?: string | undefined;
|
|
1278
|
+
channel?: string | undefined;
|
|
1279
1279
|
}, {
|
|
1280
|
-
operation: "send_message";
|
|
1281
|
-
ok: boolean;
|
|
1282
1280
|
error: string;
|
|
1283
1281
|
success: boolean;
|
|
1282
|
+
operation: "send_message";
|
|
1283
|
+
ok: boolean;
|
|
1284
1284
|
message?: {
|
|
1285
1285
|
type: string;
|
|
1286
|
+
user?: string | undefined;
|
|
1286
1287
|
text?: string | undefined;
|
|
1287
|
-
username?: string | undefined;
|
|
1288
1288
|
ts?: string | undefined;
|
|
1289
|
+
username?: string | undefined;
|
|
1289
1290
|
attachments?: unknown[] | undefined;
|
|
1290
1291
|
blocks?: unknown[] | undefined;
|
|
1291
1292
|
thread_ts?: string | undefined;
|
|
1292
|
-
user?: string | undefined;
|
|
1293
1293
|
bot_id?: string | undefined;
|
|
1294
1294
|
bot_profile?: {
|
|
1295
1295
|
name?: string | undefined;
|
|
@@ -1307,8 +1307,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1307
1307
|
count: number;
|
|
1308
1308
|
}[] | undefined;
|
|
1309
1309
|
} | undefined;
|
|
1310
|
-
channel?: string | undefined;
|
|
1311
1310
|
ts?: string | undefined;
|
|
1311
|
+
channel?: string | undefined;
|
|
1312
1312
|
}>, z.ZodObject<{
|
|
1313
1313
|
operation: z.ZodLiteral<"list_channels">;
|
|
1314
1314
|
ok: z.ZodBoolean;
|
|
@@ -1438,10 +1438,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1438
1438
|
error: z.ZodString;
|
|
1439
1439
|
success: z.ZodBoolean;
|
|
1440
1440
|
}, "strip", z.ZodTypeAny, {
|
|
1441
|
-
operation: "list_channels";
|
|
1442
|
-
ok: boolean;
|
|
1443
1441
|
error: string;
|
|
1444
1442
|
success: boolean;
|
|
1443
|
+
operation: "list_channels";
|
|
1444
|
+
ok: boolean;
|
|
1445
|
+
response_metadata?: {
|
|
1446
|
+
next_cursor: string;
|
|
1447
|
+
} | undefined;
|
|
1445
1448
|
channels?: {
|
|
1446
1449
|
name: string;
|
|
1447
1450
|
id: string;
|
|
@@ -1476,14 +1479,14 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1476
1479
|
} | undefined;
|
|
1477
1480
|
num_members?: number | undefined;
|
|
1478
1481
|
}[] | undefined;
|
|
1479
|
-
response_metadata?: {
|
|
1480
|
-
next_cursor: string;
|
|
1481
|
-
} | undefined;
|
|
1482
1482
|
}, {
|
|
1483
|
-
operation: "list_channels";
|
|
1484
|
-
ok: boolean;
|
|
1485
1483
|
error: string;
|
|
1486
1484
|
success: boolean;
|
|
1485
|
+
operation: "list_channels";
|
|
1486
|
+
ok: boolean;
|
|
1487
|
+
response_metadata?: {
|
|
1488
|
+
next_cursor: string;
|
|
1489
|
+
} | undefined;
|
|
1487
1490
|
channels?: {
|
|
1488
1491
|
name: string;
|
|
1489
1492
|
id: string;
|
|
@@ -1518,9 +1521,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1518
1521
|
} | undefined;
|
|
1519
1522
|
num_members?: number | undefined;
|
|
1520
1523
|
}[] | undefined;
|
|
1521
|
-
response_metadata?: {
|
|
1522
|
-
next_cursor: string;
|
|
1523
|
-
} | undefined;
|
|
1524
1524
|
}>, z.ZodObject<{
|
|
1525
1525
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
1526
1526
|
ok: z.ZodBoolean;
|
|
@@ -1643,10 +1643,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1643
1643
|
error: z.ZodString;
|
|
1644
1644
|
success: z.ZodBoolean;
|
|
1645
1645
|
}, "strip", z.ZodTypeAny, {
|
|
1646
|
-
operation: "get_channel_info";
|
|
1647
|
-
ok: boolean;
|
|
1648
1646
|
error: string;
|
|
1649
1647
|
success: boolean;
|
|
1648
|
+
operation: "get_channel_info";
|
|
1649
|
+
ok: boolean;
|
|
1650
1650
|
channel?: {
|
|
1651
1651
|
name: string;
|
|
1652
1652
|
id: string;
|
|
@@ -1682,10 +1682,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1682
1682
|
num_members?: number | undefined;
|
|
1683
1683
|
} | undefined;
|
|
1684
1684
|
}, {
|
|
1685
|
-
operation: "get_channel_info";
|
|
1686
|
-
ok: boolean;
|
|
1687
1685
|
error: string;
|
|
1688
1686
|
success: boolean;
|
|
1687
|
+
operation: "get_channel_info";
|
|
1688
|
+
ok: boolean;
|
|
1689
1689
|
channel?: {
|
|
1690
1690
|
name: string;
|
|
1691
1691
|
id: string;
|
|
@@ -1760,8 +1760,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1760
1760
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
1761
1761
|
}, "strip", z.ZodTypeAny, {
|
|
1762
1762
|
title?: string | undefined;
|
|
1763
|
-
fields?: Record<string, unknown> | undefined;
|
|
1764
1763
|
email?: string | undefined;
|
|
1764
|
+
fields?: Record<string, unknown> | undefined;
|
|
1765
1765
|
real_name?: string | undefined;
|
|
1766
1766
|
phone?: string | undefined;
|
|
1767
1767
|
skype?: string | undefined;
|
|
@@ -1785,8 +1785,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1785
1785
|
image_1024?: string | undefined;
|
|
1786
1786
|
}, {
|
|
1787
1787
|
title?: string | undefined;
|
|
1788
|
-
fields?: Record<string, unknown> | undefined;
|
|
1789
1788
|
email?: string | undefined;
|
|
1789
|
+
fields?: Record<string, unknown> | undefined;
|
|
1790
1790
|
real_name?: string | undefined;
|
|
1791
1791
|
phone?: string | undefined;
|
|
1792
1792
|
skype?: string | undefined;
|
|
@@ -1821,17 +1821,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1821
1821
|
}, "strip", z.ZodTypeAny, {
|
|
1822
1822
|
name: string;
|
|
1823
1823
|
id: string;
|
|
1824
|
-
color?: string | undefined;
|
|
1825
|
-
team_id?: string | undefined;
|
|
1826
|
-
deleted?: boolean | undefined;
|
|
1827
|
-
real_name?: string | undefined;
|
|
1828
|
-
tz?: string | undefined;
|
|
1829
|
-
tz_label?: string | undefined;
|
|
1830
|
-
tz_offset?: number | undefined;
|
|
1831
1824
|
profile?: {
|
|
1832
1825
|
title?: string | undefined;
|
|
1833
|
-
fields?: Record<string, unknown> | undefined;
|
|
1834
1826
|
email?: string | undefined;
|
|
1827
|
+
fields?: Record<string, unknown> | undefined;
|
|
1835
1828
|
real_name?: string | undefined;
|
|
1836
1829
|
phone?: string | undefined;
|
|
1837
1830
|
skype?: string | undefined;
|
|
@@ -1854,6 +1847,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1854
1847
|
image_512?: string | undefined;
|
|
1855
1848
|
image_1024?: string | undefined;
|
|
1856
1849
|
} | undefined;
|
|
1850
|
+
color?: string | undefined;
|
|
1851
|
+
team_id?: string | undefined;
|
|
1852
|
+
deleted?: boolean | undefined;
|
|
1853
|
+
real_name?: string | undefined;
|
|
1854
|
+
tz?: string | undefined;
|
|
1855
|
+
tz_label?: string | undefined;
|
|
1856
|
+
tz_offset?: number | undefined;
|
|
1857
1857
|
is_admin?: boolean | undefined;
|
|
1858
1858
|
is_owner?: boolean | undefined;
|
|
1859
1859
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1866,17 +1866,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1866
1866
|
}, {
|
|
1867
1867
|
name: string;
|
|
1868
1868
|
id: string;
|
|
1869
|
-
color?: string | undefined;
|
|
1870
|
-
team_id?: string | undefined;
|
|
1871
|
-
deleted?: boolean | undefined;
|
|
1872
|
-
real_name?: string | undefined;
|
|
1873
|
-
tz?: string | undefined;
|
|
1874
|
-
tz_label?: string | undefined;
|
|
1875
|
-
tz_offset?: number | undefined;
|
|
1876
1869
|
profile?: {
|
|
1877
1870
|
title?: string | undefined;
|
|
1878
|
-
fields?: Record<string, unknown> | undefined;
|
|
1879
1871
|
email?: string | undefined;
|
|
1872
|
+
fields?: Record<string, unknown> | undefined;
|
|
1880
1873
|
real_name?: string | undefined;
|
|
1881
1874
|
phone?: string | undefined;
|
|
1882
1875
|
skype?: string | undefined;
|
|
@@ -1899,6 +1892,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1899
1892
|
image_512?: string | undefined;
|
|
1900
1893
|
image_1024?: string | undefined;
|
|
1901
1894
|
} | undefined;
|
|
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;
|
|
1902
1902
|
is_admin?: boolean | undefined;
|
|
1903
1903
|
is_owner?: boolean | undefined;
|
|
1904
1904
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1912,24 +1912,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1912
1912
|
error: z.ZodString;
|
|
1913
1913
|
success: z.ZodBoolean;
|
|
1914
1914
|
}, "strip", z.ZodTypeAny, {
|
|
1915
|
-
operation: "get_user_info";
|
|
1916
|
-
ok: boolean;
|
|
1917
1915
|
error: string;
|
|
1918
1916
|
success: boolean;
|
|
1917
|
+
operation: "get_user_info";
|
|
1918
|
+
ok: boolean;
|
|
1919
1919
|
user?: {
|
|
1920
1920
|
name: string;
|
|
1921
1921
|
id: string;
|
|
1922
|
-
color?: string | undefined;
|
|
1923
|
-
team_id?: string | undefined;
|
|
1924
|
-
deleted?: boolean | undefined;
|
|
1925
|
-
real_name?: string | undefined;
|
|
1926
|
-
tz?: string | undefined;
|
|
1927
|
-
tz_label?: string | undefined;
|
|
1928
|
-
tz_offset?: number | undefined;
|
|
1929
1922
|
profile?: {
|
|
1930
1923
|
title?: string | undefined;
|
|
1931
|
-
fields?: Record<string, unknown> | undefined;
|
|
1932
1924
|
email?: string | undefined;
|
|
1925
|
+
fields?: Record<string, unknown> | undefined;
|
|
1933
1926
|
real_name?: string | undefined;
|
|
1934
1927
|
phone?: string | undefined;
|
|
1935
1928
|
skype?: string | undefined;
|
|
@@ -1952,6 +1945,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1952
1945
|
image_512?: string | undefined;
|
|
1953
1946
|
image_1024?: string | undefined;
|
|
1954
1947
|
} | undefined;
|
|
1948
|
+
color?: string | undefined;
|
|
1949
|
+
team_id?: string | undefined;
|
|
1950
|
+
deleted?: boolean | undefined;
|
|
1951
|
+
real_name?: string | undefined;
|
|
1952
|
+
tz?: string | undefined;
|
|
1953
|
+
tz_label?: string | undefined;
|
|
1954
|
+
tz_offset?: number | undefined;
|
|
1955
1955
|
is_admin?: boolean | undefined;
|
|
1956
1956
|
is_owner?: boolean | undefined;
|
|
1957
1957
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1963,24 +1963,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1963
1963
|
has_2fa?: boolean | undefined;
|
|
1964
1964
|
} | undefined;
|
|
1965
1965
|
}, {
|
|
1966
|
-
operation: "get_user_info";
|
|
1967
|
-
ok: boolean;
|
|
1968
1966
|
error: string;
|
|
1969
1967
|
success: boolean;
|
|
1968
|
+
operation: "get_user_info";
|
|
1969
|
+
ok: boolean;
|
|
1970
1970
|
user?: {
|
|
1971
1971
|
name: string;
|
|
1972
1972
|
id: string;
|
|
1973
|
-
color?: string | undefined;
|
|
1974
|
-
team_id?: string | undefined;
|
|
1975
|
-
deleted?: boolean | undefined;
|
|
1976
|
-
real_name?: string | undefined;
|
|
1977
|
-
tz?: string | undefined;
|
|
1978
|
-
tz_label?: string | undefined;
|
|
1979
|
-
tz_offset?: number | undefined;
|
|
1980
1973
|
profile?: {
|
|
1981
1974
|
title?: string | undefined;
|
|
1982
|
-
fields?: Record<string, unknown> | undefined;
|
|
1983
1975
|
email?: string | undefined;
|
|
1976
|
+
fields?: Record<string, unknown> | undefined;
|
|
1984
1977
|
real_name?: string | undefined;
|
|
1985
1978
|
phone?: string | undefined;
|
|
1986
1979
|
skype?: string | undefined;
|
|
@@ -2003,6 +1996,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2003
1996
|
image_512?: string | undefined;
|
|
2004
1997
|
image_1024?: string | undefined;
|
|
2005
1998
|
} | undefined;
|
|
1999
|
+
color?: string | undefined;
|
|
2000
|
+
team_id?: string | undefined;
|
|
2001
|
+
deleted?: boolean | undefined;
|
|
2002
|
+
real_name?: string | undefined;
|
|
2003
|
+
tz?: string | undefined;
|
|
2004
|
+
tz_label?: string | undefined;
|
|
2005
|
+
tz_offset?: number | undefined;
|
|
2006
2006
|
is_admin?: boolean | undefined;
|
|
2007
2007
|
is_owner?: boolean | undefined;
|
|
2008
2008
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2053,8 +2053,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2053
2053
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
2054
2054
|
}, "strip", z.ZodTypeAny, {
|
|
2055
2055
|
title?: string | undefined;
|
|
2056
|
-
fields?: Record<string, unknown> | undefined;
|
|
2057
2056
|
email?: string | undefined;
|
|
2057
|
+
fields?: Record<string, unknown> | undefined;
|
|
2058
2058
|
real_name?: string | undefined;
|
|
2059
2059
|
phone?: string | undefined;
|
|
2060
2060
|
skype?: string | undefined;
|
|
@@ -2078,8 +2078,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2078
2078
|
image_1024?: string | undefined;
|
|
2079
2079
|
}, {
|
|
2080
2080
|
title?: string | undefined;
|
|
2081
|
-
fields?: Record<string, unknown> | undefined;
|
|
2082
2081
|
email?: string | undefined;
|
|
2082
|
+
fields?: Record<string, unknown> | undefined;
|
|
2083
2083
|
real_name?: string | undefined;
|
|
2084
2084
|
phone?: string | undefined;
|
|
2085
2085
|
skype?: string | undefined;
|
|
@@ -2114,17 +2114,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2114
2114
|
}, "strip", z.ZodTypeAny, {
|
|
2115
2115
|
name: string;
|
|
2116
2116
|
id: string;
|
|
2117
|
-
color?: string | undefined;
|
|
2118
|
-
team_id?: string | undefined;
|
|
2119
|
-
deleted?: boolean | undefined;
|
|
2120
|
-
real_name?: string | undefined;
|
|
2121
|
-
tz?: string | undefined;
|
|
2122
|
-
tz_label?: string | undefined;
|
|
2123
|
-
tz_offset?: number | undefined;
|
|
2124
2117
|
profile?: {
|
|
2125
2118
|
title?: string | undefined;
|
|
2126
|
-
fields?: Record<string, unknown> | undefined;
|
|
2127
2119
|
email?: string | undefined;
|
|
2120
|
+
fields?: Record<string, unknown> | undefined;
|
|
2128
2121
|
real_name?: string | undefined;
|
|
2129
2122
|
phone?: string | undefined;
|
|
2130
2123
|
skype?: string | undefined;
|
|
@@ -2147,6 +2140,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2147
2140
|
image_512?: string | undefined;
|
|
2148
2141
|
image_1024?: string | undefined;
|
|
2149
2142
|
} | undefined;
|
|
2143
|
+
color?: string | undefined;
|
|
2144
|
+
team_id?: string | undefined;
|
|
2145
|
+
deleted?: boolean | undefined;
|
|
2146
|
+
real_name?: string | undefined;
|
|
2147
|
+
tz?: string | undefined;
|
|
2148
|
+
tz_label?: string | undefined;
|
|
2149
|
+
tz_offset?: number | undefined;
|
|
2150
2150
|
is_admin?: boolean | undefined;
|
|
2151
2151
|
is_owner?: boolean | undefined;
|
|
2152
2152
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2159,17 +2159,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2159
2159
|
}, {
|
|
2160
2160
|
name: string;
|
|
2161
2161
|
id: string;
|
|
2162
|
-
color?: string | undefined;
|
|
2163
|
-
team_id?: string | undefined;
|
|
2164
|
-
deleted?: boolean | undefined;
|
|
2165
|
-
real_name?: string | undefined;
|
|
2166
|
-
tz?: string | undefined;
|
|
2167
|
-
tz_label?: string | undefined;
|
|
2168
|
-
tz_offset?: number | undefined;
|
|
2169
2162
|
profile?: {
|
|
2170
2163
|
title?: string | undefined;
|
|
2171
|
-
fields?: Record<string, unknown> | undefined;
|
|
2172
2164
|
email?: string | undefined;
|
|
2165
|
+
fields?: Record<string, unknown> | undefined;
|
|
2173
2166
|
real_name?: string | undefined;
|
|
2174
2167
|
phone?: string | undefined;
|
|
2175
2168
|
skype?: string | undefined;
|
|
@@ -2192,6 +2185,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2192
2185
|
image_512?: string | undefined;
|
|
2193
2186
|
image_1024?: string | undefined;
|
|
2194
2187
|
} | undefined;
|
|
2188
|
+
color?: string | undefined;
|
|
2189
|
+
team_id?: string | undefined;
|
|
2190
|
+
deleted?: boolean | undefined;
|
|
2191
|
+
real_name?: string | undefined;
|
|
2192
|
+
tz?: string | undefined;
|
|
2193
|
+
tz_label?: string | undefined;
|
|
2194
|
+
tz_offset?: number | undefined;
|
|
2195
2195
|
is_admin?: boolean | undefined;
|
|
2196
2196
|
is_owner?: boolean | undefined;
|
|
2197
2197
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2212,27 +2212,20 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2212
2212
|
error: z.ZodString;
|
|
2213
2213
|
success: z.ZodBoolean;
|
|
2214
2214
|
}, "strip", z.ZodTypeAny, {
|
|
2215
|
-
operation: "list_users";
|
|
2216
|
-
ok: boolean;
|
|
2217
2215
|
error: string;
|
|
2218
2216
|
success: boolean;
|
|
2217
|
+
operation: "list_users";
|
|
2218
|
+
ok: boolean;
|
|
2219
2219
|
response_metadata?: {
|
|
2220
2220
|
next_cursor: string;
|
|
2221
2221
|
} | undefined;
|
|
2222
2222
|
members?: {
|
|
2223
2223
|
name: string;
|
|
2224
2224
|
id: string;
|
|
2225
|
-
color?: string | undefined;
|
|
2226
|
-
team_id?: string | undefined;
|
|
2227
|
-
deleted?: boolean | undefined;
|
|
2228
|
-
real_name?: string | undefined;
|
|
2229
|
-
tz?: string | undefined;
|
|
2230
|
-
tz_label?: string | undefined;
|
|
2231
|
-
tz_offset?: number | undefined;
|
|
2232
2225
|
profile?: {
|
|
2233
2226
|
title?: string | undefined;
|
|
2234
|
-
fields?: Record<string, unknown> | undefined;
|
|
2235
2227
|
email?: string | undefined;
|
|
2228
|
+
fields?: Record<string, unknown> | undefined;
|
|
2236
2229
|
real_name?: string | undefined;
|
|
2237
2230
|
phone?: string | undefined;
|
|
2238
2231
|
skype?: string | undefined;
|
|
@@ -2255,6 +2248,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2255
2248
|
image_512?: string | undefined;
|
|
2256
2249
|
image_1024?: string | undefined;
|
|
2257
2250
|
} | undefined;
|
|
2251
|
+
color?: string | undefined;
|
|
2252
|
+
team_id?: string | undefined;
|
|
2253
|
+
deleted?: boolean | undefined;
|
|
2254
|
+
real_name?: string | undefined;
|
|
2255
|
+
tz?: string | undefined;
|
|
2256
|
+
tz_label?: string | undefined;
|
|
2257
|
+
tz_offset?: number | undefined;
|
|
2258
2258
|
is_admin?: boolean | undefined;
|
|
2259
2259
|
is_owner?: boolean | undefined;
|
|
2260
2260
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2266,27 +2266,20 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2266
2266
|
has_2fa?: boolean | undefined;
|
|
2267
2267
|
}[] | undefined;
|
|
2268
2268
|
}, {
|
|
2269
|
-
operation: "list_users";
|
|
2270
|
-
ok: boolean;
|
|
2271
2269
|
error: string;
|
|
2272
2270
|
success: boolean;
|
|
2271
|
+
operation: "list_users";
|
|
2272
|
+
ok: boolean;
|
|
2273
2273
|
response_metadata?: {
|
|
2274
2274
|
next_cursor: string;
|
|
2275
2275
|
} | undefined;
|
|
2276
2276
|
members?: {
|
|
2277
2277
|
name: string;
|
|
2278
2278
|
id: string;
|
|
2279
|
-
color?: string | undefined;
|
|
2280
|
-
team_id?: string | undefined;
|
|
2281
|
-
deleted?: boolean | undefined;
|
|
2282
|
-
real_name?: string | undefined;
|
|
2283
|
-
tz?: string | undefined;
|
|
2284
|
-
tz_label?: string | undefined;
|
|
2285
|
-
tz_offset?: number | undefined;
|
|
2286
2279
|
profile?: {
|
|
2287
2280
|
title?: string | undefined;
|
|
2288
|
-
fields?: Record<string, unknown> | undefined;
|
|
2289
2281
|
email?: string | undefined;
|
|
2282
|
+
fields?: Record<string, unknown> | undefined;
|
|
2290
2283
|
real_name?: string | undefined;
|
|
2291
2284
|
phone?: string | undefined;
|
|
2292
2285
|
skype?: string | undefined;
|
|
@@ -2309,6 +2302,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2309
2302
|
image_512?: string | undefined;
|
|
2310
2303
|
image_1024?: string | undefined;
|
|
2311
2304
|
} | undefined;
|
|
2305
|
+
color?: string | undefined;
|
|
2306
|
+
team_id?: string | undefined;
|
|
2307
|
+
deleted?: boolean | undefined;
|
|
2308
|
+
real_name?: string | undefined;
|
|
2309
|
+
tz?: string | undefined;
|
|
2310
|
+
tz_label?: string | undefined;
|
|
2311
|
+
tz_offset?: number | undefined;
|
|
2312
2312
|
is_admin?: boolean | undefined;
|
|
2313
2313
|
is_owner?: boolean | undefined;
|
|
2314
2314
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2361,13 +2361,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2361
2361
|
}>, "many">>;
|
|
2362
2362
|
}, "strip", z.ZodTypeAny, {
|
|
2363
2363
|
type: string;
|
|
2364
|
+
user?: string | undefined;
|
|
2364
2365
|
text?: string | undefined;
|
|
2365
|
-
username?: string | undefined;
|
|
2366
2366
|
ts?: string | undefined;
|
|
2367
|
+
username?: string | undefined;
|
|
2367
2368
|
attachments?: unknown[] | undefined;
|
|
2368
2369
|
blocks?: unknown[] | undefined;
|
|
2369
2370
|
thread_ts?: string | undefined;
|
|
2370
|
-
user?: string | undefined;
|
|
2371
2371
|
bot_id?: string | undefined;
|
|
2372
2372
|
bot_profile?: {
|
|
2373
2373
|
name?: string | undefined;
|
|
@@ -2386,13 +2386,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2386
2386
|
}[] | undefined;
|
|
2387
2387
|
}, {
|
|
2388
2388
|
type: string;
|
|
2389
|
+
user?: string | undefined;
|
|
2389
2390
|
text?: string | undefined;
|
|
2390
|
-
username?: string | undefined;
|
|
2391
2391
|
ts?: string | undefined;
|
|
2392
|
+
username?: string | undefined;
|
|
2392
2393
|
attachments?: unknown[] | undefined;
|
|
2393
2394
|
blocks?: unknown[] | undefined;
|
|
2394
2395
|
thread_ts?: string | undefined;
|
|
2395
|
-
user?: string | undefined;
|
|
2396
2396
|
bot_id?: string | undefined;
|
|
2397
2397
|
bot_profile?: {
|
|
2398
2398
|
name?: string | undefined;
|
|
@@ -2421,22 +2421,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2421
2421
|
error: z.ZodString;
|
|
2422
2422
|
success: z.ZodBoolean;
|
|
2423
2423
|
}, "strip", z.ZodTypeAny, {
|
|
2424
|
-
operation: "get_conversation_history";
|
|
2425
|
-
ok: boolean;
|
|
2426
2424
|
error: string;
|
|
2427
2425
|
success: boolean;
|
|
2426
|
+
operation: "get_conversation_history";
|
|
2427
|
+
ok: boolean;
|
|
2428
2428
|
response_metadata?: {
|
|
2429
2429
|
next_cursor: string;
|
|
2430
2430
|
} | undefined;
|
|
2431
2431
|
messages?: {
|
|
2432
2432
|
type: string;
|
|
2433
|
+
user?: string | undefined;
|
|
2433
2434
|
text?: string | undefined;
|
|
2434
|
-
username?: string | undefined;
|
|
2435
2435
|
ts?: string | undefined;
|
|
2436
|
+
username?: string | undefined;
|
|
2436
2437
|
attachments?: unknown[] | undefined;
|
|
2437
2438
|
blocks?: unknown[] | undefined;
|
|
2438
2439
|
thread_ts?: string | undefined;
|
|
2439
|
-
user?: string | undefined;
|
|
2440
2440
|
bot_id?: string | undefined;
|
|
2441
2441
|
bot_profile?: {
|
|
2442
2442
|
name?: string | undefined;
|
|
@@ -2456,22 +2456,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2456
2456
|
}[] | undefined;
|
|
2457
2457
|
has_more?: boolean | undefined;
|
|
2458
2458
|
}, {
|
|
2459
|
-
operation: "get_conversation_history";
|
|
2460
|
-
ok: boolean;
|
|
2461
2459
|
error: string;
|
|
2462
2460
|
success: boolean;
|
|
2461
|
+
operation: "get_conversation_history";
|
|
2462
|
+
ok: boolean;
|
|
2463
2463
|
response_metadata?: {
|
|
2464
2464
|
next_cursor: string;
|
|
2465
2465
|
} | undefined;
|
|
2466
2466
|
messages?: {
|
|
2467
2467
|
type: string;
|
|
2468
|
+
user?: string | undefined;
|
|
2468
2469
|
text?: string | undefined;
|
|
2469
|
-
username?: string | undefined;
|
|
2470
2470
|
ts?: string | undefined;
|
|
2471
|
+
username?: string | undefined;
|
|
2471
2472
|
attachments?: unknown[] | undefined;
|
|
2472
2473
|
blocks?: unknown[] | undefined;
|
|
2473
2474
|
thread_ts?: string | undefined;
|
|
2474
|
-
user?: string | undefined;
|
|
2475
2475
|
bot_id?: string | undefined;
|
|
2476
2476
|
bot_profile?: {
|
|
2477
2477
|
name?: string | undefined;
|
|
@@ -2532,13 +2532,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2532
2532
|
}>, "many">>;
|
|
2533
2533
|
}, "strip", z.ZodTypeAny, {
|
|
2534
2534
|
type: string;
|
|
2535
|
+
user?: string | undefined;
|
|
2535
2536
|
text?: string | undefined;
|
|
2536
|
-
username?: string | undefined;
|
|
2537
2537
|
ts?: string | undefined;
|
|
2538
|
+
username?: string | undefined;
|
|
2538
2539
|
attachments?: unknown[] | undefined;
|
|
2539
2540
|
blocks?: unknown[] | undefined;
|
|
2540
2541
|
thread_ts?: string | undefined;
|
|
2541
|
-
user?: string | undefined;
|
|
2542
2542
|
bot_id?: string | undefined;
|
|
2543
2543
|
bot_profile?: {
|
|
2544
2544
|
name?: string | undefined;
|
|
@@ -2557,13 +2557,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2557
2557
|
}[] | undefined;
|
|
2558
2558
|
}, {
|
|
2559
2559
|
type: string;
|
|
2560
|
+
user?: string | undefined;
|
|
2560
2561
|
text?: string | undefined;
|
|
2561
|
-
username?: string | undefined;
|
|
2562
2562
|
ts?: string | undefined;
|
|
2563
|
+
username?: string | undefined;
|
|
2563
2564
|
attachments?: unknown[] | undefined;
|
|
2564
2565
|
blocks?: unknown[] | undefined;
|
|
2565
2566
|
thread_ts?: string | undefined;
|
|
2566
|
-
user?: string | undefined;
|
|
2567
2567
|
bot_id?: string | undefined;
|
|
2568
2568
|
bot_profile?: {
|
|
2569
2569
|
name?: string | undefined;
|
|
@@ -2592,22 +2592,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2592
2592
|
error: z.ZodString;
|
|
2593
2593
|
success: z.ZodBoolean;
|
|
2594
2594
|
}, "strip", z.ZodTypeAny, {
|
|
2595
|
-
operation: "get_thread_replies";
|
|
2596
|
-
ok: boolean;
|
|
2597
2595
|
error: string;
|
|
2598
2596
|
success: boolean;
|
|
2597
|
+
operation: "get_thread_replies";
|
|
2598
|
+
ok: boolean;
|
|
2599
2599
|
response_metadata?: {
|
|
2600
2600
|
next_cursor: string;
|
|
2601
2601
|
} | undefined;
|
|
2602
2602
|
messages?: {
|
|
2603
2603
|
type: string;
|
|
2604
|
+
user?: string | undefined;
|
|
2604
2605
|
text?: string | undefined;
|
|
2605
|
-
username?: string | undefined;
|
|
2606
2606
|
ts?: string | undefined;
|
|
2607
|
+
username?: string | undefined;
|
|
2607
2608
|
attachments?: unknown[] | undefined;
|
|
2608
2609
|
blocks?: unknown[] | undefined;
|
|
2609
2610
|
thread_ts?: string | undefined;
|
|
2610
|
-
user?: string | undefined;
|
|
2611
2611
|
bot_id?: string | undefined;
|
|
2612
2612
|
bot_profile?: {
|
|
2613
2613
|
name?: string | undefined;
|
|
@@ -2627,22 +2627,22 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2627
2627
|
}[] | undefined;
|
|
2628
2628
|
has_more?: boolean | undefined;
|
|
2629
2629
|
}, {
|
|
2630
|
-
operation: "get_thread_replies";
|
|
2631
|
-
ok: boolean;
|
|
2632
2630
|
error: string;
|
|
2633
2631
|
success: boolean;
|
|
2632
|
+
operation: "get_thread_replies";
|
|
2633
|
+
ok: boolean;
|
|
2634
2634
|
response_metadata?: {
|
|
2635
2635
|
next_cursor: string;
|
|
2636
2636
|
} | undefined;
|
|
2637
2637
|
messages?: {
|
|
2638
2638
|
type: string;
|
|
2639
|
+
user?: string | undefined;
|
|
2639
2640
|
text?: string | undefined;
|
|
2640
|
-
username?: string | undefined;
|
|
2641
2641
|
ts?: string | undefined;
|
|
2642
|
+
username?: string | undefined;
|
|
2642
2643
|
attachments?: unknown[] | undefined;
|
|
2643
2644
|
blocks?: unknown[] | undefined;
|
|
2644
2645
|
thread_ts?: string | undefined;
|
|
2645
|
-
user?: string | undefined;
|
|
2646
2646
|
bot_id?: string | undefined;
|
|
2647
2647
|
bot_profile?: {
|
|
2648
2648
|
name?: string | undefined;
|
|
@@ -2706,13 +2706,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2706
2706
|
}>, "many">>;
|
|
2707
2707
|
}, "strip", z.ZodTypeAny, {
|
|
2708
2708
|
type: string;
|
|
2709
|
+
user?: string | undefined;
|
|
2709
2710
|
text?: string | undefined;
|
|
2710
|
-
username?: string | undefined;
|
|
2711
2711
|
ts?: string | undefined;
|
|
2712
|
+
username?: string | undefined;
|
|
2712
2713
|
attachments?: unknown[] | undefined;
|
|
2713
2714
|
blocks?: unknown[] | undefined;
|
|
2714
2715
|
thread_ts?: string | undefined;
|
|
2715
|
-
user?: string | undefined;
|
|
2716
2716
|
bot_id?: string | undefined;
|
|
2717
2717
|
bot_profile?: {
|
|
2718
2718
|
name?: string | undefined;
|
|
@@ -2731,13 +2731,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2731
2731
|
}[] | undefined;
|
|
2732
2732
|
}, {
|
|
2733
2733
|
type: string;
|
|
2734
|
+
user?: string | undefined;
|
|
2734
2735
|
text?: string | undefined;
|
|
2735
|
-
username?: string | undefined;
|
|
2736
2736
|
ts?: string | undefined;
|
|
2737
|
+
username?: string | undefined;
|
|
2737
2738
|
attachments?: unknown[] | undefined;
|
|
2738
2739
|
blocks?: unknown[] | undefined;
|
|
2739
2740
|
thread_ts?: string | undefined;
|
|
2740
|
-
user?: string | undefined;
|
|
2741
2741
|
bot_id?: string | undefined;
|
|
2742
2742
|
bot_profile?: {
|
|
2743
2743
|
name?: string | undefined;
|
|
@@ -2758,19 +2758,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2758
2758
|
error: z.ZodString;
|
|
2759
2759
|
success: z.ZodBoolean;
|
|
2760
2760
|
}, "strip", z.ZodTypeAny, {
|
|
2761
|
-
operation: "update_message";
|
|
2762
|
-
ok: boolean;
|
|
2763
2761
|
error: string;
|
|
2764
2762
|
success: boolean;
|
|
2763
|
+
operation: "update_message";
|
|
2764
|
+
ok: boolean;
|
|
2765
2765
|
message?: {
|
|
2766
2766
|
type: string;
|
|
2767
|
+
user?: string | undefined;
|
|
2767
2768
|
text?: string | undefined;
|
|
2768
|
-
username?: string | undefined;
|
|
2769
2769
|
ts?: string | undefined;
|
|
2770
|
+
username?: string | undefined;
|
|
2770
2771
|
attachments?: unknown[] | undefined;
|
|
2771
2772
|
blocks?: unknown[] | undefined;
|
|
2772
2773
|
thread_ts?: string | undefined;
|
|
2773
|
-
user?: string | undefined;
|
|
2774
2774
|
bot_id?: string | undefined;
|
|
2775
2775
|
bot_profile?: {
|
|
2776
2776
|
name?: string | undefined;
|
|
@@ -2788,23 +2788,23 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2788
2788
|
count: number;
|
|
2789
2789
|
}[] | undefined;
|
|
2790
2790
|
} | undefined;
|
|
2791
|
-
channel?: string | undefined;
|
|
2792
2791
|
text?: string | undefined;
|
|
2793
2792
|
ts?: string | undefined;
|
|
2793
|
+
channel?: string | undefined;
|
|
2794
2794
|
}, {
|
|
2795
|
-
operation: "update_message";
|
|
2796
|
-
ok: boolean;
|
|
2797
2795
|
error: string;
|
|
2798
2796
|
success: boolean;
|
|
2797
|
+
operation: "update_message";
|
|
2798
|
+
ok: boolean;
|
|
2799
2799
|
message?: {
|
|
2800
2800
|
type: string;
|
|
2801
|
+
user?: string | undefined;
|
|
2801
2802
|
text?: string | undefined;
|
|
2802
|
-
username?: string | undefined;
|
|
2803
2803
|
ts?: string | undefined;
|
|
2804
|
+
username?: string | undefined;
|
|
2804
2805
|
attachments?: unknown[] | undefined;
|
|
2805
2806
|
blocks?: unknown[] | undefined;
|
|
2806
2807
|
thread_ts?: string | undefined;
|
|
2807
|
-
user?: string | undefined;
|
|
2808
2808
|
bot_id?: string | undefined;
|
|
2809
2809
|
bot_profile?: {
|
|
2810
2810
|
name?: string | undefined;
|
|
@@ -2822,9 +2822,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2822
2822
|
count: number;
|
|
2823
2823
|
}[] | undefined;
|
|
2824
2824
|
} | undefined;
|
|
2825
|
-
channel?: string | undefined;
|
|
2826
2825
|
text?: string | undefined;
|
|
2827
2826
|
ts?: string | undefined;
|
|
2827
|
+
channel?: string | undefined;
|
|
2828
2828
|
}>, z.ZodObject<{
|
|
2829
2829
|
operation: z.ZodLiteral<"delete_message">;
|
|
2830
2830
|
ok: z.ZodBoolean;
|
|
@@ -2833,49 +2833,49 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2833
2833
|
error: z.ZodString;
|
|
2834
2834
|
success: z.ZodBoolean;
|
|
2835
2835
|
}, "strip", z.ZodTypeAny, {
|
|
2836
|
-
operation: "delete_message";
|
|
2837
|
-
ok: boolean;
|
|
2838
2836
|
error: string;
|
|
2839
2837
|
success: boolean;
|
|
2840
|
-
channel?: string | undefined;
|
|
2841
|
-
ts?: string | undefined;
|
|
2842
|
-
}, {
|
|
2843
2838
|
operation: "delete_message";
|
|
2844
2839
|
ok: boolean;
|
|
2840
|
+
ts?: string | undefined;
|
|
2841
|
+
channel?: string | undefined;
|
|
2842
|
+
}, {
|
|
2845
2843
|
error: string;
|
|
2846
2844
|
success: boolean;
|
|
2847
|
-
|
|
2845
|
+
operation: "delete_message";
|
|
2846
|
+
ok: boolean;
|
|
2848
2847
|
ts?: string | undefined;
|
|
2848
|
+
channel?: string | undefined;
|
|
2849
2849
|
}>, z.ZodObject<{
|
|
2850
2850
|
operation: z.ZodLiteral<"add_reaction">;
|
|
2851
2851
|
ok: z.ZodBoolean;
|
|
2852
2852
|
error: z.ZodString;
|
|
2853
2853
|
success: z.ZodBoolean;
|
|
2854
2854
|
}, "strip", z.ZodTypeAny, {
|
|
2855
|
-
operation: "add_reaction";
|
|
2856
|
-
ok: boolean;
|
|
2857
2855
|
error: string;
|
|
2858
2856
|
success: boolean;
|
|
2859
|
-
}, {
|
|
2860
2857
|
operation: "add_reaction";
|
|
2861
2858
|
ok: boolean;
|
|
2859
|
+
}, {
|
|
2862
2860
|
error: string;
|
|
2863
2861
|
success: boolean;
|
|
2862
|
+
operation: "add_reaction";
|
|
2863
|
+
ok: boolean;
|
|
2864
2864
|
}>, z.ZodObject<{
|
|
2865
2865
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
2866
2866
|
ok: z.ZodBoolean;
|
|
2867
2867
|
error: z.ZodString;
|
|
2868
2868
|
success: z.ZodBoolean;
|
|
2869
2869
|
}, "strip", z.ZodTypeAny, {
|
|
2870
|
-
operation: "remove_reaction";
|
|
2871
|
-
ok: boolean;
|
|
2872
2870
|
error: string;
|
|
2873
2871
|
success: boolean;
|
|
2874
|
-
}, {
|
|
2875
2872
|
operation: "remove_reaction";
|
|
2876
2873
|
ok: boolean;
|
|
2874
|
+
}, {
|
|
2877
2875
|
error: string;
|
|
2878
2876
|
success: boolean;
|
|
2877
|
+
operation: "remove_reaction";
|
|
2878
|
+
ok: boolean;
|
|
2879
2879
|
}>, z.ZodObject<{
|
|
2880
2880
|
operation: z.ZodLiteral<"join_channel">;
|
|
2881
2881
|
ok: z.ZodBoolean;
|
|
@@ -2999,10 +2999,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2999
2999
|
error: z.ZodString;
|
|
3000
3000
|
success: z.ZodBoolean;
|
|
3001
3001
|
}, "strip", z.ZodTypeAny, {
|
|
3002
|
-
operation: "join_channel";
|
|
3003
|
-
ok: boolean;
|
|
3004
3002
|
error: string;
|
|
3005
3003
|
success: boolean;
|
|
3004
|
+
operation: "join_channel";
|
|
3005
|
+
ok: boolean;
|
|
3006
3006
|
channel?: {
|
|
3007
3007
|
name: string;
|
|
3008
3008
|
id: string;
|
|
@@ -3039,10 +3039,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3039
3039
|
} | undefined;
|
|
3040
3040
|
already_in_channel?: boolean | undefined;
|
|
3041
3041
|
}, {
|
|
3042
|
-
operation: "join_channel";
|
|
3043
|
-
ok: boolean;
|
|
3044
3042
|
error: string;
|
|
3045
3043
|
success: boolean;
|
|
3044
|
+
operation: "join_channel";
|
|
3045
|
+
ok: boolean;
|
|
3046
3046
|
channel?: {
|
|
3047
3047
|
name: string;
|
|
3048
3048
|
id: string;
|
|
@@ -3114,17 +3114,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3114
3114
|
team_id: z.ZodString;
|
|
3115
3115
|
}, "strip", z.ZodTypeAny, {
|
|
3116
3116
|
ts: string;
|
|
3117
|
+
team_id: string;
|
|
3117
3118
|
reply_count: number;
|
|
3118
3119
|
reply_users_count: number;
|
|
3119
3120
|
reply_users: string[];
|
|
3120
|
-
team_id: string;
|
|
3121
3121
|
channel_name: string;
|
|
3122
3122
|
}, {
|
|
3123
3123
|
ts: string;
|
|
3124
|
+
team_id: string;
|
|
3124
3125
|
reply_count: number;
|
|
3125
3126
|
reply_users_count: number;
|
|
3126
3127
|
reply_users: string[];
|
|
3127
|
-
team_id: string;
|
|
3128
3128
|
channel_name: string;
|
|
3129
3129
|
}>, "many">>>;
|
|
3130
3130
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -3136,51 +3136,51 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3136
3136
|
team_id: z.ZodString;
|
|
3137
3137
|
}, "strip", z.ZodTypeAny, {
|
|
3138
3138
|
ts: string;
|
|
3139
|
+
team_id: string;
|
|
3139
3140
|
reply_count: number;
|
|
3140
3141
|
reply_users_count: number;
|
|
3141
3142
|
reply_users: string[];
|
|
3142
|
-
team_id: string;
|
|
3143
3143
|
channel_name: string;
|
|
3144
3144
|
}, {
|
|
3145
3145
|
ts: string;
|
|
3146
|
+
team_id: string;
|
|
3146
3147
|
reply_count: number;
|
|
3147
3148
|
reply_users_count: number;
|
|
3148
3149
|
reply_users: string[];
|
|
3149
|
-
team_id: string;
|
|
3150
3150
|
channel_name: string;
|
|
3151
3151
|
}>, "many">>>;
|
|
3152
3152
|
}, "strip", z.ZodTypeAny, {
|
|
3153
3153
|
public?: Record<string, {
|
|
3154
3154
|
ts: string;
|
|
3155
|
+
team_id: string;
|
|
3155
3156
|
reply_count: number;
|
|
3156
3157
|
reply_users_count: number;
|
|
3157
3158
|
reply_users: string[];
|
|
3158
|
-
team_id: string;
|
|
3159
3159
|
channel_name: string;
|
|
3160
3160
|
}[]> | undefined;
|
|
3161
3161
|
private?: Record<string, {
|
|
3162
3162
|
ts: string;
|
|
3163
|
+
team_id: string;
|
|
3163
3164
|
reply_count: number;
|
|
3164
3165
|
reply_users_count: number;
|
|
3165
3166
|
reply_users: string[];
|
|
3166
|
-
team_id: string;
|
|
3167
3167
|
channel_name: string;
|
|
3168
3168
|
}[]> | undefined;
|
|
3169
3169
|
}, {
|
|
3170
3170
|
public?: Record<string, {
|
|
3171
3171
|
ts: string;
|
|
3172
|
+
team_id: string;
|
|
3172
3173
|
reply_count: number;
|
|
3173
3174
|
reply_users_count: number;
|
|
3174
3175
|
reply_users: string[];
|
|
3175
|
-
team_id: string;
|
|
3176
3176
|
channel_name: string;
|
|
3177
3177
|
}[]> | undefined;
|
|
3178
3178
|
private?: Record<string, {
|
|
3179
3179
|
ts: string;
|
|
3180
|
+
team_id: string;
|
|
3180
3181
|
reply_count: number;
|
|
3181
3182
|
reply_users_count: number;
|
|
3182
3183
|
reply_users: string[];
|
|
3183
|
-
team_id: string;
|
|
3184
3184
|
channel_name: string;
|
|
3185
3185
|
}[]> | undefined;
|
|
3186
3186
|
}>>;
|
|
@@ -3189,11 +3189,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3189
3189
|
ims: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3190
3190
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
3191
3191
|
}, "strip", z.ZodTypeAny, {
|
|
3192
|
-
username: string;
|
|
3193
3192
|
name: string;
|
|
3193
|
+
id: string;
|
|
3194
3194
|
user: string;
|
|
3195
|
+
username: string;
|
|
3195
3196
|
timestamp: number;
|
|
3196
|
-
id: string;
|
|
3197
3197
|
created: number;
|
|
3198
3198
|
mimetype: string;
|
|
3199
3199
|
filetype: string;
|
|
@@ -3215,18 +3215,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3215
3215
|
shares?: {
|
|
3216
3216
|
public?: Record<string, {
|
|
3217
3217
|
ts: string;
|
|
3218
|
+
team_id: string;
|
|
3218
3219
|
reply_count: number;
|
|
3219
3220
|
reply_users_count: number;
|
|
3220
3221
|
reply_users: string[];
|
|
3221
|
-
team_id: string;
|
|
3222
3222
|
channel_name: string;
|
|
3223
3223
|
}[]> | undefined;
|
|
3224
3224
|
private?: Record<string, {
|
|
3225
3225
|
ts: string;
|
|
3226
|
+
team_id: string;
|
|
3226
3227
|
reply_count: number;
|
|
3227
3228
|
reply_users_count: number;
|
|
3228
3229
|
reply_users: string[];
|
|
3229
|
-
team_id: string;
|
|
3230
3230
|
channel_name: string;
|
|
3231
3231
|
}[]> | undefined;
|
|
3232
3232
|
} | undefined;
|
|
@@ -3234,11 +3234,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3234
3234
|
ims?: string[] | undefined;
|
|
3235
3235
|
has_rich_preview?: boolean | undefined;
|
|
3236
3236
|
}, {
|
|
3237
|
-
username: string;
|
|
3238
3237
|
name: string;
|
|
3238
|
+
id: string;
|
|
3239
3239
|
user: string;
|
|
3240
|
+
username: string;
|
|
3240
3241
|
timestamp: number;
|
|
3241
|
-
id: string;
|
|
3242
3242
|
created: number;
|
|
3243
3243
|
mimetype: string;
|
|
3244
3244
|
filetype: string;
|
|
@@ -3260,18 +3260,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3260
3260
|
shares?: {
|
|
3261
3261
|
public?: Record<string, {
|
|
3262
3262
|
ts: string;
|
|
3263
|
+
team_id: string;
|
|
3263
3264
|
reply_count: number;
|
|
3264
3265
|
reply_users_count: number;
|
|
3265
3266
|
reply_users: string[];
|
|
3266
|
-
team_id: string;
|
|
3267
3267
|
channel_name: string;
|
|
3268
3268
|
}[]> | undefined;
|
|
3269
3269
|
private?: Record<string, {
|
|
3270
3270
|
ts: string;
|
|
3271
|
+
team_id: string;
|
|
3271
3272
|
reply_count: number;
|
|
3272
3273
|
reply_users_count: number;
|
|
3273
3274
|
reply_users: string[];
|
|
3274
|
-
team_id: string;
|
|
3275
3275
|
channel_name: string;
|
|
3276
3276
|
}[]> | undefined;
|
|
3277
3277
|
} | undefined;
|
|
@@ -3282,16 +3282,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3282
3282
|
error: z.ZodString;
|
|
3283
3283
|
success: z.ZodBoolean;
|
|
3284
3284
|
}, "strip", z.ZodTypeAny, {
|
|
3285
|
-
operation: "upload_file";
|
|
3286
|
-
ok: boolean;
|
|
3287
3285
|
error: string;
|
|
3288
3286
|
success: boolean;
|
|
3287
|
+
operation: "upload_file";
|
|
3288
|
+
ok: boolean;
|
|
3289
3289
|
file?: {
|
|
3290
|
-
username: string;
|
|
3291
3290
|
name: string;
|
|
3291
|
+
id: string;
|
|
3292
3292
|
user: string;
|
|
3293
|
+
username: string;
|
|
3293
3294
|
timestamp: number;
|
|
3294
|
-
id: string;
|
|
3295
3295
|
created: number;
|
|
3296
3296
|
mimetype: string;
|
|
3297
3297
|
filetype: string;
|
|
@@ -3313,18 +3313,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3313
3313
|
shares?: {
|
|
3314
3314
|
public?: Record<string, {
|
|
3315
3315
|
ts: string;
|
|
3316
|
+
team_id: string;
|
|
3316
3317
|
reply_count: number;
|
|
3317
3318
|
reply_users_count: number;
|
|
3318
3319
|
reply_users: string[];
|
|
3319
|
-
team_id: string;
|
|
3320
3320
|
channel_name: string;
|
|
3321
3321
|
}[]> | undefined;
|
|
3322
3322
|
private?: Record<string, {
|
|
3323
3323
|
ts: string;
|
|
3324
|
+
team_id: string;
|
|
3324
3325
|
reply_count: number;
|
|
3325
3326
|
reply_users_count: number;
|
|
3326
3327
|
reply_users: string[];
|
|
3327
|
-
team_id: string;
|
|
3328
3328
|
channel_name: string;
|
|
3329
3329
|
}[]> | undefined;
|
|
3330
3330
|
} | undefined;
|
|
@@ -3333,16 +3333,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3333
3333
|
has_rich_preview?: boolean | undefined;
|
|
3334
3334
|
} | undefined;
|
|
3335
3335
|
}, {
|
|
3336
|
-
operation: "upload_file";
|
|
3337
|
-
ok: boolean;
|
|
3338
3336
|
error: string;
|
|
3339
3337
|
success: boolean;
|
|
3338
|
+
operation: "upload_file";
|
|
3339
|
+
ok: boolean;
|
|
3340
3340
|
file?: {
|
|
3341
|
-
username: string;
|
|
3342
3341
|
name: string;
|
|
3342
|
+
id: string;
|
|
3343
3343
|
user: string;
|
|
3344
|
+
username: string;
|
|
3344
3345
|
timestamp: number;
|
|
3345
|
-
id: string;
|
|
3346
3346
|
created: number;
|
|
3347
3347
|
mimetype: string;
|
|
3348
3348
|
filetype: string;
|
|
@@ -3364,18 +3364,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3364
3364
|
shares?: {
|
|
3365
3365
|
public?: Record<string, {
|
|
3366
3366
|
ts: string;
|
|
3367
|
+
team_id: string;
|
|
3367
3368
|
reply_count: number;
|
|
3368
3369
|
reply_users_count: number;
|
|
3369
3370
|
reply_users: string[];
|
|
3370
|
-
team_id: string;
|
|
3371
3371
|
channel_name: string;
|
|
3372
3372
|
}[]> | undefined;
|
|
3373
3373
|
private?: Record<string, {
|
|
3374
3374
|
ts: string;
|
|
3375
|
+
team_id: string;
|
|
3375
3376
|
reply_count: number;
|
|
3376
3377
|
reply_users_count: number;
|
|
3377
3378
|
reply_users: string[];
|
|
3378
|
-
team_id: string;
|
|
3379
3379
|
channel_name: string;
|
|
3380
3380
|
}[]> | undefined;
|
|
3381
3381
|
} | undefined;
|
|
@@ -3392,18 +3392,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3392
3392
|
error: z.ZodString;
|
|
3393
3393
|
success: z.ZodBoolean;
|
|
3394
3394
|
}, "strip", z.ZodTypeAny, {
|
|
3395
|
-
operation: "schedule_message";
|
|
3396
|
-
ok: boolean;
|
|
3397
3395
|
error: string;
|
|
3398
3396
|
success: boolean;
|
|
3397
|
+
operation: "schedule_message";
|
|
3398
|
+
ok: boolean;
|
|
3399
3399
|
channel?: string | undefined;
|
|
3400
3400
|
post_at?: number | undefined;
|
|
3401
3401
|
scheduled_message_id?: string | undefined;
|
|
3402
3402
|
}, {
|
|
3403
|
-
operation: "schedule_message";
|
|
3404
|
-
ok: boolean;
|
|
3405
3403
|
error: string;
|
|
3406
3404
|
success: boolean;
|
|
3405
|
+
operation: "schedule_message";
|
|
3406
|
+
ok: boolean;
|
|
3407
3407
|
channel?: string | undefined;
|
|
3408
3408
|
post_at?: number | undefined;
|
|
3409
3409
|
scheduled_message_id?: string | undefined;
|
|
@@ -3462,10 +3462,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3462
3462
|
error: z.ZodString;
|
|
3463
3463
|
success: z.ZodBoolean;
|
|
3464
3464
|
}, "strip", z.ZodTypeAny, {
|
|
3465
|
-
operation: "get_file_info";
|
|
3466
|
-
ok: boolean;
|
|
3467
3465
|
error: string;
|
|
3468
3466
|
success: boolean;
|
|
3467
|
+
operation: "get_file_info";
|
|
3468
|
+
ok: boolean;
|
|
3469
3469
|
file?: {
|
|
3470
3470
|
name: string;
|
|
3471
3471
|
id: string;
|
|
@@ -3484,10 +3484,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3484
3484
|
original_h?: number | undefined;
|
|
3485
3485
|
} | undefined;
|
|
3486
3486
|
}, {
|
|
3487
|
-
operation: "get_file_info";
|
|
3488
|
-
ok: boolean;
|
|
3489
3487
|
error: string;
|
|
3490
3488
|
success: boolean;
|
|
3489
|
+
operation: "get_file_info";
|
|
3490
|
+
ok: boolean;
|
|
3491
3491
|
file?: {
|
|
3492
3492
|
name: string;
|
|
3493
3493
|
id: string;
|
|
@@ -3515,19 +3515,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3515
3515
|
error: z.ZodString;
|
|
3516
3516
|
success: z.ZodBoolean;
|
|
3517
3517
|
}, "strip", z.ZodTypeAny, {
|
|
3518
|
-
operation: "download_file";
|
|
3519
|
-
ok: boolean;
|
|
3520
3518
|
error: string;
|
|
3521
3519
|
success: boolean;
|
|
3520
|
+
operation: "download_file";
|
|
3521
|
+
ok: boolean;
|
|
3522
3522
|
content?: string | undefined;
|
|
3523
3523
|
filename?: string | undefined;
|
|
3524
3524
|
mimetype?: string | undefined;
|
|
3525
3525
|
size?: number | undefined;
|
|
3526
3526
|
}, {
|
|
3527
|
-
operation: "download_file";
|
|
3528
|
-
ok: boolean;
|
|
3529
3527
|
error: string;
|
|
3530
3528
|
success: boolean;
|
|
3529
|
+
operation: "download_file";
|
|
3530
|
+
ok: boolean;
|
|
3531
3531
|
content?: string | undefined;
|
|
3532
3532
|
filename?: string | undefined;
|
|
3533
3533
|
mimetype?: string | undefined;
|
|
@@ -3583,18 +3583,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3583
3583
|
}, "strip", z.ZodTypeAny, {
|
|
3584
3584
|
title?: string | undefined;
|
|
3585
3585
|
text?: string | undefined;
|
|
3586
|
+
image_url?: string | undefined;
|
|
3587
|
+
fields?: {
|
|
3588
|
+
value: string;
|
|
3589
|
+
title: string;
|
|
3590
|
+
short?: boolean | undefined;
|
|
3591
|
+
}[] | undefined;
|
|
3586
3592
|
color?: string | undefined;
|
|
3587
3593
|
pretext?: string | undefined;
|
|
3588
3594
|
author_name?: string | undefined;
|
|
3589
3595
|
author_link?: string | undefined;
|
|
3590
3596
|
author_icon?: string | undefined;
|
|
3591
3597
|
title_link?: string | undefined;
|
|
3592
|
-
fields?: {
|
|
3593
|
-
value: string;
|
|
3594
|
-
title: string;
|
|
3595
|
-
short?: boolean | undefined;
|
|
3596
|
-
}[] | undefined;
|
|
3597
|
-
image_url?: string | undefined;
|
|
3598
3598
|
thumb_url?: string | undefined;
|
|
3599
3599
|
footer?: string | undefined;
|
|
3600
3600
|
footer_icon?: string | undefined;
|
|
@@ -3602,18 +3602,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3602
3602
|
}, {
|
|
3603
3603
|
title?: string | undefined;
|
|
3604
3604
|
text?: string | undefined;
|
|
3605
|
+
image_url?: string | undefined;
|
|
3606
|
+
fields?: {
|
|
3607
|
+
value: string;
|
|
3608
|
+
title: string;
|
|
3609
|
+
short?: boolean | undefined;
|
|
3610
|
+
}[] | undefined;
|
|
3605
3611
|
color?: string | undefined;
|
|
3606
3612
|
pretext?: string | undefined;
|
|
3607
3613
|
author_name?: string | undefined;
|
|
3608
3614
|
author_link?: string | undefined;
|
|
3609
3615
|
author_icon?: string | undefined;
|
|
3610
3616
|
title_link?: string | undefined;
|
|
3611
|
-
fields?: {
|
|
3612
|
-
value: string;
|
|
3613
|
-
title: string;
|
|
3614
|
-
short?: boolean | undefined;
|
|
3615
|
-
}[] | undefined;
|
|
3616
|
-
image_url?: string | undefined;
|
|
3617
3617
|
thumb_url?: string | undefined;
|
|
3618
3618
|
footer?: string | undefined;
|
|
3619
3619
|
footer_icon?: string | undefined;
|
|
@@ -3645,17 +3645,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3645
3645
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3646
3646
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3647
3647
|
}, "strip", z.ZodTypeAny, {
|
|
3648
|
-
type: "
|
|
3648
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3649
|
+
emoji?: boolean | undefined;
|
|
3649
3650
|
text?: string | undefined;
|
|
3650
3651
|
image_url?: string | undefined;
|
|
3651
|
-
emoji?: boolean | undefined;
|
|
3652
3652
|
verbatim?: boolean | undefined;
|
|
3653
3653
|
alt_text?: string | undefined;
|
|
3654
3654
|
}, {
|
|
3655
|
-
type: "
|
|
3655
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3656
|
+
emoji?: boolean | undefined;
|
|
3656
3657
|
text?: string | undefined;
|
|
3657
3658
|
image_url?: string | undefined;
|
|
3658
|
-
emoji?: boolean | undefined;
|
|
3659
3659
|
verbatim?: boolean | undefined;
|
|
3660
3660
|
alt_text?: string | undefined;
|
|
3661
3661
|
}>, "many">>;
|
|
@@ -3685,17 +3685,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3685
3685
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3686
3686
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3687
3687
|
}, "strip", z.ZodTypeAny, {
|
|
3688
|
-
type: "
|
|
3688
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3689
|
+
emoji?: boolean | undefined;
|
|
3689
3690
|
text?: string | undefined;
|
|
3690
3691
|
image_url?: string | undefined;
|
|
3691
|
-
emoji?: boolean | undefined;
|
|
3692
3692
|
verbatim?: boolean | undefined;
|
|
3693
3693
|
alt_text?: string | undefined;
|
|
3694
3694
|
}, {
|
|
3695
|
-
type: "
|
|
3695
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3696
|
+
emoji?: boolean | undefined;
|
|
3696
3697
|
text?: string | undefined;
|
|
3697
3698
|
image_url?: string | undefined;
|
|
3698
|
-
emoji?: boolean | undefined;
|
|
3699
3699
|
verbatim?: boolean | undefined;
|
|
3700
3700
|
alt_text?: string | undefined;
|
|
3701
3701
|
}>, "many">>;
|
|
@@ -3725,17 +3725,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3725
3725
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3726
3726
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3727
3727
|
}, "strip", z.ZodTypeAny, {
|
|
3728
|
-
type: "
|
|
3728
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3729
|
+
emoji?: boolean | undefined;
|
|
3729
3730
|
text?: string | undefined;
|
|
3730
3731
|
image_url?: string | undefined;
|
|
3731
|
-
emoji?: boolean | undefined;
|
|
3732
3732
|
verbatim?: boolean | undefined;
|
|
3733
3733
|
alt_text?: string | undefined;
|
|
3734
3734
|
}, {
|
|
3735
|
-
type: "
|
|
3735
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3736
|
+
emoji?: boolean | undefined;
|
|
3736
3737
|
text?: string | undefined;
|
|
3737
3738
|
image_url?: string | undefined;
|
|
3738
|
-
emoji?: boolean | undefined;
|
|
3739
3739
|
verbatim?: boolean | undefined;
|
|
3740
3740
|
alt_text?: string | undefined;
|
|
3741
3741
|
}>, "many">>;
|
|
@@ -3746,30 +3746,31 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3746
3746
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3747
3747
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3748
3748
|
}, "strip", z.ZodTypeAny, {
|
|
3749
|
+
text: string;
|
|
3749
3750
|
operation: "send_message";
|
|
3750
3751
|
channel: string;
|
|
3751
|
-
text: string;
|
|
3752
3752
|
reply_broadcast: boolean;
|
|
3753
3753
|
unfurl_links: boolean;
|
|
3754
3754
|
unfurl_media: boolean;
|
|
3755
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3755
3756
|
username?: string | undefined;
|
|
3756
3757
|
icon_emoji?: string | undefined;
|
|
3757
3758
|
icon_url?: string | undefined;
|
|
3758
3759
|
attachments?: {
|
|
3759
3760
|
title?: string | undefined;
|
|
3760
3761
|
text?: string | undefined;
|
|
3762
|
+
image_url?: string | undefined;
|
|
3763
|
+
fields?: {
|
|
3764
|
+
value: string;
|
|
3765
|
+
title: string;
|
|
3766
|
+
short?: boolean | undefined;
|
|
3767
|
+
}[] | undefined;
|
|
3761
3768
|
color?: string | undefined;
|
|
3762
3769
|
pretext?: string | undefined;
|
|
3763
3770
|
author_name?: string | undefined;
|
|
3764
3771
|
author_link?: string | undefined;
|
|
3765
3772
|
author_icon?: string | undefined;
|
|
3766
3773
|
title_link?: string | undefined;
|
|
3767
|
-
fields?: {
|
|
3768
|
-
value: string;
|
|
3769
|
-
title: string;
|
|
3770
|
-
short?: boolean | undefined;
|
|
3771
|
-
}[] | undefined;
|
|
3772
|
-
image_url?: string | undefined;
|
|
3773
3774
|
thumb_url?: string | undefined;
|
|
3774
3775
|
footer?: string | undefined;
|
|
3775
3776
|
footer_icon?: string | undefined;
|
|
@@ -3801,45 +3802,45 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3801
3802
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3802
3803
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3803
3804
|
}, "strip", z.ZodTypeAny, {
|
|
3804
|
-
type: "
|
|
3805
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3806
|
+
emoji?: boolean | undefined;
|
|
3805
3807
|
text?: string | undefined;
|
|
3806
3808
|
image_url?: string | undefined;
|
|
3807
|
-
emoji?: boolean | undefined;
|
|
3808
3809
|
verbatim?: boolean | undefined;
|
|
3809
3810
|
alt_text?: string | undefined;
|
|
3810
3811
|
}, {
|
|
3811
|
-
type: "
|
|
3812
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3813
|
+
emoji?: boolean | undefined;
|
|
3812
3814
|
text?: string | undefined;
|
|
3813
3815
|
image_url?: string | undefined;
|
|
3814
|
-
emoji?: boolean | undefined;
|
|
3815
3816
|
verbatim?: boolean | undefined;
|
|
3816
3817
|
alt_text?: string | undefined;
|
|
3817
3818
|
}>, "many">>;
|
|
3818
3819
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3819
3820
|
thread_ts?: string | undefined;
|
|
3820
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3821
3821
|
}, {
|
|
3822
|
+
text: string;
|
|
3822
3823
|
operation: "send_message";
|
|
3823
3824
|
channel: string;
|
|
3824
|
-
|
|
3825
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3825
3826
|
username?: string | undefined;
|
|
3826
3827
|
icon_emoji?: string | undefined;
|
|
3827
3828
|
icon_url?: string | undefined;
|
|
3828
3829
|
attachments?: {
|
|
3829
3830
|
title?: string | undefined;
|
|
3830
3831
|
text?: string | undefined;
|
|
3832
|
+
image_url?: string | undefined;
|
|
3833
|
+
fields?: {
|
|
3834
|
+
value: string;
|
|
3835
|
+
title: string;
|
|
3836
|
+
short?: boolean | undefined;
|
|
3837
|
+
}[] | undefined;
|
|
3831
3838
|
color?: string | undefined;
|
|
3832
3839
|
pretext?: string | undefined;
|
|
3833
3840
|
author_name?: string | undefined;
|
|
3834
3841
|
author_link?: string | undefined;
|
|
3835
3842
|
author_icon?: string | undefined;
|
|
3836
3843
|
title_link?: string | undefined;
|
|
3837
|
-
fields?: {
|
|
3838
|
-
value: string;
|
|
3839
|
-
title: string;
|
|
3840
|
-
short?: boolean | undefined;
|
|
3841
|
-
}[] | undefined;
|
|
3842
|
-
image_url?: string | undefined;
|
|
3843
3844
|
thumb_url?: string | undefined;
|
|
3844
3845
|
footer?: string | undefined;
|
|
3845
3846
|
footer_icon?: string | undefined;
|
|
@@ -3871,24 +3872,23 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3871
3872
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3872
3873
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3873
3874
|
}, "strip", z.ZodTypeAny, {
|
|
3874
|
-
type: "
|
|
3875
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3876
|
+
emoji?: boolean | undefined;
|
|
3875
3877
|
text?: string | undefined;
|
|
3876
3878
|
image_url?: string | undefined;
|
|
3877
|
-
emoji?: boolean | undefined;
|
|
3878
3879
|
verbatim?: boolean | undefined;
|
|
3879
3880
|
alt_text?: string | undefined;
|
|
3880
3881
|
}, {
|
|
3881
|
-
type: "
|
|
3882
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3883
|
+
emoji?: boolean | undefined;
|
|
3882
3884
|
text?: string | undefined;
|
|
3883
3885
|
image_url?: string | undefined;
|
|
3884
|
-
emoji?: boolean | undefined;
|
|
3885
3886
|
verbatim?: boolean | undefined;
|
|
3886
3887
|
alt_text?: string | undefined;
|
|
3887
3888
|
}>, "many">>;
|
|
3888
3889
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3889
3890
|
thread_ts?: string | undefined;
|
|
3890
3891
|
reply_broadcast?: boolean | undefined;
|
|
3891
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3892
3892
|
unfurl_links?: boolean | undefined;
|
|
3893
3893
|
unfurl_media?: boolean | undefined;
|
|
3894
3894
|
}>, z.ZodObject<{
|
|
@@ -3933,13 +3933,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3933
3933
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3934
3934
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3935
3935
|
}, "strip", z.ZodTypeAny, {
|
|
3936
|
+
user: string;
|
|
3936
3937
|
operation: "get_user_info";
|
|
3937
3938
|
include_locale: boolean;
|
|
3938
|
-
user: string;
|
|
3939
3939
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3940
3940
|
}, {
|
|
3941
|
-
operation: "get_user_info";
|
|
3942
3941
|
user: string;
|
|
3942
|
+
operation: "get_user_info";
|
|
3943
3943
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3944
3944
|
include_locale?: boolean | undefined;
|
|
3945
3945
|
}>, z.ZodObject<{
|
|
@@ -3970,8 +3970,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3970
3970
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3971
3971
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3972
3972
|
}, "strip", z.ZodTypeAny, {
|
|
3973
|
-
operation: "get_conversation_history";
|
|
3974
3973
|
inclusive: boolean;
|
|
3974
|
+
operation: "get_conversation_history";
|
|
3975
3975
|
channel: string;
|
|
3976
3976
|
limit: number;
|
|
3977
3977
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -3998,19 +3998,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3998
3998
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3999
3999
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4000
4000
|
}, "strip", z.ZodTypeAny, {
|
|
4001
|
-
operation: "get_thread_replies";
|
|
4002
4001
|
inclusive: boolean;
|
|
4003
|
-
channel: string;
|
|
4004
4002
|
ts: string;
|
|
4003
|
+
operation: "get_thread_replies";
|
|
4004
|
+
channel: string;
|
|
4005
4005
|
limit: number;
|
|
4006
4006
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4007
4007
|
cursor?: string | undefined;
|
|
4008
4008
|
latest?: string | undefined;
|
|
4009
4009
|
oldest?: string | undefined;
|
|
4010
4010
|
}, {
|
|
4011
|
+
ts: string;
|
|
4011
4012
|
operation: "get_thread_replies";
|
|
4012
4013
|
channel: string;
|
|
4013
|
-
ts: string;
|
|
4014
4014
|
inclusive?: boolean | undefined;
|
|
4015
4015
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4016
4016
|
limit?: number | undefined;
|
|
@@ -4052,18 +4052,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4052
4052
|
}, "strip", z.ZodTypeAny, {
|
|
4053
4053
|
title?: string | undefined;
|
|
4054
4054
|
text?: string | undefined;
|
|
4055
|
-
|
|
4056
|
-
pretext?: string | undefined;
|
|
4057
|
-
author_name?: string | undefined;
|
|
4058
|
-
author_link?: string | undefined;
|
|
4059
|
-
author_icon?: string | undefined;
|
|
4060
|
-
title_link?: string | undefined;
|
|
4055
|
+
image_url?: string | undefined;
|
|
4061
4056
|
fields?: {
|
|
4062
4057
|
value: string;
|
|
4063
4058
|
title: string;
|
|
4064
4059
|
short?: boolean | undefined;
|
|
4065
4060
|
}[] | undefined;
|
|
4066
|
-
|
|
4061
|
+
color?: string | undefined;
|
|
4062
|
+
pretext?: string | undefined;
|
|
4063
|
+
author_name?: string | undefined;
|
|
4064
|
+
author_link?: string | undefined;
|
|
4065
|
+
author_icon?: string | undefined;
|
|
4066
|
+
title_link?: string | undefined;
|
|
4067
4067
|
thumb_url?: string | undefined;
|
|
4068
4068
|
footer?: string | undefined;
|
|
4069
4069
|
footer_icon?: string | undefined;
|
|
@@ -4071,18 +4071,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4071
4071
|
}, {
|
|
4072
4072
|
title?: string | undefined;
|
|
4073
4073
|
text?: string | undefined;
|
|
4074
|
+
image_url?: string | undefined;
|
|
4075
|
+
fields?: {
|
|
4076
|
+
value: string;
|
|
4077
|
+
title: string;
|
|
4078
|
+
short?: boolean | undefined;
|
|
4079
|
+
}[] | undefined;
|
|
4074
4080
|
color?: string | undefined;
|
|
4075
4081
|
pretext?: string | undefined;
|
|
4076
4082
|
author_name?: string | undefined;
|
|
4077
4083
|
author_link?: string | undefined;
|
|
4078
4084
|
author_icon?: string | undefined;
|
|
4079
4085
|
title_link?: string | undefined;
|
|
4080
|
-
fields?: {
|
|
4081
|
-
value: string;
|
|
4082
|
-
title: string;
|
|
4083
|
-
short?: boolean | undefined;
|
|
4084
|
-
}[] | undefined;
|
|
4085
|
-
image_url?: string | undefined;
|
|
4086
4086
|
thumb_url?: string | undefined;
|
|
4087
4087
|
footer?: string | undefined;
|
|
4088
4088
|
footer_icon?: string | undefined;
|
|
@@ -4114,17 +4114,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4114
4114
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4115
4115
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4116
4116
|
}, "strip", z.ZodTypeAny, {
|
|
4117
|
-
type: "
|
|
4117
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4118
|
+
emoji?: boolean | undefined;
|
|
4118
4119
|
text?: string | undefined;
|
|
4119
4120
|
image_url?: string | undefined;
|
|
4120
|
-
emoji?: boolean | undefined;
|
|
4121
4121
|
verbatim?: boolean | undefined;
|
|
4122
4122
|
alt_text?: string | undefined;
|
|
4123
4123
|
}, {
|
|
4124
|
-
type: "
|
|
4124
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4125
|
+
emoji?: boolean | undefined;
|
|
4125
4126
|
text?: string | undefined;
|
|
4126
4127
|
image_url?: string | undefined;
|
|
4127
|
-
emoji?: boolean | undefined;
|
|
4128
4128
|
verbatim?: boolean | undefined;
|
|
4129
4129
|
alt_text?: string | undefined;
|
|
4130
4130
|
}>, "many">>;
|
|
@@ -4154,17 +4154,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4154
4154
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4155
4155
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4156
4156
|
}, "strip", z.ZodTypeAny, {
|
|
4157
|
-
type: "
|
|
4157
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4158
|
+
emoji?: boolean | undefined;
|
|
4158
4159
|
text?: string | undefined;
|
|
4159
4160
|
image_url?: string | undefined;
|
|
4160
|
-
emoji?: boolean | undefined;
|
|
4161
4161
|
verbatim?: boolean | undefined;
|
|
4162
4162
|
alt_text?: string | undefined;
|
|
4163
4163
|
}, {
|
|
4164
|
-
type: "
|
|
4164
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4165
|
+
emoji?: boolean | undefined;
|
|
4165
4166
|
text?: string | undefined;
|
|
4166
4167
|
image_url?: string | undefined;
|
|
4167
|
-
emoji?: boolean | undefined;
|
|
4168
4168
|
verbatim?: boolean | undefined;
|
|
4169
4169
|
alt_text?: string | undefined;
|
|
4170
4170
|
}>, "many">>;
|
|
@@ -4194,42 +4194,43 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4194
4194
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4195
4195
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4196
4196
|
}, "strip", z.ZodTypeAny, {
|
|
4197
|
-
type: "
|
|
4197
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4198
|
+
emoji?: boolean | undefined;
|
|
4198
4199
|
text?: string | undefined;
|
|
4199
4200
|
image_url?: string | undefined;
|
|
4200
|
-
emoji?: boolean | undefined;
|
|
4201
4201
|
verbatim?: boolean | undefined;
|
|
4202
4202
|
alt_text?: string | undefined;
|
|
4203
4203
|
}, {
|
|
4204
|
-
type: "
|
|
4204
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4205
|
+
emoji?: boolean | undefined;
|
|
4205
4206
|
text?: string | undefined;
|
|
4206
4207
|
image_url?: string | undefined;
|
|
4207
|
-
emoji?: boolean | undefined;
|
|
4208
4208
|
verbatim?: boolean | undefined;
|
|
4209
4209
|
alt_text?: string | undefined;
|
|
4210
4210
|
}>, "many">>;
|
|
4211
4211
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4212
4212
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4213
4213
|
}, "strip", z.ZodTypeAny, {
|
|
4214
|
+
ts: string;
|
|
4214
4215
|
operation: "update_message";
|
|
4215
4216
|
channel: string;
|
|
4216
|
-
|
|
4217
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4217
4218
|
text?: string | undefined;
|
|
4218
4219
|
attachments?: {
|
|
4219
4220
|
title?: string | undefined;
|
|
4220
4221
|
text?: string | undefined;
|
|
4222
|
+
image_url?: string | undefined;
|
|
4223
|
+
fields?: {
|
|
4224
|
+
value: string;
|
|
4225
|
+
title: string;
|
|
4226
|
+
short?: boolean | undefined;
|
|
4227
|
+
}[] | undefined;
|
|
4221
4228
|
color?: string | undefined;
|
|
4222
4229
|
pretext?: string | undefined;
|
|
4223
4230
|
author_name?: string | undefined;
|
|
4224
4231
|
author_link?: string | undefined;
|
|
4225
4232
|
author_icon?: string | undefined;
|
|
4226
4233
|
title_link?: string | undefined;
|
|
4227
|
-
fields?: {
|
|
4228
|
-
value: string;
|
|
4229
|
-
title: string;
|
|
4230
|
-
short?: boolean | undefined;
|
|
4231
|
-
}[] | undefined;
|
|
4232
|
-
image_url?: string | undefined;
|
|
4233
4234
|
thumb_url?: string | undefined;
|
|
4234
4235
|
footer?: string | undefined;
|
|
4235
4236
|
footer_icon?: string | undefined;
|
|
@@ -4261,42 +4262,42 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4261
4262
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4262
4263
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4263
4264
|
}, "strip", z.ZodTypeAny, {
|
|
4264
|
-
type: "
|
|
4265
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4266
|
+
emoji?: boolean | undefined;
|
|
4265
4267
|
text?: string | undefined;
|
|
4266
4268
|
image_url?: string | undefined;
|
|
4267
|
-
emoji?: boolean | undefined;
|
|
4268
4269
|
verbatim?: boolean | undefined;
|
|
4269
4270
|
alt_text?: string | undefined;
|
|
4270
4271
|
}, {
|
|
4271
|
-
type: "
|
|
4272
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4273
|
+
emoji?: boolean | undefined;
|
|
4272
4274
|
text?: string | undefined;
|
|
4273
4275
|
image_url?: string | undefined;
|
|
4274
|
-
emoji?: boolean | undefined;
|
|
4275
4276
|
verbatim?: boolean | undefined;
|
|
4276
4277
|
alt_text?: string | undefined;
|
|
4277
4278
|
}>, "many">>;
|
|
4278
4279
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4279
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4280
4280
|
}, {
|
|
4281
|
+
ts: string;
|
|
4281
4282
|
operation: "update_message";
|
|
4282
4283
|
channel: string;
|
|
4283
|
-
|
|
4284
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4284
4285
|
text?: string | undefined;
|
|
4285
4286
|
attachments?: {
|
|
4286
4287
|
title?: string | undefined;
|
|
4287
4288
|
text?: string | undefined;
|
|
4289
|
+
image_url?: string | undefined;
|
|
4290
|
+
fields?: {
|
|
4291
|
+
value: string;
|
|
4292
|
+
title: string;
|
|
4293
|
+
short?: boolean | undefined;
|
|
4294
|
+
}[] | undefined;
|
|
4288
4295
|
color?: string | undefined;
|
|
4289
4296
|
pretext?: string | undefined;
|
|
4290
4297
|
author_name?: string | undefined;
|
|
4291
4298
|
author_link?: string | undefined;
|
|
4292
4299
|
author_icon?: string | undefined;
|
|
4293
4300
|
title_link?: string | undefined;
|
|
4294
|
-
fields?: {
|
|
4295
|
-
value: string;
|
|
4296
|
-
title: string;
|
|
4297
|
-
short?: boolean | undefined;
|
|
4298
|
-
}[] | undefined;
|
|
4299
|
-
image_url?: string | undefined;
|
|
4300
4301
|
thumb_url?: string | undefined;
|
|
4301
4302
|
footer?: string | undefined;
|
|
4302
4303
|
footer_icon?: string | undefined;
|
|
@@ -4328,36 +4329,35 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4328
4329
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4329
4330
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4330
4331
|
}, "strip", z.ZodTypeAny, {
|
|
4331
|
-
type: "
|
|
4332
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4333
|
+
emoji?: boolean | undefined;
|
|
4332
4334
|
text?: string | undefined;
|
|
4333
4335
|
image_url?: string | undefined;
|
|
4334
|
-
emoji?: boolean | undefined;
|
|
4335
4336
|
verbatim?: boolean | undefined;
|
|
4336
4337
|
alt_text?: string | undefined;
|
|
4337
4338
|
}, {
|
|
4338
|
-
type: "
|
|
4339
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4340
|
+
emoji?: boolean | undefined;
|
|
4339
4341
|
text?: string | undefined;
|
|
4340
4342
|
image_url?: string | undefined;
|
|
4341
|
-
emoji?: boolean | undefined;
|
|
4342
4343
|
verbatim?: boolean | undefined;
|
|
4343
4344
|
alt_text?: string | undefined;
|
|
4344
4345
|
}>, "many">>;
|
|
4345
4346
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4346
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4347
4347
|
}>, z.ZodObject<{
|
|
4348
4348
|
operation: z.ZodLiteral<"delete_message">;
|
|
4349
4349
|
channel: z.ZodString;
|
|
4350
4350
|
ts: z.ZodString;
|
|
4351
4351
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4352
4352
|
}, "strip", z.ZodTypeAny, {
|
|
4353
|
+
ts: string;
|
|
4353
4354
|
operation: "delete_message";
|
|
4354
4355
|
channel: string;
|
|
4355
|
-
ts: string;
|
|
4356
4356
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4357
4357
|
}, {
|
|
4358
|
+
ts: string;
|
|
4358
4359
|
operation: "delete_message";
|
|
4359
4360
|
channel: string;
|
|
4360
|
-
ts: string;
|
|
4361
4361
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4362
4362
|
}>, z.ZodObject<{
|
|
4363
4363
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -4366,15 +4366,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4366
4366
|
timestamp: z.ZodString;
|
|
4367
4367
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4368
4368
|
}, "strip", z.ZodTypeAny, {
|
|
4369
|
+
name: string;
|
|
4369
4370
|
operation: "add_reaction";
|
|
4370
4371
|
channel: string;
|
|
4371
|
-
name: string;
|
|
4372
4372
|
timestamp: string;
|
|
4373
4373
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4374
4374
|
}, {
|
|
4375
|
+
name: string;
|
|
4375
4376
|
operation: "add_reaction";
|
|
4376
4377
|
channel: string;
|
|
4377
|
-
name: string;
|
|
4378
4378
|
timestamp: string;
|
|
4379
4379
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4380
4380
|
}>, z.ZodObject<{
|
|
@@ -4384,15 +4384,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4384
4384
|
timestamp: z.ZodString;
|
|
4385
4385
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4386
4386
|
}, "strip", z.ZodTypeAny, {
|
|
4387
|
+
name: string;
|
|
4387
4388
|
operation: "remove_reaction";
|
|
4388
4389
|
channel: string;
|
|
4389
|
-
name: string;
|
|
4390
4390
|
timestamp: string;
|
|
4391
4391
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4392
4392
|
}, {
|
|
4393
|
+
name: string;
|
|
4393
4394
|
operation: "remove_reaction";
|
|
4394
4395
|
channel: string;
|
|
4395
|
-
name: string;
|
|
4396
4396
|
timestamp: string;
|
|
4397
4397
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4398
4398
|
}>, z.ZodObject<{
|
|
@@ -4421,8 +4421,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4421
4421
|
channel: string;
|
|
4422
4422
|
file_path: string;
|
|
4423
4423
|
title?: string | undefined;
|
|
4424
|
-
thread_ts?: string | undefined;
|
|
4425
4424
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4425
|
+
thread_ts?: string | undefined;
|
|
4426
4426
|
filename?: string | undefined;
|
|
4427
4427
|
initial_comment?: string | undefined;
|
|
4428
4428
|
}, {
|
|
@@ -4430,8 +4430,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4430
4430
|
channel: string;
|
|
4431
4431
|
file_path: string;
|
|
4432
4432
|
title?: string | undefined;
|
|
4433
|
-
thread_ts?: string | undefined;
|
|
4434
4433
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4434
|
+
thread_ts?: string | undefined;
|
|
4435
4435
|
filename?: string | undefined;
|
|
4436
4436
|
initial_comment?: string | undefined;
|
|
4437
4437
|
}>, z.ZodObject<{
|
|
@@ -4466,17 +4466,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4466
4466
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4467
4467
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4468
4468
|
}, "strip", z.ZodTypeAny, {
|
|
4469
|
-
type: "
|
|
4469
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4470
|
+
emoji?: boolean | undefined;
|
|
4470
4471
|
text?: string | undefined;
|
|
4471
4472
|
image_url?: string | undefined;
|
|
4472
|
-
emoji?: boolean | undefined;
|
|
4473
4473
|
verbatim?: boolean | undefined;
|
|
4474
4474
|
alt_text?: string | undefined;
|
|
4475
4475
|
}, {
|
|
4476
|
-
type: "
|
|
4476
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4477
|
+
emoji?: boolean | undefined;
|
|
4477
4478
|
text?: string | undefined;
|
|
4478
4479
|
image_url?: string | undefined;
|
|
4479
|
-
emoji?: boolean | undefined;
|
|
4480
4480
|
verbatim?: boolean | undefined;
|
|
4481
4481
|
alt_text?: string | undefined;
|
|
4482
4482
|
}>, "many">>;
|
|
@@ -4506,17 +4506,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4506
4506
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4507
4507
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4508
4508
|
}, "strip", z.ZodTypeAny, {
|
|
4509
|
-
type: "
|
|
4509
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4510
|
+
emoji?: boolean | undefined;
|
|
4510
4511
|
text?: string | undefined;
|
|
4511
4512
|
image_url?: string | undefined;
|
|
4512
|
-
emoji?: boolean | undefined;
|
|
4513
4513
|
verbatim?: boolean | undefined;
|
|
4514
4514
|
alt_text?: string | undefined;
|
|
4515
4515
|
}, {
|
|
4516
|
-
type: "
|
|
4516
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4517
|
+
emoji?: boolean | undefined;
|
|
4517
4518
|
text?: string | undefined;
|
|
4518
4519
|
image_url?: string | undefined;
|
|
4519
|
-
emoji?: boolean | undefined;
|
|
4520
4520
|
verbatim?: boolean | undefined;
|
|
4521
4521
|
alt_text?: string | undefined;
|
|
4522
4522
|
}>, "many">>;
|
|
@@ -4546,17 +4546,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4546
4546
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4547
4547
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4548
4548
|
}, "strip", z.ZodTypeAny, {
|
|
4549
|
-
type: "
|
|
4549
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4550
|
+
emoji?: boolean | undefined;
|
|
4550
4551
|
text?: string | undefined;
|
|
4551
4552
|
image_url?: string | undefined;
|
|
4552
|
-
emoji?: boolean | undefined;
|
|
4553
4553
|
verbatim?: boolean | undefined;
|
|
4554
4554
|
alt_text?: string | undefined;
|
|
4555
4555
|
}, {
|
|
4556
|
-
type: "
|
|
4556
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4557
|
+
emoji?: boolean | undefined;
|
|
4557
4558
|
text?: string | undefined;
|
|
4558
4559
|
image_url?: string | undefined;
|
|
4559
|
-
emoji?: boolean | undefined;
|
|
4560
4560
|
verbatim?: boolean | undefined;
|
|
4561
4561
|
alt_text?: string | undefined;
|
|
4562
4562
|
}>, "many">>;
|
|
@@ -4565,12 +4565,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4565
4565
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4566
4566
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4567
4567
|
}, "strip", z.ZodTypeAny, {
|
|
4568
|
+
text: string;
|
|
4568
4569
|
operation: "schedule_message";
|
|
4569
4570
|
channel: string;
|
|
4570
|
-
text: string;
|
|
4571
4571
|
unfurl_links: boolean;
|
|
4572
4572
|
unfurl_media: boolean;
|
|
4573
4573
|
post_at: number;
|
|
4574
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4574
4575
|
blocks?: z.objectOutputType<{
|
|
4575
4576
|
type: z.ZodString;
|
|
4576
4577
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4597,28 +4598,28 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4597
4598
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4598
4599
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4599
4600
|
}, "strip", z.ZodTypeAny, {
|
|
4600
|
-
type: "
|
|
4601
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4602
|
+
emoji?: boolean | undefined;
|
|
4601
4603
|
text?: string | undefined;
|
|
4602
4604
|
image_url?: string | undefined;
|
|
4603
|
-
emoji?: boolean | undefined;
|
|
4604
4605
|
verbatim?: boolean | undefined;
|
|
4605
4606
|
alt_text?: string | undefined;
|
|
4606
4607
|
}, {
|
|
4607
|
-
type: "
|
|
4608
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4609
|
+
emoji?: boolean | undefined;
|
|
4608
4610
|
text?: string | undefined;
|
|
4609
4611
|
image_url?: string | undefined;
|
|
4610
|
-
emoji?: boolean | undefined;
|
|
4611
4612
|
verbatim?: boolean | undefined;
|
|
4612
4613
|
alt_text?: string | undefined;
|
|
4613
4614
|
}>, "many">>;
|
|
4614
4615
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4615
4616
|
thread_ts?: string | undefined;
|
|
4616
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4617
4617
|
}, {
|
|
4618
|
+
text: string;
|
|
4618
4619
|
operation: "schedule_message";
|
|
4619
4620
|
channel: string;
|
|
4620
|
-
text: string;
|
|
4621
4621
|
post_at: number;
|
|
4622
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4622
4623
|
blocks?: z.objectInputType<{
|
|
4623
4624
|
type: z.ZodString;
|
|
4624
4625
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4645,23 +4646,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4645
4646
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4646
4647
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4647
4648
|
}, "strip", z.ZodTypeAny, {
|
|
4648
|
-
type: "
|
|
4649
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4650
|
+
emoji?: boolean | undefined;
|
|
4649
4651
|
text?: string | undefined;
|
|
4650
4652
|
image_url?: string | undefined;
|
|
4651
|
-
emoji?: boolean | undefined;
|
|
4652
4653
|
verbatim?: boolean | undefined;
|
|
4653
4654
|
alt_text?: string | undefined;
|
|
4654
4655
|
}, {
|
|
4655
|
-
type: "
|
|
4656
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4657
|
+
emoji?: boolean | undefined;
|
|
4656
4658
|
text?: string | undefined;
|
|
4657
4659
|
image_url?: string | undefined;
|
|
4658
|
-
emoji?: boolean | undefined;
|
|
4659
4660
|
verbatim?: boolean | undefined;
|
|
4660
4661
|
alt_text?: string | undefined;
|
|
4661
4662
|
}>, "many">>;
|
|
4662
4663
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4663
4664
|
thread_ts?: string | undefined;
|
|
4664
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4665
4665
|
unfurl_links?: boolean | undefined;
|
|
4666
4666
|
unfurl_media?: boolean | undefined;
|
|
4667
4667
|
}>, z.ZodObject<{
|
|
@@ -4736,13 +4736,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4736
4736
|
}>, "many">>;
|
|
4737
4737
|
}, "strip", z.ZodTypeAny, {
|
|
4738
4738
|
type: string;
|
|
4739
|
+
user?: string | undefined;
|
|
4739
4740
|
text?: string | undefined;
|
|
4740
|
-
username?: string | undefined;
|
|
4741
4741
|
ts?: string | undefined;
|
|
4742
|
+
username?: string | undefined;
|
|
4742
4743
|
attachments?: unknown[] | undefined;
|
|
4743
4744
|
blocks?: unknown[] | undefined;
|
|
4744
4745
|
thread_ts?: string | undefined;
|
|
4745
|
-
user?: string | undefined;
|
|
4746
4746
|
bot_id?: string | undefined;
|
|
4747
4747
|
bot_profile?: {
|
|
4748
4748
|
name?: string | undefined;
|
|
@@ -4761,13 +4761,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4761
4761
|
}[] | undefined;
|
|
4762
4762
|
}, {
|
|
4763
4763
|
type: string;
|
|
4764
|
+
user?: string | undefined;
|
|
4764
4765
|
text?: string | undefined;
|
|
4765
|
-
username?: string | undefined;
|
|
4766
4766
|
ts?: string | undefined;
|
|
4767
|
+
username?: string | undefined;
|
|
4767
4768
|
attachments?: unknown[] | undefined;
|
|
4768
4769
|
blocks?: unknown[] | undefined;
|
|
4769
4770
|
thread_ts?: string | undefined;
|
|
4770
|
-
user?: string | undefined;
|
|
4771
4771
|
bot_id?: string | undefined;
|
|
4772
4772
|
bot_profile?: {
|
|
4773
4773
|
name?: string | undefined;
|
|
@@ -4788,19 +4788,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4788
4788
|
error: z.ZodString;
|
|
4789
4789
|
success: z.ZodBoolean;
|
|
4790
4790
|
}, "strip", z.ZodTypeAny, {
|
|
4791
|
-
operation: "send_message";
|
|
4792
|
-
ok: boolean;
|
|
4793
4791
|
error: string;
|
|
4794
4792
|
success: boolean;
|
|
4793
|
+
operation: "send_message";
|
|
4794
|
+
ok: boolean;
|
|
4795
4795
|
message?: {
|
|
4796
4796
|
type: string;
|
|
4797
|
+
user?: string | undefined;
|
|
4797
4798
|
text?: string | undefined;
|
|
4798
|
-
username?: string | undefined;
|
|
4799
4799
|
ts?: string | undefined;
|
|
4800
|
+
username?: string | undefined;
|
|
4800
4801
|
attachments?: unknown[] | undefined;
|
|
4801
4802
|
blocks?: unknown[] | undefined;
|
|
4802
4803
|
thread_ts?: string | undefined;
|
|
4803
|
-
user?: string | undefined;
|
|
4804
4804
|
bot_id?: string | undefined;
|
|
4805
4805
|
bot_profile?: {
|
|
4806
4806
|
name?: string | undefined;
|
|
@@ -4818,22 +4818,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4818
4818
|
count: number;
|
|
4819
4819
|
}[] | undefined;
|
|
4820
4820
|
} | undefined;
|
|
4821
|
-
channel?: string | undefined;
|
|
4822
4821
|
ts?: string | undefined;
|
|
4822
|
+
channel?: string | undefined;
|
|
4823
4823
|
}, {
|
|
4824
|
-
operation: "send_message";
|
|
4825
|
-
ok: boolean;
|
|
4826
4824
|
error: string;
|
|
4827
4825
|
success: boolean;
|
|
4826
|
+
operation: "send_message";
|
|
4827
|
+
ok: boolean;
|
|
4828
4828
|
message?: {
|
|
4829
4829
|
type: string;
|
|
4830
|
+
user?: string | undefined;
|
|
4830
4831
|
text?: string | undefined;
|
|
4831
|
-
username?: string | undefined;
|
|
4832
4832
|
ts?: string | undefined;
|
|
4833
|
+
username?: string | undefined;
|
|
4833
4834
|
attachments?: unknown[] | undefined;
|
|
4834
4835
|
blocks?: unknown[] | undefined;
|
|
4835
4836
|
thread_ts?: string | undefined;
|
|
4836
|
-
user?: string | undefined;
|
|
4837
4837
|
bot_id?: string | undefined;
|
|
4838
4838
|
bot_profile?: {
|
|
4839
4839
|
name?: string | undefined;
|
|
@@ -4851,8 +4851,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4851
4851
|
count: number;
|
|
4852
4852
|
}[] | undefined;
|
|
4853
4853
|
} | undefined;
|
|
4854
|
-
channel?: string | undefined;
|
|
4855
4854
|
ts?: string | undefined;
|
|
4855
|
+
channel?: string | undefined;
|
|
4856
4856
|
}>, z.ZodObject<{
|
|
4857
4857
|
operation: z.ZodLiteral<"list_channels">;
|
|
4858
4858
|
ok: z.ZodBoolean;
|
|
@@ -4982,10 +4982,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4982
4982
|
error: z.ZodString;
|
|
4983
4983
|
success: z.ZodBoolean;
|
|
4984
4984
|
}, "strip", z.ZodTypeAny, {
|
|
4985
|
-
operation: "list_channels";
|
|
4986
|
-
ok: boolean;
|
|
4987
4985
|
error: string;
|
|
4988
4986
|
success: boolean;
|
|
4987
|
+
operation: "list_channels";
|
|
4988
|
+
ok: boolean;
|
|
4989
|
+
response_metadata?: {
|
|
4990
|
+
next_cursor: string;
|
|
4991
|
+
} | undefined;
|
|
4989
4992
|
channels?: {
|
|
4990
4993
|
name: string;
|
|
4991
4994
|
id: string;
|
|
@@ -5020,14 +5023,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5020
5023
|
} | undefined;
|
|
5021
5024
|
num_members?: number | undefined;
|
|
5022
5025
|
}[] | undefined;
|
|
5023
|
-
response_metadata?: {
|
|
5024
|
-
next_cursor: string;
|
|
5025
|
-
} | undefined;
|
|
5026
5026
|
}, {
|
|
5027
|
-
operation: "list_channels";
|
|
5028
|
-
ok: boolean;
|
|
5029
5027
|
error: string;
|
|
5030
5028
|
success: boolean;
|
|
5029
|
+
operation: "list_channels";
|
|
5030
|
+
ok: boolean;
|
|
5031
|
+
response_metadata?: {
|
|
5032
|
+
next_cursor: string;
|
|
5033
|
+
} | undefined;
|
|
5031
5034
|
channels?: {
|
|
5032
5035
|
name: string;
|
|
5033
5036
|
id: string;
|
|
@@ -5062,9 +5065,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5062
5065
|
} | undefined;
|
|
5063
5066
|
num_members?: number | undefined;
|
|
5064
5067
|
}[] | undefined;
|
|
5065
|
-
response_metadata?: {
|
|
5066
|
-
next_cursor: string;
|
|
5067
|
-
} | undefined;
|
|
5068
5068
|
}>, z.ZodObject<{
|
|
5069
5069
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
5070
5070
|
ok: z.ZodBoolean;
|
|
@@ -5187,10 +5187,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5187
5187
|
error: z.ZodString;
|
|
5188
5188
|
success: z.ZodBoolean;
|
|
5189
5189
|
}, "strip", z.ZodTypeAny, {
|
|
5190
|
-
operation: "get_channel_info";
|
|
5191
|
-
ok: boolean;
|
|
5192
5190
|
error: string;
|
|
5193
5191
|
success: boolean;
|
|
5192
|
+
operation: "get_channel_info";
|
|
5193
|
+
ok: boolean;
|
|
5194
5194
|
channel?: {
|
|
5195
5195
|
name: string;
|
|
5196
5196
|
id: string;
|
|
@@ -5226,10 +5226,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5226
5226
|
num_members?: number | undefined;
|
|
5227
5227
|
} | undefined;
|
|
5228
5228
|
}, {
|
|
5229
|
-
operation: "get_channel_info";
|
|
5230
|
-
ok: boolean;
|
|
5231
5229
|
error: string;
|
|
5232
5230
|
success: boolean;
|
|
5231
|
+
operation: "get_channel_info";
|
|
5232
|
+
ok: boolean;
|
|
5233
5233
|
channel?: {
|
|
5234
5234
|
name: string;
|
|
5235
5235
|
id: string;
|
|
@@ -5304,8 +5304,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5304
5304
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5305
5305
|
}, "strip", z.ZodTypeAny, {
|
|
5306
5306
|
title?: string | undefined;
|
|
5307
|
-
fields?: Record<string, unknown> | undefined;
|
|
5308
5307
|
email?: string | undefined;
|
|
5308
|
+
fields?: Record<string, unknown> | undefined;
|
|
5309
5309
|
real_name?: string | undefined;
|
|
5310
5310
|
phone?: string | undefined;
|
|
5311
5311
|
skype?: string | undefined;
|
|
@@ -5329,8 +5329,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5329
5329
|
image_1024?: string | undefined;
|
|
5330
5330
|
}, {
|
|
5331
5331
|
title?: string | undefined;
|
|
5332
|
-
fields?: Record<string, unknown> | undefined;
|
|
5333
5332
|
email?: string | undefined;
|
|
5333
|
+
fields?: Record<string, unknown> | undefined;
|
|
5334
5334
|
real_name?: string | undefined;
|
|
5335
5335
|
phone?: string | undefined;
|
|
5336
5336
|
skype?: string | undefined;
|
|
@@ -5365,17 +5365,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5365
5365
|
}, "strip", z.ZodTypeAny, {
|
|
5366
5366
|
name: string;
|
|
5367
5367
|
id: string;
|
|
5368
|
-
color?: string | undefined;
|
|
5369
|
-
team_id?: string | undefined;
|
|
5370
|
-
deleted?: boolean | undefined;
|
|
5371
|
-
real_name?: string | undefined;
|
|
5372
|
-
tz?: string | undefined;
|
|
5373
|
-
tz_label?: string | undefined;
|
|
5374
|
-
tz_offset?: number | undefined;
|
|
5375
5368
|
profile?: {
|
|
5376
5369
|
title?: string | undefined;
|
|
5377
|
-
fields?: Record<string, unknown> | undefined;
|
|
5378
5370
|
email?: string | undefined;
|
|
5371
|
+
fields?: Record<string, unknown> | undefined;
|
|
5379
5372
|
real_name?: string | undefined;
|
|
5380
5373
|
phone?: string | undefined;
|
|
5381
5374
|
skype?: string | undefined;
|
|
@@ -5398,6 +5391,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5398
5391
|
image_512?: string | undefined;
|
|
5399
5392
|
image_1024?: string | undefined;
|
|
5400
5393
|
} | undefined;
|
|
5394
|
+
color?: string | undefined;
|
|
5395
|
+
team_id?: string | undefined;
|
|
5396
|
+
deleted?: boolean | undefined;
|
|
5397
|
+
real_name?: string | undefined;
|
|
5398
|
+
tz?: string | undefined;
|
|
5399
|
+
tz_label?: string | undefined;
|
|
5400
|
+
tz_offset?: number | undefined;
|
|
5401
5401
|
is_admin?: boolean | undefined;
|
|
5402
5402
|
is_owner?: boolean | undefined;
|
|
5403
5403
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5410,17 +5410,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5410
5410
|
}, {
|
|
5411
5411
|
name: string;
|
|
5412
5412
|
id: string;
|
|
5413
|
-
color?: string | undefined;
|
|
5414
|
-
team_id?: string | undefined;
|
|
5415
|
-
deleted?: boolean | undefined;
|
|
5416
|
-
real_name?: string | undefined;
|
|
5417
|
-
tz?: string | undefined;
|
|
5418
|
-
tz_label?: string | undefined;
|
|
5419
|
-
tz_offset?: number | undefined;
|
|
5420
5413
|
profile?: {
|
|
5421
5414
|
title?: string | undefined;
|
|
5422
|
-
fields?: Record<string, unknown> | undefined;
|
|
5423
5415
|
email?: string | undefined;
|
|
5416
|
+
fields?: Record<string, unknown> | undefined;
|
|
5424
5417
|
real_name?: string | undefined;
|
|
5425
5418
|
phone?: string | undefined;
|
|
5426
5419
|
skype?: string | undefined;
|
|
@@ -5443,6 +5436,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5443
5436
|
image_512?: string | undefined;
|
|
5444
5437
|
image_1024?: string | undefined;
|
|
5445
5438
|
} | undefined;
|
|
5439
|
+
color?: string | undefined;
|
|
5440
|
+
team_id?: string | undefined;
|
|
5441
|
+
deleted?: boolean | undefined;
|
|
5442
|
+
real_name?: string | undefined;
|
|
5443
|
+
tz?: string | undefined;
|
|
5444
|
+
tz_label?: string | undefined;
|
|
5445
|
+
tz_offset?: number | undefined;
|
|
5446
5446
|
is_admin?: boolean | undefined;
|
|
5447
5447
|
is_owner?: boolean | undefined;
|
|
5448
5448
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5456,24 +5456,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5456
5456
|
error: z.ZodString;
|
|
5457
5457
|
success: z.ZodBoolean;
|
|
5458
5458
|
}, "strip", z.ZodTypeAny, {
|
|
5459
|
-
operation: "get_user_info";
|
|
5460
|
-
ok: boolean;
|
|
5461
5459
|
error: string;
|
|
5462
5460
|
success: boolean;
|
|
5461
|
+
operation: "get_user_info";
|
|
5462
|
+
ok: boolean;
|
|
5463
5463
|
user?: {
|
|
5464
5464
|
name: string;
|
|
5465
5465
|
id: string;
|
|
5466
|
-
color?: string | undefined;
|
|
5467
|
-
team_id?: string | undefined;
|
|
5468
|
-
deleted?: boolean | undefined;
|
|
5469
|
-
real_name?: string | undefined;
|
|
5470
|
-
tz?: string | undefined;
|
|
5471
|
-
tz_label?: string | undefined;
|
|
5472
|
-
tz_offset?: number | undefined;
|
|
5473
5466
|
profile?: {
|
|
5474
5467
|
title?: string | undefined;
|
|
5475
|
-
fields?: Record<string, unknown> | undefined;
|
|
5476
5468
|
email?: string | undefined;
|
|
5469
|
+
fields?: Record<string, unknown> | undefined;
|
|
5477
5470
|
real_name?: string | undefined;
|
|
5478
5471
|
phone?: string | undefined;
|
|
5479
5472
|
skype?: string | undefined;
|
|
@@ -5496,6 +5489,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5496
5489
|
image_512?: string | undefined;
|
|
5497
5490
|
image_1024?: string | undefined;
|
|
5498
5491
|
} | undefined;
|
|
5492
|
+
color?: string | undefined;
|
|
5493
|
+
team_id?: string | undefined;
|
|
5494
|
+
deleted?: boolean | undefined;
|
|
5495
|
+
real_name?: string | undefined;
|
|
5496
|
+
tz?: string | undefined;
|
|
5497
|
+
tz_label?: string | undefined;
|
|
5498
|
+
tz_offset?: number | undefined;
|
|
5499
5499
|
is_admin?: boolean | undefined;
|
|
5500
5500
|
is_owner?: boolean | undefined;
|
|
5501
5501
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5507,24 +5507,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5507
5507
|
has_2fa?: boolean | undefined;
|
|
5508
5508
|
} | undefined;
|
|
5509
5509
|
}, {
|
|
5510
|
-
operation: "get_user_info";
|
|
5511
|
-
ok: boolean;
|
|
5512
5510
|
error: string;
|
|
5513
5511
|
success: boolean;
|
|
5512
|
+
operation: "get_user_info";
|
|
5513
|
+
ok: boolean;
|
|
5514
5514
|
user?: {
|
|
5515
5515
|
name: string;
|
|
5516
5516
|
id: string;
|
|
5517
|
-
color?: string | undefined;
|
|
5518
|
-
team_id?: string | undefined;
|
|
5519
|
-
deleted?: boolean | undefined;
|
|
5520
|
-
real_name?: string | undefined;
|
|
5521
|
-
tz?: string | undefined;
|
|
5522
|
-
tz_label?: string | undefined;
|
|
5523
|
-
tz_offset?: number | undefined;
|
|
5524
5517
|
profile?: {
|
|
5525
5518
|
title?: string | undefined;
|
|
5526
|
-
fields?: Record<string, unknown> | undefined;
|
|
5527
5519
|
email?: string | undefined;
|
|
5520
|
+
fields?: Record<string, unknown> | undefined;
|
|
5528
5521
|
real_name?: string | undefined;
|
|
5529
5522
|
phone?: string | undefined;
|
|
5530
5523
|
skype?: string | undefined;
|
|
@@ -5547,6 +5540,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5547
5540
|
image_512?: string | undefined;
|
|
5548
5541
|
image_1024?: string | undefined;
|
|
5549
5542
|
} | undefined;
|
|
5543
|
+
color?: string | undefined;
|
|
5544
|
+
team_id?: string | undefined;
|
|
5545
|
+
deleted?: boolean | undefined;
|
|
5546
|
+
real_name?: string | undefined;
|
|
5547
|
+
tz?: string | undefined;
|
|
5548
|
+
tz_label?: string | undefined;
|
|
5549
|
+
tz_offset?: number | undefined;
|
|
5550
5550
|
is_admin?: boolean | undefined;
|
|
5551
5551
|
is_owner?: boolean | undefined;
|
|
5552
5552
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5597,8 +5597,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5597
5597
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5598
5598
|
}, "strip", z.ZodTypeAny, {
|
|
5599
5599
|
title?: string | undefined;
|
|
5600
|
-
fields?: Record<string, unknown> | undefined;
|
|
5601
5600
|
email?: string | undefined;
|
|
5601
|
+
fields?: Record<string, unknown> | undefined;
|
|
5602
5602
|
real_name?: string | undefined;
|
|
5603
5603
|
phone?: string | undefined;
|
|
5604
5604
|
skype?: string | undefined;
|
|
@@ -5622,8 +5622,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5622
5622
|
image_1024?: string | undefined;
|
|
5623
5623
|
}, {
|
|
5624
5624
|
title?: string | undefined;
|
|
5625
|
-
fields?: Record<string, unknown> | undefined;
|
|
5626
5625
|
email?: string | undefined;
|
|
5626
|
+
fields?: Record<string, unknown> | undefined;
|
|
5627
5627
|
real_name?: string | undefined;
|
|
5628
5628
|
phone?: string | undefined;
|
|
5629
5629
|
skype?: string | undefined;
|
|
@@ -5655,20 +5655,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5655
5655
|
is_app_user: z.ZodOptional<z.ZodBoolean>;
|
|
5656
5656
|
updated: z.ZodOptional<z.ZodNumber>;
|
|
5657
5657
|
has_2fa: z.ZodOptional<z.ZodBoolean>;
|
|
5658
|
-
}, "strip", z.ZodTypeAny, {
|
|
5659
|
-
name: string;
|
|
5660
|
-
id: string;
|
|
5661
|
-
color?: string | undefined;
|
|
5662
|
-
team_id?: string | undefined;
|
|
5663
|
-
deleted?: boolean | undefined;
|
|
5664
|
-
real_name?: string | undefined;
|
|
5665
|
-
tz?: string | undefined;
|
|
5666
|
-
tz_label?: string | undefined;
|
|
5667
|
-
tz_offset?: number | undefined;
|
|
5658
|
+
}, "strip", z.ZodTypeAny, {
|
|
5659
|
+
name: string;
|
|
5660
|
+
id: string;
|
|
5668
5661
|
profile?: {
|
|
5669
5662
|
title?: string | undefined;
|
|
5670
|
-
fields?: Record<string, unknown> | undefined;
|
|
5671
5663
|
email?: string | undefined;
|
|
5664
|
+
fields?: Record<string, unknown> | undefined;
|
|
5672
5665
|
real_name?: string | undefined;
|
|
5673
5666
|
phone?: string | undefined;
|
|
5674
5667
|
skype?: string | undefined;
|
|
@@ -5691,6 +5684,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5691
5684
|
image_512?: string | undefined;
|
|
5692
5685
|
image_1024?: string | undefined;
|
|
5693
5686
|
} | undefined;
|
|
5687
|
+
color?: string | undefined;
|
|
5688
|
+
team_id?: string | undefined;
|
|
5689
|
+
deleted?: boolean | undefined;
|
|
5690
|
+
real_name?: string | undefined;
|
|
5691
|
+
tz?: string | undefined;
|
|
5692
|
+
tz_label?: string | undefined;
|
|
5693
|
+
tz_offset?: number | undefined;
|
|
5694
5694
|
is_admin?: boolean | undefined;
|
|
5695
5695
|
is_owner?: boolean | undefined;
|
|
5696
5696
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5703,17 +5703,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5703
5703
|
}, {
|
|
5704
5704
|
name: string;
|
|
5705
5705
|
id: string;
|
|
5706
|
-
color?: string | undefined;
|
|
5707
|
-
team_id?: string | undefined;
|
|
5708
|
-
deleted?: boolean | undefined;
|
|
5709
|
-
real_name?: string | undefined;
|
|
5710
|
-
tz?: string | undefined;
|
|
5711
|
-
tz_label?: string | undefined;
|
|
5712
|
-
tz_offset?: number | undefined;
|
|
5713
5706
|
profile?: {
|
|
5714
5707
|
title?: string | undefined;
|
|
5715
|
-
fields?: Record<string, unknown> | undefined;
|
|
5716
5708
|
email?: string | undefined;
|
|
5709
|
+
fields?: Record<string, unknown> | undefined;
|
|
5717
5710
|
real_name?: string | undefined;
|
|
5718
5711
|
phone?: string | undefined;
|
|
5719
5712
|
skype?: string | undefined;
|
|
@@ -5736,6 +5729,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5736
5729
|
image_512?: string | undefined;
|
|
5737
5730
|
image_1024?: string | undefined;
|
|
5738
5731
|
} | undefined;
|
|
5732
|
+
color?: string | undefined;
|
|
5733
|
+
team_id?: string | undefined;
|
|
5734
|
+
deleted?: boolean | undefined;
|
|
5735
|
+
real_name?: string | undefined;
|
|
5736
|
+
tz?: string | undefined;
|
|
5737
|
+
tz_label?: string | undefined;
|
|
5738
|
+
tz_offset?: number | undefined;
|
|
5739
5739
|
is_admin?: boolean | undefined;
|
|
5740
5740
|
is_owner?: boolean | undefined;
|
|
5741
5741
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5756,27 +5756,20 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5756
5756
|
error: z.ZodString;
|
|
5757
5757
|
success: z.ZodBoolean;
|
|
5758
5758
|
}, "strip", z.ZodTypeAny, {
|
|
5759
|
-
operation: "list_users";
|
|
5760
|
-
ok: boolean;
|
|
5761
5759
|
error: string;
|
|
5762
5760
|
success: boolean;
|
|
5761
|
+
operation: "list_users";
|
|
5762
|
+
ok: boolean;
|
|
5763
5763
|
response_metadata?: {
|
|
5764
5764
|
next_cursor: string;
|
|
5765
5765
|
} | undefined;
|
|
5766
5766
|
members?: {
|
|
5767
5767
|
name: string;
|
|
5768
5768
|
id: string;
|
|
5769
|
-
color?: string | undefined;
|
|
5770
|
-
team_id?: string | undefined;
|
|
5771
|
-
deleted?: boolean | undefined;
|
|
5772
|
-
real_name?: string | undefined;
|
|
5773
|
-
tz?: string | undefined;
|
|
5774
|
-
tz_label?: string | undefined;
|
|
5775
|
-
tz_offset?: number | undefined;
|
|
5776
5769
|
profile?: {
|
|
5777
5770
|
title?: string | undefined;
|
|
5778
|
-
fields?: Record<string, unknown> | undefined;
|
|
5779
5771
|
email?: string | undefined;
|
|
5772
|
+
fields?: Record<string, unknown> | undefined;
|
|
5780
5773
|
real_name?: string | undefined;
|
|
5781
5774
|
phone?: string | undefined;
|
|
5782
5775
|
skype?: string | undefined;
|
|
@@ -5799,6 +5792,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5799
5792
|
image_512?: string | undefined;
|
|
5800
5793
|
image_1024?: string | undefined;
|
|
5801
5794
|
} | undefined;
|
|
5795
|
+
color?: string | undefined;
|
|
5796
|
+
team_id?: string | undefined;
|
|
5797
|
+
deleted?: boolean | undefined;
|
|
5798
|
+
real_name?: string | undefined;
|
|
5799
|
+
tz?: string | undefined;
|
|
5800
|
+
tz_label?: string | undefined;
|
|
5801
|
+
tz_offset?: number | undefined;
|
|
5802
5802
|
is_admin?: boolean | undefined;
|
|
5803
5803
|
is_owner?: boolean | undefined;
|
|
5804
5804
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5810,27 +5810,20 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5810
5810
|
has_2fa?: boolean | undefined;
|
|
5811
5811
|
}[] | undefined;
|
|
5812
5812
|
}, {
|
|
5813
|
-
operation: "list_users";
|
|
5814
|
-
ok: boolean;
|
|
5815
5813
|
error: string;
|
|
5816
5814
|
success: boolean;
|
|
5815
|
+
operation: "list_users";
|
|
5816
|
+
ok: boolean;
|
|
5817
5817
|
response_metadata?: {
|
|
5818
5818
|
next_cursor: string;
|
|
5819
5819
|
} | undefined;
|
|
5820
5820
|
members?: {
|
|
5821
5821
|
name: string;
|
|
5822
5822
|
id: string;
|
|
5823
|
-
color?: string | undefined;
|
|
5824
|
-
team_id?: string | undefined;
|
|
5825
|
-
deleted?: boolean | undefined;
|
|
5826
|
-
real_name?: string | undefined;
|
|
5827
|
-
tz?: string | undefined;
|
|
5828
|
-
tz_label?: string | undefined;
|
|
5829
|
-
tz_offset?: number | undefined;
|
|
5830
5823
|
profile?: {
|
|
5831
5824
|
title?: string | undefined;
|
|
5832
|
-
fields?: Record<string, unknown> | undefined;
|
|
5833
5825
|
email?: string | undefined;
|
|
5826
|
+
fields?: Record<string, unknown> | undefined;
|
|
5834
5827
|
real_name?: string | undefined;
|
|
5835
5828
|
phone?: string | undefined;
|
|
5836
5829
|
skype?: string | undefined;
|
|
@@ -5853,6 +5846,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5853
5846
|
image_512?: string | undefined;
|
|
5854
5847
|
image_1024?: string | undefined;
|
|
5855
5848
|
} | undefined;
|
|
5849
|
+
color?: string | undefined;
|
|
5850
|
+
team_id?: string | undefined;
|
|
5851
|
+
deleted?: boolean | undefined;
|
|
5852
|
+
real_name?: string | undefined;
|
|
5853
|
+
tz?: string | undefined;
|
|
5854
|
+
tz_label?: string | undefined;
|
|
5855
|
+
tz_offset?: number | undefined;
|
|
5856
5856
|
is_admin?: boolean | undefined;
|
|
5857
5857
|
is_owner?: boolean | undefined;
|
|
5858
5858
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5905,13 +5905,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5905
5905
|
}>, "many">>;
|
|
5906
5906
|
}, "strip", z.ZodTypeAny, {
|
|
5907
5907
|
type: string;
|
|
5908
|
+
user?: string | undefined;
|
|
5908
5909
|
text?: string | undefined;
|
|
5909
|
-
username?: string | undefined;
|
|
5910
5910
|
ts?: string | undefined;
|
|
5911
|
+
username?: string | undefined;
|
|
5911
5912
|
attachments?: unknown[] | undefined;
|
|
5912
5913
|
blocks?: unknown[] | undefined;
|
|
5913
5914
|
thread_ts?: string | undefined;
|
|
5914
|
-
user?: string | undefined;
|
|
5915
5915
|
bot_id?: string | undefined;
|
|
5916
5916
|
bot_profile?: {
|
|
5917
5917
|
name?: string | undefined;
|
|
@@ -5930,13 +5930,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5930
5930
|
}[] | undefined;
|
|
5931
5931
|
}, {
|
|
5932
5932
|
type: string;
|
|
5933
|
+
user?: string | undefined;
|
|
5933
5934
|
text?: string | undefined;
|
|
5934
|
-
username?: string | undefined;
|
|
5935
5935
|
ts?: string | undefined;
|
|
5936
|
+
username?: string | undefined;
|
|
5936
5937
|
attachments?: unknown[] | undefined;
|
|
5937
5938
|
blocks?: unknown[] | undefined;
|
|
5938
5939
|
thread_ts?: string | undefined;
|
|
5939
|
-
user?: string | undefined;
|
|
5940
5940
|
bot_id?: string | undefined;
|
|
5941
5941
|
bot_profile?: {
|
|
5942
5942
|
name?: string | undefined;
|
|
@@ -5965,22 +5965,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5965
5965
|
error: z.ZodString;
|
|
5966
5966
|
success: z.ZodBoolean;
|
|
5967
5967
|
}, "strip", z.ZodTypeAny, {
|
|
5968
|
-
operation: "get_conversation_history";
|
|
5969
|
-
ok: boolean;
|
|
5970
5968
|
error: string;
|
|
5971
5969
|
success: boolean;
|
|
5970
|
+
operation: "get_conversation_history";
|
|
5971
|
+
ok: boolean;
|
|
5972
5972
|
response_metadata?: {
|
|
5973
5973
|
next_cursor: string;
|
|
5974
5974
|
} | undefined;
|
|
5975
5975
|
messages?: {
|
|
5976
5976
|
type: string;
|
|
5977
|
+
user?: string | undefined;
|
|
5977
5978
|
text?: string | undefined;
|
|
5978
|
-
username?: string | undefined;
|
|
5979
5979
|
ts?: string | undefined;
|
|
5980
|
+
username?: string | undefined;
|
|
5980
5981
|
attachments?: unknown[] | undefined;
|
|
5981
5982
|
blocks?: unknown[] | undefined;
|
|
5982
5983
|
thread_ts?: string | undefined;
|
|
5983
|
-
user?: string | undefined;
|
|
5984
5984
|
bot_id?: string | undefined;
|
|
5985
5985
|
bot_profile?: {
|
|
5986
5986
|
name?: string | undefined;
|
|
@@ -6000,22 +6000,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6000
6000
|
}[] | undefined;
|
|
6001
6001
|
has_more?: boolean | undefined;
|
|
6002
6002
|
}, {
|
|
6003
|
-
operation: "get_conversation_history";
|
|
6004
|
-
ok: boolean;
|
|
6005
6003
|
error: string;
|
|
6006
6004
|
success: boolean;
|
|
6005
|
+
operation: "get_conversation_history";
|
|
6006
|
+
ok: boolean;
|
|
6007
6007
|
response_metadata?: {
|
|
6008
6008
|
next_cursor: string;
|
|
6009
6009
|
} | undefined;
|
|
6010
6010
|
messages?: {
|
|
6011
6011
|
type: string;
|
|
6012
|
+
user?: string | undefined;
|
|
6012
6013
|
text?: string | undefined;
|
|
6013
|
-
username?: string | undefined;
|
|
6014
6014
|
ts?: string | undefined;
|
|
6015
|
+
username?: string | undefined;
|
|
6015
6016
|
attachments?: unknown[] | undefined;
|
|
6016
6017
|
blocks?: unknown[] | undefined;
|
|
6017
6018
|
thread_ts?: string | undefined;
|
|
6018
|
-
user?: string | undefined;
|
|
6019
6019
|
bot_id?: string | undefined;
|
|
6020
6020
|
bot_profile?: {
|
|
6021
6021
|
name?: string | undefined;
|
|
@@ -6076,13 +6076,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6076
6076
|
}>, "many">>;
|
|
6077
6077
|
}, "strip", z.ZodTypeAny, {
|
|
6078
6078
|
type: string;
|
|
6079
|
+
user?: string | undefined;
|
|
6079
6080
|
text?: string | undefined;
|
|
6080
|
-
username?: string | undefined;
|
|
6081
6081
|
ts?: string | undefined;
|
|
6082
|
+
username?: string | undefined;
|
|
6082
6083
|
attachments?: unknown[] | undefined;
|
|
6083
6084
|
blocks?: unknown[] | undefined;
|
|
6084
6085
|
thread_ts?: string | undefined;
|
|
6085
|
-
user?: string | undefined;
|
|
6086
6086
|
bot_id?: string | undefined;
|
|
6087
6087
|
bot_profile?: {
|
|
6088
6088
|
name?: string | undefined;
|
|
@@ -6101,13 +6101,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6101
6101
|
}[] | undefined;
|
|
6102
6102
|
}, {
|
|
6103
6103
|
type: string;
|
|
6104
|
+
user?: string | undefined;
|
|
6104
6105
|
text?: string | undefined;
|
|
6105
|
-
username?: string | undefined;
|
|
6106
6106
|
ts?: string | undefined;
|
|
6107
|
+
username?: string | undefined;
|
|
6107
6108
|
attachments?: unknown[] | undefined;
|
|
6108
6109
|
blocks?: unknown[] | undefined;
|
|
6109
6110
|
thread_ts?: string | undefined;
|
|
6110
|
-
user?: string | undefined;
|
|
6111
6111
|
bot_id?: string | undefined;
|
|
6112
6112
|
bot_profile?: {
|
|
6113
6113
|
name?: string | undefined;
|
|
@@ -6136,22 +6136,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6136
6136
|
error: z.ZodString;
|
|
6137
6137
|
success: z.ZodBoolean;
|
|
6138
6138
|
}, "strip", z.ZodTypeAny, {
|
|
6139
|
-
operation: "get_thread_replies";
|
|
6140
|
-
ok: boolean;
|
|
6141
6139
|
error: string;
|
|
6142
6140
|
success: boolean;
|
|
6141
|
+
operation: "get_thread_replies";
|
|
6142
|
+
ok: boolean;
|
|
6143
6143
|
response_metadata?: {
|
|
6144
6144
|
next_cursor: string;
|
|
6145
6145
|
} | undefined;
|
|
6146
6146
|
messages?: {
|
|
6147
6147
|
type: string;
|
|
6148
|
+
user?: string | undefined;
|
|
6148
6149
|
text?: string | undefined;
|
|
6149
|
-
username?: string | undefined;
|
|
6150
6150
|
ts?: string | undefined;
|
|
6151
|
+
username?: string | undefined;
|
|
6151
6152
|
attachments?: unknown[] | undefined;
|
|
6152
6153
|
blocks?: unknown[] | undefined;
|
|
6153
6154
|
thread_ts?: string | undefined;
|
|
6154
|
-
user?: string | undefined;
|
|
6155
6155
|
bot_id?: string | undefined;
|
|
6156
6156
|
bot_profile?: {
|
|
6157
6157
|
name?: string | undefined;
|
|
@@ -6171,22 +6171,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6171
6171
|
}[] | undefined;
|
|
6172
6172
|
has_more?: boolean | undefined;
|
|
6173
6173
|
}, {
|
|
6174
|
-
operation: "get_thread_replies";
|
|
6175
|
-
ok: boolean;
|
|
6176
6174
|
error: string;
|
|
6177
6175
|
success: boolean;
|
|
6176
|
+
operation: "get_thread_replies";
|
|
6177
|
+
ok: boolean;
|
|
6178
6178
|
response_metadata?: {
|
|
6179
6179
|
next_cursor: string;
|
|
6180
6180
|
} | undefined;
|
|
6181
6181
|
messages?: {
|
|
6182
6182
|
type: string;
|
|
6183
|
+
user?: string | undefined;
|
|
6183
6184
|
text?: string | undefined;
|
|
6184
|
-
username?: string | undefined;
|
|
6185
6185
|
ts?: string | undefined;
|
|
6186
|
+
username?: string | undefined;
|
|
6186
6187
|
attachments?: unknown[] | undefined;
|
|
6187
6188
|
blocks?: unknown[] | undefined;
|
|
6188
6189
|
thread_ts?: string | undefined;
|
|
6189
|
-
user?: string | undefined;
|
|
6190
6190
|
bot_id?: string | undefined;
|
|
6191
6191
|
bot_profile?: {
|
|
6192
6192
|
name?: string | undefined;
|
|
@@ -6250,13 +6250,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6250
6250
|
}>, "many">>;
|
|
6251
6251
|
}, "strip", z.ZodTypeAny, {
|
|
6252
6252
|
type: string;
|
|
6253
|
+
user?: string | undefined;
|
|
6253
6254
|
text?: string | undefined;
|
|
6254
|
-
username?: string | undefined;
|
|
6255
6255
|
ts?: string | undefined;
|
|
6256
|
+
username?: string | undefined;
|
|
6256
6257
|
attachments?: unknown[] | undefined;
|
|
6257
6258
|
blocks?: unknown[] | undefined;
|
|
6258
6259
|
thread_ts?: string | undefined;
|
|
6259
|
-
user?: string | undefined;
|
|
6260
6260
|
bot_id?: string | undefined;
|
|
6261
6261
|
bot_profile?: {
|
|
6262
6262
|
name?: string | undefined;
|
|
@@ -6275,13 +6275,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6275
6275
|
}[] | undefined;
|
|
6276
6276
|
}, {
|
|
6277
6277
|
type: string;
|
|
6278
|
+
user?: string | undefined;
|
|
6278
6279
|
text?: string | undefined;
|
|
6279
|
-
username?: string | undefined;
|
|
6280
6280
|
ts?: string | undefined;
|
|
6281
|
+
username?: string | undefined;
|
|
6281
6282
|
attachments?: unknown[] | undefined;
|
|
6282
6283
|
blocks?: unknown[] | undefined;
|
|
6283
6284
|
thread_ts?: string | undefined;
|
|
6284
|
-
user?: string | undefined;
|
|
6285
6285
|
bot_id?: string | undefined;
|
|
6286
6286
|
bot_profile?: {
|
|
6287
6287
|
name?: string | undefined;
|
|
@@ -6302,19 +6302,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6302
6302
|
error: z.ZodString;
|
|
6303
6303
|
success: z.ZodBoolean;
|
|
6304
6304
|
}, "strip", z.ZodTypeAny, {
|
|
6305
|
-
operation: "update_message";
|
|
6306
|
-
ok: boolean;
|
|
6307
6305
|
error: string;
|
|
6308
6306
|
success: boolean;
|
|
6307
|
+
operation: "update_message";
|
|
6308
|
+
ok: boolean;
|
|
6309
6309
|
message?: {
|
|
6310
6310
|
type: string;
|
|
6311
|
+
user?: string | undefined;
|
|
6311
6312
|
text?: string | undefined;
|
|
6312
|
-
username?: string | undefined;
|
|
6313
6313
|
ts?: string | undefined;
|
|
6314
|
+
username?: string | undefined;
|
|
6314
6315
|
attachments?: unknown[] | undefined;
|
|
6315
6316
|
blocks?: unknown[] | undefined;
|
|
6316
6317
|
thread_ts?: string | undefined;
|
|
6317
|
-
user?: string | undefined;
|
|
6318
6318
|
bot_id?: string | undefined;
|
|
6319
6319
|
bot_profile?: {
|
|
6320
6320
|
name?: string | undefined;
|
|
@@ -6332,23 +6332,23 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6332
6332
|
count: number;
|
|
6333
6333
|
}[] | undefined;
|
|
6334
6334
|
} | undefined;
|
|
6335
|
-
channel?: string | undefined;
|
|
6336
6335
|
text?: string | undefined;
|
|
6337
6336
|
ts?: string | undefined;
|
|
6337
|
+
channel?: string | undefined;
|
|
6338
6338
|
}, {
|
|
6339
|
-
operation: "update_message";
|
|
6340
|
-
ok: boolean;
|
|
6341
6339
|
error: string;
|
|
6342
6340
|
success: boolean;
|
|
6341
|
+
operation: "update_message";
|
|
6342
|
+
ok: boolean;
|
|
6343
6343
|
message?: {
|
|
6344
6344
|
type: string;
|
|
6345
|
+
user?: string | undefined;
|
|
6345
6346
|
text?: string | undefined;
|
|
6346
|
-
username?: string | undefined;
|
|
6347
6347
|
ts?: string | undefined;
|
|
6348
|
+
username?: string | undefined;
|
|
6348
6349
|
attachments?: unknown[] | undefined;
|
|
6349
6350
|
blocks?: unknown[] | undefined;
|
|
6350
6351
|
thread_ts?: string | undefined;
|
|
6351
|
-
user?: string | undefined;
|
|
6352
6352
|
bot_id?: string | undefined;
|
|
6353
6353
|
bot_profile?: {
|
|
6354
6354
|
name?: string | undefined;
|
|
@@ -6366,9 +6366,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6366
6366
|
count: number;
|
|
6367
6367
|
}[] | undefined;
|
|
6368
6368
|
} | undefined;
|
|
6369
|
-
channel?: string | undefined;
|
|
6370
6369
|
text?: string | undefined;
|
|
6371
6370
|
ts?: string | undefined;
|
|
6371
|
+
channel?: string | undefined;
|
|
6372
6372
|
}>, z.ZodObject<{
|
|
6373
6373
|
operation: z.ZodLiteral<"delete_message">;
|
|
6374
6374
|
ok: z.ZodBoolean;
|
|
@@ -6377,49 +6377,49 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6377
6377
|
error: z.ZodString;
|
|
6378
6378
|
success: z.ZodBoolean;
|
|
6379
6379
|
}, "strip", z.ZodTypeAny, {
|
|
6380
|
-
operation: "delete_message";
|
|
6381
|
-
ok: boolean;
|
|
6382
6380
|
error: string;
|
|
6383
6381
|
success: boolean;
|
|
6384
|
-
channel?: string | undefined;
|
|
6385
|
-
ts?: string | undefined;
|
|
6386
|
-
}, {
|
|
6387
6382
|
operation: "delete_message";
|
|
6388
6383
|
ok: boolean;
|
|
6384
|
+
ts?: string | undefined;
|
|
6385
|
+
channel?: string | undefined;
|
|
6386
|
+
}, {
|
|
6389
6387
|
error: string;
|
|
6390
6388
|
success: boolean;
|
|
6391
|
-
|
|
6389
|
+
operation: "delete_message";
|
|
6390
|
+
ok: boolean;
|
|
6392
6391
|
ts?: string | undefined;
|
|
6392
|
+
channel?: string | undefined;
|
|
6393
6393
|
}>, z.ZodObject<{
|
|
6394
6394
|
operation: z.ZodLiteral<"add_reaction">;
|
|
6395
6395
|
ok: z.ZodBoolean;
|
|
6396
6396
|
error: z.ZodString;
|
|
6397
6397
|
success: z.ZodBoolean;
|
|
6398
6398
|
}, "strip", z.ZodTypeAny, {
|
|
6399
|
-
operation: "add_reaction";
|
|
6400
|
-
ok: boolean;
|
|
6401
6399
|
error: string;
|
|
6402
6400
|
success: boolean;
|
|
6403
|
-
}, {
|
|
6404
6401
|
operation: "add_reaction";
|
|
6405
6402
|
ok: boolean;
|
|
6403
|
+
}, {
|
|
6406
6404
|
error: string;
|
|
6407
6405
|
success: boolean;
|
|
6406
|
+
operation: "add_reaction";
|
|
6407
|
+
ok: boolean;
|
|
6408
6408
|
}>, z.ZodObject<{
|
|
6409
6409
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
6410
6410
|
ok: z.ZodBoolean;
|
|
6411
6411
|
error: z.ZodString;
|
|
6412
6412
|
success: z.ZodBoolean;
|
|
6413
6413
|
}, "strip", z.ZodTypeAny, {
|
|
6414
|
-
operation: "remove_reaction";
|
|
6415
|
-
ok: boolean;
|
|
6416
6414
|
error: string;
|
|
6417
6415
|
success: boolean;
|
|
6418
|
-
}, {
|
|
6419
6416
|
operation: "remove_reaction";
|
|
6420
6417
|
ok: boolean;
|
|
6418
|
+
}, {
|
|
6421
6419
|
error: string;
|
|
6422
6420
|
success: boolean;
|
|
6421
|
+
operation: "remove_reaction";
|
|
6422
|
+
ok: boolean;
|
|
6423
6423
|
}>, z.ZodObject<{
|
|
6424
6424
|
operation: z.ZodLiteral<"join_channel">;
|
|
6425
6425
|
ok: z.ZodBoolean;
|
|
@@ -6543,10 +6543,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6543
6543
|
error: z.ZodString;
|
|
6544
6544
|
success: z.ZodBoolean;
|
|
6545
6545
|
}, "strip", z.ZodTypeAny, {
|
|
6546
|
-
operation: "join_channel";
|
|
6547
|
-
ok: boolean;
|
|
6548
6546
|
error: string;
|
|
6549
6547
|
success: boolean;
|
|
6548
|
+
operation: "join_channel";
|
|
6549
|
+
ok: boolean;
|
|
6550
6550
|
channel?: {
|
|
6551
6551
|
name: string;
|
|
6552
6552
|
id: string;
|
|
@@ -6583,10 +6583,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6583
6583
|
} | undefined;
|
|
6584
6584
|
already_in_channel?: boolean | undefined;
|
|
6585
6585
|
}, {
|
|
6586
|
-
operation: "join_channel";
|
|
6587
|
-
ok: boolean;
|
|
6588
6586
|
error: string;
|
|
6589
6587
|
success: boolean;
|
|
6588
|
+
operation: "join_channel";
|
|
6589
|
+
ok: boolean;
|
|
6590
6590
|
channel?: {
|
|
6591
6591
|
name: string;
|
|
6592
6592
|
id: string;
|
|
@@ -6658,17 +6658,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6658
6658
|
team_id: z.ZodString;
|
|
6659
6659
|
}, "strip", z.ZodTypeAny, {
|
|
6660
6660
|
ts: string;
|
|
6661
|
+
team_id: string;
|
|
6661
6662
|
reply_count: number;
|
|
6662
6663
|
reply_users_count: number;
|
|
6663
6664
|
reply_users: string[];
|
|
6664
|
-
team_id: string;
|
|
6665
6665
|
channel_name: string;
|
|
6666
6666
|
}, {
|
|
6667
6667
|
ts: string;
|
|
6668
|
+
team_id: string;
|
|
6668
6669
|
reply_count: number;
|
|
6669
6670
|
reply_users_count: number;
|
|
6670
6671
|
reply_users: string[];
|
|
6671
|
-
team_id: string;
|
|
6672
6672
|
channel_name: string;
|
|
6673
6673
|
}>, "many">>>;
|
|
6674
6674
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -6680,51 +6680,51 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6680
6680
|
team_id: z.ZodString;
|
|
6681
6681
|
}, "strip", z.ZodTypeAny, {
|
|
6682
6682
|
ts: string;
|
|
6683
|
+
team_id: string;
|
|
6683
6684
|
reply_count: number;
|
|
6684
6685
|
reply_users_count: number;
|
|
6685
6686
|
reply_users: string[];
|
|
6686
|
-
team_id: string;
|
|
6687
6687
|
channel_name: string;
|
|
6688
6688
|
}, {
|
|
6689
6689
|
ts: string;
|
|
6690
|
+
team_id: string;
|
|
6690
6691
|
reply_count: number;
|
|
6691
6692
|
reply_users_count: number;
|
|
6692
6693
|
reply_users: string[];
|
|
6693
|
-
team_id: string;
|
|
6694
6694
|
channel_name: string;
|
|
6695
6695
|
}>, "many">>>;
|
|
6696
6696
|
}, "strip", z.ZodTypeAny, {
|
|
6697
6697
|
public?: Record<string, {
|
|
6698
6698
|
ts: string;
|
|
6699
|
+
team_id: string;
|
|
6699
6700
|
reply_count: number;
|
|
6700
6701
|
reply_users_count: number;
|
|
6701
6702
|
reply_users: string[];
|
|
6702
|
-
team_id: string;
|
|
6703
6703
|
channel_name: string;
|
|
6704
6704
|
}[]> | undefined;
|
|
6705
6705
|
private?: Record<string, {
|
|
6706
6706
|
ts: string;
|
|
6707
|
+
team_id: string;
|
|
6707
6708
|
reply_count: number;
|
|
6708
6709
|
reply_users_count: number;
|
|
6709
6710
|
reply_users: string[];
|
|
6710
|
-
team_id: string;
|
|
6711
6711
|
channel_name: string;
|
|
6712
6712
|
}[]> | undefined;
|
|
6713
6713
|
}, {
|
|
6714
6714
|
public?: Record<string, {
|
|
6715
6715
|
ts: string;
|
|
6716
|
+
team_id: string;
|
|
6716
6717
|
reply_count: number;
|
|
6717
6718
|
reply_users_count: number;
|
|
6718
6719
|
reply_users: string[];
|
|
6719
|
-
team_id: string;
|
|
6720
6720
|
channel_name: string;
|
|
6721
6721
|
}[]> | undefined;
|
|
6722
6722
|
private?: Record<string, {
|
|
6723
6723
|
ts: string;
|
|
6724
|
+
team_id: string;
|
|
6724
6725
|
reply_count: number;
|
|
6725
6726
|
reply_users_count: number;
|
|
6726
6727
|
reply_users: string[];
|
|
6727
|
-
team_id: string;
|
|
6728
6728
|
channel_name: string;
|
|
6729
6729
|
}[]> | undefined;
|
|
6730
6730
|
}>>;
|
|
@@ -6733,11 +6733,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6733
6733
|
ims: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6734
6734
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
6735
6735
|
}, "strip", z.ZodTypeAny, {
|
|
6736
|
-
username: string;
|
|
6737
6736
|
name: string;
|
|
6737
|
+
id: string;
|
|
6738
6738
|
user: string;
|
|
6739
|
+
username: string;
|
|
6739
6740
|
timestamp: number;
|
|
6740
|
-
id: string;
|
|
6741
6741
|
created: number;
|
|
6742
6742
|
mimetype: string;
|
|
6743
6743
|
filetype: string;
|
|
@@ -6759,18 +6759,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6759
6759
|
shares?: {
|
|
6760
6760
|
public?: Record<string, {
|
|
6761
6761
|
ts: string;
|
|
6762
|
+
team_id: string;
|
|
6762
6763
|
reply_count: number;
|
|
6763
6764
|
reply_users_count: number;
|
|
6764
6765
|
reply_users: string[];
|
|
6765
|
-
team_id: string;
|
|
6766
6766
|
channel_name: string;
|
|
6767
6767
|
}[]> | undefined;
|
|
6768
6768
|
private?: Record<string, {
|
|
6769
6769
|
ts: string;
|
|
6770
|
+
team_id: string;
|
|
6770
6771
|
reply_count: number;
|
|
6771
6772
|
reply_users_count: number;
|
|
6772
6773
|
reply_users: string[];
|
|
6773
|
-
team_id: string;
|
|
6774
6774
|
channel_name: string;
|
|
6775
6775
|
}[]> | undefined;
|
|
6776
6776
|
} | undefined;
|
|
@@ -6778,11 +6778,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6778
6778
|
ims?: string[] | undefined;
|
|
6779
6779
|
has_rich_preview?: boolean | undefined;
|
|
6780
6780
|
}, {
|
|
6781
|
-
username: string;
|
|
6782
6781
|
name: string;
|
|
6782
|
+
id: string;
|
|
6783
6783
|
user: string;
|
|
6784
|
+
username: string;
|
|
6784
6785
|
timestamp: number;
|
|
6785
|
-
id: string;
|
|
6786
6786
|
created: number;
|
|
6787
6787
|
mimetype: string;
|
|
6788
6788
|
filetype: string;
|
|
@@ -6804,18 +6804,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6804
6804
|
shares?: {
|
|
6805
6805
|
public?: Record<string, {
|
|
6806
6806
|
ts: string;
|
|
6807
|
+
team_id: string;
|
|
6807
6808
|
reply_count: number;
|
|
6808
6809
|
reply_users_count: number;
|
|
6809
6810
|
reply_users: string[];
|
|
6810
|
-
team_id: string;
|
|
6811
6811
|
channel_name: string;
|
|
6812
6812
|
}[]> | undefined;
|
|
6813
6813
|
private?: Record<string, {
|
|
6814
6814
|
ts: string;
|
|
6815
|
+
team_id: string;
|
|
6815
6816
|
reply_count: number;
|
|
6816
6817
|
reply_users_count: number;
|
|
6817
6818
|
reply_users: string[];
|
|
6818
|
-
team_id: string;
|
|
6819
6819
|
channel_name: string;
|
|
6820
6820
|
}[]> | undefined;
|
|
6821
6821
|
} | undefined;
|
|
@@ -6826,16 +6826,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6826
6826
|
error: z.ZodString;
|
|
6827
6827
|
success: z.ZodBoolean;
|
|
6828
6828
|
}, "strip", z.ZodTypeAny, {
|
|
6829
|
-
operation: "upload_file";
|
|
6830
|
-
ok: boolean;
|
|
6831
6829
|
error: string;
|
|
6832
6830
|
success: boolean;
|
|
6831
|
+
operation: "upload_file";
|
|
6832
|
+
ok: boolean;
|
|
6833
6833
|
file?: {
|
|
6834
|
-
username: string;
|
|
6835
6834
|
name: string;
|
|
6835
|
+
id: string;
|
|
6836
6836
|
user: string;
|
|
6837
|
+
username: string;
|
|
6837
6838
|
timestamp: number;
|
|
6838
|
-
id: string;
|
|
6839
6839
|
created: number;
|
|
6840
6840
|
mimetype: string;
|
|
6841
6841
|
filetype: string;
|
|
@@ -6857,18 +6857,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6857
6857
|
shares?: {
|
|
6858
6858
|
public?: Record<string, {
|
|
6859
6859
|
ts: string;
|
|
6860
|
+
team_id: string;
|
|
6860
6861
|
reply_count: number;
|
|
6861
6862
|
reply_users_count: number;
|
|
6862
6863
|
reply_users: string[];
|
|
6863
|
-
team_id: string;
|
|
6864
6864
|
channel_name: string;
|
|
6865
6865
|
}[]> | undefined;
|
|
6866
6866
|
private?: Record<string, {
|
|
6867
6867
|
ts: string;
|
|
6868
|
+
team_id: string;
|
|
6868
6869
|
reply_count: number;
|
|
6869
6870
|
reply_users_count: number;
|
|
6870
6871
|
reply_users: string[];
|
|
6871
|
-
team_id: string;
|
|
6872
6872
|
channel_name: string;
|
|
6873
6873
|
}[]> | undefined;
|
|
6874
6874
|
} | undefined;
|
|
@@ -6877,16 +6877,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6877
6877
|
has_rich_preview?: boolean | undefined;
|
|
6878
6878
|
} | undefined;
|
|
6879
6879
|
}, {
|
|
6880
|
-
operation: "upload_file";
|
|
6881
|
-
ok: boolean;
|
|
6882
6880
|
error: string;
|
|
6883
6881
|
success: boolean;
|
|
6882
|
+
operation: "upload_file";
|
|
6883
|
+
ok: boolean;
|
|
6884
6884
|
file?: {
|
|
6885
|
-
username: string;
|
|
6886
6885
|
name: string;
|
|
6886
|
+
id: string;
|
|
6887
6887
|
user: string;
|
|
6888
|
+
username: string;
|
|
6888
6889
|
timestamp: number;
|
|
6889
|
-
id: string;
|
|
6890
6890
|
created: number;
|
|
6891
6891
|
mimetype: string;
|
|
6892
6892
|
filetype: string;
|
|
@@ -6908,18 +6908,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6908
6908
|
shares?: {
|
|
6909
6909
|
public?: Record<string, {
|
|
6910
6910
|
ts: string;
|
|
6911
|
+
team_id: string;
|
|
6911
6912
|
reply_count: number;
|
|
6912
6913
|
reply_users_count: number;
|
|
6913
6914
|
reply_users: string[];
|
|
6914
|
-
team_id: string;
|
|
6915
6915
|
channel_name: string;
|
|
6916
6916
|
}[]> | undefined;
|
|
6917
6917
|
private?: Record<string, {
|
|
6918
6918
|
ts: string;
|
|
6919
|
+
team_id: string;
|
|
6919
6920
|
reply_count: number;
|
|
6920
6921
|
reply_users_count: number;
|
|
6921
6922
|
reply_users: string[];
|
|
6922
|
-
team_id: string;
|
|
6923
6923
|
channel_name: string;
|
|
6924
6924
|
}[]> | undefined;
|
|
6925
6925
|
} | undefined;
|
|
@@ -6936,18 +6936,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6936
6936
|
error: z.ZodString;
|
|
6937
6937
|
success: z.ZodBoolean;
|
|
6938
6938
|
}, "strip", z.ZodTypeAny, {
|
|
6939
|
-
operation: "schedule_message";
|
|
6940
|
-
ok: boolean;
|
|
6941
6939
|
error: string;
|
|
6942
6940
|
success: boolean;
|
|
6941
|
+
operation: "schedule_message";
|
|
6942
|
+
ok: boolean;
|
|
6943
6943
|
channel?: string | undefined;
|
|
6944
6944
|
post_at?: number | undefined;
|
|
6945
6945
|
scheduled_message_id?: string | undefined;
|
|
6946
6946
|
}, {
|
|
6947
|
-
operation: "schedule_message";
|
|
6948
|
-
ok: boolean;
|
|
6949
6947
|
error: string;
|
|
6950
6948
|
success: boolean;
|
|
6949
|
+
operation: "schedule_message";
|
|
6950
|
+
ok: boolean;
|
|
6951
6951
|
channel?: string | undefined;
|
|
6952
6952
|
post_at?: number | undefined;
|
|
6953
6953
|
scheduled_message_id?: string | undefined;
|
|
@@ -7006,10 +7006,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7006
7006
|
error: z.ZodString;
|
|
7007
7007
|
success: z.ZodBoolean;
|
|
7008
7008
|
}, "strip", z.ZodTypeAny, {
|
|
7009
|
-
operation: "get_file_info";
|
|
7010
|
-
ok: boolean;
|
|
7011
7009
|
error: string;
|
|
7012
7010
|
success: boolean;
|
|
7011
|
+
operation: "get_file_info";
|
|
7012
|
+
ok: boolean;
|
|
7013
7013
|
file?: {
|
|
7014
7014
|
name: string;
|
|
7015
7015
|
id: string;
|
|
@@ -7028,10 +7028,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7028
7028
|
original_h?: number | undefined;
|
|
7029
7029
|
} | undefined;
|
|
7030
7030
|
}, {
|
|
7031
|
-
operation: "get_file_info";
|
|
7032
|
-
ok: boolean;
|
|
7033
7031
|
error: string;
|
|
7034
7032
|
success: boolean;
|
|
7033
|
+
operation: "get_file_info";
|
|
7034
|
+
ok: boolean;
|
|
7035
7035
|
file?: {
|
|
7036
7036
|
name: string;
|
|
7037
7037
|
id: string;
|
|
@@ -7059,19 +7059,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7059
7059
|
error: z.ZodString;
|
|
7060
7060
|
success: z.ZodBoolean;
|
|
7061
7061
|
}, "strip", z.ZodTypeAny, {
|
|
7062
|
-
operation: "download_file";
|
|
7063
|
-
ok: boolean;
|
|
7064
7062
|
error: string;
|
|
7065
7063
|
success: boolean;
|
|
7064
|
+
operation: "download_file";
|
|
7065
|
+
ok: boolean;
|
|
7066
7066
|
content?: string | undefined;
|
|
7067
7067
|
filename?: string | undefined;
|
|
7068
7068
|
mimetype?: string | undefined;
|
|
7069
7069
|
size?: number | undefined;
|
|
7070
7070
|
}, {
|
|
7071
|
-
operation: "download_file";
|
|
7072
|
-
ok: boolean;
|
|
7073
7071
|
error: string;
|
|
7074
7072
|
success: boolean;
|
|
7073
|
+
operation: "download_file";
|
|
7074
|
+
ok: boolean;
|
|
7075
7075
|
content?: string | undefined;
|
|
7076
7076
|
filename?: string | undefined;
|
|
7077
7077
|
mimetype?: string | undefined;
|