@bubblelab/bubble-core 0.1.34 → 0.1.36

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 (27) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +77 -77
  16. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +112 -112
  17. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  18. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  20. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  21. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  22. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  23. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  24. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  25. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  26. package/dist/bubbles.json +1 -1
  27. package/package.json +2 -2
@@ -1438,6 +1438,10 @@ export declare const JiraIssueSchema: z.ZodObject<{
1438
1438
  }, z.ZodTypeAny, "passthrough">>, "many">>;
1439
1439
  changelog: z.ZodOptional<z.ZodUnknown>;
1440
1440
  }, "strip", z.ZodTypeAny, {
1441
+ id?: string | undefined;
1442
+ key?: string | undefined;
1443
+ expand?: string | undefined;
1444
+ self?: string | undefined;
1441
1445
  fields?: z.objectOutputType<{
1442
1446
  summary: z.ZodOptional<z.ZodString>;
1443
1447
  description: z.ZodOptional<z.ZodUnknown>;
@@ -1775,9 +1779,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
1775
1779
  total: z.ZodOptional<z.ZodNumber>;
1776
1780
  }, z.ZodTypeAny, "passthrough">>>;
1777
1781
  }, z.ZodTypeAny, "passthrough"> | undefined;
1778
- id?: string | undefined;
1779
- key?: string | undefined;
1780
- changelog?: unknown;
1781
1782
  transitions?: z.objectOutputType<{
1782
1783
  id: z.ZodString;
1783
1784
  name: z.ZodString;
@@ -1822,9 +1823,12 @@ export declare const JiraIssueSchema: z.ZodObject<{
1822
1823
  }, z.ZodTypeAny, "passthrough">>>;
1823
1824
  }, z.ZodTypeAny, "passthrough">>>;
1824
1825
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1826
+ changelog?: unknown;
1827
+ }, {
1828
+ id?: string | undefined;
1829
+ key?: string | undefined;
1825
1830
  expand?: string | undefined;
1826
1831
  self?: string | undefined;
1827
- }, {
1828
1832
  fields?: z.objectInputType<{
1829
1833
  summary: z.ZodOptional<z.ZodString>;
1830
1834
  description: z.ZodOptional<z.ZodUnknown>;
@@ -2162,9 +2166,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
2162
2166
  total: z.ZodOptional<z.ZodNumber>;
2163
2167
  }, z.ZodTypeAny, "passthrough">>>;
2164
2168
  }, z.ZodTypeAny, "passthrough"> | undefined;
2165
- id?: string | undefined;
2166
- key?: string | undefined;
2167
- changelog?: unknown;
2168
2169
  transitions?: z.objectInputType<{
2169
2170
  id: z.ZodString;
2170
2171
  name: z.ZodString;
@@ -2209,8 +2210,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
2209
2210
  }, z.ZodTypeAny, "passthrough">>>;
2210
2211
  }, z.ZodTypeAny, "passthrough">>>;
2211
2212
  }, z.ZodTypeAny, "passthrough">[] | undefined;
2212
- expand?: string | undefined;
2213
- self?: string | undefined;
2213
+ changelog?: unknown;
2214
2214
  }>;
2215
2215
  export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
2216
2216
  operation: z.ZodLiteral<"search">;
