@bubblelab/bubble-core 0.1.252 → 0.1.253

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.
Files changed (57) hide show
  1. package/dist/bubble-bundle.d.ts +84 -84
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/ai-agent.js +1 -1
  5. package/dist/bubbles/service-bubble/airtable.d.ts +36 -36
  6. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +150 -150
  8. package/dist/bubbles/service-bubble/assembled/assembled.d.ts +5 -5
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/confluence/confluence.d.ts +2 -2
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +180 -180
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +2 -2
  15. package/dist/bubbles/service-bubble/github.d.ts +120 -120
  16. package/dist/bubbles/service-bubble/gmail.d.ts +68 -68
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
  19. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +6 -6
  21. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/jira/jira.d.ts +48 -48
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  24. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  25. package/dist/bubbles/service-bubble/linear/linear.d.ts +1 -1
  26. package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
  27. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  28. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +4 -4
  29. package/dist/bubbles/service-bubble/resend.d.ts +2 -2
  30. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  31. package/dist/bubbles/service-bubble/slab/slab.d.ts +18 -18
  32. package/dist/bubbles/service-bubble/slack/slack.d.ts +122 -122
  33. package/dist/bubbles/service-bubble/storage.d.ts +8 -8
  34. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +60 -60
  35. package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +103 -103
  36. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  37. package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  40. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +158 -158
  41. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  42. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  43. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  44. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +32 -32
  46. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +50 -50
  47. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  49. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  50. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
  51. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  53. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
  54. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  55. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  56. package/dist/bubbles.json +3 -3
  57. package/package.json +2 -2
@@ -125,18 +125,18 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
125
125
  sort: "created" | "updated" | "full_name" | "pushed";
126
126
  operation: "list_repositories";
127
127
  page: number;
128
+ visibility: "public" | "private" | "all";
128
129
  direction: "asc" | "desc";
129
130
  per_page: number;
130
- visibility: "public" | "private" | "all";
131
131
  credentials?: Partial<Record<CredentialType, string>> | undefined;
