@lovable.dev/sdk 1.9.0 → 1.10.0
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/README.md +5 -4
- package/dist/index.d.ts +167 -330
- package/dist/index.js +3 -17
- package/dist/index.js.map +1 -1
- package/dist/schemas.d.ts +192 -382
- package/dist/schemas.js +98 -77
- package/dist/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2 -16
- package/src/generated/paths.ts +165 -315
- package/src/generated/version.ts +1 -1
- package/src/generated/zod/zod.gen.ts +85 -52
- package/src/schemas-deprecated.ts +25 -50
- package/src/types.ts +3 -4
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";
|
|
@@ -455,6 +451,11 @@ declare const ProjectSummarySchema: z$1.ZodObject<{
|
|
|
455
451
|
project: "project";
|
|
456
452
|
library: "library";
|
|
457
453
|
}>>;
|
|
454
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
455
|
+
public: "public";
|
|
456
|
+
workspace: "workspace";
|
|
457
|
+
custom: "custom";
|
|
458
|
+
}>>;
|
|
458
459
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
459
460
|
public: "public";
|
|
460
461
|
private: "private";
|
|
@@ -465,8 +466,6 @@ declare const ProjectSummarySchema: z$1.ZodObject<{
|
|
|
465
466
|
completed: "completed";
|
|
466
467
|
failed: "failed";
|
|
467
468
|
}>>;
|
|
468
|
-
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
469
|
-
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
470
469
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
471
470
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
472
471
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
@@ -494,6 +493,11 @@ declare const ProjectSummaryPageSchema: z$1.ZodObject<{
|
|
|
494
493
|
project: "project";
|
|
495
494
|
library: "library";
|
|
496
495
|
}>>;
|
|
496
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
497
|
+
public: "public";
|
|
498
|
+
workspace: "workspace";
|
|
499
|
+
custom: "custom";
|
|
500
|
+
}>>;
|
|
497
501
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
498
502
|
public: "public";
|
|
499
503
|
private: "private";
|
|
@@ -504,8 +508,6 @@ declare const ProjectSummaryPageSchema: z$1.ZodObject<{
|
|
|
504
508
|
completed: "completed";
|
|
505
509
|
failed: "failed";
|
|
506
510
|
}>>;
|
|
507
|
-
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
508
|
-
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
509
511
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
510
512
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
511
513
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
@@ -541,23 +543,23 @@ declare const PublicV1ProjectRemixInputBodySchema: z$1.ZodObject<{
|
|
|
541
543
|
declare const PublishAudienceTargetSchema: z$1.ZodObject<{
|
|
542
544
|
id: z$1.ZodString;
|
|
543
545
|
type: z$1.ZodEnum<{
|
|
544
|
-
user: "user";
|
|
545
546
|
group: "group";
|
|
547
|
+
user: "user";
|
|
546
548
|
}>;
|
|
547
549
|
}, z$1.core.$strip>;
|
|
548
550
|
declare const PublishProjectRequestSchema: z$1.ZodObject<{
|
|
549
551
|
audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
550
552
|
id: z$1.ZodString;
|
|
551
553
|
type: z$1.ZodEnum<{
|
|
552
|
-
user: "user";
|
|
553
554
|
group: "group";
|
|
555
|
+
user: "user";
|
|
554
556
|
}>;
|
|
555
557
|
}, z$1.core.$strip>>>>;
|
|
556
558
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
557
559
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
558
560
|
public: "public";
|
|
559
|
-
custom: "custom";
|
|
560
561
|
workspace: "workspace";
|
|
562
|
+
custom: "custom";
|
|
561
563
|
}>>;
|
|
562
564
|
}, z$1.core.$strip>;
|
|
563
565
|
declare const PublishProjectResponseSchema: z$1.ZodObject<{
|
|
@@ -568,8 +570,8 @@ declare const PublishProjectResponseSchema: z$1.ZodObject<{
|
|
|
568
570
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
569
571
|
visibility: z$1.ZodEnum<{
|
|
570
572
|
public: "public";
|
|
571
|
-
custom: "custom";
|
|
572
573
|
workspace: "workspace";
|
|
574
|
+
custom: "custom";
|
|
573
575
|
}>;
|
|
574
576
|
}, z$1.core.$strip>;
|
|
575
577
|
declare const DeploymentSchema: z$1.ZodObject<{
|
|
@@ -589,11 +591,93 @@ declare const DeploymentSchema: z$1.ZodObject<{
|
|
|
589
591
|
status: z$1.ZodEnum<{
|
|
590
592
|
completed: "completed";
|
|
591
593
|
unknown: "unknown";
|
|
592
|
-
running: "running";
|
|
593
594
|
error: "error";
|
|
595
|
+
running: "running";
|
|
594
596
|
}>;
|
|
595
597
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
596
598
|
}, z$1.core.$strip>;
|
|
599
|
+
declare const SecurityFindingSchema: z$1.ZodObject<{
|
|
600
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
601
|
+
created_at: z$1.ZodISODateTime;
|
|
602
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
603
|
+
finding_id: z$1.ZodString;
|
|
604
|
+
level: z$1.ZodEnum<{
|
|
605
|
+
error: "error";
|
|
606
|
+
warn: "warn";
|
|
607
|
+
info: "info";
|
|
608
|
+
}>;
|
|
609
|
+
name: z$1.ZodString;
|
|
610
|
+
scanner_name: z$1.ZodString;
|
|
611
|
+
status: z$1.ZodEnum<{
|
|
612
|
+
open: "open";
|
|
613
|
+
ignored: "ignored";
|
|
614
|
+
fixed: "fixed";
|
|
615
|
+
}>;
|
|
616
|
+
updated_at: z$1.ZodISODateTime;
|
|
617
|
+
}, z$1.core.$strip>;
|
|
618
|
+
declare const SecurityScanSchema: z$1.ZodObject<{
|
|
619
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
620
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
621
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
622
|
+
scan_id: z$1.ZodString;
|
|
623
|
+
started_at: z$1.ZodISODateTime;
|
|
624
|
+
status: z$1.ZodEnum<{
|
|
625
|
+
completed: "completed";
|
|
626
|
+
failed: "failed";
|
|
627
|
+
running: "running";
|
|
628
|
+
}>;
|
|
629
|
+
}, z$1.core.$strip>;
|
|
630
|
+
declare const SecurityScanPageSchema: z$1.ZodObject<{
|
|
631
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
632
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
633
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
634
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
635
|
+
scan_id: z$1.ZodString;
|
|
636
|
+
started_at: z$1.ZodISODateTime;
|
|
637
|
+
status: z$1.ZodEnum<{
|
|
638
|
+
completed: "completed";
|
|
639
|
+
failed: "failed";
|
|
640
|
+
running: "running";
|
|
641
|
+
}>;
|
|
642
|
+
}, z$1.core.$strip>>>;
|
|
643
|
+
pagination: z$1.ZodObject<{
|
|
644
|
+
has_more: z$1.ZodBoolean;
|
|
645
|
+
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
646
|
+
}, z$1.core.$strip>;
|
|
647
|
+
}, z$1.core.$strip>;
|
|
648
|
+
declare const SecurityScanDetailSchema: z$1.ZodObject<{
|
|
649
|
+
findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
650
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
651
|
+
created_at: z$1.ZodISODateTime;
|
|
652
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
653
|
+
finding_id: z$1.ZodString;
|
|
654
|
+
level: z$1.ZodEnum<{
|
|
655
|
+
error: "error";
|
|
656
|
+
warn: "warn";
|
|
657
|
+
info: "info";
|
|
658
|
+
}>;
|
|
659
|
+
name: z$1.ZodString;
|
|
660
|
+
scanner_name: z$1.ZodString;
|
|
661
|
+
status: z$1.ZodEnum<{
|
|
662
|
+
open: "open";
|
|
663
|
+
ignored: "ignored";
|
|
664
|
+
fixed: "fixed";
|
|
665
|
+
}>;
|
|
666
|
+
updated_at: z$1.ZodISODateTime;
|
|
667
|
+
}, z$1.core.$strip>>>;
|
|
668
|
+
scan: z$1.ZodObject<{
|
|
669
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
670
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
671
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
672
|
+
scan_id: z$1.ZodString;
|
|
673
|
+
started_at: z$1.ZodISODateTime;
|
|
674
|
+
status: z$1.ZodEnum<{
|
|
675
|
+
completed: "completed";
|
|
676
|
+
failed: "failed";
|
|
677
|
+
running: "running";
|
|
678
|
+
}>;
|
|
679
|
+
}, z$1.core.$strip>;
|
|
680
|
+
}, z$1.core.$strip>;
|
|
597
681
|
declare const PublicV1SetProjectKnowledgeInputBodySchema: z$1.ZodObject<{
|
|
598
682
|
content: z$1.ZodString;
|
|
599
683
|
project_id: z$1.ZodString;
|
|
@@ -606,15 +690,15 @@ declare const UpdatePublishSettingsRequestSchema: z$1.ZodObject<{
|
|
|
606
690
|
audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
607
691
|
id: z$1.ZodString;
|
|
608
692
|
type: z$1.ZodEnum<{
|
|
609
|
-
user: "user";
|
|
610
693
|
group: "group";
|
|
694
|
+
user: "user";
|
|
611
695
|
}>;
|
|
612
696
|
}, z$1.core.$strip>>>>;
|
|
613
697
|
is_published: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
614
698
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
615
699
|
public: "public";
|
|
616
|
-
custom: "custom";
|
|
617
700
|
workspace: "workspace";
|
|
701
|
+
custom: "custom";
|
|
618
702
|
}>>;
|
|
619
703
|
}, z$1.core.$strip>;
|
|
620
704
|
declare const PublishSettingsSchema: z$1.ZodObject<{
|
|
@@ -622,8 +706,8 @@ declare const PublishSettingsSchema: z$1.ZodObject<{
|
|
|
622
706
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
623
707
|
visibility: z$1.ZodEnum<{
|
|
624
708
|
public: "public";
|
|
625
|
-
custom: "custom";
|
|
626
709
|
workspace: "workspace";
|
|
710
|
+
custom: "custom";
|
|
627
711
|
}>;
|
|
628
712
|
}, z$1.core.$strip>;
|
|
629
713
|
declare const WorkspaceSchema: z$1.ZodObject<{
|
|
@@ -1598,25 +1682,6 @@ declare const V1AwaitingInputSummarySchema: z$1.ZodObject<{
|
|
|
1598
1682
|
prev_session_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1599
1683
|
tool_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1600
1684
|
}, 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
1685
|
declare const BillingPeriodSchema: z$1.ZodObject<{
|
|
1621
1686
|
end: z$1.ZodISODateTime;
|
|
1622
1687
|
start: z$1.ZodISODateTime;
|
|
@@ -1634,7 +1699,7 @@ declare const CreditUsagePeriodSchema: z$1.ZodObject<{
|
|
|
1634
1699
|
}>>;
|
|
1635
1700
|
start: z$1.ZodString;
|
|
1636
1701
|
}, z$1.core.$strip>;
|
|
1637
|
-
declare const
|
|
1702
|
+
declare const V1BulkMemberCreditLimitItemSchema: z$1.ZodObject<{
|
|
1638
1703
|
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1639
1704
|
permanent: "permanent";
|
|
1640
1705
|
current_period: "current_period";
|
|
@@ -1643,18 +1708,7 @@ declare const MemberCreditLimitUpdateSchema: z$1.ZodObject<{
|
|
|
1643
1708
|
monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
|
|
1644
1709
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1645
1710
|
}, z$1.core.$strip>;
|
|
1646
|
-
declare const
|
|
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<{
|
|
1711
|
+
declare const V1BulkMemberCreditLimitResultSchema: z$1.ZodObject<{
|
|
1658
1712
|
approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1659
1713
|
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1660
1714
|
current_period: "current_period";
|
|
@@ -1679,7 +1733,7 @@ declare const V1BulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
|
|
|
1679
1733
|
}, z$1.core.$strip>>;
|
|
1680
1734
|
workspace_id: z$1.ZodString;
|
|
1681
1735
|
}, z$1.core.$strip>;
|
|
1682
|
-
declare const
|
|
1736
|
+
declare const V1BulkSetMemberCreditLimitOutputBodySchema: z$1.ZodObject<{
|
|
1683
1737
|
failed: z$1.ZodNumber;
|
|
1684
1738
|
results: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1685
1739
|
approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
@@ -1740,6 +1794,11 @@ declare const V1CreateProjectResponseSchema: z$1.ZodObject<{
|
|
|
1740
1794
|
project: "project";
|
|
1741
1795
|
library: "library";
|
|
1742
1796
|
}>>;
|
|
1797
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1798
|
+
public: "public";
|
|
1799
|
+
workspace: "workspace";
|
|
1800
|
+
custom: "custom";
|
|
1801
|
+
}>>;
|
|
1743
1802
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1744
1803
|
public: "public";
|
|
1745
1804
|
private: "private";
|
|
@@ -1750,8 +1809,6 @@ declare const V1CreateProjectResponseSchema: z$1.ZodObject<{
|
|
|
1750
1809
|
completed: "completed";
|
|
1751
1810
|
failed: "failed";
|
|
1752
1811
|
}>>;
|
|
1753
|
-
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
1754
|
-
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1755
1812
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
1756
1813
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1757
1814
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
@@ -2412,6 +2469,11 @@ declare const ProjectSchema: z$1.ZodObject<{
|
|
|
2412
2469
|
project: "project";
|
|
2413
2470
|
library: "library";
|
|
2414
2471
|
}>>;
|
|
2472
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2473
|
+
public: "public";
|
|
2474
|
+
workspace: "workspace";
|
|
2475
|
+
custom: "custom";
|
|
2476
|
+
}>>;
|
|
2415
2477
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2416
2478
|
public: "public";
|
|
2417
2479
|
private: "private";
|
|
@@ -2422,8 +2484,6 @@ declare const ProjectSchema: z$1.ZodObject<{
|
|
|
2422
2484
|
completed: "completed";
|
|
2423
2485
|
failed: "failed";
|
|
2424
2486
|
}>>;
|
|
2425
|
-
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
2426
|
-
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2427
2487
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
2428
2488
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2429
2489
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
@@ -2481,7 +2541,7 @@ declare const V1RemixInitInputBodySchema: z$1.ZodObject<{
|
|
|
2481
2541
|
declare const V1RemixInitOutputBodySchema: z$1.ZodObject<{
|
|
2482
2542
|
job_id: z$1.ZodString;
|
|
2483
2543
|
}, z$1.core.$strip>;
|
|
2484
|
-
declare const
|
|
2544
|
+
declare const V1RemixProgressResultSchema: z$1.ZodObject<{
|
|
2485
2545
|
project_id: z$1.ZodString;
|
|
2486
2546
|
warnings: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2487
2547
|
code: z$1.ZodEnum<{
|
|
@@ -2493,7 +2553,7 @@ declare const RemixResultSchema: z$1.ZodObject<{
|
|
|
2493
2553
|
skipped_integration: z$1.ZodOptional<z$1.ZodString>;
|
|
2494
2554
|
}, z$1.core.$strip>>>>;
|
|
2495
2555
|
}, z$1.core.$strip>;
|
|
2496
|
-
declare const
|
|
2556
|
+
declare const PublicV1RemixJobOutputBodySchema: z$1.ZodObject<{
|
|
2497
2557
|
error_code: z$1.ZodOptional<z$1.ZodString>;
|
|
2498
2558
|
error_message: z$1.ZodOptional<z$1.ZodString>;
|
|
2499
2559
|
result: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -2511,42 +2571,10 @@ declare const RemixJobSchema: z$1.ZodObject<{
|
|
|
2511
2571
|
status: z$1.ZodEnum<{
|
|
2512
2572
|
completed: "completed";
|
|
2513
2573
|
unknown: "unknown";
|
|
2514
|
-
running: "running";
|
|
2515
2574
|
error: "error";
|
|
2575
|
+
running: "running";
|
|
2516
2576
|
preparing: "preparing";
|
|
2517
2577
|
}>;
|
|
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
2578
|
}, z$1.core.$strip>;
|
|
2551
2579
|
declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
2552
2580
|
error_code: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2600,7 +2628,7 @@ declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
|
2600
2628
|
declare const V1RemoveConnectorOutputBodySchema: z$1.ZodObject<{
|
|
2601
2629
|
success: z$1.ZodBoolean;
|
|
2602
2630
|
}, z$1.core.$strip>;
|
|
2603
|
-
declare const
|
|
2631
|
+
declare const V1SecurityFindingSchema: z$1.ZodObject<{
|
|
2604
2632
|
category: z$1.ZodOptional<z$1.ZodString>;
|
|
2605
2633
|
created_at: z$1.ZodISODateTime;
|
|
2606
2634
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2625,7 +2653,7 @@ declare const SecurityFindingSchema: z$1.ZodObject<{
|
|
|
2625
2653
|
}>;
|
|
2626
2654
|
updated_at: z$1.ZodISODateTime;
|
|
2627
2655
|
}, z$1.core.$strip>;
|
|
2628
|
-
declare const
|
|
2656
|
+
declare const V1SecurityScanActorSchema: z$1.ZodObject<{
|
|
2629
2657
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2630
2658
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2631
2659
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2634,7 +2662,7 @@ declare const SecurityScanActorSchema: z$1.ZodObject<{
|
|
|
2634
2662
|
system: "system";
|
|
2635
2663
|
}>;
|
|
2636
2664
|
}, z$1.core.$strip>;
|
|
2637
|
-
declare const
|
|
2665
|
+
declare const V1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
2638
2666
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2639
2667
|
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2640
2668
|
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -2646,8 +2674,8 @@ declare const SecurityScanSchema: z$1.ZodObject<{
|
|
|
2646
2674
|
running: "running";
|
|
2647
2675
|
}>;
|
|
2648
2676
|
trigger_source: z$1.ZodEnum<{
|
|
2649
|
-
workflow: "workflow";
|
|
2650
2677
|
user: "user";
|
|
2678
|
+
workflow: "workflow";
|
|
2651
2679
|
ui_auto: "ui_auto";
|
|
2652
2680
|
aikido_import: "aikido_import";
|
|
2653
2681
|
manage_findings: "manage_findings";
|
|
@@ -2667,7 +2695,7 @@ declare const SecurityScanSchema: z$1.ZodObject<{
|
|
|
2667
2695
|
}>;
|
|
2668
2696
|
}, z$1.core.$strip>;
|
|
2669
2697
|
}, z$1.core.$strip>;
|
|
2670
|
-
declare const
|
|
2698
|
+
declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
2671
2699
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2672
2700
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2673
2701
|
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
@@ -2680,8 +2708,8 @@ declare const SecurityScanPageSchema: z$1.ZodObject<{
|
|
|
2680
2708
|
running: "running";
|
|
2681
2709
|
}>;
|
|
2682
2710
|
trigger_source: z$1.ZodEnum<{
|
|
2683
|
-
workflow: "workflow";
|
|
2684
2711
|
user: "user";
|
|
2712
|
+
workflow: "workflow";
|
|
2685
2713
|
ui_auto: "ui_auto";
|
|
2686
2714
|
aikido_import: "aikido_import";
|
|
2687
2715
|
manage_findings: "manage_findings";
|
|
@@ -2706,7 +2734,7 @@ declare const SecurityScanPageSchema: z$1.ZodObject<{
|
|
|
2706
2734
|
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
2707
2735
|
}, z$1.core.$strip>;
|
|
2708
2736
|
}, z$1.core.$strip>;
|
|
2709
|
-
declare const
|
|
2737
|
+
declare const V1SecurityScannerRunSchema: z$1.ZodObject<{
|
|
2710
2738
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2711
2739
|
error_message: z$1.ZodOptional<z$1.ZodString>;
|
|
2712
2740
|
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
@@ -2719,7 +2747,7 @@ declare const SecurityScannerRunSchema: z$1.ZodObject<{
|
|
|
2719
2747
|
skipped: "skipped";
|
|
2720
2748
|
}>;
|
|
2721
2749
|
}, z$1.core.$strip>;
|
|
2722
|
-
declare const
|
|
2750
|
+
declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
2723
2751
|
findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2724
2752
|
category: z$1.ZodOptional<z$1.ZodString>;
|
|
2725
2753
|
created_at: z$1.ZodISODateTime;
|
|
@@ -2757,8 +2785,8 @@ declare const SecurityScanDetailSchema: z$1.ZodObject<{
|
|
|
2757
2785
|
running: "running";
|
|
2758
2786
|
}>;
|
|
2759
2787
|
trigger_source: z$1.ZodEnum<{
|
|
2760
|
-
workflow: "workflow";
|
|
2761
2788
|
user: "user";
|
|
2789
|
+
workflow: "workflow";
|
|
2762
2790
|
ui_auto: "ui_auto";
|
|
2763
2791
|
aikido_import: "aikido_import";
|
|
2764
2792
|
manage_findings: "manage_findings";
|
|
@@ -2841,7 +2869,7 @@ declare const V1SetWorkspaceKnowledgeInputBodySchema: z$1.ZodObject<{
|
|
|
2841
2869
|
declare const V1TriggerSecurityScanInputBodySchema: z$1.ZodObject<{
|
|
2842
2870
|
project_id: z$1.ZodString;
|
|
2843
2871
|
}, z$1.core.$strip>;
|
|
2844
|
-
declare const
|
|
2872
|
+
declare const V1TriggerSecurityScanResponseBodySchema: z$1.ZodObject<{
|
|
2845
2873
|
message: z$1.ZodOptional<z$1.ZodString>;
|
|
2846
2874
|
scan_id: z$1.ZodString;
|
|
2847
2875
|
status: z$1.ZodEnum<{
|
|
@@ -2971,9 +2999,6 @@ declare const V1UpdateWorkspaceSettingsInputBodySchema: z$1.ZodObject<{
|
|
|
2971
2999
|
default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
2972
3000
|
workspace_id: z$1.ZodString;
|
|
2973
3001
|
}, 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
3002
|
declare const V1UsagePeriodSchema: z$1.ZodObject<{
|
|
2978
3003
|
end: z$1.ZodString;
|
|
2979
3004
|
granularity: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3325,6 +3350,11 @@ declare const WorkspaceInsightsProjectSchema: z$1.ZodObject<{
|
|
|
3325
3350
|
owner: z$1.ZodOptional<z$1.ZodObject<{
|
|
3326
3351
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
3327
3352
|
}, z$1.core.$strip>>;
|
|
3353
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3354
|
+
public: "public";
|
|
3355
|
+
workspace: "workspace";
|
|
3356
|
+
custom: "custom";
|
|
3357
|
+
}>>;
|
|
3328
3358
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3329
3359
|
public: "public";
|
|
3330
3360
|
private: "private";
|
|
@@ -3489,6 +3519,11 @@ declare const WorkspaceInsightsProjectPageSchema: z$1.ZodObject<{
|
|
|
3489
3519
|
owner: z$1.ZodOptional<z$1.ZodObject<{
|
|
3490
3520
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
3491
3521
|
}, z$1.core.$strip>>;
|
|
3522
|
+
publish_audience: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3523
|
+
public: "public";
|
|
3524
|
+
workspace: "workspace";
|
|
3525
|
+
custom: "custom";
|
|
3526
|
+
}>>;
|
|
3492
3527
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3493
3528
|
public: "public";
|
|
3494
3529
|
private: "private";
|
|
@@ -4139,7 +4174,6 @@ declare const WorkspaceAnalyticsSchema: z$1.ZodObject<{
|
|
|
4139
4174
|
/** @deprecated Renamed to PiiLabelPageSchema. */
|
|
4140
4175
|
declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<{
|
|
4141
4176
|
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4142
|
-
chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4143
4177
|
chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4144
4178
|
connector_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4145
4179
|
found_at: import("zod").ZodISODateTime;
|
|
@@ -4154,7 +4188,6 @@ declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<
|
|
|
4154
4188
|
very_likely: "very_likely";
|
|
4155
4189
|
}>>;
|
|
4156
4190
|
quote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4157
|
-
scan_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4158
4191
|
sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4159
4192
|
low: "low";
|
|
4160
4193
|
mid: "mid";
|
|
@@ -4198,6 +4231,11 @@ declare const CursorListResponsePublicV1ProjectListItemSchema: import("zod").Zod
|
|
|
4198
4231
|
project: "project";
|
|
4199
4232
|
library: "library";
|
|
4200
4233
|
}>>;
|
|
4234
|
+
publish_audience: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4235
|
+
public: "public";
|
|
4236
|
+
workspace: "workspace";
|
|
4237
|
+
custom: "custom";
|
|
4238
|
+
}>>;
|
|
4201
4239
|
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4202
4240
|
public: "public";
|
|
4203
4241
|
private: "private";
|
|
@@ -4208,8 +4246,6 @@ declare const CursorListResponsePublicV1ProjectListItemSchema: import("zod").Zod
|
|
|
4208
4246
|
completed: "completed";
|
|
4209
4247
|
failed: "failed";
|
|
4210
4248
|
}>>;
|
|
4211
|
-
tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4212
|
-
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4213
4249
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4214
4250
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4215
4251
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4250,46 +4286,6 @@ declare const CursorListResponseV1ProjectCollaboratorSchema: import("zod").ZodOb
|
|
|
4250
4286
|
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4251
4287
|
}, import("zod/v4/core").$strip>;
|
|
4252
4288
|
}, 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
4289
|
/** @deprecated Renamed to WorkspaceGroupPageSchema. */
|
|
4294
4290
|
declare const CursorListResponseV1WorkspaceGroupSchema: import("zod").ZodObject<{
|
|
4295
4291
|
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -4457,7 +4453,6 @@ declare const PublicV1PatchProjectBodySchema: import("zod").ZodObject<{
|
|
|
4457
4453
|
}, import("zod/v4/core").$strip>;
|
|
4458
4454
|
/** @deprecated Renamed to PiiLabelSchema. */
|
|
4459
4455
|
declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
|
|
4460
|
-
chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4461
4456
|
chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4462
4457
|
connector_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4463
4458
|
found_at: import("zod").ZodISODateTime;
|
|
@@ -4472,7 +4467,6 @@ declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
|
|
|
4472
4467
|
very_likely: "very_likely";
|
|
4473
4468
|
}>>;
|
|
4474
4469
|
quote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4475
|
-
scan_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4476
4470
|
sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4477
4471
|
low: "low";
|
|
4478
4472
|
mid: "mid";
|
|
@@ -4592,6 +4586,11 @@ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
|
|
|
4592
4586
|
project: "project";
|
|
4593
4587
|
library: "library";
|
|
4594
4588
|
}>>;
|
|
4589
|
+
publish_audience: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4590
|
+
public: "public";
|
|
4591
|
+
workspace: "workspace";
|
|
4592
|
+
custom: "custom";
|
|
4593
|
+
}>>;
|
|
4595
4594
|
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4596
4595
|
public: "public";
|
|
4597
4596
|
private: "private";
|
|
@@ -4602,8 +4601,6 @@ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
|
|
|
4602
4601
|
completed: "completed";
|
|
4603
4602
|
failed: "failed";
|
|
4604
4603
|
}>>;
|
|
4605
|
-
tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4606
|
-
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4607
4604
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4608
4605
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4609
4606
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -4618,8 +4615,8 @@ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
|
|
|
4618
4615
|
declare const PublicV1PublishAudienceTargetSchema: import("zod").ZodObject<{
|
|
4619
4616
|
id: import("zod").ZodString;
|
|
4620
4617
|
type: import("zod").ZodEnum<{
|
|
4621
|
-
user: "user";
|
|
4622
4618
|
group: "group";
|
|
4619
|
+
user: "user";
|
|
4623
4620
|
}>;
|
|
4624
4621
|
}, import("zod/v4/core").$strip>;
|
|
4625
4622
|
/** @deprecated Renamed to PublishProjectRequestSchema. */
|
|
@@ -4627,15 +4624,15 @@ declare const PublicV1PublishProjectInputBodySchema: import("zod").ZodObject<{
|
|
|
4627
4624
|
audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4628
4625
|
id: import("zod").ZodString;
|
|
4629
4626
|
type: import("zod").ZodEnum<{
|
|
4630
|
-
user: "user";
|
|
4631
4627
|
group: "group";
|
|
4628
|
+
user: "user";
|
|
4632
4629
|
}>;
|
|
4633
4630
|
}, import("zod/v4/core").$strip>>>>;
|
|
4634
4631
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4635
4632
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4636
4633
|
public: "public";
|
|
4637
|
-
custom: "custom";
|
|
4638
4634
|
workspace: "workspace";
|
|
4635
|
+
custom: "custom";
|
|
4639
4636
|
}>>;
|
|
4640
4637
|
}, import("zod/v4/core").$strip>;
|
|
4641
4638
|
/** @deprecated Renamed to PublishProjectResponseSchema. */
|
|
@@ -4647,8 +4644,8 @@ declare const PublicV1PublishProjectResponseSchema: import("zod").ZodObject<{
|
|
|
4647
4644
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4648
4645
|
visibility: import("zod").ZodEnum<{
|
|
4649
4646
|
public: "public";
|
|
4650
|
-
custom: "custom";
|
|
4651
4647
|
workspace: "workspace";
|
|
4648
|
+
custom: "custom";
|
|
4652
4649
|
}>;
|
|
4653
4650
|
}, import("zod/v4/core").$strip>;
|
|
4654
4651
|
/** @deprecated Renamed to DeploymentSchema. */
|
|
@@ -4669,13 +4666,13 @@ declare const PublicV1PublishStatusResponseSchema: import("zod").ZodObject<{
|
|
|
4669
4666
|
status: import("zod").ZodEnum<{
|
|
4670
4667
|
completed: "completed";
|
|
4671
4668
|
unknown: "unknown";
|
|
4672
|
-
running: "running";
|
|
4673
4669
|
error: "error";
|
|
4670
|
+
running: "running";
|
|
4674
4671
|
}>;
|
|
4675
4672
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4676
4673
|
}, import("zod/v4/core").$strip>;
|
|
4677
|
-
/** @deprecated
|
|
4678
|
-
declare const
|
|
4674
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4675
|
+
declare const RemixJobSchema: import("zod").ZodObject<{
|
|
4679
4676
|
error_code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4680
4677
|
error_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4681
4678
|
result: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -4693,57 +4690,25 @@ declare const PublicV1RemixJobOutputBodySchema: import("zod").ZodObject<{
|
|
|
4693
4690
|
status: import("zod").ZodEnum<{
|
|
4694
4691
|
completed: "completed";
|
|
4695
4692
|
unknown: "unknown";
|
|
4696
|
-
running: "running";
|
|
4697
4693
|
error: "error";
|
|
4694
|
+
running: "running";
|
|
4698
4695
|
preparing: "preparing";
|
|
4699
4696
|
}>;
|
|
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
4697
|
}, import("zod/v4/core").$strip>;
|
|
4733
4698
|
/** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
|
|
4734
4699
|
declare const PublicV1UpdatePublishSettingsInputBodySchema: import("zod").ZodObject<{
|
|
4735
4700
|
audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4736
4701
|
id: import("zod").ZodString;
|
|
4737
4702
|
type: import("zod").ZodEnum<{
|
|
4738
|
-
user: "user";
|
|
4739
4703
|
group: "group";
|
|
4704
|
+
user: "user";
|
|
4740
4705
|
}>;
|
|
4741
4706
|
}, import("zod/v4/core").$strip>>>>;
|
|
4742
4707
|
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4743
4708
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4744
4709
|
public: "public";
|
|
4745
|
-
custom: "custom";
|
|
4746
4710
|
workspace: "workspace";
|
|
4711
|
+
custom: "custom";
|
|
4747
4712
|
}>>;
|
|
4748
4713
|
}, import("zod/v4/core").$strip>;
|
|
4749
4714
|
/** @deprecated Renamed to PublishSettingsSchema. */
|
|
@@ -4752,8 +4717,8 @@ declare const PublicV1UpdatePublishSettingsResponseSchema: import("zod").ZodObje
|
|
|
4752
4717
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4753
4718
|
visibility: import("zod").ZodEnum<{
|
|
4754
4719
|
public: "public";
|
|
4755
|
-
custom: "custom";
|
|
4756
4720
|
workspace: "workspace";
|
|
4721
|
+
custom: "custom";
|
|
4757
4722
|
}>;
|
|
4758
4723
|
}, import("zod/v4/core").$strip>;
|
|
4759
4724
|
/** @deprecated Renamed to WorkspaceMembershipSchema. */
|
|
@@ -4811,39 +4776,6 @@ declare const PublicV1WorkspaceWithMembershipSchema: import("zod").ZodObject<{
|
|
|
4811
4776
|
}>;
|
|
4812
4777
|
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4813
4778
|
}, 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
4779
|
/** @deprecated Renamed to BillingPeriodSchema. */
|
|
4848
4780
|
declare const V1BillingPeriodSchema: import("zod").ZodObject<{
|
|
4849
4781
|
end: import("zod").ZodISODateTime;
|
|
@@ -4958,8 +4890,8 @@ declare const V1BillingUsageRowSchema: import("zod").ZodObject<{
|
|
|
4958
4890
|
total: import("zod").ZodNumber;
|
|
4959
4891
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4960
4892
|
}, import("zod/v4/core").$strip>;
|
|
4961
|
-
/** @deprecated
|
|
4962
|
-
declare const
|
|
4893
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4894
|
+
declare const MemberCreditLimitUpdateSchema: import("zod").ZodObject<{
|
|
4963
4895
|
duration: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4964
4896
|
permanent: "permanent";
|
|
4965
4897
|
current_period: "current_period";
|
|
@@ -4968,8 +4900,8 @@ declare const V1BulkMemberCreditLimitItemSchema: import("zod").ZodObject<{
|
|
|
4968
4900
|
monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4969
4901
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4970
4902
|
}, import("zod/v4/core").$strip>;
|
|
4971
|
-
/** @deprecated
|
|
4972
|
-
declare const
|
|
4903
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4904
|
+
declare const MemberCreditLimitResultSchema: import("zod").ZodObject<{
|
|
4973
4905
|
approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4974
4906
|
duration: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4975
4907
|
current_period: "current_period";
|
|
@@ -4982,8 +4914,8 @@ declare const V1BulkMemberCreditLimitResultSchema: import("zod").ZodObject<{
|
|
|
4982
4914
|
}>;
|
|
4983
4915
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4984
4916
|
}, import("zod/v4/core").$strip>;
|
|
4985
|
-
/** @deprecated
|
|
4986
|
-
declare const
|
|
4917
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4918
|
+
declare const SetMemberCreditLimitsResponseSchema: import("zod").ZodObject<{
|
|
4987
4919
|
failed: import("zod").ZodNumber;
|
|
4988
4920
|
results: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4989
4921
|
approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
@@ -5033,80 +4965,6 @@ declare const V1CreditHistoryEntrySchema: import("zod").ZodObject<{
|
|
|
5033
4965
|
label: import("zod").ZodString;
|
|
5034
4966
|
occurred_at: import("zod").ZodISODateTime;
|
|
5035
4967
|
}, 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
4968
|
/** @deprecated Renamed to WorkspacePageSchema. */
|
|
5111
4969
|
declare const V1ListWorkspacesBodySchema: import("zod").ZodObject<{
|
|
5112
4970
|
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -5178,6 +5036,11 @@ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
|
|
|
5178
5036
|
project: "project";
|
|
5179
5037
|
library: "library";
|
|
5180
5038
|
}>>;
|
|
5039
|
+
publish_audience: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5040
|
+
public: "public";
|
|
5041
|
+
workspace: "workspace";
|
|
5042
|
+
custom: "custom";
|
|
5043
|
+
}>>;
|
|
5181
5044
|
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5182
5045
|
public: "public";
|
|
5183
5046
|
private: "private";
|
|
@@ -5188,8 +5051,6 @@ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
|
|
|
5188
5051
|
completed: "completed";
|
|
5189
5052
|
failed: "failed";
|
|
5190
5053
|
}>>;
|
|
5191
|
-
tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5192
|
-
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5193
5054
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5194
5055
|
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5195
5056
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -5200,8 +5061,8 @@ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
|
|
|
5200
5061
|
}>>;
|
|
5201
5062
|
workspace_id: import("zod").ZodString;
|
|
5202
5063
|
}, import("zod/v4/core").$strip>;
|
|
5203
|
-
/** @deprecated
|
|
5204
|
-
declare const
|
|
5064
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5065
|
+
declare const RemixResultSchema: import("zod").ZodObject<{
|
|
5205
5066
|
project_id: import("zod").ZodString;
|
|
5206
5067
|
warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5207
5068
|
code: import("zod").ZodEnum<{
|
|
@@ -5213,34 +5074,8 @@ declare const V1RemixProgressResultSchema: import("zod").ZodObject<{
|
|
|
5213
5074
|
skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5214
5075
|
}, import("zod/v4/core").$strip>>>>;
|
|
5215
5076
|
}, import("zod/v4/core").$strip>;
|
|
5216
|
-
/** @deprecated
|
|
5217
|
-
declare const
|
|
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<{
|
|
5077
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5078
|
+
declare const SecurityScanActorSchema: import("zod").ZodObject<{
|
|
5244
5079
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5245
5080
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5246
5081
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5249,42 +5084,8 @@ declare const V1SecurityScanActorSchema: import("zod").ZodObject<{
|
|
|
5249
5084
|
system: "system";
|
|
5250
5085
|
}>;
|
|
5251
5086
|
}, import("zod/v4/core").$strip>;
|
|
5252
|
-
/** @deprecated
|
|
5253
|
-
declare const
|
|
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<{
|
|
5087
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5088
|
+
declare const SecurityScannerRunSchema: import("zod").ZodObject<{
|
|
5288
5089
|
commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5289
5090
|
error_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5290
5091
|
finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
@@ -5297,8 +5098,8 @@ declare const V1SecurityScannerRunSchema: import("zod").ZodObject<{
|
|
|
5297
5098
|
skipped: "skipped";
|
|
5298
5099
|
}>;
|
|
5299
5100
|
}, import("zod/v4/core").$strip>;
|
|
5300
|
-
/** @deprecated
|
|
5301
|
-
declare const
|
|
5101
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5102
|
+
declare const TriggerSecurityScanResponseSchema: import("zod").ZodObject<{
|
|
5302
5103
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5303
5104
|
scan_id: import("zod").ZodString;
|
|
5304
5105
|
status: import("zod").ZodEnum<{
|
|
@@ -5307,10 +5108,6 @@ declare const V1TriggerSecurityScanResponseBodySchema: import("zod").ZodObject<{
|
|
|
5307
5108
|
started: "started";
|
|
5308
5109
|
}>;
|
|
5309
5110
|
}, 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
5111
|
/** @deprecated Renamed to CreditHistoryPageSchema. */
|
|
5315
5112
|
declare const V1WorkspaceCreditHistoryBodySchema: import("zod").ZodObject<{
|
|
5316
5113
|
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -5578,6 +5375,11 @@ declare const V1WorkspaceInsightsProjectSchema: import("zod").ZodObject<{
|
|
|
5578
5375
|
owner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5579
5376
|
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5580
5377
|
}, import("zod/v4/core").$strip>>;
|
|
5378
|
+
publish_audience: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5379
|
+
public: "public";
|
|
5380
|
+
workspace: "workspace";
|
|
5381
|
+
custom: "custom";
|
|
5382
|
+
}>>;
|
|
5581
5383
|
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5582
5384
|
public: "public";
|
|
5583
5385
|
private: "private";
|
|
@@ -5743,6 +5545,11 @@ declare const V1WorkspaceInsightsProjectsBodySchema: import("zod").ZodObject<{
|
|
|
5743
5545
|
owner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5744
5546
|
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5745
5547
|
}, import("zod/v4/core").$strip>>;
|
|
5548
|
+
publish_audience: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5549
|
+
public: "public";
|
|
5550
|
+
workspace: "workspace";
|
|
5551
|
+
custom: "custom";
|
|
5552
|
+
}>>;
|
|
5746
5553
|
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5747
5554
|
public: "public";
|
|
5748
5555
|
private: "private";
|
|
@@ -6079,6 +5886,11 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
|
|
|
6079
5886
|
project: "project";
|
|
6080
5887
|
library: "library";
|
|
6081
5888
|
}>>;
|
|
5889
|
+
publish_audience: z.ZodOptional<z.ZodEnum<{
|
|
5890
|
+
public: "public";
|
|
5891
|
+
workspace: "workspace";
|
|
5892
|
+
custom: "custom";
|
|
5893
|
+
}>>;
|
|
6082
5894
|
publish_visibility: z.ZodOptional<z.ZodEnum<{
|
|
6083
5895
|
public: "public";
|
|
6084
5896
|
private: "private";
|
|
@@ -6089,8 +5901,6 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
|
|
|
6089
5901
|
completed: "completed";
|
|
6090
5902
|
failed: "failed";
|
|
6091
5903
|
}>>;
|
|
6092
|
-
tech_stack: z.ZodOptional<z.ZodString>;
|
|
6093
|
-
updated_at: z.ZodOptional<z.ZodISODateTime>;
|
|
6094
5904
|
url: z.ZodOptional<z.ZodString>;
|
|
6095
5905
|
user_id: z.ZodOptional<z.ZodString>;
|
|
6096
5906
|
visibility: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6154,5 +5964,5 @@ declare const V1DatabaseQueryOutputBodyWritableSchema: z.ZodObject<{
|
|
|
6154
5964
|
rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
6155
5965
|
}, z.core.$strip>;
|
|
6156
5966
|
//#endregion
|
|
6157
|
-
export { AddProjectsToFolderResultSchema, AnalyticsBreakdownGroupSchema, AnalyticsBreakdownPointSchema, AnalyticsBreakdownSchema, AnalyticsTrendSchema, AppUserConnectorApiSchema, BillingPeriodSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, ConnectorUsageSchema, CreateEmbedUrlRequestSchema, CreateEmbedUrlResponseSchema, CreatorSchema, CreditBalanceSchema, CreditGrantTypeBalanceSchema, CreditHistoryEntrySchema, CreditHistoryPageSchema,
|
|
5967
|
+
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
5968
|
//# sourceMappingURL=schemas.d.ts.map
|