@@ -2221,18 +2221,18 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2221
2221
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2222
2222
  }, "strip", z.ZodTypeAny, {
2223
2223
  operation: "search";
2224
+ jql: string;
2224
2225
  limit: number;
2225
2226
  offset: number;
2226
- jql: string;
2227
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2228
2227
  fields?: string[] | undefined;
2228
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2229
2229
  }, {
2230
2230
  operation: "search";
2231
2231
  jql: string;
2232
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2233
2232
  fields?: string[] | undefined;
2234
2233
  limit?: number | undefined;
2235
2234
  offset?: number | undefined;
2235
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2236
2236
  }>, z.ZodObject<{
2237
2237
  operation: z.ZodLiteral<"get">;
2238
2238
  key: z.ZodString;
@@ -2240,17 +2240,17 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2240
2240
  expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>;
2241
2241
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2242
2242
  }, "strip", z.ZodTypeAny, {
2243
- operation: "get";
2244
2243
  key: string;
2245
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2244
+ operation: "get";
2245
+ expand?: ("comments" | "transitions" | "changelog")[] | undefined;
2246
2246
  fields?: string[] | undefined;
2247
- expand?: ("comments" | "changelog" | "transitions")[] | undefined;
2247
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2248
2248
  }, {
2249
- operation: "get";
2250
2249
  key: string;
2251
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2250
+ operation: "get";
2251
+ expand?: ("comments" | "transitions" | "changelog")[] | undefined;
2252
2252
  fields?: string[] | undefined;
2253
- expand?: ("comments" | "changelog" | "transitions")[] | undefined;
2253
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2254
2254
  }>, z.ZodObject<{
2255
2255
  operation: z.ZodLiteral<"create">;
2256
2256
  project: z.ZodString;
@@ -2265,27 +2265,27 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2265
2265
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2266
2266
  }, "strip", z.ZodTypeAny, {
2267
2267
  type: string;
2268
- operation: "create";
2269
2268
  summary: string;
2270
2269
  project: string;
2270
+ operation: "create";
2271
2271
  description?: string | undefined;
2272
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2272
+ priority?: string | undefined;
2273
+ assignee?: string | undefined;
2273
2274
  labels?: string[] | undefined;
2274
2275
  parent?: string | undefined;
2275
- assignee?: string | undefined;
2276
- priority?: string | undefined;
2276
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2277
2277
  due_date?: string | undefined;
2278
2278
  }, {
2279
- operation: "create";
2280
2279
  summary: string;
2281
2280
  project: string;
2281
+ operation: "create";
2282
2282
  type?: string | undefined;
2283
2283
  description?: string | undefined;
2284
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2284
+ priority?: string | undefined;
2285
+ assignee?: string | undefined;
2285
2286
  labels?: string[] | undefined;
2286
2287
  parent?: string | undefined;
2287
- assignee?: string | undefined;
2288
- priority?: string | undefined;
2288
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2289
2289
  due_date?: string | undefined;
2290
2290
  }>, z.ZodObject<{
2291
2291
  operation: z.ZodLiteral<"update">;
@@ -2311,34 +2311,34 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2311
2311
  comment: z.ZodOptional<z.ZodString>;
2312
2312
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2313
2313
  }, "strip", z.ZodTypeAny, {
2314
- operation: "update";
2315
2314
  key: string;
2315
+ operation: "update";
2316
2316
  description?: string | undefined;
2317
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2317
+ summary?: string | undefined;
2318
+ priority?: string | undefined;
2319
+ assignee?: string | null | undefined;
2318
2320
  labels?: {
2319
2321
  set?: string[] | undefined;
2320
2322
  add?: string[] | undefined;
2321
2323
  remove?: string[] | undefined;
2322
2324
  } | undefined;
2323
- summary?: string | undefined;
2324
2325
  comment?: string | undefined;
2325
- assignee?: string | null | undefined;
2326
- priority?: string | undefined;
2326
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2327
2327
  due_date?: string | null | undefined;
2328
2328
  }, {
2329
- operation: "update";
2330
2329
  key: string;
2330
+ operation: "update";
2331
2331
  description?: string | undefined;
2332
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2332
+ summary?: string | undefined;
2333
+ priority?: string | undefined;
2334
+ assignee?: string | null | undefined;
2333
2335
  labels?: {
2334
2336
  set?: string[] | undefined;
2335
2337
  add?: string[] | undefined;
2336
2338
  remove?: string[] | undefined;
2337
2339
  } | undefined;
2338
- summary?: string | undefined;
2339
2340
  comment?: string | undefined;
2340
- assignee?: string | null | undefined;
2341
- priority?: string | undefined;
2341
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2342
2342
  due_date?: string | null | undefined;
2343
2343
  }>, z.ZodObject<{
2344
2344
  operation: z.ZodLiteral<"transition">;
@@ -2349,19 +2349,19 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2349
2349
  resolution: z.ZodOptional<z.ZodString>;
2350
2350
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2351
2351
  }, "strip", z.ZodTypeAny, {
2352
- operation: "transition";
2353
2352
  key: string;
2353
+ operation: "transition";
2354
2354
  status?: string | undefined;
2355
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2356
2355
  comment?: string | undefined;
2356
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2357
2357
  transition_id?: string | undefined;
2358
2358
  resolution?: string | undefined;
2359
2359
  }, {
2360
- operation: "transition";
2361
2360
  key: string;
2361
+ operation: "transition";
2362
2362
  status?: string | undefined;
2363
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2364
2363
  comment?: string | undefined;
2364
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2365
2365
  transition_id?: string | undefined;
2366
2366
  resolution?: string | undefined;
2367
2367
  }>, z.ZodObject<{
@@ -2369,12 +2369,12 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2369
2369
  key: z.ZodString;
2370
2370
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2371
2371
  }, "strip", z.ZodTypeAny, {
2372
- operation: "list_transitions";
2373
2372
  key: string;
2373
+ operation: "list_transitions";
2374
2374
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2375
2375
  }, {
2376
- operation: "list_transitions";
2377
2376
  key: string;
2377
+ operation: "list_transitions";
2378
2378
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2379
2379
  }>, z.ZodObject<{
2380
2380
  operation: z.ZodLiteral<"list_projects">;
@@ -2388,20 +2388,20 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2388
2388
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2389
2389
  }, {
2390
2390
  operation: "list_projects";
2391
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2392
2391
  limit?: number | undefined;
2393
2392
  offset?: number | undefined;
2393
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2394
2394
  }>, z.ZodObject<{
2395
2395
  operation: z.ZodLiteral<"list_issue_types">;
2396
2396
  project: z.ZodString;
2397
2397
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2398
2398
  }, "strip", z.ZodTypeAny, {
2399
- operation: "list_issue_types";
2400
2399
  project: string;
2400
+ operation: "list_issue_types";
2401
2401
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2402
2402
  }, {
2403
- operation: "list_issue_types";
2404
2403
  project: string;
2404
+ operation: "list_issue_types";
2405
2405
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2406
2406
  }>, z.ZodObject<{
2407
2407
  operation: z.ZodLiteral<"add_comment">;
@@ -2409,14 +2409,14 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2409
2409
  body: z.ZodString;
2410
2410
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2411
2411
  }, "strip", z.ZodTypeAny, {
2412
- operation: "add_comment";
2413
- body: string;
2414
2412
  key: string;
2413
+ body: string;
2414
+ operation: "add_comment";
2415
2415
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2416
2416
  }, {
2417
- operation: "add_comment";
2418
- body: string;
2419
2417
  key: string;
2418
+ body: string;
2419
+ operation: "add_comment";
2420
2420
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2421
2421
  }>, z.ZodObject<{
2422
2422
  operation: z.ZodLiteral<"get_comments">;
@@ -2425,17 +2425,17 @@ export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
2425
2425
  offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
2426
2426
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
2427
2427
  }, "strip", z.ZodTypeAny, {
2428
+ key: string;
2428
2429
  operation: "get_comments";
2429
2430
  limit: number;
2430
2431
  offset: number;
2431
- key: string;
2432
2432
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2433
2433
  }, {
2434
- operation: "get_comments";
2435
2434
  key: string;
2436
- credentials?: Partial<Record<CredentialType, string>> | undefined;
2435
+ operation: "get_comments";
2437
2436
  limit?: number | undefined;
2438
2437
  offset?: number | undefined;
2438
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
2439
2439
  }>]>;