132
132
  }, {
133
133
  operation: "list_repositories";
134
134
  sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
135
135
  credentials?: Partial<Record<CredentialType, string>> | undefined;
136
136
  page?: number | undefined;
137
+ visibility?: "public" | "private" | "all" | undefined;
137
138
  direction?: "asc" | "desc" | undefined;
138
139
  per_page?: number | undefined;
139
- visibility?: "public" | "private" | "all" | undefined;
140
140
  }>, z.ZodObject<{
141
141
  operation: z.ZodLiteral<"get_repository">;
142
142
  owner: z.ZodString;
@@ -188,8 +188,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
188
188
  owner: string;
189
189
  repo: string;
190
190
  credentials?: Partial<Record<CredentialType, string>> | undefined;
191
- body?: string | undefined;
192
191
  labels?: string[] | undefined;
192
+ body?: string | undefined;
193
193
  assignees?: string[] | undefined;
194
194
  }, {
195
195
  title: string;
@@ -197,8 +197,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
197
197
  owner: string;
198
198
  repo: string;
199
199
  credentials?: Partial<Record<CredentialType, string>> | undefined;
200
- body?: string | undefined;
201
200
  labels?: string[] | undefined;
201
+ body?: string | undefined;
202
202
  assignees?: string[] | undefined;
203
203
  }>, z.ZodObject<{
204
204
  operation: z.ZodLiteral<"list_issues">;
@@ -212,7 +212,7 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
212
212
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
213
213
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
214
214
  }, "strip", z.ZodTypeAny, {
215
- sort: "created" | "updated" | "comments";
215
+ sort: "comments" | "created" | "updated";
216
216
  operation: "list_issues";
217
217
  owner: string;
218
218
  page: number;
@@ -226,7 +226,7 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
226
226
  operation: "list_issues";
227
227
  owner: string;
228
228
  repo: string;
229
- sort?: "created" | "updated" | "comments" | undefined;
229
+ sort?: "comments" | "created" | "updated" | undefined;
230
230
  credentials?: Partial<Record<CredentialType, string>> | undefined;
231
231
  labels?: string | undefined;
232
232
  page?: number | undefined;
@@ -254,8 +254,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
254
254
  error: string;
255
255
  success: boolean;
256
256
  operation: "get_file";
257
- path?: string | undefined;
258
257
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
258
+ path?: string | undefined;
259
259
  name?: string | undefined;
260
260
  content?: string | undefined;
261
261
  url?: string | undefined;
@@ -269,8 +269,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
269
269
  error: string;
270
270
  success: boolean;
271
271
  operation: "get_file";
272
- path?: string | undefined;
273
272
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
273
+ path?: string | undefined;
274
274
  name?: string | undefined;
275
275
  content?: string | undefined;
276
276
  url?: string | undefined;
@@ -297,8 +297,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
297
297
  content: z.ZodOptional<z.ZodString>;
298
298
  encoding: z.ZodOptional<z.ZodString>;
299
299
  }, "strip", z.ZodTypeAny, {
300
- path: string;
301
300
  type: "file" | "dir" | "symlink" | "submodule";
301
+ path: string;
302
302
  name: string;
303
303
  url: string;
304
304
  size: number;
@@ -309,8 +309,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
309
309
  content?: string | undefined;
310
310
  encoding?: string | undefined;
311
311
  }, {
312
- path: string;
313
312
  type: "file" | "dir" | "symlink" | "submodule";
313
+ path: string;
314
314
  name: string;
315
315
  url: string;
316
316
  size: number;
@@ -326,8 +326,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
326
326
  success: boolean;
327
327
  operation: "get_directory";
328
328
  contents?: {
329
- path: string;
330
329
  type: "file" | "dir" | "symlink" | "submodule";
330
+ path: string;
331
331
  name: string;
332
332
  url: string;
333
333
  size: number;
@@ -343,8 +343,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
343
343
  success: boolean;
344
344
  operation: "get_directory";
345
345
  contents?: {
346
- path: string;
347
346
  type: "file" | "dir" | "symlink" | "submodule";
347
+ path: string;
348
348
  name: string;
349
349
  url: string;
350
350
  size: number;
@@ -389,21 +389,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
389
389
  ref: z.ZodString;
390
390
  sha: z.ZodString;
391
391
  }, "strip", z.ZodTypeAny, {
392
- ref: string;
393
392
  sha: string;
394
- }, {
395
393
  ref: string;
394
+ }, {
396
395
  sha: string;
396
+ ref: string;
397
397
  }>;
398
398
  base: z.ZodObject<{
399
399
  ref: z.ZodString;
400
400
  sha: z.ZodString;
401
401
  }, "strip", z.ZodTypeAny, {
402
- ref: string;
403
402
  sha: string;
404
- }, {
405
403
  ref: string;
404
+ }, {
406
405
  sha: string;
406
+ ref: string;
407
407
  }>;
408
408
  merged: z.ZodOptional<z.ZodBoolean>;
409
409
  mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -433,12 +433,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
433
433
  closed_at: string | null;
434
434
  merged_at: string | null;
435
435
  head: {
436
- ref: string;
437
436
  sha: string;
437
+ ref: string;
438
438
  };
439
439
  base: {
440
- ref: string;
441
440
  sha: string;
441
+ ref: string;
442
442
  };
443
443
  comments?: number | undefined;
444
444
  merged?: boolean | undefined;
@@ -468,12 +468,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
468
468
  closed_at: string | null;
469
469
  merged_at: string | null;
470
470
  head: {
471
- ref: string;
472
471
  sha: string;
472
+ ref: string;
473
473
  };
474
474
  base: {
475
- ref: string;
476
475
  sha: string;
476
+ ref: string;
477
477
  };
478
478
  comments?: number | undefined;
479
479
  merged?: boolean | undefined;
@@ -508,12 +508,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
508
508
  closed_at: string | null;
509
509
  merged_at: string | null;
510
510
  head: {
511
- ref: string;
512
511
  sha: string;
512
+ ref: string;
513
513
  };
514
514
  base: {
515
- ref: string;
516
515
  sha: string;
516
+ ref: string;
517
517
  };
518
518
  comments?: number | undefined;
519
519
  merged?: boolean | undefined;
@@ -548,12 +548,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
548
548
  closed_at: string | null;
549
549
  merged_at: string | null;
550
550
  head: {
551
- ref: string;
552
551
  sha: string;
552
+ ref: string;
553
553
  };
554
554
  base: {
555
- ref: string;
556
555
  sha: string;
556
+ ref: string;
557
557
  };
558
558
  comments?: number | undefined;
559
559
  merged?: boolean | undefined;
@@ -599,21 +599,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
599
599
  ref: z.ZodString;
600
600
  sha: z.ZodString;
601
601
  }, "strip", z.ZodTypeAny, {
602
- ref: string;
603
602
  sha: string;
604
- }, {
605
603
  ref: string;
604
+ }, {
606
605
  sha: string;
606
+ ref: string;
607
607
  }>>;
608
608
  base: z.ZodOptional<z.ZodObject<{
609
609
  ref: z.ZodString;
610
610
  sha: z.ZodString;
611
611
  }, "strip", z.ZodTypeAny, {
612
- ref: string;
613
612
  sha: string;
614
- }, {
615
613
  ref: string;
614
+ }, {
616
615
  sha: string;
616
+ ref: string;
617
617
  }>>;
618
618
  merged: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
619
619
  mergeable: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
@@ -636,10 +636,10 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
636
636
  login: string;
637
637
  avatar_url: string;
638
638
  } | undefined;
