@bubblelab/bubble-core 0.1.101 → 0.1.102
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 +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- package/package.json +2 -2
|
@@ -38,42 +38,42 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
38
38
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
|
-
text?: string | undefined;
|
|
42
|
-
image_url?: string | undefined;
|
|
43
|
-
ts?: number | undefined;
|
|
44
41
|
fields?: {
|
|
45
42
|
value: string;
|
|
46
43
|
title: string;
|
|
47
44
|
short?: boolean | undefined;
|
|
48
45
|
}[] | undefined;
|
|
46
|
+
text?: string | undefined;
|
|
49
47
|
color?: string | undefined;
|
|
50
48
|
pretext?: string | undefined;
|
|
51
49
|
author_name?: string | undefined;
|
|
52
50
|
author_link?: string | undefined;
|
|
53
51
|
author_icon?: string | undefined;
|
|
54
52
|
title_link?: string | undefined;
|
|
53
|
+
image_url?: string | undefined;
|
|
55
54
|
thumb_url?: string | undefined;
|
|
56
55
|
footer?: string | undefined;
|
|
57
56
|
footer_icon?: string | undefined;
|
|
57
|
+
ts?: number | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
|
-
text?: string | undefined;
|
|
61
|
-
image_url?: string | undefined;
|
|
62
|
-
ts?: number | undefined;
|
|
63
60
|
fields?: {
|
|
64
61
|
value: string;
|
|
65
62
|
title: string;
|
|
66
63
|
short?: boolean | undefined;
|
|
67
64
|
}[] | undefined;
|
|
65
|
+
text?: string | undefined;
|
|
68
66
|
color?: string | undefined;
|
|
69
67
|
pretext?: string | undefined;
|
|
70
68
|
author_name?: string | undefined;
|
|
71
69
|
author_link?: string | undefined;
|
|
72
70
|
author_icon?: string | undefined;
|
|
73
71
|
title_link?: string | undefined;
|
|
72
|
+
image_url?: string | undefined;
|
|
74
73
|
thumb_url?: string | undefined;
|
|
75
74
|
footer?: string | undefined;
|
|
76
75
|
footer_icon?: string | undefined;
|
|
76
|
+
ts?: number | undefined;
|
|
77
77
|
}>, "many">>;
|
|
78
78
|
blocks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
79
79
|
type: z.ZodString;
|
|
@@ -101,14 +101,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
101
101
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
102
102
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
type: "
|
|
104
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
105
105
|
emoji?: boolean | undefined;
|
|
106
106
|
text?: string | undefined;
|
|
107
107
|
image_url?: string | undefined;
|
|
108
108
|
verbatim?: boolean | undefined;
|
|
109
109
|
alt_text?: string | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
type: "
|
|
111
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
112
112
|
emoji?: boolean | undefined;
|
|
113
113
|
text?: string | undefined;
|
|
114
114
|
image_url?: string | undefined;
|
|
@@ -141,14 +141,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
141
141
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
142
142
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
|
-
type: "
|
|
144
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
145
145
|
emoji?: boolean | undefined;
|
|
146
146
|
text?: string | undefined;
|
|
147
147
|
image_url?: string | undefined;
|
|
148
148
|
verbatim?: boolean | undefined;
|
|
149
149
|
alt_text?: string | undefined;
|
|
150
150
|
}, {
|
|
151
|
-
type: "
|
|
151
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
152
152
|
emoji?: boolean | undefined;
|
|
153
153
|
text?: string | undefined;
|
|
154
154
|
image_url?: string | undefined;
|
|
@@ -181,14 +181,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
181
181
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
182
182
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
type: "
|
|
184
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
185
185
|
emoji?: boolean | undefined;
|
|
186
186
|
text?: string | undefined;
|
|
187
187
|
image_url?: string | undefined;
|
|
188
188
|
verbatim?: boolean | undefined;
|
|
189
189
|
alt_text?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
type: "
|
|
191
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
192
192
|
emoji?: boolean | undefined;
|
|
193
193
|
text?: string | undefined;
|
|
194
194
|
image_url?: string | undefined;
|
|
@@ -202,9 +202,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
202
202
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
203
203
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
text: string;
|
|
206
205
|
operation: "send_message";
|
|
207
206
|
channel: string;
|
|
207
|
+
text: string;
|
|
208
208
|
reply_broadcast: boolean;
|
|
209
209
|
unfurl_links: boolean;
|
|
210
210
|
unfurl_media: boolean;
|
|
@@ -214,23 +214,23 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
214
214
|
icon_url?: string | undefined;
|
|
215
215
|
attachments?: {
|
|
216
216
|
title?: string | undefined;
|
|
217
|
-
text?: string | undefined;
|
|
218
|
-
image_url?: string | undefined;
|
|
219
|
-
ts?: number | undefined;
|
|
220
217
|
fields?: {
|
|
221
218
|
value: string;
|
|
222
219
|
title: string;
|
|
223
220
|
short?: boolean | undefined;
|
|
224
221
|
}[] | undefined;
|
|
222
|
+
text?: string | undefined;
|
|
225
223
|
color?: string | undefined;
|
|
226
224
|
pretext?: string | undefined;
|
|
227
225
|
author_name?: string | undefined;
|
|
228
226
|
author_link?: string | undefined;
|
|
229
227
|
author_icon?: string | undefined;
|
|
230
228
|
title_link?: string | undefined;
|
|
229
|
+
image_url?: string | undefined;
|
|
231
230
|
thumb_url?: string | undefined;
|
|
232
231
|
footer?: string | undefined;
|
|
233
232
|
footer_icon?: string | undefined;
|
|
233
|
+
ts?: number | undefined;
|
|
234
234
|
}[] | undefined;
|
|
235
235
|
blocks?: z.objectOutputType<{
|
|
236
236
|
type: z.ZodString;
|
|
@@ -258,14 +258,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
258
258
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
259
259
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
|
-
type: "
|
|
261
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
262
262
|
emoji?: boolean | undefined;
|
|
263
263
|
text?: string | undefined;
|
|
264
264
|
image_url?: string | undefined;
|
|
265
265
|
verbatim?: boolean | undefined;
|
|
266
266
|
alt_text?: string | undefined;
|
|
267
267
|
}, {
|
|
268
|
-
type: "
|
|
268
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
269
269
|
emoji?: boolean | undefined;
|
|
270
270
|
text?: string | undefined;
|
|
271
271
|
image_url?: string | undefined;
|
|
@@ -275,32 +275,32 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
275
275
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
276
276
|
thread_ts?: string | undefined;
|
|
277
277
|
}, {
|
|
278
|
-
text: string;
|
|
279
278
|
operation: "send_message";
|
|
280
279
|
channel: string;
|
|
280
|
+
text: string;
|
|
281
281
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
282
282
|
username?: string | undefined;
|
|
283
283
|
icon_emoji?: string | undefined;
|
|
284
284
|
icon_url?: string | undefined;
|
|
285
285
|
attachments?: {
|
|
286
286
|
title?: string | undefined;
|
|
287
|
-
text?: string | undefined;
|
|
288
|
-
image_url?: string | undefined;
|
|
289
|
-
ts?: number | undefined;
|
|
290
287
|
fields?: {
|
|
291
288
|
value: string;
|
|
292
289
|
title: string;
|
|
293
290
|
short?: boolean | undefined;
|
|
294
291
|
}[] | undefined;
|
|
292
|
+
text?: string | undefined;
|
|
295
293
|
color?: string | undefined;
|
|
296
294
|
pretext?: string | undefined;
|
|
297
295
|
author_name?: string | undefined;
|
|
298
296
|
author_link?: string | undefined;
|
|
299
297
|
author_icon?: string | undefined;
|
|
300
298
|
title_link?: string | undefined;
|
|
299
|
+
image_url?: string | undefined;
|
|
301
300
|
thumb_url?: string | undefined;
|
|
302
301
|
footer?: string | undefined;
|
|
303
302
|
footer_icon?: string | undefined;
|
|
303
|
+
ts?: number | undefined;
|
|
304
304
|
}[] | undefined;
|
|
305
305
|
blocks?: z.objectInputType<{
|
|
306
306
|
type: z.ZodString;
|
|
@@ -328,14 +328,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
328
328
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
329
329
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
330
330
|
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
type: "
|
|
331
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
332
332
|
emoji?: boolean | undefined;
|
|
333
333
|
text?: string | undefined;
|
|
334
334
|
image_url?: string | undefined;
|
|
335
335
|
verbatim?: boolean | undefined;
|
|
336
336
|
alt_text?: string | undefined;
|
|
337
337
|
}, {
|
|
338
|
-
type: "
|
|
338
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
339
339
|
emoji?: boolean | undefined;
|
|
340
340
|
text?: string | undefined;
|
|
341
341
|
image_url?: string | undefined;
|
|
@@ -355,18 +355,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
355
355
|
cursor: z.ZodOptional<z.ZodString>;
|
|
356
356
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
|
-
limit: number;
|
|
359
358
|
operation: "list_channels";
|
|
360
359
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
361
360
|
exclude_archived: boolean;
|
|
361
|
+
limit: number;
|
|
362
362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
363
363
|
cursor?: string | undefined;
|
|
364
364
|
}, {
|
|
365
365
|
operation: "list_channels";
|
|
366
366
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
367
|
-
limit?: number | undefined;
|
|
368
367
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
369
368
|
exclude_archived?: boolean | undefined;
|
|
369
|
+
limit?: number | undefined;
|
|
370
370
|
cursor?: string | undefined;
|
|
371
371
|
}>, z.ZodObject<{
|
|
372
372
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
@@ -389,13 +389,13 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
389
389
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
390
390
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
|
-
user: string;
|
|
393
392
|
operation: "get_user_info";
|
|
394
393
|
include_locale: boolean;
|
|
394
|
+
user: string;
|
|
395
395
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
396
396
|
}, {
|
|
397
|
-
user: string;
|
|
398
397
|
operation: "get_user_info";
|
|
398
|
+
user: string;
|
|
399
399
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
400
400
|
include_locale?: boolean | undefined;
|
|
401
401
|
}>, z.ZodObject<{
|
|
@@ -405,8 +405,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
405
405
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
406
406
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
|
408
|
-
limit: number;
|
|
409
408
|
operation: "list_users";
|
|
409
|
+
limit: number;
|
|
410
410
|
include_locale: boolean;
|
|
411
411
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
412
412
|
cursor?: string | undefined;
|
|
@@ -427,22 +427,22 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
427
427
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
429
|
inclusive: boolean;
|
|
430
|
-
limit: number;
|
|
431
430
|
operation: "get_conversation_history";
|
|
432
431
|
channel: string;
|
|
432
|
+
limit: number;
|
|
433
433
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
434
|
+
cursor?: string | undefined;
|
|
434
435
|
latest?: string | undefined;
|
|
435
436
|
oldest?: string | undefined;
|
|
436
|
-
cursor?: string | undefined;
|
|
437
437
|
}, {
|
|
438
438
|
operation: "get_conversation_history";
|
|
439
439
|
channel: string;
|
|
440
440
|
inclusive?: boolean | undefined;
|
|
441
441
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
442
442
|
limit?: number | undefined;
|
|
443
|
+
cursor?: string | undefined;
|
|
443
444
|
latest?: string | undefined;
|
|
444
445
|
oldest?: string | undefined;
|
|
445
|
-
cursor?: string | undefined;
|
|
446
446
|
}>, z.ZodObject<{
|
|
447
447
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
448
448
|
channel: z.ZodString;
|
|
@@ -455,24 +455,24 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
455
455
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
457
|
inclusive: boolean;
|
|
458
|
-
limit: number;
|
|
459
|
-
ts: string;
|
|
460
458
|
operation: "get_thread_replies";
|
|
461
459
|
channel: string;
|
|
460
|
+
ts: string;
|
|
461
|
+
limit: number;
|
|
462
462
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
463
|
+
cursor?: string | undefined;
|
|
463
464
|
latest?: string | undefined;
|
|
464
465
|
oldest?: string | undefined;
|
|
465
|
-
cursor?: string | undefined;
|
|
466
466
|
}, {
|
|
467
|
-
ts: string;
|
|
468
467
|
operation: "get_thread_replies";
|
|
469
468
|
channel: string;
|
|
469
|
+
ts: string;
|
|
470
470
|
inclusive?: boolean | undefined;
|
|
471
471
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
472
472
|
limit?: number | undefined;
|
|
473
|
+
cursor?: string | undefined;
|
|
473
474
|
latest?: string | undefined;
|
|
474
475
|
oldest?: string | undefined;
|
|
475
|
-
cursor?: string | undefined;
|
|
476
476
|
}>, z.ZodObject<{
|
|
477
477
|
operation: z.ZodLiteral<"update_message">;
|
|
478
478
|
channel: z.ZodString;
|
|
@@ -507,42 +507,42 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
507
507
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
|
-
text?: string | undefined;
|
|
511
|
-
image_url?: string | undefined;
|
|
512
|
-
ts?: number | undefined;
|
|
513
510
|
fields?: {
|
|
514
511
|
value: string;
|
|
515
512
|
title: string;
|
|
516
513
|
short?: boolean | undefined;
|
|
517
514
|
}[] | undefined;
|
|
515
|
+
text?: string | undefined;
|
|
518
516
|
color?: string | undefined;
|
|
519
517
|
pretext?: string | undefined;
|
|
520
518
|
author_name?: string | undefined;
|
|
521
519
|
author_link?: string | undefined;
|
|
522
520
|
author_icon?: string | undefined;
|
|
523
521
|
title_link?: string | undefined;
|
|
522
|
+
image_url?: string | undefined;
|
|
524
523
|
thumb_url?: string | undefined;
|
|
525
524
|
footer?: string | undefined;
|
|
526
525
|
footer_icon?: string | undefined;
|
|
526
|
+
ts?: number | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
|
-
text?: string | undefined;
|
|
530
|
-
image_url?: string | undefined;
|
|
531
|
-
ts?: number | undefined;
|
|
532
529
|
fields?: {
|
|
533
530
|
value: string;
|
|
534
531
|
title: string;
|
|
535
532
|
short?: boolean | undefined;
|
|
536
533
|
}[] | undefined;
|
|
534
|
+
text?: string | undefined;
|
|
537
535
|
color?: string | undefined;
|
|
538
536
|
pretext?: string | undefined;
|
|
539
537
|
author_name?: string | undefined;
|
|
540
538
|
author_link?: string | undefined;
|
|
541
539
|
author_icon?: string | undefined;
|
|
542
540
|
title_link?: string | undefined;
|
|
541
|
+
image_url?: string | undefined;
|
|
543
542
|
thumb_url?: string | undefined;
|
|
544
543
|
footer?: string | undefined;
|
|
545
544
|
footer_icon?: string | undefined;
|
|
545
|
+
ts?: number | undefined;
|
|
546
546
|
}>, "many">>;
|
|
547
547
|
blocks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
548
548
|
type: z.ZodString;
|
|
@@ -570,14 +570,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
570
570
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
571
571
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
|
-
type: "
|
|
573
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
574
574
|
emoji?: boolean | undefined;
|
|
575
575
|
text?: string | undefined;
|
|
576
576
|
image_url?: string | undefined;
|
|
577
577
|
verbatim?: boolean | undefined;
|
|
578
578
|
alt_text?: string | undefined;
|
|
579
579
|
}, {
|
|
580
|
-
type: "
|
|
580
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
581
581
|
emoji?: boolean | undefined;
|
|
582
582
|
text?: string | undefined;
|
|
583
583
|
image_url?: string | undefined;
|
|
@@ -610,14 +610,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
610
610
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
611
611
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
612
612
|
}, "strip", z.ZodTypeAny, {
|
|
613
|
-
type: "
|
|
613
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
614
614
|
emoji?: boolean | undefined;
|
|
615
615
|
text?: string | undefined;
|
|
616
616
|
image_url?: string | undefined;
|
|
617
617
|
verbatim?: boolean | undefined;
|
|
618
618
|
alt_text?: string | undefined;
|
|
619
619
|
}, {
|
|
620
|
-
type: "
|
|
620
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
621
621
|
emoji?: boolean | undefined;
|
|
622
622
|
text?: string | undefined;
|
|
623
623
|
image_url?: string | undefined;
|
|
@@ -650,14 +650,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
650
650
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
651
651
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
652
652
|
}, "strip", z.ZodTypeAny, {
|
|
653
|
-
type: "
|
|
653
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
654
654
|
emoji?: boolean | undefined;
|
|
655
655
|
text?: string | undefined;
|
|
656
656
|
image_url?: string | undefined;
|
|
657
657
|
verbatim?: boolean | undefined;
|
|
658
658
|
alt_text?: string | undefined;
|
|
659
659
|
}, {
|
|
660
|
-
type: "
|
|
660
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
661
661
|
emoji?: boolean | undefined;
|
|
662
662
|
text?: string | undefined;
|
|
663
663
|
image_url?: string | undefined;
|
|
@@ -667,30 +667,30 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
667
667
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
668
668
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
669
669
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
ts: string;
|
|
671
670
|
operation: "update_message";
|
|
672
671
|
channel: string;
|
|
672
|
+
ts: string;
|
|
673
673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
674
674
|
text?: string | undefined;
|
|
675
675
|
attachments?: {
|
|
676
676
|
title?: string | undefined;
|
|
677
|
-
text?: string | undefined;
|
|
678
|
-
image_url?: string | undefined;
|
|
679
|
-
ts?: number | undefined;
|
|
680
677
|
fields?: {
|
|
681
678
|
value: string;
|
|
682
679
|
title: string;
|
|
683
680
|
short?: boolean | undefined;
|
|
684
681
|
}[] | undefined;
|
|
682
|
+
text?: string | undefined;
|
|
685
683
|
color?: string | undefined;
|
|
686
684
|
pretext?: string | undefined;
|
|
687
685
|
author_name?: string | undefined;
|
|
688
686
|
author_link?: string | undefined;
|
|
689
687
|
author_icon?: string | undefined;
|
|
690
688
|
title_link?: string | undefined;
|
|
689
|
+
image_url?: string | undefined;
|
|
691
690
|
thumb_url?: string | undefined;
|
|
692
691
|
footer?: string | undefined;
|
|
693
692
|
footer_icon?: string | undefined;
|
|
693
|
+
ts?: number | undefined;
|
|
694
694
|
}[] | undefined;
|
|
695
695
|
blocks?: z.objectOutputType<{
|
|
696
696
|
type: z.ZodString;
|
|
@@ -718,14 +718,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
718
718
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
719
719
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
|
-
type: "
|
|
721
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
722
722
|
emoji?: boolean | undefined;
|
|
723
723
|
text?: string | undefined;
|
|
724
724
|
image_url?: string | undefined;
|
|
725
725
|
verbatim?: boolean | undefined;
|
|
726
726
|
alt_text?: string | undefined;
|
|
727
727
|
}, {
|
|
728
|
-
type: "
|
|
728
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
729
729
|
emoji?: boolean | undefined;
|
|
730
730
|
text?: string | undefined;
|
|
731
731
|
image_url?: string | undefined;
|
|
@@ -734,30 +734,30 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
734
734
|
}>, "many">>;
|
|
735
735
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
736
736
|
}, {
|
|
737
|
-
ts: string;
|
|
738
737
|
operation: "update_message";
|
|
739
738
|
channel: string;
|
|
739
|
+
ts: string;
|
|
740
740
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
741
|
text?: string | undefined;
|
|
742
742
|
attachments?: {
|
|
743
743
|
title?: string | undefined;
|
|
744
|
-
text?: string | undefined;
|
|
745
|
-
image_url?: string | undefined;
|
|
746
|
-
ts?: number | undefined;
|
|
747
744
|
fields?: {
|
|
748
745
|
value: string;
|
|
749
746
|
title: string;
|
|
750
747
|
short?: boolean | undefined;
|
|
751
748
|
}[] | undefined;
|
|
749
|
+
text?: string | undefined;
|
|
752
750
|
color?: string | undefined;
|
|
753
751
|
pretext?: string | undefined;
|
|
754
752
|
author_name?: string | undefined;
|
|
755
753
|
author_link?: string | undefined;
|
|
756
754
|
author_icon?: string | undefined;
|
|
757
755
|
title_link?: string | undefined;
|
|
756
|
+
image_url?: string | undefined;
|
|
758
757
|
thumb_url?: string | undefined;
|
|
759
758
|
footer?: string | undefined;
|
|
760
759
|
footer_icon?: string | undefined;
|
|
760
|
+
ts?: number | undefined;
|
|
761
761
|
}[] | undefined;
|
|
762
762
|
blocks?: z.objectInputType<{
|
|
763
763
|
type: z.ZodString;
|
|
@@ -785,14 +785,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
785
785
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
786
786
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
type: "
|
|
788
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
789
789
|
emoji?: boolean | undefined;
|
|
790
790
|
text?: string | undefined;
|
|
791
791
|
image_url?: string | undefined;
|
|
792
792
|
verbatim?: boolean | undefined;
|
|
793
793
|
alt_text?: string | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
type: "
|
|
795
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
796
796
|
emoji?: boolean | undefined;
|
|
797
797
|
text?: string | undefined;
|
|
798
798
|
image_url?: string | undefined;
|
|
@@ -806,14 +806,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
806
806
|
ts: z.ZodString;
|
|
807
807
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
808
808
|
}, "strip", z.ZodTypeAny, {
|
|
809
|
-
ts: string;
|
|
810
809
|
operation: "delete_message";
|
|
811
810
|
channel: string;
|
|
811
|
+
ts: string;
|
|
812
812
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
813
813
|
}, {
|
|
814
|
-
ts: string;
|
|
815
814
|
operation: "delete_message";
|
|
816
815
|
channel: string;
|
|
816
|
+
ts: string;
|
|
817
817
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
818
818
|
}>, z.ZodObject<{
|
|
819
819
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -823,15 +823,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
823
823
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
824
824
|
}, "strip", z.ZodTypeAny, {
|
|
825
825
|
name: string;
|
|
826
|
-
timestamp: string;
|
|
827
826
|
operation: "add_reaction";
|
|
828
827
|
channel: string;
|
|
828
|
+
timestamp: string;
|
|
829
829
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
830
830
|
}, {
|
|
831
831
|
name: string;
|
|
832
|
-
timestamp: string;
|
|
833
832
|
operation: "add_reaction";
|
|
834
833
|
channel: string;
|
|
834
|
+
timestamp: string;
|
|
835
835
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
836
836
|
}>, z.ZodObject<{
|
|
837
837
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
@@ -841,15 +841,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
841
841
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
842
842
|
}, "strip", z.ZodTypeAny, {
|
|
843
843
|
name: string;
|
|
844
|
-
timestamp: string;
|
|
845
844
|
operation: "remove_reaction";
|
|
846
845
|
channel: string;
|
|
846
|
+
timestamp: string;
|
|
847
847
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
848
848
|
}, {
|
|
849
849
|
name: string;
|
|
850
|
-
timestamp: string;
|
|
851
850
|
operation: "remove_reaction";
|
|
852
851
|
channel: string;
|
|
852
|
+
timestamp: string;
|
|
853
853
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
854
854
|
}>, z.ZodObject<{
|
|
855
855
|
operation: z.ZodLiteral<"join_channel">;
|
|
@@ -922,14 +922,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
922
922
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
923
923
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
924
924
|
}, "strip", z.ZodTypeAny, {
|
|
925
|
-
type: "
|
|
925
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
926
926
|
emoji?: boolean | undefined;
|
|
927
927
|
text?: string | undefined;
|
|
928
928
|
image_url?: string | undefined;
|
|
929
929
|
verbatim?: boolean | undefined;
|
|
930
930
|
alt_text?: string | undefined;
|
|
931
931
|
}, {
|
|
932
|
-
type: "
|
|
932
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
933
933
|
emoji?: boolean | undefined;
|
|
934
934
|
text?: string | undefined;
|
|
935
935
|
image_url?: string | undefined;
|
|
@@ -962,14 +962,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
962
962
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
963
963
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
type: "
|
|
965
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
966
966
|
emoji?: boolean | undefined;
|
|
967
967
|
text?: string | undefined;
|
|
968
968
|
image_url?: string | undefined;
|
|
969
969
|
verbatim?: boolean | undefined;
|
|
970
970
|
alt_text?: string | undefined;
|
|
971
971
|
}, {
|
|
972
|
-
type: "
|
|
972
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
973
973
|
emoji?: boolean | undefined;
|
|
974
974
|
text?: string | undefined;
|
|
975
975
|
image_url?: string | undefined;
|
|
@@ -1002,14 +1002,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1002
1002
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1003
1003
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1004
1004
|
}, "strip", z.ZodTypeAny, {
|
|
1005
|
-
type: "
|
|
1005
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1006
1006
|
emoji?: boolean | undefined;
|
|
1007
1007
|
text?: string | undefined;
|
|
1008
1008
|
image_url?: string | undefined;
|
|
1009
1009
|
verbatim?: boolean | undefined;
|
|
1010
1010
|
alt_text?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
|
-
type: "
|
|
1012
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1013
1013
|
emoji?: boolean | undefined;
|
|
1014
1014
|
text?: string | undefined;
|
|
1015
1015
|
image_url?: string | undefined;
|
|
@@ -1021,9 +1021,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1021
1021
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1022
1022
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1023
1023
|
}, "strip", z.ZodTypeAny, {
|
|
1024
|
-
text: string;
|
|
1025
1024
|
operation: "schedule_message";
|
|
1026
1025
|
channel: string;
|
|
1026
|
+
text: string;
|
|
1027
1027
|
unfurl_links: boolean;
|
|
1028
1028
|
unfurl_media: boolean;
|
|
1029
1029
|
post_at: number;
|
|
@@ -1054,14 +1054,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1054
1054
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1055
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1056
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1057
|
-
type: "
|
|
1057
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1058
1058
|
emoji?: boolean | undefined;
|
|
1059
1059
|
text?: string | undefined;
|
|
1060
1060
|
image_url?: string | undefined;
|
|
1061
1061
|
verbatim?: boolean | undefined;
|
|
1062
1062
|
alt_text?: string | undefined;
|
|
1063
1063
|
}, {
|
|
1064
|
-
type: "
|
|
1064
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1065
1065
|
emoji?: boolean | undefined;
|
|
1066
1066
|
text?: string | undefined;
|
|
1067
1067
|
image_url?: string | undefined;
|
|
@@ -1071,9 +1071,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1071
1071
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1072
1072
|
thread_ts?: string | undefined;
|
|
1073
1073
|
}, {
|
|
1074
|
-
text: string;
|
|
1075
1074
|
operation: "schedule_message";
|
|
1076
1075
|
channel: string;
|
|
1076
|
+
text: string;
|
|
1077
1077
|
post_at: number;
|
|
1078
1078
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1079
1079
|
blocks?: z.objectInputType<{
|
|
@@ -1102,14 +1102,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1102
1102
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1103
1103
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1105
|
-
type: "
|
|
1105
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1106
1106
|
emoji?: boolean | undefined;
|
|
1107
1107
|
text?: string | undefined;
|
|
1108
1108
|
image_url?: string | undefined;
|
|
1109
1109
|
verbatim?: boolean | undefined;
|
|
1110
1110
|
alt_text?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
|
-
type: "
|
|
1112
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
1113
1113
|
emoji?: boolean | undefined;
|
|
1114
1114
|
text?: string | undefined;
|
|
1115
1115
|
image_url?: string | undefined;
|
|
@@ -1183,12 +1183,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1183
1183
|
count: z.ZodNumber;
|
|
1184
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1185
1185
|
name: string;
|
|
1186
|
-
count: number;
|
|
1187
1186
|
users: string[];
|
|
1187
|
+
count: number;
|
|
1188
1188
|
}, {
|
|
1189
1189
|
name: string;
|
|
1190
|
-
count: number;
|
|
1191
1190
|
users: string[];
|
|
1191
|
+
count: number;
|
|
1192
1192
|
}>, "many">>;
|
|
1193
1193
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1194
1194
|
id: z.ZodString;
|
|
@@ -1241,18 +1241,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1241
1241
|
}>, "many">>;
|
|
1242
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1243
1243
|
type: string;
|
|
1244
|
-
username?: string | undefined;
|
|
1245
1244
|
text?: string | undefined;
|
|
1246
|
-
|
|
1247
|
-
name: string;
|
|
1248
|
-
count: number;
|
|
1249
|
-
users: string[];
|
|
1250
|
-
}[] | undefined;
|
|
1245
|
+
username?: string | undefined;
|
|
1251
1246
|
ts?: string | undefined;
|
|
1252
|
-
user?: string | undefined;
|
|
1253
1247
|
attachments?: unknown[] | undefined;
|
|
1254
1248
|
blocks?: unknown[] | undefined;
|
|
1255
1249
|
thread_ts?: string | undefined;
|
|
1250
|
+
user?: string | undefined;
|
|
1256
1251
|
bot_id?: string | undefined;
|
|
1257
1252
|
bot_profile?: {
|
|
1258
1253
|
name?: string | undefined;
|
|
@@ -1264,6 +1259,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1264
1259
|
reply_users?: string[] | undefined;
|
|
1265
1260
|
is_locked?: boolean | undefined;
|
|
1266
1261
|
subscribed?: boolean | undefined;
|
|
1262
|
+
reactions?: {
|
|
1263
|
+
name: string;
|
|
1264
|
+
users: string[];
|
|
1265
|
+
count: number;
|
|
1266
|
+
}[] | undefined;
|
|
1267
1267
|
files?: {
|
|
1268
1268
|
id: string;
|
|
1269
1269
|
title?: string | undefined;
|
|
@@ -1283,18 +1283,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1283
1283
|
}[] | undefined;
|
|
1284
1284
|
}, {
|
|
1285
1285
|
type: string;
|
|
1286
|
-
username?: string | undefined;
|
|
1287
1286
|
text?: string | undefined;
|
|
1288
|
-
|
|
1289
|
-
name: string;
|
|
1290
|
-
count: number;
|
|
1291
|
-
users: string[];
|
|
1292
|
-
}[] | undefined;
|
|
1287
|
+
username?: string | undefined;
|
|
1293
1288
|
ts?: string | undefined;
|
|
1294
|
-
user?: string | undefined;
|
|
1295
1289
|
attachments?: unknown[] | undefined;
|
|
1296
1290
|
blocks?: unknown[] | undefined;
|
|
1297
1291
|
thread_ts?: string | undefined;
|
|
1292
|
+
user?: string | undefined;
|
|
1298
1293
|
bot_id?: string | undefined;
|
|
1299
1294
|
bot_profile?: {
|
|
1300
1295
|
name?: string | undefined;
|
|
@@ -1306,6 +1301,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1306
1301
|
reply_users?: string[] | undefined;
|
|
1307
1302
|
is_locked?: boolean | undefined;
|
|
1308
1303
|
subscribed?: boolean | undefined;
|
|
1304
|
+
reactions?: {
|
|
1305
|
+
name: string;
|
|
1306
|
+
users: string[];
|
|
1307
|
+
count: number;
|
|
1308
|
+
}[] | undefined;
|
|
1309
1309
|
files?: {
|
|
1310
1310
|
id: string;
|
|
1311
1311
|
title?: string | undefined;
|
|
@@ -1333,18 +1333,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1333
1333
|
ok: boolean;
|
|
1334
1334
|
message?: {
|
|
1335
1335
|
type: string;
|
|
1336
|
-
username?: string | undefined;
|
|
1337
1336
|
text?: string | undefined;
|
|
1338
|
-
|
|
1339
|
-
name: string;
|
|
1340
|
-
count: number;
|
|
1341
|
-
users: string[];
|
|
1342
|
-
}[] | undefined;
|
|
1337
|
+
username?: string | undefined;
|
|
1343
1338
|
ts?: string | undefined;
|
|
1344
|
-
user?: string | undefined;
|
|
1345
1339
|
attachments?: unknown[] | undefined;
|
|
1346
1340
|
blocks?: unknown[] | undefined;
|
|
1347
1341
|
thread_ts?: string | undefined;
|
|
1342
|
+
user?: string | undefined;
|
|
1348
1343
|
bot_id?: string | undefined;
|
|
1349
1344
|
bot_profile?: {
|
|
1350
1345
|
name?: string | undefined;
|
|
@@ -1356,6 +1351,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1356
1351
|
reply_users?: string[] | undefined;
|
|
1357
1352
|
is_locked?: boolean | undefined;
|
|
1358
1353
|
subscribed?: boolean | undefined;
|
|
1354
|
+
reactions?: {
|
|
1355
|
+
name: string;
|
|
1356
|
+
users: string[];
|
|
1357
|
+
count: number;
|
|
1358
|
+
}[] | undefined;
|
|
1359
1359
|
files?: {
|
|
1360
1360
|
id: string;
|
|
1361
1361
|
title?: string | undefined;
|
|
@@ -1374,8 +1374,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1374
1374
|
permalink?: string | undefined;
|
|
1375
1375
|
}[] | undefined;
|
|
1376
1376
|
} | undefined;
|
|
1377
|
-
ts?: string | undefined;
|
|
1378
1377
|
channel?: string | undefined;
|
|
1378
|
+
ts?: string | undefined;
|
|
1379
1379
|
}, {
|
|
1380
1380
|
success: boolean;
|
|
1381
1381
|
error: string;
|
|
@@ -1383,18 +1383,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1383
1383
|
ok: boolean;
|
|
1384
1384
|
message?: {
|
|
1385
1385
|
type: string;
|
|
1386
|
-
username?: string | undefined;
|
|
1387
1386
|
text?: string | undefined;
|
|
1388
|
-
|
|
1389
|
-
name: string;
|
|
1390
|
-
count: number;
|
|
1391
|
-
users: string[];
|
|
1392
|
-
}[] | undefined;
|
|
1387
|
+
username?: string | undefined;
|
|
1393
1388
|
ts?: string | undefined;
|
|
1394
|
-
user?: string | undefined;
|
|
1395
1389
|
attachments?: unknown[] | undefined;
|
|
1396
1390
|
blocks?: unknown[] | undefined;
|
|
1397
1391
|
thread_ts?: string | undefined;
|
|
1392
|
+
user?: string | undefined;
|
|
1398
1393
|
bot_id?: string | undefined;
|
|
1399
1394
|
bot_profile?: {
|
|
1400
1395
|
name?: string | undefined;
|
|
@@ -1406,6 +1401,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1406
1401
|
reply_users?: string[] | undefined;
|
|
1407
1402
|
is_locked?: boolean | undefined;
|
|
1408
1403
|
subscribed?: boolean | undefined;
|
|
1404
|
+
reactions?: {
|
|
1405
|
+
name: string;
|
|
1406
|
+
users: string[];
|
|
1407
|
+
count: number;
|
|
1408
|
+
}[] | undefined;
|
|
1409
1409
|
files?: {
|
|
1410
1410
|
id: string;
|
|
1411
1411
|
title?: string | undefined;
|
|
@@ -1424,8 +1424,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1424
1424
|
permalink?: string | undefined;
|
|
1425
1425
|
}[] | undefined;
|
|
1426
1426
|
} | undefined;
|
|
1427
|
-
ts?: string | undefined;
|
|
1428
1427
|
channel?: string | undefined;
|
|
1428
|
+
ts?: string | undefined;
|
|
1429
1429
|
}>, z.ZodObject<{
|
|
1430
1430
|
operation: z.ZodLiteral<"list_channels">;
|
|
1431
1431
|
ok: z.ZodBoolean;
|
|
@@ -1483,11 +1483,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1483
1483
|
id: string;
|
|
1484
1484
|
created: number;
|
|
1485
1485
|
is_archived: boolean;
|
|
1486
|
-
is_private?: boolean | undefined;
|
|
1487
1486
|
is_channel?: boolean | undefined;
|
|
1488
1487
|
is_group?: boolean | undefined;
|
|
1489
1488
|
is_im?: boolean | undefined;
|
|
1490
1489
|
is_mpim?: boolean | undefined;
|
|
1490
|
+
is_private?: boolean | undefined;
|
|
1491
1491
|
is_general?: boolean | undefined;
|
|
1492
1492
|
unlinked?: number | undefined;
|
|
1493
1493
|
name_normalized?: string | undefined;
|
|
@@ -1516,11 +1516,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1516
1516
|
id: string;
|
|
1517
1517
|
created: number;
|
|
1518
1518
|
is_archived: boolean;
|
|
1519
|
-
is_private?: boolean | undefined;
|
|
1520
1519
|
is_channel?: boolean | undefined;
|
|
1521
1520
|
is_group?: boolean | undefined;
|
|
1522
1521
|
is_im?: boolean | undefined;
|
|
1523
1522
|
is_mpim?: boolean | undefined;
|
|
1523
|
+
is_private?: boolean | undefined;
|
|
1524
1524
|
is_general?: boolean | undefined;
|
|
1525
1525
|
unlinked?: number | undefined;
|
|
1526
1526
|
name_normalized?: string | undefined;
|
|
@@ -1559,19 +1559,16 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1559
1559
|
error: string;
|
|
1560
1560
|
operation: "list_channels";
|
|
1561
1561
|
ok: boolean;
|
|
1562
|
-
response_metadata?: {
|
|
1563
|
-
next_cursor: string;
|
|
1564
|
-
} | undefined;
|
|
1565
1562
|
channels?: {
|
|
1566
1563
|
name: string;
|
|
1567
1564
|
id: string;
|
|
1568
1565
|
created: number;
|
|
1569
1566
|
is_archived: boolean;
|
|
1570
|
-
is_private?: boolean | undefined;
|
|
1571
1567
|
is_channel?: boolean | undefined;
|
|
1572
1568
|
is_group?: boolean | undefined;
|
|
1573
1569
|
is_im?: boolean | undefined;
|
|
1574
1570
|
is_mpim?: boolean | undefined;
|
|
1571
|
+
is_private?: boolean | undefined;
|
|
1575
1572
|
is_general?: boolean | undefined;
|
|
1576
1573
|
unlinked?: number | undefined;
|
|
1577
1574
|
name_normalized?: string | undefined;
|
|
@@ -1596,24 +1593,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1596
1593
|
} | undefined;
|
|
1597
1594
|
num_members?: number | undefined;
|
|
1598
1595
|
}[] | undefined;
|
|
1596
|
+
response_metadata?: {
|
|
1597
|
+
next_cursor: string;
|
|
1598
|
+
} | undefined;
|
|
1599
1599
|
}, {
|
|
1600
1600
|
success: boolean;
|
|
1601
1601
|
error: string;
|
|
1602
1602
|
operation: "list_channels";
|
|
1603
1603
|
ok: boolean;
|
|
1604
|
-
response_metadata?: {
|
|
1605
|
-
next_cursor: string;
|
|
1606
|
-
} | undefined;
|
|
1607
1604
|
channels?: {
|
|
1608
1605
|
name: string;
|
|
1609
1606
|
id: string;
|
|
1610
1607
|
created: number;
|
|
1611
1608
|
is_archived: boolean;
|
|
1612
|
-
is_private?: boolean | undefined;
|
|
1613
1609
|
is_channel?: boolean | undefined;
|
|
1614
1610
|
is_group?: boolean | undefined;
|
|
1615
1611
|
is_im?: boolean | undefined;
|
|
1616
1612
|
is_mpim?: boolean | undefined;
|
|
1613
|
+
is_private?: boolean | undefined;
|
|
1617
1614
|
is_general?: boolean | undefined;
|
|
1618
1615
|
unlinked?: number | undefined;
|
|
1619
1616
|
name_normalized?: string | undefined;
|
|
@@ -1638,6 +1635,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1638
1635
|
} | undefined;
|
|
1639
1636
|
num_members?: number | undefined;
|
|
1640
1637
|
}[] | undefined;
|
|
1638
|
+
response_metadata?: {
|
|
1639
|
+
next_cursor: string;
|
|
1640
|
+
} | undefined;
|
|
1641
1641
|
}>, z.ZodObject<{
|
|
1642
1642
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
1643
1643
|
ok: z.ZodBoolean;
|
|
@@ -1695,11 +1695,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1695
1695
|
id: string;
|
|
1696
1696
|
created: number;
|
|
1697
1697
|
is_archived: boolean;
|
|
1698
|
-
is_private?: boolean | undefined;
|
|
1699
1698
|
is_channel?: boolean | undefined;
|
|
1700
1699
|
is_group?: boolean | undefined;
|
|
1701
1700
|
is_im?: boolean | undefined;
|
|
1702
1701
|
is_mpim?: boolean | undefined;
|
|
1702
|
+
is_private?: boolean | undefined;
|
|
1703
1703
|
is_general?: boolean | undefined;
|
|
1704
1704
|
unlinked?: number | undefined;
|
|
1705
1705
|
name_normalized?: string | undefined;
|
|
@@ -1728,11 +1728,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1728
1728
|
id: string;
|
|
1729
1729
|
created: number;
|
|
1730
1730
|
is_archived: boolean;
|
|
1731
|
-
is_private?: boolean | undefined;
|
|
1732
1731
|
is_channel?: boolean | undefined;
|
|
1733
1732
|
is_group?: boolean | undefined;
|
|
1734
1733
|
is_im?: boolean | undefined;
|
|
1735
1734
|
is_mpim?: boolean | undefined;
|
|
1735
|
+
is_private?: boolean | undefined;
|
|
1736
1736
|
is_general?: boolean | undefined;
|
|
1737
1737
|
unlinked?: number | undefined;
|
|
1738
1738
|
name_normalized?: string | undefined;
|
|
@@ -1769,11 +1769,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1769
1769
|
id: string;
|
|
1770
1770
|
created: number;
|
|
1771
1771
|
is_archived: boolean;
|
|
1772
|
-
is_private?: boolean | undefined;
|
|
1773
1772
|
is_channel?: boolean | undefined;
|
|
1774
1773
|
is_group?: boolean | undefined;
|
|
1775
1774
|
is_im?: boolean | undefined;
|
|
1776
1775
|
is_mpim?: boolean | undefined;
|
|
1776
|
+
is_private?: boolean | undefined;
|
|
1777
1777
|
is_general?: boolean | undefined;
|
|
1778
1778
|
unlinked?: number | undefined;
|
|
1779
1779
|
name_normalized?: string | undefined;
|
|
@@ -1808,11 +1808,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1808
1808
|
id: string;
|
|
1809
1809
|
created: number;
|
|
1810
1810
|
is_archived: boolean;
|
|
1811
|
-
is_private?: boolean | undefined;
|
|
1812
1811
|
is_channel?: boolean | undefined;
|
|
1813
1812
|
is_group?: boolean | undefined;
|
|
1814
1813
|
is_im?: boolean | undefined;
|
|
1815
1814
|
is_mpim?: boolean | undefined;
|
|
1815
|
+
is_private?: boolean | undefined;
|
|
1816
1816
|
is_general?: boolean | undefined;
|
|
1817
1817
|
unlinked?: number | undefined;
|
|
1818
1818
|
name_normalized?: string | undefined;
|
|
@@ -1878,11 +1878,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1878
1878
|
}, "strip", z.ZodTypeAny, {
|
|
1879
1879
|
title?: string | undefined;
|
|
1880
1880
|
email?: string | undefined;
|
|
1881
|
-
first_name?: string | undefined;
|
|
1882
|
-
last_name?: string | undefined;
|
|
1883
|
-
phone?: string | undefined;
|
|
1884
1881
|
fields?: Record<string, unknown> | undefined;
|
|
1885
1882
|
real_name?: string | undefined;
|
|
1883
|
+
phone?: string | undefined;
|
|
1886
1884
|
skype?: string | undefined;
|
|
1887
1885
|
real_name_normalized?: string | undefined;
|
|
1888
1886
|
display_name?: string | undefined;
|
|
@@ -1893,6 +1891,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1893
1891
|
avatar_hash?: string | undefined;
|
|
1894
1892
|
image_original?: string | undefined;
|
|
1895
1893
|
is_custom_image?: boolean | undefined;
|
|
1894
|
+
first_name?: string | undefined;
|
|
1895
|
+
last_name?: string | undefined;
|
|
1896
1896
|
image_24?: string | undefined;
|
|
1897
1897
|
image_32?: string | undefined;
|
|
1898
1898
|
image_48?: string | undefined;
|
|
@@ -1903,11 +1903,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1903
1903
|
}, {
|
|
1904
1904
|
title?: string | undefined;
|
|
1905
1905
|
email?: string | undefined;
|
|
1906
|
-
first_name?: string | undefined;
|
|
1907
|
-
last_name?: string | undefined;
|
|
1908
|
-
phone?: string | undefined;
|
|
1909
1906
|
fields?: Record<string, unknown> | undefined;
|
|
1910
1907
|
real_name?: string | undefined;
|
|
1908
|
+
phone?: string | undefined;
|
|
1911
1909
|
skype?: string | undefined;
|
|
1912
1910
|
real_name_normalized?: string | undefined;
|
|
1913
1911
|
display_name?: string | undefined;
|
|
@@ -1918,6 +1916,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1918
1916
|
avatar_hash?: string | undefined;
|
|
1919
1917
|
image_original?: string | undefined;
|
|
1920
1918
|
is_custom_image?: boolean | undefined;
|
|
1919
|
+
first_name?: string | undefined;
|
|
1920
|
+
last_name?: string | undefined;
|
|
1921
1921
|
image_24?: string | undefined;
|
|
1922
1922
|
image_32?: string | undefined;
|
|
1923
1923
|
image_48?: string | undefined;
|
|
@@ -1948,11 +1948,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1948
1948
|
profile?: {
|
|
1949
1949
|
title?: string | undefined;
|
|
1950
1950
|
email?: string | undefined;
|
|
1951
|
-
first_name?: string | undefined;
|
|
1952
|
-
last_name?: string | undefined;
|
|
1953
|
-
phone?: string | undefined;
|
|
1954
1951
|
fields?: Record<string, unknown> | undefined;
|
|
1955
1952
|
real_name?: string | undefined;
|
|
1953
|
+
phone?: string | undefined;
|
|
1956
1954
|
skype?: string | undefined;
|
|
1957
1955
|
real_name_normalized?: string | undefined;
|
|
1958
1956
|
display_name?: string | undefined;
|
|
@@ -1963,6 +1961,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1963
1961
|
avatar_hash?: string | undefined;
|
|
1964
1962
|
image_original?: string | undefined;
|
|
1965
1963
|
is_custom_image?: boolean | undefined;
|
|
1964
|
+
first_name?: string | undefined;
|
|
1965
|
+
last_name?: string | undefined;
|
|
1966
1966
|
image_24?: string | undefined;
|
|
1967
1967
|
image_32?: string | undefined;
|
|
1968
1968
|
image_48?: string | undefined;
|
|
@@ -1993,11 +1993,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1993
1993
|
profile?: {
|
|
1994
1994
|
title?: string | undefined;
|
|
1995
1995
|
email?: string | undefined;
|
|
1996
|
-
first_name?: string | undefined;
|
|
1997
|
-
last_name?: string | undefined;
|
|
1998
|
-
phone?: string | undefined;
|
|
1999
1996
|
fields?: Record<string, unknown> | undefined;
|
|
2000
1997
|
real_name?: string | undefined;
|
|
1998
|
+
phone?: string | undefined;
|
|
2001
1999
|
skype?: string | undefined;
|
|
2002
2000
|
real_name_normalized?: string | undefined;
|
|
2003
2001
|
display_name?: string | undefined;
|
|
@@ -2008,6 +2006,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2008
2006
|
avatar_hash?: string | undefined;
|
|
2009
2007
|
image_original?: string | undefined;
|
|
2010
2008
|
is_custom_image?: boolean | undefined;
|
|
2009
|
+
first_name?: string | undefined;
|
|
2010
|
+
last_name?: string | undefined;
|
|
2011
2011
|
image_24?: string | undefined;
|
|
2012
2012
|
image_32?: string | undefined;
|
|
2013
2013
|
image_48?: string | undefined;
|
|
@@ -2046,11 +2046,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2046
2046
|
profile?: {
|
|
2047
2047
|
title?: string | undefined;
|
|
2048
2048
|
email?: string | undefined;
|
|
2049
|
-
first_name?: string | undefined;
|
|
2050
|
-
last_name?: string | undefined;
|
|
2051
|
-
phone?: string | undefined;
|
|
2052
2049
|
fields?: Record<string, unknown> | undefined;
|
|
2053
2050
|
real_name?: string | undefined;
|
|
2051
|
+
phone?: string | undefined;
|
|
2054
2052
|
skype?: string | undefined;
|
|
2055
2053
|
real_name_normalized?: string | undefined;
|
|
2056
2054
|
display_name?: string | undefined;
|
|
@@ -2061,6 +2059,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2061
2059
|
avatar_hash?: string | undefined;
|
|
2062
2060
|
image_original?: string | undefined;
|
|
2063
2061
|
is_custom_image?: boolean | undefined;
|
|
2062
|
+
first_name?: string | undefined;
|
|
2063
|
+
last_name?: string | undefined;
|
|
2064
2064
|
image_24?: string | undefined;
|
|
2065
2065
|
image_32?: string | undefined;
|
|
2066
2066
|
image_48?: string | undefined;
|
|
@@ -2097,11 +2097,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2097
2097
|
profile?: {
|
|
2098
2098
|
title?: string | undefined;
|
|
2099
2099
|
email?: string | undefined;
|
|
2100
|
-
first_name?: string | undefined;
|
|
2101
|
-
last_name?: string | undefined;
|
|
2102
|
-
phone?: string | undefined;
|
|
2103
2100
|
fields?: Record<string, unknown> | undefined;
|
|
2104
2101
|
real_name?: string | undefined;
|
|
2102
|
+
phone?: string | undefined;
|
|
2105
2103
|
skype?: string | undefined;
|
|
2106
2104
|
real_name_normalized?: string | undefined;
|
|
2107
2105
|
display_name?: string | undefined;
|
|
@@ -2112,6 +2110,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2112
2110
|
avatar_hash?: string | undefined;
|
|
2113
2111
|
image_original?: string | undefined;
|
|
2114
2112
|
is_custom_image?: boolean | undefined;
|
|
2113
|
+
first_name?: string | undefined;
|
|
2114
|
+
last_name?: string | undefined;
|
|
2115
2115
|
image_24?: string | undefined;
|
|
2116
2116
|
image_32?: string | undefined;
|
|
2117
2117
|
image_48?: string | undefined;
|
|
@@ -2171,11 +2171,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2171
2171
|
}, "strip", z.ZodTypeAny, {
|
|
2172
2172
|
title?: string | undefined;
|
|
2173
2173
|
email?: string | undefined;
|
|
2174
|
-
first_name?: string | undefined;
|
|
2175
|
-
last_name?: string | undefined;
|
|
2176
|
-
phone?: string | undefined;
|
|
2177
2174
|
fields?: Record<string, unknown> | undefined;
|
|
2178
2175
|
real_name?: string | undefined;
|
|
2176
|
+
phone?: string | undefined;
|
|
2179
2177
|
skype?: string | undefined;
|
|
2180
2178
|
real_name_normalized?: string | undefined;
|
|
2181
2179
|
display_name?: string | undefined;
|
|
@@ -2186,6 +2184,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2186
2184
|
avatar_hash?: string | undefined;
|
|
2187
2185
|
image_original?: string | undefined;
|
|
2188
2186
|
is_custom_image?: boolean | undefined;
|
|
2187
|
+
first_name?: string | undefined;
|
|
2188
|
+
last_name?: string | undefined;
|
|
2189
2189
|
image_24?: string | undefined;
|
|
2190
2190
|
image_32?: string | undefined;
|
|
2191
2191
|
image_48?: string | undefined;
|
|
@@ -2196,11 +2196,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2196
2196
|
}, {
|
|
2197
2197
|
title?: string | undefined;
|
|
2198
2198
|
email?: string | undefined;
|
|
2199
|
-
first_name?: string | undefined;
|
|
2200
|
-
last_name?: string | undefined;
|
|
2201
|
-
phone?: string | undefined;
|
|
2202
2199
|
fields?: Record<string, unknown> | undefined;
|
|
2203
2200
|
real_name?: string | undefined;
|
|
2201
|
+
phone?: string | undefined;
|
|
2204
2202
|
skype?: string | undefined;
|
|
2205
2203
|
real_name_normalized?: string | undefined;
|
|
2206
2204
|
display_name?: string | undefined;
|
|
@@ -2211,6 +2209,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2211
2209
|
avatar_hash?: string | undefined;
|
|
2212
2210
|
image_original?: string | undefined;
|
|
2213
2211
|
is_custom_image?: boolean | undefined;
|
|
2212
|
+
first_name?: string | undefined;
|
|
2213
|
+
last_name?: string | undefined;
|
|
2214
2214
|
image_24?: string | undefined;
|
|
2215
2215
|
image_32?: string | undefined;
|
|
2216
2216
|
image_48?: string | undefined;
|
|
@@ -2241,11 +2241,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2241
2241
|
profile?: {
|
|
2242
2242
|
title?: string | undefined;
|
|
2243
2243
|
email?: string | undefined;
|
|
2244
|
-
first_name?: string | undefined;
|
|
2245
|
-
last_name?: string | undefined;
|
|
2246
|
-
phone?: string | undefined;
|
|
2247
2244
|
fields?: Record<string, unknown> | undefined;
|
|
2248
2245
|
real_name?: string | undefined;
|
|
2246
|
+
phone?: string | undefined;
|
|
2249
2247
|
skype?: string | undefined;
|
|
2250
2248
|
real_name_normalized?: string | undefined;
|
|
2251
2249
|
display_name?: string | undefined;
|
|
@@ -2256,6 +2254,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2256
2254
|
avatar_hash?: string | undefined;
|
|
2257
2255
|
image_original?: string | undefined;
|
|
2258
2256
|
is_custom_image?: boolean | undefined;
|
|
2257
|
+
first_name?: string | undefined;
|
|
2258
|
+
last_name?: string | undefined;
|
|
2259
2259
|
image_24?: string | undefined;
|
|
2260
2260
|
image_32?: string | undefined;
|
|
2261
2261
|
image_48?: string | undefined;
|
|
@@ -2286,11 +2286,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2286
2286
|
profile?: {
|
|
2287
2287
|
title?: string | undefined;
|
|
2288
2288
|
email?: string | undefined;
|
|
2289
|
-
first_name?: string | undefined;
|
|
2290
|
-
last_name?: string | undefined;
|
|
2291
|
-
phone?: string | undefined;
|
|
2292
2289
|
fields?: Record<string, unknown> | undefined;
|
|
2293
2290
|
real_name?: string | undefined;
|
|
2291
|
+
phone?: string | undefined;
|
|
2294
2292
|
skype?: string | undefined;
|
|
2295
2293
|
real_name_normalized?: string | undefined;
|
|
2296
2294
|
display_name?: string | undefined;
|
|
@@ -2301,6 +2299,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2301
2299
|
avatar_hash?: string | undefined;
|
|
2302
2300
|
image_original?: string | undefined;
|
|
2303
2301
|
is_custom_image?: boolean | undefined;
|
|
2302
|
+
first_name?: string | undefined;
|
|
2303
|
+
last_name?: string | undefined;
|
|
2304
2304
|
image_24?: string | undefined;
|
|
2305
2305
|
image_32?: string | undefined;
|
|
2306
2306
|
image_48?: string | undefined;
|
|
@@ -2349,11 +2349,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2349
2349
|
profile?: {
|
|
2350
2350
|
title?: string | undefined;
|
|
2351
2351
|
email?: string | undefined;
|
|
2352
|
-
first_name?: string | undefined;
|
|
2353
|
-
last_name?: string | undefined;
|
|
2354
|
-
phone?: string | undefined;
|
|
2355
2352
|
fields?: Record<string, unknown> | undefined;
|
|
2356
2353
|
real_name?: string | undefined;
|
|
2354
|
+
phone?: string | undefined;
|
|
2357
2355
|
skype?: string | undefined;
|
|
2358
2356
|
real_name_normalized?: string | undefined;
|
|
2359
2357
|
display_name?: string | undefined;
|
|
@@ -2364,6 +2362,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2364
2362
|
avatar_hash?: string | undefined;
|
|
2365
2363
|
image_original?: string | undefined;
|
|
2366
2364
|
is_custom_image?: boolean | undefined;
|
|
2365
|
+
first_name?: string | undefined;
|
|
2366
|
+
last_name?: string | undefined;
|
|
2367
2367
|
image_24?: string | undefined;
|
|
2368
2368
|
image_32?: string | undefined;
|
|
2369
2369
|
image_48?: string | undefined;
|
|
@@ -2403,11 +2403,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2403
2403
|
profile?: {
|
|
2404
2404
|
title?: string | undefined;
|
|
2405
2405
|
email?: string | undefined;
|
|
2406
|
-
first_name?: string | undefined;
|
|
2407
|
-
last_name?: string | undefined;
|
|
2408
|
-
phone?: string | undefined;
|
|
2409
2406
|
fields?: Record<string, unknown> | undefined;
|
|
2410
2407
|
real_name?: string | undefined;
|
|
2408
|
+
phone?: string | undefined;
|
|
2411
2409
|
skype?: string | undefined;
|
|
2412
2410
|
real_name_normalized?: string | undefined;
|
|
2413
2411
|
display_name?: string | undefined;
|
|
@@ -2418,6 +2416,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2418
2416
|
avatar_hash?: string | undefined;
|
|
2419
2417
|
image_original?: string | undefined;
|
|
2420
2418
|
is_custom_image?: boolean | undefined;
|
|
2419
|
+
first_name?: string | undefined;
|
|
2420
|
+
last_name?: string | undefined;
|
|
2421
2421
|
image_24?: string | undefined;
|
|
2422
2422
|
image_32?: string | undefined;
|
|
2423
2423
|
image_48?: string | undefined;
|
|
@@ -2469,12 +2469,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2469
2469
|
count: z.ZodNumber;
|
|
2470
2470
|
}, "strip", z.ZodTypeAny, {
|
|
2471
2471
|
name: string;
|
|
2472
|
-
count: number;
|
|
2473
2472
|
users: string[];
|
|
2473
|
+
count: number;
|
|
2474
2474
|
}, {
|
|
2475
2475
|
name: string;
|
|
2476
|
-
count: number;
|
|
2477
2476
|
users: string[];
|
|
2477
|
+
count: number;
|
|
2478
2478
|
}>, "many">>;
|
|
2479
2479
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2480
2480
|
id: z.ZodString;
|
|
@@ -2527,18 +2527,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2527
2527
|
}>, "many">>;
|
|
2528
2528
|
}, "strip", z.ZodTypeAny, {
|
|
2529
2529
|
type: string;
|
|
2530
|
-
username?: string | undefined;
|
|
2531
2530
|
text?: string | undefined;
|
|
2532
|
-
|
|
2533
|
-
name: string;
|
|
2534
|
-
count: number;
|
|
2535
|
-
users: string[];
|
|
2536
|
-
}[] | undefined;
|
|
2531
|
+
username?: string | undefined;
|
|
2537
2532
|
ts?: string | undefined;
|
|
2538
|
-
user?: string | undefined;
|
|
2539
2533
|
attachments?: unknown[] | undefined;
|
|
2540
2534
|
blocks?: unknown[] | undefined;
|
|
2541
2535
|
thread_ts?: string | undefined;
|
|
2536
|
+
user?: string | undefined;
|
|
2542
2537
|
bot_id?: string | undefined;
|
|
2543
2538
|
bot_profile?: {
|
|
2544
2539
|
name?: string | undefined;
|
|
@@ -2550,6 +2545,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2550
2545
|
reply_users?: string[] | undefined;
|
|
2551
2546
|
is_locked?: boolean | undefined;
|
|
2552
2547
|
subscribed?: boolean | undefined;
|
|
2548
|
+
reactions?: {
|
|
2549
|
+
name: string;
|
|
2550
|
+
users: string[];
|
|
2551
|
+
count: number;
|
|
2552
|
+
}[] | undefined;
|
|
2553
2553
|
files?: {
|
|
2554
2554
|
id: string;
|
|
2555
2555
|
title?: string | undefined;
|
|
@@ -2569,18 +2569,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2569
2569
|
}[] | undefined;
|
|
2570
2570
|
}, {
|
|
2571
2571
|
type: string;
|
|
2572
|
-
username?: string | undefined;
|
|
2573
2572
|
text?: string | undefined;
|
|
2574
|
-
|
|
2575
|
-
name: string;
|
|
2576
|
-
count: number;
|
|
2577
|
-
users: string[];
|
|
2578
|
-
}[] | undefined;
|
|
2573
|
+
username?: string | undefined;
|
|
2579
2574
|
ts?: string | undefined;
|
|
2580
|
-
user?: string | undefined;
|
|
2581
2575
|
attachments?: unknown[] | undefined;
|
|
2582
2576
|
blocks?: unknown[] | undefined;
|
|
2583
2577
|
thread_ts?: string | undefined;
|
|
2578
|
+
user?: string | undefined;
|
|
2584
2579
|
bot_id?: string | undefined;
|
|
2585
2580
|
bot_profile?: {
|
|
2586
2581
|
name?: string | undefined;
|
|
@@ -2592,6 +2587,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2592
2587
|
reply_users?: string[] | undefined;
|
|
2593
2588
|
is_locked?: boolean | undefined;
|
|
2594
2589
|
subscribed?: boolean | undefined;
|
|
2590
|
+
reactions?: {
|
|
2591
|
+
name: string;
|
|
2592
|
+
users: string[];
|
|
2593
|
+
count: number;
|
|
2594
|
+
}[] | undefined;
|
|
2595
2595
|
files?: {
|
|
2596
2596
|
id: string;
|
|
2597
2597
|
title?: string | undefined;
|
|
@@ -2625,20 +2625,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2625
2625
|
error: string;
|
|
2626
2626
|
operation: "get_conversation_history";
|
|
2627
2627
|
ok: boolean;
|
|
2628
|
+
response_metadata?: {
|
|
2629
|
+
next_cursor: string;
|
|
2630
|
+
} | undefined;
|
|
2628
2631
|
messages?: {
|
|
2629
2632
|
type: string;
|
|
2630
|
-
username?: string | undefined;
|
|
2631
2633
|
text?: string | undefined;
|
|
2632
|
-
|
|
2633
|
-
name: string;
|
|
2634
|
-
count: number;
|
|
2635
|
-
users: string[];
|
|
2636
|
-
}[] | undefined;
|
|
2634
|
+
username?: string | undefined;
|
|
2637
2635
|
ts?: string | undefined;
|
|
2638
|
-
user?: string | undefined;
|
|
2639
2636
|
attachments?: unknown[] | undefined;
|
|
2640
2637
|
blocks?: unknown[] | undefined;
|
|
2641
2638
|
thread_ts?: string | undefined;
|
|
2639
|
+
user?: string | undefined;
|
|
2642
2640
|
bot_id?: string | undefined;
|
|
2643
2641
|
bot_profile?: {
|
|
2644
2642
|
name?: string | undefined;
|
|
@@ -2650,6 +2648,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2650
2648
|
reply_users?: string[] | undefined;
|
|
2651
2649
|
is_locked?: boolean | undefined;
|
|
2652
2650
|
subscribed?: boolean | undefined;
|
|
2651
|
+
reactions?: {
|
|
2652
|
+
name: string;
|
|
2653
|
+
users: string[];
|
|
2654
|
+
count: number;
|
|
2655
|
+
}[] | undefined;
|
|
2653
2656
|
files?: {
|
|
2654
2657
|
id: string;
|
|
2655
2658
|
title?: string | undefined;
|
|
@@ -2668,29 +2671,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2668
2671
|
permalink?: string | undefined;
|
|
2669
2672
|
}[] | undefined;
|
|
2670
2673
|
}[] | undefined;
|
|
2671
|
-
response_metadata?: {
|
|
2672
|
-
next_cursor: string;
|
|
2673
|
-
} | undefined;
|
|
2674
2674
|
has_more?: boolean | undefined;
|
|
2675
2675
|
}, {
|
|
2676
2676
|
success: boolean;
|
|
2677
2677
|
error: string;
|
|
2678
2678
|
operation: "get_conversation_history";
|
|
2679
2679
|
ok: boolean;
|
|
2680
|
+
response_metadata?: {
|
|
2681
|
+
next_cursor: string;
|
|
2682
|
+
} | undefined;
|
|
2680
2683
|
messages?: {
|
|
2681
2684
|
type: string;
|
|
2682
|
-
username?: string | undefined;
|
|
2683
2685
|
text?: string | undefined;
|
|
2684
|
-
|
|
2685
|
-
name: string;
|
|
2686
|
-
count: number;
|
|
2687
|
-
users: string[];
|
|
2688
|
-
}[] | undefined;
|
|
2686
|
+
username?: string | undefined;
|
|
2689
2687
|
ts?: string | undefined;
|
|
2690
|
-
user?: string | undefined;
|
|
2691
2688
|
attachments?: unknown[] | undefined;
|
|
2692
2689
|
blocks?: unknown[] | undefined;
|
|
2693
2690
|
thread_ts?: string | undefined;
|
|
2691
|
+
user?: string | undefined;
|
|
2694
2692
|
bot_id?: string | undefined;
|
|
2695
2693
|
bot_profile?: {
|
|
2696
2694
|
name?: string | undefined;
|
|
@@ -2702,6 +2700,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2702
2700
|
reply_users?: string[] | undefined;
|
|
2703
2701
|
is_locked?: boolean | undefined;
|
|
2704
2702
|
subscribed?: boolean | undefined;
|
|
2703
|
+
reactions?: {
|
|
2704
|
+
name: string;
|
|
2705
|
+
users: string[];
|
|
2706
|
+
count: number;
|
|
2707
|
+
}[] | undefined;
|
|
2705
2708
|
files?: {
|
|
2706
2709
|
id: string;
|
|
2707
2710
|
title?: string | undefined;
|
|
@@ -2720,9 +2723,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2720
2723
|
permalink?: string | undefined;
|
|
2721
2724
|
}[] | undefined;
|
|
2722
2725
|
}[] | undefined;
|
|
2723
|
-
response_metadata?: {
|
|
2724
|
-
next_cursor: string;
|
|
2725
|
-
} | undefined;
|
|
2726
2726
|
has_more?: boolean | undefined;
|
|
2727
2727
|
}>, z.ZodObject<{
|
|
2728
2728
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -2757,12 +2757,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2757
2757
|
count: z.ZodNumber;
|
|
2758
2758
|
}, "strip", z.ZodTypeAny, {
|
|
2759
2759
|
name: string;
|
|
2760
|
-
count: number;
|
|
2761
2760
|
users: string[];
|
|
2761
|
+
count: number;
|
|
2762
2762
|
}, {
|
|
2763
2763
|
name: string;
|
|
2764
|
-
count: number;
|
|
2765
2764
|
users: string[];
|
|
2765
|
+
count: number;
|
|
2766
2766
|
}>, "many">>;
|
|
2767
2767
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2768
2768
|
id: z.ZodString;
|
|
@@ -2815,18 +2815,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2815
2815
|
}>, "many">>;
|
|
2816
2816
|
}, "strip", z.ZodTypeAny, {
|
|
2817
2817
|
type: string;
|
|
2818
|
-
username?: string | undefined;
|
|
2819
2818
|
text?: string | undefined;
|
|
2820
|
-
|
|
2821
|
-
name: string;
|
|
2822
|
-
count: number;
|
|
2823
|
-
users: string[];
|
|
2824
|
-
}[] | undefined;
|
|
2819
|
+
username?: string | undefined;
|
|
2825
2820
|
ts?: string | undefined;
|
|
2826
|
-
user?: string | undefined;
|
|
2827
2821
|
attachments?: unknown[] | undefined;
|
|
2828
2822
|
blocks?: unknown[] | undefined;
|
|
2829
2823
|
thread_ts?: string | undefined;
|
|
2824
|
+
user?: string | undefined;
|
|
2830
2825
|
bot_id?: string | undefined;
|
|
2831
2826
|
bot_profile?: {
|
|
2832
2827
|
name?: string | undefined;
|
|
@@ -2838,6 +2833,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2838
2833
|
reply_users?: string[] | undefined;
|
|
2839
2834
|
is_locked?: boolean | undefined;
|
|
2840
2835
|
subscribed?: boolean | undefined;
|
|
2836
|
+
reactions?: {
|
|
2837
|
+
name: string;
|
|
2838
|
+
users: string[];
|
|
2839
|
+
count: number;
|
|
2840
|
+
}[] | undefined;
|
|
2841
2841
|
files?: {
|
|
2842
2842
|
id: string;
|
|
2843
2843
|
title?: string | undefined;
|
|
@@ -2857,18 +2857,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2857
2857
|
}[] | undefined;
|
|
2858
2858
|
}, {
|
|
2859
2859
|
type: string;
|
|
2860
|
-
username?: string | undefined;
|
|
2861
2860
|
text?: string | undefined;
|
|
2862
|
-
|
|
2863
|
-
name: string;
|
|
2864
|
-
count: number;
|
|
2865
|
-
users: string[];
|
|
2866
|
-
}[] | undefined;
|
|
2861
|
+
username?: string | undefined;
|
|
2867
2862
|
ts?: string | undefined;
|
|
2868
|
-
user?: string | undefined;
|
|
2869
2863
|
attachments?: unknown[] | undefined;
|
|
2870
2864
|
blocks?: unknown[] | undefined;
|
|
2871
2865
|
thread_ts?: string | undefined;
|
|
2866
|
+
user?: string | undefined;
|
|
2872
2867
|
bot_id?: string | undefined;
|
|
2873
2868
|
bot_profile?: {
|
|
2874
2869
|
name?: string | undefined;
|
|
@@ -2880,6 +2875,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2880
2875
|
reply_users?: string[] | undefined;
|
|
2881
2876
|
is_locked?: boolean | undefined;
|
|
2882
2877
|
subscribed?: boolean | undefined;
|
|
2878
|
+
reactions?: {
|
|
2879
|
+
name: string;
|
|
2880
|
+
users: string[];
|
|
2881
|
+
count: number;
|
|
2882
|
+
}[] | undefined;
|
|
2883
2883
|
files?: {
|
|
2884
2884
|
id: string;
|
|
2885
2885
|
title?: string | undefined;
|
|
@@ -2913,20 +2913,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2913
2913
|
error: string;
|
|
2914
2914
|
operation: "get_thread_replies";
|
|
2915
2915
|
ok: boolean;
|
|
2916
|
+
response_metadata?: {
|
|
2917
|
+
next_cursor: string;
|
|
2918
|
+
} | undefined;
|
|
2916
2919
|
messages?: {
|
|
2917
2920
|
type: string;
|
|
2918
|
-
username?: string | undefined;
|
|
2919
2921
|
text?: string | undefined;
|
|
2920
|
-
|
|
2921
|
-
name: string;
|
|
2922
|
-
count: number;
|
|
2923
|
-
users: string[];
|
|
2924
|
-
}[] | undefined;
|
|
2922
|
+
username?: string | undefined;
|
|
2925
2923
|
ts?: string | undefined;
|
|
2926
|
-
user?: string | undefined;
|
|
2927
2924
|
attachments?: unknown[] | undefined;
|
|
2928
2925
|
blocks?: unknown[] | undefined;
|
|
2929
2926
|
thread_ts?: string | undefined;
|
|
2927
|
+
user?: string | undefined;
|
|
2930
2928
|
bot_id?: string | undefined;
|
|
2931
2929
|
bot_profile?: {
|
|
2932
2930
|
name?: string | undefined;
|
|
@@ -2938,6 +2936,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2938
2936
|
reply_users?: string[] | undefined;
|
|
2939
2937
|
is_locked?: boolean | undefined;
|
|
2940
2938
|
subscribed?: boolean | undefined;
|
|
2939
|
+
reactions?: {
|
|
2940
|
+
name: string;
|
|
2941
|
+
users: string[];
|
|
2942
|
+
count: number;
|
|
2943
|
+
}[] | undefined;
|
|
2941
2944
|
files?: {
|
|
2942
2945
|
id: string;
|
|
2943
2946
|
title?: string | undefined;
|
|
@@ -2956,29 +2959,24 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2956
2959
|
permalink?: string | undefined;
|
|
2957
2960
|
}[] | undefined;
|
|
2958
2961
|
}[] | undefined;
|
|
2959
|
-
response_metadata?: {
|
|
2960
|
-
next_cursor: string;
|
|
2961
|
-
} | undefined;
|
|
2962
2962
|
has_more?: boolean | undefined;
|
|
2963
2963
|
}, {
|
|
2964
2964
|
success: boolean;
|
|
2965
2965
|
error: string;
|
|
2966
2966
|
operation: "get_thread_replies";
|
|
2967
2967
|
ok: boolean;
|
|
2968
|
+
response_metadata?: {
|
|
2969
|
+
next_cursor: string;
|
|
2970
|
+
} | undefined;
|
|
2968
2971
|
messages?: {
|
|
2969
2972
|
type: string;
|
|
2970
|
-
username?: string | undefined;
|
|
2971
2973
|
text?: string | undefined;
|
|
2972
|
-
|
|
2973
|
-
name: string;
|
|
2974
|
-
count: number;
|
|
2975
|
-
users: string[];
|
|
2976
|
-
}[] | undefined;
|
|
2974
|
+
username?: string | undefined;
|
|
2977
2975
|
ts?: string | undefined;
|
|
2978
|
-
user?: string | undefined;
|
|
2979
2976
|
attachments?: unknown[] | undefined;
|
|
2980
2977
|
blocks?: unknown[] | undefined;
|
|
2981
2978
|
thread_ts?: string | undefined;
|
|
2979
|
+
user?: string | undefined;
|
|
2982
2980
|
bot_id?: string | undefined;
|
|
2983
2981
|
bot_profile?: {
|
|
2984
2982
|
name?: string | undefined;
|
|
@@ -2990,6 +2988,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2990
2988
|
reply_users?: string[] | undefined;
|
|
2991
2989
|
is_locked?: boolean | undefined;
|
|
2992
2990
|
subscribed?: boolean | undefined;
|
|
2991
|
+
reactions?: {
|
|
2992
|
+
name: string;
|
|
2993
|
+
users: string[];
|
|
2994
|
+
count: number;
|
|
2995
|
+
}[] | undefined;
|
|
2993
2996
|
files?: {
|
|
2994
2997
|
id: string;
|
|
2995
2998
|
title?: string | undefined;
|
|
@@ -3008,9 +3011,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3008
3011
|
permalink?: string | undefined;
|
|
3009
3012
|
}[] | undefined;
|
|
3010
3013
|
}[] | undefined;
|
|
3011
|
-
response_metadata?: {
|
|
3012
|
-
next_cursor: string;
|
|
3013
|
-
} | undefined;
|
|
3014
3014
|
has_more?: boolean | undefined;
|
|
3015
3015
|
}>, z.ZodObject<{
|
|
3016
3016
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -3048,12 +3048,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3048
3048
|
count: z.ZodNumber;
|
|
3049
3049
|
}, "strip", z.ZodTypeAny, {
|
|
3050
3050
|
name: string;
|
|
3051
|
-
count: number;
|
|
3052
3051
|
users: string[];
|
|
3052
|
+
count: number;
|
|
3053
3053
|
}, {
|
|
3054
3054
|
name: string;
|
|
3055
|
-
count: number;
|
|
3056
3055
|
users: string[];
|
|
3056
|
+
count: number;
|
|
3057
3057
|
}>, "many">>;
|
|
3058
3058
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3059
3059
|
id: z.ZodString;
|
|
@@ -3106,18 +3106,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3106
3106
|
}>, "many">>;
|
|
3107
3107
|
}, "strip", z.ZodTypeAny, {
|
|
3108
3108
|
type: string;
|
|
3109
|
-
username?: string | undefined;
|
|
3110
3109
|
text?: string | undefined;
|
|
3111
|
-
|
|
3112
|
-
name: string;
|
|
3113
|
-
count: number;
|
|
3114
|
-
users: string[];
|
|
3115
|
-
}[] | undefined;
|
|
3110
|
+
username?: string | undefined;
|
|
3116
3111
|
ts?: string | undefined;
|
|
3117
|
-
user?: string | undefined;
|
|
3118
3112
|
attachments?: unknown[] | undefined;
|
|
3119
3113
|
blocks?: unknown[] | undefined;
|
|
3120
3114
|
thread_ts?: string | undefined;
|
|
3115
|
+
user?: string | undefined;
|
|
3121
3116
|
bot_id?: string | undefined;
|
|
3122
3117
|
bot_profile?: {
|
|
3123
3118
|
name?: string | undefined;
|
|
@@ -3129,6 +3124,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3129
3124
|
reply_users?: string[] | undefined;
|
|
3130
3125
|
is_locked?: boolean | undefined;
|
|
3131
3126
|
subscribed?: boolean | undefined;
|
|
3127
|
+
reactions?: {
|
|
3128
|
+
name: string;
|
|
3129
|
+
users: string[];
|
|
3130
|
+
count: number;
|
|
3131
|
+
}[] | undefined;
|
|
3132
3132
|
files?: {
|
|
3133
3133
|
id: string;
|
|
3134
3134
|
title?: string | undefined;
|
|
@@ -3148,18 +3148,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3148
3148
|
}[] | undefined;
|
|
3149
3149
|
}, {
|
|
3150
3150
|
type: string;
|
|
3151
|
-
username?: string | undefined;
|
|
3152
3151
|
text?: string | undefined;
|
|
3153
|
-
|
|
3154
|
-
name: string;
|
|
3155
|
-
count: number;
|
|
3156
|
-
users: string[];
|
|
3157
|
-
}[] | undefined;
|
|
3152
|
+
username?: string | undefined;
|
|
3158
3153
|
ts?: string | undefined;
|
|
3159
|
-
user?: string | undefined;
|
|
3160
3154
|
attachments?: unknown[] | undefined;
|
|
3161
3155
|
blocks?: unknown[] | undefined;
|
|
3162
3156
|
thread_ts?: string | undefined;
|
|
3157
|
+
user?: string | undefined;
|
|
3163
3158
|
bot_id?: string | undefined;
|
|
3164
3159
|
bot_profile?: {
|
|
3165
3160
|
name?: string | undefined;
|
|
@@ -3171,6 +3166,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3171
3166
|
reply_users?: string[] | undefined;
|
|
3172
3167
|
is_locked?: boolean | undefined;
|
|
3173
3168
|
subscribed?: boolean | undefined;
|
|
3169
|
+
reactions?: {
|
|
3170
|
+
name: string;
|
|
3171
|
+
users: string[];
|
|
3172
|
+
count: number;
|
|
3173
|
+
}[] | undefined;
|
|
3174
3174
|
files?: {
|
|
3175
3175
|
id: string;
|
|
3176
3176
|
title?: string | undefined;
|
|
@@ -3198,18 +3198,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3198
3198
|
ok: boolean;
|
|
3199
3199
|
message?: {
|
|
3200
3200
|
type: string;
|
|
3201
|
-
username?: string | undefined;
|
|
3202
3201
|
text?: string | undefined;
|
|
3203
|
-
|
|
3204
|
-
name: string;
|
|
3205
|
-
count: number;
|
|
3206
|
-
users: string[];
|
|
3207
|
-
}[] | undefined;
|
|
3202
|
+
username?: string | undefined;
|
|
3208
3203
|
ts?: string | undefined;
|
|
3209
|
-
user?: string | undefined;
|
|
3210
3204
|
attachments?: unknown[] | undefined;
|
|
3211
3205
|
blocks?: unknown[] | undefined;
|
|
3212
3206
|
thread_ts?: string | undefined;
|
|
3207
|
+
user?: string | undefined;
|
|
3213
3208
|
bot_id?: string | undefined;
|
|
3214
3209
|
bot_profile?: {
|
|
3215
3210
|
name?: string | undefined;
|
|
@@ -3221,6 +3216,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3221
3216
|
reply_users?: string[] | undefined;
|
|
3222
3217
|
is_locked?: boolean | undefined;
|
|
3223
3218
|
subscribed?: boolean | undefined;
|
|
3219
|
+
reactions?: {
|
|
3220
|
+
name: string;
|
|
3221
|
+
users: string[];
|
|
3222
|
+
count: number;
|
|
3223
|
+
}[] | undefined;
|
|
3224
3224
|
files?: {
|
|
3225
3225
|
id: string;
|
|
3226
3226
|
title?: string | undefined;
|
|
@@ -3239,9 +3239,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3239
3239
|
permalink?: string | undefined;
|
|
3240
3240
|
}[] | undefined;
|
|
3241
3241
|
} | undefined;
|
|
3242
|
+
channel?: string | undefined;
|
|
3242
3243
|
text?: string | undefined;
|
|
3243
3244
|
ts?: string | undefined;
|
|
3244
|
-
channel?: string | undefined;
|
|
3245
3245
|
}, {
|
|
3246
3246
|
success: boolean;
|
|
3247
3247
|
error: string;
|
|
@@ -3249,18 +3249,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3249
3249
|
ok: boolean;
|
|
3250
3250
|
message?: {
|
|
3251
3251
|
type: string;
|
|
3252
|
-
username?: string | undefined;
|
|
3253
3252
|
text?: string | undefined;
|
|
3254
|
-
|
|
3255
|
-
name: string;
|
|
3256
|
-
count: number;
|
|
3257
|
-
users: string[];
|
|
3258
|
-
}[] | undefined;
|
|
3253
|
+
username?: string | undefined;
|
|
3259
3254
|
ts?: string | undefined;
|
|
3260
|
-
user?: string | undefined;
|
|
3261
3255
|
attachments?: unknown[] | undefined;
|
|
3262
3256
|
blocks?: unknown[] | undefined;
|
|
3263
3257
|
thread_ts?: string | undefined;
|
|
3258
|
+
user?: string | undefined;
|
|
3264
3259
|
bot_id?: string | undefined;
|
|
3265
3260
|
bot_profile?: {
|
|
3266
3261
|
name?: string | undefined;
|
|
@@ -3272,6 +3267,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3272
3267
|
reply_users?: string[] | undefined;
|
|
3273
3268
|
is_locked?: boolean | undefined;
|
|
3274
3269
|
subscribed?: boolean | undefined;
|
|
3270
|
+
reactions?: {
|
|
3271
|
+
name: string;
|
|
3272
|
+
users: string[];
|
|
3273
|
+
count: number;
|
|
3274
|
+
}[] | undefined;
|
|
3275
3275
|
files?: {
|
|
3276
3276
|
id: string;
|
|
3277
3277
|
title?: string | undefined;
|
|
@@ -3290,9 +3290,9 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3290
3290
|
permalink?: string | undefined;
|
|
3291
3291
|
}[] | undefined;
|
|
3292
3292
|
} | undefined;
|
|
3293
|
+
channel?: string | undefined;
|
|
3293
3294
|
text?: string | undefined;
|
|
3294
3295
|
ts?: string | undefined;
|
|
3295
|
-
channel?: string | undefined;
|
|
3296
3296
|
}>, z.ZodObject<{
|
|
3297
3297
|
operation: z.ZodLiteral<"delete_message">;
|
|
3298
3298
|
ok: z.ZodBoolean;
|
|
@@ -3305,15 +3305,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3305
3305
|
error: string;
|
|
3306
3306
|
operation: "delete_message";
|
|
3307
3307
|
ok: boolean;
|
|
3308
|
-
ts?: string | undefined;
|
|
3309
3308
|
channel?: string | undefined;
|
|
3309
|
+
ts?: string | undefined;
|
|
3310
3310
|
}, {
|
|
3311
3311
|
success: boolean;
|
|
3312
3312
|
error: string;
|
|
3313
3313
|
operation: "delete_message";
|
|
3314
3314
|
ok: boolean;
|
|
3315
|
-
ts?: string | undefined;
|
|
3316
3315
|
channel?: string | undefined;
|
|
3316
|
+
ts?: string | undefined;
|
|
3317
3317
|
}>, z.ZodObject<{
|
|
3318
3318
|
operation: z.ZodLiteral<"add_reaction">;
|
|
3319
3319
|
ok: z.ZodBoolean;
|
|
@@ -3401,11 +3401,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3401
3401
|
id: string;
|
|
3402
3402
|
created: number;
|
|
3403
3403
|
is_archived: boolean;
|
|
3404
|
-
is_private?: boolean | undefined;
|
|
3405
3404
|
is_channel?: boolean | undefined;
|
|
3406
3405
|
is_group?: boolean | undefined;
|
|
3407
3406
|
is_im?: boolean | undefined;
|
|
3408
3407
|
is_mpim?: boolean | undefined;
|
|
3408
|
+
is_private?: boolean | undefined;
|
|
3409
3409
|
is_general?: boolean | undefined;
|
|
3410
3410
|
unlinked?: number | undefined;
|
|
3411
3411
|
name_normalized?: string | undefined;
|
|
@@ -3434,11 +3434,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3434
3434
|
id: string;
|
|
3435
3435
|
created: number;
|
|
3436
3436
|
is_archived: boolean;
|
|
3437
|
-
is_private?: boolean | undefined;
|
|
3438
3437
|
is_channel?: boolean | undefined;
|
|
3439
3438
|
is_group?: boolean | undefined;
|
|
3440
3439
|
is_im?: boolean | undefined;
|
|
3441
3440
|
is_mpim?: boolean | undefined;
|
|
3441
|
+
is_private?: boolean | undefined;
|
|
3442
3442
|
is_general?: boolean | undefined;
|
|
3443
3443
|
unlinked?: number | undefined;
|
|
3444
3444
|
name_normalized?: string | undefined;
|
|
@@ -3476,11 +3476,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3476
3476
|
id: string;
|
|
3477
3477
|
created: number;
|
|
3478
3478
|
is_archived: boolean;
|
|
3479
|
-
is_private?: boolean | undefined;
|
|
3480
3479
|
is_channel?: boolean | undefined;
|
|
3481
3480
|
is_group?: boolean | undefined;
|
|
3482
3481
|
is_im?: boolean | undefined;
|
|
3483
3482
|
is_mpim?: boolean | undefined;
|
|
3483
|
+
is_private?: boolean | undefined;
|
|
3484
3484
|
is_general?: boolean | undefined;
|
|
3485
3485
|
unlinked?: number | undefined;
|
|
3486
3486
|
name_normalized?: string | undefined;
|
|
@@ -3516,11 +3516,11 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3516
3516
|
id: string;
|
|
3517
3517
|
created: number;
|
|
3518
3518
|
is_archived: boolean;
|
|
3519
|
-
is_private?: boolean | undefined;
|
|
3520
3519
|
is_channel?: boolean | undefined;
|
|
3521
3520
|
is_group?: boolean | undefined;
|
|
3522
3521
|
is_im?: boolean | undefined;
|
|
3523
3522
|
is_mpim?: boolean | undefined;
|
|
3523
|
+
is_private?: boolean | undefined;
|
|
3524
3524
|
is_general?: boolean | undefined;
|
|
3525
3525
|
unlinked?: number | undefined;
|
|
3526
3526
|
name_normalized?: string | undefined;
|
|
@@ -3582,17 +3582,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3582
3582
|
team_id: z.ZodString;
|
|
3583
3583
|
}, "strip", z.ZodTypeAny, {
|
|
3584
3584
|
ts: string;
|
|
3585
|
-
team_id: string;
|
|
3586
3585
|
reply_count: number;
|
|
3587
3586
|
reply_users_count: number;
|
|
3588
3587
|
reply_users: string[];
|
|
3588
|
+
team_id: string;
|
|
3589
3589
|
channel_name: string;
|
|
3590
3590
|
}, {
|
|
3591
3591
|
ts: string;
|
|
3592
|
-
team_id: string;
|
|
3593
3592
|
reply_count: number;
|
|
3594
3593
|
reply_users_count: number;
|
|
3595
3594
|
reply_users: string[];
|
|
3595
|
+
team_id: string;
|
|
3596
3596
|
channel_name: string;
|
|
3597
3597
|
}>, "many">>>;
|
|
3598
3598
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -3604,51 +3604,51 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3604
3604
|
team_id: z.ZodString;
|
|
3605
3605
|
}, "strip", z.ZodTypeAny, {
|
|
3606
3606
|
ts: string;
|
|
3607
|
-
team_id: string;
|
|
3608
3607
|
reply_count: number;
|
|
3609
3608
|
reply_users_count: number;
|
|
3610
3609
|
reply_users: string[];
|
|
3610
|
+
team_id: string;
|
|
3611
3611
|
channel_name: string;
|
|
3612
3612
|
}, {
|
|
3613
3613
|
ts: string;
|
|
3614
|
-
team_id: string;
|
|
3615
3614
|
reply_count: number;
|
|
3616
3615
|
reply_users_count: number;
|
|
3617
3616
|
reply_users: string[];
|
|
3617
|
+
team_id: string;
|
|
3618
3618
|
channel_name: string;
|
|
3619
3619
|
}>, "many">>>;
|
|
3620
3620
|
}, "strip", z.ZodTypeAny, {
|
|
3621
|
-
|
|
3621
|
+
public?: Record<string, {
|
|
3622
3622
|
ts: string;
|
|
3623
|
-
team_id: string;
|
|
3624
3623
|
reply_count: number;
|
|
3625
3624
|
reply_users_count: number;
|
|
3626
3625
|
reply_users: string[];
|
|
3626
|
+
team_id: string;
|
|
3627
3627
|
channel_name: string;
|
|
3628
3628
|
}[]> | undefined;
|
|
3629
|
-
|
|
3629
|
+
private?: Record<string, {
|
|
3630
3630
|
ts: string;
|
|
3631
|
-
team_id: string;
|
|
3632
3631
|
reply_count: number;
|
|
3633
3632
|
reply_users_count: number;
|
|
3634
3633
|
reply_users: string[];
|
|
3634
|
+
team_id: string;
|
|
3635
3635
|
channel_name: string;
|
|
3636
3636
|
}[]> | undefined;
|
|
3637
3637
|
}, {
|
|
3638
|
-
|
|
3638
|
+
public?: Record<string, {
|
|
3639
3639
|
ts: string;
|
|
3640
|
-
team_id: string;
|
|
3641
3640
|
reply_count: number;
|
|
3642
3641
|
reply_users_count: number;
|
|
3643
3642
|
reply_users: string[];
|
|
3643
|
+
team_id: string;
|
|
3644
3644
|
channel_name: string;
|
|
3645
3645
|
}[]> | undefined;
|
|
3646
|
-
|
|
3646
|
+
private?: Record<string, {
|
|
3647
3647
|
ts: string;
|
|
3648
|
-
team_id: string;
|
|
3649
3648
|
reply_count: number;
|
|
3650
3649
|
reply_users_count: number;
|
|
3651
3650
|
reply_users: string[];
|
|
3651
|
+
team_id: string;
|
|
3652
3652
|
channel_name: string;
|
|
3653
3653
|
}[]> | undefined;
|
|
3654
3654
|
}>>;
|
|
@@ -3658,17 +3658,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3658
3658
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
3659
3659
|
}, "strip", z.ZodTypeAny, {
|
|
3660
3660
|
name: string;
|
|
3661
|
-
id: string;
|
|
3662
3661
|
username: string;
|
|
3663
|
-
timestamp: number;
|
|
3664
3662
|
user: string;
|
|
3665
|
-
|
|
3663
|
+
timestamp: number;
|
|
3664
|
+
id: string;
|
|
3666
3665
|
mimetype: string;
|
|
3667
3666
|
filetype: string;
|
|
3668
3667
|
size: number;
|
|
3669
3668
|
url_private: string;
|
|
3670
3669
|
url_private_download: string;
|
|
3671
3670
|
permalink: string;
|
|
3671
|
+
created: number;
|
|
3672
3672
|
pretty_type: string;
|
|
3673
3673
|
editable: boolean;
|
|
3674
3674
|
mode: string;
|
|
@@ -3678,42 +3678,42 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3678
3678
|
public_url_shared: boolean;
|
|
3679
3679
|
display_as_bot: boolean;
|
|
3680
3680
|
title?: string | undefined;
|
|
3681
|
+
channels?: string[] | undefined;
|
|
3682
|
+
permalink_public?: string | undefined;
|
|
3681
3683
|
shares?: {
|
|
3682
|
-
|
|
3684
|
+
public?: Record<string, {
|
|
3683
3685
|
ts: string;
|
|
3684
|
-
team_id: string;
|
|
3685
3686
|
reply_count: number;
|
|
3686
3687
|
reply_users_count: number;
|
|
3687
3688
|
reply_users: string[];
|
|
3689
|
+
team_id: string;
|
|
3688
3690
|
channel_name: string;
|
|
3689
3691
|
}[]> | undefined;
|
|
3690
|
-
|
|
3692
|
+
private?: Record<string, {
|
|
3691
3693
|
ts: string;
|
|
3692
|
-
team_id: string;
|
|
3693
3694
|
reply_count: number;
|
|
3694
3695
|
reply_users_count: number;
|
|
3695
3696
|
reply_users: string[];
|
|
3697
|
+
team_id: string;
|
|
3696
3698
|
channel_name: string;
|
|
3697
3699
|
}[]> | undefined;
|
|
3698
3700
|
} | undefined;
|
|
3699
|
-
channels?: string[] | undefined;
|
|
3700
|
-
permalink_public?: string | undefined;
|
|
3701
3701
|
groups?: string[] | undefined;
|
|
3702
3702
|
ims?: string[] | undefined;
|
|
3703
3703
|
has_rich_preview?: boolean | undefined;
|
|
3704
3704
|
}, {
|
|
3705
3705
|
name: string;
|
|
3706
|
-
id: string;
|
|
3707
3706
|
username: string;
|
|
3708
|
-
timestamp: number;
|
|
3709
3707
|
user: string;
|
|
3710
|
-
|
|
3708
|
+
timestamp: number;
|
|
3709
|
+
id: string;
|
|
3711
3710
|
mimetype: string;
|
|
3712
3711
|
filetype: string;
|
|
3713
3712
|
size: number;
|
|
3714
3713
|
url_private: string;
|
|
3715
3714
|
url_private_download: string;
|
|
3716
3715
|
permalink: string;
|
|
3716
|
+
created: number;
|
|
3717
3717
|
pretty_type: string;
|
|
3718
3718
|
editable: boolean;
|
|
3719
3719
|
mode: string;
|
|
@@ -3723,26 +3723,26 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3723
3723
|
public_url_shared: boolean;
|
|
3724
3724
|
display_as_bot: boolean;
|
|
3725
3725
|
title?: string | undefined;
|
|
3726
|
+
channels?: string[] | undefined;
|
|
3727
|
+
permalink_public?: string | undefined;
|
|
3726
3728
|
shares?: {
|
|
3727
|
-
|
|
3729
|
+
public?: Record<string, {
|
|
3728
3730
|
ts: string;
|
|
3729
|
-
team_id: string;
|
|
3730
3731
|
reply_count: number;
|
|
3731
3732
|
reply_users_count: number;
|
|
3732
3733
|
reply_users: string[];
|
|
3734
|
+
team_id: string;
|
|
3733
3735
|
channel_name: string;
|
|
3734
3736
|
}[]> | undefined;
|
|
3735
|
-
|
|
3737
|
+
private?: Record<string, {
|
|
3736
3738
|
ts: string;
|
|
3737
|
-
team_id: string;
|
|
3738
3739
|
reply_count: number;
|
|
3739
3740
|
reply_users_count: number;
|
|
3740
3741
|
reply_users: string[];
|
|
3742
|
+
team_id: string;
|
|
3741
3743
|
channel_name: string;
|
|
3742
3744
|
}[]> | undefined;
|
|
3743
3745
|
} | undefined;
|
|
3744
|
-
channels?: string[] | undefined;
|
|
3745
|
-
permalink_public?: string | undefined;
|
|
3746
3746
|
groups?: string[] | undefined;
|
|
3747
3747
|
ims?: string[] | undefined;
|
|
3748
3748
|
has_rich_preview?: boolean | undefined;
|
|
@@ -3756,17 +3756,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3756
3756
|
ok: boolean;
|
|
3757
3757
|
file?: {
|
|
3758
3758
|
name: string;
|
|
3759
|
-
id: string;
|
|
3760
3759
|
username: string;
|
|
3761
|
-
timestamp: number;
|
|
3762
3760
|
user: string;
|
|
3763
|
-
|
|
3761
|
+
timestamp: number;
|
|
3762
|
+
id: string;
|
|
3764
3763
|
mimetype: string;
|
|
3765
3764
|
filetype: string;
|
|
3766
3765
|
size: number;
|
|
3767
3766
|
url_private: string;
|
|
3768
3767
|
url_private_download: string;
|
|
3769
3768
|
permalink: string;
|
|
3769
|
+
created: number;
|
|
3770
3770
|
pretty_type: string;
|
|
3771
3771
|
editable: boolean;
|
|
3772
3772
|
mode: string;
|
|
@@ -3776,26 +3776,26 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3776
3776
|
public_url_shared: boolean;
|
|
3777
3777
|
display_as_bot: boolean;
|
|
3778
3778
|
title?: string | undefined;
|
|
3779
|
+
channels?: string[] | undefined;
|
|
3780
|
+
permalink_public?: string | undefined;
|
|
3779
3781
|
shares?: {
|
|
3780
|
-
|
|
3782
|
+
public?: Record<string, {
|
|
3781
3783
|
ts: string;
|
|
3782
|
-
team_id: string;
|
|
3783
3784
|
reply_count: number;
|
|
3784
3785
|
reply_users_count: number;
|
|
3785
3786
|
reply_users: string[];
|
|
3787
|
+
team_id: string;
|
|
3786
3788
|
channel_name: string;
|
|
3787
3789
|
}[]> | undefined;
|
|
3788
|
-
|
|
3790
|
+
private?: Record<string, {
|
|
3789
3791
|
ts: string;
|
|
3790
|
-
team_id: string;
|
|
3791
3792
|
reply_count: number;
|
|
3792
3793
|
reply_users_count: number;
|
|
3793
3794
|
reply_users: string[];
|
|
3795
|
+
team_id: string;
|
|
3794
3796
|
channel_name: string;
|
|
3795
3797
|
}[]> | undefined;
|
|
3796
3798
|
} | undefined;
|
|
3797
|
-
channels?: string[] | undefined;
|
|
3798
|
-
permalink_public?: string | undefined;
|
|
3799
3799
|
groups?: string[] | undefined;
|
|
3800
3800
|
ims?: string[] | undefined;
|
|
3801
3801
|
has_rich_preview?: boolean | undefined;
|
|
@@ -3807,17 +3807,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3807
3807
|
ok: boolean;
|
|
3808
3808
|
file?: {
|
|
3809
3809
|
name: string;
|
|
3810
|
-
id: string;
|
|
3811
3810
|
username: string;
|
|
3812
|
-
timestamp: number;
|
|
3813
3811
|
user: string;
|
|
3814
|
-
|
|
3812
|
+
timestamp: number;
|
|
3813
|
+
id: string;
|
|
3815
3814
|
mimetype: string;
|
|
3816
3815
|
filetype: string;
|
|
3817
3816
|
size: number;
|
|
3818
3817
|
url_private: string;
|
|
3819
3818
|
url_private_download: string;
|
|
3820
3819
|
permalink: string;
|
|
3820
|
+
created: number;
|
|
3821
3821
|
pretty_type: string;
|
|
3822
3822
|
editable: boolean;
|
|
3823
3823
|
mode: string;
|
|
@@ -3827,26 +3827,26 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3827
3827
|
public_url_shared: boolean;
|
|
3828
3828
|
display_as_bot: boolean;
|
|
3829
3829
|
title?: string | undefined;
|
|
3830
|
+
channels?: string[] | undefined;
|
|
3831
|
+
permalink_public?: string | undefined;
|
|
3830
3832
|
shares?: {
|
|
3831
|
-
|
|
3833
|
+
public?: Record<string, {
|
|
3832
3834
|
ts: string;
|
|
3833
|
-
team_id: string;
|
|
3834
3835
|
reply_count: number;
|
|
3835
3836
|
reply_users_count: number;
|
|
3836
3837
|
reply_users: string[];
|
|
3838
|
+
team_id: string;
|
|
3837
3839
|
channel_name: string;
|
|
3838
3840
|
}[]> | undefined;
|
|
3839
|
-
|
|
3841
|
+
private?: Record<string, {
|
|
3840
3842
|
ts: string;
|
|
3841
|
-
team_id: string;
|
|
3842
3843
|
reply_count: number;
|
|
3843
3844
|
reply_users_count: number;
|
|
3844
3845
|
reply_users: string[];
|
|
3846
|
+
team_id: string;
|
|
3845
3847
|
channel_name: string;
|
|
3846
3848
|
}[]> | undefined;
|
|
3847
3849
|
} | undefined;
|
|
3848
|
-
channels?: string[] | undefined;
|
|
3849
|
-
permalink_public?: string | undefined;
|
|
3850
3850
|
groups?: string[] | undefined;
|
|
3851
3851
|
ims?: string[] | undefined;
|
|
3852
3852
|
has_rich_preview?: boolean | undefined;
|
|
@@ -4050,42 +4050,42 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4050
4050
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
4051
4051
|
}, "strip", z.ZodTypeAny, {
|
|
4052
4052
|
title?: string | undefined;
|
|
4053
|
-
text?: string | undefined;
|
|
4054
|
-
image_url?: string | undefined;
|
|
4055
|
-
ts?: number | undefined;
|
|
4056
4053
|
fields?: {
|
|
4057
4054
|
value: string;
|
|
4058
4055
|
title: string;
|
|
4059
4056
|
short?: boolean | undefined;
|
|
4060
4057
|
}[] | undefined;
|
|
4058
|
+
text?: string | undefined;
|
|
4061
4059
|
color?: string | undefined;
|
|
4062
4060
|
pretext?: string | undefined;
|
|
4063
4061
|
author_name?: string | undefined;
|
|
4064
4062
|
author_link?: string | undefined;
|
|
4065
4063
|
author_icon?: string | undefined;
|
|
4066
4064
|
title_link?: string | undefined;
|
|
4065
|
+
image_url?: string | undefined;
|
|
4067
4066
|
thumb_url?: string | undefined;
|
|
4068
4067
|
footer?: string | undefined;
|
|
4069
4068
|
footer_icon?: string | undefined;
|
|
4069
|
+
ts?: number | undefined;
|
|
4070
4070
|
}, {
|
|
4071
4071
|
title?: string | undefined;
|
|
4072
|
-
text?: string | undefined;
|
|
4073
|
-
image_url?: string | undefined;
|
|
4074
|
-
ts?: number | undefined;
|
|
4075
4072
|
fields?: {
|
|
4076
4073
|
value: string;
|
|
4077
4074
|
title: string;
|
|
4078
4075
|
short?: boolean | undefined;
|
|
4079
4076
|
}[] | undefined;
|
|
4077
|
+
text?: string | undefined;
|
|
4080
4078
|
color?: string | undefined;
|
|
4081
4079
|
pretext?: string | undefined;
|
|
4082
4080
|
author_name?: string | undefined;
|
|
4083
4081
|
author_link?: string | undefined;
|
|
4084
4082
|
author_icon?: string | undefined;
|
|
4085
4083
|
title_link?: string | undefined;
|
|
4084
|
+
image_url?: string | undefined;
|
|
4086
4085
|
thumb_url?: string | undefined;
|
|
4087
4086
|
footer?: string | undefined;
|
|
4088
4087
|
footer_icon?: string | undefined;
|
|
4088
|
+
ts?: number | undefined;
|
|
4089
4089
|
}>, "many">>;
|
|
4090
4090
|
blocks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4091
4091
|
type: z.ZodString;
|
|
@@ -4113,14 +4113,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4113
4113
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4114
4114
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4115
4115
|
}, "strip", z.ZodTypeAny, {
|
|
4116
|
-
type: "
|
|
4116
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4117
4117
|
emoji?: boolean | undefined;
|
|
4118
4118
|
text?: string | undefined;
|
|
4119
4119
|
image_url?: string | undefined;
|
|
4120
4120
|
verbatim?: boolean | undefined;
|
|
4121
4121
|
alt_text?: string | undefined;
|
|
4122
4122
|
}, {
|
|
4123
|
-
type: "
|
|
4123
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4124
4124
|
emoji?: boolean | undefined;
|
|
4125
4125
|
text?: string | undefined;
|
|
4126
4126
|
image_url?: string | undefined;
|
|
@@ -4153,14 +4153,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4153
4153
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4154
4154
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4155
4155
|
}, "strip", z.ZodTypeAny, {
|
|
4156
|
-
type: "
|
|
4156
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4157
4157
|
emoji?: boolean | undefined;
|
|
4158
4158
|
text?: string | undefined;
|
|
4159
4159
|
image_url?: string | undefined;
|
|
4160
4160
|
verbatim?: boolean | undefined;
|
|
4161
4161
|
alt_text?: string | undefined;
|
|
4162
4162
|
}, {
|
|
4163
|
-
type: "
|
|
4163
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4164
4164
|
emoji?: boolean | undefined;
|
|
4165
4165
|
text?: string | undefined;
|
|
4166
4166
|
image_url?: string | undefined;
|
|
@@ -4193,14 +4193,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4193
4193
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4194
4194
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4195
4195
|
}, "strip", z.ZodTypeAny, {
|
|
4196
|
-
type: "
|
|
4196
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4197
4197
|
emoji?: boolean | undefined;
|
|
4198
4198
|
text?: string | undefined;
|
|
4199
4199
|
image_url?: string | undefined;
|
|
4200
4200
|
verbatim?: boolean | undefined;
|
|
4201
4201
|
alt_text?: string | undefined;
|
|
4202
4202
|
}, {
|
|
4203
|
-
type: "
|
|
4203
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4204
4204
|
emoji?: boolean | undefined;
|
|
4205
4205
|
text?: string | undefined;
|
|
4206
4206
|
image_url?: string | undefined;
|
|
@@ -4214,9 +4214,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4214
4214
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4215
4215
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4216
4216
|
}, "strip", z.ZodTypeAny, {
|
|
4217
|
-
text: string;
|
|
4218
4217
|
operation: "send_message";
|
|
4219
4218
|
channel: string;
|
|
4219
|
+
text: string;
|
|
4220
4220
|
reply_broadcast: boolean;
|
|
4221
4221
|
unfurl_links: boolean;
|
|
4222
4222
|
unfurl_media: boolean;
|
|
@@ -4226,23 +4226,23 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4226
4226
|
icon_url?: string | undefined;
|
|
4227
4227
|
attachments?: {
|
|
4228
4228
|
title?: string | undefined;
|
|
4229
|
-
text?: string | undefined;
|
|
4230
|
-
image_url?: string | undefined;
|
|
4231
|
-
ts?: number | undefined;
|
|
4232
4229
|
fields?: {
|
|
4233
4230
|
value: string;
|
|
4234
4231
|
title: string;
|
|
4235
4232
|
short?: boolean | undefined;
|
|
4236
4233
|
}[] | undefined;
|
|
4234
|
+
text?: string | undefined;
|
|
4237
4235
|
color?: string | undefined;
|
|
4238
4236
|
pretext?: string | undefined;
|
|
4239
4237
|
author_name?: string | undefined;
|
|
4240
4238
|
author_link?: string | undefined;
|
|
4241
4239
|
author_icon?: string | undefined;
|
|
4242
4240
|
title_link?: string | undefined;
|
|
4241
|
+
image_url?: string | undefined;
|
|
4243
4242
|
thumb_url?: string | undefined;
|
|
4244
4243
|
footer?: string | undefined;
|
|
4245
4244
|
footer_icon?: string | undefined;
|
|
4245
|
+
ts?: number | undefined;
|
|
4246
4246
|
}[] | undefined;
|
|
4247
4247
|
blocks?: z.objectOutputType<{
|
|
4248
4248
|
type: z.ZodString;
|
|
@@ -4270,14 +4270,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4270
4270
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4271
4271
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4272
4272
|
}, "strip", z.ZodTypeAny, {
|
|
4273
|
-
type: "
|
|
4273
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4274
4274
|
emoji?: boolean | undefined;
|
|
4275
4275
|
text?: string | undefined;
|
|
4276
4276
|
image_url?: string | undefined;
|
|
4277
4277
|
verbatim?: boolean | undefined;
|
|
4278
4278
|
alt_text?: string | undefined;
|
|
4279
4279
|
}, {
|
|
4280
|
-
type: "
|
|
4280
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4281
4281
|
emoji?: boolean | undefined;
|
|
4282
4282
|
text?: string | undefined;
|
|
4283
4283
|
image_url?: string | undefined;
|
|
@@ -4287,32 +4287,32 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4287
4287
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4288
4288
|
thread_ts?: string | undefined;
|
|
4289
4289
|
}, {
|
|
4290
|
-
text: string;
|
|
4291
4290
|
operation: "send_message";
|
|
4292
4291
|
channel: string;
|
|
4292
|
+
text: string;
|
|
4293
4293
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4294
4294
|
username?: string | undefined;
|
|
4295
4295
|
icon_emoji?: string | undefined;
|
|
4296
4296
|
icon_url?: string | undefined;
|
|
4297
4297
|
attachments?: {
|
|
4298
4298
|
title?: string | undefined;
|
|
4299
|
-
text?: string | undefined;
|
|
4300
|
-
image_url?: string | undefined;
|
|
4301
|
-
ts?: number | undefined;
|
|
4302
4299
|
fields?: {
|
|
4303
4300
|
value: string;
|
|
4304
4301
|
title: string;
|
|
4305
4302
|
short?: boolean | undefined;
|
|
4306
4303
|
}[] | undefined;
|
|
4304
|
+
text?: string | undefined;
|
|
4307
4305
|
color?: string | undefined;
|
|
4308
4306
|
pretext?: string | undefined;
|
|
4309
4307
|
author_name?: string | undefined;
|
|
4310
4308
|
author_link?: string | undefined;
|
|
4311
4309
|
author_icon?: string | undefined;
|
|
4312
4310
|
title_link?: string | undefined;
|
|
4311
|
+
image_url?: string | undefined;
|
|
4313
4312
|
thumb_url?: string | undefined;
|
|
4314
4313
|
footer?: string | undefined;
|
|
4315
4314
|
footer_icon?: string | undefined;
|
|
4315
|
+
ts?: number | undefined;
|
|
4316
4316
|
}[] | undefined;
|
|
4317
4317
|
blocks?: z.objectInputType<{
|
|
4318
4318
|
type: z.ZodString;
|
|
@@ -4340,14 +4340,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4340
4340
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4341
4341
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4342
4342
|
}, "strip", z.ZodTypeAny, {
|
|
4343
|
-
type: "
|
|
4343
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4344
4344
|
emoji?: boolean | undefined;
|
|
4345
4345
|
text?: string | undefined;
|
|
4346
4346
|
image_url?: string | undefined;
|
|
4347
4347
|
verbatim?: boolean | undefined;
|
|
4348
4348
|
alt_text?: string | undefined;
|
|
4349
4349
|
}, {
|
|
4350
|
-
type: "
|
|
4350
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4351
4351
|
emoji?: boolean | undefined;
|
|
4352
4352
|
text?: string | undefined;
|
|
4353
4353
|
image_url?: string | undefined;
|
|
@@ -4367,18 +4367,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4367
4367
|
cursor: z.ZodOptional<z.ZodString>;
|
|
4368
4368
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4369
4369
|
}, "strip", z.ZodTypeAny, {
|
|
4370
|
-
limit: number;
|
|
4371
4370
|
operation: "list_channels";
|
|
4372
4371
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
4373
4372
|
exclude_archived: boolean;
|
|
4373
|
+
limit: number;
|
|
4374
4374
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4375
4375
|
cursor?: string | undefined;
|
|
4376
4376
|
}, {
|
|
4377
4377
|
operation: "list_channels";
|
|
4378
4378
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4379
|
-
limit?: number | undefined;
|
|
4380
4379
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
4381
4380
|
exclude_archived?: boolean | undefined;
|
|
4381
|
+
limit?: number | undefined;
|
|
4382
4382
|
cursor?: string | undefined;
|
|
4383
4383
|
}>, z.ZodObject<{
|
|
4384
4384
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
@@ -4401,13 +4401,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4401
4401
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4402
4402
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4403
4403
|
}, "strip", z.ZodTypeAny, {
|
|
4404
|
-
user: string;
|
|
4405
4404
|
operation: "get_user_info";
|
|
4406
4405
|
include_locale: boolean;
|
|
4406
|
+
user: string;
|
|
4407
4407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4408
4408
|
}, {
|
|
4409
|
-
user: string;
|
|
4410
4409
|
operation: "get_user_info";
|
|
4410
|
+
user: string;
|
|
4411
4411
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4412
4412
|
include_locale?: boolean | undefined;
|
|
4413
4413
|
}>, z.ZodObject<{
|
|
@@ -4417,8 +4417,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4417
4417
|
include_locale: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4418
4418
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4419
4419
|
}, "strip", z.ZodTypeAny, {
|
|
4420
|
-
limit: number;
|
|
4421
4420
|
operation: "list_users";
|
|
4421
|
+
limit: number;
|
|
4422
4422
|
include_locale: boolean;
|
|
4423
4423
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4424
4424
|
cursor?: string | undefined;
|
|
@@ -4439,22 +4439,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4439
4439
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4440
4440
|
}, "strip", z.ZodTypeAny, {
|
|
4441
4441
|
inclusive: boolean;
|
|
4442
|
-
limit: number;
|
|
4443
4442
|
operation: "get_conversation_history";
|
|
4444
4443
|
channel: string;
|
|
4444
|
+
limit: number;
|
|
4445
4445
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4446
|
+
cursor?: string | undefined;
|
|
4446
4447
|
latest?: string | undefined;
|
|
4447
4448
|
oldest?: string | undefined;
|
|
4448
|
-
cursor?: string | undefined;
|
|
4449
4449
|
}, {
|
|
4450
4450
|
operation: "get_conversation_history";
|
|
4451
4451
|
channel: string;
|
|
4452
4452
|
inclusive?: boolean | undefined;
|
|
4453
4453
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4454
4454
|
limit?: number | undefined;
|
|
4455
|
+
cursor?: string | undefined;
|
|
4455
4456
|
latest?: string | undefined;
|
|
4456
4457
|
oldest?: string | undefined;
|
|
4457
|
-
cursor?: string | undefined;
|
|
4458
4458
|
}>, z.ZodObject<{
|
|
4459
4459
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
4460
4460
|
channel: z.ZodString;
|
|
@@ -4467,24 +4467,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4467
4467
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4468
4468
|
}, "strip", z.ZodTypeAny, {
|
|
4469
4469
|
inclusive: boolean;
|
|
4470
|
-
limit: number;
|
|
4471
|
-
ts: string;
|
|
4472
4470
|
operation: "get_thread_replies";
|
|
4473
4471
|
channel: string;
|
|
4472
|
+
ts: string;
|
|
4473
|
+
limit: number;
|
|
4474
4474
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4475
|
+
cursor?: string | undefined;
|
|
4475
4476
|
latest?: string | undefined;
|
|
4476
4477
|
oldest?: string | undefined;
|
|
4477
|
-
cursor?: string | undefined;
|
|
4478
4478
|
}, {
|
|
4479
|
-
ts: string;
|
|
4480
4479
|
operation: "get_thread_replies";
|
|
4481
4480
|
channel: string;
|
|
4481
|
+
ts: string;
|
|
4482
4482
|
inclusive?: boolean | undefined;
|
|
4483
4483
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4484
4484
|
limit?: number | undefined;
|
|
4485
|
+
cursor?: string | undefined;
|
|
4485
4486
|
latest?: string | undefined;
|
|
4486
4487
|
oldest?: string | undefined;
|
|
4487
|
-
cursor?: string | undefined;
|
|
4488
4488
|
}>, z.ZodObject<{
|
|
4489
4489
|
operation: z.ZodLiteral<"update_message">;
|
|
4490
4490
|
channel: z.ZodString;
|
|
@@ -4519,42 +4519,42 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4519
4519
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
4520
4520
|
}, "strip", z.ZodTypeAny, {
|
|
4521
4521
|
title?: string | undefined;
|
|
4522
|
-
text?: string | undefined;
|
|
4523
|
-
image_url?: string | undefined;
|
|
4524
|
-
ts?: number | undefined;
|
|
4525
4522
|
fields?: {
|
|
4526
4523
|
value: string;
|
|
4527
4524
|
title: string;
|
|
4528
4525
|
short?: boolean | undefined;
|
|
4529
4526
|
}[] | undefined;
|
|
4527
|
+
text?: string | undefined;
|
|
4530
4528
|
color?: string | undefined;
|
|
4531
4529
|
pretext?: string | undefined;
|
|
4532
4530
|
author_name?: string | undefined;
|
|
4533
4531
|
author_link?: string | undefined;
|
|
4534
4532
|
author_icon?: string | undefined;
|
|
4535
4533
|
title_link?: string | undefined;
|
|
4534
|
+
image_url?: string | undefined;
|
|
4536
4535
|
thumb_url?: string | undefined;
|
|
4537
4536
|
footer?: string | undefined;
|
|
4538
4537
|
footer_icon?: string | undefined;
|
|
4538
|
+
ts?: number | undefined;
|
|
4539
4539
|
}, {
|
|
4540
4540
|
title?: string | undefined;
|
|
4541
|
-
text?: string | undefined;
|
|
4542
|
-
image_url?: string | undefined;
|
|
4543
|
-
ts?: number | undefined;
|
|
4544
4541
|
fields?: {
|
|
4545
4542
|
value: string;
|
|
4546
4543
|
title: string;
|
|
4547
4544
|
short?: boolean | undefined;
|
|
4548
4545
|
}[] | undefined;
|
|
4546
|
+
text?: string | undefined;
|
|
4549
4547
|
color?: string | undefined;
|
|
4550
4548
|
pretext?: string | undefined;
|
|
4551
4549
|
author_name?: string | undefined;
|
|
4552
4550
|
author_link?: string | undefined;
|
|
4553
4551
|
author_icon?: string | undefined;
|
|
4554
4552
|
title_link?: string | undefined;
|
|
4553
|
+
image_url?: string | undefined;
|
|
4555
4554
|
thumb_url?: string | undefined;
|
|
4556
4555
|
footer?: string | undefined;
|
|
4557
4556
|
footer_icon?: string | undefined;
|
|
4557
|
+
ts?: number | undefined;
|
|
4558
4558
|
}>, "many">>;
|
|
4559
4559
|
blocks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4560
4560
|
type: z.ZodString;
|
|
@@ -4582,14 +4582,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4582
4582
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4583
4583
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4584
4584
|
}, "strip", z.ZodTypeAny, {
|
|
4585
|
-
type: "
|
|
4585
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4586
4586
|
emoji?: boolean | undefined;
|
|
4587
4587
|
text?: string | undefined;
|
|
4588
4588
|
image_url?: string | undefined;
|
|
4589
4589
|
verbatim?: boolean | undefined;
|
|
4590
4590
|
alt_text?: string | undefined;
|
|
4591
4591
|
}, {
|
|
4592
|
-
type: "
|
|
4592
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4593
4593
|
emoji?: boolean | undefined;
|
|
4594
4594
|
text?: string | undefined;
|
|
4595
4595
|
image_url?: string | undefined;
|
|
@@ -4622,14 +4622,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4622
4622
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4623
4623
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4624
4624
|
}, "strip", z.ZodTypeAny, {
|
|
4625
|
-
type: "
|
|
4625
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4626
4626
|
emoji?: boolean | undefined;
|
|
4627
4627
|
text?: string | undefined;
|
|
4628
4628
|
image_url?: string | undefined;
|
|
4629
4629
|
verbatim?: boolean | undefined;
|
|
4630
4630
|
alt_text?: string | undefined;
|
|
4631
4631
|
}, {
|
|
4632
|
-
type: "
|
|
4632
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4633
4633
|
emoji?: boolean | undefined;
|
|
4634
4634
|
text?: string | undefined;
|
|
4635
4635
|
image_url?: string | undefined;
|
|
@@ -4662,14 +4662,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4662
4662
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4663
4663
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4664
4664
|
}, "strip", z.ZodTypeAny, {
|
|
4665
|
-
type: "
|
|
4665
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4666
4666
|
emoji?: boolean | undefined;
|
|
4667
4667
|
text?: string | undefined;
|
|
4668
4668
|
image_url?: string | undefined;
|
|
4669
4669
|
verbatim?: boolean | undefined;
|
|
4670
4670
|
alt_text?: string | undefined;
|
|
4671
4671
|
}, {
|
|
4672
|
-
type: "
|
|
4672
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4673
4673
|
emoji?: boolean | undefined;
|
|
4674
4674
|
text?: string | undefined;
|
|
4675
4675
|
image_url?: string | undefined;
|
|
@@ -4679,30 +4679,30 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4679
4679
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4680
4680
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4681
4681
|
}, "strip", z.ZodTypeAny, {
|
|
4682
|
-
ts: string;
|
|
4683
4682
|
operation: "update_message";
|
|
4684
4683
|
channel: string;
|
|
4684
|
+
ts: string;
|
|
4685
4685
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4686
4686
|
text?: string | undefined;
|
|
4687
4687
|
attachments?: {
|
|
4688
4688
|
title?: string | undefined;
|
|
4689
|
-
text?: string | undefined;
|
|
4690
|
-
image_url?: string | undefined;
|
|
4691
|
-
ts?: number | undefined;
|
|
4692
4689
|
fields?: {
|
|
4693
4690
|
value: string;
|
|
4694
4691
|
title: string;
|
|
4695
4692
|
short?: boolean | undefined;
|
|
4696
4693
|
}[] | undefined;
|
|
4694
|
+
text?: string | undefined;
|
|
4697
4695
|
color?: string | undefined;
|
|
4698
4696
|
pretext?: string | undefined;
|
|
4699
4697
|
author_name?: string | undefined;
|
|
4700
4698
|
author_link?: string | undefined;
|
|
4701
4699
|
author_icon?: string | undefined;
|
|
4702
4700
|
title_link?: string | undefined;
|
|
4701
|
+
image_url?: string | undefined;
|
|
4703
4702
|
thumb_url?: string | undefined;
|
|
4704
4703
|
footer?: string | undefined;
|
|
4705
4704
|
footer_icon?: string | undefined;
|
|
4705
|
+
ts?: number | undefined;
|
|
4706
4706
|
}[] | undefined;
|
|
4707
4707
|
blocks?: z.objectOutputType<{
|
|
4708
4708
|
type: z.ZodString;
|
|
@@ -4730,14 +4730,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4730
4730
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4731
4731
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4732
4732
|
}, "strip", z.ZodTypeAny, {
|
|
4733
|
-
type: "
|
|
4733
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4734
4734
|
emoji?: boolean | undefined;
|
|
4735
4735
|
text?: string | undefined;
|
|
4736
4736
|
image_url?: string | undefined;
|
|
4737
4737
|
verbatim?: boolean | undefined;
|
|
4738
4738
|
alt_text?: string | undefined;
|
|
4739
4739
|
}, {
|
|
4740
|
-
type: "
|
|
4740
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4741
4741
|
emoji?: boolean | undefined;
|
|
4742
4742
|
text?: string | undefined;
|
|
4743
4743
|
image_url?: string | undefined;
|
|
@@ -4746,30 +4746,30 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4746
4746
|
}>, "many">>;
|
|
4747
4747
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4748
4748
|
}, {
|
|
4749
|
-
ts: string;
|
|
4750
4749
|
operation: "update_message";
|
|
4751
4750
|
channel: string;
|
|
4751
|
+
ts: string;
|
|
4752
4752
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4753
4753
|
text?: string | undefined;
|
|
4754
4754
|
attachments?: {
|
|
4755
4755
|
title?: string | undefined;
|
|
4756
|
-
text?: string | undefined;
|
|
4757
|
-
image_url?: string | undefined;
|
|
4758
|
-
ts?: number | undefined;
|
|
4759
4756
|
fields?: {
|
|
4760
4757
|
value: string;
|
|
4761
4758
|
title: string;
|
|
4762
4759
|
short?: boolean | undefined;
|
|
4763
4760
|
}[] | undefined;
|
|
4761
|
+
text?: string | undefined;
|
|
4764
4762
|
color?: string | undefined;
|
|
4765
4763
|
pretext?: string | undefined;
|
|
4766
4764
|
author_name?: string | undefined;
|
|
4767
4765
|
author_link?: string | undefined;
|
|
4768
4766
|
author_icon?: string | undefined;
|
|
4769
4767
|
title_link?: string | undefined;
|
|
4768
|
+
image_url?: string | undefined;
|
|
4770
4769
|
thumb_url?: string | undefined;
|
|
4771
4770
|
footer?: string | undefined;
|
|
4772
4771
|
footer_icon?: string | undefined;
|
|
4772
|
+
ts?: number | undefined;
|
|
4773
4773
|
}[] | undefined;
|
|
4774
4774
|
blocks?: z.objectInputType<{
|
|
4775
4775
|
type: z.ZodString;
|
|
@@ -4797,14 +4797,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4797
4797
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4798
4798
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4799
4799
|
}, "strip", z.ZodTypeAny, {
|
|
4800
|
-
type: "
|
|
4800
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4801
4801
|
emoji?: boolean | undefined;
|
|
4802
4802
|
text?: string | undefined;
|
|
4803
4803
|
image_url?: string | undefined;
|
|
4804
4804
|
verbatim?: boolean | undefined;
|
|
4805
4805
|
alt_text?: string | undefined;
|
|
4806
4806
|
}, {
|
|
4807
|
-
type: "
|
|
4807
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4808
4808
|
emoji?: boolean | undefined;
|
|
4809
4809
|
text?: string | undefined;
|
|
4810
4810
|
image_url?: string | undefined;
|
|
@@ -4818,14 +4818,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4818
4818
|
ts: z.ZodString;
|
|
4819
4819
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4820
4820
|
}, "strip", z.ZodTypeAny, {
|
|
4821
|
-
ts: string;
|
|
4822
4821
|
operation: "delete_message";
|
|
4823
4822
|
channel: string;
|
|
4823
|
+
ts: string;
|
|
4824
4824
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4825
4825
|
}, {
|
|
4826
|
-
ts: string;
|
|
4827
4826
|
operation: "delete_message";
|
|
4828
4827
|
channel: string;
|
|
4828
|
+
ts: string;
|
|
4829
4829
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4830
4830
|
}>, z.ZodObject<{
|
|
4831
4831
|
operation: z.ZodLiteral<"add_reaction">;
|
|
@@ -4835,15 +4835,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4835
4835
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4836
4836
|
}, "strip", z.ZodTypeAny, {
|
|
4837
4837
|
name: string;
|
|
4838
|
-
timestamp: string;
|
|
4839
4838
|
operation: "add_reaction";
|
|
4840
4839
|
channel: string;
|
|
4840
|
+
timestamp: string;
|
|
4841
4841
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4842
4842
|
}, {
|
|
4843
4843
|
name: string;
|
|
4844
|
-
timestamp: string;
|
|
4845
4844
|
operation: "add_reaction";
|
|
4846
4845
|
channel: string;
|
|
4846
|
+
timestamp: string;
|
|
4847
4847
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4848
4848
|
}>, z.ZodObject<{
|
|
4849
4849
|
operation: z.ZodLiteral<"remove_reaction">;
|
|
@@ -4853,15 +4853,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4853
4853
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4854
4854
|
}, "strip", z.ZodTypeAny, {
|
|
4855
4855
|
name: string;
|
|
4856
|
-
timestamp: string;
|
|
4857
4856
|
operation: "remove_reaction";
|
|
4858
4857
|
channel: string;
|
|
4858
|
+
timestamp: string;
|
|
4859
4859
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4860
4860
|
}, {
|
|
4861
4861
|
name: string;
|
|
4862
|
-
timestamp: string;
|
|
4863
4862
|
operation: "remove_reaction";
|
|
4864
4863
|
channel: string;
|
|
4864
|
+
timestamp: string;
|
|
4865
4865
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4866
4866
|
}>, z.ZodObject<{
|
|
4867
4867
|
operation: z.ZodLiteral<"join_channel">;
|
|
@@ -4934,14 +4934,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4934
4934
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4935
4935
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4936
4936
|
}, "strip", z.ZodTypeAny, {
|
|
4937
|
-
type: "
|
|
4937
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4938
4938
|
emoji?: boolean | undefined;
|
|
4939
4939
|
text?: string | undefined;
|
|
4940
4940
|
image_url?: string | undefined;
|
|
4941
4941
|
verbatim?: boolean | undefined;
|
|
4942
4942
|
alt_text?: string | undefined;
|
|
4943
4943
|
}, {
|
|
4944
|
-
type: "
|
|
4944
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4945
4945
|
emoji?: boolean | undefined;
|
|
4946
4946
|
text?: string | undefined;
|
|
4947
4947
|
image_url?: string | undefined;
|
|
@@ -4974,14 +4974,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4974
4974
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4975
4975
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4976
4976
|
}, "strip", z.ZodTypeAny, {
|
|
4977
|
-
type: "
|
|
4977
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4978
4978
|
emoji?: boolean | undefined;
|
|
4979
4979
|
text?: string | undefined;
|
|
4980
4980
|
image_url?: string | undefined;
|
|
4981
4981
|
verbatim?: boolean | undefined;
|
|
4982
4982
|
alt_text?: string | undefined;
|
|
4983
4983
|
}, {
|
|
4984
|
-
type: "
|
|
4984
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
4985
4985
|
emoji?: boolean | undefined;
|
|
4986
4986
|
text?: string | undefined;
|
|
4987
4987
|
image_url?: string | undefined;
|
|
@@ -5014,14 +5014,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5014
5014
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
5015
5015
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
5016
5016
|
}, "strip", z.ZodTypeAny, {
|
|
5017
|
-
type: "
|
|
5017
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5018
5018
|
emoji?: boolean | undefined;
|
|
5019
5019
|
text?: string | undefined;
|
|
5020
5020
|
image_url?: string | undefined;
|
|
5021
5021
|
verbatim?: boolean | undefined;
|
|
5022
5022
|
alt_text?: string | undefined;
|
|
5023
5023
|
}, {
|
|
5024
|
-
type: "
|
|
5024
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5025
5025
|
emoji?: boolean | undefined;
|
|
5026
5026
|
text?: string | undefined;
|
|
5027
5027
|
image_url?: string | undefined;
|
|
@@ -5033,9 +5033,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5033
5033
|
unfurl_media: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5034
5034
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
5035
5035
|
}, "strip", z.ZodTypeAny, {
|
|
5036
|
-
text: string;
|
|
5037
5036
|
operation: "schedule_message";
|
|
5038
5037
|
channel: string;
|
|
5038
|
+
text: string;
|
|
5039
5039
|
unfurl_links: boolean;
|
|
5040
5040
|
unfurl_media: boolean;
|
|
5041
5041
|
post_at: number;
|
|
@@ -5066,14 +5066,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5066
5066
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
5067
5067
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
5068
5068
|
}, "strip", z.ZodTypeAny, {
|
|
5069
|
-
type: "
|
|
5069
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5070
5070
|
emoji?: boolean | undefined;
|
|
5071
5071
|
text?: string | undefined;
|
|
5072
5072
|
image_url?: string | undefined;
|
|
5073
5073
|
verbatim?: boolean | undefined;
|
|
5074
5074
|
alt_text?: string | undefined;
|
|
5075
5075
|
}, {
|
|
5076
|
-
type: "
|
|
5076
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5077
5077
|
emoji?: boolean | undefined;
|
|
5078
5078
|
text?: string | undefined;
|
|
5079
5079
|
image_url?: string | undefined;
|
|
@@ -5083,9 +5083,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5083
5083
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5084
5084
|
thread_ts?: string | undefined;
|
|
5085
5085
|
}, {
|
|
5086
|
-
text: string;
|
|
5087
5086
|
operation: "schedule_message";
|
|
5088
5087
|
channel: string;
|
|
5088
|
+
text: string;
|
|
5089
5089
|
post_at: number;
|
|
5090
5090
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
5091
5091
|
blocks?: z.objectInputType<{
|
|
@@ -5114,14 +5114,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5114
5114
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
5115
5115
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
5116
5116
|
}, "strip", z.ZodTypeAny, {
|
|
5117
|
-
type: "
|
|
5117
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5118
5118
|
emoji?: boolean | undefined;
|
|
5119
5119
|
text?: string | undefined;
|
|
5120
5120
|
image_url?: string | undefined;
|
|
5121
5121
|
verbatim?: boolean | undefined;
|
|
5122
5122
|
alt_text?: string | undefined;
|
|
5123
5123
|
}, {
|
|
5124
|
-
type: "
|
|
5124
|
+
type: "plain_text" | "mrkdwn" | "image";
|
|
5125
5125
|
emoji?: boolean | undefined;
|
|
5126
5126
|
text?: string | undefined;
|
|
5127
5127
|
image_url?: string | undefined;
|
|
@@ -5195,12 +5195,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5195
5195
|
count: z.ZodNumber;
|
|
5196
5196
|
}, "strip", z.ZodTypeAny, {
|
|
5197
5197
|
name: string;
|
|
5198
|
-
count: number;
|
|
5199
5198
|
users: string[];
|
|
5199
|
+
count: number;
|
|
5200
5200
|
}, {
|
|
5201
5201
|
name: string;
|
|
5202
|
-
count: number;
|
|
5203
5202
|
users: string[];
|
|
5203
|
+
count: number;
|
|
5204
5204
|
}>, "many">>;
|
|
5205
5205
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5206
5206
|
id: z.ZodString;
|
|
@@ -5253,18 +5253,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5253
5253
|
}>, "many">>;
|
|
5254
5254
|
}, "strip", z.ZodTypeAny, {
|
|
5255
5255
|
type: string;
|
|
5256
|
-
username?: string | undefined;
|
|
5257
5256
|
text?: string | undefined;
|
|
5258
|
-
|
|
5259
|
-
name: string;
|
|
5260
|
-
count: number;
|
|
5261
|
-
users: string[];
|
|
5262
|
-
}[] | undefined;
|
|
5257
|
+
username?: string | undefined;
|
|
5263
5258
|
ts?: string | undefined;
|
|
5264
|
-
user?: string | undefined;
|
|
5265
5259
|
attachments?: unknown[] | undefined;
|
|
5266
5260
|
blocks?: unknown[] | undefined;
|
|
5267
5261
|
thread_ts?: string | undefined;
|
|
5262
|
+
user?: string | undefined;
|
|
5268
5263
|
bot_id?: string | undefined;
|
|
5269
5264
|
bot_profile?: {
|
|
5270
5265
|
name?: string | undefined;
|
|
@@ -5276,6 +5271,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5276
5271
|
reply_users?: string[] | undefined;
|
|
5277
5272
|
is_locked?: boolean | undefined;
|
|
5278
5273
|
subscribed?: boolean | undefined;
|
|
5274
|
+
reactions?: {
|
|
5275
|
+
name: string;
|
|
5276
|
+
users: string[];
|
|
5277
|
+
count: number;
|
|
5278
|
+
}[] | undefined;
|
|
5279
5279
|
files?: {
|
|
5280
5280
|
id: string;
|
|
5281
5281
|
title?: string | undefined;
|
|
@@ -5295,18 +5295,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5295
5295
|
}[] | undefined;
|
|
5296
5296
|
}, {
|
|
5297
5297
|
type: string;
|
|
5298
|
-
username?: string | undefined;
|
|
5299
5298
|
text?: string | undefined;
|
|
5300
|
-
|
|
5301
|
-
name: string;
|
|
5302
|
-
count: number;
|
|
5303
|
-
users: string[];
|
|
5304
|
-
}[] | undefined;
|
|
5299
|
+
username?: string | undefined;
|
|
5305
5300
|
ts?: string | undefined;
|
|
5306
|
-
user?: string | undefined;
|
|
5307
5301
|
attachments?: unknown[] | undefined;
|
|
5308
5302
|
blocks?: unknown[] | undefined;
|
|
5309
5303
|
thread_ts?: string | undefined;
|
|
5304
|
+
user?: string | undefined;
|
|
5310
5305
|
bot_id?: string | undefined;
|
|
5311
5306
|
bot_profile?: {
|
|
5312
5307
|
name?: string | undefined;
|
|
@@ -5318,6 +5313,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5318
5313
|
reply_users?: string[] | undefined;
|
|
5319
5314
|
is_locked?: boolean | undefined;
|
|
5320
5315
|
subscribed?: boolean | undefined;
|
|
5316
|
+
reactions?: {
|
|
5317
|
+
name: string;
|
|
5318
|
+
users: string[];
|
|
5319
|
+
count: number;
|
|
5320
|
+
}[] | undefined;
|
|
5321
5321
|
files?: {
|
|
5322
5322
|
id: string;
|
|
5323
5323
|
title?: string | undefined;
|
|
@@ -5345,18 +5345,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5345
5345
|
ok: boolean;
|
|
5346
5346
|
message?: {
|
|
5347
5347
|
type: string;
|
|
5348
|
-
username?: string | undefined;
|
|
5349
5348
|
text?: string | undefined;
|
|
5350
|
-
|
|
5351
|
-
name: string;
|
|
5352
|
-
count: number;
|
|
5353
|
-
users: string[];
|
|
5354
|
-
}[] | undefined;
|
|
5349
|
+
username?: string | undefined;
|
|
5355
5350
|
ts?: string | undefined;
|
|
5356
|
-
user?: string | undefined;
|
|
5357
5351
|
attachments?: unknown[] | undefined;
|
|
5358
5352
|
blocks?: unknown[] | undefined;
|
|
5359
5353
|
thread_ts?: string | undefined;
|
|
5354
|
+
user?: string | undefined;
|
|
5360
5355
|
bot_id?: string | undefined;
|
|
5361
5356
|
bot_profile?: {
|
|
5362
5357
|
name?: string | undefined;
|
|
@@ -5368,6 +5363,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5368
5363
|
reply_users?: string[] | undefined;
|
|
5369
5364
|
is_locked?: boolean | undefined;
|
|
5370
5365
|
subscribed?: boolean | undefined;
|
|
5366
|
+
reactions?: {
|
|
5367
|
+
name: string;
|
|
5368
|
+
users: string[];
|
|
5369
|
+
count: number;
|
|
5370
|
+
}[] | undefined;
|
|
5371
5371
|
files?: {
|
|
5372
5372
|
id: string;
|
|
5373
5373
|
title?: string | undefined;
|
|
@@ -5386,8 +5386,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5386
5386
|
permalink?: string | undefined;
|
|
5387
5387
|
}[] | undefined;
|
|
5388
5388
|
} | undefined;
|
|
5389
|
-
ts?: string | undefined;
|
|
5390
5389
|
channel?: string | undefined;
|
|
5390
|
+
ts?: string | undefined;
|
|
5391
5391
|
}, {
|
|
5392
5392
|
success: boolean;
|
|
5393
5393
|
error: string;
|
|
@@ -5395,18 +5395,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5395
5395
|
ok: boolean;
|
|
5396
5396
|
message?: {
|
|
5397
5397
|
type: string;
|
|
5398
|
-
username?: string | undefined;
|
|
5399
5398
|
text?: string | undefined;
|
|
5400
|
-
|
|
5401
|
-
name: string;
|
|
5402
|
-
count: number;
|
|
5403
|
-
users: string[];
|
|
5404
|
-
}[] | undefined;
|
|
5399
|
+
username?: string | undefined;
|
|
5405
5400
|
ts?: string | undefined;
|
|
5406
|
-
user?: string | undefined;
|
|
5407
5401
|
attachments?: unknown[] | undefined;
|
|
5408
5402
|
blocks?: unknown[] | undefined;
|
|
5409
5403
|
thread_ts?: string | undefined;
|
|
5404
|
+
user?: string | undefined;
|
|
5410
5405
|
bot_id?: string | undefined;
|
|
5411
5406
|
bot_profile?: {
|
|
5412
5407
|
name?: string | undefined;
|
|
@@ -5418,6 +5413,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5418
5413
|
reply_users?: string[] | undefined;
|
|
5419
5414
|
is_locked?: boolean | undefined;
|
|
5420
5415
|
subscribed?: boolean | undefined;
|
|
5416
|
+
reactions?: {
|
|
5417
|
+
name: string;
|
|
5418
|
+
users: string[];
|
|
5419
|
+
count: number;
|
|
5420
|
+
}[] | undefined;
|
|
5421
5421
|
files?: {
|
|
5422
5422
|
id: string;
|
|
5423
5423
|
title?: string | undefined;
|
|
@@ -5436,8 +5436,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5436
5436
|
permalink?: string | undefined;
|
|
5437
5437
|
}[] | undefined;
|
|
5438
5438
|
} | undefined;
|
|
5439
|
-
ts?: string | undefined;
|
|
5440
5439
|
channel?: string | undefined;
|
|
5440
|
+
ts?: string | undefined;
|
|
5441
5441
|
}>, z.ZodObject<{
|
|
5442
5442
|
operation: z.ZodLiteral<"list_channels">;
|
|
5443
5443
|
ok: z.ZodBoolean;
|
|
@@ -5495,11 +5495,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5495
5495
|
id: string;
|
|
5496
5496
|
created: number;
|
|
5497
5497
|
is_archived: boolean;
|
|
5498
|
-
is_private?: boolean | undefined;
|
|
5499
5498
|
is_channel?: boolean | undefined;
|
|
5500
5499
|
is_group?: boolean | undefined;
|
|
5501
5500
|
is_im?: boolean | undefined;
|
|
5502
5501
|
is_mpim?: boolean | undefined;
|
|
5502
|
+
is_private?: boolean | undefined;
|
|
5503
5503
|
is_general?: boolean | undefined;
|
|
5504
5504
|
unlinked?: number | undefined;
|
|
5505
5505
|
name_normalized?: string | undefined;
|
|
@@ -5528,11 +5528,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5528
5528
|
id: string;
|
|
5529
5529
|
created: number;
|
|
5530
5530
|
is_archived: boolean;
|
|
5531
|
-
is_private?: boolean | undefined;
|
|
5532
5531
|
is_channel?: boolean | undefined;
|
|
5533
5532
|
is_group?: boolean | undefined;
|
|
5534
5533
|
is_im?: boolean | undefined;
|
|
5535
5534
|
is_mpim?: boolean | undefined;
|
|
5535
|
+
is_private?: boolean | undefined;
|
|
5536
5536
|
is_general?: boolean | undefined;
|
|
5537
5537
|
unlinked?: number | undefined;
|
|
5538
5538
|
name_normalized?: string | undefined;
|
|
@@ -5571,19 +5571,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5571
5571
|
error: string;
|
|
5572
5572
|
operation: "list_channels";
|
|
5573
5573
|
ok: boolean;
|
|
5574
|
-
response_metadata?: {
|
|
5575
|
-
next_cursor: string;
|
|
5576
|
-
} | undefined;
|
|
5577
5574
|
channels?: {
|
|
5578
5575
|
name: string;
|
|
5579
5576
|
id: string;
|
|
5580
5577
|
created: number;
|
|
5581
5578
|
is_archived: boolean;
|
|
5582
|
-
is_private?: boolean | undefined;
|
|
5583
5579
|
is_channel?: boolean | undefined;
|
|
5584
5580
|
is_group?: boolean | undefined;
|
|
5585
5581
|
is_im?: boolean | undefined;
|
|
5586
5582
|
is_mpim?: boolean | undefined;
|
|
5583
|
+
is_private?: boolean | undefined;
|
|
5587
5584
|
is_general?: boolean | undefined;
|
|
5588
5585
|
unlinked?: number | undefined;
|
|
5589
5586
|
name_normalized?: string | undefined;
|
|
@@ -5608,24 +5605,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5608
5605
|
} | undefined;
|
|
5609
5606
|
num_members?: number | undefined;
|
|
5610
5607
|
}[] | undefined;
|
|
5608
|
+
response_metadata?: {
|
|
5609
|
+
next_cursor: string;
|
|
5610
|
+
} | undefined;
|
|
5611
5611
|
}, {
|
|
5612
5612
|
success: boolean;
|
|
5613
5613
|
error: string;
|
|
5614
5614
|
operation: "list_channels";
|
|
5615
5615
|
ok: boolean;
|
|
5616
|
-
response_metadata?: {
|
|
5617
|
-
next_cursor: string;
|
|
5618
|
-
} | undefined;
|
|
5619
5616
|
channels?: {
|
|
5620
5617
|
name: string;
|
|
5621
5618
|
id: string;
|
|
5622
5619
|
created: number;
|
|
5623
5620
|
is_archived: boolean;
|
|
5624
|
-
is_private?: boolean | undefined;
|
|
5625
5621
|
is_channel?: boolean | undefined;
|
|
5626
5622
|
is_group?: boolean | undefined;
|
|
5627
5623
|
is_im?: boolean | undefined;
|
|
5628
5624
|
is_mpim?: boolean | undefined;
|
|
5625
|
+
is_private?: boolean | undefined;
|
|
5629
5626
|
is_general?: boolean | undefined;
|
|
5630
5627
|
unlinked?: number | undefined;
|
|
5631
5628
|
name_normalized?: string | undefined;
|
|
@@ -5650,6 +5647,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5650
5647
|
} | undefined;
|
|
5651
5648
|
num_members?: number | undefined;
|
|
5652
5649
|
}[] | undefined;
|
|
5650
|
+
response_metadata?: {
|
|
5651
|
+
next_cursor: string;
|
|
5652
|
+
} | undefined;
|
|
5653
5653
|
}>, z.ZodObject<{
|
|
5654
5654
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
5655
5655
|
ok: z.ZodBoolean;
|
|
@@ -5707,11 +5707,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5707
5707
|
id: string;
|
|
5708
5708
|
created: number;
|
|
5709
5709
|
is_archived: boolean;
|
|
5710
|
-
is_private?: boolean | undefined;
|
|
5711
5710
|
is_channel?: boolean | undefined;
|
|
5712
5711
|
is_group?: boolean | undefined;
|
|
5713
5712
|
is_im?: boolean | undefined;
|
|
5714
5713
|
is_mpim?: boolean | undefined;
|
|
5714
|
+
is_private?: boolean | undefined;
|
|
5715
5715
|
is_general?: boolean | undefined;
|
|
5716
5716
|
unlinked?: number | undefined;
|
|
5717
5717
|
name_normalized?: string | undefined;
|
|
@@ -5740,11 +5740,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5740
5740
|
id: string;
|
|
5741
5741
|
created: number;
|
|
5742
5742
|
is_archived: boolean;
|
|
5743
|
-
is_private?: boolean | undefined;
|
|
5744
5743
|
is_channel?: boolean | undefined;
|
|
5745
5744
|
is_group?: boolean | undefined;
|
|
5746
5745
|
is_im?: boolean | undefined;
|
|
5747
5746
|
is_mpim?: boolean | undefined;
|
|
5747
|
+
is_private?: boolean | undefined;
|
|
5748
5748
|
is_general?: boolean | undefined;
|
|
5749
5749
|
unlinked?: number | undefined;
|
|
5750
5750
|
name_normalized?: string | undefined;
|
|
@@ -5781,11 +5781,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5781
5781
|
id: string;
|
|
5782
5782
|
created: number;
|
|
5783
5783
|
is_archived: boolean;
|
|
5784
|
-
is_private?: boolean | undefined;
|
|
5785
5784
|
is_channel?: boolean | undefined;
|
|
5786
5785
|
is_group?: boolean | undefined;
|
|
5787
5786
|
is_im?: boolean | undefined;
|
|
5788
5787
|
is_mpim?: boolean | undefined;
|
|
5788
|
+
is_private?: boolean | undefined;
|
|
5789
5789
|
is_general?: boolean | undefined;
|
|
5790
5790
|
unlinked?: number | undefined;
|
|
5791
5791
|
name_normalized?: string | undefined;
|
|
@@ -5820,11 +5820,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5820
5820
|
id: string;
|
|
5821
5821
|
created: number;
|
|
5822
5822
|
is_archived: boolean;
|
|
5823
|
-
is_private?: boolean | undefined;
|
|
5824
5823
|
is_channel?: boolean | undefined;
|
|
5825
5824
|
is_group?: boolean | undefined;
|
|
5826
5825
|
is_im?: boolean | undefined;
|
|
5827
5826
|
is_mpim?: boolean | undefined;
|
|
5827
|
+
is_private?: boolean | undefined;
|
|
5828
5828
|
is_general?: boolean | undefined;
|
|
5829
5829
|
unlinked?: number | undefined;
|
|
5830
5830
|
name_normalized?: string | undefined;
|
|
@@ -5890,11 +5890,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5890
5890
|
}, "strip", z.ZodTypeAny, {
|
|
5891
5891
|
title?: string | undefined;
|
|
5892
5892
|
email?: string | undefined;
|
|
5893
|
-
first_name?: string | undefined;
|
|
5894
|
-
last_name?: string | undefined;
|
|
5895
|
-
phone?: string | undefined;
|
|
5896
5893
|
fields?: Record<string, unknown> | undefined;
|
|
5897
5894
|
real_name?: string | undefined;
|
|
5895
|
+
phone?: string | undefined;
|
|
5898
5896
|
skype?: string | undefined;
|
|
5899
5897
|
real_name_normalized?: string | undefined;
|
|
5900
5898
|
display_name?: string | undefined;
|
|
@@ -5905,6 +5903,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5905
5903
|
avatar_hash?: string | undefined;
|
|
5906
5904
|
image_original?: string | undefined;
|
|
5907
5905
|
is_custom_image?: boolean | undefined;
|
|
5906
|
+
first_name?: string | undefined;
|
|
5907
|
+
last_name?: string | undefined;
|
|
5908
5908
|
image_24?: string | undefined;
|
|
5909
5909
|
image_32?: string | undefined;
|
|
5910
5910
|
image_48?: string | undefined;
|
|
@@ -5915,11 +5915,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5915
5915
|
}, {
|
|
5916
5916
|
title?: string | undefined;
|
|
5917
5917
|
email?: string | undefined;
|
|
5918
|
-
first_name?: string | undefined;
|
|
5919
|
-
last_name?: string | undefined;
|
|
5920
|
-
phone?: string | undefined;
|
|
5921
5918
|
fields?: Record<string, unknown> | undefined;
|
|
5922
5919
|
real_name?: string | undefined;
|
|
5920
|
+
phone?: string | undefined;
|
|
5923
5921
|
skype?: string | undefined;
|
|
5924
5922
|
real_name_normalized?: string | undefined;
|
|
5925
5923
|
display_name?: string | undefined;
|
|
@@ -5930,6 +5928,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5930
5928
|
avatar_hash?: string | undefined;
|
|
5931
5929
|
image_original?: string | undefined;
|
|
5932
5930
|
is_custom_image?: boolean | undefined;
|
|
5931
|
+
first_name?: string | undefined;
|
|
5932
|
+
last_name?: string | undefined;
|
|
5933
5933
|
image_24?: string | undefined;
|
|
5934
5934
|
image_32?: string | undefined;
|
|
5935
5935
|
image_48?: string | undefined;
|
|
@@ -5960,11 +5960,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5960
5960
|
profile?: {
|
|
5961
5961
|
title?: string | undefined;
|
|
5962
5962
|
email?: string | undefined;
|
|
5963
|
-
first_name?: string | undefined;
|
|
5964
|
-
last_name?: string | undefined;
|
|
5965
|
-
phone?: string | undefined;
|
|
5966
5963
|
fields?: Record<string, unknown> | undefined;
|
|
5967
5964
|
real_name?: string | undefined;
|
|
5965
|
+
phone?: string | undefined;
|
|
5968
5966
|
skype?: string | undefined;
|
|
5969
5967
|
real_name_normalized?: string | undefined;
|
|
5970
5968
|
display_name?: string | undefined;
|
|
@@ -5975,6 +5973,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5975
5973
|
avatar_hash?: string | undefined;
|
|
5976
5974
|
image_original?: string | undefined;
|
|
5977
5975
|
is_custom_image?: boolean | undefined;
|
|
5976
|
+
first_name?: string | undefined;
|
|
5977
|
+
last_name?: string | undefined;
|
|
5978
5978
|
image_24?: string | undefined;
|
|
5979
5979
|
image_32?: string | undefined;
|
|
5980
5980
|
image_48?: string | undefined;
|
|
@@ -6005,11 +6005,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6005
6005
|
profile?: {
|
|
6006
6006
|
title?: string | undefined;
|
|
6007
6007
|
email?: string | undefined;
|
|
6008
|
-
first_name?: string | undefined;
|
|
6009
|
-
last_name?: string | undefined;
|
|
6010
|
-
phone?: string | undefined;
|
|
6011
6008
|
fields?: Record<string, unknown> | undefined;
|
|
6012
6009
|
real_name?: string | undefined;
|
|
6010
|
+
phone?: string | undefined;
|
|
6013
6011
|
skype?: string | undefined;
|
|
6014
6012
|
real_name_normalized?: string | undefined;
|
|
6015
6013
|
display_name?: string | undefined;
|
|
@@ -6020,6 +6018,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6020
6018
|
avatar_hash?: string | undefined;
|
|
6021
6019
|
image_original?: string | undefined;
|
|
6022
6020
|
is_custom_image?: boolean | undefined;
|
|
6021
|
+
first_name?: string | undefined;
|
|
6022
|
+
last_name?: string | undefined;
|
|
6023
6023
|
image_24?: string | undefined;
|
|
6024
6024
|
image_32?: string | undefined;
|
|
6025
6025
|
image_48?: string | undefined;
|
|
@@ -6058,11 +6058,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6058
6058
|
profile?: {
|
|
6059
6059
|
title?: string | undefined;
|
|
6060
6060
|
email?: string | undefined;
|
|
6061
|
-
first_name?: string | undefined;
|
|
6062
|
-
last_name?: string | undefined;
|
|
6063
|
-
phone?: string | undefined;
|
|
6064
6061
|
fields?: Record<string, unknown> | undefined;
|
|
6065
6062
|
real_name?: string | undefined;
|
|
6063
|
+
phone?: string | undefined;
|
|
6066
6064
|
skype?: string | undefined;
|
|
6067
6065
|
real_name_normalized?: string | undefined;
|
|
6068
6066
|
display_name?: string | undefined;
|
|
@@ -6073,6 +6071,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6073
6071
|
avatar_hash?: string | undefined;
|
|
6074
6072
|
image_original?: string | undefined;
|
|
6075
6073
|
is_custom_image?: boolean | undefined;
|
|
6074
|
+
first_name?: string | undefined;
|
|
6075
|
+
last_name?: string | undefined;
|
|
6076
6076
|
image_24?: string | undefined;
|
|
6077
6077
|
image_32?: string | undefined;
|
|
6078
6078
|
image_48?: string | undefined;
|
|
@@ -6109,11 +6109,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6109
6109
|
profile?: {
|
|
6110
6110
|
title?: string | undefined;
|
|
6111
6111
|
email?: string | undefined;
|
|
6112
|
-
first_name?: string | undefined;
|
|
6113
|
-
last_name?: string | undefined;
|
|
6114
|
-
phone?: string | undefined;
|
|
6115
6112
|
fields?: Record<string, unknown> | undefined;
|
|
6116
6113
|
real_name?: string | undefined;
|
|
6114
|
+
phone?: string | undefined;
|
|
6117
6115
|
skype?: string | undefined;
|
|
6118
6116
|
real_name_normalized?: string | undefined;
|
|
6119
6117
|
display_name?: string | undefined;
|
|
@@ -6124,6 +6122,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6124
6122
|
avatar_hash?: string | undefined;
|
|
6125
6123
|
image_original?: string | undefined;
|
|
6126
6124
|
is_custom_image?: boolean | undefined;
|
|
6125
|
+
first_name?: string | undefined;
|
|
6126
|
+
last_name?: string | undefined;
|
|
6127
6127
|
image_24?: string | undefined;
|
|
6128
6128
|
image_32?: string | undefined;
|
|
6129
6129
|
image_48?: string | undefined;
|
|
@@ -6183,11 +6183,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6183
6183
|
}, "strip", z.ZodTypeAny, {
|
|
6184
6184
|
title?: string | undefined;
|
|
6185
6185
|
email?: string | undefined;
|
|
6186
|
-
first_name?: string | undefined;
|
|
6187
|
-
last_name?: string | undefined;
|
|
6188
|
-
phone?: string | undefined;
|
|
6189
6186
|
fields?: Record<string, unknown> | undefined;
|
|
6190
6187
|
real_name?: string | undefined;
|
|
6188
|
+
phone?: string | undefined;
|
|
6191
6189
|
skype?: string | undefined;
|
|
6192
6190
|
real_name_normalized?: string | undefined;
|
|
6193
6191
|
display_name?: string | undefined;
|
|
@@ -6198,6 +6196,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6198
6196
|
avatar_hash?: string | undefined;
|
|
6199
6197
|
image_original?: string | undefined;
|
|
6200
6198
|
is_custom_image?: boolean | undefined;
|
|
6199
|
+
first_name?: string | undefined;
|
|
6200
|
+
last_name?: string | undefined;
|
|
6201
6201
|
image_24?: string | undefined;
|
|
6202
6202
|
image_32?: string | undefined;
|
|
6203
6203
|
image_48?: string | undefined;
|
|
@@ -6208,11 +6208,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6208
6208
|
}, {
|
|
6209
6209
|
title?: string | undefined;
|
|
6210
6210
|
email?: string | undefined;
|
|
6211
|
-
first_name?: string | undefined;
|
|
6212
|
-
last_name?: string | undefined;
|
|
6213
|
-
phone?: string | undefined;
|
|
6214
6211
|
fields?: Record<string, unknown> | undefined;
|
|
6215
6212
|
real_name?: string | undefined;
|
|
6213
|
+
phone?: string | undefined;
|
|
6216
6214
|
skype?: string | undefined;
|
|
6217
6215
|
real_name_normalized?: string | undefined;
|
|
6218
6216
|
display_name?: string | undefined;
|
|
@@ -6223,6 +6221,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6223
6221
|
avatar_hash?: string | undefined;
|
|
6224
6222
|
image_original?: string | undefined;
|
|
6225
6223
|
is_custom_image?: boolean | undefined;
|
|
6224
|
+
first_name?: string | undefined;
|
|
6225
|
+
last_name?: string | undefined;
|
|
6226
6226
|
image_24?: string | undefined;
|
|
6227
6227
|
image_32?: string | undefined;
|
|
6228
6228
|
image_48?: string | undefined;
|
|
@@ -6253,11 +6253,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6253
6253
|
profile?: {
|
|
6254
6254
|
title?: string | undefined;
|
|
6255
6255
|
email?: string | undefined;
|
|
6256
|
-
first_name?: string | undefined;
|
|
6257
|
-
last_name?: string | undefined;
|
|
6258
|
-
phone?: string | undefined;
|
|
6259
6256
|
fields?: Record<string, unknown> | undefined;
|
|
6260
6257
|
real_name?: string | undefined;
|
|
6258
|
+
phone?: string | undefined;
|
|
6261
6259
|
skype?: string | undefined;
|
|
6262
6260
|
real_name_normalized?: string | undefined;
|
|
6263
6261
|
display_name?: string | undefined;
|
|
@@ -6268,6 +6266,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6268
6266
|
avatar_hash?: string | undefined;
|
|
6269
6267
|
image_original?: string | undefined;
|
|
6270
6268
|
is_custom_image?: boolean | undefined;
|
|
6269
|
+
first_name?: string | undefined;
|
|
6270
|
+
last_name?: string | undefined;
|
|
6271
6271
|
image_24?: string | undefined;
|
|
6272
6272
|
image_32?: string | undefined;
|
|
6273
6273
|
image_48?: string | undefined;
|
|
@@ -6298,11 +6298,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6298
6298
|
profile?: {
|
|
6299
6299
|
title?: string | undefined;
|
|
6300
6300
|
email?: string | undefined;
|
|
6301
|
-
first_name?: string | undefined;
|
|
6302
|
-
last_name?: string | undefined;
|
|
6303
|
-
phone?: string | undefined;
|
|
6304
6301
|
fields?: Record<string, unknown> | undefined;
|
|
6305
6302
|
real_name?: string | undefined;
|
|
6303
|
+
phone?: string | undefined;
|
|
6306
6304
|
skype?: string | undefined;
|
|
6307
6305
|
real_name_normalized?: string | undefined;
|
|
6308
6306
|
display_name?: string | undefined;
|
|
@@ -6313,6 +6311,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6313
6311
|
avatar_hash?: string | undefined;
|
|
6314
6312
|
image_original?: string | undefined;
|
|
6315
6313
|
is_custom_image?: boolean | undefined;
|
|
6314
|
+
first_name?: string | undefined;
|
|
6315
|
+
last_name?: string | undefined;
|
|
6316
6316
|
image_24?: string | undefined;
|
|
6317
6317
|
image_32?: string | undefined;
|
|
6318
6318
|
image_48?: string | undefined;
|
|
@@ -6361,11 +6361,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6361
6361
|
profile?: {
|
|
6362
6362
|
title?: string | undefined;
|
|
6363
6363
|
email?: string | undefined;
|
|
6364
|
-
first_name?: string | undefined;
|
|
6365
|
-
last_name?: string | undefined;
|
|
6366
|
-
phone?: string | undefined;
|
|
6367
6364
|
fields?: Record<string, unknown> | undefined;
|
|
6368
6365
|
real_name?: string | undefined;
|
|
6366
|
+
phone?: string | undefined;
|
|
6369
6367
|
skype?: string | undefined;
|
|
6370
6368
|
real_name_normalized?: string | undefined;
|
|
6371
6369
|
display_name?: string | undefined;
|
|
@@ -6376,6 +6374,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6376
6374
|
avatar_hash?: string | undefined;
|
|
6377
6375
|
image_original?: string | undefined;
|
|
6378
6376
|
is_custom_image?: boolean | undefined;
|
|
6377
|
+
first_name?: string | undefined;
|
|
6378
|
+
last_name?: string | undefined;
|
|
6379
6379
|
image_24?: string | undefined;
|
|
6380
6380
|
image_32?: string | undefined;
|
|
6381
6381
|
image_48?: string | undefined;
|
|
@@ -6415,11 +6415,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6415
6415
|
profile?: {
|
|
6416
6416
|
title?: string | undefined;
|
|
6417
6417
|
email?: string | undefined;
|
|
6418
|
-
first_name?: string | undefined;
|
|
6419
|
-
last_name?: string | undefined;
|
|
6420
|
-
phone?: string | undefined;
|
|
6421
6418
|
fields?: Record<string, unknown> | undefined;
|
|
6422
6419
|
real_name?: string | undefined;
|
|
6420
|
+
phone?: string | undefined;
|
|
6423
6421
|
skype?: string | undefined;
|
|
6424
6422
|
real_name_normalized?: string | undefined;
|
|
6425
6423
|
display_name?: string | undefined;
|
|
@@ -6430,6 +6428,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6430
6428
|
avatar_hash?: string | undefined;
|
|
6431
6429
|
image_original?: string | undefined;
|
|
6432
6430
|
is_custom_image?: boolean | undefined;
|
|
6431
|
+
first_name?: string | undefined;
|
|
6432
|
+
last_name?: string | undefined;
|
|
6433
6433
|
image_24?: string | undefined;
|
|
6434
6434
|
image_32?: string | undefined;
|
|
6435
6435
|
image_48?: string | undefined;
|
|
@@ -6481,12 +6481,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6481
6481
|
count: z.ZodNumber;
|
|
6482
6482
|
}, "strip", z.ZodTypeAny, {
|
|
6483
6483
|
name: string;
|
|
6484
|
-
count: number;
|
|
6485
6484
|
users: string[];
|
|
6485
|
+
count: number;
|
|
6486
6486
|
}, {
|
|
6487
6487
|
name: string;
|
|
6488
|
-
count: number;
|
|
6489
6488
|
users: string[];
|
|
6489
|
+
count: number;
|
|
6490
6490
|
}>, "many">>;
|
|
6491
6491
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6492
6492
|
id: z.ZodString;
|
|
@@ -6539,18 +6539,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6539
6539
|
}>, "many">>;
|
|
6540
6540
|
}, "strip", z.ZodTypeAny, {
|
|
6541
6541
|
type: string;
|
|
6542
|
-
username?: string | undefined;
|
|
6543
6542
|
text?: string | undefined;
|
|
6544
|
-
|
|
6545
|
-
name: string;
|
|
6546
|
-
count: number;
|
|
6547
|
-
users: string[];
|
|
6548
|
-
}[] | undefined;
|
|
6543
|
+
username?: string | undefined;
|
|
6549
6544
|
ts?: string | undefined;
|
|
6550
|
-
user?: string | undefined;
|
|
6551
6545
|
attachments?: unknown[] | undefined;
|
|
6552
6546
|
blocks?: unknown[] | undefined;
|
|
6553
6547
|
thread_ts?: string | undefined;
|
|
6548
|
+
user?: string | undefined;
|
|
6554
6549
|
bot_id?: string | undefined;
|
|
6555
6550
|
bot_profile?: {
|
|
6556
6551
|
name?: string | undefined;
|
|
@@ -6562,6 +6557,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6562
6557
|
reply_users?: string[] | undefined;
|
|
6563
6558
|
is_locked?: boolean | undefined;
|
|
6564
6559
|
subscribed?: boolean | undefined;
|
|
6560
|
+
reactions?: {
|
|
6561
|
+
name: string;
|
|
6562
|
+
users: string[];
|
|
6563
|
+
count: number;
|
|
6564
|
+
}[] | undefined;
|
|
6565
6565
|
files?: {
|
|
6566
6566
|
id: string;
|
|
6567
6567
|
title?: string | undefined;
|
|
@@ -6581,18 +6581,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6581
6581
|
}[] | undefined;
|
|
6582
6582
|
}, {
|
|
6583
6583
|
type: string;
|
|
6584
|
-
username?: string | undefined;
|
|
6585
6584
|
text?: string | undefined;
|
|
6586
|
-
|
|
6587
|
-
name: string;
|
|
6588
|
-
count: number;
|
|
6589
|
-
users: string[];
|
|
6590
|
-
}[] | undefined;
|
|
6585
|
+
username?: string | undefined;
|
|
6591
6586
|
ts?: string | undefined;
|
|
6592
|
-
user?: string | undefined;
|
|
6593
6587
|
attachments?: unknown[] | undefined;
|
|
6594
6588
|
blocks?: unknown[] | undefined;
|
|
6595
6589
|
thread_ts?: string | undefined;
|
|
6590
|
+
user?: string | undefined;
|
|
6596
6591
|
bot_id?: string | undefined;
|
|
6597
6592
|
bot_profile?: {
|
|
6598
6593
|
name?: string | undefined;
|
|
@@ -6604,6 +6599,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6604
6599
|
reply_users?: string[] | undefined;
|
|
6605
6600
|
is_locked?: boolean | undefined;
|
|
6606
6601
|
subscribed?: boolean | undefined;
|
|
6602
|
+
reactions?: {
|
|
6603
|
+
name: string;
|
|
6604
|
+
users: string[];
|
|
6605
|
+
count: number;
|
|
6606
|
+
}[] | undefined;
|
|
6607
6607
|
files?: {
|
|
6608
6608
|
id: string;
|
|
6609
6609
|
title?: string | undefined;
|
|
@@ -6637,20 +6637,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6637
6637
|
error: string;
|
|
6638
6638
|
operation: "get_conversation_history";
|
|
6639
6639
|
ok: boolean;
|
|
6640
|
+
response_metadata?: {
|
|
6641
|
+
next_cursor: string;
|
|
6642
|
+
} | undefined;
|
|
6640
6643
|
messages?: {
|
|
6641
6644
|
type: string;
|
|
6642
|
-
username?: string | undefined;
|
|
6643
6645
|
text?: string | undefined;
|
|
6644
|
-
|
|
6645
|
-
name: string;
|
|
6646
|
-
count: number;
|
|
6647
|
-
users: string[];
|
|
6648
|
-
}[] | undefined;
|
|
6646
|
+
username?: string | undefined;
|
|
6649
6647
|
ts?: string | undefined;
|
|
6650
|
-
user?: string | undefined;
|
|
6651
6648
|
attachments?: unknown[] | undefined;
|
|
6652
6649
|
blocks?: unknown[] | undefined;
|
|
6653
6650
|
thread_ts?: string | undefined;
|
|
6651
|
+
user?: string | undefined;
|
|
6654
6652
|
bot_id?: string | undefined;
|
|
6655
6653
|
bot_profile?: {
|
|
6656
6654
|
name?: string | undefined;
|
|
@@ -6662,6 +6660,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6662
6660
|
reply_users?: string[] | undefined;
|
|
6663
6661
|
is_locked?: boolean | undefined;
|
|
6664
6662
|
subscribed?: boolean | undefined;
|
|
6663
|
+
reactions?: {
|
|
6664
|
+
name: string;
|
|
6665
|
+
users: string[];
|
|
6666
|
+
count: number;
|
|
6667
|
+
}[] | undefined;
|
|
6665
6668
|
files?: {
|
|
6666
6669
|
id: string;
|
|
6667
6670
|
title?: string | undefined;
|
|
@@ -6680,29 +6683,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6680
6683
|
permalink?: string | undefined;
|
|
6681
6684
|
}[] | undefined;
|
|
6682
6685
|
}[] | undefined;
|
|
6683
|
-
response_metadata?: {
|
|
6684
|
-
next_cursor: string;
|
|
6685
|
-
} | undefined;
|
|
6686
6686
|
has_more?: boolean | undefined;
|
|
6687
6687
|
}, {
|
|
6688
6688
|
success: boolean;
|
|
6689
6689
|
error: string;
|
|
6690
6690
|
operation: "get_conversation_history";
|
|
6691
6691
|
ok: boolean;
|
|
6692
|
+
response_metadata?: {
|
|
6693
|
+
next_cursor: string;
|
|
6694
|
+
} | undefined;
|
|
6692
6695
|
messages?: {
|
|
6693
6696
|
type: string;
|
|
6694
|
-
username?: string | undefined;
|
|
6695
6697
|
text?: string | undefined;
|
|
6696
|
-
|
|
6697
|
-
name: string;
|
|
6698
|
-
count: number;
|
|
6699
|
-
users: string[];
|
|
6700
|
-
}[] | undefined;
|
|
6698
|
+
username?: string | undefined;
|
|
6701
6699
|
ts?: string | undefined;
|
|
6702
|
-
user?: string | undefined;
|
|
6703
6700
|
attachments?: unknown[] | undefined;
|
|
6704
6701
|
blocks?: unknown[] | undefined;
|
|
6705
6702
|
thread_ts?: string | undefined;
|
|
6703
|
+
user?: string | undefined;
|
|
6706
6704
|
bot_id?: string | undefined;
|
|
6707
6705
|
bot_profile?: {
|
|
6708
6706
|
name?: string | undefined;
|
|
@@ -6714,6 +6712,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6714
6712
|
reply_users?: string[] | undefined;
|
|
6715
6713
|
is_locked?: boolean | undefined;
|
|
6716
6714
|
subscribed?: boolean | undefined;
|
|
6715
|
+
reactions?: {
|
|
6716
|
+
name: string;
|
|
6717
|
+
users: string[];
|
|
6718
|
+
count: number;
|
|
6719
|
+
}[] | undefined;
|
|
6717
6720
|
files?: {
|
|
6718
6721
|
id: string;
|
|
6719
6722
|
title?: string | undefined;
|
|
@@ -6732,9 +6735,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6732
6735
|
permalink?: string | undefined;
|
|
6733
6736
|
}[] | undefined;
|
|
6734
6737
|
}[] | undefined;
|
|
6735
|
-
response_metadata?: {
|
|
6736
|
-
next_cursor: string;
|
|
6737
|
-
} | undefined;
|
|
6738
6738
|
has_more?: boolean | undefined;
|
|
6739
6739
|
}>, z.ZodObject<{
|
|
6740
6740
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -6769,12 +6769,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6769
6769
|
count: z.ZodNumber;
|
|
6770
6770
|
}, "strip", z.ZodTypeAny, {
|
|
6771
6771
|
name: string;
|
|
6772
|
-
count: number;
|
|
6773
6772
|
users: string[];
|
|
6773
|
+
count: number;
|
|
6774
6774
|
}, {
|
|
6775
6775
|
name: string;
|
|
6776
|
-
count: number;
|
|
6777
6776
|
users: string[];
|
|
6777
|
+
count: number;
|
|
6778
6778
|
}>, "many">>;
|
|
6779
6779
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6780
6780
|
id: z.ZodString;
|
|
@@ -6827,18 +6827,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6827
6827
|
}>, "many">>;
|
|
6828
6828
|
}, "strip", z.ZodTypeAny, {
|
|
6829
6829
|
type: string;
|
|
6830
|
-
username?: string | undefined;
|
|
6831
6830
|
text?: string | undefined;
|
|
6832
|
-
|
|
6833
|
-
name: string;
|
|
6834
|
-
count: number;
|
|
6835
|
-
users: string[];
|
|
6836
|
-
}[] | undefined;
|
|
6831
|
+
username?: string | undefined;
|
|
6837
6832
|
ts?: string | undefined;
|
|
6838
|
-
user?: string | undefined;
|
|
6839
6833
|
attachments?: unknown[] | undefined;
|
|
6840
6834
|
blocks?: unknown[] | undefined;
|
|
6841
6835
|
thread_ts?: string | undefined;
|
|
6836
|
+
user?: string | undefined;
|
|
6842
6837
|
bot_id?: string | undefined;
|
|
6843
6838
|
bot_profile?: {
|
|
6844
6839
|
name?: string | undefined;
|
|
@@ -6850,6 +6845,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6850
6845
|
reply_users?: string[] | undefined;
|
|
6851
6846
|
is_locked?: boolean | undefined;
|
|
6852
6847
|
subscribed?: boolean | undefined;
|
|
6848
|
+
reactions?: {
|
|
6849
|
+
name: string;
|
|
6850
|
+
users: string[];
|
|
6851
|
+
count: number;
|
|
6852
|
+
}[] | undefined;
|
|
6853
6853
|
files?: {
|
|
6854
6854
|
id: string;
|
|
6855
6855
|
title?: string | undefined;
|
|
@@ -6869,18 +6869,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6869
6869
|
}[] | undefined;
|
|
6870
6870
|
}, {
|
|
6871
6871
|
type: string;
|
|
6872
|
-
username?: string | undefined;
|
|
6873
6872
|
text?: string | undefined;
|
|
6874
|
-
|
|
6875
|
-
name: string;
|
|
6876
|
-
count: number;
|
|
6877
|
-
users: string[];
|
|
6878
|
-
}[] | undefined;
|
|
6873
|
+
username?: string | undefined;
|
|
6879
6874
|
ts?: string | undefined;
|
|
6880
|
-
user?: string | undefined;
|
|
6881
6875
|
attachments?: unknown[] | undefined;
|
|
6882
6876
|
blocks?: unknown[] | undefined;
|
|
6883
6877
|
thread_ts?: string | undefined;
|
|
6878
|
+
user?: string | undefined;
|
|
6884
6879
|
bot_id?: string | undefined;
|
|
6885
6880
|
bot_profile?: {
|
|
6886
6881
|
name?: string | undefined;
|
|
@@ -6892,6 +6887,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6892
6887
|
reply_users?: string[] | undefined;
|
|
6893
6888
|
is_locked?: boolean | undefined;
|
|
6894
6889
|
subscribed?: boolean | undefined;
|
|
6890
|
+
reactions?: {
|
|
6891
|
+
name: string;
|
|
6892
|
+
users: string[];
|
|
6893
|
+
count: number;
|
|
6894
|
+
}[] | undefined;
|
|
6895
6895
|
files?: {
|
|
6896
6896
|
id: string;
|
|
6897
6897
|
title?: string | undefined;
|
|
@@ -6925,20 +6925,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6925
6925
|
error: string;
|
|
6926
6926
|
operation: "get_thread_replies";
|
|
6927
6927
|
ok: boolean;
|
|
6928
|
+
response_metadata?: {
|
|
6929
|
+
next_cursor: string;
|
|
6930
|
+
} | undefined;
|
|
6928
6931
|
messages?: {
|
|
6929
6932
|
type: string;
|
|
6930
|
-
username?: string | undefined;
|
|
6931
6933
|
text?: string | undefined;
|
|
6932
|
-
|
|
6933
|
-
name: string;
|
|
6934
|
-
count: number;
|
|
6935
|
-
users: string[];
|
|
6936
|
-
}[] | undefined;
|
|
6934
|
+
username?: string | undefined;
|
|
6937
6935
|
ts?: string | undefined;
|
|
6938
|
-
user?: string | undefined;
|
|
6939
6936
|
attachments?: unknown[] | undefined;
|
|
6940
6937
|
blocks?: unknown[] | undefined;
|
|
6941
6938
|
thread_ts?: string | undefined;
|
|
6939
|
+
user?: string | undefined;
|
|
6942
6940
|
bot_id?: string | undefined;
|
|
6943
6941
|
bot_profile?: {
|
|
6944
6942
|
name?: string | undefined;
|
|
@@ -6950,6 +6948,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6950
6948
|
reply_users?: string[] | undefined;
|
|
6951
6949
|
is_locked?: boolean | undefined;
|
|
6952
6950
|
subscribed?: boolean | undefined;
|
|
6951
|
+
reactions?: {
|
|
6952
|
+
name: string;
|
|
6953
|
+
users: string[];
|
|
6954
|
+
count: number;
|
|
6955
|
+
}[] | undefined;
|
|
6953
6956
|
files?: {
|
|
6954
6957
|
id: string;
|
|
6955
6958
|
title?: string | undefined;
|
|
@@ -6968,29 +6971,24 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6968
6971
|
permalink?: string | undefined;
|
|
6969
6972
|
}[] | undefined;
|
|
6970
6973
|
}[] | undefined;
|
|
6971
|
-
response_metadata?: {
|
|
6972
|
-
next_cursor: string;
|
|
6973
|
-
} | undefined;
|
|
6974
6974
|
has_more?: boolean | undefined;
|
|
6975
6975
|
}, {
|
|
6976
6976
|
success: boolean;
|
|
6977
6977
|
error: string;
|
|
6978
6978
|
operation: "get_thread_replies";
|
|
6979
6979
|
ok: boolean;
|
|
6980
|
+
response_metadata?: {
|
|
6981
|
+
next_cursor: string;
|
|
6982
|
+
} | undefined;
|
|
6980
6983
|
messages?: {
|
|
6981
6984
|
type: string;
|
|
6982
|
-
username?: string | undefined;
|
|
6983
6985
|
text?: string | undefined;
|
|
6984
|
-
|
|
6985
|
-
name: string;
|
|
6986
|
-
count: number;
|
|
6987
|
-
users: string[];
|
|
6988
|
-
}[] | undefined;
|
|
6986
|
+
username?: string | undefined;
|
|
6989
6987
|
ts?: string | undefined;
|
|
6990
|
-
user?: string | undefined;
|
|
6991
6988
|
attachments?: unknown[] | undefined;
|
|
6992
6989
|
blocks?: unknown[] | undefined;
|
|
6993
6990
|
thread_ts?: string | undefined;
|
|
6991
|
+
user?: string | undefined;
|
|
6994
6992
|
bot_id?: string | undefined;
|
|
6995
6993
|
bot_profile?: {
|
|
6996
6994
|
name?: string | undefined;
|
|
@@ -7002,6 +7000,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7002
7000
|
reply_users?: string[] | undefined;
|
|
7003
7001
|
is_locked?: boolean | undefined;
|
|
7004
7002
|
subscribed?: boolean | undefined;
|
|
7003
|
+
reactions?: {
|
|
7004
|
+
name: string;
|
|
7005
|
+
users: string[];
|
|
7006
|
+
count: number;
|
|
7007
|
+
}[] | undefined;
|
|
7005
7008
|
files?: {
|
|
7006
7009
|
id: string;
|
|
7007
7010
|
title?: string | undefined;
|
|
@@ -7020,9 +7023,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7020
7023
|
permalink?: string | undefined;
|
|
7021
7024
|
}[] | undefined;
|
|
7022
7025
|
}[] | undefined;
|
|
7023
|
-
response_metadata?: {
|
|
7024
|
-
next_cursor: string;
|
|
7025
|
-
} | undefined;
|
|
7026
7026
|
has_more?: boolean | undefined;
|
|
7027
7027
|
}>, z.ZodObject<{
|
|
7028
7028
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -7060,12 +7060,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7060
7060
|
count: z.ZodNumber;
|
|
7061
7061
|
}, "strip", z.ZodTypeAny, {
|
|
7062
7062
|
name: string;
|
|
7063
|
-
count: number;
|
|
7064
7063
|
users: string[];
|
|
7064
|
+
count: number;
|
|
7065
7065
|
}, {
|
|
7066
7066
|
name: string;
|
|
7067
|
-
count: number;
|
|
7068
7067
|
users: string[];
|
|
7068
|
+
count: number;
|
|
7069
7069
|
}>, "many">>;
|
|
7070
7070
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7071
7071
|
id: z.ZodString;
|
|
@@ -7118,18 +7118,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7118
7118
|
}>, "many">>;
|
|
7119
7119
|
}, "strip", z.ZodTypeAny, {
|
|
7120
7120
|
type: string;
|
|
7121
|
-
username?: string | undefined;
|
|
7122
7121
|
text?: string | undefined;
|
|
7123
|
-
|
|
7124
|
-
name: string;
|
|
7125
|
-
count: number;
|
|
7126
|
-
users: string[];
|
|
7127
|
-
}[] | undefined;
|
|
7122
|
+
username?: string | undefined;
|
|
7128
7123
|
ts?: string | undefined;
|
|
7129
|
-
user?: string | undefined;
|
|
7130
7124
|
attachments?: unknown[] | undefined;
|
|
7131
7125
|
blocks?: unknown[] | undefined;
|
|
7132
7126
|
thread_ts?: string | undefined;
|
|
7127
|
+
user?: string | undefined;
|
|
7133
7128
|
bot_id?: string | undefined;
|
|
7134
7129
|
bot_profile?: {
|
|
7135
7130
|
name?: string | undefined;
|
|
@@ -7141,6 +7136,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7141
7136
|
reply_users?: string[] | undefined;
|
|
7142
7137
|
is_locked?: boolean | undefined;
|
|
7143
7138
|
subscribed?: boolean | undefined;
|
|
7139
|
+
reactions?: {
|
|
7140
|
+
name: string;
|
|
7141
|
+
users: string[];
|
|
7142
|
+
count: number;
|
|
7143
|
+
}[] | undefined;
|
|
7144
7144
|
files?: {
|
|
7145
7145
|
id: string;
|
|
7146
7146
|
title?: string | undefined;
|
|
@@ -7160,18 +7160,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7160
7160
|
}[] | undefined;
|
|
7161
7161
|
}, {
|
|
7162
7162
|
type: string;
|
|
7163
|
-
username?: string | undefined;
|
|
7164
7163
|
text?: string | undefined;
|
|
7165
|
-
|
|
7166
|
-
name: string;
|
|
7167
|
-
count: number;
|
|
7168
|
-
users: string[];
|
|
7169
|
-
}[] | undefined;
|
|
7164
|
+
username?: string | undefined;
|
|
7170
7165
|
ts?: string | undefined;
|
|
7171
|
-
user?: string | undefined;
|
|
7172
7166
|
attachments?: unknown[] | undefined;
|
|
7173
7167
|
blocks?: unknown[] | undefined;
|
|
7174
7168
|
thread_ts?: string | undefined;
|
|
7169
|
+
user?: string | undefined;
|
|
7175
7170
|
bot_id?: string | undefined;
|
|
7176
7171
|
bot_profile?: {
|
|
7177
7172
|
name?: string | undefined;
|
|
@@ -7183,6 +7178,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7183
7178
|
reply_users?: string[] | undefined;
|
|
7184
7179
|
is_locked?: boolean | undefined;
|
|
7185
7180
|
subscribed?: boolean | undefined;
|
|
7181
|
+
reactions?: {
|
|
7182
|
+
name: string;
|
|
7183
|
+
users: string[];
|
|
7184
|
+
count: number;
|
|
7185
|
+
}[] | undefined;
|
|
7186
7186
|
files?: {
|
|
7187
7187
|
id: string;
|
|
7188
7188
|
title?: string | undefined;
|
|
@@ -7210,18 +7210,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7210
7210
|
ok: boolean;
|
|
7211
7211
|
message?: {
|
|
7212
7212
|
type: string;
|
|
7213
|
-
username?: string | undefined;
|
|
7214
7213
|
text?: string | undefined;
|
|
7215
|
-
|
|
7216
|
-
name: string;
|
|
7217
|
-
count: number;
|
|
7218
|
-
users: string[];
|
|
7219
|
-
}[] | undefined;
|
|
7214
|
+
username?: string | undefined;
|
|
7220
7215
|
ts?: string | undefined;
|
|
7221
|
-
user?: string | undefined;
|
|
7222
7216
|
attachments?: unknown[] | undefined;
|
|
7223
7217
|
blocks?: unknown[] | undefined;
|
|
7224
7218
|
thread_ts?: string | undefined;
|
|
7219
|
+
user?: string | undefined;
|
|
7225
7220
|
bot_id?: string | undefined;
|
|
7226
7221
|
bot_profile?: {
|
|
7227
7222
|
name?: string | undefined;
|
|
@@ -7233,6 +7228,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7233
7228
|
reply_users?: string[] | undefined;
|
|
7234
7229
|
is_locked?: boolean | undefined;
|
|
7235
7230
|
subscribed?: boolean | undefined;
|
|
7231
|
+
reactions?: {
|
|
7232
|
+
name: string;
|
|
7233
|
+
users: string[];
|
|
7234
|
+
count: number;
|
|
7235
|
+
}[] | undefined;
|
|
7236
7236
|
files?: {
|
|
7237
7237
|
id: string;
|
|
7238
7238
|
title?: string | undefined;
|
|
@@ -7251,9 +7251,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7251
7251
|
permalink?: string | undefined;
|
|
7252
7252
|
}[] | undefined;
|
|
7253
7253
|
} | undefined;
|
|
7254
|
+
channel?: string | undefined;
|
|
7254
7255
|
text?: string | undefined;
|
|
7255
7256
|
ts?: string | undefined;
|
|
7256
|
-
channel?: string | undefined;
|
|
7257
7257
|
}, {
|
|
7258
7258
|
success: boolean;
|
|
7259
7259
|
error: string;
|
|
@@ -7261,18 +7261,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7261
7261
|
ok: boolean;
|
|
7262
7262
|
message?: {
|
|
7263
7263
|
type: string;
|
|
7264
|
-
username?: string | undefined;
|
|
7265
7264
|
text?: string | undefined;
|
|
7266
|
-
|
|
7267
|
-
name: string;
|
|
7268
|
-
count: number;
|
|
7269
|
-
users: string[];
|
|
7270
|
-
}[] | undefined;
|
|
7265
|
+
username?: string | undefined;
|
|
7271
7266
|
ts?: string | undefined;
|
|
7272
|
-
user?: string | undefined;
|
|
7273
7267
|
attachments?: unknown[] | undefined;
|
|
7274
7268
|
blocks?: unknown[] | undefined;
|
|
7275
7269
|
thread_ts?: string | undefined;
|
|
7270
|
+
user?: string | undefined;
|
|
7276
7271
|
bot_id?: string | undefined;
|
|
7277
7272
|
bot_profile?: {
|
|
7278
7273
|
name?: string | undefined;
|
|
@@ -7284,6 +7279,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7284
7279
|
reply_users?: string[] | undefined;
|
|
7285
7280
|
is_locked?: boolean | undefined;
|
|
7286
7281
|
subscribed?: boolean | undefined;
|
|
7282
|
+
reactions?: {
|
|
7283
|
+
name: string;
|
|
7284
|
+
users: string[];
|
|
7285
|
+
count: number;
|
|
7286
|
+
}[] | undefined;
|
|
7287
7287
|
files?: {
|
|
7288
7288
|
id: string;
|
|
7289
7289
|
title?: string | undefined;
|
|
@@ -7302,9 +7302,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7302
7302
|
permalink?: string | undefined;
|
|
7303
7303
|
}[] | undefined;
|
|
7304
7304
|
} | undefined;
|
|
7305
|
+
channel?: string | undefined;
|
|
7305
7306
|
text?: string | undefined;
|
|
7306
7307
|
ts?: string | undefined;
|
|
7307
|
-
channel?: string | undefined;
|
|
7308
7308
|
}>, z.ZodObject<{
|
|
7309
7309
|
operation: z.ZodLiteral<"delete_message">;
|
|
7310
7310
|
ok: z.ZodBoolean;
|
|
@@ -7317,15 +7317,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7317
7317
|
error: string;
|
|
7318
7318
|
operation: "delete_message";
|
|
7319
7319
|
ok: boolean;
|
|
7320
|
-
ts?: string | undefined;
|
|
7321
7320
|
channel?: string | undefined;
|
|
7321
|
+
ts?: string | undefined;
|
|
7322
7322
|
}, {
|
|
7323
7323
|
success: boolean;
|
|
7324
7324
|
error: string;
|
|
7325
7325
|
operation: "delete_message";
|
|
7326
7326
|
ok: boolean;
|
|
7327
|
-
ts?: string | undefined;
|
|
7328
7327
|
channel?: string | undefined;
|
|
7328
|
+
ts?: string | undefined;
|
|
7329
7329
|
}>, z.ZodObject<{
|
|
7330
7330
|
operation: z.ZodLiteral<"add_reaction">;
|
|
7331
7331
|
ok: z.ZodBoolean;
|
|
@@ -7413,11 +7413,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7413
7413
|
id: string;
|
|
7414
7414
|
created: number;
|
|
7415
7415
|
is_archived: boolean;
|
|
7416
|
-
is_private?: boolean | undefined;
|
|
7417
7416
|
is_channel?: boolean | undefined;
|
|
7418
7417
|
is_group?: boolean | undefined;
|
|
7419
7418
|
is_im?: boolean | undefined;
|
|
7420
7419
|
is_mpim?: boolean | undefined;
|
|
7420
|
+
is_private?: boolean | undefined;
|
|
7421
7421
|
is_general?: boolean | undefined;
|
|
7422
7422
|
unlinked?: number | undefined;
|
|
7423
7423
|
name_normalized?: string | undefined;
|
|
@@ -7446,11 +7446,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7446
7446
|
id: string;
|
|
7447
7447
|
created: number;
|
|
7448
7448
|
is_archived: boolean;
|
|
7449
|
-
is_private?: boolean | undefined;
|
|
7450
7449
|
is_channel?: boolean | undefined;
|
|
7451
7450
|
is_group?: boolean | undefined;
|
|
7452
7451
|
is_im?: boolean | undefined;
|
|
7453
7452
|
is_mpim?: boolean | undefined;
|
|
7453
|
+
is_private?: boolean | undefined;
|
|
7454
7454
|
is_general?: boolean | undefined;
|
|
7455
7455
|
unlinked?: number | undefined;
|
|
7456
7456
|
name_normalized?: string | undefined;
|
|
@@ -7488,11 +7488,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7488
7488
|
id: string;
|
|
7489
7489
|
created: number;
|
|
7490
7490
|
is_archived: boolean;
|
|
7491
|
-
is_private?: boolean | undefined;
|
|
7492
7491
|
is_channel?: boolean | undefined;
|
|
7493
7492
|
is_group?: boolean | undefined;
|
|
7494
7493
|
is_im?: boolean | undefined;
|
|
7495
7494
|
is_mpim?: boolean | undefined;
|
|
7495
|
+
is_private?: boolean | undefined;
|
|
7496
7496
|
is_general?: boolean | undefined;
|
|
7497
7497
|
unlinked?: number | undefined;
|
|
7498
7498
|
name_normalized?: string | undefined;
|
|
@@ -7528,11 +7528,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7528
7528
|
id: string;
|
|
7529
7529
|
created: number;
|
|
7530
7530
|
is_archived: boolean;
|
|
7531
|
-
is_private?: boolean | undefined;
|
|
7532
7531
|
is_channel?: boolean | undefined;
|
|
7533
7532
|
is_group?: boolean | undefined;
|
|
7534
7533
|
is_im?: boolean | undefined;
|
|
7535
7534
|
is_mpim?: boolean | undefined;
|
|
7535
|
+
is_private?: boolean | undefined;
|
|
7536
7536
|
is_general?: boolean | undefined;
|
|
7537
7537
|
unlinked?: number | undefined;
|
|
7538
7538
|
name_normalized?: string | undefined;
|
|
@@ -7594,17 +7594,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7594
7594
|
team_id: z.ZodString;
|
|
7595
7595
|
}, "strip", z.ZodTypeAny, {
|
|
7596
7596
|
ts: string;
|
|
7597
|
-
team_id: string;
|
|
7598
7597
|
reply_count: number;
|
|
7599
7598
|
reply_users_count: number;
|
|
7600
7599
|
reply_users: string[];
|
|
7600
|
+
team_id: string;
|
|
7601
7601
|
channel_name: string;
|
|
7602
7602
|
}, {
|
|
7603
7603
|
ts: string;
|
|
7604
|
-
team_id: string;
|
|
7605
7604
|
reply_count: number;
|
|
7606
7605
|
reply_users_count: number;
|
|
7607
7606
|
reply_users: string[];
|
|
7607
|
+
team_id: string;
|
|
7608
7608
|
channel_name: string;
|
|
7609
7609
|
}>, "many">>>;
|
|
7610
7610
|
private: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
@@ -7616,51 +7616,51 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7616
7616
|
team_id: z.ZodString;
|
|
7617
7617
|
}, "strip", z.ZodTypeAny, {
|
|
7618
7618
|
ts: string;
|
|
7619
|
-
team_id: string;
|
|
7620
7619
|
reply_count: number;
|
|
7621
7620
|
reply_users_count: number;
|
|
7622
7621
|
reply_users: string[];
|
|
7622
|
+
team_id: string;
|
|
7623
7623
|
channel_name: string;
|
|
7624
7624
|
}, {
|
|
7625
7625
|
ts: string;
|
|
7626
|
-
team_id: string;
|
|
7627
7626
|
reply_count: number;
|
|
7628
7627
|
reply_users_count: number;
|
|
7629
7628
|
reply_users: string[];
|
|
7629
|
+
team_id: string;
|
|
7630
7630
|
channel_name: string;
|
|
7631
7631
|
}>, "many">>>;
|
|
7632
7632
|
}, "strip", z.ZodTypeAny, {
|
|
7633
|
-
|
|
7633
|
+
public?: Record<string, {
|
|
7634
7634
|
ts: string;
|
|
7635
|
-
team_id: string;
|
|
7636
7635
|
reply_count: number;
|
|
7637
7636
|
reply_users_count: number;
|
|
7638
7637
|
reply_users: string[];
|
|
7638
|
+
team_id: string;
|
|
7639
7639
|
channel_name: string;
|
|
7640
7640
|
}[]> | undefined;
|
|
7641
|
-
|
|
7641
|
+
private?: Record<string, {
|
|
7642
7642
|
ts: string;
|
|
7643
|
-
team_id: string;
|
|
7644
7643
|
reply_count: number;
|
|
7645
7644
|
reply_users_count: number;
|
|
7646
7645
|
reply_users: string[];
|
|
7646
|
+
team_id: string;
|
|
7647
7647
|
channel_name: string;
|
|
7648
7648
|
}[]> | undefined;
|
|
7649
7649
|
}, {
|
|
7650
|
-
|
|
7650
|
+
public?: Record<string, {
|
|
7651
7651
|
ts: string;
|
|
7652
|
-
team_id: string;
|
|
7653
7652
|
reply_count: number;
|
|
7654
7653
|
reply_users_count: number;
|
|
7655
7654
|
reply_users: string[];
|
|
7655
|
+
team_id: string;
|
|
7656
7656
|
channel_name: string;
|
|
7657
7657
|
}[]> | undefined;
|
|
7658
|
-
|
|
7658
|
+
private?: Record<string, {
|
|
7659
7659
|
ts: string;
|
|
7660
|
-
team_id: string;
|
|
7661
7660
|
reply_count: number;
|
|
7662
7661
|
reply_users_count: number;
|
|
7663
7662
|
reply_users: string[];
|
|
7663
|
+
team_id: string;
|
|
7664
7664
|
channel_name: string;
|
|
7665
7665
|
}[]> | undefined;
|
|
7666
7666
|
}>>;
|
|
@@ -7670,17 +7670,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7670
7670
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
7671
7671
|
}, "strip", z.ZodTypeAny, {
|
|
7672
7672
|
name: string;
|
|
7673
|
-
id: string;
|
|
7674
7673
|
username: string;
|
|
7675
|
-
timestamp: number;
|
|
7676
7674
|
user: string;
|
|
7677
|
-
|
|
7675
|
+
timestamp: number;
|
|
7676
|
+
id: string;
|
|
7678
7677
|
mimetype: string;
|
|
7679
7678
|
filetype: string;
|
|
7680
7679
|
size: number;
|
|
7681
7680
|
url_private: string;
|
|
7682
7681
|
url_private_download: string;
|
|
7683
7682
|
permalink: string;
|
|
7683
|
+
created: number;
|
|
7684
7684
|
pretty_type: string;
|
|
7685
7685
|
editable: boolean;
|
|
7686
7686
|
mode: string;
|
|
@@ -7690,42 +7690,42 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7690
7690
|
public_url_shared: boolean;
|
|
7691
7691
|
display_as_bot: boolean;
|
|
7692
7692
|
title?: string | undefined;
|
|
7693
|
+
channels?: string[] | undefined;
|
|
7694
|
+
permalink_public?: string | undefined;
|
|
7693
7695
|
shares?: {
|
|
7694
|
-
|
|
7696
|
+
public?: Record<string, {
|
|
7695
7697
|
ts: string;
|
|
7696
|
-
team_id: string;
|
|
7697
7698
|
reply_count: number;
|
|
7698
7699
|
reply_users_count: number;
|
|
7699
7700
|
reply_users: string[];
|
|
7701
|
+
team_id: string;
|
|
7700
7702
|
channel_name: string;
|
|
7701
7703
|
}[]> | undefined;
|
|
7702
|
-
|
|
7704
|
+
private?: Record<string, {
|
|
7703
7705
|
ts: string;
|
|
7704
|
-
team_id: string;
|
|
7705
7706
|
reply_count: number;
|
|
7706
7707
|
reply_users_count: number;
|
|
7707
7708
|
reply_users: string[];
|
|
7709
|
+
team_id: string;
|
|
7708
7710
|
channel_name: string;
|
|
7709
7711
|
}[]> | undefined;
|
|
7710
7712
|
} | undefined;
|
|
7711
|
-
channels?: string[] | undefined;
|
|
7712
|
-
permalink_public?: string | undefined;
|
|
7713
7713
|
groups?: string[] | undefined;
|
|
7714
7714
|
ims?: string[] | undefined;
|
|
7715
7715
|
has_rich_preview?: boolean | undefined;
|
|
7716
7716
|
}, {
|
|
7717
7717
|
name: string;
|
|
7718
|
-
id: string;
|
|
7719
7718
|
username: string;
|
|
7720
|
-
timestamp: number;
|
|
7721
7719
|
user: string;
|
|
7722
|
-
|
|
7720
|
+
timestamp: number;
|
|
7721
|
+
id: string;
|
|
7723
7722
|
mimetype: string;
|
|
7724
7723
|
filetype: string;
|
|
7725
7724
|
size: number;
|
|
7726
7725
|
url_private: string;
|
|
7727
7726
|
url_private_download: string;
|
|
7728
7727
|
permalink: string;
|
|
7728
|
+
created: number;
|
|
7729
7729
|
pretty_type: string;
|
|
7730
7730
|
editable: boolean;
|
|
7731
7731
|
mode: string;
|
|
@@ -7735,26 +7735,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7735
7735
|
public_url_shared: boolean;
|
|
7736
7736
|
display_as_bot: boolean;
|
|
7737
7737
|
title?: string | undefined;
|
|
7738
|
+
channels?: string[] | undefined;
|
|
7739
|
+
permalink_public?: string | undefined;
|
|
7738
7740
|
shares?: {
|
|
7739
|
-
|
|
7741
|
+
public?: Record<string, {
|
|
7740
7742
|
ts: string;
|
|
7741
|
-
team_id: string;
|
|
7742
7743
|
reply_count: number;
|
|
7743
7744
|
reply_users_count: number;
|
|
7744
7745
|
reply_users: string[];
|
|
7746
|
+
team_id: string;
|
|
7745
7747
|
channel_name: string;
|
|
7746
7748
|
}[]> | undefined;
|
|
7747
|
-
|
|
7749
|
+
private?: Record<string, {
|
|
7748
7750
|
ts: string;
|
|
7749
|
-
team_id: string;
|
|
7750
7751
|
reply_count: number;
|
|
7751
7752
|
reply_users_count: number;
|
|
7752
7753
|
reply_users: string[];
|
|
7754
|
+
team_id: string;
|
|
7753
7755
|
channel_name: string;
|
|
7754
7756
|
}[]> | undefined;
|
|
7755
7757
|
} | undefined;
|
|
7756
|
-
channels?: string[] | undefined;
|
|
7757
|
-
permalink_public?: string | undefined;
|
|
7758
7758
|
groups?: string[] | undefined;
|
|
7759
7759
|
ims?: string[] | undefined;
|
|
7760
7760
|
has_rich_preview?: boolean | undefined;
|
|
@@ -7768,17 +7768,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7768
7768
|
ok: boolean;
|
|
7769
7769
|
file?: {
|
|
7770
7770
|
name: string;
|
|
7771
|
-
id: string;
|
|
7772
7771
|
username: string;
|
|
7773
|
-
timestamp: number;
|
|
7774
7772
|
user: string;
|
|
7775
|
-
|
|
7773
|
+
timestamp: number;
|
|
7774
|
+
id: string;
|
|
7776
7775
|
mimetype: string;
|
|
7777
7776
|
filetype: string;
|
|
7778
7777
|
size: number;
|
|
7779
7778
|
url_private: string;
|
|
7780
7779
|
url_private_download: string;
|
|
7781
7780
|
permalink: string;
|
|
7781
|
+
created: number;
|
|
7782
7782
|
pretty_type: string;
|
|
7783
7783
|
editable: boolean;
|
|
7784
7784
|
mode: string;
|
|
@@ -7788,26 +7788,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7788
7788
|
public_url_shared: boolean;
|
|
7789
7789
|
display_as_bot: boolean;
|
|
7790
7790
|
title?: string | undefined;
|
|
7791
|
+
channels?: string[] | undefined;
|
|
7792
|
+
permalink_public?: string | undefined;
|
|
7791
7793
|
shares?: {
|
|
7792
|
-
|
|
7794
|
+
public?: Record<string, {
|
|
7793
7795
|
ts: string;
|
|
7794
|
-
team_id: string;
|
|
7795
7796
|
reply_count: number;
|
|
7796
7797
|
reply_users_count: number;
|
|
7797
7798
|
reply_users: string[];
|
|
7799
|
+
team_id: string;
|
|
7798
7800
|
channel_name: string;
|
|
7799
7801
|
}[]> | undefined;
|
|
7800
|
-
|
|
7802
|
+
private?: Record<string, {
|
|
7801
7803
|
ts: string;
|
|
7802
|
-
team_id: string;
|
|
7803
7804
|
reply_count: number;
|
|
7804
7805
|
reply_users_count: number;
|
|
7805
7806
|
reply_users: string[];
|
|
7807
|
+
team_id: string;
|
|
7806
7808
|
channel_name: string;
|
|
7807
7809
|
}[]> | undefined;
|
|
7808
7810
|
} | undefined;
|
|
7809
|
-
channels?: string[] | undefined;
|
|
7810
|
-
permalink_public?: string | undefined;
|
|
7811
7811
|
groups?: string[] | undefined;
|
|
7812
7812
|
ims?: string[] | undefined;
|
|
7813
7813
|
has_rich_preview?: boolean | undefined;
|
|
@@ -7819,17 +7819,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7819
7819
|
ok: boolean;
|
|
7820
7820
|
file?: {
|
|
7821
7821
|
name: string;
|
|
7822
|
-
id: string;
|
|
7823
7822
|
username: string;
|
|
7824
|
-
timestamp: number;
|
|
7825
7823
|
user: string;
|
|
7826
|
-
|
|
7824
|
+
timestamp: number;
|
|
7825
|
+
id: string;
|
|
7827
7826
|
mimetype: string;
|
|
7828
7827
|
filetype: string;
|
|
7829
7828
|
size: number;
|
|
7830
7829
|
url_private: string;
|
|
7831
7830
|
url_private_download: string;
|
|
7832
7831
|
permalink: string;
|
|
7832
|
+
created: number;
|
|
7833
7833
|
pretty_type: string;
|
|
7834
7834
|
editable: boolean;
|
|
7835
7835
|
mode: string;
|
|
@@ -7839,26 +7839,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7839
7839
|
public_url_shared: boolean;
|
|
7840
7840
|
display_as_bot: boolean;
|
|
7841
7841
|
title?: string | undefined;
|
|
7842
|
+
channels?: string[] | undefined;
|
|
7843
|
+
permalink_public?: string | undefined;
|
|
7842
7844
|
shares?: {
|
|
7843
|
-
|
|
7845
|
+
public?: Record<string, {
|
|
7844
7846
|
ts: string;
|
|
7845
|
-
team_id: string;
|
|
7846
7847
|
reply_count: number;
|
|
7847
7848
|
reply_users_count: number;
|
|
7848
7849
|
reply_users: string[];
|
|
7850
|
+
team_id: string;
|
|
7849
7851
|
channel_name: string;
|
|
7850
7852
|
}[]> | undefined;
|
|
7851
|
-
|
|
7853
|
+
private?: Record<string, {
|
|
7852
7854
|
ts: string;
|
|
7853
|
-
team_id: string;
|
|
7854
7855
|
reply_count: number;
|
|
7855
7856
|
reply_users_count: number;
|
|
7856
7857
|
reply_users: string[];
|
|
7858
|
+
team_id: string;
|
|
7857
7859
|
channel_name: string;
|
|
7858
7860
|
}[]> | undefined;
|
|
7859
7861
|
} | undefined;
|
|
7860
|
-
channels?: string[] | undefined;
|
|
7861
|
-
permalink_public?: string | undefined;
|
|
7862
7862
|
groups?: string[] | undefined;
|
|
7863
7863
|
ims?: string[] | undefined;
|
|
7864
7864
|
has_rich_preview?: boolean | undefined;
|