2440
2440
  export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
2441
2441
  operation: z.ZodLiteral<"search">;
@@ -3586,6 +3586,10 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3586
3586
  }, z.ZodTypeAny, "passthrough">>, "many">>;
3587
3587
  changelog: z.ZodOptional<z.ZodUnknown>;
3588
3588
  }, "strip", z.ZodTypeAny, {
3589
+ id?: string | undefined;
3590
+ key?: string | undefined;
3591
+ expand?: string | undefined;
3592
+ self?: string | undefined;
3589
3593
  fields?: z.objectOutputType<{
3590
3594
  summary: z.ZodOptional<z.ZodString>;
3591
3595
  description: z.ZodOptional<z.ZodUnknown>;
@@ -3923,9 +3927,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3923
3927
  total: z.ZodOptional<z.ZodNumber>;
3924
3928
  }, z.ZodTypeAny, "passthrough">>>;
3925
3929
  }, z.ZodTypeAny, "passthrough"> | undefined;
3926
- id?: string | undefined;
3927
- key?: string | undefined;
3928
- changelog?: unknown;
3929
3930
  transitions?: z.objectOutputType<{
3930
3931
  id: z.ZodString;
3931
3932
  name: z.ZodString;
@@ -3970,9 +3971,12 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3970
3971
  }, z.ZodTypeAny, "passthrough">>>;
3971
3972
  }, z.ZodTypeAny, "passthrough">>>;