639
+ comments?: number | undefined;
639
640
  body?: string | null | undefined;
640
641
  created_at?: string | undefined;
641
642
  draft?: boolean | undefined;
642
- comments?: number | undefined;
643
643
  state?: "open" | "closed" | undefined;
644
644
  html_url?: string | undefined;
645
645
  node_id?: string | undefined;
@@ -647,12 +647,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
647
647
  closed_at?: string | null | undefined;
648
648
  merged_at?: string | null | undefined;
649
649
  head?: {
650
- ref: string;
651
650
  sha: string;
651
+ ref: string;
652
652
  } | undefined;
653
653
  base?: {
654
- ref: string;
655
654
  sha: string;
655
+ ref: string;
656
656
  } | undefined;
657
657
  merged?: boolean | undefined;
658
658
  mergeable?: boolean | null | undefined;
@@ -674,10 +674,10 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
674
674
  login: string;
675
675
  avatar_url: string;
676
676
  } | undefined;
677
+ comments?: number | undefined;
677
678
  body?: string | null | undefined;
678
679
  created_at?: string | undefined;
679
680
  draft?: boolean | undefined;
680
- comments?: number | undefined;
681
681
  state?: "open" | "closed" | undefined;
682
682
  html_url?: string | undefined;
683
683
  node_id?: string | undefined;
@@ -685,12 +685,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
685
685
  closed_at?: string | null | undefined;
686
686
  merged_at?: string | null | undefined;
687
687
  head?: {
688
- ref: string;
689
688
  sha: string;
689
+ ref: string;
690
690
  } | undefined;
691
691
  base?: {
692
- ref: string;
693
692
  sha: string;
693
+ ref: string;
694
694
  } | undefined;
695
695
  merged?: boolean | undefined;
696
696
  mergeable?: boolean | null | undefined;
@@ -806,8 +806,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
806
806
  language: string | null;
807
807
  html_url: string;
808
808
  node_id: string;
809
- updated_at: string;
810
809
  fork: boolean;
810
+ updated_at: string;
811
811
  pushed_at: string;
812
812
  stargazers_count: number;
813
813
  watchers_count: number;
@@ -832,8 +832,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
832
832
  language: string | null;
833
833
  html_url: string;
834
834
  node_id: string;
835
- updated_at: string;
836
835
  fork: boolean;
836
+ updated_at: string;
837
837
  pushed_at: string;
838
838
  stargazers_count: number;
839
839
  watchers_count: number;
@@ -863,8 +863,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
863
863
  language: string | null;
864
864
  html_url: string;
865
865
  node_id: string;
866
- updated_at: string;
867
866
  fork: boolean;
867
+ updated_at: string;
868
868
  pushed_at: string;
869
869
  stargazers_count: number;
870
870
  watchers_count: number;
@@ -894,8 +894,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
894
894
  language: string | null;
895
895
  html_url: string;
896
896
  node_id: string;
897
- updated_at: string;
898
897
  fork: boolean;
898
+ updated_at: string;
899
899
  pushed_at: string;
900
900
  stargazers_count: number;
901
901
  watchers_count: number;
@@ -962,17 +962,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
962
962
  } | undefined;
963
963
  full_name?: string | undefined;
964
964
  language?: string | null | undefined;
965
- visibility?: string | undefined;
966
965
  html_url?: string | undefined;
967
966
  node_id?: string | undefined;
968
- updated_at?: string | undefined;
969
967
  fork?: boolean | undefined;
968
+ updated_at?: string | undefined;
970
969
  pushed_at?: string | undefined;
971
970
  stargazers_count?: number | undefined;
972
971
  watchers_count?: number | undefined;
973
972
  forks_count?: number | undefined;
974
973
  open_issues_count?: number | undefined;
975
974
  default_branch?: string | undefined;
975
+ visibility?: string | undefined;
976
976
  }, {
977
977
  error: string;
978
978
  success: boolean;
@@ -991,17 +991,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
991
991
  } | undefined;
