@bubblelab/bubble-core 0.1.75 → 0.1.77
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 +96 -96
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +30 -30
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +1 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +154 -154
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +60 -60
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +86 -86
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +310 -310
- package/dist/bubbles/service-bubble/followupboss.d.ts +228 -228
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +100 -100
- package/dist/bubbles/service-bubble/gmail.d.ts +282 -282
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +126 -126
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +46 -46
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
- package/dist/bubbles/service-bubble/notion/notion.d.ts +528 -528
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +604 -604
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +76 -76
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- 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 +290 -290
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +42 -42
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +138 -138
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
- package/dist/bubbles.json +4 -3
- package/package.json +2 -2
|
@@ -38,14 +38,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
38
38
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
|
+
text?: string | undefined;
|
|
41
42
|
fields?: {
|
|
42
43
|
value: string;
|
|
43
44
|
title: string;
|
|
44
45
|
short?: boolean | undefined;
|
|
45
46
|
}[] | undefined;
|
|
46
|
-
color?: string | undefined;
|
|
47
|
-
text?: string | undefined;
|
|
48
47
|
image_url?: string | undefined;
|
|
48
|
+
color?: string | undefined;
|
|
49
49
|
pretext?: string | undefined;
|
|
50
50
|
author_name?: string | undefined;
|
|
51
51
|
author_link?: string | undefined;
|
|
@@ -57,14 +57,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
57
57
|
ts?: number | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
|
+
text?: string | undefined;
|
|
60
61
|
fields?: {
|
|
61
62
|
value: string;
|
|
62
63
|
title: string;
|
|
63
64
|
short?: boolean | undefined;
|
|
64
65
|
}[] | undefined;
|
|
65
|
-
color?: string | undefined;
|
|
66
|
-
text?: string | undefined;
|
|
67
66
|
image_url?: string | undefined;
|
|
67
|
+
color?: string | undefined;
|
|
68
68
|
pretext?: string | undefined;
|
|
69
69
|
author_name?: string | undefined;
|
|
70
70
|
author_link?: string | undefined;
|
|
@@ -104,16 +104,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
104
104
|
type: "image" | "plain_text" | "mrkdwn";
|
|
105
105
|
emoji?: boolean | undefined;
|
|
106
106
|
text?: string | undefined;
|
|
107
|
-
image_url?: string | undefined;
|
|
108
107
|
verbatim?: boolean | undefined;
|
|
109
108
|
alt_text?: string | undefined;
|
|
109
|
+
image_url?: string | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
type: "image" | "plain_text" | "mrkdwn";
|
|
112
112
|
emoji?: boolean | undefined;
|
|
113
113
|
text?: string | undefined;
|
|
114
|
-
image_url?: string | undefined;
|
|
115
114
|
verbatim?: boolean | undefined;
|
|
116
115
|
alt_text?: string | undefined;
|
|
116
|
+
image_url?: string | undefined;
|
|
117
117
|
}>, "many">>;
|
|
118
118
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
119
119
|
type: z.ZodString;
|
|
@@ -144,16 +144,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
144
144
|
type: "image" | "plain_text" | "mrkdwn";
|
|
145
145
|
emoji?: boolean | undefined;
|
|
146
146
|
text?: string | undefined;
|
|
147
|
-
image_url?: string | undefined;
|
|
148
147
|
verbatim?: boolean | undefined;
|
|
149
148
|
alt_text?: string | undefined;
|
|
149
|
+
image_url?: string | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
type: "image" | "plain_text" | "mrkdwn";
|
|
152
152
|
emoji?: boolean | undefined;
|
|
153
153
|
text?: string | undefined;
|
|
154
|
-
image_url?: string | undefined;
|
|
155
154
|
verbatim?: boolean | undefined;
|
|
156
155
|
alt_text?: string | undefined;
|
|
156
|
+
image_url?: string | undefined;
|
|
157
157
|
}>, "many">>;
|
|
158
158
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
159
159
|
type: z.ZodString;
|
|
@@ -184,16 +184,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
184
184
|
type: "image" | "plain_text" | "mrkdwn";
|
|
185
185
|
emoji?: boolean | undefined;
|
|
186
186
|
text?: string | undefined;
|
|
187
|
-
image_url?: string | undefined;
|
|
188
187
|
verbatim?: boolean | undefined;
|
|
189
188
|
alt_text?: string | undefined;
|
|
189
|
+
image_url?: string | undefined;
|
|
190
190
|
}, {
|
|
191
191
|
type: "image" | "plain_text" | "mrkdwn";
|
|
192
192
|
emoji?: boolean | undefined;
|
|
193
193
|
text?: string | undefined;
|
|
194
|
-
image_url?: string | undefined;
|
|
195
194
|
verbatim?: boolean | undefined;
|
|
196
195
|
alt_text?: string | undefined;
|
|
196
|
+
image_url?: string | undefined;
|
|
197
197
|
}>, "many">>;
|
|
198
198
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
199
199
|
thread_ts: z.ZodOptional<z.ZodString>;
|
|
@@ -202,36 +202,13 @@ 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
|
-
operation: "send_message";
|
|
206
205
|
text: string;
|
|
206
|
+
operation: "send_message";
|
|
207
207
|
channel: string;
|
|
208
208
|
reply_broadcast: boolean;
|
|
209
209
|
unfurl_links: boolean;
|
|
210
210
|
unfurl_media: boolean;
|
|
211
211
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
212
|
-
username?: string | undefined;
|
|
213
|
-
icon_emoji?: string | undefined;
|
|
214
|
-
icon_url?: string | undefined;
|
|
215
|
-
attachments?: {
|
|
216
|
-
title?: string | undefined;
|
|
217
|
-
fields?: {
|
|
218
|
-
value: string;
|
|
219
|
-
title: string;
|
|
220
|
-
short?: boolean | undefined;
|
|
221
|
-
}[] | undefined;
|
|
222
|
-
color?: string | undefined;
|
|
223
|
-
text?: string | undefined;
|
|
224
|
-
image_url?: string | undefined;
|
|
225
|
-
pretext?: string | undefined;
|
|
226
|
-
author_name?: string | undefined;
|
|
227
|
-
author_link?: string | undefined;
|
|
228
|
-
author_icon?: string | undefined;
|
|
229
|
-
title_link?: string | undefined;
|
|
230
|
-
thumb_url?: string | undefined;
|
|
231
|
-
footer?: string | undefined;
|
|
232
|
-
footer_icon?: string | undefined;
|
|
233
|
-
ts?: number | undefined;
|
|
234
|
-
}[] | undefined;
|
|
235
212
|
blocks?: z.objectOutputType<{
|
|
236
213
|
type: z.ZodString;
|
|
237
214
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -261,37 +238,31 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
261
238
|
type: "image" | "plain_text" | "mrkdwn";
|
|
262
239
|
emoji?: boolean | undefined;
|
|
263
240
|
text?: string | undefined;
|
|
264
|
-
image_url?: string | undefined;
|
|
265
241
|
verbatim?: boolean | undefined;
|
|
266
242
|
alt_text?: string | undefined;
|
|
243
|
+
image_url?: string | undefined;
|
|
267
244
|
}, {
|
|
268
245
|
type: "image" | "plain_text" | "mrkdwn";
|
|
269
246
|
emoji?: boolean | undefined;
|
|
270
247
|
text?: string | undefined;
|
|
271
|
-
image_url?: string | undefined;
|
|
272
248
|
verbatim?: boolean | undefined;
|
|
273
249
|
alt_text?: string | undefined;
|
|
250
|
+
image_url?: string | undefined;
|
|
274
251
|
}>, "many">>;
|
|
275
252
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
276
|
-
thread_ts?: string | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
operation: "send_message";
|
|
279
|
-
text: string;
|
|
280
|
-
channel: string;
|
|
281
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
282
253
|
username?: string | undefined;
|
|
283
254
|
icon_emoji?: string | undefined;
|
|
284
255
|
icon_url?: string | undefined;
|
|
285
256
|
attachments?: {
|
|
286
257
|
title?: string | undefined;
|
|
258
|
+
text?: string | undefined;
|
|
287
259
|
fields?: {
|
|
288
260
|
value: string;
|
|
289
261
|
title: string;
|
|
290
262
|
short?: boolean | undefined;
|
|
291
263
|
}[] | undefined;
|
|
292
|
-
color?: string | undefined;
|
|
293
|
-
text?: string | undefined;
|
|
294
264
|
image_url?: string | undefined;
|
|
265
|
+
color?: string | undefined;
|
|
295
266
|
pretext?: string | undefined;
|
|
296
267
|
author_name?: string | undefined;
|
|
297
268
|
author_link?: string | undefined;
|
|
@@ -302,6 +273,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
302
273
|
footer_icon?: string | undefined;
|
|
303
274
|
ts?: number | undefined;
|
|
304
275
|
}[] | undefined;
|
|
276
|
+
thread_ts?: string | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
text: string;
|
|
279
|
+
operation: "send_message";
|
|
280
|
+
channel: string;
|
|
281
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
305
282
|
blocks?: z.objectInputType<{
|
|
306
283
|
type: z.ZodString;
|
|
307
284
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -331,18 +308,41 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
331
308
|
type: "image" | "plain_text" | "mrkdwn";
|
|
332
309
|
emoji?: boolean | undefined;
|
|
333
310
|
text?: string | undefined;
|
|
334
|
-
image_url?: string | undefined;
|
|
335
311
|
verbatim?: boolean | undefined;
|
|
336
312
|
alt_text?: string | undefined;
|
|
313
|
+
image_url?: string | undefined;
|
|
337
314
|
}, {
|
|
338
315
|
type: "image" | "plain_text" | "mrkdwn";
|
|
339
316
|
emoji?: boolean | undefined;
|
|
340
317
|
text?: string | undefined;
|
|
341
|
-
image_url?: string | undefined;
|
|
342
318
|
verbatim?: boolean | undefined;
|
|
343
319
|
alt_text?: string | undefined;
|
|
320
|
+
image_url?: string | undefined;
|
|
344
321
|
}>, "many">>;
|
|
345
322
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
323
|
+
username?: string | undefined;
|
|
324
|
+
icon_emoji?: string | undefined;
|
|
325
|
+
icon_url?: string | undefined;
|
|
326
|
+
attachments?: {
|
|
327
|
+
title?: string | undefined;
|
|
328
|
+
text?: string | undefined;
|
|
329
|
+
fields?: {
|
|
330
|
+
value: string;
|
|
331
|
+
title: string;
|
|
332
|
+
short?: boolean | undefined;
|
|
333
|
+
}[] | undefined;
|
|
334
|
+
image_url?: string | undefined;
|
|
335
|
+
color?: string | undefined;
|
|
336
|
+
pretext?: string | undefined;
|
|
337
|
+
author_name?: string | undefined;
|
|
338
|
+
author_link?: string | undefined;
|
|
339
|
+
author_icon?: string | undefined;
|
|
340
|
+
title_link?: string | undefined;
|
|
341
|
+
thumb_url?: string | undefined;
|
|
342
|
+
footer?: string | undefined;
|
|
343
|
+
footer_icon?: string | undefined;
|
|
344
|
+
ts?: number | undefined;
|
|
345
|
+
}[] | undefined;
|
|
346
346
|
thread_ts?: string | undefined;
|
|
347
347
|
reply_broadcast?: boolean | undefined;
|
|
348
348
|
unfurl_links?: boolean | undefined;
|
|
@@ -389,13 +389,13 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
389
389
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
390
390
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
|
-
operation: "get_user_info";
|
|
393
392
|
user: string;
|
|
393
|
+
operation: "get_user_info";
|
|
394
394
|
include_locale: boolean;
|
|
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,9 +454,9 @@ 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
458
|
ts: string;
|
|
459
|
+
operation: "get_thread_replies";
|
|
460
460
|
channel: string;
|
|
461
461
|
limit: number;
|
|
462
462
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -464,8 +464,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
464
464
|
latest?: string | undefined;
|
|
465
465
|
oldest?: string | undefined;
|
|
466
466
|
}, {
|
|
467
|
-
operation: "get_thread_replies";
|
|
468
467
|
ts: string;
|
|
468
|
+
operation: "get_thread_replies";
|
|
469
469
|
channel: string;
|
|
470
470
|
inclusive?: boolean | undefined;
|
|
471
471
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -507,14 +507,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
507
507
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
|
+
text?: string | undefined;
|
|
510
511
|
fields?: {
|
|
511
512
|
value: string;
|
|
512
513
|
title: string;
|
|
513
514
|
short?: boolean | undefined;
|
|
514
515
|
}[] | undefined;
|
|
515
|
-
color?: string | undefined;
|
|
516
|
-
text?: string | undefined;
|
|
517
516
|
image_url?: string | undefined;
|
|
517
|
+
color?: string | undefined;
|
|
518
518
|
pretext?: string | undefined;
|
|
519
519
|
author_name?: string | undefined;
|
|
520
520
|
author_link?: string | undefined;
|
|
@@ -526,14 +526,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
526
526
|
ts?: number | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
|
+
text?: string | undefined;
|
|
529
530
|
fields?: {
|
|
530
531
|
value: string;
|
|
531
532
|
title: string;
|
|
532
533
|
short?: boolean | undefined;
|
|
533
534
|
}[] | undefined;
|
|
534
|
-
color?: string | undefined;
|
|
535
|
-
text?: string | undefined;
|
|
536
535
|
image_url?: string | undefined;
|
|
536
|
+
color?: string | undefined;
|
|
537
537
|
pretext?: string | undefined;
|
|
538
538
|
author_name?: string | undefined;
|
|
539
539
|
author_link?: string | undefined;
|
|
@@ -573,16 +573,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
573
573
|
type: "image" | "plain_text" | "mrkdwn";
|
|
574
574
|
emoji?: boolean | undefined;
|
|
575
575
|
text?: string | undefined;
|
|
576
|
-
image_url?: string | undefined;
|
|
577
576
|
verbatim?: boolean | undefined;
|
|
578
577
|
alt_text?: string | undefined;
|
|
578
|
+
image_url?: string | undefined;
|
|
579
579
|
}, {
|
|
580
580
|
type: "image" | "plain_text" | "mrkdwn";
|
|
581
581
|
emoji?: boolean | undefined;
|
|
582
582
|
text?: string | undefined;
|
|
583
|
-
image_url?: string | undefined;
|
|
584
583
|
verbatim?: boolean | undefined;
|
|
585
584
|
alt_text?: string | undefined;
|
|
585
|
+
image_url?: string | undefined;
|
|
586
586
|
}>, "many">>;
|
|
587
587
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
588
588
|
type: z.ZodString;
|
|
@@ -613,16 +613,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
613
613
|
type: "image" | "plain_text" | "mrkdwn";
|
|
614
614
|
emoji?: boolean | undefined;
|
|
615
615
|
text?: string | undefined;
|
|
616
|
-
image_url?: string | undefined;
|
|
617
616
|
verbatim?: boolean | undefined;
|
|
618
617
|
alt_text?: string | undefined;
|
|
618
|
+
image_url?: string | undefined;
|
|
619
619
|
}, {
|
|
620
620
|
type: "image" | "plain_text" | "mrkdwn";
|
|
621
621
|
emoji?: boolean | undefined;
|
|
622
622
|
text?: string | undefined;
|
|
623
|
-
image_url?: string | undefined;
|
|
624
623
|
verbatim?: boolean | undefined;
|
|
625
624
|
alt_text?: string | undefined;
|
|
625
|
+
image_url?: string | undefined;
|
|
626
626
|
}>, "many">>;
|
|
627
627
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
628
628
|
type: z.ZodString;
|
|
@@ -653,45 +653,25 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
653
653
|
type: "image" | "plain_text" | "mrkdwn";
|
|
654
654
|
emoji?: boolean | undefined;
|
|
655
655
|
text?: string | undefined;
|
|
656
|
-
image_url?: string | undefined;
|
|
657
656
|
verbatim?: boolean | undefined;
|
|
658
657
|
alt_text?: string | undefined;
|
|
658
|
+
image_url?: string | undefined;
|
|
659
659
|
}, {
|
|
660
660
|
type: "image" | "plain_text" | "mrkdwn";
|
|
661
661
|
emoji?: boolean | undefined;
|
|
662
662
|
text?: string | undefined;
|
|
663
|
-
image_url?: string | undefined;
|
|
664
663
|
verbatim?: boolean | undefined;
|
|
665
664
|
alt_text?: string | undefined;
|
|
665
|
+
image_url?: 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
|
-
operation: "update_message";
|
|
671
670
|
ts: string;
|
|
671
|
+
operation: "update_message";
|
|
672
672
|
channel: string;
|
|
673
673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
674
674
|
text?: string | undefined;
|
|
675
|
-
attachments?: {
|
|
676
|
-
title?: string | undefined;
|
|
677
|
-
fields?: {
|
|
678
|
-
value: string;
|
|
679
|
-
title: string;
|
|
680
|
-
short?: boolean | undefined;
|
|
681
|
-
}[] | undefined;
|
|
682
|
-
color?: string | undefined;
|
|
683
|
-
text?: string | undefined;
|
|
684
|
-
image_url?: string | undefined;
|
|
685
|
-
pretext?: string | undefined;
|
|
686
|
-
author_name?: string | undefined;
|
|
687
|
-
author_link?: string | undefined;
|
|
688
|
-
author_icon?: string | undefined;
|
|
689
|
-
title_link?: string | undefined;
|
|
690
|
-
thumb_url?: string | undefined;
|
|
691
|
-
footer?: string | undefined;
|
|
692
|
-
footer_icon?: string | undefined;
|
|
693
|
-
ts?: number | undefined;
|
|
694
|
-
}[] | undefined;
|
|
695
675
|
blocks?: z.objectOutputType<{
|
|
696
676
|
type: z.ZodString;
|
|
697
677
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -721,34 +701,28 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
721
701
|
type: "image" | "plain_text" | "mrkdwn";
|
|
722
702
|
emoji?: boolean | undefined;
|
|
723
703
|
text?: string | undefined;
|
|
724
|
-
image_url?: string | undefined;
|
|
725
704
|
verbatim?: boolean | undefined;
|
|
726
705
|
alt_text?: string | undefined;
|
|
706
|
+
image_url?: string | undefined;
|
|
727
707
|
}, {
|
|
728
708
|
type: "image" | "plain_text" | "mrkdwn";
|
|
729
709
|
emoji?: boolean | undefined;
|
|
730
710
|
text?: string | undefined;
|
|
731
|
-
image_url?: string | undefined;
|
|
732
711
|
verbatim?: boolean | undefined;
|
|
733
712
|
alt_text?: string | undefined;
|
|
713
|
+
image_url?: string | undefined;
|
|
734
714
|
}>, "many">>;
|
|
735
715
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
736
|
-
}, {
|
|
737
|
-
operation: "update_message";
|
|
738
|
-
ts: string;
|
|
739
|
-
channel: string;
|
|
740
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
|
-
text?: string | undefined;
|
|
742
716
|
attachments?: {
|
|
743
717
|
title?: string | undefined;
|
|
718
|
+
text?: string | undefined;
|
|
744
719
|
fields?: {
|
|
745
720
|
value: string;
|
|
746
721
|
title: string;
|
|
747
722
|
short?: boolean | undefined;
|
|
748
723
|
}[] | undefined;
|
|
749
|
-
color?: string | undefined;
|
|
750
|
-
text?: string | undefined;
|
|
751
724
|
image_url?: string | undefined;
|
|
725
|
+
color?: string | undefined;
|
|
752
726
|
pretext?: string | undefined;
|
|
753
727
|
author_name?: string | undefined;
|
|
754
728
|
author_link?: string | undefined;
|
|
@@ -759,6 +733,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
759
733
|
footer_icon?: string | undefined;
|
|
760
734
|
ts?: number | undefined;
|
|
761
735
|
}[] | undefined;
|
|
736
|
+
}, {
|
|
737
|
+
ts: string;
|
|
738
|
+
operation: "update_message";
|
|
739
|
+
channel: string;
|
|
740
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
|
+
text?: string | undefined;
|
|
762
742
|
blocks?: z.objectInputType<{
|
|
763
743
|
type: z.ZodString;
|
|
764
744
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -788,31 +768,51 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
788
768
|
type: "image" | "plain_text" | "mrkdwn";
|
|
789
769
|
emoji?: boolean | undefined;
|
|
790
770
|
text?: string | undefined;
|
|
791
|
-
image_url?: string | undefined;
|
|
792
771
|
verbatim?: boolean | undefined;
|
|
793
772
|
alt_text?: string | undefined;
|
|
773
|
+
image_url?: string | undefined;
|
|
794
774
|
}, {
|
|
795
775
|
type: "image" | "plain_text" | "mrkdwn";
|
|
796
776
|
emoji?: boolean | undefined;
|
|
797
777
|
text?: string | undefined;
|
|
798
|
-
image_url?: string | undefined;
|
|
799
778
|
verbatim?: boolean | undefined;
|
|
800
779
|
alt_text?: string | undefined;
|
|
780
|
+
image_url?: string | undefined;
|
|
801
781
|
}>, "many">>;
|
|
802
782
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
783
|
+
attachments?: {
|
|
784
|
+
title?: string | undefined;
|
|
785
|
+
text?: string | undefined;
|
|
786
|
+
fields?: {
|
|
787
|
+
value: string;
|
|
788
|
+
title: string;
|
|
789
|
+
short?: boolean | undefined;
|
|
790
|
+
}[] | undefined;
|
|
791
|
+
image_url?: string | undefined;
|
|
792
|
+
color?: string | undefined;
|
|
793
|
+
pretext?: string | undefined;
|
|
794
|
+
author_name?: string | undefined;
|
|
795
|
+
author_link?: string | undefined;
|
|
796
|
+
author_icon?: string | undefined;
|
|
797
|
+
title_link?: string | undefined;
|
|
798
|
+
thumb_url?: string | undefined;
|
|
799
|
+
footer?: string | undefined;
|
|
800
|
+
footer_icon?: string | undefined;
|
|
801
|
+
ts?: number | undefined;
|
|
802
|
+
}[] | 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
|
-
operation: "delete_message";
|
|
810
809
|
ts: string;
|
|
810
|
+
operation: "delete_message";
|
|
811
811
|
channel: string;
|
|
812
812
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
813
813
|
}, {
|
|
814
|
-
operation: "delete_message";
|
|
815
814
|
ts: string;
|
|
815
|
+
operation: "delete_message";
|
|
816
816
|
channel: string;
|
|
817
817
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
818
818
|
}>, z.ZodObject<{
|
|
@@ -822,14 +822,14 @@ 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
|
-
operation: "add_reaction";
|
|
826
825
|
name: string;
|
|
826
|
+
operation: "add_reaction";
|
|
827
827
|
channel: string;
|
|
828
828
|
timestamp: string;
|
|
829
829
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
830
830
|
}, {
|
|
831
|
-
operation: "add_reaction";
|
|
832
831
|
name: string;
|
|
832
|
+
operation: "add_reaction";
|
|
833
833
|
channel: string;
|
|
834
834
|
timestamp: string;
|
|
835
835
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -840,14 +840,14 @@ 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
|
-
operation: "remove_reaction";
|
|
844
843
|
name: string;
|
|
844
|
+
operation: "remove_reaction";
|
|
845
845
|
channel: string;
|
|
846
846
|
timestamp: string;
|
|
847
847
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
848
848
|
}, {
|
|
849
|
-
operation: "remove_reaction";
|
|
850
849
|
name: string;
|
|
850
|
+
operation: "remove_reaction";
|
|
851
851
|
channel: string;
|
|
852
852
|
timestamp: string;
|
|
853
853
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -925,16 +925,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
925
925
|
type: "image" | "plain_text" | "mrkdwn";
|
|
926
926
|
emoji?: boolean | undefined;
|
|
927
927
|
text?: string | undefined;
|
|
928
|
-
image_url?: string | undefined;
|
|
929
928
|
verbatim?: boolean | undefined;
|
|
930
929
|
alt_text?: string | undefined;
|
|
930
|
+
image_url?: string | undefined;
|
|
931
931
|
}, {
|
|
932
932
|
type: "image" | "plain_text" | "mrkdwn";
|
|
933
933
|
emoji?: boolean | undefined;
|
|
934
934
|
text?: string | undefined;
|
|
935
|
-
image_url?: string | undefined;
|
|
936
935
|
verbatim?: boolean | undefined;
|
|
937
936
|
alt_text?: string | undefined;
|
|
937
|
+
image_url?: string | undefined;
|
|
938
938
|
}>, "many">>;
|
|
939
939
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
940
940
|
type: z.ZodString;
|
|
@@ -965,16 +965,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
965
965
|
type: "image" | "plain_text" | "mrkdwn";
|
|
966
966
|
emoji?: boolean | undefined;
|
|
967
967
|
text?: string | undefined;
|
|
968
|
-
image_url?: string | undefined;
|
|
969
968
|
verbatim?: boolean | undefined;
|
|
970
969
|
alt_text?: string | undefined;
|
|
970
|
+
image_url?: string | undefined;
|
|
971
971
|
}, {
|
|
972
972
|
type: "image" | "plain_text" | "mrkdwn";
|
|
973
973
|
emoji?: boolean | undefined;
|
|
974
974
|
text?: string | undefined;
|
|
975
|
-
image_url?: string | undefined;
|
|
976
975
|
verbatim?: boolean | undefined;
|
|
977
976
|
alt_text?: string | undefined;
|
|
977
|
+
image_url?: string | undefined;
|
|
978
978
|
}>, "many">>;
|
|
979
979
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
980
980
|
type: z.ZodString;
|
|
@@ -1005,24 +1005,24 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1005
1005
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1006
1006
|
emoji?: boolean | undefined;
|
|
1007
1007
|
text?: string | undefined;
|
|
1008
|
-
image_url?: string | undefined;
|
|
1009
1008
|
verbatim?: boolean | undefined;
|
|
1010
1009
|
alt_text?: string | undefined;
|
|
1010
|
+
image_url?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
1012
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1013
1013
|
emoji?: boolean | undefined;
|
|
1014
1014
|
text?: string | undefined;
|
|
1015
|
-
image_url?: string | undefined;
|
|
1016
1015
|
verbatim?: boolean | undefined;
|
|
1017
1016
|
alt_text?: string | undefined;
|
|
1017
|
+
image_url?: string | undefined;
|
|
1018
1018
|
}>, "many">>;
|
|
1019
1019
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1020
1020
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
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
|
-
operation: "schedule_message";
|
|
1025
1024
|
text: string;
|
|
1025
|
+
operation: "schedule_message";
|
|
1026
1026
|
channel: string;
|
|
1027
1027
|
unfurl_links: boolean;
|
|
1028
1028
|
unfurl_media: boolean;
|
|
@@ -1057,22 +1057,22 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1057
1057
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1058
1058
|
emoji?: boolean | undefined;
|
|
1059
1059
|
text?: string | undefined;
|
|
1060
|
-
image_url?: string | undefined;
|
|
1061
1060
|
verbatim?: boolean | undefined;
|
|
1062
1061
|
alt_text?: string | undefined;
|
|
1062
|
+
image_url?: string | undefined;
|
|
1063
1063
|
}, {
|
|
1064
1064
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1065
1065
|
emoji?: boolean | undefined;
|
|
1066
1066
|
text?: string | undefined;
|
|
1067
|
-
image_url?: string | undefined;
|
|
1068
1067
|
verbatim?: boolean | undefined;
|
|
1069
1068
|
alt_text?: string | undefined;
|
|
1069
|
+
image_url?: string | undefined;
|
|
1070
1070
|
}>, "many">>;
|
|
1071
1071
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1072
1072
|
thread_ts?: string | undefined;
|
|
1073
1073
|
}, {
|
|
1074
|
-
operation: "schedule_message";
|
|
1075
1074
|
text: string;
|
|
1075
|
+
operation: "schedule_message";
|
|
1076
1076
|
channel: string;
|
|
1077
1077
|
post_at: number;
|
|
1078
1078
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1105,16 +1105,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1105
1105
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1106
1106
|
emoji?: boolean | undefined;
|
|
1107
1107
|
text?: string | undefined;
|
|
1108
|
-
image_url?: string | undefined;
|
|
1109
1108
|
verbatim?: boolean | undefined;
|
|
1110
1109
|
alt_text?: string | undefined;
|
|
1110
|
+
image_url?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
1112
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1113
1113
|
emoji?: boolean | undefined;
|
|
1114
1114
|
text?: string | undefined;
|
|
1115
|
-
image_url?: string | undefined;
|
|
1116
1115
|
verbatim?: boolean | undefined;
|
|
1117
1116
|
alt_text?: string | undefined;
|
|
1117
|
+
image_url?: string | undefined;
|
|
1118
1118
|
}>, "many">>;
|
|
1119
1119
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1120
1120
|
thread_ts?: string | undefined;
|
|
@@ -1156,21 +1156,21 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1156
1156
|
count: z.ZodNumber;
|
|
1157
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1158
1158
|
name: string;
|
|
1159
|
-
count: number;
|
|
1160
1159
|
users: string[];
|
|
1160
|
+
count: number;
|
|
1161
1161
|
}, {
|
|
1162
1162
|
name: string;
|
|
1163
|
-
count: number;
|
|
1164
1163
|
users: string[];
|
|
1164
|
+
count: number;
|
|
1165
1165
|
}>, "many">>;
|
|
1166
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1167
|
type: string;
|
|
1168
|
-
user?: string | undefined;
|
|
1169
1168
|
text?: string | undefined;
|
|
1169
|
+
blocks?: unknown[] | undefined;
|
|
1170
|
+
user?: string | undefined;
|
|
1170
1171
|
ts?: string | undefined;
|
|
1171
1172
|
username?: string | undefined;
|
|
1172
1173
|
attachments?: unknown[] | undefined;
|
|
1173
|
-
blocks?: unknown[] | undefined;
|
|
1174
1174
|
thread_ts?: string | undefined;
|
|
1175
1175
|
bot_id?: string | undefined;
|
|
1176
1176
|
bot_profile?: {
|
|
@@ -1185,17 +1185,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1185
1185
|
subscribed?: boolean | undefined;
|
|
1186
1186
|
reactions?: {
|
|
1187
1187
|
name: string;
|
|
1188
|
-
count: number;
|
|
1189
1188
|
users: string[];
|
|
1189
|
+
count: number;
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
}, {
|
|
1192
1192
|
type: string;
|
|
1193
|
-
user?: string | undefined;
|
|
1194
1193
|
text?: string | undefined;
|
|
1194
|
+
blocks?: unknown[] | undefined;
|
|
1195
|
+
user?: string | undefined;
|
|
1195
1196
|
ts?: string | undefined;
|
|
1196
1197
|
username?: string | undefined;
|
|
1197
1198
|
attachments?: unknown[] | undefined;
|
|
1198
|
-
blocks?: unknown[] | undefined;
|
|
1199
1199
|
thread_ts?: string | undefined;
|
|
1200
1200
|
bot_id?: string | undefined;
|
|
1201
1201
|
bot_profile?: {
|
|
@@ -1210,25 +1210,25 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1210
1210
|
subscribed?: boolean | undefined;
|
|
1211
1211
|
reactions?: {
|
|
1212
1212
|
name: string;
|
|
1213
|
-
count: number;
|
|
1214
1213
|
users: string[];
|
|
1214
|
+
count: number;
|
|
1215
1215
|
}[] | undefined;
|
|
1216
1216
|
}>>;
|
|
1217
1217
|
error: z.ZodString;
|
|
1218
1218
|
success: z.ZodBoolean;
|
|
1219
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1220
|
-
operation: "send_message";
|
|
1221
|
-
ok: boolean;
|
|
1222
1220
|
error: string;
|
|
1223
1221
|
success: boolean;
|
|
1222
|
+
operation: "send_message";
|
|
1223
|
+
ok: boolean;
|
|
1224
1224
|
message?: {
|
|
1225
1225
|
type: string;
|
|
1226
|
-
user?: string | undefined;
|
|
1227
1226
|
text?: string | undefined;
|
|
1227
|
+
blocks?: unknown[] | undefined;
|
|
1228
|
+
user?: string | undefined;
|
|
1228
1229
|
ts?: string | undefined;
|
|
1229
1230
|
username?: string | undefined;
|
|
1230
1231
|
attachments?: unknown[] | undefined;
|
|
1231
|
-
blocks?: unknown[] | undefined;
|
|
1232
1232
|
thread_ts?: string | undefined;
|
|
1233
1233
|
bot_id?: string | undefined;
|
|
1234
1234
|
bot_profile?: {
|
|
@@ -1243,25 +1243,25 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1243
1243
|
subscribed?: boolean | undefined;
|
|
1244
1244
|
reactions?: {
|
|
1245
1245
|
name: string;
|
|
1246
|
-
count: number;
|
|
1247
1246
|
users: string[];
|
|
1247
|
+
count: number;
|
|
1248
1248
|
}[] | undefined;
|
|
1249
1249
|
} | undefined;
|
|
1250
1250
|
ts?: string | undefined;
|
|
1251
1251
|
channel?: string | undefined;
|
|
1252
1252
|
}, {
|
|
1253
|
-
operation: "send_message";
|
|
1254
|
-
ok: boolean;
|
|
1255
1253
|
error: string;
|
|
1256
1254
|
success: boolean;
|
|
1255
|
+
operation: "send_message";
|
|
1256
|
+
ok: boolean;
|
|
1257
1257
|
message?: {
|
|
1258
1258
|
type: string;
|
|
1259
|
-
user?: string | undefined;
|
|
1260
1259
|
text?: string | undefined;
|
|
1260
|
+
blocks?: unknown[] | undefined;
|
|
1261
|
+
user?: string | undefined;
|
|
1261
1262
|
ts?: string | undefined;
|
|
1262
1263
|
username?: string | undefined;
|
|
1263
1264
|
attachments?: unknown[] | undefined;
|
|
1264
|
-
blocks?: unknown[] | undefined;
|
|
1265
1265
|
thread_ts?: string | undefined;
|
|
1266
1266
|
bot_id?: string | undefined;
|
|
1267
1267
|
bot_profile?: {
|
|
@@ -1276,8 +1276,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1276
1276
|
subscribed?: boolean | undefined;
|
|
1277
1277
|
reactions?: {
|
|
1278
1278
|
name: string;
|
|
1279
|
-
count: number;
|
|
1280
1279
|
users: string[];
|
|
1280
|
+
count: number;
|
|
1281
1281
|
}[] | undefined;
|
|
1282
1282
|
} | undefined;
|
|
1283
1283
|
ts?: string | undefined;
|
|
@@ -1411,10 +1411,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1411
1411
|
error: z.ZodString;
|
|
1412
1412
|
success: z.ZodBoolean;
|
|
1413
1413
|
}, "strip", z.ZodTypeAny, {
|
|
1414
|
-
operation: "list_channels";
|
|
1415
|
-
ok: boolean;
|
|
1416
1414
|
error: string;
|
|
1417
1415
|
success: boolean;
|
|
1416
|
+
operation: "list_channels";
|
|
1417
|
+
ok: boolean;
|
|
1418
1418
|
response_metadata?: {
|
|
1419
1419
|
next_cursor: string;
|
|
1420
1420
|
} | undefined;
|
|
@@ -1453,10 +1453,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1453
1453
|
num_members?: number | undefined;
|
|
1454
1454
|
}[] | undefined;
|
|
1455
1455
|
}, {
|
|
1456
|
-
operation: "list_channels";
|
|
1457
|
-
ok: boolean;
|
|
1458
1456
|
error: string;
|
|
1459
1457
|
success: boolean;
|
|
1458
|
+
operation: "list_channels";
|
|
1459
|
+
ok: boolean;
|
|
1460
1460
|
response_metadata?: {
|
|
1461
1461
|
next_cursor: string;
|
|
1462
1462
|
} | undefined;
|
|
@@ -1616,10 +1616,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1616
1616
|
error: z.ZodString;
|
|
1617
1617
|
success: z.ZodBoolean;
|
|
1618
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1619
|
-
operation: "get_channel_info";
|
|
1620
|
-
ok: boolean;
|
|
1621
1619
|
error: string;
|
|
1622
1620
|
success: boolean;
|
|
1621
|
+
operation: "get_channel_info";
|
|
1622
|
+
ok: boolean;
|
|
1623
1623
|
channel?: {
|
|
1624
1624
|
name: string;
|
|
1625
1625
|
id: string;
|
|
@@ -1655,10 +1655,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1655
1655
|
num_members?: number | undefined;
|
|
1656
1656
|
} | undefined;
|
|
1657
1657
|
}, {
|
|
1658
|
-
operation: "get_channel_info";
|
|
1659
|
-
ok: boolean;
|
|
1660
1658
|
error: string;
|
|
1661
1659
|
success: boolean;
|
|
1660
|
+
operation: "get_channel_info";
|
|
1661
|
+
ok: boolean;
|
|
1662
1662
|
channel?: {
|
|
1663
1663
|
name: string;
|
|
1664
1664
|
id: string;
|
|
@@ -1733,8 +1733,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1733
1733
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
1734
1734
|
}, "strip", z.ZodTypeAny, {
|
|
1735
1735
|
title?: string | undefined;
|
|
1736
|
-
fields?: Record<string, unknown> | undefined;
|
|
1737
1736
|
email?: string | undefined;
|
|
1737
|
+
fields?: Record<string, unknown> | undefined;
|
|
1738
1738
|
real_name?: string | undefined;
|
|
1739
1739
|
phone?: string | undefined;
|
|
1740
1740
|
skype?: string | undefined;
|
|
@@ -1758,8 +1758,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1758
1758
|
image_1024?: string | undefined;
|
|
1759
1759
|
}, {
|
|
1760
1760
|
title?: string | undefined;
|
|
1761
|
-
fields?: Record<string, unknown> | undefined;
|
|
1762
1761
|
email?: string | undefined;
|
|
1762
|
+
fields?: Record<string, unknown> | undefined;
|
|
1763
1763
|
real_name?: string | undefined;
|
|
1764
1764
|
phone?: string | undefined;
|
|
1765
1765
|
skype?: string | undefined;
|
|
@@ -1794,12 +1794,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1794
1794
|
}, "strip", z.ZodTypeAny, {
|
|
1795
1795
|
name: string;
|
|
1796
1796
|
id: string;
|
|
1797
|
-
deleted?: boolean | undefined;
|
|
1798
1797
|
color?: string | undefined;
|
|
1798
|
+
team_id?: string | undefined;
|
|
1799
|
+
deleted?: boolean | undefined;
|
|
1800
|
+
real_name?: string | undefined;
|
|
1801
|
+
tz?: string | undefined;
|
|
1802
|
+
tz_label?: string | undefined;
|
|
1803
|
+
tz_offset?: number | undefined;
|
|
1799
1804
|
profile?: {
|
|
1800
1805
|
title?: string | undefined;
|
|
1801
|
-
fields?: Record<string, unknown> | undefined;
|
|
1802
1806
|
email?: string | undefined;
|
|
1807
|
+
fields?: Record<string, unknown> | undefined;
|
|
1803
1808
|
real_name?: string | undefined;
|
|
1804
1809
|
phone?: string | undefined;
|
|
1805
1810
|
skype?: string | undefined;
|
|
@@ -1822,11 +1827,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1822
1827
|
image_512?: string | undefined;
|
|
1823
1828
|
image_1024?: string | undefined;
|
|
1824
1829
|
} | undefined;
|
|
1825
|
-
team_id?: string | undefined;
|
|
1826
|
-
real_name?: string | undefined;
|
|
1827
|
-
tz?: string | undefined;
|
|
1828
|
-
tz_label?: string | undefined;
|
|
1829
|
-
tz_offset?: number | undefined;
|
|
1830
1830
|
is_admin?: boolean | undefined;
|
|
1831
1831
|
is_owner?: boolean | undefined;
|
|
1832
1832
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1839,12 +1839,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1839
1839
|
}, {
|
|
1840
1840
|
name: string;
|
|
1841
1841
|
id: string;
|
|
1842
|
-
deleted?: boolean | undefined;
|
|
1843
1842
|
color?: string | undefined;
|
|
1843
|
+
team_id?: string | undefined;
|
|
1844
|
+
deleted?: boolean | undefined;
|
|
1845
|
+
real_name?: string | undefined;
|
|
1846
|
+
tz?: string | undefined;
|
|
1847
|
+
tz_label?: string | undefined;
|
|
1848
|
+
tz_offset?: number | undefined;
|
|
1844
1849
|
profile?: {
|
|
1845
1850
|
title?: string | undefined;
|
|
1846
|
-
fields?: Record<string, unknown> | undefined;
|
|
1847
1851
|
email?: string | undefined;
|
|
1852
|
+
fields?: Record<string, unknown> | undefined;
|
|
1848
1853
|
real_name?: string | undefined;
|
|
1849
1854
|
phone?: string | undefined;
|
|
1850
1855
|
skype?: string | undefined;
|
|
@@ -1867,11 +1872,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1867
1872
|
image_512?: string | undefined;
|
|
1868
1873
|
image_1024?: string | undefined;
|
|
1869
1874
|
} | undefined;
|
|
1870
|
-
team_id?: string | undefined;
|
|
1871
|
-
real_name?: string | undefined;
|
|
1872
|
-
tz?: string | undefined;
|
|
1873
|
-
tz_label?: string | undefined;
|
|
1874
|
-
tz_offset?: number | undefined;
|
|
1875
1875
|
is_admin?: boolean | undefined;
|
|
1876
1876
|
is_owner?: boolean | undefined;
|
|
1877
1877
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1885,19 +1885,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1885
1885
|
error: z.ZodString;
|
|
1886
1886
|
success: z.ZodBoolean;
|
|
1887
1887
|
}, "strip", z.ZodTypeAny, {
|
|
1888
|
-
operation: "get_user_info";
|
|
1889
|
-
ok: boolean;
|
|
1890
1888
|
error: string;
|
|
1891
1889
|
success: boolean;
|
|
1890
|
+
operation: "get_user_info";
|
|
1891
|
+
ok: boolean;
|
|
1892
1892
|
user?: {
|
|
1893
1893
|
name: string;
|
|
1894
1894
|
id: string;
|
|
1895
|
-
deleted?: boolean | undefined;
|
|
1896
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;
|
|
1897
1902
|
profile?: {
|
|
1898
1903
|
title?: string | undefined;
|
|
1899
|
-
fields?: Record<string, unknown> | undefined;
|
|
1900
1904
|
email?: string | undefined;
|
|
1905
|
+
fields?: Record<string, unknown> | undefined;
|
|
1901
1906
|
real_name?: string | undefined;
|
|
1902
1907
|
phone?: string | undefined;
|
|
1903
1908
|
skype?: string | undefined;
|
|
@@ -1920,11 +1925,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1920
1925
|
image_512?: string | undefined;
|
|
1921
1926
|
image_1024?: string | undefined;
|
|
1922
1927
|
} | undefined;
|
|
1923
|
-
team_id?: string | undefined;
|
|
1924
|
-
real_name?: string | undefined;
|
|
1925
|
-
tz?: string | undefined;
|
|
1926
|
-
tz_label?: string | undefined;
|
|
1927
|
-
tz_offset?: number | undefined;
|
|
1928
1928
|
is_admin?: boolean | undefined;
|
|
1929
1929
|
is_owner?: boolean | undefined;
|
|
1930
1930
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1936,19 +1936,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1936
1936
|
has_2fa?: boolean | undefined;
|
|
1937
1937
|
} | undefined;
|
|
1938
1938
|
}, {
|
|
1939
|
-
operation: "get_user_info";
|
|
1940
|
-
ok: boolean;
|
|
1941
1939
|
error: string;
|
|
1942
1940
|
success: boolean;
|
|
1941
|
+
operation: "get_user_info";
|
|
1942
|
+
ok: boolean;
|
|
1943
1943
|
user?: {
|
|
1944
1944
|
name: string;
|
|
1945
1945
|
id: string;
|
|
1946
|
-
deleted?: boolean | undefined;
|
|
1947
1946
|
color?: string | undefined;
|
|
1947
|
+
team_id?: string | undefined;
|
|
1948
|
+
deleted?: boolean | undefined;
|
|
1949
|
+
real_name?: string | undefined;
|
|
1950
|
+
tz?: string | undefined;
|
|
1951
|
+
tz_label?: string | undefined;
|
|
1952
|
+
tz_offset?: number | undefined;
|
|
1948
1953
|
profile?: {
|
|
1949
1954
|
title?: string | undefined;
|
|
1950
|
-
fields?: Record<string, unknown> | undefined;
|
|
1951
1955
|
email?: string | undefined;
|
|
1956
|
+
fields?: Record<string, unknown> | undefined;
|
|
1952
1957
|
real_name?: string | undefined;
|
|
1953
1958
|
phone?: string | undefined;
|
|
1954
1959
|
skype?: string | undefined;
|
|
@@ -1971,11 +1976,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1971
1976
|
image_512?: string | undefined;
|
|
1972
1977
|
image_1024?: string | undefined;
|
|
1973
1978
|
} | undefined;
|
|
1974
|
-
team_id?: string | undefined;
|
|
1975
|
-
real_name?: string | undefined;
|
|
1976
|
-
tz?: string | undefined;
|
|
1977
|
-
tz_label?: string | undefined;
|
|
1978
|
-
tz_offset?: number | undefined;
|
|
1979
1979
|
is_admin?: boolean | undefined;
|
|
1980
1980
|
is_owner?: boolean | undefined;
|
|
1981
1981
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2026,8 +2026,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2026
2026
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
2027
2027
|
}, "strip", z.ZodTypeAny, {
|
|
2028
2028
|
title?: string | undefined;
|
|
2029
|
-
fields?: Record<string, unknown> | undefined;
|
|
2030
2029
|
email?: string | undefined;
|
|
2030
|
+
fields?: Record<string, unknown> | undefined;
|
|
2031
2031
|
real_name?: string | undefined;
|
|
2032
2032
|
phone?: string | undefined;
|
|
2033
2033
|
skype?: string | undefined;
|
|
@@ -2051,8 +2051,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2051
2051
|
image_1024?: string | undefined;
|
|
2052
2052
|
}, {
|
|
2053
2053
|
title?: string | undefined;
|
|
2054
|
-
fields?: Record<string, unknown> | undefined;
|
|
2055
2054
|
email?: string | undefined;
|
|
2055
|
+
fields?: Record<string, unknown> | undefined;
|
|
2056
2056
|
real_name?: string | undefined;
|
|
2057
2057
|
phone?: string | undefined;
|
|
2058
2058
|
skype?: string | undefined;
|
|
@@ -2087,12 +2087,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2087
2087
|
}, "strip", z.ZodTypeAny, {
|
|
2088
2088
|
name: string;
|
|
2089
2089
|
id: string;
|
|
2090
|
-
deleted?: boolean | undefined;
|
|
2091
2090
|
color?: string | undefined;
|
|
2091
|
+
team_id?: string | undefined;
|
|
2092
|
+
deleted?: boolean | undefined;
|
|
2093
|
+
real_name?: string | undefined;
|
|
2094
|
+
tz?: string | undefined;
|
|
2095
|
+
tz_label?: string | undefined;
|
|
2096
|
+
tz_offset?: number | undefined;
|
|
2092
2097
|
profile?: {
|
|
2093
2098
|
title?: string | undefined;
|
|
2094
|
-
fields?: Record<string, unknown> | undefined;
|
|
2095
2099
|
email?: string | undefined;
|
|
2100
|
+
fields?: Record<string, unknown> | undefined;
|
|
2096
2101
|
real_name?: string | undefined;
|
|
2097
2102
|
phone?: string | undefined;
|
|
2098
2103
|
skype?: string | undefined;
|
|
@@ -2115,11 +2120,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2115
2120
|
image_512?: string | undefined;
|
|
2116
2121
|
image_1024?: string | undefined;
|
|
2117
2122
|
} | undefined;
|
|
2118
|
-
team_id?: string | undefined;
|
|
2119
|
-
real_name?: string | undefined;
|
|
2120
|
-
tz?: string | undefined;
|
|
2121
|
-
tz_label?: string | undefined;
|
|
2122
|
-
tz_offset?: number | undefined;
|
|
2123
2123
|
is_admin?: boolean | undefined;
|
|
2124
2124
|
is_owner?: boolean | undefined;
|
|
2125
2125
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2132,12 +2132,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2132
2132
|
}, {
|
|
2133
2133
|
name: string;
|
|
2134
2134
|
id: string;
|
|
2135
|
-
deleted?: boolean | undefined;
|
|
2136
2135
|
color?: string | undefined;
|
|
2136
|
+
team_id?: string | undefined;
|
|
2137
|
+
deleted?: boolean | undefined;
|
|
2138
|
+
real_name?: string | undefined;
|
|
2139
|
+
tz?: string | undefined;
|
|
2140
|
+
tz_label?: string | undefined;
|
|
2141
|
+
tz_offset?: number | undefined;
|
|
2137
2142
|
profile?: {
|
|
2138
2143
|
title?: string | undefined;
|
|
2139
|
-
fields?: Record<string, unknown> | undefined;
|
|
2140
2144
|
email?: string | undefined;
|
|
2145
|
+
fields?: Record<string, unknown> | undefined;
|
|
2141
2146
|
real_name?: string | undefined;
|
|
2142
2147
|
phone?: string | undefined;
|
|
2143
2148
|
skype?: string | undefined;
|
|
@@ -2160,11 +2165,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2160
2165
|
image_512?: string | undefined;
|
|
2161
2166
|
image_1024?: string | undefined;
|
|
2162
2167
|
} | undefined;
|
|
2163
|
-
team_id?: string | undefined;
|
|
2164
|
-
real_name?: string | undefined;
|
|
2165
|
-
tz?: string | undefined;
|
|
2166
|
-
tz_label?: string | undefined;
|
|
2167
|
-
tz_offset?: number | undefined;
|
|
2168
2168
|
is_admin?: boolean | undefined;
|
|
2169
2169
|
is_owner?: boolean | undefined;
|
|
2170
2170
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2185,22 +2185,27 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2185
2185
|
error: z.ZodString;
|
|
2186
2186
|
success: z.ZodBoolean;
|
|
2187
2187
|
}, "strip", z.ZodTypeAny, {
|
|
2188
|
-
operation: "list_users";
|
|
2189
|
-
ok: boolean;
|
|
2190
2188
|
error: string;
|
|
2191
2189
|
success: boolean;
|
|
2190
|
+
operation: "list_users";
|
|
2191
|
+
ok: boolean;
|
|
2192
2192
|
response_metadata?: {
|
|
2193
2193
|
next_cursor: string;
|
|
2194
2194
|
} | undefined;
|
|
2195
2195
|
members?: {
|
|
2196
2196
|
name: string;
|
|
2197
2197
|
id: string;
|
|
2198
|
-
deleted?: boolean | undefined;
|
|
2199
2198
|
color?: string | undefined;
|
|
2199
|
+
team_id?: string | undefined;
|
|
2200
|
+
deleted?: boolean | undefined;
|
|
2201
|
+
real_name?: string | undefined;
|
|
2202
|
+
tz?: string | undefined;
|
|
2203
|
+
tz_label?: string | undefined;
|
|
2204
|
+
tz_offset?: number | undefined;
|
|
2200
2205
|
profile?: {
|
|
2201
2206
|
title?: string | undefined;
|
|
2202
|
-
fields?: Record<string, unknown> | undefined;
|
|
2203
2207
|
email?: string | undefined;
|
|
2208
|
+
fields?: Record<string, unknown> | undefined;
|
|
2204
2209
|
real_name?: string | undefined;
|
|
2205
2210
|
phone?: string | undefined;
|
|
2206
2211
|
skype?: string | undefined;
|
|
@@ -2223,11 +2228,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2223
2228
|
image_512?: string | undefined;
|
|
2224
2229
|
image_1024?: string | undefined;
|
|
2225
2230
|
} | undefined;
|
|
2226
|
-
team_id?: string | undefined;
|
|
2227
|
-
real_name?: string | undefined;
|
|
2228
|
-
tz?: string | undefined;
|
|
2229
|
-
tz_label?: string | undefined;
|
|
2230
|
-
tz_offset?: number | undefined;
|
|
2231
2231
|
is_admin?: boolean | undefined;
|
|
2232
2232
|
is_owner?: boolean | undefined;
|
|
2233
2233
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2239,22 +2239,27 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2239
2239
|
has_2fa?: boolean | undefined;
|
|
2240
2240
|
}[] | undefined;
|
|
2241
2241
|
}, {
|
|
2242
|
-
operation: "list_users";
|
|
2243
|
-
ok: boolean;
|
|
2244
2242
|
error: string;
|
|
2245
2243
|
success: boolean;
|
|
2244
|
+
operation: "list_users";
|
|
2245
|
+
ok: boolean;
|
|
2246
2246
|
response_metadata?: {
|
|
2247
2247
|
next_cursor: string;
|
|
2248
2248
|
} | undefined;
|
|
2249
2249
|
members?: {
|
|
2250
2250
|
name: string;
|
|
2251
2251
|
id: string;
|
|
2252
|
-
deleted?: boolean | undefined;
|
|
2253
2252
|
color?: string | undefined;
|
|
2253
|
+
team_id?: string | undefined;
|
|
2254
|
+
deleted?: boolean | undefined;
|
|
2255
|
+
real_name?: string | undefined;
|
|
2256
|
+
tz?: string | undefined;
|
|
2257
|
+
tz_label?: string | undefined;
|
|
2258
|
+
tz_offset?: number | undefined;
|
|
2254
2259
|
profile?: {
|
|
2255
2260
|
title?: string | undefined;
|
|
2256
|
-
fields?: Record<string, unknown> | undefined;
|
|
2257
2261
|
email?: string | undefined;
|
|
2262
|
+
fields?: Record<string, unknown> | undefined;
|
|
2258
2263
|
real_name?: string | undefined;
|
|
2259
2264
|
phone?: string | undefined;
|
|
2260
2265
|
skype?: string | undefined;
|
|
@@ -2277,11 +2282,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2277
2282
|
image_512?: string | undefined;
|
|
2278
2283
|
image_1024?: string | undefined;
|
|
2279
2284
|
} | undefined;
|
|
2280
|
-
team_id?: string | undefined;
|
|
2281
|
-
real_name?: string | undefined;
|
|
2282
|
-
tz?: string | undefined;
|
|
2283
|
-
tz_label?: string | undefined;
|
|
2284
|
-
tz_offset?: number | undefined;
|
|
2285
2285
|
is_admin?: boolean | undefined;
|
|
2286
2286
|
is_owner?: boolean | undefined;
|
|
2287
2287
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2325,21 +2325,21 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2325
2325
|
count: z.ZodNumber;
|
|
2326
2326
|
}, "strip", z.ZodTypeAny, {
|
|
2327
2327
|
name: string;
|
|
2328
|
-
count: number;
|
|
2329
2328
|
users: string[];
|
|
2329
|
+
count: number;
|
|
2330
2330
|
}, {
|
|
2331
2331
|
name: string;
|
|
2332
|
-
count: number;
|
|
2333
2332
|
users: string[];
|
|
2333
|
+
count: number;
|
|
2334
2334
|
}>, "many">>;
|
|
2335
2335
|
}, "strip", z.ZodTypeAny, {
|
|
2336
2336
|
type: string;
|
|
2337
|
-
user?: string | undefined;
|
|
2338
2337
|
text?: string | undefined;
|
|
2338
|
+
blocks?: unknown[] | undefined;
|
|
2339
|
+
user?: string | undefined;
|
|
2339
2340
|
ts?: string | undefined;
|
|
2340
2341
|
username?: string | undefined;
|
|
2341
2342
|
attachments?: unknown[] | undefined;
|
|
2342
|
-
blocks?: unknown[] | undefined;
|
|
2343
2343
|
thread_ts?: string | undefined;
|
|
2344
2344
|
bot_id?: string | undefined;
|
|
2345
2345
|
bot_profile?: {
|
|
@@ -2354,17 +2354,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2354
2354
|
subscribed?: boolean | undefined;
|
|
2355
2355
|
reactions?: {
|
|
2356
2356
|
name: string;
|
|
2357
|
-
count: number;
|
|
2358
2357
|
users: string[];
|
|
2358
|
+
count: number;
|
|
2359
2359
|
}[] | undefined;
|
|
2360
2360
|
}, {
|
|
2361
2361
|
type: string;
|
|
2362
|
-
user?: string | undefined;
|
|
2363
2362
|
text?: string | undefined;
|
|
2363
|
+
blocks?: unknown[] | undefined;
|
|
2364
|
+
user?: string | undefined;
|
|
2364
2365
|
ts?: string | undefined;
|
|
2365
2366
|
username?: string | undefined;
|
|
2366
2367
|
attachments?: unknown[] | undefined;
|
|
2367
|
-
blocks?: unknown[] | undefined;
|
|
2368
2368
|
thread_ts?: string | undefined;
|
|
2369
2369
|
bot_id?: string | undefined;
|
|
2370
2370
|
bot_profile?: {
|
|
@@ -2379,8 +2379,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2379
2379
|
subscribed?: boolean | undefined;
|
|
2380
2380
|
reactions?: {
|
|
2381
2381
|
name: string;
|
|
2382
|
-
count: number;
|
|
2383
2382
|
users: string[];
|
|
2383
|
+
count: number;
|
|
2384
2384
|
}[] | undefined;
|
|
2385
2385
|
}>, "many">>;
|
|
2386
2386
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2394,21 +2394,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2394
2394
|
error: z.ZodString;
|
|
2395
2395
|
success: z.ZodBoolean;
|
|
2396
2396
|
}, "strip", z.ZodTypeAny, {
|
|
2397
|
-
operation: "get_conversation_history";
|
|
2398
|
-
ok: boolean;
|
|
2399
2397
|
error: string;
|
|
2400
2398
|
success: boolean;
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
} | undefined;
|
|
2399
|
+
operation: "get_conversation_history";
|
|
2400
|
+
ok: boolean;
|
|
2404
2401
|
messages?: {
|
|
2405
2402
|
type: string;
|
|
2406
|
-
user?: string | undefined;
|
|
2407
2403
|
text?: string | undefined;
|
|
2404
|
+
blocks?: unknown[] | undefined;
|
|
2405
|
+
user?: string | undefined;
|
|
2408
2406
|
ts?: string | undefined;
|
|
2409
2407
|
username?: string | undefined;
|
|
2410
2408
|
attachments?: unknown[] | undefined;
|
|
2411
|
-
blocks?: unknown[] | undefined;
|
|
2412
2409
|
thread_ts?: string | undefined;
|
|
2413
2410
|
bot_id?: string | undefined;
|
|
2414
2411
|
bot_profile?: {
|
|
@@ -2423,27 +2420,27 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2423
2420
|
subscribed?: boolean | undefined;
|
|
2424
2421
|
reactions?: {
|
|
2425
2422
|
name: string;
|
|
2426
|
-
count: number;
|
|
2427
2423
|
users: string[];
|
|
2424
|
+
count: number;
|
|
2428
2425
|
}[] | undefined;
|
|
2429
2426
|
}[] | undefined;
|
|
2427
|
+
response_metadata?: {
|
|
2428
|
+
next_cursor: string;
|
|
2429
|
+
} | undefined;
|
|
2430
2430
|
has_more?: boolean | undefined;
|
|
2431
2431
|
}, {
|
|
2432
|
-
operation: "get_conversation_history";
|
|
2433
|
-
ok: boolean;
|
|
2434
2432
|
error: string;
|
|
2435
2433
|
success: boolean;
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
} | undefined;
|
|
2434
|
+
operation: "get_conversation_history";
|
|
2435
|
+
ok: boolean;
|
|
2439
2436
|
messages?: {
|
|
2440
2437
|
type: string;
|
|
2441
|
-
user?: string | undefined;
|
|
2442
2438
|
text?: string | undefined;
|
|
2439
|
+
blocks?: unknown[] | undefined;
|
|
2440
|
+
user?: string | undefined;
|
|
2443
2441
|
ts?: string | undefined;
|
|
2444
2442
|
username?: string | undefined;
|
|
2445
2443
|
attachments?: unknown[] | undefined;
|
|
2446
|
-
blocks?: unknown[] | undefined;
|
|
2447
2444
|
thread_ts?: string | undefined;
|
|
2448
2445
|
bot_id?: string | undefined;
|
|
2449
2446
|
bot_profile?: {
|
|
@@ -2458,10 +2455,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2458
2455
|
subscribed?: boolean | undefined;
|
|
2459
2456
|
reactions?: {
|
|
2460
2457
|
name: string;
|
|
2461
|
-
count: number;
|
|
2462
2458
|
users: string[];
|
|
2459
|
+
count: number;
|
|
2463
2460
|
}[] | undefined;
|
|
2464
2461
|
}[] | undefined;
|
|
2462
|
+
response_metadata?: {
|
|
2463
|
+
next_cursor: string;
|
|
2464
|
+
} | undefined;
|
|
2465
2465
|
has_more?: boolean | undefined;
|
|
2466
2466
|
}>, z.ZodObject<{
|
|
2467
2467
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -2496,21 +2496,21 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2496
2496
|
count: z.ZodNumber;
|
|
2497
2497
|
}, "strip", z.ZodTypeAny, {
|
|
2498
2498
|
name: string;
|
|
2499
|
-
count: number;
|
|
2500
2499
|
users: string[];
|
|
2500
|
+
count: number;
|
|
2501
2501
|
}, {
|
|
2502
2502
|
name: string;
|
|
2503
|
-
count: number;
|
|
2504
2503
|
users: string[];
|
|
2504
|
+
count: number;
|
|
2505
2505
|
}>, "many">>;
|
|
2506
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2507
2507
|
type: string;
|
|
2508
|
-
user?: string | undefined;
|
|
2509
2508
|
text?: string | undefined;
|
|
2509
|
+
blocks?: unknown[] | undefined;
|
|
2510
|
+
user?: string | undefined;
|
|
2510
2511
|
ts?: string | undefined;
|
|
2511
2512
|
username?: string | undefined;
|
|
2512
2513
|
attachments?: unknown[] | undefined;
|
|
2513
|
-
blocks?: unknown[] | undefined;
|
|
2514
2514
|
thread_ts?: string | undefined;
|
|
2515
2515
|
bot_id?: string | undefined;
|
|
2516
2516
|
bot_profile?: {
|
|
@@ -2525,17 +2525,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2525
2525
|
subscribed?: boolean | undefined;
|
|
2526
2526
|
reactions?: {
|
|
2527
2527
|
name: string;
|
|
2528
|
-
count: number;
|
|
2529
2528
|
users: string[];
|
|
2529
|
+
count: number;
|
|
2530
2530
|
}[] | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
type: string;
|
|
2533
|
-
user?: string | undefined;
|
|
2534
2533
|
text?: string | undefined;
|
|
2534
|
+
blocks?: unknown[] | undefined;
|
|
2535
|
+
user?: string | undefined;
|
|
2535
2536
|
ts?: string | undefined;
|
|
2536
2537
|
username?: string | undefined;
|
|
2537
2538
|
attachments?: unknown[] | undefined;
|
|
2538
|
-
blocks?: unknown[] | undefined;
|
|
2539
2539
|
thread_ts?: string | undefined;
|
|
2540
2540
|
bot_id?: string | undefined;
|
|
2541
2541
|
bot_profile?: {
|
|
@@ -2550,8 +2550,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2550
2550
|
subscribed?: boolean | undefined;
|
|
2551
2551
|
reactions?: {
|
|
2552
2552
|
name: string;
|
|
2553
|
-
count: number;
|
|
2554
2553
|
users: string[];
|
|
2554
|
+
count: number;
|
|
2555
2555
|
}[] | undefined;
|
|
2556
2556
|
}>, "many">>;
|
|
2557
2557
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2565,21 +2565,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2565
2565
|
error: z.ZodString;
|
|
2566
2566
|
success: z.ZodBoolean;
|
|
2567
2567
|
}, "strip", z.ZodTypeAny, {
|
|
2568
|
-
operation: "get_thread_replies";
|
|
2569
|
-
ok: boolean;
|
|
2570
2568
|
error: string;
|
|
2571
2569
|
success: boolean;
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
} | undefined;
|
|
2570
|
+
operation: "get_thread_replies";
|
|
2571
|
+
ok: boolean;
|
|
2575
2572
|
messages?: {
|
|
2576
2573
|
type: string;
|
|
2577
|
-
user?: string | undefined;
|
|
2578
2574
|
text?: string | undefined;
|
|
2575
|
+
blocks?: unknown[] | undefined;
|
|
2576
|
+
user?: string | undefined;
|
|
2579
2577
|
ts?: string | undefined;
|
|
2580
2578
|
username?: string | undefined;
|
|
2581
2579
|
attachments?: unknown[] | undefined;
|
|
2582
|
-
blocks?: unknown[] | undefined;
|
|
2583
2580
|
thread_ts?: string | undefined;
|
|
2584
2581
|
bot_id?: string | undefined;
|
|
2585
2582
|
bot_profile?: {
|
|
@@ -2594,27 +2591,27 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2594
2591
|
subscribed?: boolean | undefined;
|
|
2595
2592
|
reactions?: {
|
|
2596
2593
|
name: string;
|
|
2597
|
-
count: number;
|
|
2598
2594
|
users: string[];
|
|
2595
|
+
count: number;
|
|
2599
2596
|
}[] | undefined;
|
|
2600
2597
|
}[] | undefined;
|
|
2598
|
+
response_metadata?: {
|
|
2599
|
+
next_cursor: string;
|
|
2600
|
+
} | undefined;
|
|
2601
2601
|
has_more?: boolean | undefined;
|
|
2602
2602
|
}, {
|
|
2603
|
-
operation: "get_thread_replies";
|
|
2604
|
-
ok: boolean;
|
|
2605
2603
|
error: string;
|
|
2606
2604
|
success: boolean;
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
} | undefined;
|
|
2605
|
+
operation: "get_thread_replies";
|
|
2606
|
+
ok: boolean;
|
|
2610
2607
|
messages?: {
|
|
2611
2608
|
type: string;
|
|
2612
|
-
user?: string | undefined;
|
|
2613
2609
|
text?: string | undefined;
|
|
2610
|
+
blocks?: unknown[] | undefined;
|
|
2611
|
+
user?: string | undefined;
|
|
2614
2612
|
ts?: string | undefined;
|
|
2615
2613
|
username?: string | undefined;
|
|
2616
2614
|
attachments?: unknown[] | undefined;
|
|
2617
|
-
blocks?: unknown[] | undefined;
|
|
2618
2615
|
thread_ts?: string | undefined;
|
|
2619
2616
|
bot_id?: string | undefined;
|
|
2620
2617
|
bot_profile?: {
|
|
@@ -2629,10 +2626,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2629
2626
|
subscribed?: boolean | undefined;
|
|
2630
2627
|
reactions?: {
|
|
2631
2628
|
name: string;
|
|
2632
|
-
count: number;
|
|
2633
2629
|
users: string[];
|
|
2630
|
+
count: number;
|
|
2634
2631
|
}[] | undefined;
|
|
2635
2632
|
}[] | undefined;
|
|
2633
|
+
response_metadata?: {
|
|
2634
|
+
next_cursor: string;
|
|
2635
|
+
} | undefined;
|
|
2636
2636
|
has_more?: boolean | undefined;
|
|
2637
2637
|
}>, z.ZodObject<{
|
|
2638
2638
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -2670,21 +2670,21 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2670
2670
|
count: z.ZodNumber;
|
|
2671
2671
|
}, "strip", z.ZodTypeAny, {
|
|
2672
2672
|
name: string;
|
|
2673
|
-
count: number;
|
|
2674
2673
|
users: string[];
|
|
2674
|
+
count: number;
|
|
2675
2675
|
}, {
|
|
2676
2676
|
name: string;
|
|
2677
|
-
count: number;
|
|
2678
2677
|
users: string[];
|
|
2678
|
+
count: number;
|
|
2679
2679
|
}>, "many">>;
|
|
2680
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2681
2681
|
type: string;
|
|
2682
|
-
user?: string | undefined;
|
|
2683
2682
|
text?: string | undefined;
|
|
2683
|
+
blocks?: unknown[] | undefined;
|
|
2684
|
+
user?: string | undefined;
|
|
2684
2685
|
ts?: string | undefined;
|
|
2685
2686
|
username?: string | undefined;
|
|
2686
2687
|
attachments?: unknown[] | undefined;
|
|
2687
|
-
blocks?: unknown[] | undefined;
|
|
2688
2688
|
thread_ts?: string | undefined;
|
|
2689
2689
|
bot_id?: string | undefined;
|
|
2690
2690
|
bot_profile?: {
|
|
@@ -2699,17 +2699,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2699
2699
|
subscribed?: boolean | undefined;
|
|
2700
2700
|
reactions?: {
|
|
2701
2701
|
name: string;
|
|
2702
|
-
count: number;
|
|
2703
2702
|
users: string[];
|
|
2703
|
+
count: number;
|
|
2704
2704
|
}[] | undefined;
|
|
2705
2705
|
}, {
|
|
2706
2706
|
type: string;
|
|
2707
|
-
user?: string | undefined;
|
|
2708
2707
|
text?: string | undefined;
|
|
2708
|
+
blocks?: unknown[] | undefined;
|
|
2709
|
+
user?: string | undefined;
|
|
2709
2710
|
ts?: string | undefined;
|
|
2710
2711
|
username?: string | undefined;
|
|
2711
2712
|
attachments?: unknown[] | undefined;
|
|
2712
|
-
blocks?: unknown[] | undefined;
|
|
2713
2713
|
thread_ts?: string | undefined;
|
|
2714
2714
|
bot_id?: string | undefined;
|
|
2715
2715
|
bot_profile?: {
|
|
@@ -2724,25 +2724,25 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2724
2724
|
subscribed?: boolean | undefined;
|
|
2725
2725
|
reactions?: {
|
|
2726
2726
|
name: string;
|
|
2727
|
-
count: number;
|
|
2728
2727
|
users: string[];
|
|
2728
|
+
count: number;
|
|
2729
2729
|
}[] | undefined;
|
|
2730
2730
|
}>>;
|
|
2731
2731
|
error: z.ZodString;
|
|
2732
2732
|
success: z.ZodBoolean;
|
|
2733
2733
|
}, "strip", z.ZodTypeAny, {
|
|
2734
|
-
operation: "update_message";
|
|
2735
|
-
ok: boolean;
|
|
2736
2734
|
error: string;
|
|
2737
2735
|
success: boolean;
|
|
2736
|
+
operation: "update_message";
|
|
2737
|
+
ok: boolean;
|
|
2738
2738
|
message?: {
|
|
2739
2739
|
type: string;
|
|
2740
|
-
user?: string | undefined;
|
|
2741
2740
|
text?: string | undefined;
|
|
2741
|
+
blocks?: unknown[] | undefined;
|
|
2742
|
+
user?: string | undefined;
|
|
2742
2743
|
ts?: string | undefined;
|
|
2743
2744
|
username?: string | undefined;
|
|
2744
2745
|
attachments?: unknown[] | undefined;
|
|
2745
|
-
blocks?: unknown[] | undefined;
|
|
2746
2746
|
thread_ts?: string | undefined;
|
|
2747
2747
|
bot_id?: string | undefined;
|
|
2748
2748
|
bot_profile?: {
|
|
@@ -2757,26 +2757,26 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2757
2757
|
subscribed?: boolean | undefined;
|
|
2758
2758
|
reactions?: {
|
|
2759
2759
|
name: string;
|
|
2760
|
-
count: number;
|
|
2761
2760
|
users: string[];
|
|
2761
|
+
count: number;
|
|
2762
2762
|
}[] | undefined;
|
|
2763
2763
|
} | undefined;
|
|
2764
2764
|
text?: string | undefined;
|
|
2765
2765
|
ts?: string | undefined;
|
|
2766
2766
|
channel?: string | undefined;
|
|
2767
2767
|
}, {
|
|
2768
|
-
operation: "update_message";
|
|
2769
|
-
ok: boolean;
|
|
2770
2768
|
error: string;
|
|
2771
2769
|
success: boolean;
|
|
2770
|
+
operation: "update_message";
|
|
2771
|
+
ok: boolean;
|
|
2772
2772
|
message?: {
|
|
2773
2773
|
type: string;
|
|
2774
|
-
user?: string | undefined;
|
|
2775
2774
|
text?: string | undefined;
|
|
2775
|
+
blocks?: unknown[] | undefined;
|
|
2776
|
+
user?: string | undefined;
|
|
2776
2777
|
ts?: string | undefined;
|
|
2777
2778
|
username?: string | undefined;
|
|
2778
2779
|
attachments?: unknown[] | undefined;
|
|
2779
|
-
blocks?: unknown[] | undefined;
|
|
2780
2780
|
thread_ts?: string | undefined;
|
|
2781
2781
|
bot_id?: string | undefined;
|
|
2782
2782
|
bot_profile?: {
|
|
@@ -2791,8 +2791,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2791
2791
|
subscribed?: boolean | undefined;
|
|
2792
2792
|
reactions?: {
|
|
2793
2793
|
name: string;
|
|
2794
|
-
count: number;
|
|
2795
2794
|
users: string[];
|
|
2795
|
+
count: number;
|
|
2796
2796
|
}[] | undefined;
|
|
2797
2797
|
} | undefined;
|
|
2798
2798
|
text?: string | undefined;
|
|
@@ -2806,17 +2806,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2806
2806
|
error: z.ZodString;
|
|
2807
2807
|
success: z.ZodBoolean;
|
|
2808
2808
|
}, "strip", z.ZodTypeAny, {
|
|
2809
|
-
operation: "delete_message";
|
|
2810
|
-
ok: boolean;
|
|
2811
2809
|
error: string;
|
|
2812
2810
|
success: boolean;
|
|
2811
|
+
operation: "delete_message";
|
|
2812
|
+
ok: boolean;
|
|
2813
2813
|
ts?: string | undefined;
|
|
2814
2814
|
channel?: string | undefined;
|
|
2815
2815
|
}, {
|
|
2816
|
-
operation: "delete_message";
|
|
2817
|
-
ok: boolean;
|
|
2818
2816
|
error: string;
|
|
2819
2817
|
success: boolean;
|
|
2818
|
+
operation: "delete_message";
|
|
2819
|
+
ok: boolean;
|
|
2820
2820
|
ts?: string | undefined;
|
|
2821
2821
|
channel?: string | undefined;
|
|
2822
2822
|
}>, z.ZodObject<{
|
|
@@ -2825,30 +2825,30 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2825
2825
|
error: z.ZodString;
|
|
2826
2826
|
success: z.ZodBoolean;
|
|
2827
2827
|
}, "strip", z.ZodTypeAny, {
|
|
2828
|
-
operation: "add_reaction";
|
|
2829
|
-
ok: boolean;
|
|
2830
2828
|
error: string;
|
|
2831
2829
|
success: boolean;
|
|
2832
|
-
}, {
|
|
2833
2830
|
operation: "add_reaction";
|
|
2834
2831
|
ok: boolean;
|
|
2832
|
+
}, {
|
|
2835
2833
|
error: string;
|
|
2836
2834
|
success: boolean;
|
|
2835
|
+
operation: "add_reaction";
|
|
2836
|
+
ok: boolean;
|
|
2837
2837
|
}>, z.ZodObject<{
|
|
2838
2838
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
2839
2839
|
ok: z.ZodBoolean;
|
|
2840
2840
|
error: z.ZodString;
|
|
2841
2841
|
success: z.ZodBoolean;
|
|
2842
2842
|
}, "strip", z.ZodTypeAny, {
|
|
2843
|
-
operation: "remove_reaction";
|
|
2844
|
-
ok: boolean;
|
|
2845
2843
|
error: string;
|
|
2846
2844
|
success: boolean;
|
|
2847
|
-
}, {
|
|
2848
2845
|
operation: "remove_reaction";
|
|
2849
2846
|
ok: boolean;
|
|
2847
|
+
}, {
|
|
2850
2848
|
error: string;
|
|
2851
2849
|
success: boolean;
|
|
2850
|
+
operation: "remove_reaction";
|
|
2851
|
+
ok: boolean;
|
|
2852
2852
|
}>, z.ZodObject<{
|
|
2853
2853
|
operation: z.ZodLiteral<"join_channel">;
|
|
2854
2854
|
ok: z.ZodBoolean;
|
|
@@ -2972,10 +2972,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2972
2972
|
error: z.ZodString;
|
|
2973
2973
|
success: z.ZodBoolean;
|
|
2974
2974
|
}, "strip", z.ZodTypeAny, {
|
|
2975
|
-
operation: "join_channel";
|
|
2976
|
-
ok: boolean;
|
|
2977
2975
|
error: string;
|
|
2978
2976
|
success: boolean;
|
|
2977
|
+
operation: "join_channel";
|
|
2978
|
+
ok: boolean;
|
|
2979
2979
|
channel?: {
|
|
2980
2980
|
name: string;
|
|
2981
2981
|
id: string;
|
|
@@ -3012,10 +3012,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3012
3012
|
} | undefined;
|
|
3013
3013
|
already_in_channel?: boolean | undefined;
|
|
3014
3014
|
}, {
|
|
3015
|
-
operation: "join_channel";
|
|
3016
|
-
ok: boolean;
|
|
3017
3015
|
error: string;
|
|
3018
3016
|
success: boolean;
|
|
3017
|
+
operation: "join_channel";
|
|
3018
|
+
ok: boolean;
|
|
3019
3019
|
channel?: {
|
|
3020
3020
|
name: string;
|
|
3021
3021
|
id: string;
|
|
@@ -3163,8 +3163,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3163
3163
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3164
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3165
|
name: string;
|
|
3166
|
-
id: string;
|
|
3167
3166
|
user: string;
|
|
3167
|
+
size: number;
|
|
3168
|
+
id: string;
|
|
3168
3169
|
username: string;
|
|
3169
3170
|
timestamp: number;
|
|
3170
3171
|
created: number;
|
|
@@ -3172,7 +3173,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3172
3173
|
filetype: string;
|
|
3173
3174
|
pretty_type: string;
|
|
3174
3175
|
editable: boolean;
|
|
3175
|
-
size: number;
|
|
3176
3176
|
mode: string;
|
|
3177
3177
|
is_external: boolean;
|
|
3178
3178
|
external_type: string;
|
|
@@ -3208,8 +3208,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3208
3208
|
has_rich_preview?: boolean | undefined;
|
|
3209
3209
|
}, {
|
|
3210
3210
|
name: string;
|
|
3211
|
-
id: string;
|
|
3212
3211
|
user: string;
|
|
3212
|
+
size: number;
|
|
3213
|
+
id: string;
|
|
3213
3214
|
username: string;
|
|
3214
3215
|
timestamp: number;
|
|
3215
3216
|
created: number;
|
|
@@ -3217,7 +3218,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3217
3218
|
filetype: string;
|
|
3218
3219
|
pretty_type: string;
|
|
3219
3220
|
editable: boolean;
|
|
3220
|
-
size: number;
|
|
3221
3221
|
mode: string;
|
|
3222
3222
|
is_external: boolean;
|
|
3223
3223
|
external_type: string;
|
|
@@ -3255,14 +3255,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3255
3255
|
error: z.ZodString;
|
|
3256
3256
|
success: z.ZodBoolean;
|
|
3257
3257
|
}, "strip", z.ZodTypeAny, {
|
|
3258
|
-
operation: "upload_file";
|
|
3259
|
-
ok: boolean;
|
|
3260
3258
|
error: string;
|
|
3261
3259
|
success: boolean;
|
|
3260
|
+
operation: "upload_file";
|
|
3261
|
+
ok: boolean;
|
|
3262
3262
|
file?: {
|
|
3263
3263
|
name: string;
|
|
3264
|
-
id: string;
|
|
3265
3264
|
user: string;
|
|
3265
|
+
size: number;
|
|
3266
|
+
id: string;
|
|
3266
3267
|
username: string;
|
|
3267
3268
|
timestamp: number;
|
|
3268
3269
|
created: number;
|
|
@@ -3270,7 +3271,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3270
3271
|
filetype: string;
|
|
3271
3272
|
pretty_type: string;
|
|
3272
3273
|
editable: boolean;
|
|
3273
|
-
size: number;
|
|
3274
3274
|
mode: string;
|
|
3275
3275
|
is_external: boolean;
|
|
3276
3276
|
external_type: string;
|
|
@@ -3306,14 +3306,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3306
3306
|
has_rich_preview?: boolean | undefined;
|
|
3307
3307
|
} | undefined;
|
|
3308
3308
|
}, {
|
|
3309
|
-
operation: "upload_file";
|
|
3310
|
-
ok: boolean;
|
|
3311
3309
|
error: string;
|
|
3312
3310
|
success: boolean;
|
|
3311
|
+
operation: "upload_file";
|
|
3312
|
+
ok: boolean;
|
|
3313
3313
|
file?: {
|
|
3314
3314
|
name: string;
|
|
3315
|
-
id: string;
|
|
3316
3315
|
user: string;
|
|
3316
|
+
size: number;
|
|
3317
|
+
id: string;
|
|
3317
3318
|
username: string;
|
|
3318
3319
|
timestamp: number;
|
|
3319
3320
|
created: number;
|
|
@@ -3321,7 +3322,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3321
3322
|
filetype: string;
|
|
3322
3323
|
pretty_type: string;
|
|
3323
3324
|
editable: boolean;
|
|
3324
|
-
size: number;
|
|
3325
3325
|
mode: string;
|
|
3326
3326
|
is_external: boolean;
|
|
3327
3327
|
external_type: string;
|
|
@@ -3365,18 +3365,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3365
3365
|
error: z.ZodString;
|
|
3366
3366
|
success: z.ZodBoolean;
|
|
3367
3367
|
}, "strip", z.ZodTypeAny, {
|
|
3368
|
-
operation: "schedule_message";
|
|
3369
|
-
ok: boolean;
|
|
3370
3368
|
error: string;
|
|
3371
3369
|
success: boolean;
|
|
3370
|
+
operation: "schedule_message";
|
|
3371
|
+
ok: boolean;
|
|
3372
3372
|
channel?: string | undefined;
|
|
3373
3373
|
post_at?: number | undefined;
|
|
3374
3374
|
scheduled_message_id?: string | undefined;
|
|
3375
3375
|
}, {
|
|
3376
|
-
operation: "schedule_message";
|
|
3377
|
-
ok: boolean;
|
|
3378
3376
|
error: string;
|
|
3379
3377
|
success: boolean;
|
|
3378
|
+
operation: "schedule_message";
|
|
3379
|
+
ok: boolean;
|
|
3380
3380
|
channel?: string | undefined;
|
|
3381
3381
|
post_at?: number | undefined;
|
|
3382
3382
|
scheduled_message_id?: string | undefined;
|
|
@@ -3430,14 +3430,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3430
3430
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3431
3431
|
}, "strip", z.ZodTypeAny, {
|
|
3432
3432
|
title?: string | undefined;
|
|
3433
|
+
text?: string | undefined;
|
|
3433
3434
|
fields?: {
|
|
3434
3435
|
value: string;
|
|
3435
3436
|
title: string;
|
|
3436
3437
|
short?: boolean | undefined;
|
|
3437
3438
|
}[] | undefined;
|
|
3438
|
-
color?: string | undefined;
|
|
3439
|
-
text?: string | undefined;
|
|
3440
3439
|
image_url?: string | undefined;
|
|
3440
|
+
color?: string | undefined;
|
|
3441
3441
|
pretext?: string | undefined;
|
|
3442
3442
|
author_name?: string | undefined;
|
|
3443
3443
|
author_link?: string | undefined;
|
|
@@ -3449,14 +3449,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3449
3449
|
ts?: number | undefined;
|
|
3450
3450
|
}, {
|
|
3451
3451
|
title?: string | undefined;
|
|
3452
|
+
text?: string | undefined;
|
|
3452
3453
|
fields?: {
|
|
3453
3454
|
value: string;
|
|
3454
3455
|
title: string;
|
|
3455
3456
|
short?: boolean | undefined;
|
|
3456
3457
|
}[] | undefined;
|
|
3457
|
-
color?: string | undefined;
|
|
3458
|
-
text?: string | undefined;
|
|
3459
3458
|
image_url?: string | undefined;
|
|
3459
|
+
color?: string | undefined;
|
|
3460
3460
|
pretext?: string | undefined;
|
|
3461
3461
|
author_name?: string | undefined;
|
|
3462
3462
|
author_link?: string | undefined;
|
|
@@ -3496,16 +3496,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3496
3496
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3497
3497
|
emoji?: boolean | undefined;
|
|
3498
3498
|
text?: string | undefined;
|
|
3499
|
-
image_url?: string | undefined;
|
|
3500
3499
|
verbatim?: boolean | undefined;
|
|
3501
3500
|
alt_text?: string | undefined;
|
|
3501
|
+
image_url?: string | undefined;
|
|
3502
3502
|
}, {
|
|
3503
3503
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3504
3504
|
emoji?: boolean | undefined;
|
|
3505
3505
|
text?: string | undefined;
|
|
3506
|
-
image_url?: string | undefined;
|
|
3507
3506
|
verbatim?: boolean | undefined;
|
|
3508
3507
|
alt_text?: string | undefined;
|
|
3508
|
+
image_url?: string | undefined;
|
|
3509
3509
|
}>, "many">>;
|
|
3510
3510
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3511
3511
|
type: z.ZodString;
|
|
@@ -3536,16 +3536,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3536
3536
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3537
3537
|
emoji?: boolean | undefined;
|
|
3538
3538
|
text?: string | undefined;
|
|
3539
|
-
image_url?: string | undefined;
|
|
3540
3539
|
verbatim?: boolean | undefined;
|
|
3541
3540
|
alt_text?: string | undefined;
|
|
3541
|
+
image_url?: string | undefined;
|
|
3542
3542
|
}, {
|
|
3543
3543
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3544
3544
|
emoji?: boolean | undefined;
|
|
3545
3545
|
text?: string | undefined;
|
|
3546
|
-
image_url?: string | undefined;
|
|
3547
3546
|
verbatim?: boolean | undefined;
|
|
3548
3547
|
alt_text?: string | undefined;
|
|
3548
|
+
image_url?: string | undefined;
|
|
3549
3549
|
}>, "many">>;
|
|
3550
3550
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3551
3551
|
type: z.ZodString;
|
|
@@ -3576,16 +3576,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3576
3576
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3577
3577
|
emoji?: boolean | undefined;
|
|
3578
3578
|
text?: string | undefined;
|
|
3579
|
-
image_url?: string | undefined;
|
|
3580
3579
|
verbatim?: boolean | undefined;
|
|
3581
3580
|
alt_text?: string | undefined;
|
|
3581
|
+
image_url?: string | undefined;
|
|
3582
3582
|
}, {
|
|
3583
3583
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3584
3584
|
emoji?: boolean | undefined;
|
|
3585
3585
|
text?: string | undefined;
|
|
3586
|
-
image_url?: string | undefined;
|
|
3587
3586
|
verbatim?: boolean | undefined;
|
|
3588
3587
|
alt_text?: string | undefined;
|
|
3588
|
+
image_url?: string | undefined;
|
|
3589
3589
|
}>, "many">>;
|
|
3590
3590
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
3591
3591
|
thread_ts: z.ZodOptional<z.ZodString>;
|
|
@@ -3594,36 +3594,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3594
3594
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3595
3595
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3596
3596
|
}, "strip", z.ZodTypeAny, {
|
|
3597
|
-
operation: "send_message";
|
|
3598
3597
|
text: string;
|
|
3598
|
+
operation: "send_message";
|
|
3599
3599
|
channel: string;
|
|
3600
3600
|
reply_broadcast: boolean;
|
|
3601
3601
|
unfurl_links: boolean;
|
|
3602
3602
|
unfurl_media: boolean;
|
|
3603
3603
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3604
|
-
username?: string | undefined;
|
|
3605
|
-
icon_emoji?: string | undefined;
|
|
3606
|
-
icon_url?: string | undefined;
|
|
3607
|
-
attachments?: {
|
|
3608
|
-
title?: string | undefined;
|
|
3609
|
-
fields?: {
|
|
3610
|
-
value: string;
|
|
3611
|
-
title: string;
|
|
3612
|
-
short?: boolean | undefined;
|
|
3613
|
-
}[] | undefined;
|
|
3614
|
-
color?: string | undefined;
|
|
3615
|
-
text?: string | undefined;
|
|
3616
|
-
image_url?: string | undefined;
|
|
3617
|
-
pretext?: string | undefined;
|
|
3618
|
-
author_name?: string | undefined;
|
|
3619
|
-
author_link?: string | undefined;
|
|
3620
|
-
author_icon?: string | undefined;
|
|
3621
|
-
title_link?: string | undefined;
|
|
3622
|
-
thumb_url?: string | undefined;
|
|
3623
|
-
footer?: string | undefined;
|
|
3624
|
-
footer_icon?: string | undefined;
|
|
3625
|
-
ts?: number | undefined;
|
|
3626
|
-
}[] | undefined;
|
|
3627
3604
|
blocks?: z.objectOutputType<{
|
|
3628
3605
|
type: z.ZodString;
|
|
3629
3606
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -3653,37 +3630,31 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3653
3630
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3654
3631
|
emoji?: boolean | undefined;
|
|
3655
3632
|
text?: string | undefined;
|
|
3656
|
-
image_url?: string | undefined;
|
|
3657
3633
|
verbatim?: boolean | undefined;
|
|
3658
3634
|
alt_text?: string | undefined;
|
|
3635
|
+
image_url?: string | undefined;
|
|
3659
3636
|
}, {
|
|
3660
3637
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3661
3638
|
emoji?: boolean | undefined;
|
|
3662
3639
|
text?: string | undefined;
|
|
3663
|
-
image_url?: string | undefined;
|
|
3664
3640
|
verbatim?: boolean | undefined;
|
|
3665
3641
|
alt_text?: string | undefined;
|
|
3642
|
+
image_url?: string | undefined;
|
|
3666
3643
|
}>, "many">>;
|
|
3667
3644
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3668
|
-
thread_ts?: string | undefined;
|
|
3669
|
-
}, {
|
|
3670
|
-
operation: "send_message";
|
|
3671
|
-
text: string;
|
|
3672
|
-
channel: string;
|
|
3673
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3674
3645
|
username?: string | undefined;
|
|
3675
3646
|
icon_emoji?: string | undefined;
|
|
3676
3647
|
icon_url?: string | undefined;
|
|
3677
3648
|
attachments?: {
|
|
3678
3649
|
title?: string | undefined;
|
|
3650
|
+
text?: string | undefined;
|
|
3679
3651
|
fields?: {
|
|
3680
3652
|
value: string;
|
|
3681
3653
|
title: string;
|
|
3682
3654
|
short?: boolean | undefined;
|
|
3683
3655
|
}[] | undefined;
|
|
3684
|
-
color?: string | undefined;
|
|
3685
|
-
text?: string | undefined;
|
|
3686
3656
|
image_url?: string | undefined;
|
|
3657
|
+
color?: string | undefined;
|
|
3687
3658
|
pretext?: string | undefined;
|
|
3688
3659
|
author_name?: string | undefined;
|
|
3689
3660
|
author_link?: string | undefined;
|
|
@@ -3694,6 +3665,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3694
3665
|
footer_icon?: string | undefined;
|
|
3695
3666
|
ts?: number | undefined;
|
|
3696
3667
|
}[] | undefined;
|
|
3668
|
+
thread_ts?: string | undefined;
|
|
3669
|
+
}, {
|
|
3670
|
+
text: string;
|
|
3671
|
+
operation: "send_message";
|
|
3672
|
+
channel: string;
|
|
3673
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3697
3674
|
blocks?: z.objectInputType<{
|
|
3698
3675
|
type: z.ZodString;
|
|
3699
3676
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -3723,18 +3700,41 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3723
3700
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3724
3701
|
emoji?: boolean | undefined;
|
|
3725
3702
|
text?: string | undefined;
|
|
3726
|
-
image_url?: string | undefined;
|
|
3727
3703
|
verbatim?: boolean | undefined;
|
|
3728
3704
|
alt_text?: string | undefined;
|
|
3705
|
+
image_url?: string | undefined;
|
|
3729
3706
|
}, {
|
|
3730
3707
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3731
3708
|
emoji?: boolean | undefined;
|
|
3732
3709
|
text?: string | undefined;
|
|
3733
|
-
image_url?: string | undefined;
|
|
3734
3710
|
verbatim?: boolean | undefined;
|
|
3735
3711
|
alt_text?: string | undefined;
|
|
3712
|
+
image_url?: string | undefined;
|
|
3736
3713
|
}>, "many">>;
|
|
3737
3714
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3715
|
+
username?: string | undefined;
|
|
3716
|
+
icon_emoji?: string | undefined;
|
|
3717
|
+
icon_url?: string | undefined;
|
|
3718
|
+
attachments?: {
|
|
3719
|
+
title?: string | undefined;
|
|
3720
|
+
text?: string | undefined;
|
|
3721
|
+
fields?: {
|
|
3722
|
+
value: string;
|
|
3723
|
+
title: string;
|
|
3724
|
+
short?: boolean | undefined;
|
|
3725
|
+
}[] | undefined;
|
|
3726
|
+
image_url?: string | undefined;
|
|
3727
|
+
color?: string | undefined;
|
|
3728
|
+
pretext?: string | undefined;
|
|
3729
|
+
author_name?: string | undefined;
|
|
3730
|
+
author_link?: string | undefined;
|
|
3731
|
+
author_icon?: string | undefined;
|
|
3732
|
+
title_link?: string | undefined;
|
|
3733
|
+
thumb_url?: string | undefined;
|
|
3734
|
+
footer?: string | undefined;
|
|
3735
|
+
footer_icon?: string | undefined;
|
|
3736
|
+
ts?: number | undefined;
|
|
3737
|
+
}[] | undefined;
|
|
3738
3738
|
thread_ts?: string | undefined;
|
|
3739
3739
|
reply_broadcast?: boolean | undefined;
|
|
3740
3740
|
unfurl_links?: boolean | undefined;
|
|
@@ -3781,13 +3781,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3781
3781
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3782
3782
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3783
3783
|
}, "strip", z.ZodTypeAny, {
|
|
3784
|
-
operation: "get_user_info";
|
|
3785
3784
|
user: string;
|
|
3785
|
+
operation: "get_user_info";
|
|
3786
3786
|
include_locale: boolean;
|
|
3787
3787
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3788
3788
|
}, {
|
|
3789
|
-
operation: "get_user_info";
|
|
3790
3789
|
user: string;
|
|
3790
|
+
operation: "get_user_info";
|
|
3791
3791
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3792
3792
|
include_locale?: boolean | undefined;
|
|
3793
3793
|
}>, z.ZodObject<{
|
|
@@ -3818,8 +3818,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3818
3818
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3819
3819
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3820
3820
|
}, "strip", z.ZodTypeAny, {
|
|
3821
|
-
operation: "get_conversation_history";
|
|
3822
3821
|
inclusive: boolean;
|
|
3822
|
+
operation: "get_conversation_history";
|
|
3823
3823
|
channel: string;
|
|
3824
3824
|
limit: number;
|
|
3825
3825
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -3846,9 +3846,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3846
3846
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3847
3847
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3848
3848
|
}, "strip", z.ZodTypeAny, {
|
|
3849
|
-
operation: "get_thread_replies";
|
|
3850
3849
|
inclusive: boolean;
|
|
3851
3850
|
ts: string;
|
|
3851
|
+
operation: "get_thread_replies";
|
|
3852
3852
|
channel: string;
|
|
3853
3853
|
limit: number;
|
|
3854
3854
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -3856,8 +3856,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3856
3856
|
latest?: string | undefined;
|
|
3857
3857
|
oldest?: string | undefined;
|
|
3858
3858
|
}, {
|
|
3859
|
-
operation: "get_thread_replies";
|
|
3860
3859
|
ts: string;
|
|
3860
|
+
operation: "get_thread_replies";
|
|
3861
3861
|
channel: string;
|
|
3862
3862
|
inclusive?: boolean | undefined;
|
|
3863
3863
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -3899,14 +3899,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3899
3899
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3900
3900
|
}, "strip", z.ZodTypeAny, {
|
|
3901
3901
|
title?: string | undefined;
|
|
3902
|
+
text?: string | undefined;
|
|
3902
3903
|
fields?: {
|
|
3903
3904
|
value: string;
|
|
3904
3905
|
title: string;
|
|
3905
3906
|
short?: boolean | undefined;
|
|
3906
3907
|
}[] | undefined;
|
|
3907
|
-
color?: string | undefined;
|
|
3908
|
-
text?: string | undefined;
|
|
3909
3908
|
image_url?: string | undefined;
|
|
3909
|
+
color?: string | undefined;
|
|
3910
3910
|
pretext?: string | undefined;
|
|
3911
3911
|
author_name?: string | undefined;
|
|
3912
3912
|
author_link?: string | undefined;
|
|
@@ -3918,14 +3918,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3918
3918
|
ts?: number | undefined;
|
|
3919
3919
|
}, {
|
|
3920
3920
|
title?: string | undefined;
|
|
3921
|
+
text?: string | undefined;
|
|
3921
3922
|
fields?: {
|
|
3922
3923
|
value: string;
|
|
3923
3924
|
title: string;
|
|
3924
3925
|
short?: boolean | undefined;
|
|
3925
3926
|
}[] | undefined;
|
|
3926
|
-
color?: string | undefined;
|
|
3927
|
-
text?: string | undefined;
|
|
3928
3927
|
image_url?: string | undefined;
|
|
3928
|
+
color?: string | undefined;
|
|
3929
3929
|
pretext?: string | undefined;
|
|
3930
3930
|
author_name?: string | undefined;
|
|
3931
3931
|
author_link?: string | undefined;
|
|
@@ -3965,16 +3965,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3965
3965
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3966
3966
|
emoji?: boolean | undefined;
|
|
3967
3967
|
text?: string | undefined;
|
|
3968
|
-
image_url?: string | undefined;
|
|
3969
3968
|
verbatim?: boolean | undefined;
|
|
3970
3969
|
alt_text?: string | undefined;
|
|
3970
|
+
image_url?: string | undefined;
|
|
3971
3971
|
}, {
|
|
3972
3972
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3973
3973
|
emoji?: boolean | undefined;
|
|
3974
3974
|
text?: string | undefined;
|
|
3975
|
-
image_url?: string | undefined;
|
|
3976
3975
|
verbatim?: boolean | undefined;
|
|
3977
3976
|
alt_text?: string | undefined;
|
|
3977
|
+
image_url?: string | undefined;
|
|
3978
3978
|
}>, "many">>;
|
|
3979
3979
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3980
3980
|
type: z.ZodString;
|
|
@@ -4005,16 +4005,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4005
4005
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4006
4006
|
emoji?: boolean | undefined;
|
|
4007
4007
|
text?: string | undefined;
|
|
4008
|
-
image_url?: string | undefined;
|
|
4009
4008
|
verbatim?: boolean | undefined;
|
|
4010
4009
|
alt_text?: string | undefined;
|
|
4010
|
+
image_url?: string | undefined;
|
|
4011
4011
|
}, {
|
|
4012
4012
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4013
4013
|
emoji?: boolean | undefined;
|
|
4014
4014
|
text?: string | undefined;
|
|
4015
|
-
image_url?: string | undefined;
|
|
4016
4015
|
verbatim?: boolean | undefined;
|
|
4017
4016
|
alt_text?: string | undefined;
|
|
4017
|
+
image_url?: string | undefined;
|
|
4018
4018
|
}>, "many">>;
|
|
4019
4019
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4020
4020
|
type: z.ZodString;
|
|
@@ -4045,45 +4045,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4045
4045
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4046
4046
|
emoji?: boolean | undefined;
|
|
4047
4047
|
text?: string | undefined;
|
|
4048
|
-
image_url?: string | undefined;
|
|
4049
4048
|
verbatim?: boolean | undefined;
|
|
4050
4049
|
alt_text?: string | undefined;
|
|
4050
|
+
image_url?: string | undefined;
|
|
4051
4051
|
}, {
|
|
4052
4052
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4053
4053
|
emoji?: boolean | undefined;
|
|
4054
4054
|
text?: string | undefined;
|
|
4055
|
-
image_url?: string | undefined;
|
|
4056
4055
|
verbatim?: boolean | undefined;
|
|
4057
4056
|
alt_text?: string | undefined;
|
|
4057
|
+
image_url?: string | undefined;
|
|
4058
4058
|
}>, "many">>;
|
|
4059
4059
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4060
4060
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4061
4061
|
}, "strip", z.ZodTypeAny, {
|
|
4062
|
-
operation: "update_message";
|
|
4063
4062
|
ts: string;
|
|
4063
|
+
operation: "update_message";
|
|
4064
4064
|
channel: string;
|
|
4065
4065
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4066
4066
|
text?: string | undefined;
|
|
4067
|
-
attachments?: {
|
|
4068
|
-
title?: string | undefined;
|
|
4069
|
-
fields?: {
|
|
4070
|
-
value: string;
|
|
4071
|
-
title: string;
|
|
4072
|
-
short?: boolean | undefined;
|
|
4073
|
-
}[] | undefined;
|
|
4074
|
-
color?: string | undefined;
|
|
4075
|
-
text?: string | undefined;
|
|
4076
|
-
image_url?: string | undefined;
|
|
4077
|
-
pretext?: string | undefined;
|
|
4078
|
-
author_name?: string | undefined;
|
|
4079
|
-
author_link?: string | undefined;
|
|
4080
|
-
author_icon?: string | undefined;
|
|
4081
|
-
title_link?: string | undefined;
|
|
4082
|
-
thumb_url?: string | undefined;
|
|
4083
|
-
footer?: string | undefined;
|
|
4084
|
-
footer_icon?: string | undefined;
|
|
4085
|
-
ts?: number | undefined;
|
|
4086
|
-
}[] | undefined;
|
|
4087
4067
|
blocks?: z.objectOutputType<{
|
|
4088
4068
|
type: z.ZodString;
|
|
4089
4069
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4113,34 +4093,28 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4113
4093
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4114
4094
|
emoji?: boolean | undefined;
|
|
4115
4095
|
text?: string | undefined;
|
|
4116
|
-
image_url?: string | undefined;
|
|
4117
4096
|
verbatim?: boolean | undefined;
|
|
4118
4097
|
alt_text?: string | undefined;
|
|
4098
|
+
image_url?: string | undefined;
|
|
4119
4099
|
}, {
|
|
4120
4100
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4121
4101
|
emoji?: boolean | undefined;
|
|
4122
4102
|
text?: string | undefined;
|
|
4123
|
-
image_url?: string | undefined;
|
|
4124
4103
|
verbatim?: boolean | undefined;
|
|
4125
4104
|
alt_text?: string | undefined;
|
|
4105
|
+
image_url?: string | undefined;
|
|
4126
4106
|
}>, "many">>;
|
|
4127
4107
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4128
|
-
}, {
|
|
4129
|
-
operation: "update_message";
|
|
4130
|
-
ts: string;
|
|
4131
|
-
channel: string;
|
|
4132
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
|
-
text?: string | undefined;
|
|
4134
4108
|
attachments?: {
|
|
4135
4109
|
title?: string | undefined;
|
|
4110
|
+
text?: string | undefined;
|
|
4136
4111
|
fields?: {
|
|
4137
4112
|
value: string;
|
|
4138
4113
|
title: string;
|
|
4139
4114
|
short?: boolean | undefined;
|
|
4140
4115
|
}[] | undefined;
|
|
4141
|
-
color?: string | undefined;
|
|
4142
|
-
text?: string | undefined;
|
|
4143
4116
|
image_url?: string | undefined;
|
|
4117
|
+
color?: string | undefined;
|
|
4144
4118
|
pretext?: string | undefined;
|
|
4145
4119
|
author_name?: string | undefined;
|
|
4146
4120
|
author_link?: string | undefined;
|
|
@@ -4151,6 +4125,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4151
4125
|
footer_icon?: string | undefined;
|
|
4152
4126
|
ts?: number | undefined;
|
|
4153
4127
|
}[] | undefined;
|
|
4128
|
+
}, {
|
|
4129
|
+
ts: string;
|
|
4130
|
+
operation: "update_message";
|
|
4131
|
+
channel: string;
|
|
4132
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
|
+
text?: string | undefined;
|
|
4154
4134
|
blocks?: z.objectInputType<{
|
|
4155
4135
|
type: z.ZodString;
|
|
4156
4136
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4180,31 +4160,51 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4180
4160
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4181
4161
|
emoji?: boolean | undefined;
|
|
4182
4162
|
text?: string | undefined;
|
|
4183
|
-
image_url?: string | undefined;
|
|
4184
4163
|
verbatim?: boolean | undefined;
|
|
4185
4164
|
alt_text?: string | undefined;
|
|
4165
|
+
image_url?: string | undefined;
|
|
4186
4166
|
}, {
|
|
4187
4167
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4188
4168
|
emoji?: boolean | undefined;
|
|
4189
4169
|
text?: string | undefined;
|
|
4190
|
-
image_url?: string | undefined;
|
|
4191
4170
|
verbatim?: boolean | undefined;
|
|
4192
4171
|
alt_text?: string | undefined;
|
|
4172
|
+
image_url?: string | undefined;
|
|
4193
4173
|
}>, "many">>;
|
|
4194
4174
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4175
|
+
attachments?: {
|
|
4176
|
+
title?: string | undefined;
|
|
4177
|
+
text?: string | undefined;
|
|
4178
|
+
fields?: {
|
|
4179
|
+
value: string;
|
|
4180
|
+
title: string;
|
|
4181
|
+
short?: boolean | undefined;
|
|
4182
|
+
}[] | undefined;
|
|
4183
|
+
image_url?: string | undefined;
|
|
4184
|
+
color?: string | undefined;
|
|
4185
|
+
pretext?: string | undefined;
|
|
4186
|
+
author_name?: string | undefined;
|
|
4187
|
+
author_link?: string | undefined;
|
|
4188
|
+
author_icon?: string | undefined;
|
|
4189
|
+
title_link?: string | undefined;
|
|
4190
|
+
thumb_url?: string | undefined;
|
|
4191
|
+
footer?: string | undefined;
|
|
4192
|
+
footer_icon?: string | undefined;
|
|
4193
|
+
ts?: number | undefined;
|
|
4194
|
+
}[] | undefined;
|
|
4195
4195
|
}>, z.ZodObject<{
|
|
4196
4196
|
operation: z.ZodLiteral<"delete_message">;
|
|
4197
4197
|
channel: z.ZodString;
|
|
4198
4198
|
ts: z.ZodString;
|
|
4199
4199
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4200
4200
|
}, "strip", z.ZodTypeAny, {
|
|
4201
|
-
operation: "delete_message";
|
|
4202
4201
|
ts: string;
|
|
4202
|
+
operation: "delete_message";
|
|
4203
4203
|
channel: string;
|
|
4204
4204
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4205
4205
|
}, {
|
|
4206
|
-
operation: "delete_message";
|
|
4207
4206
|
ts: string;
|
|
4207
|
+
operation: "delete_message";
|
|
4208
4208
|
channel: string;
|
|
4209
4209
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4210
4210
|
}>, z.ZodObject<{
|
|
@@ -4214,14 +4214,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4214
4214
|
timestamp: z.ZodString;
|
|
4215
4215
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4216
4216
|
}, "strip", z.ZodTypeAny, {
|
|
4217
|
-
operation: "add_reaction";
|
|
4218
4217
|
name: string;
|
|
4218
|
+
operation: "add_reaction";
|
|
4219
4219
|
channel: string;
|
|
4220
4220
|
timestamp: string;
|
|
4221
4221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4222
4222
|
}, {
|
|
4223
|
-
operation: "add_reaction";
|
|
4224
4223
|
name: string;
|
|
4224
|
+
operation: "add_reaction";
|
|
4225
4225
|
channel: string;
|
|
4226
4226
|
timestamp: string;
|
|
4227
4227
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -4232,14 +4232,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4232
4232
|
timestamp: z.ZodString;
|
|
4233
4233
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4234
4234
|
}, "strip", z.ZodTypeAny, {
|
|
4235
|
-
operation: "remove_reaction";
|
|
4236
4235
|
name: string;
|
|
4236
|
+
operation: "remove_reaction";
|
|
4237
4237
|
channel: string;
|
|
4238
4238
|
timestamp: string;
|
|
4239
4239
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4240
4240
|
}, {
|
|
4241
|
-
operation: "remove_reaction";
|
|
4242
4241
|
name: string;
|
|
4242
|
+
operation: "remove_reaction";
|
|
4243
4243
|
channel: string;
|
|
4244
4244
|
timestamp: string;
|
|
4245
4245
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -4317,16 +4317,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4317
4317
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4318
4318
|
emoji?: boolean | undefined;
|
|
4319
4319
|
text?: string | undefined;
|
|
4320
|
-
image_url?: string | undefined;
|
|
4321
4320
|
verbatim?: boolean | undefined;
|
|
4322
4321
|
alt_text?: string | undefined;
|
|
4322
|
+
image_url?: string | undefined;
|
|
4323
4323
|
}, {
|
|
4324
4324
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4325
4325
|
emoji?: boolean | undefined;
|
|
4326
4326
|
text?: string | undefined;
|
|
4327
|
-
image_url?: string | undefined;
|
|
4328
4327
|
verbatim?: boolean | undefined;
|
|
4329
4328
|
alt_text?: string | undefined;
|
|
4329
|
+
image_url?: string | undefined;
|
|
4330
4330
|
}>, "many">>;
|
|
4331
4331
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4332
4332
|
type: z.ZodString;
|
|
@@ -4357,16 +4357,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4357
4357
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4358
4358
|
emoji?: boolean | undefined;
|
|
4359
4359
|
text?: string | undefined;
|
|
4360
|
-
image_url?: string | undefined;
|
|
4361
4360
|
verbatim?: boolean | undefined;
|
|
4362
4361
|
alt_text?: string | undefined;
|
|
4362
|
+
image_url?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
4364
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4365
4365
|
emoji?: boolean | undefined;
|
|
4366
4366
|
text?: string | undefined;
|
|
4367
|
-
image_url?: string | undefined;
|
|
4368
4367
|
verbatim?: boolean | undefined;
|
|
4369
4368
|
alt_text?: string | undefined;
|
|
4369
|
+
image_url?: string | undefined;
|
|
4370
4370
|
}>, "many">>;
|
|
4371
4371
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4372
4372
|
type: z.ZodString;
|
|
@@ -4397,24 +4397,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4397
4397
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4398
4398
|
emoji?: boolean | undefined;
|
|
4399
4399
|
text?: string | undefined;
|
|
4400
|
-
image_url?: string | undefined;
|
|
4401
4400
|
verbatim?: boolean | undefined;
|
|
4402
4401
|
alt_text?: string | undefined;
|
|
4402
|
+
image_url?: string | undefined;
|
|
4403
4403
|
}, {
|
|
4404
4404
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4405
4405
|
emoji?: boolean | undefined;
|
|
4406
4406
|
text?: string | undefined;
|
|
4407
|
-
image_url?: string | undefined;
|
|
4408
4407
|
verbatim?: boolean | undefined;
|
|
4409
4408
|
alt_text?: string | undefined;
|
|
4409
|
+
image_url?: string | undefined;
|
|
4410
4410
|
}>, "many">>;
|
|
4411
4411
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4412
4412
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4413
4413
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4414
4414
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4415
4415
|
}, "strip", z.ZodTypeAny, {
|
|
4416
|
-
operation: "schedule_message";
|
|
4417
4416
|
text: string;
|
|
4417
|
+
operation: "schedule_message";
|
|
4418
4418
|
channel: string;
|
|
4419
4419
|
unfurl_links: boolean;
|
|
4420
4420
|
unfurl_media: boolean;
|
|
@@ -4449,22 +4449,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4449
4449
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4450
4450
|
emoji?: boolean | undefined;
|
|
4451
4451
|
text?: string | undefined;
|
|
4452
|
-
image_url?: string | undefined;
|
|
4453
4452
|
verbatim?: boolean | undefined;
|
|
4454
4453
|
alt_text?: string | undefined;
|
|
4454
|
+
image_url?: string | undefined;
|
|
4455
4455
|
}, {
|
|
4456
4456
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4457
4457
|
emoji?: boolean | undefined;
|
|
4458
4458
|
text?: string | undefined;
|
|
4459
|
-
image_url?: string | undefined;
|
|
4460
4459
|
verbatim?: boolean | undefined;
|
|
4461
4460
|
alt_text?: string | undefined;
|
|
4461
|
+
image_url?: string | undefined;
|
|
4462
4462
|
}>, "many">>;
|
|
4463
4463
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4464
4464
|
thread_ts?: string | undefined;
|
|
4465
4465
|
}, {
|
|
4466
|
-
operation: "schedule_message";
|
|
4467
4466
|
text: string;
|
|
4467
|
+
operation: "schedule_message";
|
|
4468
4468
|
channel: string;
|
|
4469
4469
|
post_at: number;
|
|
4470
4470
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -4497,16 +4497,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4497
4497
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4498
4498
|
emoji?: boolean | undefined;
|
|
4499
4499
|
text?: string | undefined;
|
|
4500
|
-
image_url?: string | undefined;
|
|
4501
4500
|
verbatim?: boolean | undefined;
|
|
4502
4501
|
alt_text?: string | undefined;
|
|
4502
|
+
image_url?: string | undefined;
|
|
4503
4503
|
}, {
|
|
4504
4504
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4505
4505
|
emoji?: boolean | undefined;
|
|
4506
4506
|
text?: string | undefined;
|
|
4507
|
-
image_url?: string | undefined;
|
|
4508
4507
|
verbatim?: boolean | undefined;
|
|
4509
4508
|
alt_text?: string | undefined;
|
|
4509
|
+
image_url?: string | undefined;
|
|
4510
4510
|
}>, "many">>;
|
|
4511
4511
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4512
4512
|
thread_ts?: string | undefined;
|
|
@@ -4548,21 +4548,21 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4548
4548
|
count: z.ZodNumber;
|
|
4549
4549
|
}, "strip", z.ZodTypeAny, {
|
|
4550
4550
|
name: string;
|
|
4551
|
-
count: number;
|
|
4552
4551
|
users: string[];
|
|
4552
|
+
count: number;
|
|
4553
4553
|
}, {
|
|
4554
4554
|
name: string;
|
|
4555
|
-
count: number;
|
|
4556
4555
|
users: string[];
|
|
4556
|
+
count: number;
|
|
4557
4557
|
}>, "many">>;
|
|
4558
4558
|
}, "strip", z.ZodTypeAny, {
|
|
4559
4559
|
type: string;
|
|
4560
|
-
user?: string | undefined;
|
|
4561
4560
|
text?: string | undefined;
|
|
4561
|
+
blocks?: unknown[] | undefined;
|
|
4562
|
+
user?: string | undefined;
|
|
4562
4563
|
ts?: string | undefined;
|
|
4563
4564
|
username?: string | undefined;
|
|
4564
4565
|
attachments?: unknown[] | undefined;
|
|
4565
|
-
blocks?: unknown[] | undefined;
|
|
4566
4566
|
thread_ts?: string | undefined;
|
|
4567
4567
|
bot_id?: string | undefined;
|
|
4568
4568
|
bot_profile?: {
|
|
@@ -4577,17 +4577,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4577
4577
|
subscribed?: boolean | undefined;
|
|
4578
4578
|
reactions?: {
|
|
4579
4579
|
name: string;
|
|
4580
|
-
count: number;
|
|
4581
4580
|
users: string[];
|
|
4581
|
+
count: number;
|
|
4582
4582
|
}[] | undefined;
|
|
4583
4583
|
}, {
|
|
4584
4584
|
type: string;
|
|
4585
|
-
user?: string | undefined;
|
|
4586
4585
|
text?: string | undefined;
|
|
4586
|
+
blocks?: unknown[] | undefined;
|
|
4587
|
+
user?: string | undefined;
|
|
4587
4588
|
ts?: string | undefined;
|
|
4588
4589
|
username?: string | undefined;
|
|
4589
4590
|
attachments?: unknown[] | undefined;
|
|
4590
|
-
blocks?: unknown[] | undefined;
|
|
4591
4591
|
thread_ts?: string | undefined;
|
|
4592
4592
|
bot_id?: string | undefined;
|
|
4593
4593
|
bot_profile?: {
|
|
@@ -4602,25 +4602,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4602
4602
|
subscribed?: boolean | undefined;
|
|
4603
4603
|
reactions?: {
|
|
4604
4604
|
name: string;
|
|
4605
|
-
count: number;
|
|
4606
4605
|
users: string[];
|
|
4606
|
+
count: number;
|
|
4607
4607
|
}[] | undefined;
|
|
4608
4608
|
}>>;
|
|
4609
4609
|
error: z.ZodString;
|
|
4610
4610
|
success: z.ZodBoolean;
|
|
4611
4611
|
}, "strip", z.ZodTypeAny, {
|
|
4612
|
-
operation: "send_message";
|
|
4613
|
-
ok: boolean;
|
|
4614
4612
|
error: string;
|
|
4615
4613
|
success: boolean;
|
|
4614
|
+
operation: "send_message";
|
|
4615
|
+
ok: boolean;
|
|
4616
4616
|
message?: {
|
|
4617
4617
|
type: string;
|
|
4618
|
-
user?: string | undefined;
|
|
4619
4618
|
text?: string | undefined;
|
|
4619
|
+
blocks?: unknown[] | undefined;
|
|
4620
|
+
user?: string | undefined;
|
|
4620
4621
|
ts?: string | undefined;
|
|
4621
4622
|
username?: string | undefined;
|
|
4622
4623
|
attachments?: unknown[] | undefined;
|
|
4623
|
-
blocks?: unknown[] | undefined;
|
|
4624
4624
|
thread_ts?: string | undefined;
|
|
4625
4625
|
bot_id?: string | undefined;
|
|
4626
4626
|
bot_profile?: {
|
|
@@ -4635,25 +4635,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4635
4635
|
subscribed?: boolean | undefined;
|
|
4636
4636
|
reactions?: {
|
|
4637
4637
|
name: string;
|
|
4638
|
-
count: number;
|
|
4639
4638
|
users: string[];
|
|
4639
|
+
count: number;
|
|
4640
4640
|
}[] | undefined;
|
|
4641
4641
|
} | undefined;
|
|
4642
4642
|
ts?: string | undefined;
|
|
4643
4643
|
channel?: string | undefined;
|
|
4644
4644
|
}, {
|
|
4645
|
-
operation: "send_message";
|
|
4646
|
-
ok: boolean;
|
|
4647
4645
|
error: string;
|
|
4648
4646
|
success: boolean;
|
|
4647
|
+
operation: "send_message";
|
|
4648
|
+
ok: boolean;
|
|
4649
4649
|
message?: {
|
|
4650
4650
|
type: string;
|
|
4651
|
-
user?: string | undefined;
|
|
4652
4651
|
text?: string | undefined;
|
|
4652
|
+
blocks?: unknown[] | undefined;
|
|
4653
|
+
user?: string | undefined;
|
|
4653
4654
|
ts?: string | undefined;
|
|
4654
4655
|
username?: string | undefined;
|
|
4655
4656
|
attachments?: unknown[] | undefined;
|
|
4656
|
-
blocks?: unknown[] | undefined;
|
|
4657
4657
|
thread_ts?: string | undefined;
|
|
4658
4658
|
bot_id?: string | undefined;
|
|
4659
4659
|
bot_profile?: {
|
|
@@ -4668,8 +4668,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4668
4668
|
subscribed?: boolean | undefined;
|
|
4669
4669
|
reactions?: {
|
|
4670
4670
|
name: string;
|
|
4671
|
-
count: number;
|
|
4672
4671
|
users: string[];
|
|
4672
|
+
count: number;
|
|
4673
4673
|
}[] | undefined;
|
|
4674
4674
|
} | undefined;
|
|
4675
4675
|
ts?: string | undefined;
|
|
@@ -4803,10 +4803,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4803
4803
|
error: z.ZodString;
|
|
4804
4804
|
success: z.ZodBoolean;
|
|
4805
4805
|
}, "strip", z.ZodTypeAny, {
|
|
4806
|
-
operation: "list_channels";
|
|
4807
|
-
ok: boolean;
|
|
4808
4806
|
error: string;
|
|
4809
4807
|
success: boolean;
|
|
4808
|
+
operation: "list_channels";
|
|
4809
|
+
ok: boolean;
|
|
4810
4810
|
response_metadata?: {
|
|
4811
4811
|
next_cursor: string;
|
|
4812
4812
|
} | undefined;
|
|
@@ -4845,10 +4845,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4845
4845
|
num_members?: number | undefined;
|
|
4846
4846
|
}[] | undefined;
|
|
4847
4847
|
}, {
|
|
4848
|
-
operation: "list_channels";
|
|
4849
|
-
ok: boolean;
|
|
4850
4848
|
error: string;
|
|
4851
4849
|
success: boolean;
|
|
4850
|
+
operation: "list_channels";
|
|
4851
|
+
ok: boolean;
|
|
4852
4852
|
response_metadata?: {
|
|
4853
4853
|
next_cursor: string;
|
|
4854
4854
|
} | undefined;
|
|
@@ -5008,10 +5008,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5008
5008
|
error: z.ZodString;
|
|
5009
5009
|
success: z.ZodBoolean;
|
|
5010
5010
|
}, "strip", z.ZodTypeAny, {
|
|
5011
|
-
operation: "get_channel_info";
|
|
5012
|
-
ok: boolean;
|
|
5013
5011
|
error: string;
|
|
5014
5012
|
success: boolean;
|
|
5013
|
+
operation: "get_channel_info";
|
|
5014
|
+
ok: boolean;
|
|
5015
5015
|
channel?: {
|
|
5016
5016
|
name: string;
|
|
5017
5017
|
id: string;
|
|
@@ -5047,10 +5047,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5047
5047
|
num_members?: number | undefined;
|
|
5048
5048
|
} | undefined;
|
|
5049
5049
|
}, {
|
|
5050
|
-
operation: "get_channel_info";
|
|
5051
|
-
ok: boolean;
|
|
5052
5050
|
error: string;
|
|
5053
5051
|
success: boolean;
|
|
5052
|
+
operation: "get_channel_info";
|
|
5053
|
+
ok: boolean;
|
|
5054
5054
|
channel?: {
|
|
5055
5055
|
name: string;
|
|
5056
5056
|
id: string;
|
|
@@ -5125,8 +5125,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5125
5125
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5126
5126
|
}, "strip", z.ZodTypeAny, {
|
|
5127
5127
|
title?: string | undefined;
|
|
5128
|
-
fields?: Record<string, unknown> | undefined;
|
|
5129
5128
|
email?: string | undefined;
|
|
5129
|
+
fields?: Record<string, unknown> | undefined;
|
|
5130
5130
|
real_name?: string | undefined;
|
|
5131
5131
|
phone?: string | undefined;
|
|
5132
5132
|
skype?: string | undefined;
|
|
@@ -5150,8 +5150,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5150
5150
|
image_1024?: string | undefined;
|
|
5151
5151
|
}, {
|
|
5152
5152
|
title?: string | undefined;
|
|
5153
|
-
fields?: Record<string, unknown> | undefined;
|
|
5154
5153
|
email?: string | undefined;
|
|
5154
|
+
fields?: Record<string, unknown> | undefined;
|
|
5155
5155
|
real_name?: string | undefined;
|
|
5156
5156
|
phone?: string | undefined;
|
|
5157
5157
|
skype?: string | undefined;
|
|
@@ -5186,12 +5186,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5186
5186
|
}, "strip", z.ZodTypeAny, {
|
|
5187
5187
|
name: string;
|
|
5188
5188
|
id: string;
|
|
5189
|
-
deleted?: boolean | undefined;
|
|
5190
5189
|
color?: string | undefined;
|
|
5190
|
+
team_id?: string | undefined;
|
|
5191
|
+
deleted?: boolean | undefined;
|
|
5192
|
+
real_name?: string | undefined;
|
|
5193
|
+
tz?: string | undefined;
|
|
5194
|
+
tz_label?: string | undefined;
|
|
5195
|
+
tz_offset?: number | undefined;
|
|
5191
5196
|
profile?: {
|
|
5192
5197
|
title?: string | undefined;
|
|
5193
|
-
fields?: Record<string, unknown> | undefined;
|
|
5194
5198
|
email?: string | undefined;
|
|
5199
|
+
fields?: Record<string, unknown> | undefined;
|
|
5195
5200
|
real_name?: string | undefined;
|
|
5196
5201
|
phone?: string | undefined;
|
|
5197
5202
|
skype?: string | undefined;
|
|
@@ -5214,11 +5219,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5214
5219
|
image_512?: string | undefined;
|
|
5215
5220
|
image_1024?: string | undefined;
|
|
5216
5221
|
} | undefined;
|
|
5217
|
-
team_id?: string | undefined;
|
|
5218
|
-
real_name?: string | undefined;
|
|
5219
|
-
tz?: string | undefined;
|
|
5220
|
-
tz_label?: string | undefined;
|
|
5221
|
-
tz_offset?: number | undefined;
|
|
5222
5222
|
is_admin?: boolean | undefined;
|
|
5223
5223
|
is_owner?: boolean | undefined;
|
|
5224
5224
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5231,12 +5231,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5231
5231
|
}, {
|
|
5232
5232
|
name: string;
|
|
5233
5233
|
id: string;
|
|
5234
|
-
deleted?: boolean | undefined;
|
|
5235
5234
|
color?: string | undefined;
|
|
5235
|
+
team_id?: string | undefined;
|
|
5236
|
+
deleted?: boolean | undefined;
|
|
5237
|
+
real_name?: string | undefined;
|
|
5238
|
+
tz?: string | undefined;
|
|
5239
|
+
tz_label?: string | undefined;
|
|
5240
|
+
tz_offset?: number | undefined;
|
|
5236
5241
|
profile?: {
|
|
5237
5242
|
title?: string | undefined;
|
|
5238
|
-
fields?: Record<string, unknown> | undefined;
|
|
5239
5243
|
email?: string | undefined;
|
|
5244
|
+
fields?: Record<string, unknown> | undefined;
|
|
5240
5245
|
real_name?: string | undefined;
|
|
5241
5246
|
phone?: string | undefined;
|
|
5242
5247
|
skype?: string | undefined;
|
|
@@ -5259,11 +5264,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5259
5264
|
image_512?: string | undefined;
|
|
5260
5265
|
image_1024?: string | undefined;
|
|
5261
5266
|
} | undefined;
|
|
5262
|
-
team_id?: string | undefined;
|
|
5263
|
-
real_name?: string | undefined;
|
|
5264
|
-
tz?: string | undefined;
|
|
5265
|
-
tz_label?: string | undefined;
|
|
5266
|
-
tz_offset?: number | undefined;
|
|
5267
5267
|
is_admin?: boolean | undefined;
|
|
5268
5268
|
is_owner?: boolean | undefined;
|
|
5269
5269
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5277,19 +5277,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5277
5277
|
error: z.ZodString;
|
|
5278
5278
|
success: z.ZodBoolean;
|
|
5279
5279
|
}, "strip", z.ZodTypeAny, {
|
|
5280
|
-
operation: "get_user_info";
|
|
5281
|
-
ok: boolean;
|
|
5282
5280
|
error: string;
|
|
5283
5281
|
success: boolean;
|
|
5282
|
+
operation: "get_user_info";
|
|
5283
|
+
ok: boolean;
|
|
5284
5284
|
user?: {
|
|
5285
5285
|
name: string;
|
|
5286
5286
|
id: string;
|
|
5287
|
-
deleted?: boolean | undefined;
|
|
5288
5287
|
color?: string | undefined;
|
|
5288
|
+
team_id?: string | undefined;
|
|
5289
|
+
deleted?: boolean | undefined;
|
|
5290
|
+
real_name?: string | undefined;
|
|
5291
|
+
tz?: string | undefined;
|
|
5292
|
+
tz_label?: string | undefined;
|
|
5293
|
+
tz_offset?: number | undefined;
|
|
5289
5294
|
profile?: {
|
|
5290
5295
|
title?: string | undefined;
|
|
5291
|
-
fields?: Record<string, unknown> | undefined;
|
|
5292
5296
|
email?: string | undefined;
|
|
5297
|
+
fields?: Record<string, unknown> | undefined;
|
|
5293
5298
|
real_name?: string | undefined;
|
|
5294
5299
|
phone?: string | undefined;
|
|
5295
5300
|
skype?: string | undefined;
|
|
@@ -5312,11 +5317,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5312
5317
|
image_512?: string | undefined;
|
|
5313
5318
|
image_1024?: string | undefined;
|
|
5314
5319
|
} | undefined;
|
|
5315
|
-
team_id?: string | undefined;
|
|
5316
|
-
real_name?: string | undefined;
|
|
5317
|
-
tz?: string | undefined;
|
|
5318
|
-
tz_label?: string | undefined;
|
|
5319
|
-
tz_offset?: number | undefined;
|
|
5320
5320
|
is_admin?: boolean | undefined;
|
|
5321
5321
|
is_owner?: boolean | undefined;
|
|
5322
5322
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5328,19 +5328,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5328
5328
|
has_2fa?: boolean | undefined;
|
|
5329
5329
|
} | undefined;
|
|
5330
5330
|
}, {
|
|
5331
|
-
operation: "get_user_info";
|
|
5332
|
-
ok: boolean;
|
|
5333
5331
|
error: string;
|
|
5334
5332
|
success: boolean;
|
|
5333
|
+
operation: "get_user_info";
|
|
5334
|
+
ok: boolean;
|
|
5335
5335
|
user?: {
|
|
5336
5336
|
name: string;
|
|
5337
5337
|
id: string;
|
|
5338
|
-
deleted?: boolean | undefined;
|
|
5339
5338
|
color?: string | undefined;
|
|
5339
|
+
team_id?: string | undefined;
|
|
5340
|
+
deleted?: boolean | undefined;
|
|
5341
|
+
real_name?: string | undefined;
|
|
5342
|
+
tz?: string | undefined;
|
|
5343
|
+
tz_label?: string | undefined;
|
|
5344
|
+
tz_offset?: number | undefined;
|
|
5340
5345
|
profile?: {
|
|
5341
5346
|
title?: string | undefined;
|
|
5342
|
-
fields?: Record<string, unknown> | undefined;
|
|
5343
5347
|
email?: string | undefined;
|
|
5348
|
+
fields?: Record<string, unknown> | undefined;
|
|
5344
5349
|
real_name?: string | undefined;
|
|
5345
5350
|
phone?: string | undefined;
|
|
5346
5351
|
skype?: string | undefined;
|
|
@@ -5363,11 +5368,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5363
5368
|
image_512?: string | undefined;
|
|
5364
5369
|
image_1024?: string | undefined;
|
|
5365
5370
|
} | undefined;
|
|
5366
|
-
team_id?: string | undefined;
|
|
5367
|
-
real_name?: string | undefined;
|
|
5368
|
-
tz?: string | undefined;
|
|
5369
|
-
tz_label?: string | undefined;
|
|
5370
|
-
tz_offset?: number | undefined;
|
|
5371
5371
|
is_admin?: boolean | undefined;
|
|
5372
5372
|
is_owner?: boolean | undefined;
|
|
5373
5373
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5418,8 +5418,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5418
5418
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5419
5419
|
}, "strip", z.ZodTypeAny, {
|
|
5420
5420
|
title?: string | undefined;
|
|
5421
|
-
fields?: Record<string, unknown> | undefined;
|
|
5422
5421
|
email?: string | undefined;
|
|
5422
|
+
fields?: Record<string, unknown> | undefined;
|
|
5423
5423
|
real_name?: string | undefined;
|
|
5424
5424
|
phone?: string | undefined;
|
|
5425
5425
|
skype?: string | undefined;
|
|
@@ -5443,8 +5443,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5443
5443
|
image_1024?: string | undefined;
|
|
5444
5444
|
}, {
|
|
5445
5445
|
title?: string | undefined;
|
|
5446
|
-
fields?: Record<string, unknown> | undefined;
|
|
5447
5446
|
email?: string | undefined;
|
|
5447
|
+
fields?: Record<string, unknown> | undefined;
|
|
5448
5448
|
real_name?: string | undefined;
|
|
5449
5449
|
phone?: string | undefined;
|
|
5450
5450
|
skype?: string | undefined;
|
|
@@ -5479,12 +5479,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5479
5479
|
}, "strip", z.ZodTypeAny, {
|
|
5480
5480
|
name: string;
|
|
5481
5481
|
id: string;
|
|
5482
|
-
deleted?: boolean | undefined;
|
|
5483
5482
|
color?: string | undefined;
|
|
5483
|
+
team_id?: string | undefined;
|
|
5484
|
+
deleted?: boolean | undefined;
|
|
5485
|
+
real_name?: string | undefined;
|
|
5486
|
+
tz?: string | undefined;
|
|
5487
|
+
tz_label?: string | undefined;
|
|
5488
|
+
tz_offset?: number | undefined;
|
|
5484
5489
|
profile?: {
|
|
5485
5490
|
title?: string | undefined;
|
|
5486
|
-
fields?: Record<string, unknown> | undefined;
|
|
5487
5491
|
email?: string | undefined;
|
|
5492
|
+
fields?: Record<string, unknown> | undefined;
|
|
5488
5493
|
real_name?: string | undefined;
|
|
5489
5494
|
phone?: string | undefined;
|
|
5490
5495
|
skype?: string | undefined;
|
|
@@ -5507,11 +5512,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5507
5512
|
image_512?: string | undefined;
|
|
5508
5513
|
image_1024?: string | undefined;
|
|
5509
5514
|
} | undefined;
|
|
5510
|
-
team_id?: string | undefined;
|
|
5511
|
-
real_name?: string | undefined;
|
|
5512
|
-
tz?: string | undefined;
|
|
5513
|
-
tz_label?: string | undefined;
|
|
5514
|
-
tz_offset?: number | undefined;
|
|
5515
5515
|
is_admin?: boolean | undefined;
|
|
5516
5516
|
is_owner?: boolean | undefined;
|
|
5517
5517
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5524,12 +5524,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5524
5524
|
}, {
|
|
5525
5525
|
name: string;
|
|
5526
5526
|
id: string;
|
|
5527
|
-
deleted?: boolean | undefined;
|
|
5528
5527
|
color?: string | undefined;
|
|
5528
|
+
team_id?: string | undefined;
|
|
5529
|
+
deleted?: boolean | undefined;
|
|
5530
|
+
real_name?: string | undefined;
|
|
5531
|
+
tz?: string | undefined;
|
|
5532
|
+
tz_label?: string | undefined;
|
|
5533
|
+
tz_offset?: number | undefined;
|
|
5529
5534
|
profile?: {
|
|
5530
5535
|
title?: string | undefined;
|
|
5531
|
-
fields?: Record<string, unknown> | undefined;
|
|
5532
5536
|
email?: string | undefined;
|
|
5537
|
+
fields?: Record<string, unknown> | undefined;
|
|
5533
5538
|
real_name?: string | undefined;
|
|
5534
5539
|
phone?: string | undefined;
|
|
5535
5540
|
skype?: string | undefined;
|
|
@@ -5552,11 +5557,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5552
5557
|
image_512?: string | undefined;
|
|
5553
5558
|
image_1024?: string | undefined;
|
|
5554
5559
|
} | undefined;
|
|
5555
|
-
team_id?: string | undefined;
|
|
5556
|
-
real_name?: string | undefined;
|
|
5557
|
-
tz?: string | undefined;
|
|
5558
|
-
tz_label?: string | undefined;
|
|
5559
|
-
tz_offset?: number | undefined;
|
|
5560
5560
|
is_admin?: boolean | undefined;
|
|
5561
5561
|
is_owner?: boolean | undefined;
|
|
5562
5562
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5577,22 +5577,27 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5577
5577
|
error: z.ZodString;
|
|
5578
5578
|
success: z.ZodBoolean;
|
|
5579
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5580
|
-
operation: "list_users";
|
|
5581
|
-
ok: boolean;
|
|
5582
5580
|
error: string;
|
|
5583
5581
|
success: boolean;
|
|
5582
|
+
operation: "list_users";
|
|
5583
|
+
ok: boolean;
|
|
5584
5584
|
response_metadata?: {
|
|
5585
5585
|
next_cursor: string;
|
|
5586
5586
|
} | undefined;
|
|
5587
5587
|
members?: {
|
|
5588
5588
|
name: string;
|
|
5589
5589
|
id: string;
|
|
5590
|
-
deleted?: boolean | undefined;
|
|
5591
5590
|
color?: string | undefined;
|
|
5591
|
+
team_id?: string | undefined;
|
|
5592
|
+
deleted?: boolean | undefined;
|
|
5593
|
+
real_name?: string | undefined;
|
|
5594
|
+
tz?: string | undefined;
|
|
5595
|
+
tz_label?: string | undefined;
|
|
5596
|
+
tz_offset?: number | undefined;
|
|
5592
5597
|
profile?: {
|
|
5593
5598
|
title?: string | undefined;
|
|
5594
|
-
fields?: Record<string, unknown> | undefined;
|
|
5595
5599
|
email?: string | undefined;
|
|
5600
|
+
fields?: Record<string, unknown> | undefined;
|
|
5596
5601
|
real_name?: string | undefined;
|
|
5597
5602
|
phone?: string | undefined;
|
|
5598
5603
|
skype?: string | undefined;
|
|
@@ -5615,11 +5620,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5615
5620
|
image_512?: string | undefined;
|
|
5616
5621
|
image_1024?: string | undefined;
|
|
5617
5622
|
} | undefined;
|
|
5618
|
-
team_id?: string | undefined;
|
|
5619
|
-
real_name?: string | undefined;
|
|
5620
|
-
tz?: string | undefined;
|
|
5621
|
-
tz_label?: string | undefined;
|
|
5622
|
-
tz_offset?: number | undefined;
|
|
5623
5623
|
is_admin?: boolean | undefined;
|
|
5624
5624
|
is_owner?: boolean | undefined;
|
|
5625
5625
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5631,22 +5631,27 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5631
5631
|
has_2fa?: boolean | undefined;
|
|
5632
5632
|
}[] | undefined;
|
|
5633
5633
|
}, {
|
|
5634
|
-
operation: "list_users";
|
|
5635
|
-
ok: boolean;
|
|
5636
5634
|
error: string;
|
|
5637
5635
|
success: boolean;
|
|
5636
|
+
operation: "list_users";
|
|
5637
|
+
ok: boolean;
|
|
5638
5638
|
response_metadata?: {
|
|
5639
5639
|
next_cursor: string;
|
|
5640
5640
|
} | undefined;
|
|
5641
5641
|
members?: {
|
|
5642
5642
|
name: string;
|
|
5643
5643
|
id: string;
|
|
5644
|
-
deleted?: boolean | undefined;
|
|
5645
5644
|
color?: string | undefined;
|
|
5645
|
+
team_id?: string | undefined;
|
|
5646
|
+
deleted?: boolean | undefined;
|
|
5647
|
+
real_name?: string | undefined;
|
|
5648
|
+
tz?: string | undefined;
|
|
5649
|
+
tz_label?: string | undefined;
|
|
5650
|
+
tz_offset?: number | undefined;
|
|
5646
5651
|
profile?: {
|
|
5647
5652
|
title?: string | undefined;
|
|
5648
|
-
fields?: Record<string, unknown> | undefined;
|
|
5649
5653
|
email?: string | undefined;
|
|
5654
|
+
fields?: Record<string, unknown> | undefined;
|
|
5650
5655
|
real_name?: string | undefined;
|
|
5651
5656
|
phone?: string | undefined;
|
|
5652
5657
|
skype?: string | undefined;
|
|
@@ -5669,11 +5674,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5669
5674
|
image_512?: string | undefined;
|
|
5670
5675
|
image_1024?: string | undefined;
|
|
5671
5676
|
} | undefined;
|
|
5672
|
-
team_id?: string | undefined;
|
|
5673
|
-
real_name?: string | undefined;
|
|
5674
|
-
tz?: string | undefined;
|
|
5675
|
-
tz_label?: string | undefined;
|
|
5676
|
-
tz_offset?: number | undefined;
|
|
5677
5677
|
is_admin?: boolean | undefined;
|
|
5678
5678
|
is_owner?: boolean | undefined;
|
|
5679
5679
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5717,21 +5717,21 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5717
5717
|
count: z.ZodNumber;
|
|
5718
5718
|
}, "strip", z.ZodTypeAny, {
|
|
5719
5719
|
name: string;
|
|
5720
|
-
count: number;
|
|
5721
5720
|
users: string[];
|
|
5721
|
+
count: number;
|
|
5722
5722
|
}, {
|
|
5723
5723
|
name: string;
|
|
5724
|
-
count: number;
|
|
5725
5724
|
users: string[];
|
|
5725
|
+
count: number;
|
|
5726
5726
|
}>, "many">>;
|
|
5727
5727
|
}, "strip", z.ZodTypeAny, {
|
|
5728
5728
|
type: string;
|
|
5729
|
-
user?: string | undefined;
|
|
5730
5729
|
text?: string | undefined;
|
|
5730
|
+
blocks?: unknown[] | undefined;
|
|
5731
|
+
user?: string | undefined;
|
|
5731
5732
|
ts?: string | undefined;
|
|
5732
5733
|
username?: string | undefined;
|
|
5733
5734
|
attachments?: unknown[] | undefined;
|
|
5734
|
-
blocks?: unknown[] | undefined;
|
|
5735
5735
|
thread_ts?: string | undefined;
|
|
5736
5736
|
bot_id?: string | undefined;
|
|
5737
5737
|
bot_profile?: {
|
|
@@ -5746,17 +5746,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5746
5746
|
subscribed?: boolean | undefined;
|
|
5747
5747
|
reactions?: {
|
|
5748
5748
|
name: string;
|
|
5749
|
-
count: number;
|
|
5750
5749
|
users: string[];
|
|
5750
|
+
count: number;
|
|
5751
5751
|
}[] | undefined;
|
|
5752
5752
|
}, {
|
|
5753
5753
|
type: string;
|
|
5754
|
-
user?: string | undefined;
|
|
5755
5754
|
text?: string | undefined;
|
|
5755
|
+
blocks?: unknown[] | undefined;
|
|
5756
|
+
user?: string | undefined;
|
|
5756
5757
|
ts?: string | undefined;
|
|
5757
5758
|
username?: string | undefined;
|
|
5758
5759
|
attachments?: unknown[] | undefined;
|
|
5759
|
-
blocks?: unknown[] | undefined;
|
|
5760
5760
|
thread_ts?: string | undefined;
|
|
5761
5761
|
bot_id?: string | undefined;
|
|
5762
5762
|
bot_profile?: {
|
|
@@ -5771,8 +5771,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5771
5771
|
subscribed?: boolean | undefined;
|
|
5772
5772
|
reactions?: {
|
|
5773
5773
|
name: string;
|
|
5774
|
-
count: number;
|
|
5775
5774
|
users: string[];
|
|
5775
|
+
count: number;
|
|
5776
5776
|
}[] | undefined;
|
|
5777
5777
|
}>, "many">>;
|
|
5778
5778
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5786,21 +5786,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5786
5786
|
error: z.ZodString;
|
|
5787
5787
|
success: z.ZodBoolean;
|
|
5788
5788
|
}, "strip", z.ZodTypeAny, {
|
|
5789
|
-
operation: "get_conversation_history";
|
|
5790
|
-
ok: boolean;
|
|
5791
5789
|
error: string;
|
|
5792
5790
|
success: boolean;
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
} | undefined;
|
|
5791
|
+
operation: "get_conversation_history";
|
|
5792
|
+
ok: boolean;
|
|
5796
5793
|
messages?: {
|
|
5797
5794
|
type: string;
|
|
5798
|
-
user?: string | undefined;
|
|
5799
5795
|
text?: string | undefined;
|
|
5796
|
+
blocks?: unknown[] | undefined;
|
|
5797
|
+
user?: string | undefined;
|
|
5800
5798
|
ts?: string | undefined;
|
|
5801
5799
|
username?: string | undefined;
|
|
5802
5800
|
attachments?: unknown[] | undefined;
|
|
5803
|
-
blocks?: unknown[] | undefined;
|
|
5804
5801
|
thread_ts?: string | undefined;
|
|
5805
5802
|
bot_id?: string | undefined;
|
|
5806
5803
|
bot_profile?: {
|
|
@@ -5815,27 +5812,27 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5815
5812
|
subscribed?: boolean | undefined;
|
|
5816
5813
|
reactions?: {
|
|
5817
5814
|
name: string;
|
|
5818
|
-
count: number;
|
|
5819
5815
|
users: string[];
|
|
5816
|
+
count: number;
|
|
5820
5817
|
}[] | undefined;
|
|
5821
5818
|
}[] | undefined;
|
|
5819
|
+
response_metadata?: {
|
|
5820
|
+
next_cursor: string;
|
|
5821
|
+
} | undefined;
|
|
5822
5822
|
has_more?: boolean | undefined;
|
|
5823
5823
|
}, {
|
|
5824
|
-
operation: "get_conversation_history";
|
|
5825
|
-
ok: boolean;
|
|
5826
5824
|
error: string;
|
|
5827
5825
|
success: boolean;
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
} | undefined;
|
|
5826
|
+
operation: "get_conversation_history";
|
|
5827
|
+
ok: boolean;
|
|
5831
5828
|
messages?: {
|
|
5832
5829
|
type: string;
|
|
5833
|
-
user?: string | undefined;
|
|
5834
5830
|
text?: string | undefined;
|
|
5831
|
+
blocks?: unknown[] | undefined;
|
|
5832
|
+
user?: string | undefined;
|
|
5835
5833
|
ts?: string | undefined;
|
|
5836
5834
|
username?: string | undefined;
|
|
5837
5835
|
attachments?: unknown[] | undefined;
|
|
5838
|
-
blocks?: unknown[] | undefined;
|
|
5839
5836
|
thread_ts?: string | undefined;
|
|
5840
5837
|
bot_id?: string | undefined;
|
|
5841
5838
|
bot_profile?: {
|
|
@@ -5850,10 +5847,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5850
5847
|
subscribed?: boolean | undefined;
|
|
5851
5848
|
reactions?: {
|
|
5852
5849
|
name: string;
|
|
5853
|
-
count: number;
|
|
5854
5850
|
users: string[];
|
|
5851
|
+
count: number;
|
|
5855
5852
|
}[] | undefined;
|
|
5856
5853
|
}[] | undefined;
|
|
5854
|
+
response_metadata?: {
|
|
5855
|
+
next_cursor: string;
|
|
5856
|
+
} | undefined;
|
|
5857
5857
|
has_more?: boolean | undefined;
|
|
5858
5858
|
}>, z.ZodObject<{
|
|
5859
5859
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -5888,21 +5888,21 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5888
5888
|
count: z.ZodNumber;
|
|
5889
5889
|
}, "strip", z.ZodTypeAny, {
|
|
5890
5890
|
name: string;
|
|
5891
|
-
count: number;
|
|
5892
5891
|
users: string[];
|
|
5892
|
+
count: number;
|
|
5893
5893
|
}, {
|
|
5894
5894
|
name: string;
|
|
5895
|
-
count: number;
|
|
5896
5895
|
users: string[];
|
|
5896
|
+
count: number;
|
|
5897
5897
|
}>, "many">>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
5899
|
type: string;
|
|
5900
|
-
user?: string | undefined;
|
|
5901
5900
|
text?: string | undefined;
|
|
5901
|
+
blocks?: unknown[] | undefined;
|
|
5902
|
+
user?: string | undefined;
|
|
5902
5903
|
ts?: string | undefined;
|
|
5903
5904
|
username?: string | undefined;
|
|
5904
5905
|
attachments?: unknown[] | undefined;
|
|
5905
|
-
blocks?: unknown[] | undefined;
|
|
5906
5906
|
thread_ts?: string | undefined;
|
|
5907
5907
|
bot_id?: string | undefined;
|
|
5908
5908
|
bot_profile?: {
|
|
@@ -5917,17 +5917,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5917
5917
|
subscribed?: boolean | undefined;
|
|
5918
5918
|
reactions?: {
|
|
5919
5919
|
name: string;
|
|
5920
|
-
count: number;
|
|
5921
5920
|
users: string[];
|
|
5921
|
+
count: number;
|
|
5922
5922
|
}[] | undefined;
|
|
5923
5923
|
}, {
|
|
5924
5924
|
type: string;
|
|
5925
|
-
user?: string | undefined;
|
|
5926
5925
|
text?: string | undefined;
|
|
5926
|
+
blocks?: unknown[] | undefined;
|
|
5927
|
+
user?: string | undefined;
|
|
5927
5928
|
ts?: string | undefined;
|
|
5928
5929
|
username?: string | undefined;
|
|
5929
5930
|
attachments?: unknown[] | undefined;
|
|
5930
|
-
blocks?: unknown[] | undefined;
|
|
5931
5931
|
thread_ts?: string | undefined;
|
|
5932
5932
|
bot_id?: string | undefined;
|
|
5933
5933
|
bot_profile?: {
|
|
@@ -5942,8 +5942,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5942
5942
|
subscribed?: boolean | undefined;
|
|
5943
5943
|
reactions?: {
|
|
5944
5944
|
name: string;
|
|
5945
|
-
count: number;
|
|
5946
5945
|
users: string[];
|
|
5946
|
+
count: number;
|
|
5947
5947
|
}[] | undefined;
|
|
5948
5948
|
}>, "many">>;
|
|
5949
5949
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5957,21 +5957,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5957
5957
|
error: z.ZodString;
|
|
5958
5958
|
success: z.ZodBoolean;
|
|
5959
5959
|
}, "strip", z.ZodTypeAny, {
|
|
5960
|
-
operation: "get_thread_replies";
|
|
5961
|
-
ok: boolean;
|
|
5962
5960
|
error: string;
|
|
5963
5961
|
success: boolean;
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
} | undefined;
|
|
5962
|
+
operation: "get_thread_replies";
|
|
5963
|
+
ok: boolean;
|
|
5967
5964
|
messages?: {
|
|
5968
5965
|
type: string;
|
|
5969
|
-
user?: string | undefined;
|
|
5970
5966
|
text?: string | undefined;
|
|
5967
|
+
blocks?: unknown[] | undefined;
|
|
5968
|
+
user?: string | undefined;
|
|
5971
5969
|
ts?: string | undefined;
|
|
5972
5970
|
username?: string | undefined;
|
|
5973
5971
|
attachments?: unknown[] | undefined;
|
|
5974
|
-
blocks?: unknown[] | undefined;
|
|
5975
5972
|
thread_ts?: string | undefined;
|
|
5976
5973
|
bot_id?: string | undefined;
|
|
5977
5974
|
bot_profile?: {
|
|
@@ -5986,27 +5983,27 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5986
5983
|
subscribed?: boolean | undefined;
|
|
5987
5984
|
reactions?: {
|
|
5988
5985
|
name: string;
|
|
5989
|
-
count: number;
|
|
5990
5986
|
users: string[];
|
|
5987
|
+
count: number;
|
|
5991
5988
|
}[] | undefined;
|
|
5992
5989
|
}[] | undefined;
|
|
5990
|
+
response_metadata?: {
|
|
5991
|
+
next_cursor: string;
|
|
5992
|
+
} | undefined;
|
|
5993
5993
|
has_more?: boolean | undefined;
|
|
5994
5994
|
}, {
|
|
5995
|
-
operation: "get_thread_replies";
|
|
5996
|
-
ok: boolean;
|
|
5997
5995
|
error: string;
|
|
5998
5996
|
success: boolean;
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
} | undefined;
|
|
5997
|
+
operation: "get_thread_replies";
|
|
5998
|
+
ok: boolean;
|
|
6002
5999
|
messages?: {
|
|
6003
6000
|
type: string;
|
|
6004
|
-
user?: string | undefined;
|
|
6005
6001
|
text?: string | undefined;
|
|
6002
|
+
blocks?: unknown[] | undefined;
|
|
6003
|
+
user?: string | undefined;
|
|
6006
6004
|
ts?: string | undefined;
|
|
6007
6005
|
username?: string | undefined;
|
|
6008
6006
|
attachments?: unknown[] | undefined;
|
|
6009
|
-
blocks?: unknown[] | undefined;
|
|
6010
6007
|
thread_ts?: string | undefined;
|
|
6011
6008
|
bot_id?: string | undefined;
|
|
6012
6009
|
bot_profile?: {
|
|
@@ -6021,10 +6018,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6021
6018
|
subscribed?: boolean | undefined;
|
|
6022
6019
|
reactions?: {
|
|
6023
6020
|
name: string;
|
|
6024
|
-
count: number;
|
|
6025
6021
|
users: string[];
|
|
6022
|
+
count: number;
|
|
6026
6023
|
}[] | undefined;
|
|
6027
6024
|
}[] | undefined;
|
|
6025
|
+
response_metadata?: {
|
|
6026
|
+
next_cursor: string;
|
|
6027
|
+
} | undefined;
|
|
6028
6028
|
has_more?: boolean | undefined;
|
|
6029
6029
|
}>, z.ZodObject<{
|
|
6030
6030
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -6062,21 +6062,21 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6062
6062
|
count: z.ZodNumber;
|
|
6063
6063
|
}, "strip", z.ZodTypeAny, {
|
|
6064
6064
|
name: string;
|
|
6065
|
-
count: number;
|
|
6066
6065
|
users: string[];
|
|
6066
|
+
count: number;
|
|
6067
6067
|
}, {
|
|
6068
6068
|
name: string;
|
|
6069
|
-
count: number;
|
|
6070
6069
|
users: string[];
|
|
6070
|
+
count: number;
|
|
6071
6071
|
}>, "many">>;
|
|
6072
6072
|
}, "strip", z.ZodTypeAny, {
|
|
6073
6073
|
type: string;
|
|
6074
|
-
user?: string | undefined;
|
|
6075
6074
|
text?: string | undefined;
|
|
6075
|
+
blocks?: unknown[] | undefined;
|
|
6076
|
+
user?: string | undefined;
|
|
6076
6077
|
ts?: string | undefined;
|
|
6077
6078
|
username?: string | undefined;
|
|
6078
6079
|
attachments?: unknown[] | undefined;
|
|
6079
|
-
blocks?: unknown[] | undefined;
|
|
6080
6080
|
thread_ts?: string | undefined;
|
|
6081
6081
|
bot_id?: string | undefined;
|
|
6082
6082
|
bot_profile?: {
|
|
@@ -6091,17 +6091,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6091
6091
|
subscribed?: boolean | undefined;
|
|
6092
6092
|
reactions?: {
|
|
6093
6093
|
name: string;
|
|
6094
|
-
count: number;
|
|
6095
6094
|
users: string[];
|
|
6095
|
+
count: number;
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
}, {
|
|
6098
6098
|
type: string;
|
|
6099
|
-
user?: string | undefined;
|
|
6100
6099
|
text?: string | undefined;
|
|
6100
|
+
blocks?: unknown[] | undefined;
|
|
6101
|
+
user?: string | undefined;
|
|
6101
6102
|
ts?: string | undefined;
|
|
6102
6103
|
username?: string | undefined;
|
|
6103
6104
|
attachments?: unknown[] | undefined;
|
|
6104
|
-
blocks?: unknown[] | undefined;
|
|
6105
6105
|
thread_ts?: string | undefined;
|
|
6106
6106
|
bot_id?: string | undefined;
|
|
6107
6107
|
bot_profile?: {
|
|
@@ -6116,25 +6116,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6116
6116
|
subscribed?: boolean | undefined;
|
|
6117
6117
|
reactions?: {
|
|
6118
6118
|
name: string;
|
|
6119
|
-
count: number;
|
|
6120
6119
|
users: string[];
|
|
6120
|
+
count: number;
|
|
6121
6121
|
}[] | undefined;
|
|
6122
6122
|
}>>;
|
|
6123
6123
|
error: z.ZodString;
|
|
6124
6124
|
success: z.ZodBoolean;
|
|
6125
6125
|
}, "strip", z.ZodTypeAny, {
|
|
6126
|
-
operation: "update_message";
|
|
6127
|
-
ok: boolean;
|
|
6128
6126
|
error: string;
|
|
6129
6127
|
success: boolean;
|
|
6128
|
+
operation: "update_message";
|
|
6129
|
+
ok: boolean;
|
|
6130
6130
|
message?: {
|
|
6131
6131
|
type: string;
|
|
6132
|
-
user?: string | undefined;
|
|
6133
6132
|
text?: string | undefined;
|
|
6133
|
+
blocks?: unknown[] | undefined;
|
|
6134
|
+
user?: string | undefined;
|
|
6134
6135
|
ts?: string | undefined;
|
|
6135
6136
|
username?: string | undefined;
|
|
6136
6137
|
attachments?: unknown[] | undefined;
|
|
6137
|
-
blocks?: unknown[] | undefined;
|
|
6138
6138
|
thread_ts?: string | undefined;
|
|
6139
6139
|
bot_id?: string | undefined;
|
|
6140
6140
|
bot_profile?: {
|
|
@@ -6149,26 +6149,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6149
6149
|
subscribed?: boolean | undefined;
|
|
6150
6150
|
reactions?: {
|
|
6151
6151
|
name: string;
|
|
6152
|
-
count: number;
|
|
6153
6152
|
users: string[];
|
|
6153
|
+
count: number;
|
|
6154
6154
|
}[] | undefined;
|
|
6155
6155
|
} | undefined;
|
|
6156
6156
|
text?: string | undefined;
|
|
6157
6157
|
ts?: string | undefined;
|
|
6158
6158
|
channel?: string | undefined;
|
|
6159
6159
|
}, {
|
|
6160
|
-
operation: "update_message";
|
|
6161
|
-
ok: boolean;
|
|
6162
6160
|
error: string;
|
|
6163
6161
|
success: boolean;
|
|
6162
|
+
operation: "update_message";
|
|
6163
|
+
ok: boolean;
|
|
6164
6164
|
message?: {
|
|
6165
6165
|
type: string;
|
|
6166
|
-
user?: string | undefined;
|
|
6167
6166
|
text?: string | undefined;
|
|
6167
|
+
blocks?: unknown[] | undefined;
|
|
6168
|
+
user?: string | undefined;
|
|
6168
6169
|
ts?: string | undefined;
|
|
6169
6170
|
username?: string | undefined;
|
|
6170
6171
|
attachments?: unknown[] | undefined;
|
|
6171
|
-
blocks?: unknown[] | undefined;
|
|
6172
6172
|
thread_ts?: string | undefined;
|
|
6173
6173
|
bot_id?: string | undefined;
|
|
6174
6174
|
bot_profile?: {
|
|
@@ -6183,8 +6183,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6183
6183
|
subscribed?: boolean | undefined;
|
|
6184
6184
|
reactions?: {
|
|
6185
6185
|
name: string;
|
|
6186
|
-
count: number;
|
|
6187
6186
|
users: string[];
|
|
6187
|
+
count: number;
|
|
6188
6188
|
}[] | undefined;
|
|
6189
6189
|
} | undefined;
|
|
6190
6190
|
text?: string | undefined;
|
|
@@ -6198,17 +6198,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6198
6198
|
error: z.ZodString;
|
|
6199
6199
|
success: z.ZodBoolean;
|
|
6200
6200
|
}, "strip", z.ZodTypeAny, {
|
|
6201
|
-
operation: "delete_message";
|
|
6202
|
-
ok: boolean;
|
|
6203
6201
|
error: string;
|
|
6204
6202
|
success: boolean;
|
|
6203
|
+
operation: "delete_message";
|
|
6204
|
+
ok: boolean;
|
|
6205
6205
|
ts?: string | undefined;
|
|
6206
6206
|
channel?: string | undefined;
|
|
6207
6207
|
}, {
|
|
6208
|
-
operation: "delete_message";
|
|
6209
|
-
ok: boolean;
|
|
6210
6208
|
error: string;
|
|
6211
6209
|
success: boolean;
|
|
6210
|
+
operation: "delete_message";
|
|
6211
|
+
ok: boolean;
|
|
6212
6212
|
ts?: string | undefined;
|
|
6213
6213
|
channel?: string | undefined;
|
|
6214
6214
|
}>, z.ZodObject<{
|
|
@@ -6217,30 +6217,30 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6217
6217
|
error: z.ZodString;
|
|
6218
6218
|
success: z.ZodBoolean;
|
|
6219
6219
|
}, "strip", z.ZodTypeAny, {
|
|
6220
|
-
operation: "add_reaction";
|
|
6221
|
-
ok: boolean;
|
|
6222
6220
|
error: string;
|
|
6223
6221
|
success: boolean;
|
|
6224
|
-
}, {
|
|
6225
6222
|
operation: "add_reaction";
|
|
6226
6223
|
ok: boolean;
|
|
6224
|
+
}, {
|
|
6227
6225
|
error: string;
|
|
6228
6226
|
success: boolean;
|
|
6227
|
+
operation: "add_reaction";
|
|
6228
|
+
ok: boolean;
|
|
6229
6229
|
}>, z.ZodObject<{
|
|
6230
6230
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
6231
6231
|
ok: z.ZodBoolean;
|
|
6232
6232
|
error: z.ZodString;
|
|
6233
6233
|
success: z.ZodBoolean;
|
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
|
6235
|
-
operation: "remove_reaction";
|
|
6236
|
-
ok: boolean;
|
|
6237
6235
|
error: string;
|
|
6238
6236
|
success: boolean;
|
|
6239
|
-
}, {
|
|
6240
6237
|
operation: "remove_reaction";
|
|
6241
6238
|
ok: boolean;
|
|
6239
|
+
}, {
|
|
6242
6240
|
error: string;
|
|
6243
6241
|
success: boolean;
|
|
6242
|
+
operation: "remove_reaction";
|
|
6243
|
+
ok: boolean;
|
|
6244
6244
|
}>, z.ZodObject<{
|
|
6245
6245
|
operation: z.ZodLiteral<"join_channel">;
|
|
6246
6246
|
ok: z.ZodBoolean;
|
|
@@ -6364,10 +6364,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6364
6364
|
error: z.ZodString;
|
|
6365
6365
|
success: z.ZodBoolean;
|
|
6366
6366
|
}, "strip", z.ZodTypeAny, {
|
|
6367
|
-
operation: "join_channel";
|
|
6368
|
-
ok: boolean;
|
|
6369
6367
|
error: string;
|
|
6370
6368
|
success: boolean;
|
|
6369
|
+
operation: "join_channel";
|
|
6370
|
+
ok: boolean;
|
|
6371
6371
|
channel?: {
|
|
6372
6372
|
name: string;
|
|
6373
6373
|
id: string;
|
|
@@ -6404,10 +6404,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6404
6404
|
} | undefined;
|
|
6405
6405
|
already_in_channel?: boolean | undefined;
|
|
6406
6406
|
}, {
|
|
6407
|
-
operation: "join_channel";
|
|
6408
|
-
ok: boolean;
|
|
6409
6407
|
error: string;
|
|
6410
6408
|
success: boolean;
|
|
6409
|
+
operation: "join_channel";
|
|
6410
|
+
ok: boolean;
|
|
6411
6411
|
channel?: {
|
|
6412
6412
|
name: string;
|
|
6413
6413
|
id: string;
|
|
@@ -6555,8 +6555,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6555
6555
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
6556
6556
|
}, "strip", z.ZodTypeAny, {
|
|
6557
6557
|
name: string;
|
|
6558
|
-
id: string;
|
|
6559
6558
|
user: string;
|
|
6559
|
+
size: number;
|
|
6560
|
+
id: string;
|
|
6560
6561
|
username: string;
|
|
6561
6562
|
timestamp: number;
|
|
6562
6563
|
created: number;
|
|
@@ -6564,7 +6565,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6564
6565
|
filetype: string;
|
|
6565
6566
|
pretty_type: string;
|
|
6566
6567
|
editable: boolean;
|
|
6567
|
-
size: number;
|
|
6568
6568
|
mode: string;
|
|
6569
6569
|
is_external: boolean;
|
|
6570
6570
|
external_type: string;
|
|
@@ -6600,8 +6600,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6600
6600
|
has_rich_preview?: boolean | undefined;
|
|
6601
6601
|
}, {
|
|
6602
6602
|
name: string;
|
|
6603
|
-
id: string;
|
|
6604
6603
|
user: string;
|
|
6604
|
+
size: number;
|
|
6605
|
+
id: string;
|
|
6605
6606
|
username: string;
|
|
6606
6607
|
timestamp: number;
|
|
6607
6608
|
created: number;
|
|
@@ -6609,7 +6610,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6609
6610
|
filetype: string;
|
|
6610
6611
|
pretty_type: string;
|
|
6611
6612
|
editable: boolean;
|
|
6612
|
-
size: number;
|
|
6613
6613
|
mode: string;
|
|
6614
6614
|
is_external: boolean;
|
|
6615
6615
|
external_type: string;
|
|
@@ -6647,14 +6647,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6647
6647
|
error: z.ZodString;
|
|
6648
6648
|
success: z.ZodBoolean;
|
|
6649
6649
|
}, "strip", z.ZodTypeAny, {
|
|
6650
|
-
operation: "upload_file";
|
|
6651
|
-
ok: boolean;
|
|
6652
6650
|
error: string;
|
|
6653
6651
|
success: boolean;
|
|
6652
|
+
operation: "upload_file";
|
|
6653
|
+
ok: boolean;
|
|
6654
6654
|
file?: {
|
|
6655
6655
|
name: string;
|
|
6656
|
-
id: string;
|
|
6657
6656
|
user: string;
|
|
6657
|
+
size: number;
|
|
6658
|
+
id: string;
|
|
6658
6659
|
username: string;
|
|
6659
6660
|
timestamp: number;
|
|
6660
6661
|
created: number;
|
|
@@ -6662,7 +6663,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6662
6663
|
filetype: string;
|
|
6663
6664
|
pretty_type: string;
|
|
6664
6665
|
editable: boolean;
|
|
6665
|
-
size: number;
|
|
6666
6666
|
mode: string;
|
|
6667
6667
|
is_external: boolean;
|
|
6668
6668
|
external_type: string;
|
|
@@ -6698,14 +6698,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6698
6698
|
has_rich_preview?: boolean | undefined;
|
|
6699
6699
|
} | undefined;
|
|
6700
6700
|
}, {
|
|
6701
|
-
operation: "upload_file";
|
|
6702
|
-
ok: boolean;
|
|
6703
6701
|
error: string;
|
|
6704
6702
|
success: boolean;
|
|
6703
|
+
operation: "upload_file";
|
|
6704
|
+
ok: boolean;
|
|
6705
6705
|
file?: {
|
|
6706
6706
|
name: string;
|
|
6707
|
-
id: string;
|
|
6708
6707
|
user: string;
|
|
6708
|
+
size: number;
|
|
6709
|
+
id: string;
|
|
6709
6710
|
username: string;
|
|
6710
6711
|
timestamp: number;
|
|
6711
6712
|
created: number;
|
|
@@ -6713,7 +6714,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6713
6714
|
filetype: string;
|
|
6714
6715
|
pretty_type: string;
|
|
6715
6716
|
editable: boolean;
|
|
6716
|
-
size: number;
|
|
6717
6717
|
mode: string;
|
|
6718
6718
|
is_external: boolean;
|
|
6719
6719
|
external_type: string;
|
|
@@ -6757,18 +6757,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6757
6757
|
error: z.ZodString;
|
|
6758
6758
|
success: z.ZodBoolean;
|
|
6759
6759
|
}, "strip", z.ZodTypeAny, {
|
|
6760
|
-
operation: "schedule_message";
|
|
6761
|
-
ok: boolean;
|
|
6762
6760
|
error: string;
|
|
6763
6761
|
success: boolean;
|
|
6762
|
+
operation: "schedule_message";
|
|
6763
|
+
ok: boolean;
|
|
6764
6764
|
channel?: string | undefined;
|
|
6765
6765
|
post_at?: number | undefined;
|
|
6766
6766
|
scheduled_message_id?: string | undefined;
|
|
6767
6767
|
}, {
|
|
6768
|
-
operation: "schedule_message";
|
|
6769
|
-
ok: boolean;
|
|
6770
6768
|
error: string;
|
|
6771
6769
|
success: boolean;
|
|
6770
|
+
operation: "schedule_message";
|
|
6771
|
+
ok: boolean;
|
|
6772
6772
|
channel?: string | undefined;
|
|
6773
6773
|
post_at?: number | undefined;
|
|
6774
6774
|
scheduled_message_id?: string | undefined;
|