3972
3973
  }, z.ZodTypeAny, "passthrough">[] | undefined;
3974
+ changelog?: unknown;
3975
+ }, {
3976
+ id?: string | undefined;
3977
+ key?: string | undefined;
3973
3978
  expand?: string | undefined;
3974
3979
  self?: string | undefined;
3975
- }, {
3976
3980
  fields?: z.objectInputType<{
3977
3981
  summary: z.ZodOptional<z.ZodString>;
3978
3982
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4310,9 +4314,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4310
4314
  total: z.ZodOptional<z.ZodNumber>;
4311
4315
  }, z.ZodTypeAny, "passthrough">>>;
4312
4316
  }, z.ZodTypeAny, "passthrough"> | undefined;
4313
- id?: string | undefined;
4314
- key?: string | undefined;
4315
- changelog?: unknown;
4316
4317
  transitions?: z.objectInputType<{
4317
4318
  id: z.ZodString;
4318
4319
  name: z.ZodString;
@@ -4357,18 +4358,21 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4357
4358
  }, z.ZodTypeAny, "passthrough">>>;
4358
4359
  }, z.ZodTypeAny, "passthrough">>>;
4359
4360
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4360
- expand?: string | undefined;
4361
- self?: string | undefined;
4361
+ changelog?: unknown;
4362
4362
  }>, "many">>;
4363
4363
  total: z.ZodOptional<z.ZodNumber>;
4364
4364
  offset: z.ZodOptional<z.ZodNumber>;
4365
4365
  limit: z.ZodOptional<z.ZodNumber>;
4366
4366
  error: z.ZodString;
4367
4367
  }, "strip", z.ZodTypeAny, {
4368
+ operation: "search";
4368
4369
  success: boolean;
4369
4370
  error: string;
4370
- operation: "search";
4371
4371
  issues?: {
4372
+ id?: string | undefined;
4373
+ key?: string | undefined;
4374
+ expand?: string | undefined;
4375
+ self?: string | undefined;
4372
4376
  fields?: z.objectOutputType<{
4373
4377
  summary: z.ZodOptional<z.ZodString>;
4374
4378
  description: z.ZodOptional<z.ZodUnknown>;
@@ -4706,9 +4710,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4706
4710
  total: z.ZodOptional<z.ZodNumber>;
4707
4711
  }, z.ZodTypeAny, "passthrough">>>;
4708
4712
  }, z.ZodTypeAny, "passthrough"> | undefined;
4709
- id?: string | undefined;
4710
- key?: string | undefined;
4711
- changelog?: unknown;
4712
4713
  transitions?: z.objectOutputType<{
4713
4714
  id: z.ZodString;
4714
4715
  name: z.ZodString;
@@ -4753,17 +4754,20 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4753
4754
  }, z.ZodTypeAny, "passthrough">>>;
4754
4755
  }, z.ZodTypeAny, "passthrough">>>;
4755
4756
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4756
- expand?: string | undefined;
4757
- self?: string | undefined;
4757
+ changelog?: unknown;
4758
4758
  }[] | undefined;
4759
+ total?: number | undefined;
4759
4760
  limit?: number | undefined;
4760
4761
  offset?: number | undefined;
4761
- total?: number | undefined;
4762
4762
  }, {
4763
+ operation: "search";
4763
4764
  success: boolean;
4764
4765
  error: string;
4765
- operation: "search";
4766
4766
  issues?: {
4767
+ id?: string | undefined;
4768
+ key?: string | undefined;
4769
+ expand?: string | undefined;
4770
+ self?: string | undefined;
4767
4771
  fields?: z.objectInputType<{
4768
4772
  summary: z.ZodOptional<z.ZodString>;
4769
4773
  description: z.ZodOptional<z.ZodUnknown>;
@@ -5101,9 +5105,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5101
5105
  total: z.ZodOptional<z.ZodNumber>;
5102
5106
  }, z.ZodTypeAny, "passthrough">>>;
5103
5107
  }, z.ZodTypeAny, "passthrough"> | undefined;
5104
- id?: string | undefined;
5105
- key?: string | undefined;
5106
- changelog?: unknown;
5107
5108
  transitions?: z.objectInputType<{
5108
5109
  id: z.ZodString;
5109
5110
  name: z.ZodString;
@@ -5148,12 +5149,11 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5148
5149
  }, z.ZodTypeAny, "passthrough">>>;
5149
5150
  }, z.ZodTypeAny, "passthrough">>>;