992
992
  full_name?: string | undefined;
993
993
  language?: string | null | undefined;
994
- visibility?: string | undefined;
995
994
  html_url?: string | undefined;
996
995
  node_id?: string | undefined;
997
- updated_at?: string | undefined;
998
996
  fork?: boolean | undefined;
997
+ updated_at?: string | undefined;
999
998
  pushed_at?: string | undefined;
1000
999
  stargazers_count?: number | undefined;
1001
1000
  watchers_count?: number | undefined;
1002
1001
  forks_count?: number | undefined;
1003
1002
  open_issues_count?: number | undefined;
1004
1003
  default_branch?: string | undefined;
1004
+ visibility?: string | undefined;
1005
1005
  }>, z.ZodObject<{
1006
1006
  operation: z.ZodLiteral<"create_issue_comment">;
1007
1007
  success: z.ZodBoolean;
@@ -1104,15 +1104,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1104
1104
  id: number;
1105
1105
  login: string;
1106
1106
  } | undefined;
1107
- body?: string | null | undefined;
1108
- created_at?: string | undefined;
1107
+ comments?: number | undefined;
1109
1108
  labels?: {
1110
1109
  description: string | null;
1111
1110
  name: string;
1112
1111
  id: number;
1113
1112
  color: string;
1114
1113
  }[] | undefined;
1115
- comments?: number | undefined;
1114
+ body?: string | null | undefined;
1115
+ created_at?: string | undefined;
1116
1116
  state?: "open" | "closed" | undefined;
1117
1117
  html_url?: string | undefined;
1118
1118
  node_id?: string | undefined;
@@ -1129,15 +1129,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1129
1129
  id: number;
1130
1130
  login: string;
1131
1131
  } | undefined;
1132
- body?: string | null | undefined;
1133
- created_at?: string | undefined;
1132
+ comments?: number | undefined;
1134
1133
  labels?: {
1135
1134
  description: string | null;
1136
1135
  name: string;
1137
1136
  id: number;
1138
1137
  color: string;
1139
1138
  }[] | undefined;
1140
- comments?: number | undefined;
1139
+ body?: string | null | undefined;
1140
+ created_at?: string | undefined;
1141
1141
  state?: "open" | "closed" | undefined;
1142
1142
  html_url?: string | undefined;
1143
1143
  node_id?: string | undefined;
@@ -1193,15 +1193,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1193
1193
  id: number;
1194
1194
  login: string;
1195
1195
  };
1196
- body: string | null;
1197
- created_at: string;
1196
+ comments: number;
1198
1197
  labels: {
1199
1198
  description: string | null;
1200
1199
  name: string;
1201
1200
  id: number;
1202
1201
  color: string;
1203
1202
  }[];
1204
- comments: number;
1203
+ body: string | null;
1204
+ created_at: string;
1205
1205
  state: "open" | "closed";
1206
1206
  html_url: string;
1207
1207
  node_id: string;
@@ -1215,15 +1215,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1215
1215
  id: number;
1216
1216
  login: string;
1217
1217
  };
1218
- body: string | null;
1219
- created_at: string;
1218
+ comments: number;
1220
1219
  labels: {
1221
1220
  description: string | null;
1222
1221
  name: string;
1223
1222
  id: number;
1224
1223
  color: string;
1225
1224
  }[];
1226
- comments: number;
1225
+ body: string | null;
1226
+ created_at: string;
1227
1227
  state: "open" | "closed";
1228
1228
  html_url: string;
1229
1229
  node_id: string;
@@ -1242,15 +1242,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1242
1242
  id: number;
1243
1243
  login: string;
1244
1244
  };
1245
- body: string | null;
1246
- created_at: string;
1245
+ comments: number;
1247
1246
  labels: {
1248
1247
  description: string | null;
1249
1248
  name: string;
1250
1249
  id: number;
1251
1250
  color: string;
1252
1251
  }[];
1253
- comments: number;
1252
+ body: string | null;
1253
+ created_at: string;
1254
1254
  state: "open" | "closed";
1255
1255
  html_url: string;
1256
1256
  node_id: string;
@@ -1269,15 +1269,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1269
1269
  id: number;
1270
1270
  login: string;
1271
1271
  };
1272
- body: string | null;
1273
- created_at: string;
1272
+ comments: number;
1274
1273
  labels: {
1275
1274
  description: string | null;
1276
1275
  name: string;
1277
1276
  id: number;
1278
1277
  color: string;
1279
1278
  }[];
