@bubblelab/bubble-core 0.1.23 → 0.1.25

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 (51) hide show
  1. package/dist/bubble-bundle.d.ts +55 -55
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +36 -36
  15. package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
  16. package/dist/bubbles/service-bubble/github.d.ts +52 -52
  17. package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
  20. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/google-drive.js +22 -1
  22. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  23. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  25. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
  27. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
  29. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  30. package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
  31. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  34. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
  38. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
  40. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  41. package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
  42. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  43. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +22 -22
  50. package/dist/bubbles.json +7 -7
  51. package/package.json +2 -2
@@ -10,15 +10,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
10
10
  ref: z.ZodOptional<z.ZodString>;
11
11
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- operation: "get_file";
14
13
  path: string;
14
+ operation: "get_file";
15
15
  owner: string;
16
16
  repo: string;
17
17
  credentials?: Partial<Record<CredentialType, string>> | undefined;
18
18
  ref?: string | undefined;
19
19
  }, {
20
- operation: "get_file";
21
20
  path: string;
21
+ operation: "get_file";
22
22
  owner: string;
23
23
  repo: string;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -31,8 +31,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
31
31
  ref: z.ZodOptional<z.ZodString>;
32
32
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
33
33
  }, "strip", z.ZodTypeAny, {
34
- operation: "get_directory";
35
34
  path: string;
35
+ operation: "get_directory";
36
36
  owner: string;
37
37
  repo: string;
38
38
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -55,9 +55,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
55
55
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
56
56
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
57
57
  }, "strip", z.ZodTypeAny, {
58
- operation: "list_pull_requests";
59
58
  sort: "created" | "updated" | "popularity" | "long-running";
60
59
  state: "all" | "open" | "closed";
60
+ operation: "list_pull_requests";
61
61
  owner: string;
62
62
  page: number;
63
63
  repo: string;
@@ -69,8 +69,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
69
69
  owner: string;
70
70
  repo: string;
71
71
  sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
72
- credentials?: Partial<Record<CredentialType, string>> | undefined;
73
72
  state?: "all" | "open" | "closed" | undefined;
73
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
74
74
  page?: number | undefined;
75
75
  direction?: "asc" | "desc" | undefined;
76
76
  per_page?: number | undefined;
@@ -122,8 +122,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
122
122
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
123
123
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
124
124
  }, "strip", z.ZodTypeAny, {
125
- operation: "list_repositories";
126
125
  sort: "created" | "updated" | "full_name" | "pushed";
126
+ operation: "list_repositories";
127
127
  page: number;
128
128
  visibility: "public" | "private" | "all";
129
129
  direction: "asc" | "desc";
@@ -185,9 +185,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
185
185
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
186
186
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
187
187
  }, "strip", z.ZodTypeAny, {
188
- operation: "list_issues";
189
188
  sort: "created" | "updated" | "comments";
190
189
  state: "all" | "open" | "closed";
190
+ operation: "list_issues";
191
191
  owner: string;
192
192
  page: number;
193
193
  repo: string;
@@ -200,8 +200,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
200
200
  owner: string;
201
201
  repo: string;
202
202
  sort?: "created" | "updated" | "comments" | undefined;
203
- credentials?: Partial<Record<CredentialType, string>> | undefined;
204
203
  state?: "all" | "open" | "closed" | undefined;
204
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
205
205
  labels?: string | undefined;
206
206
  page?: number | undefined;
207
207
  direction?: "asc" | "desc" | undefined;
@@ -227,9 +227,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
227
227
  operation: "get_file";
228
228
  success: boolean;
229
229
  error: string;
230
+ name?: string | undefined;
230
231
  path?: string | undefined;
231
232
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
232
- name?: string | undefined;
233
233
  content?: string | undefined;
234
234
  url?: string | undefined;
235
235
  size?: number | undefined;
@@ -242,9 +242,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
242
242
  operation: "get_file";
243
243
  success: boolean;
244
244
  error: string;
245
+ name?: string | undefined;
245
246
  path?: string | undefined;
246
247
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
247
- name?: string | undefined;
248
248
  content?: string | undefined;
249
249
  url?: string | undefined;
250
250
  size?: number | undefined;
@@ -270,9 +270,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
270
270
  content: z.ZodOptional<z.ZodString>;
271
271
  encoding: z.ZodOptional<z.ZodString>;
272
272
  }, "strip", z.ZodTypeAny, {
273
+ name: string;
273
274
  path: string;
274
275
  type: "file" | "dir" | "symlink" | "submodule";
275
- name: string;
276
276
  url: string;
277
277
  size: number;
278
278
  sha: string;
@@ -282,9 +282,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
282
282
  content?: string | undefined;
283
283
  encoding?: string | undefined;
284
284
  }, {
285
+ name: string;
285
286
  path: string;
286
287
  type: "file" | "dir" | "symlink" | "submodule";
287
- name: string;
288
288
  url: string;
289
289
  size: number;
290
290
  sha: string;
@@ -299,9 +299,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
299
299
  success: boolean;
300
300
  error: string;
301
301
  contents?: {
302
+ name: string;
302
303
  path: string;
303
304
  type: "file" | "dir" | "symlink" | "submodule";
304
- name: string;
305
305
  url: string;
306
306
  size: number;
307
307
  sha: string;
@@ -316,9 +316,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
316
316
  success: boolean;
317
317
  error: string;
318
318
  contents?: {
319
+ name: string;
319
320
  path: string;
320
321
  type: "file" | "dir" | "symlink" | "submodule";
321
- name: string;
322
322
  url: string;
323
323
  size: number;
324
324
  sha: string;
@@ -763,8 +763,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
763
763
  default_branch: z.ZodString;
764
764
  visibility: z.ZodOptional<z.ZodString>;
765
765
  }, "strip", z.ZodTypeAny, {
766
- description: string | null;
767
766
  name: string;
767
+ description: string | null;
768
768
  id: number;
769
769
  size: number;
770
770
  private: boolean;
@@ -789,8 +789,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
789
789
  default_branch: string;
790
790
  visibility?: string | undefined;
791
791
  }, {
792
- description: string | null;
793
792
  name: string;
793
+ description: string | null;
794
794
  id: number;
795
795
  size: number;
796
796
  private: boolean;
@@ -820,8 +820,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
820
820
  success: boolean;
821
821
  error: string;
822
822
  repositories?: {
823
- description: string | null;
824
823
  name: string;
824
+ description: string | null;
825
825
  id: number;
826
826
  size: number;
827
827
  private: boolean;
@@ -851,8 +851,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
851
851
  success: boolean;
852
852
  error: string;
853
853
  repositories?: {
854
- description: string | null;
855
854
  name: string;
855
+ description: string | null;
856
856
  id: number;
857
857
  size: number;
858
858
  private: boolean;
@@ -921,8 +921,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
921
921
  operation: "get_repository";
922
922
  success: boolean;
923
923
  error: string;
924
- description?: string | null | undefined;
925
924
  name?: string | undefined;
925
+ description?: string | null | undefined;
926
926
  id?: number | undefined;
927
927
  size?: number | undefined;
928
928
  private?: boolean | undefined;
@@ -950,8 +950,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
950
950
  operation: "get_repository";
951
951
  success: boolean;
952
952
  error: string;
953
- description?: string | null | undefined;
954
953
  name?: string | undefined;
954
+ description?: string | null | undefined;
955
955
  id?: number | undefined;
956
956
  size?: number | undefined;
957
957
  private?: boolean | undefined;
@@ -1051,13 +1051,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1051
1051
  color: z.ZodString;
1052
1052
  description: z.ZodNullable<z.ZodString>;
1053
1053
  }, "strip", z.ZodTypeAny, {
1054
- description: string | null;
1055
1054
  name: string;
1055
+ description: string | null;
1056
1056
  id: number;
1057
1057
  color: string;
1058
1058
  }, {
1059
- description: string | null;
1060
1059
  name: string;
1060
+ description: string | null;
1061
1061
  id: number;
1062
1062
  color: string;
1063
1063
  }>, "many">;
@@ -1078,8 +1078,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1078
1078
  body: string | null;
1079
1079
  created_at: string;
1080
1080
  labels: {
1081
- description: string | null;
1082
1081
  name: string;
1082
+ description: string | null;
1083
1083
  id: number;
1084
1084
  color: string;
1085
1085
  }[];
@@ -1100,8 +1100,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1100
1100
  body: string | null;
1101
1101
  created_at: string;
1102
1102
  labels: {
1103
- description: string | null;
1104
1103
  name: string;
1104
+ description: string | null;
1105
1105
  id: number;
1106
1106
  color: string;
1107
1107
  }[];
@@ -1127,8 +1127,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1127
1127
  body: string | null;
1128
1128
  created_at: string;
1129
1129
  labels: {
1130
- description: string | null;
1131
1130
  name: string;
1131
+ description: string | null;
1132
1132
  id: number;
1133
1133
  color: string;
1134
1134
  }[];
@@ -1154,8 +1154,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
1154
1154
  body: string | null;
1155
1155
  created_at: string;
1156
1156
  labels: {
1157
- description: string | null;
1158
1157
  name: string;
1158
+ description: string | null;
1159
1159
  id: number;
1160
1160
  color: string;
1161
1161
  }[];
@@ -1214,15 +1214,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1214
1214
  ref: z.ZodOptional<z.ZodString>;
1215
1215
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1216
1216
  }, "strip", z.ZodTypeAny, {
1217
- operation: "get_file";
1218
1217
  path: string;
1218
+ operation: "get_file";
1219
1219
  owner: string;
1220
1220
  repo: string;
1221
1221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1222
1222
  ref?: string | undefined;
1223
1223
  }, {
1224
- operation: "get_file";
1225
1224
  path: string;
1225
+ operation: "get_file";
1226
1226
  owner: string;
1227
1227
  repo: string;
1228
1228
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -1235,8 +1235,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1235
1235
  ref: z.ZodOptional<z.ZodString>;
1236
1236
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1237
1237
  }, "strip", z.ZodTypeAny, {
1238
- operation: "get_directory";
1239
1238
  path: string;
1239
+ operation: "get_directory";
1240
1240
  owner: string;
1241
1241
  repo: string;
1242
1242
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -1259,9 +1259,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1259
1259
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1260
1260
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1261
1261
  }, "strip", z.ZodTypeAny, {
1262
- operation: "list_pull_requests";
1263
1262
  sort: "created" | "updated" | "popularity" | "long-running";
1264
1263
  state: "all" | "open" | "closed";
1264
+ operation: "list_pull_requests";
1265
1265
  owner: string;
1266
1266
  page: number;
1267
1267
  repo: string;
@@ -1273,8 +1273,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1273
1273
  owner: string;
1274
1274
  repo: string;
1275
1275
  sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
1276
- credentials?: Partial<Record<CredentialType, string>> | undefined;
1277
1276
  state?: "all" | "open" | "closed" | undefined;
1277
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
1278
1278
  page?: number | undefined;
1279
1279
  direction?: "asc" | "desc" | undefined;
1280
1280
  per_page?: number | undefined;
@@ -1326,8 +1326,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1326
1326
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1327
1327
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1328
1328
  }, "strip", z.ZodTypeAny, {
1329
- operation: "list_repositories";
1330
1329
  sort: "created" | "updated" | "full_name" | "pushed";
1330
+ operation: "list_repositories";
1331
1331
  page: number;
1332
1332
  visibility: "public" | "private" | "all";
1333
1333
  direction: "asc" | "desc";
@@ -1389,9 +1389,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1389
1389
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1390
1390
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1391
1391
  }, "strip", z.ZodTypeAny, {
1392
- operation: "list_issues";
1393
1392
  sort: "created" | "updated" | "comments";
1394
1393
  state: "all" | "open" | "closed";
1394
+ operation: "list_issues";
1395
1395
  owner: string;
1396
1396
  page: number;
1397
1397
  repo: string;
@@ -1404,8 +1404,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1404
1404
  owner: string;
1405
1405
  repo: string;
1406
1406
  sort?: "created" | "updated" | "comments" | undefined;
1407
- credentials?: Partial<Record<CredentialType, string>> | undefined;
1408
1407
  state?: "all" | "open" | "closed" | undefined;
1408
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
1409
1409
  labels?: string | undefined;
1410
1410
  page?: number | undefined;
1411
1411
  direction?: "asc" | "desc" | undefined;
@@ -1431,9 +1431,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1431
1431
  operation: "get_file";
1432
1432
  success: boolean;
1433
1433
  error: string;
1434
+ name?: string | undefined;
1434
1435
  path?: string | undefined;
1435
1436
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
1436
- name?: string | undefined;
1437
1437
  content?: string | undefined;
1438
1438
  url?: string | undefined;
1439
1439
  size?: number | undefined;
@@ -1446,9 +1446,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1446
1446
  operation: "get_file";
1447
1447
  success: boolean;
1448
1448
  error: string;
1449
+ name?: string | undefined;
1449
1450
  path?: string | undefined;
1450
1451
  type?: "file" | "dir" | "symlink" | "submodule" | undefined;
1451
- name?: string | undefined;
1452
1452
  content?: string | undefined;
1453
1453
  url?: string | undefined;
1454
1454
  size?: number | undefined;
@@ -1474,9 +1474,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1474
1474
  content: z.ZodOptional<z.ZodString>;
1475
1475
  encoding: z.ZodOptional<z.ZodString>;
1476
1476
  }, "strip", z.ZodTypeAny, {
1477
+ name: string;
1477
1478
  path: string;
1478
1479
  type: "file" | "dir" | "symlink" | "submodule";
1479
- name: string;
1480
1480
  url: string;
1481
1481
  size: number;
1482
1482
  sha: string;
@@ -1486,9 +1486,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1486
1486
  content?: string | undefined;
1487
1487
  encoding?: string | undefined;
1488
1488
  }, {
1489
+ name: string;
1489
1490
  path: string;
1490
1491
  type: "file" | "dir" | "symlink" | "submodule";
1491
- name: string;
1492
1492
  url: string;
1493
1493
  size: number;
1494
1494
  sha: string;
@@ -1503,9 +1503,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1503
1503
  success: boolean;
1504
1504
  error: string;
1505
1505
  contents?: {
1506
+ name: string;
1506
1507
  path: string;
1507
1508
  type: "file" | "dir" | "symlink" | "submodule";
1508
- name: string;
1509
1509
  url: string;
1510
1510
  size: number;
1511
1511
  sha: string;
@@ -1520,9 +1520,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1520
1520
  success: boolean;
1521
1521
  error: string;
1522
1522
  contents?: {
1523
+ name: string;
1523
1524
  path: string;
1524
1525
  type: "file" | "dir" | "symlink" | "submodule";
1525
- name: string;
1526
1526
  url: string;
1527
1527
  size: number;
1528
1528
  sha: string;
@@ -1967,8 +1967,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1967
1967
  default_branch: z.ZodString;
1968
1968
  visibility: z.ZodOptional<z.ZodString>;
1969
1969
  }, "strip", z.ZodTypeAny, {
1970
- description: string | null;
1971
1970
  name: string;
1971
+ description: string | null;
1972
1972
  id: number;
1973
1973
  size: number;
1974
1974
  private: boolean;
@@ -1993,8 +1993,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
1993
1993
  default_branch: string;
1994
1994
  visibility?: string | undefined;
1995
1995
  }, {
1996
- description: string | null;
1997
1996
  name: string;
1997
+ description: string | null;
1998
1998
  id: number;
1999
1999
  size: number;
2000
2000
  private: boolean;
@@ -2024,8 +2024,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2024
2024
  success: boolean;
2025
2025
  error: string;
2026
2026
  repositories?: {
2027
- description: string | null;
2028
2027
  name: string;
2028
+ description: string | null;
2029
2029
  id: number;
2030
2030
  size: number;
2031
2031
  private: boolean;
@@ -2055,8 +2055,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2055
2055
  success: boolean;
2056
2056
  error: string;
2057
2057
  repositories?: {
2058
- description: string | null;
2059
2058
  name: string;
2059
+ description: string | null;
2060
2060
  id: number;
2061
2061
  size: number;
2062
2062
  private: boolean;
@@ -2125,8 +2125,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2125
2125
  operation: "get_repository";
2126
2126
  success: boolean;
2127
2127
  error: string;
2128
- description?: string | null | undefined;
2129
2128
  name?: string | undefined;
2129
+ description?: string | null | undefined;
2130
2130
  id?: number | undefined;
2131
2131
  size?: number | undefined;
2132
2132
  private?: boolean | undefined;
@@ -2154,8 +2154,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2154
2154
  operation: "get_repository";
2155
2155
  success: boolean;
2156
2156
  error: string;
2157
- description?: string | null | undefined;
2158
2157
  name?: string | undefined;
2158
+ description?: string | null | undefined;
2159
2159
  id?: number | undefined;
2160
2160
  size?: number | undefined;
2161
2161
  private?: boolean | undefined;
@@ -2255,13 +2255,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2255
2255
  color: z.ZodString;
2256
2256
  description: z.ZodNullable<z.ZodString>;
2257
2257
  }, "strip", z.ZodTypeAny, {
2258
- description: string | null;
2259
2258
  name: string;
2259
+ description: string | null;
2260
2260
  id: number;
2261
2261
  color: string;
2262
2262
  }, {
2263
- description: string | null;
2264
2263
  name: string;
2264
+ description: string | null;
2265
2265
  id: number;
2266
2266
  color: string;
2267
2267
  }>, "many">;
@@ -2282,8 +2282,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2282
2282
  body: string | null;
2283
2283
  created_at: string;
2284
2284
  labels: {
2285
- description: string | null;
2286
2285
  name: string;
2286
+ description: string | null;
2287
2287
  id: number;
2288
2288
  color: string;
2289
2289
  }[];
@@ -2304,8 +2304,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2304
2304
  body: string | null;
2305
2305
  created_at: string;
2306
2306
  labels: {
2307
- description: string | null;
2308
2307
  name: string;
2308
+ description: string | null;
2309
2309
  id: number;
2310
2310
  color: string;
2311
2311
  }[];
@@ -2331,8 +2331,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2331
2331
  body: string | null;
2332
2332
  created_at: string;
2333
2333
  labels: {
2334
- description: string | null;
2335
2334
  name: string;
2335
+ description: string | null;
2336
2336
  id: number;
2337
2337
  color: string;
2338
2338
  }[];
@@ -2358,8 +2358,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
2358
2358
  body: string | null;
2359
2359
  created_at: string;
2360
2360
  labels: {
2361
- description: string | null;
2362
2361
  name: string;
2362
+ description: string | null;
2363
2363
  id: number;
2364
2364
  color: string;
2365
2365
  }[];