5150
5151
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5151
- expand?: string | undefined;
5152
- self?: string | undefined;
5152
+ changelog?: unknown;
5153
5153
  }[] | undefined;
5154
+ total?: number | undefined;
5154
5155
  limit?: number | undefined;
5155
5156
  offset?: number | undefined;
5156
- total?: number | undefined;
5157
5157
  }>, z.ZodObject<{
5158
5158
  operation: z.ZodLiteral<"get">;
5159
5159
  success: z.ZodBoolean;
@@ -6303,6 +6303,10 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6303
6303
  }, z.ZodTypeAny, "passthrough">>, "many">>;
6304
6304
  changelog: z.ZodOptional<z.ZodUnknown>;
6305
6305
  }, "strip", z.ZodTypeAny, {
6306
+ id?: string | undefined;
6307
+ key?: string | undefined;
6308
+ expand?: string | undefined;
6309
+ self?: string | undefined;
6306
6310
  fields?: z.objectOutputType<{
6307
6311
  summary: z.ZodOptional<z.ZodString>;
6308
6312
  description: z.ZodOptional<z.ZodUnknown>;
@@ -6640,9 +6644,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6640
6644
  total: z.ZodOptional<z.ZodNumber>;
6641
6645
  }, z.ZodTypeAny, "passthrough">>>;
6642
6646
  }, z.ZodTypeAny, "passthrough"> | undefined;
6643
- id?: string | undefined;
6644
- key?: string | undefined;
6645
- changelog?: unknown;
6646
6647
  transitions?: z.objectOutputType<{
6647
6648
  id: z.ZodString;
6648
6649
  name: z.ZodString;
@@ -6687,9 +6688,12 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6687
6688
  }, z.ZodTypeAny, "passthrough">>>;
6688
6689
  }, z.ZodTypeAny, "passthrough">>>;
6689
6690
  }, z.ZodTypeAny, "passthrough">[] | undefined;
6691
+ changelog?: unknown;
6692
+ }, {
6693
+ id?: string | undefined;
6694
+ key?: string | undefined;
6690
6695
  expand?: string | undefined;
6691
6696
  self?: string | undefined;
6692
- }, {
6693
6697
  fields?: z.objectInputType<{
6694
6698
  summary: z.ZodOptional<z.ZodString>;
6695
6699
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7027,9 +7031,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7027
7031
  total: z.ZodOptional<z.ZodNumber>;
7028
7032
  }, z.ZodTypeAny, "passthrough">>>;
7029
7033
  }, z.ZodTypeAny, "passthrough"> | undefined;
7030
- id?: string | undefined;
7031
- key?: string | undefined;
7032
- changelog?: unknown;
7033
7034
  transitions?: z.objectInputType<{
7034
7035
  id: z.ZodString;
7035
7036
  name: z.ZodString;
@@ -7074,15 +7075,18 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7074
7075
  }, z.ZodTypeAny, "passthrough">>>;
7075
7076
  }, z.ZodTypeAny, "passthrough">>>;
7076
7077
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7077
- expand?: string | undefined;
7078
- self?: string | undefined;
7078
+ changelog?: unknown;
7079
7079
  }>>;
7080
7080
  error: z.ZodString;
7081
7081
  }, "strip", z.ZodTypeAny, {
7082
+ operation: "get";
7082
7083
  success: boolean;
7083
7084
  error: string;
7084
- operation: "get";
7085
7085
  issue?: {
7086
+ id?: string | undefined;
7087
+ key?: string | undefined;
7088
+ expand?: string | undefined;
7089
+ self?: string | undefined;
7086
7090
  fields?: z.objectOutputType<{
7087
7091
  summary: z.ZodOptional<z.ZodString>;
7088
7092
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7420,9 +7424,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7420
7424
  total: z.ZodOptional<z.ZodNumber>;
7421
7425
  }, z.ZodTypeAny, "passthrough">>>;
7422
7426
  }, z.ZodTypeAny, "passthrough"> | undefined;
7423
- id?: string | undefined;
7424
- key?: string | undefined;
7425
- changelog?: unknown;
7426
7427
  transitions?: z.objectOutputType<{
7427
7428
  id: z.ZodString;
7428
7429
  name: z.ZodString;
@@ -7467,14 +7468,17 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7467
7468
  }, z.ZodTypeAny, "passthrough">>>;
7468
7469
  }, z.ZodTypeAny, "passthrough">>>;