1280
- comments: number;
1279
+ body: string | null;
1280
+ created_at: string;
1281
1281
  state: "open" | "closed";
1282
1282
  html_url: string;
1283
1283
  node_id: string;
@@ -1451,18 +1451,18 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1451
1451
  sort: "created" | "updated" | "full_name" | "pushed";
1452
1452
  operation: "list_repositories";
1453
1453
  page: number;
1454
+ visibility: "public" | "private" | "all";
1454
1455
  direction: "asc" | "desc";
1455
1456
  per_page: number;
1456
- visibility: "public" | "private" | "all";
1457
1457
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1458
1458
  }, {
1459
1459
  operation: "list_repositories";
1460
1460
  sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
1461
1461
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1462
1462
  page?: number | undefined;
1463
+ visibility?: "public" | "private" | "all" | undefined;
1463
1464
  direction?: "asc" | "desc" | undefined;
1464
1465
  per_page?: number | undefined;
1465
- visibility?: "public" | "private" | "all" | undefined;
1466
1466
  }>, z.ZodObject<{
1467
1467
  operation: z.ZodLiteral<"get_repository">;
1468
1468
  owner: z.ZodString;
@@ -1514,8 +1514,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1514
1514
  owner: string;
1515
1515
  repo: string;
1516
1516
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1517
- body?: string | undefined;
1518
1517
  labels?: string[] | undefined;
1518
+ body?: string | undefined;
1519
1519
  assignees?: string[] | undefined;
1520
1520
  }, {
1521
1521
  title: string;
@@ -1523,8 +1523,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1523
1523
  owner: string;
1524
1524
  repo: string;
1525
1525
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1526
- body?: string | undefined;
1527
1526
  labels?: string[] | undefined;
1527
+ body?: string | undefined;
1528
1528
  assignees?: string[] | undefined;
1529
1529
  }>, z.ZodObject<{
1530
1530
  operation: z.ZodLiteral<"list_issues">;
@@ -1538,7 +1538,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1538
1538
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1539
1539
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1540
1540
  }, "strip", z.ZodTypeAny, {
1541
- sort: "created" | "updated" | "comments";
1541
+ sort: "comments" | "created" | "updated";
1542
1542
  operation: "list_issues";
1543
1543
  owner: string;
1544
1544
  page: number;
@@ -1552,7 +1552,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1552
1552
  operation: "list_issues";
1553
1553
  owner: string;
1554
1554
  repo: string;
1555
- sort?: "created" | "updated" | "comments" | undefined;
1555
+ sort?: "comments" | "created" | "updated" | undefined;
1556
1556
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1557
1557
  labels?: string | undefined;
1558
1558
  page?: number | undefined;
@@ -1580,8 +1580,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1580
1580
  error: string;
1581
1581
  success: boolean;
1582
1582
  operation: "get_file";
1583
- path?: string | undefined;
1584
1583
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
1584
+ path?: string | undefined;
1585
1585
  name?: string | undefined;
1586
1586
  content?: string | undefined;
1587
1587
  url?: string | undefined;
@@ -1595,8 +1595,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1595
1595
  error: string;
1596
1596
  success: boolean;
1597
1597
  operation: "get_file";
1598
- path?: string | undefined;
1599
1598
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
1599
+ path?: string | undefined;
1600
1600
  name?: string | undefined;
1601
1601
  content?: string | undefined;
1602
1602
  url?: string | undefined;
@@ -1623,8 +1623,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1623
1623
  content: z.ZodOptional<z.ZodString>;
1624
1624
  encoding: z.ZodOptional<z.ZodString>;
1625
1625
  }, "strip", z.ZodTypeAny, {
1626
- path: string;
1627
1626
  type: "file" | "dir" | "symlink" | "submodule";
1627
+ path: string;
1628
1628
  name: string;
1629
1629
  url: string;
1630
1630
  size: number;
@@ -1635,8 +1635,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1635
1635
  content?: string | undefined;
1636
1636
  encoding?: string | undefined;
1637
1637
  }, {
1638
- path: string;
1639
1638
  type: "file" | "dir" | "symlink" | "submodule";
1639
+ path: string;
1640
1640
  name: string;
1641
1641
  url: string;
1642
1642
  size: number;
@@ -1652,8 +1652,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1652
1652
  success: boolean;
1653
1653
  operation: "get_directory";
1654
1654
  contents?: {
1655
- path: string;
1656
1655
  type: "file" | "dir" | "symlink" | "submodule";
1656
+ path: string;
1657
1657
  name: string;
1658
1658
  url: string;
1659
1659
  size: number;
@@ -1669,8 +1669,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1669
1669
  success: boolean;
1670
1670
  operation: "get_directory";
1671
1671
  contents?: {
1672
- path: string;
1673
1672
  type: "file" | "dir" | "symlink" | "submodule";
1673
+ path: string;
1674
1674
  name: string;
1675
1675
  url: string;
1676
1676
  size: number;
@@ -1715,21 +1715,21 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1715
1715
  ref: z.ZodString;
1716
1716
  sha: z.ZodString;
1717
1717
  }, "strip", z.ZodTypeAny, {
1718
- ref: string;
1719
1718
  sha: string;
1720
- }, {
1721
1719
  ref: string;
1720
+ }, {
1722
1721
  sha: string;
1722
+ ref: string;
1723
1723
  }>;
1724
1724
  base: z.ZodObject<{
1725
1725
  ref: z.ZodString;
1726
1726
  sha: z.ZodString;
1727
1727
  }, "strip", z.ZodTypeAny, {
1728
- ref: string;
1729
1728
  sha: string;
1730
- }, {
1731
1729
  ref: string;
1730
+ }, {
1732
1731
  sha: string;
1732
+ ref: string;
1733
1733
  }>;
1734
1734
  merged: z.ZodOptional<z.ZodBoolean>;
1735
1735
  mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -1759,12 +1759,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1759
1759
  closed_at: string | null;
1760
1760
  merged_at: string | null;
1761
1761
  head: {
1762
- ref: string;
1763
1762
  sha: string;
1763
+ ref: string;
1764
1764
  };
1765
1765
  base: {
1766
- ref: string;
1767
1766
  sha: string;
1767
+ ref: string;
1768
1768
  };
1769
1769
  comments?: number | undefined;
1770
1770
  merged?: boolean | undefined;
@@ -1794,12 +1794,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1794
1794
  closed_at: string | null;
1795
1795
  merged_at: string | null;
1796
1796
  head: {
1797
- ref: string;
1798
1797
  sha: string;
1798
+ ref: string;
1799
1799
  };
1800
1800
  base: {
1801
- ref: string;
1802
1801
  sha: string;
1802
+ ref: string;
1803
1803
  };
1804
1804
  comments?: number | undefined;
1805
1805
  merged?: boolean | undefined;
@@ -1834,12 +1834,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1834
1834
  closed_at: string | null;
1835
1835
  merged_at: string | null;
1836
1836
  head: {
1837
- ref: string;
1838
1837
  sha: string;
1838
+ ref: string;
1839
1839
  };
1840
1840
  base: {
1841
- ref: string;
1842
1841
  sha: string;
1842
+ ref: string;
1843
1843
  };
1844
1844
  comments?: number | undefined;
1845
1845
  merged?: boolean | undefined;
@@ -1874,12 +1874,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1874
1874
  closed_at: string | null;
1875
1875
  merged_at: string | null;
1876
1876
  head: {
1877
- ref: string;
1878
1877
  sha: string;
1878
+ ref: string;
1879
1879
  };
1880
1880
  base: {
1881
- ref: string;
1882
1881
  sha: string;
1882
+ ref: string;
1883
1883
  };
1884
1884
  comments?: number | undefined;
1885
1885
  merged?: boolean | undefined;
@@ -1925,21 +1925,21 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1925
1925
  ref: z.ZodString;
1926
1926
  sha: z.ZodString;
1927
1927
  }, "strip", z.ZodTypeAny, {
1928
- ref: string;
1929
1928
  sha: string;
1930
- }, {
1931
1929
  ref: string;
1930
+ }, {
1932
1931
  sha: string;
1932
+ ref: string;
1933
1933
  }>>;
1934
1934
  base: z.ZodOptional<z.ZodObject<{
1935
1935
  ref: z.ZodString;
1936
1936
  sha: z.ZodString;
1937
1937
  }, "strip", z.ZodTypeAny, {
1938
- ref: string;
1939
1938
  sha: string;
1940
- }, {
1941
1939
  ref: string;
1940
+ }, {
1942
1941
  sha: string;
1942
+ ref: string;
1943
1943
  }>>;
1944
1944
  merged: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1945
1945
  mergeable: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
@@ -1962,10 +1962,10 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1962
1962
  login: string;
1963
1963
  avatar_url: string;
1964
1964
  } | undefined;
