@n8n/api-types 1.37.2 → 1.38.1

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 (68) hide show
  1. package/dist/agents/index.d.ts +1 -0
  2. package/dist/agents/index.js +1 -0
  3. package/dist/agents/index.js.map +1 -1
  4. package/dist/agents/model-providers.d.ts +4 -1
  5. package/dist/agents/model-providers.js +6 -0
  6. package/dist/agents/model-providers.js.map +1 -1
  7. package/dist/agents/provider-capabilities.js +14 -0
  8. package/dist/agents/provider-capabilities.js.map +1 -1
  9. package/dist/agents/sub-agent.schema.d.ts +1 -1
  10. package/dist/agents/types.d.ts +8 -2
  11. package/dist/agents/types.js +1 -4
  12. package/dist/agents/types.js.map +1 -1
  13. package/dist/agents/workflow-wait.d.ts +4 -0
  14. package/dist/agents/workflow-wait.js +8 -0
  15. package/dist/agents/workflow-wait.js.map +1 -0
  16. package/dist/build.tsbuildinfo +1 -1
  17. package/dist/dto/git-connections/git-connections.dto.d.ts +854 -0
  18. package/dist/dto/git-connections/git-connections.dto.js +46 -3
  19. package/dist/dto/git-connections/git-connections.dto.js.map +1 -1
  20. package/dist/dto/index.d.ts +5 -3
  21. package/dist/dto/index.js +13 -4
  22. package/dist/dto/index.js.map +1 -1
  23. package/dist/dto/source-control/push-work-folder-request.dto.d.ts +114 -0
  24. package/dist/dto/workflow-reviews/create-workflow-review-request.dto.js +1 -1
  25. package/dist/dto/workflow-reviews/create-workflow-review-request.dto.js.map +1 -1
  26. package/dist/dto/workflow-reviews/get-workflow-review-request-detail.dto.d.ts +1 -1
  27. package/dist/dto/workflows/base-workflow-public.dto.d.ts +287 -0
  28. package/dist/dto/workflows/base-workflow-public.dto.js +161 -0
  29. package/dist/dto/workflows/base-workflow-public.dto.js.map +1 -0
  30. package/dist/dto/workflows/create-workflow-public.dto.d.ts +108 -111
  31. package/dist/dto/workflows/create-workflow-public.dto.js +2 -158
  32. package/dist/dto/workflows/create-workflow-public.dto.js.map +1 -1
  33. package/dist/dto/workflows/publish-workflow-public.dto.d.ts +24 -0
  34. package/dist/dto/workflows/publish-workflow-public.dto.js +17 -1
  35. package/dist/dto/workflows/publish-workflow-public.dto.js.map +1 -1
  36. package/dist/dto/workflows/update-workflow-public.dto.d.ts +371 -0
  37. package/dist/dto/workflows/update-workflow-public.dto.js +20 -0
  38. package/dist/dto/workflows/update-workflow-public.dto.js.map +1 -0
  39. package/dist/dto/workflows/update-workflow-query.dto.d.ts +9 -0
  40. package/dist/dto/workflows/update-workflow-query.dto.js +13 -0
  41. package/dist/dto/workflows/update-workflow-query.dto.js.map +1 -0
  42. package/dist/dto/workflows/workflow-public.dto.d.ts +1116 -0
  43. package/dist/dto/workflows/workflow-public.dto.js +16 -1
  44. package/dist/dto/workflows/workflow-public.dto.js.map +1 -1
  45. package/dist/dto/workflows/workflow-public.openapi.d.ts +12 -0
  46. package/dist/dto/workflows/workflow-public.openapi.js +15 -1
  47. package/dist/dto/workflows/workflow-public.openapi.js.map +1 -1
  48. package/dist/index.d.ts +4 -1
  49. package/dist/index.js +12 -5
  50. package/dist/index.js.map +1 -1
  51. package/dist/schemas/content-import-policy-result.schema.d.ts +67 -0
  52. package/dist/schemas/content-import-policy-result.schema.js +11 -0
  53. package/dist/schemas/content-import-policy-result.schema.js.map +1 -0
  54. package/dist/schemas/instance-ai.schema.d.ts +11 -3
  55. package/dist/schemas/instance-ai.schema.js +28 -9
  56. package/dist/schemas/instance-ai.schema.js.map +1 -1
  57. package/dist/schemas/policy-check-failure.schema.d.ts +12 -0
  58. package/dist/schemas/policy-check-failure.schema.js +9 -0
  59. package/dist/schemas/policy-check-failure.schema.js.map +1 -0
  60. package/dist/schemas/policy-violation.schema.d.ts +27 -0
  61. package/dist/schemas/policy-violation.schema.js +14 -0
  62. package/dist/schemas/policy-violation.schema.js.map +1 -0
  63. package/dist/schemas/source-controlled-file.schema.d.ts +98 -0
  64. package/dist/schemas/source-controlled-file.schema.js +3 -0
  65. package/dist/schemas/source-controlled-file.schema.js.map +1 -1
  66. package/dist/workflow-review-activity.d.ts +3 -2
  67. package/dist/workflow-review-activity.js.map +1 -1
  68. package/package.json +5 -5
@@ -2199,6 +2199,1122 @@ declare const WorkflowPublishPublicDto_base: import("../../zod-class").ZodClass<
2199
2199
  }, "shared">>;
2200
2200
  export declare class WorkflowPublishPublicDto extends WorkflowPublishPublicDto_base {
2201
2201
  }