7469
7470
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7470
- expand?: string | undefined;
7471
- self?: string | undefined;
7471
+ changelog?: unknown;
7472
7472
  } | undefined;
7473
7473
  }, {
7474
+ operation: "get";
7474
7475
  success: boolean;
7475
7476
  error: string;
7476
- operation: "get";
7477
7477
  issue?: {
7478
+ id?: string | undefined;
7479
+ key?: string | undefined;
7480
+ expand?: string | undefined;
7481
+ self?: string | undefined;
7478
7482
  fields?: z.objectInputType<{
7479
7483
  summary: z.ZodOptional<z.ZodString>;
7480
7484
  description: z.ZodOptional<z.ZodUnknown>;
@@ -7812,9 +7816,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7812
7816
  total: z.ZodOptional<z.ZodNumber>;
7813
7817
  }, z.ZodTypeAny, "passthrough">>>;
7814
7818
  }, z.ZodTypeAny, "passthrough"> | undefined;
7815
- id?: string | undefined;
7816
- key?: string | undefined;
7817
- changelog?: unknown;
7818
7819
  transitions?: z.objectInputType<{
7819
7820
  id: z.ZodString;
7820
7821
  name: z.ZodString;
@@ -7859,8 +7860,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7859
7860
  }, z.ZodTypeAny, "passthrough">>>;
7860
7861
  }, z.ZodTypeAny, "passthrough">>>;
7861
7862
  }, z.ZodTypeAny, "passthrough">[] | undefined;
7862
- expand?: string | undefined;
7863
- self?: string | undefined;
7863
+ changelog?: unknown;
7864
7864
  } | undefined;
7865
7865
  }>, z.ZodObject<{
7866
7866
  operation: z.ZodLiteral<"create">;
@@ -7880,18 +7880,18 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7880
7880
  }>>;
7881
7881
  error: z.ZodString;
7882
7882
  }, "strip", z.ZodTypeAny, {
7883
+ operation: "create";
7883
7884
  success: boolean;
7884
7885
  error: string;
7885
- operation: "create";
7886
7886
  issue?: {
7887
7887
  id: string;
7888
7888
  key: string;
7889
7889
  self?: string | undefined;
7890
7890
  } | undefined;
7891
7891
  }, {
7892
+ operation: "create";
7892
7893
  success: boolean;
7893
7894
  error: string;
7894
- operation: "create";
7895
7895
  issue?: {
7896
7896
  id: string;
7897
7897
  key: string;
@@ -7903,14 +7903,14 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7903
7903
  key: z.ZodOptional<z.ZodString>;
7904
7904
  error: z.ZodString;
7905
7905
  }, "strip", z.ZodTypeAny, {
7906
+ operation: "update";
7906
7907
  success: boolean;
7907
7908
  error: string;
7908
- operation: "update";
7909
7909
  key?: string | undefined;
7910
7910
  }, {
7911
+ operation: "update";
7911
7912
  success: boolean;
7912
7913
  error: string;
7913
- operation: "update";
7914
7914
  key?: string | undefined;
7915
7915
  }>, z.ZodObject<{
7916
7916
  operation: z.ZodLiteral<"transition">;
@@ -7919,15 +7919,15 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7919
7919
  new_status: z.ZodOptional<z.ZodString>;
7920
7920
  error: z.ZodString;
7921
7921
  }, "strip", z.ZodTypeAny, {
7922
+ operation: "transition";
7922
7923
  success: boolean;
7923
7924
  error: string;
7924
- operation: "transition";
7925
7925
  key?: string | undefined;
7926
7926
  new_status?: string | undefined;
7927
7927
  }, {
7928
+ operation: "transition";
7928
7929
  success: boolean;
7929
7930
  error: string;
7930
- operation: "transition";
7931
7931
  key?: string | undefined;
7932
7932
  new_status?: string | undefined;
7933
7933
  }>, z.ZodObject<{
@@ -8065,9 +8065,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8065
8065
  }, z.ZodTypeAny, "passthrough">>, "many">>;
8066
8066
  error: z.ZodString;
8067
8067
  }, "strip", z.ZodTypeAny, {
8068
+ operation: "list_transitions";
8068
8069
  success: boolean;
8069
8070
  error: string;
8070
- operation: "list_transitions";
8071
8071
  transitions?: z.objectOutputType<{
8072
8072
  id: z.ZodString;
8073
8073
  name: z.ZodString;
@@ -8113,9 +8113,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8113
8113
  }, z.ZodTypeAny, "passthrough">>>;
8114
8114
  }, z.ZodTypeAny, "passthrough">[] | undefined;