1965
+ comments?: number | undefined;
1965
1966
  body?: string | null | undefined;
1966
1967
  created_at?: string | undefined;
1967
1968
  draft?: boolean | undefined;
1968
- comments?: number | undefined;
1969
1969
  state?: "open" | "closed" | undefined;
1970
1970
  html_url?: string | undefined;
1971
1971
  node_id?: string | undefined;
@@ -1973,12 +1973,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1973
1973
  closed_at?: string | null | undefined;
1974
1974
  merged_at?: string | null | undefined;
1975
1975
  head?: {
1976
- ref: string;
1977
1976
  sha: string;
1977
+ ref: string;
1978
1978
  } | undefined;
1979
1979
  base?: {
1980
- ref: string;
1981
1980
  sha: string;
1981
+ ref: string;
1982
1982
  } | undefined;
1983
1983
  merged?: boolean | undefined;
1984
1984
  mergeable?: boolean | null | undefined;
@@ -2000,10 +2000,10 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2000
2000
  login: string;
2001
2001
  avatar_url: string;
2002
2002
  } | undefined;
2003
+ comments?: number | undefined;
2003
2004
  body?: string | null | undefined;
2004
2005
  created_at?: string | undefined;
2005
2006
  draft?: boolean | undefined;
2006
- comments?: number | undefined;
2007
2007
  state?: "open" | "closed" | undefined;
