@bubblelab/bubble-core 0.1.98 → 0.1.99
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 +72 -72
- package/dist/bubbles/service-bubble/ai-agent.d.ts +84 -84
- package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +74 -74
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
- package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/resend.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/resend.js +9 -7
- package/dist/bubbles/service-bubble/resend.js.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.d.ts +68 -68
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +211 -4
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +87 -2
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +243 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +118 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
- package/dist/bubbles.json +306 -14
- package/package.json +4 -4
|
@@ -355,16 +355,16 @@ 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
|
-
operation: "list_channels";
|
|
359
358
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
359
|
+
operation: "list_channels";
|
|
360
360
|
exclude_archived: boolean;
|
|
361
361
|
limit: number;
|
|
362
362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
363
363
|
cursor?: string | undefined;
|
|
364
364
|
}, {
|
|
365
365
|
operation: "list_channels";
|
|
366
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
367
366
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
367
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
368
368
|
exclude_archived?: boolean | undefined;
|
|
369
369
|
limit?: number | undefined;
|
|
370
370
|
cursor?: string | undefined;
|
|
@@ -1241,8 +1241,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1241
1241
|
}>, "many">>;
|
|
1242
1242
|
}, "strip", z.ZodTypeAny, {
|
|
1243
1243
|
type: string;
|
|
1244
|
-
user?: string | undefined;
|
|
1245
1244
|
text?: string | undefined;
|
|
1245
|
+
user?: string | undefined;
|
|
1246
1246
|
ts?: string | undefined;
|
|
1247
1247
|
username?: string | undefined;
|
|
1248
1248
|
attachments?: unknown[] | undefined;
|
|
@@ -1283,8 +1283,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1283
1283
|
}[] | undefined;
|
|
1284
1284
|
}, {
|
|
1285
1285
|
type: string;
|
|
1286
|
-
user?: string | undefined;
|
|
1287
1286
|
text?: string | undefined;
|
|
1287
|
+
user?: string | undefined;
|
|
1288
1288
|
ts?: string | undefined;
|
|
1289
1289
|
username?: string | undefined;
|
|
1290
1290
|
attachments?: unknown[] | undefined;
|
|
@@ -1333,8 +1333,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1333
1333
|
ok: boolean;
|
|
1334
1334
|
message?: {
|
|
1335
1335
|
type: string;
|
|
1336
|
-
user?: string | undefined;
|
|
1337
1336
|
text?: string | undefined;
|
|
1337
|
+
user?: string | undefined;
|
|
1338
1338
|
ts?: string | undefined;
|
|
1339
1339
|
username?: string | undefined;
|
|
1340
1340
|
attachments?: unknown[] | undefined;
|
|
@@ -1383,8 +1383,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1383
1383
|
ok: boolean;
|
|
1384
1384
|
message?: {
|
|
1385
1385
|
type: string;
|
|
1386
|
-
user?: string | undefined;
|
|
1387
1386
|
text?: string | undefined;
|
|
1387
|
+
user?: string | undefined;
|
|
1388
1388
|
ts?: string | undefined;
|
|
1389
1389
|
username?: string | undefined;
|
|
1390
1390
|
attachments?: unknown[] | undefined;
|
|
@@ -2527,8 +2527,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2527
2527
|
}>, "many">>;
|
|
2528
2528
|
}, "strip", z.ZodTypeAny, {
|
|
2529
2529
|
type: string;
|
|
2530
|
-
user?: string | undefined;
|
|
2531
2530
|
text?: string | undefined;
|
|
2531
|
+
user?: string | undefined;
|
|
2532
2532
|
ts?: string | undefined;
|
|
2533
2533
|
username?: string | undefined;
|
|
2534
2534
|
attachments?: unknown[] | undefined;
|
|
@@ -2569,8 +2569,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2569
2569
|
}[] | undefined;
|
|
2570
2570
|
}, {
|
|
2571
2571
|
type: string;
|
|
2572
|
-
user?: string | undefined;
|
|
2573
2572
|
text?: string | undefined;
|
|
2573
|
+
user?: string | undefined;
|
|
2574
2574
|
ts?: string | undefined;
|
|
2575
2575
|
username?: string | undefined;
|
|
2576
2576
|
attachments?: unknown[] | undefined;
|
|
@@ -2625,10 +2625,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2625
2625
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
2631
2633
|
text?: string | undefined;
|
|
2634
|
+
user?: string | undefined;
|
|
2632
2635
|
ts?: string | undefined;
|
|
2633
2636
|
username?: string | undefined;
|
|
2634
2637
|
attachments?: unknown[] | undefined;
|
|
@@ -2668,19 +2671,19 @@ 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
|
error: string;
|
|
2677
2677
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
2683
2685
|
text?: string | undefined;
|
|
2686
|
+
user?: string | undefined;
|
|
2684
2687
|
ts?: string | undefined;
|
|
2685
2688
|
username?: string | undefined;
|
|
2686
2689
|
attachments?: unknown[] | 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">;
|
|
@@ -2815,8 +2815,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2815
2815
|
}>, "many">>;
|
|
2816
2816
|
}, "strip", z.ZodTypeAny, {
|
|
2817
2817
|
type: string;
|
|
2818
|
-
user?: string | undefined;
|
|
2819
2818
|
text?: string | undefined;
|
|
2819
|
+
user?: string | undefined;
|
|
2820
2820
|
ts?: string | undefined;
|
|
2821
2821
|
username?: string | undefined;
|
|
2822
2822
|
attachments?: unknown[] | undefined;
|
|
@@ -2857,8 +2857,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2857
2857
|
}[] | undefined;
|
|
2858
2858
|
}, {
|
|
2859
2859
|
type: string;
|
|
2860
|
-
user?: string | undefined;
|
|
2861
2860
|
text?: string | undefined;
|
|
2861
|
+
user?: string | undefined;
|
|
2862
2862
|
ts?: string | undefined;
|
|
2863
2863
|
username?: string | undefined;
|
|
2864
2864
|
attachments?: unknown[] | undefined;
|
|
@@ -2913,10 +2913,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2913
2913
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
2919
2921
|
text?: string | undefined;
|
|
2922
|
+
user?: string | undefined;
|
|
2920
2923
|
ts?: string | undefined;
|
|
2921
2924
|
username?: string | undefined;
|
|
2922
2925
|
attachments?: unknown[] | undefined;
|
|
@@ -2956,19 +2959,19 @@ 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
|
error: string;
|
|
2965
2965
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
2971
2973
|
text?: string | undefined;
|
|
2974
|
+
user?: string | undefined;
|
|
2972
2975
|
ts?: string | undefined;
|
|
2973
2976
|
username?: string | undefined;
|
|
2974
2977
|
attachments?: unknown[] | 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">;
|
|
@@ -3106,8 +3106,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3106
3106
|
}>, "many">>;
|
|
3107
3107
|
}, "strip", z.ZodTypeAny, {
|
|
3108
3108
|
type: string;
|
|
3109
|
-
user?: string | undefined;
|
|
3110
3109
|
text?: string | undefined;
|
|
3110
|
+
user?: string | undefined;
|
|
3111
3111
|
ts?: string | undefined;
|
|
3112
3112
|
username?: string | undefined;
|
|
3113
3113
|
attachments?: unknown[] | undefined;
|
|
@@ -3148,8 +3148,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3148
3148
|
}[] | undefined;
|
|
3149
3149
|
}, {
|
|
3150
3150
|
type: string;
|
|
3151
|
-
user?: string | undefined;
|
|
3152
3151
|
text?: string | undefined;
|
|
3152
|
+
user?: string | undefined;
|
|
3153
3153
|
ts?: string | undefined;
|
|
3154
3154
|
username?: string | undefined;
|
|
3155
3155
|
attachments?: unknown[] | undefined;
|
|
@@ -3198,8 +3198,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3198
3198
|
ok: boolean;
|
|
3199
3199
|
message?: {
|
|
3200
3200
|
type: string;
|
|
3201
|
-
user?: string | undefined;
|
|
3202
3201
|
text?: string | undefined;
|
|
3202
|
+
user?: string | undefined;
|
|
3203
3203
|
ts?: string | undefined;
|
|
3204
3204
|
username?: string | undefined;
|
|
3205
3205
|
attachments?: unknown[] | undefined;
|
|
@@ -3249,8 +3249,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3249
3249
|
ok: boolean;
|
|
3250
3250
|
message?: {
|
|
3251
3251
|
type: string;
|
|
3252
|
-
user?: string | undefined;
|
|
3253
3252
|
text?: string | undefined;
|
|
3253
|
+
user?: string | undefined;
|
|
3254
3254
|
ts?: string | undefined;
|
|
3255
3255
|
username?: string | undefined;
|
|
3256
3256
|
attachments?: unknown[] | undefined;
|
|
@@ -3658,8 +3658,8 @@ 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
|
-
user: string;
|
|
3662
3661
|
id: string;
|
|
3662
|
+
user: string;
|
|
3663
3663
|
username: string;
|
|
3664
3664
|
timestamp: number;
|
|
3665
3665
|
created: number;
|
|
@@ -3703,8 +3703,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3703
3703
|
has_rich_preview?: boolean | undefined;
|
|
3704
3704
|
}, {
|
|
3705
3705
|
name: string;
|
|
3706
|
-
user: string;
|
|
3707
3706
|
id: string;
|
|
3707
|
+
user: string;
|
|
3708
3708
|
username: string;
|
|
3709
3709
|
timestamp: number;
|
|
3710
3710
|
created: number;
|
|
@@ -3756,8 +3756,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3756
3756
|
ok: boolean;
|
|
3757
3757
|
file?: {
|
|
3758
3758
|
name: string;
|
|
3759
|
-
user: string;
|
|
3760
3759
|
id: string;
|
|
3760
|
+
user: string;
|
|
3761
3761
|
username: string;
|
|
3762
3762
|
timestamp: number;
|
|
3763
3763
|
created: number;
|
|
@@ -3807,8 +3807,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3807
3807
|
ok: boolean;
|
|
3808
3808
|
file?: {
|
|
3809
3809
|
name: string;
|
|
3810
|
-
user: string;
|
|
3811
3810
|
id: string;
|
|
3811
|
+
user: string;
|
|
3812
3812
|
username: string;
|
|
3813
3813
|
timestamp: number;
|
|
3814
3814
|
created: number;
|
|
@@ -4367,16 +4367,16 @@ 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
|
-
operation: "list_channels";
|
|
4371
4370
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
4371
|
+
operation: "list_channels";
|
|
4372
4372
|
exclude_archived: boolean;
|
|
4373
4373
|
limit: number;
|
|
4374
4374
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4375
4375
|
cursor?: string | undefined;
|
|
4376
4376
|
}, {
|
|
4377
4377
|
operation: "list_channels";
|
|
4378
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4379
4378
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
4379
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4380
4380
|
exclude_archived?: boolean | undefined;
|
|
4381
4381
|
limit?: number | undefined;
|
|
4382
4382
|
cursor?: string | undefined;
|
|
@@ -5253,8 +5253,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5253
5253
|
}>, "many">>;
|
|
5254
5254
|
}, "strip", z.ZodTypeAny, {
|
|
5255
5255
|
type: string;
|
|
5256
|
-
user?: string | undefined;
|
|
5257
5256
|
text?: string | undefined;
|
|
5257
|
+
user?: string | undefined;
|
|
5258
5258
|
ts?: string | undefined;
|
|
5259
5259
|
username?: string | undefined;
|
|
5260
5260
|
attachments?: unknown[] | undefined;
|
|
@@ -5295,8 +5295,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5295
5295
|
}[] | undefined;
|
|
5296
5296
|
}, {
|
|
5297
5297
|
type: string;
|
|
5298
|
-
user?: string | undefined;
|
|
5299
5298
|
text?: string | undefined;
|
|
5299
|
+
user?: string | undefined;
|
|
5300
5300
|
ts?: string | undefined;
|
|
5301
5301
|
username?: string | undefined;
|
|
5302
5302
|
attachments?: unknown[] | undefined;
|
|
@@ -5345,8 +5345,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5345
5345
|
ok: boolean;
|
|
5346
5346
|
message?: {
|
|
5347
5347
|
type: string;
|
|
5348
|
-
user?: string | undefined;
|
|
5349
5348
|
text?: string | undefined;
|
|
5349
|
+
user?: string | undefined;
|
|
5350
5350
|
ts?: string | undefined;
|
|
5351
5351
|
username?: string | undefined;
|
|
5352
5352
|
attachments?: unknown[] | undefined;
|
|
@@ -5395,8 +5395,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5395
5395
|
ok: boolean;
|
|
5396
5396
|
message?: {
|
|
5397
5397
|
type: string;
|
|
5398
|
-
user?: string | undefined;
|
|
5399
5398
|
text?: string | undefined;
|
|
5399
|
+
user?: string | undefined;
|
|
5400
5400
|
ts?: string | undefined;
|
|
5401
5401
|
username?: string | undefined;
|
|
5402
5402
|
attachments?: unknown[] | undefined;
|
|
@@ -6539,8 +6539,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6539
6539
|
}>, "many">>;
|
|
6540
6540
|
}, "strip", z.ZodTypeAny, {
|
|
6541
6541
|
type: string;
|
|
6542
|
-
user?: string | undefined;
|
|
6543
6542
|
text?: string | undefined;
|
|
6543
|
+
user?: string | undefined;
|
|
6544
6544
|
ts?: string | undefined;
|
|
6545
6545
|
username?: string | undefined;
|
|
6546
6546
|
attachments?: unknown[] | undefined;
|
|
@@ -6581,8 +6581,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6581
6581
|
}[] | undefined;
|
|
6582
6582
|
}, {
|
|
6583
6583
|
type: string;
|
|
6584
|
-
user?: string | undefined;
|
|
6585
6584
|
text?: string | undefined;
|
|
6585
|
+
user?: string | undefined;
|
|
6586
6586
|
ts?: string | undefined;
|
|
6587
6587
|
username?: string | undefined;
|
|
6588
6588
|
attachments?: unknown[] | undefined;
|
|
@@ -6637,10 +6637,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6637
6637
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
6643
6645
|
text?: string | undefined;
|
|
6646
|
+
user?: string | undefined;
|
|
6644
6647
|
ts?: string | undefined;
|
|
6645
6648
|
username?: string | undefined;
|
|
6646
6649
|
attachments?: unknown[] | undefined;
|
|
@@ -6680,19 +6683,19 @@ 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
|
error: string;
|
|
6689
6689
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
6695
6697
|
text?: string | undefined;
|
|
6698
|
+
user?: string | undefined;
|
|
6696
6699
|
ts?: string | undefined;
|
|
6697
6700
|
username?: string | undefined;
|
|
6698
6701
|
attachments?: unknown[] | 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">;
|
|
@@ -6827,8 +6827,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6827
6827
|
}>, "many">>;
|
|
6828
6828
|
}, "strip", z.ZodTypeAny, {
|
|
6829
6829
|
type: string;
|
|
6830
|
-
user?: string | undefined;
|
|
6831
6830
|
text?: string | undefined;
|
|
6831
|
+
user?: string | undefined;
|
|
6832
6832
|
ts?: string | undefined;
|
|
6833
6833
|
username?: string | undefined;
|
|
6834
6834
|
attachments?: unknown[] | undefined;
|
|
@@ -6869,8 +6869,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6869
6869
|
}[] | undefined;
|
|
6870
6870
|
}, {
|
|
6871
6871
|
type: string;
|
|
6872
|
-
user?: string | undefined;
|
|
6873
6872
|
text?: string | undefined;
|
|
6873
|
+
user?: string | undefined;
|
|
6874
6874
|
ts?: string | undefined;
|
|
6875
6875
|
username?: string | undefined;
|
|
6876
6876
|
attachments?: unknown[] | undefined;
|
|
@@ -6925,10 +6925,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6925
6925
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
6931
6933
|
text?: string | undefined;
|
|
6934
|
+
user?: string | undefined;
|
|
6932
6935
|
ts?: string | undefined;
|
|
6933
6936
|
username?: string | undefined;
|
|
6934
6937
|
attachments?: unknown[] | undefined;
|
|
@@ -6968,19 +6971,19 @@ 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
|
error: string;
|
|
6977
6977
|
success: boolean;
|
|
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
|
-
user?: string | undefined;
|
|
6983
6985
|
text?: string | undefined;
|
|
6986
|
+
user?: string | undefined;
|
|
6984
6987
|
ts?: string | undefined;
|
|
6985
6988
|
username?: string | undefined;
|
|
6986
6989
|
attachments?: unknown[] | 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">;
|
|
@@ -7118,8 +7118,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7118
7118
|
}>, "many">>;
|
|
7119
7119
|
}, "strip", z.ZodTypeAny, {
|
|
7120
7120
|
type: string;
|
|
7121
|
-
user?: string | undefined;
|
|
7122
7121
|
text?: string | undefined;
|
|
7122
|
+
user?: string | undefined;
|
|
7123
7123
|
ts?: string | undefined;
|
|
7124
7124
|
username?: string | undefined;
|
|
7125
7125
|
attachments?: unknown[] | undefined;
|
|
@@ -7160,8 +7160,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7160
7160
|
}[] | undefined;
|
|
7161
7161
|
}, {
|
|
7162
7162
|
type: string;
|
|
7163
|
-
user?: string | undefined;
|
|
7164
7163
|
text?: string | undefined;
|
|
7164
|
+
user?: string | undefined;
|
|
7165
7165
|
ts?: string | undefined;
|
|
7166
7166
|
username?: string | undefined;
|
|
7167
7167
|
attachments?: unknown[] | undefined;
|
|
@@ -7210,8 +7210,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7210
7210
|
ok: boolean;
|
|
7211
7211
|
message?: {
|
|
7212
7212
|
type: string;
|
|
7213
|
-
user?: string | undefined;
|
|
7214
7213
|
text?: string | undefined;
|
|
7214
|
+
user?: string | undefined;
|
|
7215
7215
|
ts?: string | undefined;
|
|
7216
7216
|
username?: string | undefined;
|
|
7217
7217
|
attachments?: unknown[] | undefined;
|
|
@@ -7261,8 +7261,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7261
7261
|
ok: boolean;
|
|
7262
7262
|
message?: {
|
|
7263
7263
|
type: string;
|
|
7264
|
-
user?: string | undefined;
|
|
7265
7264
|
text?: string | undefined;
|
|
7265
|
+
user?: string | undefined;
|
|
7266
7266
|
ts?: string | undefined;
|
|
7267
7267
|
username?: string | undefined;
|
|
7268
7268
|
attachments?: unknown[] | undefined;
|
|
@@ -7670,8 +7670,8 @@ 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
|
-
user: string;
|
|
7674
7673
|
id: string;
|
|
7674
|
+
user: string;
|
|
7675
7675
|
username: string;
|
|
7676
7676
|
timestamp: number;
|
|
7677
7677
|
created: number;
|
|
@@ -7715,8 +7715,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7715
7715
|
has_rich_preview?: boolean | undefined;
|
|
7716
7716
|
}, {
|
|
7717
7717
|
name: string;
|
|
7718
|
-
user: string;
|
|
7719
7718
|
id: string;
|
|
7719
|
+
user: string;
|
|
7720
7720
|
username: string;
|
|
7721
7721
|
timestamp: number;
|
|
7722
7722
|
created: number;
|
|
@@ -7768,8 +7768,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7768
7768
|
ok: boolean;
|
|
7769
7769
|
file?: {
|
|
7770
7770
|
name: string;
|
|
7771
|
-
user: string;
|
|
7772
7771
|
id: string;
|
|
7772
|
+
user: string;
|
|
7773
7773
|
username: string;
|
|
7774
7774
|
timestamp: number;
|
|
7775
7775
|
created: number;
|
|
@@ -7819,8 +7819,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
7819
7819
|
ok: boolean;
|
|
7820
7820
|
file?: {
|
|
7821
7821
|
name: string;
|
|
7822
|
-
user: string;
|
|
7823
7822
|
id: string;
|
|
7823
|
+
user: string;
|
|
7824
7824
|
username: string;
|
|
7825
7825
|
timestamp: number;
|
|
7826
7826
|
created: number;
|