8115
8115
  }, {
8116
+ operation: "list_transitions";
8116
8117
  success: boolean;
8117
8118
  error: string;
8118
- operation: "list_transitions";
8119
8119
  transitions?: z.objectInputType<{
8120
8120
  id: z.ZodString;
8121
8121
  name: z.ZodString;
@@ -8179,9 +8179,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8179
8179
  total: z.ZodOptional<z.ZodNumber>;
8180
8180
  error: z.ZodString;
8181
8181
  }, "strip", z.ZodTypeAny, {
8182
+ operation: "list_projects";
8182
8183
  success: boolean;
8183
8184
  error: string;
8184
- operation: "list_projects";
8185
8185
  total?: number | undefined;
8186
8186
  projects?: z.objectOutputType<{
8187
8187
  id: z.ZodString;
@@ -8189,9 +8189,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8189
8189
  name: z.ZodString;
8190
8190
  }, z.ZodTypeAny, "passthrough">[] | undefined;
8191
8191
  }, {
8192
+ operation: "list_projects";
8192
8193
  success: boolean;
8193
8194
  error: string;
8194
- operation: "list_projects";
8195
8195
  total?: number | undefined;
8196
8196
  projects?: z.objectInputType<{
8197
8197
  id: z.ZodString;
@@ -8219,9 +8219,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8219
8219
  }, z.ZodTypeAny, "passthrough">>, "many">>;
8220
8220
  error: z.ZodString;
8221
8221
  }, "strip", z.ZodTypeAny, {
8222
+ operation: "list_issue_types";
8222
8223
  success: boolean;
8223
8224
  error: string;
8224
- operation: "list_issue_types";
8225
8225
  issue_types?: z.objectOutputType<{
8226
8226
  id: z.ZodString;
8227
8227
  name: z.ZodString;
@@ -8229,9 +8229,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8229
8229
  subtask: z.ZodOptional<z.ZodBoolean>;
8230
8230
  }, z.ZodTypeAny, "passthrough">[] | undefined;
8231
8231
  }, {
8232
+ operation: "list_issue_types";
8232
8233
  success: boolean;
8233
8234
  error: string;
8234
- operation: "list_issue_types";
8235
8235
  issue_types?: z.objectInputType<{
8236
8236
  id: z.ZodString;
8237
8237
  name: z.ZodString;
@@ -8310,9 +8310,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8310
8310
  }, z.ZodTypeAny, "passthrough">>>;
8311
8311
  error: z.ZodString;
8312
8312
  }, "strip", z.ZodTypeAny, {
8313
+ operation: "add_comment";
8313
8314
  success: boolean;
8314
8315
  error: string;
8315
- operation: "add_comment";
8316
8316
  comment?: z.objectOutputType<{
8317
8317
  id: z.ZodString;
8318
8318
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8337,9 +8337,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8337
8337
  updated: z.ZodOptional<z.ZodString>;
8338
8338
  }, z.ZodTypeAny, "passthrough"> | undefined;
8339
8339
  }, {
8340
+ operation: "add_comment";
8340
8341
  success: boolean;
8341
8342
  error: string;
8342
- operation: "add_comment";
8343
8343
  comment?: z.objectInputType<{
8344
8344
  id: z.ZodString;
8345
8345
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8436,9 +8436,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8436
8436
  total: z.ZodOptional<z.ZodNumber>;
8437
8437
  error: z.ZodString;
8438
8438
  }, "strip", z.ZodTypeAny, {
8439
+ operation: "get_comments";
8439
8440
  success: boolean;
8440
8441
  error: string;
8441
- operation: "get_comments";
8442
8442
  comments?: z.objectOutputType<{
8443
8443
  id: z.ZodString;
8444
8444
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8464,9 +8464,9 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
8464
8464
  }, z.ZodTypeAny, "passthrough">[] | undefined;
8465
8465
  total?: number | undefined;
8466
8466
  }, {
8467
+ operation: "get_comments";
8467
8468
  success: boolean;
8468
8469
  error: string;
8469
- operation: "get_comments";
8470
8470
  comments?: z.objectInputType<{
8471
8471
  id: z.ZodString;
8472
8472
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{