2202
+ export declare const updatedWorkflowActiveVersionPublicSchema: z.ZodObject<{
2203
+ versionId: z.ZodString;
2204
+ workflowId: z.ZodString;
2205
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2206
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2207
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2208
+ authors: z.ZodString;
2209
+ name: z.ZodNullable<z.ZodString>;
2210
+ description: z.ZodNullable<z.ZodString>;
2211
+ autosaved: z.ZodBoolean;
2212
+ createdAt: z.ZodString;
2213
+ updatedAt: z.ZodString;
2214
+ } & {
2215
+ workflowPublishHistory: z.ZodOptional<z.ZodArray<z.ZodObject<{
2216
+ id: z.ZodNumber;
2217
+ workflowId: z.ZodString;
2218
+ versionId: z.ZodNullable<z.ZodString>;
2219
+ event: z.ZodEnum<["activated", "deactivated"]>;
2220
+ userId: z.ZodNullable<z.ZodString>;
2221
+ createdAt: z.ZodString;
2222
+ }, "strip", z.ZodTypeAny, {
2223
+ id: number;
2224
+ workflowId: string;
2225
+ versionId: string | null;
2226
+ event: "activated" | "deactivated";
2227
+ userId: string | null;
2228
+ createdAt: string;
2229
+ }, {
2230
+ id: number;
2231
+ workflowId: string;
2232
+ versionId: string | null;
2233
+ event: "activated" | "deactivated";
2234
+ userId: string | null;
2235
+ createdAt: string;
2236
+ }>, "many">>;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ versionId: string;
2239
+ workflowId: string;
2240
+ nodes: INode[];
2241
+ connections: IConnections;
2242
+ nodeGroups: IWorkflowGroup[];
2243
+ authors: string;
2244
+ name: string | null;
2245
+ description: string | null;
2246
+ autosaved: boolean;
2247
+ createdAt: string;
2248
+ updatedAt: string;
2249
+ workflowPublishHistory?: {
2250
+ id: number;
2251
+ workflowId: string;
2252
+ versionId: string | null;
2253
+ event: "activated" | "deactivated";
2254
+ userId: string | null;
2255
+ createdAt: string;
2256
+ }[] | undefined;
2257
+ }, {
2258
+ versionId: string;
2259
+ workflowId: string;
2260
+ nodes: INode[];
2261
+ connections: IConnections;
2262
+ nodeGroups: IWorkflowGroup[];
2263
+ authors: string;
2264
+ name: string | null;
2265
+ description: string | null;
2266
+ autosaved: boolean;
2267
+ createdAt: string;
2268
+ updatedAt: string;
2269
+ workflowPublishHistory?: {
2270
+ id: number;
2271
+ workflowId: string;
2272
+ versionId: string | null;
2273
+ event: "activated" | "deactivated";
2274
+ userId: string | null;
2275
+ createdAt: string;
2276
+ }[] | undefined;
2277
+ }>;
2278
+ export declare const updatedWorkflowPublicSchema: z.ZodObject<{
2279
+ id: z.ZodString;
2280
+ name: z.ZodString;
2281
+ description: z.ZodNullable<z.ZodString>;
2282
+ active: z.ZodBoolean;
2283
+ activeVersionId: z.ZodNullable<z.ZodString>;
2284
+ createdAt: z.ZodString;
2285
+ updatedAt: z.ZodString;
2286
+ isArchived: z.ZodBoolean;
2287
+ versionId: z.ZodString;
2288
+ versionCounter: z.ZodNumber;
2289
+ sourceWorkflowId: z.ZodNullable<z.ZodString>;
2290
+ triggerCount: z.ZodNumber;
2291
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2292
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2293
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2294
+ settings: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2295
+ staticData: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2296
+ pinData: z.ZodOptional<z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>>;
2297
+ meta: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2298
+ tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
2299
+ id: z.ZodString;
2300
+ name: z.ZodString;
2301
+ createdAt: z.ZodString;
2302
+ updatedAt: z.ZodString;
2303
+ }, "strip", z.ZodTypeAny, {
2304
+ id: string;
2305
+ name: string;
2306
+ createdAt: string;
2307
+ updatedAt: string;
2308
+ }, {
2309
+ id: string;
2310
+ name: string;
2311
+ createdAt: string;
2312
+ updatedAt: string;
2313
+ }>, "many">>;
2314
+ } & {
2315
+ activeVersion: z.ZodNullable<z.ZodObject<{
2316
+ versionId: z.ZodString;
2317
+ workflowId: z.ZodString;
2318
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2319
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2320
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2321
+ authors: z.ZodString;
2322
+ name: z.ZodNullable<z.ZodString>;
2323
+ description: z.ZodNullable<z.ZodString>;
2324
+ autosaved: z.ZodBoolean;
2325
+ createdAt: z.ZodString;
2326
+ updatedAt: z.ZodString;
2327
+ } & {
2328
+ workflowPublishHistory: z.ZodOptional<z.ZodArray<z.ZodObject<{
2329
+ id: z.ZodNumber;
2330
+ workflowId: z.ZodString;
2331
+ versionId: z.ZodNullable<z.ZodString>;
2332
+ event: z.ZodEnum<["activated", "deactivated"]>;
2333
+ userId: z.ZodNullable<z.ZodString>;
2334
+ createdAt: z.ZodString;
2335
+ }, "strip", z.ZodTypeAny, {
2336
+ id: number;
2337
+ workflowId: string;
2338
+ versionId: string | null;
2339
+ event: "activated" | "deactivated";
2340
+ userId: string | null;
2341
+ createdAt: string;
2342
+ }, {
2343
+ id: number;
2344
+ workflowId: string;
2345
+ versionId: string | null;
2346
+ event: "activated" | "deactivated";
2347
+ userId: string | null;
2348
+ createdAt: string;
2349
+ }>, "many">>;
2350
+ }, "strip", z.ZodTypeAny, {
2351
+ versionId: string;
2352
+ workflowId: string;
2353
+ nodes: INode[];
2354
+ connections: IConnections;
2355
+ nodeGroups: IWorkflowGroup[];
2356
+ authors: string;
2357
+ name: string | null;
2358
+ description: string | null;
2359
+ autosaved: boolean;
2360
+ createdAt: string;
2361
+ updatedAt: string;
2362
+ workflowPublishHistory?: {
2363
+ id: number;
2364
+ workflowId: string;
2365
+ versionId: string | null;
2366
+ event: "activated" | "deactivated";
2367
+ userId: string | null;
2368
+ createdAt: string;
2369
+ }[] | undefined;
2370
+ }, {
2371
+ versionId: string;
2372
+ workflowId: string;
2373
+ nodes: INode[];
2374
+ connections: IConnections;
2375
+ nodeGroups: IWorkflowGroup[];
2376
+ authors: string;
2377
+ name: string | null;
2378
+ description: string | null;
2379
+ autosaved: boolean;
2380
+ createdAt: string;
2381
+ updatedAt: string;
2382
+ workflowPublishHistory?: {
2383
+ id: number;
2384
+ workflowId: string;
2385
+ versionId: string | null;
2386
+ event: "activated" | "deactivated";
2387
+ userId: string | null;
2388
+ createdAt: string;
2389
+ }[] | undefined;
2390
+ }>>;
2391
+ }, "strip", z.ZodTypeAny, {
2392
+ id: string;
2393
+ name: string;
2394
+ description: string | null;
2395
+ active: boolean;
2396
+ activeVersionId: string | null;
2397
+ createdAt: string;
2398
+ updatedAt: string;
2399
+ isArchived: boolean;
2400
+ versionId: string;
2401
+ versionCounter: number;
2402
+ sourceWorkflowId: string | null;
2403
+ triggerCount: number;
2404
+ nodes: INode[];
2405
+ connections: IConnections;
2406
+ nodeGroups: IWorkflowGroup[];
2407
+ settings: Record<string, unknown> | null;
2408
+ staticData: Record<string, unknown> | null;
2409
+ pinData?: Record<string, unknown> | null | undefined;
2410
+ meta: Record<string, unknown> | null;
2411
+ tags?: {
2412
+ id: string;
2413
+ name: string;
2414
+ createdAt: string;
2415
+ updatedAt: string;
2416
+ }[] | undefined;
2417
+ activeVersion: {
2418
+ versionId: string;
2419
+ workflowId: string;
2420
+ nodes: INode[];
2421
+ connections: IConnections;
2422
+ nodeGroups: IWorkflowGroup[];
2423
+ authors: string;
2424
+ name: string | null;
2425
+ description: string | null;
2426
+ autosaved: boolean;
2427
+ createdAt: string;
2428
+ updatedAt: string;
2429
+ workflowPublishHistory?: {
2430
+ id: number;
2431
+ workflowId: string;
2432
+ versionId: string | null;
2433
+ event: "activated" | "deactivated";
2434
+ userId: string | null;
2435
+ createdAt: string;
2436
+ }[] | undefined;
2437
+ } | null;
2438
+ }, {
2439
+ id: string;
2440
+ name: string;
2441
+ description: string | null;
2442
+ active: boolean;
2443
+ activeVersionId: string | null;
2444
+ createdAt: string;
2445
+ updatedAt: string;
2446
+ isArchived: boolean;
2447
+ versionId: string;
2448
+ versionCounter: number;
2449
+ sourceWorkflowId: string | null;
2450
+ triggerCount: number;
2451
+ nodes: INode[];
2452
+ connections: IConnections;
2453
+ nodeGroups: IWorkflowGroup[];
2454
+ settings: Record<string, unknown> | null;
2455
+ staticData: Record<string, unknown> | null;
2456
+ pinData?: Record<string, unknown> | null | undefined;
2457
+ meta: Record<string, unknown> | null;
2458
+ tags?: {
2459
+ id: string;
2460
+ name: string;
2461
+ createdAt: string;
2462
+ updatedAt: string;
2463
+ }[] | undefined;
2464
+ activeVersion: {
2465
+ versionId: string;
2466
+ workflowId: string;
2467
+ nodes: INode[];
2468
+ connections: IConnections;
2469
+ nodeGroups: IWorkflowGroup[];
2470
+ authors: string;
2471
+ name: string | null;
2472
+ description: string | null;
2473
+ autosaved: boolean;
2474
+ createdAt: string;
2475
+ updatedAt: string;
2476
+ workflowPublishHistory?: {
2477
+ id: number;
2478
+ workflowId: string;
2479
+ versionId: string | null;
2480
+ event: "activated" | "deactivated";
2481
+ userId: string | null;
2482
+ createdAt: string;
2483
+ }[] | undefined;
2484
+ } | null;
2485
+ }>;
2486
+ declare const UpdatedWorkflowPublicDto_base: import("../../zod-class").ZodClass<{
2487
+ id: string;
2488
+ name: string;
2489
+ description: string | null;
2490
+ active: boolean;
2491
+ activeVersionId: string | null;
2492
+ createdAt: string;
2493
+ updatedAt: string;
2494
+ isArchived: boolean;
2495
+ versionId: string;
2496
+ versionCounter: number;
2497
+ sourceWorkflowId: string | null;
2498
+ triggerCount: number;
2499
+ nodes: INode[];
2500
+ connections: IConnections;
2501
+ nodeGroups: IWorkflowGroup[];
2502
+ settings: Record<string, unknown> | null;
2503
+ staticData: Record<string, unknown> | null;
2504
+ pinData?: Record<string, unknown> | null | undefined;
2505
+ meta: Record<string, unknown> | null;
2506
+ tags?: {
2507
+ id: string;
2508
+ name: string;
2509
+ createdAt: string;
2510
+ updatedAt: string;
2511
+ }[] | undefined;
2512
+ activeVersion: {
2513
+ versionId: string;
2514
+ workflowId: string;
2515
+ nodes: INode[];
2516
+ connections: IConnections;
2517
+ nodeGroups: IWorkflowGroup[];
2518
+ authors: string;
2519
+ name: string | null;
2520
+ description: string | null;
2521
+ autosaved: boolean;
2522
+ createdAt: string;
2523
+ updatedAt: string;
2524
+ workflowPublishHistory?: {
2525
+ id: number;
2526
+ workflowId: string;
2527
+ versionId: string | null;
2528
+ event: "activated" | "deactivated";
2529
+ userId: string | null;
2530
+ createdAt: string;
2531
+ }[] | undefined;
2532
+ } | null;
2533
+ }, {
2534
+ id: z.ZodString;
2535
+ name: z.ZodString;
2536
+ description: z.ZodNullable<z.ZodString>;
2537
+ active: z.ZodBoolean;
2538
+ activeVersionId: z.ZodNullable<z.ZodString>;
2539
+ createdAt: z.ZodString;
2540
+ updatedAt: z.ZodString;
2541
+ isArchived: z.ZodBoolean;
2542
+ versionId: z.ZodString;
2543
+ versionCounter: z.ZodNumber;
2544
+ sourceWorkflowId: z.ZodNullable<z.ZodString>;
2545
+ triggerCount: z.ZodNumber;
2546
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2547
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2548
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2549
+ settings: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2550
+ staticData: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2551
+ pinData: z.ZodOptional<z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>>;
2552
+ meta: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2553
+ tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
2554
+ id: z.ZodString;
2555
+ name: z.ZodString;
2556
+ createdAt: z.ZodString;
2557
+ updatedAt: z.ZodString;
2558
+ }, "strip", z.ZodTypeAny, {
2559
+ id: string;
2560
+ name: string;
2561
+ createdAt: string;
2562
+ updatedAt: string;
2563
+ }, {
2564
+ id: string;
2565
+ name: string;
2566
+ createdAt: string;
2567
+ updatedAt: string;
2568
+ }>, "many">>;
2569
+ } & {
2570
+ activeVersion: z.ZodNullable<z.ZodObject<{
2571
+ versionId: z.ZodString;
2572
+ workflowId: z.ZodString;
2573
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2574
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2575
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2576
+ authors: z.ZodString;
2577
+ name: z.ZodNullable<z.ZodString>;
2578
+ description: z.ZodNullable<z.ZodString>;
2579
+ autosaved: z.ZodBoolean;
2580
+ createdAt: z.ZodString;
2581
+ updatedAt: z.ZodString;
2582
+ } & {
2583
+ workflowPublishHistory: z.ZodOptional<z.ZodArray<z.ZodObject<{
2584
+ id: z.ZodNumber;
2585
+ workflowId: z.ZodString;
2586
+ versionId: z.ZodNullable<z.ZodString>;
2587
+ event: z.ZodEnum<["activated", "deactivated"]>;
2588
+ userId: z.ZodNullable<z.ZodString>;
2589
+ createdAt: z.ZodString;
2590
+ }, "strip", z.ZodTypeAny, {
2591
+ id: number;
2592
+ workflowId: string;
2593
+ versionId: string | null;
2594
+ event: "activated" | "deactivated";
2595
+ userId: string | null;
2596
+ createdAt: string;
2597
+ }, {
2598
+ id: number;
2599
+ workflowId: string;
2600
+ versionId: string | null;
2601
+ event: "activated" | "deactivated";
2602
+ userId: string | null;
2603
+ createdAt: string;
2604
+ }>, "many">>;
2605
+ }, "strip", z.ZodTypeAny, {
2606
+ versionId: string;
2607
+ workflowId: string;
2608
+ nodes: INode[];
2609
+ connections: IConnections;
2610
+ nodeGroups: IWorkflowGroup[];
2611
+ authors: string;
2612
+ name: string | null;
2613
+ description: string | null;
2614
+ autosaved: boolean;
2615
+ createdAt: string;
2616
+ updatedAt: string;
2617
+ workflowPublishHistory?: {
2618
+ id: number;
2619
+ workflowId: string;
2620
+ versionId: string | null;
2621
+ event: "activated" | "deactivated";
2622
+ userId: string | null;
2623
+ createdAt: string;
2624
+ }[] | undefined;
2625
+ }, {
2626
+ versionId: string;
2627
+ workflowId: string;
2628
+ nodes: INode[];
2629
+ connections: IConnections;
2630
+ nodeGroups: IWorkflowGroup[];
2631
+ authors: string;
2632
+ name: string | null;
2633
+ description: string | null;
2634
+ autosaved: boolean;
2635
+ createdAt: string;
2636
+ updatedAt: string;
2637
+ workflowPublishHistory?: {
2638
+ id: number;
2639
+ workflowId: string;
2640
+ versionId: string | null;
2641
+ event: "activated" | "deactivated";
2642
+ userId: string | null;
2643
+ createdAt: string;
2644
+ }[] | undefined;
2645
+ }>>;
2646
+ }>;
2647
+ export declare class UpdatedWorkflowPublicDto extends UpdatedWorkflowPublicDto_base {
2648
+ }
2649
+ export declare const deletedWorkflowPublicSchema: z.ZodObject<{
2650
+ id: z.ZodString;
2651
+ name: z.ZodString;
2652
+ description: z.ZodNullable<z.ZodString>;
2653
+ active: z.ZodBoolean;
2654
+ activeVersionId: z.ZodNullable<z.ZodString>;
2655
+ createdAt: z.ZodString;
2656
+ updatedAt: z.ZodString;
2657
+ isArchived: z.ZodBoolean;
2658
+ versionId: z.ZodString;
2659
+ versionCounter: z.ZodNumber;
2660
+ sourceWorkflowId: z.ZodNullable<z.ZodString>;
2661
+ triggerCount: z.ZodNumber;
2662
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2663
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2664
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2665
+ settings: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2666
+ staticData: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2667
+ pinData: z.ZodOptional<z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>>;
2668
+ meta: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
2669
+ tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
2670
+ id: z.ZodString;
2671
+ name: z.ZodString;
2672
+ createdAt: z.ZodString;
2673
+ updatedAt: z.ZodString;
2674
+ }, "strip", z.ZodTypeAny, {
2675
+ id: string;
2676
+ name: string;
2677
+ createdAt: string;
2678
+ updatedAt: string;
2679
+ }, {
2680
+ id: string;
2681
+ name: string;
2682
+ createdAt: string;
2683
+ updatedAt: string;
2684
+ }>, "many">>;
2685
+ shared: z.ZodArray<z.ZodObject<{
2686
+ role: z.ZodString;
2687
+ workflowId: z.ZodString;
2688
+ projectId: z.ZodString;
2689
+ project: z.ZodObject<{
2690
+ id: z.ZodString;
2691
+ name: z.ZodString;
2692
+ type: z.ZodEnum<["personal", "team"]>;
2693
+ icon: z.ZodNullable<z.ZodObject<{
2694
+ type: z.ZodEnum<["emoji", "icon"]>;
2695
+ value: z.ZodString;
2696
+ }, "strip", z.ZodTypeAny, {
2697
+ type: "emoji" | "icon";
2698
+ value: string;
2699
+ }, {
2700
+ type: "emoji" | "icon";
2701
+ value: string;
2702
+ }>>;
2703
+ description: z.ZodNullable<z.ZodString>;
2704
+ customTelemetryTags: z.ZodArray<z.ZodObject<{
2705
+ key: z.ZodString;
2706
+ value: z.ZodString;
2707
+ }, "strip", z.ZodTypeAny, {
2708
+ key: string;
2709
+ value: string;
2710
+ }, {
2711
+ key: string;
2712
+ value: string;
2713
+ }>, "many">;
2714
+ creatorId: z.ZodNullable<z.ZodString>;
2715
+ createdAt: z.ZodString;
2716
+ updatedAt: z.ZodString;
2717
+ }, "strip", z.ZodTypeAny, {
2718
+ id: string;
2719
+ name: string;
2720
+ type: "personal" | "team";
2721
+ icon: {
2722
+ type: "emoji" | "icon";
2723
+ value: string;
2724
+ } | null;
2725
+ description: string | null;
2726
+ customTelemetryTags: {
2727
+ key: string;
2728
+ value: string;
2729
+ }[];
2730
+ creatorId: string | null;
2731
+ createdAt: string;
2732
+ updatedAt: string;
2733
+ }, {
2734
+ id: string;
2735
+ name: string;
2736
+ type: "personal" | "team";
2737
+ icon: {
2738
+ type: "emoji" | "icon";
2739
+ value: string;
2740
+ } | null;
2741
+ description: string | null;
2742
+ customTelemetryTags: {
2743
+ key: string;
2744
+ value: string;
2745
+ }[];
2746
+ creatorId: string | null;
2747
+ createdAt: string;
2748
+ updatedAt: string;
2749
+ }>;
2750
+ createdAt: z.ZodString;
2751
+ updatedAt: z.ZodString;
2752
+ }, "strip", z.ZodTypeAny, {
2753
+ role: string;
2754
+ workflowId: string;
2755
+ projectId: string;
2756
+ project: {
2757
+ id: string;
2758
+ name: string;
2759
+ type: "personal" | "team";
2760
+ icon: {
2761
+ type: "emoji" | "icon";
2762
+ value: string;
2763
+ } | null;
2764
+ description: string | null;
2765
+ customTelemetryTags: {
2766
+ key: string;
2767
+ value: string;
2768
+ }[];
2769
+ creatorId: string | null;
2770
+ createdAt: string;
2771
+ updatedAt: string;
2772
+ };
2773
+ createdAt: string;
2774
+ updatedAt: string;
2775
+ }, {
2776
+ role: string;
2777
+ workflowId: string;
2778
+ projectId: string;
2779
+ project: {
2780
+ id: string;
2781
+ name: string;
2782
+ type: "personal" | "team";
2783
+ icon: {
2784
+ type: "emoji" | "icon";
2785
+ value: string;
2786
+ } | null;
2787
+ description: string | null;
2788
+ customTelemetryTags: {
2789
+ key: string;
2790
+ value: string;
2791
+ }[];
2792
+ creatorId: string | null;
2793
+ createdAt: string;
2794
+ updatedAt: string;
2795
+ };
2796
+ createdAt: string;
2797
+ updatedAt: string;
2798
+ }>, "many">;
2799
+ } & {
2800
+ activeVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2801
+ versionId: z.ZodString;
2802
+ workflowId: z.ZodString;
2803
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
2804
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
2805
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
2806
+ authors: z.ZodString;
2807
+ name: z.ZodNullable<z.ZodString>;
2808
+ description: z.ZodNullable<z.ZodString>;
2809
+ autosaved: z.ZodBoolean;
2810
+ createdAt: z.ZodString;
2811
+ updatedAt: z.ZodString;
2812
+ workflowPublishHistory: z.ZodArray<z.ZodObject<{
2813
+ id: z.ZodNumber;
2814
+ workflowId: z.ZodString;
2815
+ versionId: z.ZodNullable<z.ZodString>;
2816
+ event: z.ZodEnum<["activated", "deactivated"]>;
2817
+ userId: z.ZodNullable<z.ZodString>;
2818
+ createdAt: z.ZodString;
2819
+ }, "strip", z.ZodTypeAny, {
2820
+ id: number;
2821
+ workflowId: string;
2822
+ versionId: string | null;
2823
+ event: "activated" | "deactivated";
2824
+ userId: string | null;
2825
+ createdAt: string;
2826
+ }, {
2827
+ id: number;
2828
+ workflowId: string;
2829
+ versionId: string | null;
2830
+ event: "activated" | "deactivated";
2831
+ userId: string | null;
2832
+ createdAt: string;
2833
+ }>, "many">;
2834
+ }, "strip", z.ZodTypeAny, {
2835
+ versionId: string;
2836
+ workflowId: string;
2837
+ nodes: INode[];
2838
+ connections: IConnections;
2839
+ nodeGroups: IWorkflowGroup[];
2840
+ authors: string;
2841
+ name: string | null;
2842
+ description: string | null;
2843
+ autosaved: boolean;
2844
+ createdAt: string;
2845
+ updatedAt: string;
2846
+ workflowPublishHistory: {
2847
+ id: number;
2848
+ workflowId: string;
2849
+ versionId: string | null;
2850
+ event: "activated" | "deactivated";
2851
+ userId: string | null;
2852
+ createdAt: string;
2853
+ }[];
2854
+ }, {
2855
+ versionId: string;
2856
+ workflowId: string;
2857
+ nodes: INode[];
2858
+ connections: IConnections;
2859
+ nodeGroups: IWorkflowGroup[];
2860
+ authors: string;
2861
+ name: string | null;
2862
+ description: string | null;
2863
+ autosaved: boolean;
2864
+ createdAt: string;
2865
+ updatedAt: string;
2866
+ workflowPublishHistory: {
2867
+ id: number;
2868
+ workflowId: string;
2869
+ versionId: string | null;
2870
+ event: "activated" | "deactivated";
2871
+ userId: string | null;
2872
+ createdAt: string;
2873
+ }[];
2874
+ }>>>;
2875
+ }, "strip", z.ZodTypeAny, {
2876
+ id: string;
2877
+ name: string;
2878
+ description: string | null;
2879
+ active: boolean;
2880
+ activeVersionId: string | null;
2881
+ createdAt: string;
2882
+ updatedAt: string;
2883
+ isArchived: boolean;
2884
+ versionId: string;
2885
+ versionCounter: number;
2886
+ sourceWorkflowId: string | null;
2887
+ triggerCount: number;
2888
+ nodes: INode[];
2889
+ connections: IConnections;
2890
+ nodeGroups: IWorkflowGroup[];
2891
+ settings: Record<string, unknown> | null;
2892
+ staticData: Record<string, unknown> | null;
2893
+ pinData?: Record<string, unknown> | null | undefined;
2894
+ meta: Record<string, unknown> | null;
2895
+ tags?: {
2896
+ id: string;
2897
+ name: string;
2898
+ createdAt: string;
2899
+ updatedAt: string;
2900
+ }[] | undefined;
2901
+ shared: {
2902
+ role: string;
2903
+ workflowId: string;
2904
+ projectId: string;
2905
+ project: {
2906
+ id: string;
2907
+ name: string;
2908
+ type: "personal" | "team";
2909
+ icon: {
2910
+ type: "emoji" | "icon";
2911
+ value: string;
2912
+ } | null;
2913
+ description: string | null;
2914
+ customTelemetryTags: {
2915
+ key: string;
2916
+ value: string;
2917
+ }[];
2918
+ creatorId: string | null;
2919
+ createdAt: string;
2920
+ updatedAt: string;
2921
+ };
2922
+ createdAt: string;
2923
+ updatedAt: string;
2924
+ }[];
2925
+ activeVersion?: {
2926
+ versionId: string;
2927
+ workflowId: string;
2928
+ nodes: INode[];
2929
+ connections: IConnections;
2930
+ nodeGroups: IWorkflowGroup[];
2931
+ authors: string;
2932
+ name: string | null;
2933
+ description: string | null;
2934
+ autosaved: boolean;
2935
+ createdAt: string;
2936
+ updatedAt: string;
2937
+ workflowPublishHistory: {
2938
+ id: number;
2939
+ workflowId: string;
2940
+ versionId: string | null;
2941
+ event: "activated" | "deactivated";
2942
+ userId: string | null;
2943
+ createdAt: string;
2944
+ }[];
2945
+ } | null | undefined;
2946
+ }, {
2947
+ id: string;
2948
+ name: string;
2949
+ description: string | null;
2950
+ active: boolean;
2951
+ activeVersionId: string | null;
2952
+ createdAt: string;
2953
+ updatedAt: string;
2954
+ isArchived: boolean;
2955
+ versionId: string;
2956
+ versionCounter: number;
2957
+ sourceWorkflowId: string | null;
2958
+ triggerCount: number;
2959
+ nodes: INode[];
2960
+ connections: IConnections;
2961
+ nodeGroups: IWorkflowGroup[];
2962
+ settings: Record<string, unknown> | null;
2963
+ staticData: Record<string, unknown> | null;
2964
+ pinData?: Record<string, unknown> | null | undefined;
2965
+ meta: Record<string, unknown> | null;
2966
+ tags?: {
2967
+ id: string;
2968
+ name: string;
2969
+ createdAt: string;
2970
+ updatedAt: string;
2971
+ }[] | undefined;
2972
+ shared: {
2973
+ role: string;
2974
+ workflowId: string;
2975
+ projectId: string;
2976
+ project: {
2977
+ id: string;
2978
+ name: string;
2979
+ type: "personal" | "team";
2980
+ icon: {
2981
+ type: "emoji" | "icon";
2982
+ value: string;
2983
+ } | null;
2984
+ description: string | null;
2985
+ customTelemetryTags: {
2986
+ key: string;
2987
+ value: string;
2988
+ }[];
2989
+ creatorId: string | null;
2990
+ createdAt: string;
2991
+ updatedAt: string;
2992
+ };
2993
+ createdAt: string;
2994
+ updatedAt: string;
2995
+ }[];
2996
+ activeVersion?: {
2997
+ versionId: string;
2998
+ workflowId: string;
2999
+ nodes: INode[];
3000
+ connections: IConnections;
3001
+ nodeGroups: IWorkflowGroup[];
3002
+ authors: string;
3003
+ name: string | null;
3004
+ description: string | null;
3005
+ autosaved: boolean;
3006
+ createdAt: string;
3007
+ updatedAt: string;
3008
+ workflowPublishHistory: {
3009
+ id: number;
3010
+ workflowId: string;
3011
+ versionId: string | null;
3012
+ event: "activated" | "deactivated";
3013
+ userId: string | null;
3014
+ createdAt: string;
3015
+ }[];
3016
+ } | null | undefined;
3017
+ }>;
3018
+ declare const DeletedWorkflowPublicDto_base: import("../../zod-class").ZodClass<{
3019
+ id: string;
3020
+ name: string;
3021
+ description: string | null;
3022
+ active: boolean;
3023
+ activeVersionId: string | null;
3024
+ createdAt: string;
3025
+ updatedAt: string;
3026
+ isArchived: boolean;
3027
+ versionId: string;
3028
+ versionCounter: number;
3029
+ sourceWorkflowId: string | null;
3030
+ triggerCount: number;
3031
+ nodes: INode[];
3032
+ connections: IConnections;
3033
+ nodeGroups: IWorkflowGroup[];
3034
+ settings: Record<string, unknown> | null;
3035
+ staticData: Record<string, unknown> | null;
3036
+ pinData?: Record<string, unknown> | null | undefined;
3037
+ meta: Record<string, unknown> | null;
3038
+ tags?: {
3039
+ id: string;
3040
+ name: string;
3041
+ createdAt: string;
3042
+ updatedAt: string;
3043
+ }[] | undefined;
3044
+ shared: {
3045
+ role: string;
3046
+ workflowId: string;
3047
+ projectId: string;
3048
+ project: {
3049
+ id: string;
3050
+ name: string;
3051
+ type: "personal" | "team";
3052
+ icon: {
3053
+ type: "emoji" | "icon";
3054
+ value: string;
3055
+ } | null;
3056
+ description: string | null;
3057
+ customTelemetryTags: {
3058
+ key: string;
3059
+ value: string;
3060
+ }[];
3061
+ creatorId: string | null;
3062
+ createdAt: string;
3063
+ updatedAt: string;
3064
+ };
3065
+ createdAt: string;
3066
+ updatedAt: string;
3067
+ }[];
3068
+ activeVersion?: {
3069
+ versionId: string;
3070
+ workflowId: string;
3071
+ nodes: INode[];
3072
+ connections: IConnections;
3073
+ nodeGroups: IWorkflowGroup[];
3074
+ authors: string;
3075
+ name: string | null;
3076
+ description: string | null;
3077
+ autosaved: boolean;
3078
+ createdAt: string;
3079
+ updatedAt: string;
3080
+ workflowPublishHistory: {
3081
+ id: number;
3082
+ workflowId: string;
3083
+ versionId: string | null;
3084
+ event: "activated" | "deactivated";
3085
+ userId: string | null;
3086
+ createdAt: string;
3087
+ }[];
3088
+ } | null | undefined;
3089
+ }, {
3090
+ id: z.ZodString;
3091
+ name: z.ZodString;
3092
+ description: z.ZodNullable<z.ZodString>;
3093
+ active: z.ZodBoolean;
3094
+ activeVersionId: z.ZodNullable<z.ZodString>;
3095
+ createdAt: z.ZodString;
3096
+ updatedAt: z.ZodString;
3097
+ isArchived: z.ZodBoolean;
3098
+ versionId: z.ZodString;
3099
+ versionCounter: z.ZodNumber;
3100
+ sourceWorkflowId: z.ZodNullable<z.ZodString>;
3101
+ triggerCount: z.ZodNumber;
3102
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
3103
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
3104
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
3105
+ settings: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
3106
+ staticData: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
3107
+ pinData: z.ZodOptional<z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>>;
3108
+ meta: z.ZodType<Record<string, unknown> | null, z.ZodTypeDef, Record<string, unknown> | null>;
3109
+ tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
3110
+ id: z.ZodString;
3111
+ name: z.ZodString;
3112
+ createdAt: z.ZodString;
3113
+ updatedAt: z.ZodString;
3114
+ }, "strip", z.ZodTypeAny, {
3115
+ id: string;
3116
+ name: string;
3117
+ createdAt: string;
3118
+ updatedAt: string;
3119
+ }, {
3120
+ id: string;
3121
+ name: string;
3122
+ createdAt: string;
3123
+ updatedAt: string;
3124
+ }>, "many">>;
3125
+ shared: z.ZodArray<z.ZodObject<{
3126
+ role: z.ZodString;
3127
+ workflowId: z.ZodString;
3128
+ projectId: z.ZodString;
3129
+ project: z.ZodObject<{
3130
+ id: z.ZodString;
3131
+ name: z.ZodString;
3132
+ type: z.ZodEnum<["personal", "team"]>;
3133
+ icon: z.ZodNullable<z.ZodObject<{
3134
+ type: z.ZodEnum<["emoji", "icon"]>;
3135
+ value: z.ZodString;
3136
+ }, "strip", z.ZodTypeAny, {
3137
+ type: "emoji" | "icon";
3138
+ value: string;
3139
+ }, {
3140
+ type: "emoji" | "icon";
3141
+ value: string;
3142
+ }>>;
3143
+ description: z.ZodNullable<z.ZodString>;
3144
+ customTelemetryTags: z.ZodArray<z.ZodObject<{
3145
+ key: z.ZodString;
3146
+ value: z.ZodString;
3147
+ }, "strip", z.ZodTypeAny, {
3148
+ key: string;
3149
+ value: string;
3150
+ }, {
3151
+ key: string;
3152
+ value: string;
3153
+ }>, "many">;
3154
+ creatorId: z.ZodNullable<z.ZodString>;
3155
+ createdAt: z.ZodString;
3156
+ updatedAt: z.ZodString;
3157
+ }, "strip", z.ZodTypeAny, {
3158
+ id: string;
3159
+ name: string;
3160
+ type: "personal" | "team";
3161
+ icon: {
3162
+ type: "emoji" | "icon";
3163
+ value: string;
3164
+ } | null;
3165
+ description: string | null;
3166
+ customTelemetryTags: {
3167
+ key: string;
3168
+ value: string;
3169
+ }[];
3170
+ creatorId: string | null;
3171
+ createdAt: string;
3172
+ updatedAt: string;
3173
+ }, {
3174
+ id: string;
3175
+ name: string;
3176
+ type: "personal" | "team";
3177
+ icon: {
3178
+ type: "emoji" | "icon";
3179
+ value: string;
3180
+ } | null;
3181
+ description: string | null;
3182
+ customTelemetryTags: {
3183
+ key: string;
3184
+ value: string;
3185
+ }[];
3186
+ creatorId: string | null;
3187
+ createdAt: string;
3188
+ updatedAt: string;
3189
+ }>;
3190
+ createdAt: z.ZodString;
3191
+ updatedAt: z.ZodString;
3192
+ }, "strip", z.ZodTypeAny, {
3193
+ role: string;
3194
+ workflowId: string;
3195
+ projectId: string;
3196
+ project: {
3197
+ id: string;
3198
+ name: string;
3199
+ type: "personal" | "team";
3200
+ icon: {
3201
+ type: "emoji" | "icon";
3202
+ value: string;
3203
+ } | null;
3204
+ description: string | null;
3205
+ customTelemetryTags: {
3206
+ key: string;
3207
+ value: string;
3208
+ }[];
3209
+ creatorId: string | null;
3210
+ createdAt: string;
3211
+ updatedAt: string;
3212
+ };
3213
+ createdAt: string;
3214
+ updatedAt: string;
3215
+ }, {
3216
+ role: string;
3217
+ workflowId: string;
3218
+ projectId: string;
3219
+ project: {
3220
+ id: string;
3221
+ name: string;
3222
+ type: "personal" | "team";
3223
+ icon: {
3224
+ type: "emoji" | "icon";
3225
+ value: string;
3226
+ } | null;
3227
+ description: string | null;
3228
+ customTelemetryTags: {
3229
+ key: string;
3230
+ value: string;
3231
+ }[];
3232
+ creatorId: string | null;
3233
+ createdAt: string;
3234
+ updatedAt: string;
3235
+ };
3236
+ createdAt: string;
3237
+ updatedAt: string;
3238
+ }>, "many">;
3239
+ } & {
3240
+ activeVersion: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3241
+ versionId: z.ZodString;
3242
+ workflowId: z.ZodString;
3243
+ nodes: z.ZodType<INode[], z.ZodTypeDef, INode[]>;
3244
+ connections: z.ZodType<IConnections, z.ZodTypeDef, IConnections>;
3245
+ nodeGroups: z.ZodType<IWorkflowGroup[], z.ZodTypeDef, IWorkflowGroup[]>;
3246
+ authors: z.ZodString;
3247
+ name: z.ZodNullable<z.ZodString>;
3248
+ description: z.ZodNullable<z.ZodString>;
3249
+ autosaved: z.ZodBoolean;
3250
+ createdAt: z.ZodString;
3251
+ updatedAt: z.ZodString;
3252
+ workflowPublishHistory: z.ZodArray<z.ZodObject<{
3253
+ id: z.ZodNumber;
3254
+ workflowId: z.ZodString;
3255
+ versionId: z.ZodNullable<z.ZodString>;
3256
+ event: z.ZodEnum<["activated", "deactivated"]>;
3257
+ userId: z.ZodNullable<z.ZodString>;
3258
+ createdAt: z.ZodString;
3259
+ }, "strip", z.ZodTypeAny, {
3260
+ id: number;
3261
+ workflowId: string;
3262
+ versionId: string | null;
3263
+ event: "activated" | "deactivated";
3264
+ userId: string | null;
3265
+ createdAt: string;
3266
+ }, {
3267
+ id: number;
3268
+ workflowId: string;
3269
+ versionId: string | null;
3270
+ event: "activated" | "deactivated";
3271
+ userId: string | null;
3272
+ createdAt: string;
3273
+ }>, "many">;
3274
+ }, "strip", z.ZodTypeAny, {
3275
+ versionId: string;
3276
+ workflowId: string;
3277
+ nodes: INode[];
3278
+ connections: IConnections;
3279
+ nodeGroups: IWorkflowGroup[];
3280
+ authors: string;
3281
+ name: string | null;
3282
+ description: string | null;
3283
+ autosaved: boolean;
3284
+ createdAt: string;
3285
+ updatedAt: string;
3286
+ workflowPublishHistory: {
3287
+ id: number;
3288
+ workflowId: string;
3289
+ versionId: string | null;
3290
+ event: "activated" | "deactivated";
3291
+ userId: string | null;
3292
+ createdAt: string;
3293
+ }[];
3294
+ }, {
3295
+ versionId: string;
3296
+ workflowId: string;
3297
+ nodes: INode[];
3298
+ connections: IConnections;
3299
+ nodeGroups: IWorkflowGroup[];
3300
+ authors: string;
3301
+ name: string | null;
3302
+ description: string | null;
3303
+ autosaved: boolean;
3304
+ createdAt: string;
3305
+ updatedAt: string;
3306
+ workflowPublishHistory: {
3307
+ id: number;
3308
+ workflowId: string;
3309
+ versionId: string | null;
3310
+ event: "activated" | "deactivated";
3311
+ userId: string | null;
3312
+ createdAt: string;
3313
+ }[];
3314
+ }>>>;
3315
+ }>;
3316
+ export declare class DeletedWorkflowPublicDto extends DeletedWorkflowPublicDto_base {
3317
+ }
2202
3318
  export declare const workflowListItemSharedPublicSchema: z.ZodObject<Omit<{
2203
3319
  role: z.ZodString;
2204
3320
  workflowId: z.ZodString;