2008
2008
  html_url?: string | undefined;
2009
2009
  node_id?: string | undefined;
@@ -2011,12 +2011,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2011
2011
  closed_at?: string | null | undefined;
2012
2012
  merged_at?: string | null | undefined;
2013
2013
  head?: {
2014
- ref: string;
2015
2014
  sha: string;
2015
+ ref: string;
2016
2016
  } | undefined;
2017
2017
  base?: {
2018
- ref: string;
2019
2018
  sha: string;
2019
+ ref: string;
2020
2020
  } | undefined;
2021
2021
  merged?: boolean | undefined;
2022
2022
  mergeable?: boolean | null | undefined;
@@ -2132,8 +2132,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2132
2132
  language: string | null;
2133
2133
  html_url: string;
2134
2134
  node_id: string;
2135
- updated_at: string;
2136
2135
  fork: boolean;
2136
+ updated_at: string;
2137
2137
  pushed_at: string;
2138
2138
  stargazers_count: number;
2139
2139
  watchers_count: number;
@@ -2158,8 +2158,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2158
2158
  language: string | null;
2159
2159
  html_url: string;
2160
2160
  node_id: string;
2161
- updated_at: string;
2162
2161
  fork: boolean;
2162
+ updated_at: string;
2163
2163
  pushed_at: string;
2164
2164
  stargazers_count: number;
2165
2165
  watchers_count: number;
@@ -2189,8 +2189,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2189
2189
  language: string | null;
2190
2190
  html_url: string;
2191
2191
  node_id: string;
2192
- updated_at: string;
2193
2192
  fork: boolean;
2193
+ updated_at: string;
2194
2194
  pushed_at: string;
2195
2195
  stargazers_count: number;
2196
2196
  watchers_count: number;
@@ -2220,8 +2220,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2220
2220
  language: string | null;
2221
2221
  html_url: string;
2222
2222
  node_id: string;
2223
- updated_at: string;
2224
2223
  fork: boolean;
2224
+ updated_at: string;
2225
2225
  pushed_at: string;
2226
2226
  stargazers_count: number;
2227
2227
  watchers_count: number;
@@ -2288,17 +2288,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2288
2288
  } | undefined;
2289
2289
  full_name?: string | undefined;
2290
2290
  language?: string | null | undefined;
2291
- visibility?: string | undefined;
2292
2291
  html_url?: string | undefined;
2293
2292
  node_id?: string | undefined;
2294
- updated_at?: string | undefined;
2295
2293
  fork?: boolean | undefined;
2294
+ updated_at?: string | undefined;
2296
2295
  pushed_at?: string | undefined;
2297
2296
  stargazers_count?: number | undefined;
2298
2297
  watchers_count?: number | undefined;
2299
2298
  forks_count?: number | undefined;
2300
2299
  open_issues_count?: number | undefined;
2301
2300
  default_branch?: string | undefined;
2301
+ visibility?: string | undefined;
2302
2302
  }, {
2303
2303
  error: string;
2304
2304
  success: boolean;
@@ -2317,17 +2317,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2317
2317
  } | undefined;
2318
2318
  full_name?: string | undefined;
2319
2319
  language?: string | null | undefined;
2320
- visibility?: string | undefined;
2321
2320
  html_url?: string | undefined;
