@lovable.dev/sdk 1.9.0 → 1.9.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.
package/dist/schemas.d.ts CHANGED
@@ -346,7 +346,6 @@ declare const PublicV1GitFilesResponseSchema: z$1.ZodObject<{
346
346
  ref: z$1.ZodString;
347
347
  }, z$1.core.$strip>;
348
348
  declare const PiiLabelSchema: z$1.ZodObject<{
349
- chat_message_id: z$1.ZodOptional<z$1.ZodString>;
350
349
  chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
351
350
  connector_id: z$1.ZodOptional<z$1.ZodString>;
352
351
  found_at: z$1.ZodISODateTime;
@@ -361,7 +360,6 @@ declare const PiiLabelSchema: z$1.ZodObject<{
361
360
  very_likely: "very_likely";
362
361
  }>>;
363
362
  quote: z$1.ZodOptional<z$1.ZodString>;
364
- scan_id: z$1.ZodOptional<z$1.ZodString>;
365
363
  sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
366
364
  low: "low";
367
365
  mid: "mid";
@@ -384,7 +382,6 @@ declare const PiiLabelSchema: z$1.ZodObject<{
384
382
  }, z$1.core.$strip>;
385
383
  declare const PiiLabelPageSchema: z$1.ZodObject<{
386
384
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
387
- chat_message_id: z$1.ZodOptional<z$1.ZodString>;
388
385
  chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
389
386
  connector_id: z$1.ZodOptional<z$1.ZodString>;
390
387
  found_at: z$1.ZodISODateTime;
@@ -399,7 +396,6 @@ declare const PiiLabelPageSchema: z$1.ZodObject<{
399
396
  very_likely: "very_likely";
400
397
  }>>;
401
398
  quote: z$1.ZodOptional<z$1.ZodString>;
402
- scan_id: z$1.ZodOptional<z$1.ZodString>;
403
399
  sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
404
400
  low: "low";
405
401
  mid: "mid";
@@ -465,8 +461,6 @@ declare const ProjectSummarySchema: z$1.ZodObject<{
465
461
  completed: "completed";
466
462
  failed: "failed";
467
463
  }>>;
468
- tech_stack: z$1.ZodOptional<z$1.ZodString>;
469
- updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
470
464
  url: z$1.ZodOptional<z$1.ZodString>;
471
465
  user_id: z$1.ZodOptional<z$1.ZodString>;
472
466
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
@@ -504,8 +498,6 @@ declare const ProjectSummaryPageSchema: z$1.ZodObject<{
504
498
  completed: "completed";
505
499
  failed: "failed";
506
500
  }>>;
507
- tech_stack: z$1.ZodOptional<z$1.ZodString>;
508
- updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
509
501
  url: z$1.ZodOptional<z$1.ZodString>;
510
502
  user_id: z$1.ZodOptional<z$1.ZodString>;
511
503
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
@@ -541,16 +533,16 @@ declare const PublicV1ProjectRemixInputBodySchema: z$1.ZodObject<{
541
533
  declare const PublishAudienceTargetSchema: z$1.ZodObject<{
542
534
  id: z$1.ZodString;
543
535
  type: z$1.ZodEnum<{
544
- user: "user";
545
536
  group: "group";
537
+ user: "user";
546
538
  }>;
547
539
  }, z$1.core.$strip>;
548
540
  declare const PublishProjectRequestSchema: z$1.ZodObject<{
549
541
  audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
550
542
  id: z$1.ZodString;
551
543
  type: z$1.ZodEnum<{
552
- user: "user";
553
544
  group: "group";
545
+ user: "user";
554
546
  }>;
555
547
  }, z$1.core.$strip>>>>;
556
548
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -589,11 +581,93 @@ declare const DeploymentSchema: z$1.ZodObject<{
589
581
  status: z$1.ZodEnum<{
590
582
  completed: "completed";
591
583
  unknown: "unknown";
592
- running: "running";
593
584
  error: "error";
585
+ running: "running";
594
586
  }>;
595
587
  url: z$1.ZodOptional<z$1.ZodString>;
596
588
  }, z$1.core.$strip>;
589
+ declare const SecurityFindingSchema: z$1.ZodObject<{
590
+ category: z$1.ZodOptional<z$1.ZodString>;
591
+ created_at: z$1.ZodISODateTime;
592
+ description: z$1.ZodOptional<z$1.ZodString>;
593
+ finding_id: z$1.ZodString;
594
+ level: z$1.ZodEnum<{
595
+ error: "error";
596
+ warn: "warn";
597
+ info: "info";
598
+ }>;
599
+ name: z$1.ZodString;
600
+ scanner_name: z$1.ZodString;
601
+ status: z$1.ZodEnum<{
602
+ open: "open";
603
+ ignored: "ignored";
604
+ fixed: "fixed";
605
+ }>;
606
+ updated_at: z$1.ZodISODateTime;
607
+ }, z$1.core.$strip>;
608
+ declare const SecurityScanSchema: z$1.ZodObject<{
609
+ commit_sha: z$1.ZodOptional<z$1.ZodString>;
610
+ finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
611
+ requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
612
+ scan_id: z$1.ZodString;
613
+ started_at: z$1.ZodISODateTime;
614
+ status: z$1.ZodEnum<{
615
+ completed: "completed";
616
+ failed: "failed";
617
+ running: "running";
618
+ }>;
619
+ }, z$1.core.$strip>;
620
+ declare const SecurityScanPageSchema: z$1.ZodObject<{
621
+ data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
622
+ commit_sha: z$1.ZodOptional<z$1.ZodString>;
623
+ finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
624
+ requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
625
+ scan_id: z$1.ZodString;
626
+ started_at: z$1.ZodISODateTime;
627
+ status: z$1.ZodEnum<{
628
+ completed: "completed";
629
+ failed: "failed";
630
+ running: "running";
631
+ }>;
632
+ }, z$1.core.$strip>>>;
633
+ pagination: z$1.ZodObject<{
634
+ has_more: z$1.ZodBoolean;
635
+ next_cursor: z$1.ZodNullable<z$1.ZodString>;
636
+ }, z$1.core.$strip>;
637
+ }, z$1.core.$strip>;
638
+ declare const SecurityScanDetailSchema: z$1.ZodObject<{
639
+ findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
640
+ category: z$1.ZodOptional<z$1.ZodString>;
641
+ created_at: z$1.ZodISODateTime;
642
+ description: z$1.ZodOptional<z$1.ZodString>;
643
+ finding_id: z$1.ZodString;
644
+ level: z$1.ZodEnum<{
645
+ error: "error";
646
+ warn: "warn";
647
+ info: "info";
648
+ }>;
649
+ name: z$1.ZodString;
650
+ scanner_name: z$1.ZodString;
651
+ status: z$1.ZodEnum<{
652
+ open: "open";
653
+ ignored: "ignored";
654
+ fixed: "fixed";
655
+ }>;
656
+ updated_at: z$1.ZodISODateTime;
657
+ }, z$1.core.$strip>>>;
658
+ scan: z$1.ZodObject<{
659
+ commit_sha: z$1.ZodOptional<z$1.ZodString>;
660
+ finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
661
+ requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
662
+ scan_id: z$1.ZodString;
663
+ started_at: z$1.ZodISODateTime;
664
+ status: z$1.ZodEnum<{
665
+ completed: "completed";
666
+ failed: "failed";
667
+ running: "running";
668
+ }>;
669
+ }, z$1.core.$strip>;
670
+ }, z$1.core.$strip>;
597
671
  declare const PublicV1SetProjectKnowledgeInputBodySchema: z$1.ZodObject<{
598
672
  content: z$1.ZodString;
599
673
  project_id: z$1.ZodString;
@@ -606,8 +680,8 @@ declare const UpdatePublishSettingsRequestSchema: z$1.ZodObject<{
606
680
  audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
607
681
  id: z$1.ZodString;
608
682
  type: z$1.ZodEnum<{
609
- user: "user";
610
683
  group: "group";
684
+ user: "user";
611
685
  }>;
612
686
  }, z$1.core.$strip>>>>;
613
687
  is_published: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -1598,25 +1672,6 @@ declare const V1AwaitingInputSummarySchema: z$1.ZodObject<{
1598
1672
  prev_session_id: z$1.ZodOptional<z$1.ZodString>;
1599
1673
  tool_id: z$1.ZodOptional<z$1.ZodString>;
1600
1674
  }, z$1.core.$strip>;
1601
- declare const MemberCreditLimitSchema: z$1.ZodObject<{
1602
- monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1603
- temporary_limit_expires_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1604
- temporary_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1605
- user_id: z$1.ZodString;
1606
- }, z$1.core.$strip>;
1607
- declare const CreditLimitPageSchema: z$1.ZodObject<{
1608
- data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
1609
- monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1610
- temporary_limit_expires_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1611
- temporary_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1612
- user_id: z$1.ZodString;
1613
- }, z$1.core.$strip>>>;
1614
- default_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1615
- pagination: z$1.ZodObject<{
1616
- has_more: z$1.ZodBoolean;
1617
- next_cursor: z$1.ZodNullable<z$1.ZodString>;
1618
- }, z$1.core.$strip>;
1619
- }, z$1.core.$strip>;
1620
1675
  declare const BillingPeriodSchema: z$1.ZodObject<{
1621
1676
  end: z$1.ZodISODateTime;
1622
1677
  start: z$1.ZodISODateTime;
@@ -1634,7 +1689,7 @@ declare const CreditUsagePeriodSchema: z$1.ZodObject<{
1634
1689
  }>>;
1635
1690
  start: z$1.ZodString;
1636
1691
  }, z$1.core.$strip>;
1637
- declare const MemberCreditLimitUpdateSchema: z$1.ZodObject<{
1692
+ declare const V1BulkMemberCreditLimitItemSchema: z$1.ZodObject<{
1638
1693
  duration: z$1.ZodOptional<z$1.ZodEnum<{
1639
1694
  permanent: "permanent";
1640
1695
  current_period: "current_period";
@@ -1643,18 +1698,7 @@ declare const MemberCreditLimitUpdateSchema: z$1.ZodObject<{
1643
1698
  monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
1644
1699
  user_id: z$1.ZodOptional<z$1.ZodString>;
1645
1700
  }, z$1.core.$strip>;
1646
- declare const SetMemberCreditLimitsRequestSchema: z$1.ZodObject<{
1647
- members: z$1.ZodArray<z$1.ZodObject<{
1648
- duration: z$1.ZodOptional<z$1.ZodEnum<{
1649
- permanent: "permanent";
1650
- current_period: "current_period";
1651
- }>>;
1652
- email: z$1.ZodOptional<z$1.ZodString>;
1653
- monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
1654
- user_id: z$1.ZodOptional<z$1.ZodString>;
1655
- }, z$1.core.$strip>>;
1656
- }, z$1.core.$strip>;
1657
- declare const MemberCreditLimitResultSchema: z$1.ZodObject<{
1701
+ declare const V1BulkMemberCreditLimitResultSchema: z$1.ZodObject<{
1658
1702
  approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
1659
1703
  duration: z$1.ZodOptional<z$1.ZodEnum<{
1660
1704
  current_period: "current_period";
@@ -1679,7 +1723,7 @@ declare const V1BulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
1679
1723
  }, z$1.core.$strip>>;
1680
1724
  workspace_id: z$1.ZodString;
1681
1725
  }, z$1.core.$strip>;
1682
- declare const SetMemberCreditLimitsResponseSchema: z$1.ZodObject<{
1726
+ declare const V1BulkSetMemberCreditLimitOutputBodySchema: z$1.ZodObject<{
1683
1727
  failed: z$1.ZodNumber;
1684
1728
  results: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
1685
1729
  approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
@@ -1750,8 +1794,6 @@ declare const V1CreateProjectResponseSchema: z$1.ZodObject<{
1750
1794
  completed: "completed";
1751
1795
  failed: "failed";
1752
1796
  }>>;
1753
- tech_stack: z$1.ZodOptional<z$1.ZodString>;
1754
- updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1755
1797
  url: z$1.ZodOptional<z$1.ZodString>;
1756
1798
  user_id: z$1.ZodOptional<z$1.ZodString>;
1757
1799
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2422,8 +2464,6 @@ declare const ProjectSchema: z$1.ZodObject<{
2422
2464
  completed: "completed";
2423
2465
  failed: "failed";
2424
2466
  }>>;
2425
- tech_stack: z$1.ZodOptional<z$1.ZodString>;
2426
- updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2427
2467
  url: z$1.ZodOptional<z$1.ZodString>;
2428
2468
  user_id: z$1.ZodOptional<z$1.ZodString>;
2429
2469
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2481,7 +2521,7 @@ declare const V1RemixInitInputBodySchema: z$1.ZodObject<{
2481
2521
  declare const V1RemixInitOutputBodySchema: z$1.ZodObject<{
2482
2522
  job_id: z$1.ZodString;
2483
2523
  }, z$1.core.$strip>;
2484
- declare const RemixResultSchema: z$1.ZodObject<{
2524
+ declare const V1RemixProgressResultSchema: z$1.ZodObject<{
2485
2525
  project_id: z$1.ZodString;
2486
2526
  warnings: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2487
2527
  code: z$1.ZodEnum<{
@@ -2493,7 +2533,7 @@ declare const RemixResultSchema: z$1.ZodObject<{
2493
2533
  skipped_integration: z$1.ZodOptional<z$1.ZodString>;
2494
2534
  }, z$1.core.$strip>>>>;
2495
2535
  }, z$1.core.$strip>;
2496
- declare const RemixJobSchema: z$1.ZodObject<{
2536
+ declare const PublicV1RemixJobOutputBodySchema: z$1.ZodObject<{
2497
2537
  error_code: z$1.ZodOptional<z$1.ZodString>;
2498
2538
  error_message: z$1.ZodOptional<z$1.ZodString>;
2499
2539
  result: z$1.ZodOptional<z$1.ZodObject<{
@@ -2511,42 +2551,10 @@ declare const RemixJobSchema: z$1.ZodObject<{
2511
2551
  status: z$1.ZodEnum<{
2512
2552
  completed: "completed";
2513
2553
  unknown: "unknown";
2514
- running: "running";
2515
2554
  error: "error";
2555
+ running: "running";
2516
2556
  preparing: "preparing";
2517
2557
  }>;
2518
- step: z$1.ZodOptional<z$1.ZodObject<{
2519
- failure: z$1.ZodOptional<z$1.ZodObject<{
2520
- code: z$1.ZodOptional<z$1.ZodString>;
2521
- failed_step: z$1.ZodEnum<{
2522
- completed: "completed";
2523
- failed: "failed";
2524
- starting: "starting";
2525
- creating_new_project: "creating_new_project";
2526
- restoring_supabase: "restoring_supabase";
2527
- copying_history: "copying_history";
2528
- preparing_repository: "preparing_repository";
2529
- remixing_integration: "remixing_integration";
2530
- pushing_repository: "pushing_repository";
2531
- finalizing: "finalizing";
2532
- }>;
2533
- message: z$1.ZodString;
2534
- }, z$1.core.$strip>>;
2535
- integration_name: z$1.ZodOptional<z$1.ZodString>;
2536
- status: z$1.ZodOptional<z$1.ZodString>;
2537
- step: z$1.ZodEnum<{
2538
- completed: "completed";
2539
- failed: "failed";
2540
- starting: "starting";
2541
- creating_new_project: "creating_new_project";
2542
- restoring_supabase: "restoring_supabase";
2543
- copying_history: "copying_history";
2544
- preparing_repository: "preparing_repository";
2545
- remixing_integration: "remixing_integration";
2546
- pushing_repository: "pushing_repository";
2547
- finalizing: "finalizing";
2548
- }>;
2549
- }, z$1.core.$strip>>;
2550
2558
  }, z$1.core.$strip>;
2551
2559
  declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
2552
2560
  error_code: z$1.ZodOptional<z$1.ZodString>;
@@ -2600,7 +2608,7 @@ declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
2600
2608
  declare const V1RemoveConnectorOutputBodySchema: z$1.ZodObject<{
2601
2609
  success: z$1.ZodBoolean;
2602
2610
  }, z$1.core.$strip>;
2603
- declare const SecurityFindingSchema: z$1.ZodObject<{
2611
+ declare const V1SecurityFindingSchema: z$1.ZodObject<{
2604
2612
  category: z$1.ZodOptional<z$1.ZodString>;
2605
2613
  created_at: z$1.ZodISODateTime;
2606
2614
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -2625,7 +2633,7 @@ declare const SecurityFindingSchema: z$1.ZodObject<{
2625
2633
  }>;
2626
2634
  updated_at: z$1.ZodISODateTime;
2627
2635
  }, z$1.core.$strip>;
2628
- declare const SecurityScanActorSchema: z$1.ZodObject<{
2636
+ declare const V1SecurityScanActorSchema: z$1.ZodObject<{
2629
2637
  email: z$1.ZodOptional<z$1.ZodString>;
2630
2638
  id: z$1.ZodOptional<z$1.ZodString>;
2631
2639
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -2634,7 +2642,7 @@ declare const SecurityScanActorSchema: z$1.ZodObject<{
2634
2642
  system: "system";
2635
2643
  }>;
2636
2644
  }, z$1.core.$strip>;
2637
- declare const SecurityScanSchema: z$1.ZodObject<{
2645
+ declare const V1SecurityScanSummarySchema: z$1.ZodObject<{
2638
2646
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2639
2647
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2640
2648
  requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
@@ -2646,8 +2654,8 @@ declare const SecurityScanSchema: z$1.ZodObject<{
2646
2654
  running: "running";
2647
2655
  }>;
2648
2656
  trigger_source: z$1.ZodEnum<{
2649
- workflow: "workflow";
2650
2657
  user: "user";
2658
+ workflow: "workflow";
2651
2659
  ui_auto: "ui_auto";
2652
2660
  aikido_import: "aikido_import";
2653
2661
  manage_findings: "manage_findings";
@@ -2667,7 +2675,7 @@ declare const SecurityScanSchema: z$1.ZodObject<{
2667
2675
  }>;
2668
2676
  }, z$1.core.$strip>;
2669
2677
  }, z$1.core.$strip>;
2670
- declare const SecurityScanPageSchema: z$1.ZodObject<{
2678
+ declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
2671
2679
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2672
2680
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2673
2681
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
@@ -2680,8 +2688,8 @@ declare const SecurityScanPageSchema: z$1.ZodObject<{
2680
2688
  running: "running";
2681
2689
  }>;
2682
2690
  trigger_source: z$1.ZodEnum<{
2683
- workflow: "workflow";
2684
2691
  user: "user";
2692
+ workflow: "workflow";
2685
2693
  ui_auto: "ui_auto";
2686
2694
  aikido_import: "aikido_import";
2687
2695
  manage_findings: "manage_findings";
@@ -2706,7 +2714,7 @@ declare const SecurityScanPageSchema: z$1.ZodObject<{
2706
2714
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
2707
2715
  }, z$1.core.$strip>;
2708
2716
  }, z$1.core.$strip>;
2709
- declare const SecurityScannerRunSchema: z$1.ZodObject<{
2717
+ declare const V1SecurityScannerRunSchema: z$1.ZodObject<{
2710
2718
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2711
2719
  error_message: z$1.ZodOptional<z$1.ZodString>;
2712
2720
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
@@ -2719,7 +2727,7 @@ declare const SecurityScannerRunSchema: z$1.ZodObject<{
2719
2727
  skipped: "skipped";
2720
2728
  }>;
2721
2729
  }, z$1.core.$strip>;
2722
- declare const SecurityScanDetailSchema: z$1.ZodObject<{
2730
+ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
2723
2731
  findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2724
2732
  category: z$1.ZodOptional<z$1.ZodString>;
2725
2733
  created_at: z$1.ZodISODateTime;
@@ -2757,8 +2765,8 @@ declare const SecurityScanDetailSchema: z$1.ZodObject<{
2757
2765
  running: "running";
2758
2766
  }>;
2759
2767
  trigger_source: z$1.ZodEnum<{
2760
- workflow: "workflow";
2761
2768
  user: "user";
2769
+ workflow: "workflow";
2762
2770
  ui_auto: "ui_auto";
2763
2771
  aikido_import: "aikido_import";
2764
2772
  manage_findings: "manage_findings";
@@ -2841,7 +2849,7 @@ declare const V1SetWorkspaceKnowledgeInputBodySchema: z$1.ZodObject<{
2841
2849
  declare const V1TriggerSecurityScanInputBodySchema: z$1.ZodObject<{
2842
2850
  project_id: z$1.ZodString;
2843
2851
  }, z$1.core.$strip>;
2844
- declare const TriggerSecurityScanResponseSchema: z$1.ZodObject<{
2852
+ declare const V1TriggerSecurityScanResponseBodySchema: z$1.ZodObject<{
2845
2853
  message: z$1.ZodOptional<z$1.ZodString>;
2846
2854
  scan_id: z$1.ZodString;
2847
2855
  status: z$1.ZodEnum<{
@@ -2971,9 +2979,6 @@ declare const V1UpdateWorkspaceSettingsInputBodySchema: z$1.ZodObject<{
2971
2979
  default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
2972
2980
  workspace_id: z$1.ZodString;
2973
2981
  }, z$1.core.$strip>;
2974
- declare const UpdateWorkspaceSettingsRequestSchema: z$1.ZodObject<{
2975
- default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
2976
- }, z$1.core.$strip>;
2977
2982
  declare const V1UsagePeriodSchema: z$1.ZodObject<{
2978
2983
  end: z$1.ZodString;
2979
2984
  granularity: z$1.ZodOptional<z$1.ZodString>;
@@ -4139,7 +4144,6 @@ declare const WorkspaceAnalyticsSchema: z$1.ZodObject<{
4139
4144
  /** @deprecated Renamed to PiiLabelPageSchema. */
4140
4145
  declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<{
4141
4146
  data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4142
- chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
4143
4147
  chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
4144
4148
  connector_id: import("zod").ZodOptional<import("zod").ZodString>;
4145
4149
  found_at: import("zod").ZodISODateTime;
@@ -4154,7 +4158,6 @@ declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<
4154
4158
  very_likely: "very_likely";
4155
4159
  }>>;
4156
4160
  quote: import("zod").ZodOptional<import("zod").ZodString>;
4157
- scan_id: import("zod").ZodOptional<import("zod").ZodString>;
4158
4161
  sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
4159
4162
  low: "low";
4160
4163
  mid: "mid";
@@ -4208,8 +4211,6 @@ declare const CursorListResponsePublicV1ProjectListItemSchema: import("zod").Zod
4208
4211
  completed: "completed";
4209
4212
  failed: "failed";
4210
4213
  }>>;
4211
- tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
4212
- updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4213
4214
  url: import("zod").ZodOptional<import("zod").ZodString>;
4214
4215
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
4215
4216
  visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
@@ -4250,46 +4251,6 @@ declare const CursorListResponseV1ProjectCollaboratorSchema: import("zod").ZodOb
4250
4251
  next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4251
4252
  }, import("zod/v4/core").$strip>;
4252
4253
  }, import("zod/v4/core").$strip>;
4253
- /** @deprecated Renamed to SecurityScanPageSchema. */
4254
- declare const CursorListResponseV1SecurityScanSummarySchema: import("zod").ZodObject<{
4255
- data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4256
- commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
4257
- finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4258
- requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
4259
- scan_id: import("zod").ZodString;
4260
- started_at: import("zod").ZodISODateTime;
4261
- status: import("zod").ZodEnum<{
4262
- completed: "completed";
4263
- failed: "failed";
4264
- running: "running";
4265
- }>;
4266
- trigger_source: import("zod").ZodEnum<{
4267
- workflow: "workflow";
4268
- user: "user";
4269
- ui_auto: "ui_auto";
4270
- aikido_import: "aikido_import";
4271
- manage_findings: "manage_findings";
4272
- app_mcp_deep_auto: "app_mcp_deep_auto";
4273
- hvt_scheduled: "hvt_scheduled";
4274
- workspace_scheduled: "workspace_scheduled";
4275
- enterprise_batch: "enterprise_batch";
4276
- gitsync_pull: "gitsync_pull";
4277
- }>;
4278
- triggered_by: import("zod").ZodObject<{
4279
- email: import("zod").ZodOptional<import("zod").ZodString>;
4280
- id: import("zod").ZodOptional<import("zod").ZodString>;
4281
- name: import("zod").ZodOptional<import("zod").ZodString>;
4282
- type: import("zod").ZodEnum<{
4283
- user: "user";
4284
- system: "system";
4285
- }>;
4286
- }, import("zod/v4/core").$strip>;
4287
- }, import("zod/v4/core").$strip>>>;
4288
- pagination: import("zod").ZodObject<{
4289
- has_more: import("zod").ZodBoolean;
4290
- next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4291
- }, import("zod/v4/core").$strip>;
4292
- }, import("zod/v4/core").$strip>;
4293
4254
  /** @deprecated Renamed to WorkspaceGroupPageSchema. */
4294
4255
  declare const CursorListResponseV1WorkspaceGroupSchema: import("zod").ZodObject<{
4295
4256
  data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -4457,7 +4418,6 @@ declare const PublicV1PatchProjectBodySchema: import("zod").ZodObject<{
4457
4418
  }, import("zod/v4/core").$strip>;
4458
4419
  /** @deprecated Renamed to PiiLabelSchema. */
4459
4420
  declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
4460
- chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
4461
4421
  chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
4462
4422
  connector_id: import("zod").ZodOptional<import("zod").ZodString>;
4463
4423
  found_at: import("zod").ZodISODateTime;
@@ -4472,7 +4432,6 @@ declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
4472
4432
  very_likely: "very_likely";
4473
4433
  }>>;
4474
4434
  quote: import("zod").ZodOptional<import("zod").ZodString>;
4475
- scan_id: import("zod").ZodOptional<import("zod").ZodString>;
4476
4435
  sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
4477
4436
  low: "low";
4478
4437
  mid: "mid";
@@ -4602,8 +4561,6 @@ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
4602
4561
  completed: "completed";
4603
4562
  failed: "failed";
4604
4563
  }>>;
4605
- tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
4606
- updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4607
4564
  url: import("zod").ZodOptional<import("zod").ZodString>;
4608
4565
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
4609
4566
  visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
@@ -4618,8 +4575,8 @@ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
4618
4575
  declare const PublicV1PublishAudienceTargetSchema: import("zod").ZodObject<{
4619
4576
  id: import("zod").ZodString;
4620
4577
  type: import("zod").ZodEnum<{
4621
- user: "user";
4622
4578
  group: "group";
4579
+ user: "user";
4623
4580
  }>;
4624
4581
  }, import("zod/v4/core").$strip>;
4625
4582
  /** @deprecated Renamed to PublishProjectRequestSchema. */
@@ -4627,8 +4584,8 @@ declare const PublicV1PublishProjectInputBodySchema: import("zod").ZodObject<{
4627
4584
  audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4628
4585
  id: import("zod").ZodString;
4629
4586
  type: import("zod").ZodEnum<{
4630
- user: "user";
4631
4587
  group: "group";
4588
+ user: "user";
4632
4589
  }>;
4633
4590
  }, import("zod/v4/core").$strip>>>>;
4634
4591
  name: import("zod").ZodOptional<import("zod").ZodString>;
@@ -4669,13 +4626,13 @@ declare const PublicV1PublishStatusResponseSchema: import("zod").ZodObject<{
4669
4626
  status: import("zod").ZodEnum<{
4670
4627
  completed: "completed";
4671
4628
  unknown: "unknown";
4672
- running: "running";
4673
4629
  error: "error";
4630
+ running: "running";
4674
4631
  }>;
4675
4632
  url: import("zod").ZodOptional<import("zod").ZodString>;
4676
4633
  }, import("zod/v4/core").$strip>;
4677
- /** @deprecated Renamed to RemixJobSchema. */
4678
- declare const PublicV1RemixJobOutputBodySchema: import("zod").ZodObject<{
4634
+ /** @deprecated Retained for legacy endpoints. */
4635
+ declare const RemixJobSchema: import("zod").ZodObject<{
4679
4636
  error_code: import("zod").ZodOptional<import("zod").ZodString>;
4680
4637
  error_message: import("zod").ZodOptional<import("zod").ZodString>;
4681
4638
  result: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -4693,50 +4650,18 @@ declare const PublicV1RemixJobOutputBodySchema: import("zod").ZodObject<{
4693
4650
  status: import("zod").ZodEnum<{
4694
4651
  completed: "completed";
4695
4652
  unknown: "unknown";
4696
- running: "running";
4697
4653
  error: "error";
4654
+ running: "running";
4698
4655
  preparing: "preparing";
4699
4656
  }>;
4700
- step: import("zod").ZodOptional<import("zod").ZodObject<{
4701
- failure: import("zod").ZodOptional<import("zod").ZodObject<{
4702
- code: import("zod").ZodOptional<import("zod").ZodString>;
4703
- failed_step: import("zod").ZodEnum<{
4704
- completed: "completed";
4705
- failed: "failed";
4706
- starting: "starting";
4707
- creating_new_project: "creating_new_project";
4708
- restoring_supabase: "restoring_supabase";
4709
- copying_history: "copying_history";
4710
- preparing_repository: "preparing_repository";
4711
- remixing_integration: "remixing_integration";
4712
- pushing_repository: "pushing_repository";
4713
- finalizing: "finalizing";
4714
- }>;
4715
- message: import("zod").ZodString;
4716
- }, import("zod/v4/core").$strip>>;
4717
- integration_name: import("zod").ZodOptional<import("zod").ZodString>;
4718
- status: import("zod").ZodOptional<import("zod").ZodString>;
4719
- step: import("zod").ZodEnum<{
4720
- completed: "completed";
4721
- failed: "failed";
4722
- starting: "starting";
4723
- creating_new_project: "creating_new_project";
4724
- restoring_supabase: "restoring_supabase";
4725
- copying_history: "copying_history";
4726
- preparing_repository: "preparing_repository";
4727
- remixing_integration: "remixing_integration";
4728
- pushing_repository: "pushing_repository";
4729
- finalizing: "finalizing";
4730
- }>;
4731
- }, import("zod/v4/core").$strip>>;
4732
4657
  }, import("zod/v4/core").$strip>;
4733
4658
  /** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
4734
4659
  declare const PublicV1UpdatePublishSettingsInputBodySchema: import("zod").ZodObject<{
4735
4660
  audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4736
4661
  id: import("zod").ZodString;
4737
4662
  type: import("zod").ZodEnum<{
4738
- user: "user";
4739
4663
  group: "group";
4664
+ user: "user";
4740
4665
  }>;
4741
4666
  }, import("zod/v4/core").$strip>>>>;
4742
4667
  is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
@@ -4811,39 +4736,6 @@ declare const PublicV1WorkspaceWithMembershipSchema: import("zod").ZodObject<{
4811
4736
  }>;
4812
4737
  updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4813
4738
  }, import("zod/v4/core").$strip>;
4814
- /** @deprecated Renamed to SetMemberCreditLimitsRequestSchema. */
4815
- declare const V1BillingBulkSetMemberCreditLimitInputBodySchema: import("zod").ZodObject<{
4816
- members: import("zod").ZodArray<import("zod").ZodObject<{
4817
- duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4818
- permanent: "permanent";
4819
- current_period: "current_period";
4820
- }>>;
4821
- email: import("zod").ZodOptional<import("zod").ZodString>;
4822
- monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
4823
- user_id: import("zod").ZodOptional<import("zod").ZodString>;
4824
- }, import("zod/v4/core").$strip>>;
4825
- }, import("zod/v4/core").$strip>;
4826
- /** @deprecated Renamed to MemberCreditLimitSchema. */
4827
- declare const V1BillingCreditLimitRowSchema: import("zod").ZodObject<{
4828
- monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4829
- temporary_limit_expires_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4830
- temporary_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4831
- user_id: import("zod").ZodString;
4832
- }, import("zod/v4/core").$strip>;
4833
- /** @deprecated Renamed to CreditLimitPageSchema. */
4834
- declare const V1BillingCreditLimitsBodySchema: import("zod").ZodObject<{
4835
- data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4836
- monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4837
- temporary_limit_expires_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4838
- temporary_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4839
- user_id: import("zod").ZodString;
4840
- }, import("zod/v4/core").$strip>>>;
4841
- default_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4842
- pagination: import("zod").ZodObject<{
4843
- has_more: import("zod").ZodBoolean;
4844
- next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4845
- }, import("zod/v4/core").$strip>;
4846
- }, import("zod/v4/core").$strip>;
4847
4739
  /** @deprecated Renamed to BillingPeriodSchema. */
4848
4740
  declare const V1BillingPeriodSchema: import("zod").ZodObject<{
4849
4741
  end: import("zod").ZodISODateTime;
@@ -4958,8 +4850,8 @@ declare const V1BillingUsageRowSchema: import("zod").ZodObject<{
4958
4850
  total: import("zod").ZodNumber;
4959
4851
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
4960
4852
  }, import("zod/v4/core").$strip>;
4961
- /** @deprecated Renamed to MemberCreditLimitUpdateSchema. */
4962
- declare const V1BulkMemberCreditLimitItemSchema: import("zod").ZodObject<{
4853
+ /** @deprecated Retained for legacy endpoints. */
4854
+ declare const MemberCreditLimitUpdateSchema: import("zod").ZodObject<{
4963
4855
  duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4964
4856
  permanent: "permanent";
4965
4857
  current_period: "current_period";
@@ -4968,8 +4860,8 @@ declare const V1BulkMemberCreditLimitItemSchema: import("zod").ZodObject<{
4968
4860
  monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
4969
4861
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
4970
4862
  }, import("zod/v4/core").$strip>;
4971
- /** @deprecated Renamed to MemberCreditLimitResultSchema. */
4972
- declare const V1BulkMemberCreditLimitResultSchema: import("zod").ZodObject<{
4863
+ /** @deprecated Retained for legacy endpoints. */
4864
+ declare const MemberCreditLimitResultSchema: import("zod").ZodObject<{
4973
4865
  approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4974
4866
  duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4975
4867
  current_period: "current_period";
@@ -4982,8 +4874,8 @@ declare const V1BulkMemberCreditLimitResultSchema: import("zod").ZodObject<{
4982
4874
  }>;
4983
4875
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
4984
4876
  }, import("zod/v4/core").$strip>;
4985
- /** @deprecated Renamed to SetMemberCreditLimitsResponseSchema. */
4986
- declare const V1BulkSetMemberCreditLimitOutputBodySchema: import("zod").ZodObject<{
4877
+ /** @deprecated Retained for legacy endpoints. */
4878
+ declare const SetMemberCreditLimitsResponseSchema: import("zod").ZodObject<{
4987
4879
  failed: import("zod").ZodNumber;
4988
4880
  results: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4989
4881
  approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
@@ -5033,80 +4925,6 @@ declare const V1CreditHistoryEntrySchema: import("zod").ZodObject<{
5033
4925
  label: import("zod").ZodString;
5034
4926
  occurred_at: import("zod").ZodISODateTime;
5035
4927
  }, import("zod/v4/core").$strip>;
5036
- /** @deprecated Renamed to SecurityScanDetailSchema. */
5037
- declare const V1GetSecurityScanOutputBodySchema: import("zod").ZodObject<{
5038
- findings: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5039
- category: import("zod").ZodOptional<import("zod").ZodString>;
5040
- created_at: import("zod").ZodISODateTime;
5041
- description: import("zod").ZodOptional<import("zod").ZodString>;
5042
- details: import("zod").ZodOptional<import("zod").ZodString>;
5043
- finding_id: import("zod").ZodString;
5044
- first_seen_scan_id: import("zod").ZodOptional<import("zod").ZodString>;
5045
- level: import("zod").ZodEnum<{
5046
- error: "error";
5047
- warn: "warn";
5048
- info: "info";
5049
- }>;
5050
- link: import("zod").ZodOptional<import("zod").ZodString>;
5051
- metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
5052
- name: import("zod").ZodString;
5053
- recurrence: import("zod").ZodNumber;
5054
- remediation_difficulty: import("zod").ZodOptional<import("zod").ZodString>;
5055
- scanner_name: import("zod").ZodString;
5056
- status: import("zod").ZodEnum<{
5057
- open: "open";
5058
- ignored: "ignored";
5059
- fixed: "fixed";
5060
- }>;
5061
- updated_at: import("zod").ZodISODateTime;
5062
- }, import("zod/v4/core").$strip>>>;
5063
- scan: import("zod").ZodObject<{
5064
- commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5065
- finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5066
- requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
5067
- scan_id: import("zod").ZodString;
5068
- started_at: import("zod").ZodISODateTime;
5069
- status: import("zod").ZodEnum<{
5070
- completed: "completed";
5071
- failed: "failed";
5072
- running: "running";
5073
- }>;
5074
- trigger_source: import("zod").ZodEnum<{
5075
- workflow: "workflow";
5076
- user: "user";
5077
- ui_auto: "ui_auto";
5078
- aikido_import: "aikido_import";
5079
- manage_findings: "manage_findings";
5080
- app_mcp_deep_auto: "app_mcp_deep_auto";
5081
- hvt_scheduled: "hvt_scheduled";
5082
- workspace_scheduled: "workspace_scheduled";
5083
- enterprise_batch: "enterprise_batch";
5084
- gitsync_pull: "gitsync_pull";
5085
- }>;
5086
- triggered_by: import("zod").ZodObject<{
5087
- email: import("zod").ZodOptional<import("zod").ZodString>;
5088
- id: import("zod").ZodOptional<import("zod").ZodString>;
5089
- name: import("zod").ZodOptional<import("zod").ZodString>;
5090
- type: import("zod").ZodEnum<{
5091
- user: "user";
5092
- system: "system";
5093
- }>;
5094
- }, import("zod/v4/core").$strip>;
5095
- }, import("zod/v4/core").$strip>;
5096
- scanner_runs: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5097
- commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5098
- error_message: import("zod").ZodOptional<import("zod").ZodString>;
5099
- finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5100
- scanner_name: import("zod").ZodString;
5101
- scanner_version: import("zod").ZodOptional<import("zod").ZodString>;
5102
- started_at: import("zod").ZodISODateTime;
5103
- status: import("zod").ZodEnum<{
5104
- failed: "failed";
5105
- succeeded: "succeeded";
5106
- skipped: "skipped";
5107
- }>;
5108
- }, import("zod/v4/core").$strip>>>;
5109
- }, import("zod/v4/core").$strip>;
5110
4928
  /** @deprecated Renamed to WorkspacePageSchema. */
5111
4929
  declare const V1ListWorkspacesBodySchema: import("zod").ZodObject<{
5112
4930
  data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -5188,8 +5006,6 @@ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
5188
5006
  completed: "completed";
5189
5007
  failed: "failed";
5190
5008
  }>>;
5191
- tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
5192
- updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5193
5009
  url: import("zod").ZodOptional<import("zod").ZodString>;
5194
5010
  user_id: import("zod").ZodOptional<import("zod").ZodString>;
5195
5011
  visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
@@ -5200,8 +5016,8 @@ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
5200
5016
  }>>;
5201
5017
  workspace_id: import("zod").ZodString;
5202
5018
  }, import("zod/v4/core").$strip>;
5203
- /** @deprecated Renamed to RemixResultSchema. */
5204
- declare const V1RemixProgressResultSchema: import("zod").ZodObject<{
5019
+ /** @deprecated Retained for legacy endpoints. */
5020
+ declare const RemixResultSchema: import("zod").ZodObject<{
5205
5021
  project_id: import("zod").ZodString;
5206
5022
  warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5207
5023
  code: import("zod").ZodEnum<{
@@ -5213,34 +5029,8 @@ declare const V1RemixProgressResultSchema: import("zod").ZodObject<{
5213
5029
  skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
5214
5030
  }, import("zod/v4/core").$strip>>>>;
5215
5031
  }, import("zod/v4/core").$strip>;
5216
- /** @deprecated Renamed to SecurityFindingSchema. */
5217
- declare const V1SecurityFindingSchema: import("zod").ZodObject<{
5218
- category: import("zod").ZodOptional<import("zod").ZodString>;
5219
- created_at: import("zod").ZodISODateTime;
5220
- description: import("zod").ZodOptional<import("zod").ZodString>;
5221
- details: import("zod").ZodOptional<import("zod").ZodString>;
5222
- finding_id: import("zod").ZodString;
5223
- first_seen_scan_id: import("zod").ZodOptional<import("zod").ZodString>;
5224
- level: import("zod").ZodEnum<{
5225
- error: "error";
5226
- warn: "warn";
5227
- info: "info";
5228
- }>;
5229
- link: import("zod").ZodOptional<import("zod").ZodString>;
5230
- metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
5231
- name: import("zod").ZodString;
5232
- recurrence: import("zod").ZodNumber;
5233
- remediation_difficulty: import("zod").ZodOptional<import("zod").ZodString>;
5234
- scanner_name: import("zod").ZodString;
5235
- status: import("zod").ZodEnum<{
5236
- open: "open";
5237
- ignored: "ignored";
5238
- fixed: "fixed";
5239
- }>;
5240
- updated_at: import("zod").ZodISODateTime;
5241
- }, import("zod/v4/core").$strip>;
5242
- /** @deprecated Renamed to SecurityScanActorSchema. */
5243
- declare const V1SecurityScanActorSchema: import("zod").ZodObject<{
5032
+ /** @deprecated Retained for legacy endpoints. */
5033
+ declare const SecurityScanActorSchema: import("zod").ZodObject<{
5244
5034
  email: import("zod").ZodOptional<import("zod").ZodString>;
5245
5035
  id: import("zod").ZodOptional<import("zod").ZodString>;
5246
5036
  name: import("zod").ZodOptional<import("zod").ZodString>;
@@ -5249,42 +5039,8 @@ declare const V1SecurityScanActorSchema: import("zod").ZodObject<{
5249
5039
  system: "system";
5250
5040
  }>;
5251
5041
  }, import("zod/v4/core").$strip>;
5252
- /** @deprecated Renamed to SecurityScanSchema. */
5253
- declare const V1SecurityScanSummarySchema: import("zod").ZodObject<{
5254
- commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5255
- finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5256
- requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
5257
- scan_id: import("zod").ZodString;
5258
- started_at: import("zod").ZodISODateTime;
5259
- status: import("zod").ZodEnum<{
5260
- completed: "completed";
5261
- failed: "failed";
5262
- running: "running";
5263
- }>;
5264
- trigger_source: import("zod").ZodEnum<{
5265
- workflow: "workflow";
5266
- user: "user";
5267
- ui_auto: "ui_auto";
5268
- aikido_import: "aikido_import";
5269
- manage_findings: "manage_findings";
5270
- app_mcp_deep_auto: "app_mcp_deep_auto";
5271
- hvt_scheduled: "hvt_scheduled";
5272
- workspace_scheduled: "workspace_scheduled";
5273
- enterprise_batch: "enterprise_batch";
5274
- gitsync_pull: "gitsync_pull";
5275
- }>;
5276
- triggered_by: import("zod").ZodObject<{
5277
- email: import("zod").ZodOptional<import("zod").ZodString>;
5278
- id: import("zod").ZodOptional<import("zod").ZodString>;
5279
- name: import("zod").ZodOptional<import("zod").ZodString>;
5280
- type: import("zod").ZodEnum<{
5281
- user: "user";
5282
- system: "system";
5283
- }>;
5284
- }, import("zod/v4/core").$strip>;
5285
- }, import("zod/v4/core").$strip>;
5286
- /** @deprecated Renamed to SecurityScannerRunSchema. */
5287
- declare const V1SecurityScannerRunSchema: import("zod").ZodObject<{
5042
+ /** @deprecated Retained for legacy endpoints. */
5043
+ declare const SecurityScannerRunSchema: import("zod").ZodObject<{
5288
5044
  commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5289
5045
  error_message: import("zod").ZodOptional<import("zod").ZodString>;
5290
5046
  finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
@@ -5297,8 +5053,8 @@ declare const V1SecurityScannerRunSchema: import("zod").ZodObject<{
5297
5053
  skipped: "skipped";
5298
5054
  }>;
5299
5055
  }, import("zod/v4/core").$strip>;
5300
- /** @deprecated Renamed to TriggerSecurityScanResponseSchema. */
5301
- declare const V1TriggerSecurityScanResponseBodySchema: import("zod").ZodObject<{
5056
+ /** @deprecated Retained for legacy endpoints. */
5057
+ declare const TriggerSecurityScanResponseSchema: import("zod").ZodObject<{
5302
5058
  message: import("zod").ZodOptional<import("zod").ZodString>;
5303
5059
  scan_id: import("zod").ZodString;
5304
5060
  status: import("zod").ZodEnum<{
@@ -5307,10 +5063,6 @@ declare const V1TriggerSecurityScanResponseBodySchema: import("zod").ZodObject<{
5307
5063
  started: "started";
5308
5064
  }>;
5309
5065
  }, import("zod/v4/core").$strip>;
5310
- /** @deprecated Renamed to UpdateWorkspaceSettingsRequestSchema. */
5311
- declare const V1UpdateWorkspaceSettingsNestedInputBodySchema: import("zod").ZodObject<{
5312
- default_monthly_member_credit_limit: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
5313
- }, import("zod/v4/core").$strip>;
5314
5066
  /** @deprecated Renamed to CreditHistoryPageSchema. */
5315
5067
  declare const V1WorkspaceCreditHistoryBodySchema: import("zod").ZodObject<{
5316
5068
  data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
@@ -6089,8 +5841,6 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
6089
5841
  completed: "completed";
6090
5842
  failed: "failed";
6091
5843
  }>>;
6092
- tech_stack: z.ZodOptional<z.ZodString>;
6093
- updated_at: z.ZodOptional<z.ZodISODateTime>;
6094
5844
  url: z.ZodOptional<z.ZodString>;
6095
5845
  user_id: z.ZodOptional<z.ZodString>;
6096
5846
  visibility: z.ZodOptional<z.ZodEnum<{
@@ -6154,5 +5904,5 @@ declare const V1DatabaseQueryOutputBodyWritableSchema: z.ZodObject<{
6154
5904
  rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6155
5905
  }, z.core.$strip>;
6156
5906
  //#endregion
6157
- export { AddProjectsToFolderResultSchema, AnalyticsBreakdownGroupSchema, AnalyticsBreakdownPointSchema, AnalyticsBreakdownSchema, AnalyticsTrendSchema, AppUserConnectorApiSchema, BillingPeriodSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, ConnectorUsageSchema, CreateEmbedUrlRequestSchema, CreateEmbedUrlResponseSchema, CreatorSchema, CreditBalanceSchema, CreditGrantTypeBalanceSchema, CreditHistoryEntrySchema, CreditHistoryPageSchema, CreditLimitPageSchema, CreditUsageEntrySchema, CreditUsagePageSchema, CreditUsagePeriodSchema, CurrentUserSchema, CurrentUserWorkspaceSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1PiiLabelSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceGroupSchema, CursorListResponseV1WorkspaceMemberSchema, DatabaseUsageSchema, DeploymentSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, ExpiringCreditGrantSchema, GatewayModelUsageSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GetWorkspaceResponseSchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, MemberCreditLimitResultSchema, MemberCreditLimitSchema, MemberCreditLimitUpdateSchema, PaginationSchema, PiiLabelPageSchema, PiiLabelSchema, ProjectAnalyticsResponseSchema, ProjectAnalyticsSchema, ProjectCollaboratorPageSchema, ProjectCollaboratorSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectSchema, ProjectSummaryPageSchema, ProjectSummarySchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1PiiLabelSchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1RemixJobOutputBodySchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, PublishAudienceTargetSchema, PublishProjectRequestSchema, PublishProjectResponseSchema, PublishSettingsSchema, RemixJobFailureSchema, RemixJobSchema, RemixJobStepInfoSchema, RemixResultSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SecurityFindingSchema, SecurityScanActorSchema, SecurityScanDetailSchema, SecurityScanPageSchema, SecurityScanSchema, SecurityScannerRunSchema, SetMemberCreditLimitsRequestSchema, SetMemberCreditLimitsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, TriggerSecurityScanResponseSchema, UpdateProjectRequestSchema, UpdatePublishSettingsRequestSchema, UpdateWorkspaceSettingsRequestSchema, UserCreatorSchema, V1AddConnectorInputBodySchema, V1AiResponseSummarySchema, V1AvailableConnectorEntrySchema, V1AwaitingInputSummarySchema, V1BillingBulkSetMemberCreditLimitInputBodySchema, V1BillingCreditLimitRowSchema, V1BillingCreditLimitsBodySchema, V1BillingPeriodSchema, V1BillingUsageBodySchema, V1BillingUsagePeriodSchema, V1BillingUsageRowSchema, V1BulkMemberCreditLimitItemSchema, V1BulkMemberCreditLimitResultSchema, V1BulkSetMemberCreditLimitInputBodySchema, V1BulkSetMemberCreditLimitOutputBodySchema, V1ConnectionItemSchema, V1ConnectorResponseSchema, V1CreateEmbedUrlInputBodySchema, V1CreateEmbedUrlOutputBodySchema, V1CreateProjectInputBodySchema, V1CreateProjectResponseSchema, V1CreateVariantInputBodySchema, V1CreateVariantOutputBodySchema, V1CreditHistoryEntrySchema, V1DatabaseQueryOutputBodySchema, V1DatabaseQueryOutputBodyWritableSchema, V1DeleteWorkspaceSkillOutputBodySchema, V1DeployProjectInputBodySchema, V1DeployProjectOutputBodySchema, V1DiffEntrySchema, V1DiffResponseSchema, V1EditSummarySchema, V1EnableDatabaseOutputBodySchema, V1EphemeralFileUploadUrlInputBodySchema, V1FileUploadUrlOutputBodySchema, V1GetDatabaseStatusOutputBodySchema, V1GetEditsOutputBodySchema, V1GetSecurityScanOutputBodySchema, V1GetWorkspaceSkillOutputBodySchema, V1KnowledgeResponseSchema, V1ListAppUserConnectorsResponseSchema, V1ListAvailableConnectorsOutputBodySchema, V1ListConnectionsResponseSchema, V1ListConnectorsOutputBodySchema, V1ListMcpConnectorsResponseSchema, V1ListMessagesOutputBodySchema, V1ListProjectSkillsOutputBodySchema, V1ListSeamlessConnectorsResponseSchema, V1ListStandardConnectorsResponseSchema, V1ListWorkspaceSkillsOutputBodySchema, V1ListWorkspacesBodySchema, V1MessageErrorSchema, V1MessageListItemSchema, V1MessageResponseSchema, V1MoveProjectsToFolderInputBodySchema, V1ProjectCollaboratorSchema, V1ProjectFileUploadUrlInputBodySchema, V1ProjectGitFilesResponseSchema, V1ProjectResponseSchema, V1ProjectSkillDtoSchema, V1RemixInitInputBodySchema, V1RemixInitOutputBodySchema, V1RemixProgressOutputBodySchema, V1RemixProgressResultSchema, V1RemoveConnectorOutputBodySchema, V1SecurityFindingSchema, V1SecurityScanActorSchema, V1SecurityScanSummarySchema, V1SecurityScannerRunSchema, V1SelectedLibrarySchema, V1SendMessageInputBodySchema, V1SendMessageOutputBodySchema, V1SetFolderVisibilityInputBodySchema, V1SetFolderVisibilityOutputBodySchema, V1SetProjectKnowledgeInputBodySchema, V1SetProjectSkillEnabledInputBodySchema, V1SetProjectSkillEnabledOutputBodySchema, V1SetProjectVisibilityInputBodySchema, V1SetProjectVisibilityOutputBodySchema, V1SetWorkspaceKnowledgeInputBodySchema, V1TriggerSecurityScanInputBodySchema, V1TriggerSecurityScanResponseBodySchema, V1UnscopedFileSchema, V1UpdateMemberCreditLimitInputBodySchema, V1UpdateWorkspaceSettingsInputBodySchema, V1UpdateWorkspaceSettingsNestedInputBodySchema, V1UsagePeriodSchema, V1WorkspaceAuditLogEntrySchema, V1WorkspaceAuditLogsBodySchema, V1WorkspaceCreditHistoryBodySchema, V1WorkspaceCreditsBodySchema, V1WorkspaceCreditsExpiringGrantSchema, V1WorkspaceCreditsGrantTypeBalanceSchema, V1WorkspaceGroupSchema, V1WorkspaceInsightsActivityFreshnessSchema, V1WorkspaceInsightsBodySchema, V1WorkspaceInsightsEdgeFunctionSchema, V1WorkspaceInsightsFindingSchema, V1WorkspaceInsightsOwnerSchema, V1WorkspaceInsightsProjectSchema, V1WorkspaceInsightsProjectsBodySchema, V1WorkspaceInsightsReasonSchema, V1WorkspaceInsightsReasonValuesSchema, V1WorkspaceInsightsReviewPrioritySchema, V1WorkspaceInsightsSignalsSchema, V1WorkspaceInsightsStatSchema, V1WorkspaceInsightsSummarySchema, V1WorkspaceMemberGroupSchema, V1WorkspaceMemberSchema, V1WorkspaceSettingsBodySchema, V1WorkspaceSkillDtoSchema, V1WorkspaceUsageBreakdownBodySchema, V1WorkspaceUsageBreakdownEntrySchema, V1WorkspaceUsageConnectorBreakdownSchema, V1WorkspaceUsageDatabaseBreakdownSchema, V1WorkspaceUsageGatewayModelSchema, V1WorkspaceUsageMeBodySchema, V1WorkspaceUsageProjectRowSchema, V1WorkspaceUsageProjectsBodySchema, V1WorkspaceUsageTimeseriesBodySchema, V1WorkspaceUsageTimeseriesBucketSchema, V1WriteWorkspaceSkillInputBodySchema, V1WriteWorkspaceSkillOutputBodySchema, VisibilityChangeInfoSchema, WorkspaceAnalyticsResponseSchema, WorkspaceAnalyticsSchema, WorkspaceGroupPageSchema, WorkspaceGroupSchema, WorkspaceInsightsActivityFreshnessSchema, WorkspaceInsightsEdgeFunctionSchema, WorkspaceInsightsFindingSchema, WorkspaceInsightsOwnerSchema, WorkspaceInsightsProjectPageSchema, WorkspaceInsightsProjectSchema, WorkspaceInsightsReasonSchema, WorkspaceInsightsReasonValuesSchema, WorkspaceInsightsReviewPrioritySchema, WorkspaceInsightsSchema, WorkspaceInsightsSignalsSchema, WorkspaceInsightsStatSchema, WorkspaceInsightsSummarySchema, WorkspaceMemberGroupSchema, WorkspaceMemberPageSchema, WorkspaceMemberSchema, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspacePageSchema, WorkspaceSchema, WorkspaceSettingsSchema, WorkspaceWithMembershipSchema };
5907
+ export { AddProjectsToFolderResultSchema, AnalyticsBreakdownGroupSchema, AnalyticsBreakdownPointSchema, AnalyticsBreakdownSchema, AnalyticsTrendSchema, AppUserConnectorApiSchema, BillingPeriodSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, ConnectorUsageSchema, CreateEmbedUrlRequestSchema, CreateEmbedUrlResponseSchema, CreatorSchema, CreditBalanceSchema, CreditGrantTypeBalanceSchema, CreditHistoryEntrySchema, CreditHistoryPageSchema, CreditUsageEntrySchema, CreditUsagePageSchema, CreditUsagePeriodSchema, CurrentUserSchema, CurrentUserWorkspaceSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1PiiLabelSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceGroupSchema, CursorListResponseV1WorkspaceMemberSchema, DatabaseUsageSchema, DeploymentSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, ExpiringCreditGrantSchema, GatewayModelUsageSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GetWorkspaceResponseSchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, MemberCreditLimitResultSchema, MemberCreditLimitUpdateSchema, PaginationSchema, PiiLabelPageSchema, PiiLabelSchema, ProjectAnalyticsResponseSchema, ProjectAnalyticsSchema, ProjectCollaboratorPageSchema, ProjectCollaboratorSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectSchema, ProjectSummaryPageSchema, ProjectSummarySchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1PiiLabelSchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1RemixJobOutputBodySchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, PublishAudienceTargetSchema, PublishProjectRequestSchema, PublishProjectResponseSchema, PublishSettingsSchema, RemixJobFailureSchema, RemixJobSchema, RemixJobStepInfoSchema, RemixResultSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SecurityFindingSchema, SecurityScanActorSchema, SecurityScanDetailSchema, SecurityScanPageSchema, SecurityScanSchema, SecurityScannerRunSchema, SetMemberCreditLimitsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, TriggerSecurityScanResponseSchema, UpdateProjectRequestSchema, UpdatePublishSettingsRequestSchema, UserCreatorSchema, V1AddConnectorInputBodySchema, V1AiResponseSummarySchema, V1AvailableConnectorEntrySchema, V1AwaitingInputSummarySchema, V1BillingPeriodSchema, V1BillingUsageBodySchema, V1BillingUsagePeriodSchema, V1BillingUsageRowSchema, V1BulkMemberCreditLimitItemSchema, V1BulkMemberCreditLimitResultSchema, V1BulkSetMemberCreditLimitInputBodySchema, V1BulkSetMemberCreditLimitOutputBodySchema, V1ConnectionItemSchema, V1ConnectorResponseSchema, V1CreateEmbedUrlInputBodySchema, V1CreateEmbedUrlOutputBodySchema, V1CreateProjectInputBodySchema, V1CreateProjectResponseSchema, V1CreateVariantInputBodySchema, V1CreateVariantOutputBodySchema, V1CreditHistoryEntrySchema, V1DatabaseQueryOutputBodySchema, V1DatabaseQueryOutputBodyWritableSchema, V1DeleteWorkspaceSkillOutputBodySchema, V1DeployProjectInputBodySchema, V1DeployProjectOutputBodySchema, V1DiffEntrySchema, V1DiffResponseSchema, V1EditSummarySchema, V1EnableDatabaseOutputBodySchema, V1EphemeralFileUploadUrlInputBodySchema, V1FileUploadUrlOutputBodySchema, V1GetDatabaseStatusOutputBodySchema, V1GetEditsOutputBodySchema, V1GetSecurityScanOutputBodySchema, V1GetWorkspaceSkillOutputBodySchema, V1KnowledgeResponseSchema, V1ListAppUserConnectorsResponseSchema, V1ListAvailableConnectorsOutputBodySchema, V1ListConnectionsResponseSchema, V1ListConnectorsOutputBodySchema, V1ListMcpConnectorsResponseSchema, V1ListMessagesOutputBodySchema, V1ListProjectSkillsOutputBodySchema, V1ListSeamlessConnectorsResponseSchema, V1ListStandardConnectorsResponseSchema, V1ListWorkspaceSkillsOutputBodySchema, V1ListWorkspacesBodySchema, V1MessageErrorSchema, V1MessageListItemSchema, V1MessageResponseSchema, V1MoveProjectsToFolderInputBodySchema, V1ProjectCollaboratorSchema, V1ProjectFileUploadUrlInputBodySchema, V1ProjectGitFilesResponseSchema, V1ProjectResponseSchema, V1ProjectSkillDtoSchema, V1RemixInitInputBodySchema, V1RemixInitOutputBodySchema, V1RemixProgressOutputBodySchema, V1RemixProgressResultSchema, V1RemoveConnectorOutputBodySchema, V1SecurityFindingSchema, V1SecurityScanActorSchema, V1SecurityScanSummarySchema, V1SecurityScannerRunSchema, V1SelectedLibrarySchema, V1SendMessageInputBodySchema, V1SendMessageOutputBodySchema, V1SetFolderVisibilityInputBodySchema, V1SetFolderVisibilityOutputBodySchema, V1SetProjectKnowledgeInputBodySchema, V1SetProjectSkillEnabledInputBodySchema, V1SetProjectSkillEnabledOutputBodySchema, V1SetProjectVisibilityInputBodySchema, V1SetProjectVisibilityOutputBodySchema, V1SetWorkspaceKnowledgeInputBodySchema, V1TriggerSecurityScanInputBodySchema, V1TriggerSecurityScanResponseBodySchema, V1UnscopedFileSchema, V1UpdateMemberCreditLimitInputBodySchema, V1UpdateWorkspaceSettingsInputBodySchema, V1UsagePeriodSchema, V1WorkspaceAuditLogEntrySchema, V1WorkspaceAuditLogsBodySchema, V1WorkspaceCreditHistoryBodySchema, V1WorkspaceCreditsBodySchema, V1WorkspaceCreditsExpiringGrantSchema, V1WorkspaceCreditsGrantTypeBalanceSchema, V1WorkspaceGroupSchema, V1WorkspaceInsightsActivityFreshnessSchema, V1WorkspaceInsightsBodySchema, V1WorkspaceInsightsEdgeFunctionSchema, V1WorkspaceInsightsFindingSchema, V1WorkspaceInsightsOwnerSchema, V1WorkspaceInsightsProjectSchema, V1WorkspaceInsightsProjectsBodySchema, V1WorkspaceInsightsReasonSchema, V1WorkspaceInsightsReasonValuesSchema, V1WorkspaceInsightsReviewPrioritySchema, V1WorkspaceInsightsSignalsSchema, V1WorkspaceInsightsStatSchema, V1WorkspaceInsightsSummarySchema, V1WorkspaceMemberGroupSchema, V1WorkspaceMemberSchema, V1WorkspaceSettingsBodySchema, V1WorkspaceSkillDtoSchema, V1WorkspaceUsageBreakdownBodySchema, V1WorkspaceUsageBreakdownEntrySchema, V1WorkspaceUsageConnectorBreakdownSchema, V1WorkspaceUsageDatabaseBreakdownSchema, V1WorkspaceUsageGatewayModelSchema, V1WorkspaceUsageMeBodySchema, V1WorkspaceUsageProjectRowSchema, V1WorkspaceUsageProjectsBodySchema, V1WorkspaceUsageTimeseriesBodySchema, V1WorkspaceUsageTimeseriesBucketSchema, V1WriteWorkspaceSkillInputBodySchema, V1WriteWorkspaceSkillOutputBodySchema, VisibilityChangeInfoSchema, WorkspaceAnalyticsResponseSchema, WorkspaceAnalyticsSchema, WorkspaceGroupPageSchema, WorkspaceGroupSchema, WorkspaceInsightsActivityFreshnessSchema, WorkspaceInsightsEdgeFunctionSchema, WorkspaceInsightsFindingSchema, WorkspaceInsightsOwnerSchema, WorkspaceInsightsProjectPageSchema, WorkspaceInsightsProjectSchema, WorkspaceInsightsReasonSchema, WorkspaceInsightsReasonValuesSchema, WorkspaceInsightsReviewPrioritySchema, WorkspaceInsightsSchema, WorkspaceInsightsSignalsSchema, WorkspaceInsightsStatSchema, WorkspaceInsightsSummarySchema, WorkspaceMemberGroupSchema, WorkspaceMemberPageSchema, WorkspaceMemberSchema, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspacePageSchema, WorkspaceSchema, WorkspaceSettingsSchema, WorkspaceWithMembershipSchema };
6158
5908
  //# sourceMappingURL=schemas.d.ts.map