2322
2321
  node_id?: string | undefined;
2323
- updated_at?: string | undefined;
2324
2322
  fork?: boolean | undefined;
2323
+ updated_at?: string | undefined;
2325
2324
  pushed_at?: string | undefined;
2326
2325
  stargazers_count?: number | undefined;
2327
2326
  watchers_count?: number | undefined;
2328
2327
  forks_count?: number | undefined;
2329
2328
  open_issues_count?: number | undefined;
2330
2329
  default_branch?: string | undefined;
2330
+ visibility?: string | undefined;
2331
2331
  }>, z.ZodObject<{
2332
2332
  operation: z.ZodLiteral<"create_issue_comment">;
2333
2333
  success: z.ZodBoolean;
@@ -2430,15 +2430,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2430
2430
  id: number;
2431
2431
  login: string;
2432
2432
  } | undefined;
2433
- body?: string | null | undefined;
2434
- created_at?: string | undefined;
2433
+ comments?: number | undefined;
2435
2434
  labels?: {
2436
2435
  description: string | null;
2437
2436
  name: string;
2438
2437
  id: number;
2439
2438
  color: string;
2440
2439
  }[] | undefined;
2441
- comments?: number | undefined;
2440
+ body?: string | null | undefined;
2441
+ created_at?: string | undefined;
2442
2442
  state?: "open" | "closed" | undefined;
2443
2443
  html_url?: string | undefined;
2444
2444
  node_id?: string | undefined;
@@ -2455,15 +2455,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2455
2455
  id: number;
2456
2456
  login: string;
2457
2457
  } | undefined;
2458
- body?: string | null | undefined;
2459
- created_at?: string | undefined;
2458
+ comments?: number | undefined;
2460
2459
  labels?: {
2461
2460
  description: string | null;
2462
2461
  name: string;
2463
2462
  id: number;
2464
2463
  color: string;
2465
2464
  }[] | undefined;
2466
- comments?: number | undefined;
2465
+ body?: string | null | undefined;
2466
+ created_at?: string | undefined;
2467
2467
  state?: "open" | "closed" | undefined;
2468
2468
  html_url?: string | undefined;
2469
2469
  node_id?: string | undefined;
@@ -2519,15 +2519,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2519
2519
  id: number;
2520
2520
  login: string;
2521
2521
  };
2522
- body: string | null;
2523
- created_at: string;
2522
+ comments: number;
2524
2523
  labels: {
2525
2524
  description: string | null;
2526
2525
  name: string;
2527
2526
  id: number;
2528
2527
  color: string;
2529
2528
  }[];
2530
- comments: number;
2529
+ body: string | null;
2530
+ created_at: string;
2531
2531
  state: "open" | "closed";
2532
2532
  html_url: string;
2533
2533
  node_id: string;
@@ -2541,15 +2541,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2541
2541
  id: number;
2542
2542
  login: string;
2543
2543
  };
2544
- body: string | null;
2545
- created_at: string;
2544
+ comments: number;
2546
2545
  labels: {
2547
2546
  description: string | null;
2548
2547
  name: string;
2549
2548
  id: number;
2550
2549
  color: string;
2551
2550
  }[];
2552
- comments: number;
2551
+ body: string | null;
2552
+ created_at: string;
2553
2553
  state: "open" | "closed";
2554
2554
  html_url: string;
2555
2555
  node_id: string;
@@ -2568,15 +2568,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2568
2568
  id: number;
2569
2569
  login: string;
2570
2570
  };
2571
- body: string | null;
2572
- created_at: string;
2571
+ comments: number;
2573
2572
  labels: {
2574
2573
  description: string | null;
2575
2574
  name: string;
2576
2575
  id: number;
2577
2576
  color: string;
2578
2577
  }[];
2579
- comments: number;
2578
+ body: string | null;
2579
+ created_at: string;
2580
2580
  state: "open" | "closed";
2581
2581
  html_url: string;
2582
2582
  node_id: string;
@@ -2595,15 +2595,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2595
2595
  id: number;
2596
2596
  login: string;
2597
2597
  };
2598
- body: string | null;
2599
- created_at: string;
2598
+ comments: number;
2600
2599
  labels: {
2601
2600
  description: string | null;
2602
2601
  name: string;
2603
2602
  id: number;
2604
2603
  color: string;
2605
2604
  }[];
2606
- comments: number;
2605
+ body: string | null;
2606
+ created_at: string;
2607
2607
  state: "open" | "closed";
2608
2608
  html_url: string;
2609
2609
  node_id: string;