@lovable.dev/sdk 1.6.1 → 1.7.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/dist/index.d.ts +1446 -275
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.d.ts +515 -230
- package/dist/schemas.js +133 -106
- package/dist/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -0
- package/src/generated/paths.ts +1446 -275
- package/src/generated/version.ts +2 -0
- package/src/generated/zod/zod.gen.ts +141 -110
package/dist/schemas.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import * as z$1 from "zod";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/generated/zod/zod.gen.d.ts
|
|
4
|
-
declare const CommonSeamlessConnectorCreatorSchema: z$1.ZodObject<{
|
|
5
|
-
name: z$1.ZodString;
|
|
6
|
-
url: z$1.ZodString;
|
|
7
|
-
}, z$1.core.$strip>;
|
|
8
4
|
declare const CommonSeamlessConnectorFeatureSchema: z$1.ZodObject<{
|
|
9
5
|
body: z$1.ZodOptional<z$1.ZodString>;
|
|
10
6
|
items: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -18,42 +14,13 @@ declare const CommonSeamlessConnectorPermissionSchema: z$1.ZodObject<{
|
|
|
18
14
|
is_primary: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
19
15
|
name: z$1.ZodString;
|
|
20
16
|
}, z$1.core.$strip>;
|
|
21
|
-
declare const
|
|
17
|
+
declare const CompanyCreatorSchema: z$1.ZodObject<{
|
|
18
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
22
19
|
name: z$1.ZodString;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
declare const AppUserConnectorApiSchema: z$1.ZodObject<{
|
|
26
|
-
can_restrict_to_admins: z$1.ZodBoolean;
|
|
27
|
-
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
28
|
-
custom: "custom";
|
|
29
|
-
ecommerce: "ecommerce";
|
|
30
|
-
marketing: "marketing";
|
|
31
|
-
productivity: "productivity";
|
|
32
|
-
sales: "sales";
|
|
33
|
-
support: "support";
|
|
34
|
-
other: "other";
|
|
35
|
-
messaging: "messaging";
|
|
36
|
-
development: "development";
|
|
37
|
-
payments: "payments";
|
|
38
|
-
security: "security";
|
|
39
|
-
}>>;
|
|
40
|
-
creator: z$1.ZodObject<{
|
|
41
|
-
name: z$1.ZodString;
|
|
42
|
-
url: z$1.ZodString;
|
|
43
|
-
}, z$1.core.$strip>;
|
|
44
|
-
display_name: z$1.ZodString;
|
|
45
|
-
documentation_url: z$1.ZodString;
|
|
46
|
-
has_clients: z$1.ZodBoolean;
|
|
47
|
-
id: z$1.ZodString;
|
|
48
|
-
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
49
|
-
long_description: z$1.ZodString;
|
|
50
|
-
search_tags: z$1.ZodArray<z$1.ZodString>;
|
|
51
|
-
short_description: z$1.ZodString;
|
|
52
|
-
terms_url: z$1.ZodOptional<z$1.ZodString>;
|
|
53
|
-
who_can_create: z$1.ZodEnum<{
|
|
54
|
-
editors_and_admins: "editors_and_admins";
|
|
55
|
-
admins_only: "admins_only";
|
|
20
|
+
type: z$1.ZodEnum<{
|
|
21
|
+
company: "company";
|
|
56
22
|
}>;
|
|
23
|
+
url: z$1.ZodString;
|
|
57
24
|
}, z$1.core.$strip>;
|
|
58
25
|
declare const DiffLineSchema: z$1.ZodObject<{
|
|
59
26
|
content: z$1.ZodString;
|
|
@@ -141,6 +108,22 @@ declare const ListDataSchema: z$1.ZodObject<{
|
|
|
141
108
|
}, z$1.core.$strip>>>;
|
|
142
109
|
label: z$1.ZodString;
|
|
143
110
|
}, z$1.core.$strip>;
|
|
111
|
+
declare const ChannelListsGroupSchema: z$1.ZodObject<{
|
|
112
|
+
page: z$1.ZodObject<{
|
|
113
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
114
|
+
label: z$1.ZodString;
|
|
115
|
+
value: z$1.ZodNumber;
|
|
116
|
+
}, z$1.core.$strip>>>;
|
|
117
|
+
label: z$1.ZodString;
|
|
118
|
+
}, z$1.core.$strip>;
|
|
119
|
+
source: z$1.ZodObject<{
|
|
120
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
121
|
+
label: z$1.ZodString;
|
|
122
|
+
value: z$1.ZodNumber;
|
|
123
|
+
}, z$1.core.$strip>>>;
|
|
124
|
+
label: z$1.ZodString;
|
|
125
|
+
}, z$1.core.$strip>;
|
|
126
|
+
}, z$1.core.$strip>;
|
|
144
127
|
declare const ListsGroupSchema: z$1.ZodObject<{
|
|
145
128
|
country: z$1.ZodObject<{
|
|
146
129
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -171,8 +154,11 @@ declare const ListsGroupSchema: z$1.ZodObject<{
|
|
|
171
154
|
label: z$1.ZodString;
|
|
172
155
|
}, z$1.core.$strip>;
|
|
173
156
|
}, z$1.core.$strip>;
|
|
174
|
-
declare const
|
|
157
|
+
declare const LovableCreatorSchema: z$1.ZodObject<{
|
|
175
158
|
name: z$1.ZodString;
|
|
159
|
+
type: z$1.ZodEnum<{
|
|
160
|
+
lovable: "lovable";
|
|
161
|
+
}>;
|
|
176
162
|
url: z$1.ZodString;
|
|
177
163
|
}, z$1.core.$strip>;
|
|
178
164
|
declare const PaginationSchema: z$1.ZodObject<{
|
|
@@ -510,39 +496,11 @@ declare const RemixJobStepInfoSchema: z$1.ZodObject<{
|
|
|
510
496
|
declare const RemixWarningSchema: z$1.ZodObject<{
|
|
511
497
|
code: z$1.ZodEnum<{
|
|
512
498
|
edge_functions_not_deployed: "edge_functions_not_deployed";
|
|
499
|
+
integration_skipped: "integration_skipped";
|
|
513
500
|
}>;
|
|
514
501
|
failed_edge_functions: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
alias: z$1.ZodOptional<z$1.ZodString>;
|
|
518
|
-
categories: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
519
|
-
creator: z$1.ZodObject<{
|
|
520
|
-
name: z$1.ZodString;
|
|
521
|
-
url: z$1.ZodString;
|
|
522
|
-
}, z$1.core.$strip>;
|
|
523
|
-
description: z$1.ZodString;
|
|
524
|
-
display_name: z$1.ZodString;
|
|
525
|
-
documentation_url: z$1.ZodString;
|
|
526
|
-
features: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
527
|
-
body: z$1.ZodOptional<z$1.ZodString>;
|
|
528
|
-
items: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
529
|
-
title: z$1.ZodString;
|
|
530
|
-
}, z$1.core.$strip>>>>;
|
|
531
|
-
id: z$1.ZodString;
|
|
532
|
-
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
533
|
-
level: z$1.ZodString;
|
|
534
|
-
manual_connect_hint: z$1.ZodOptional<z$1.ZodString>;
|
|
535
|
-
permissions: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
536
|
-
control_type: z$1.ZodOptional<z$1.ZodString>;
|
|
537
|
-
default_preference: z$1.ZodString;
|
|
538
|
-
description: z$1.ZodString;
|
|
539
|
-
display_name: z$1.ZodString;
|
|
540
|
-
is_primary: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
541
|
-
name: z$1.ZodString;
|
|
542
|
-
}, z$1.core.$strip>>>;
|
|
543
|
-
searchTags: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
544
|
-
short_description: z$1.ZodString;
|
|
545
|
-
toolIntegrationName: z$1.ZodOptional<z$1.ZodString>;
|
|
502
|
+
reason: z$1.ZodOptional<z$1.ZodString>;
|
|
503
|
+
skipped_integration: z$1.ZodOptional<z$1.ZodString>;
|
|
546
504
|
}, z$1.core.$strip>;
|
|
547
505
|
declare const SearchProjectItemSchema: z$1.ZodObject<{
|
|
548
506
|
abandoned_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
@@ -684,66 +642,6 @@ declare const StandardConnectorPromotionSchema: z$1.ZodObject<{
|
|
|
684
642
|
message: z$1.ZodString;
|
|
685
643
|
until: z$1.ZodISODateTime;
|
|
686
644
|
}, z$1.core.$strip>;
|
|
687
|
-
declare const StandardConnectorApiSchema: z$1.ZodObject<{
|
|
688
|
-
can_restrict_to_admins: z$1.ZodBoolean;
|
|
689
|
-
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
690
|
-
custom: "custom";
|
|
691
|
-
ecommerce: "ecommerce";
|
|
692
|
-
marketing: "marketing";
|
|
693
|
-
productivity: "productivity";
|
|
694
|
-
sales: "sales";
|
|
695
|
-
support: "support";
|
|
696
|
-
other: "other";
|
|
697
|
-
messaging: "messaging";
|
|
698
|
-
development: "development";
|
|
699
|
-
payments: "payments";
|
|
700
|
-
security: "security";
|
|
701
|
-
}>>;
|
|
702
|
-
connection_scope: z$1.ZodEnum<{
|
|
703
|
-
workspace: "workspace";
|
|
704
|
-
project: "project";
|
|
705
|
-
}>;
|
|
706
|
-
creator: z$1.ZodObject<{
|
|
707
|
-
name: z$1.ZodString;
|
|
708
|
-
url: z$1.ZodString;
|
|
709
|
-
}, z$1.core.$strip>;
|
|
710
|
-
data_scope: z$1.ZodEnum<{
|
|
711
|
-
organization: "organization";
|
|
712
|
-
individual: "individual";
|
|
713
|
-
}>;
|
|
714
|
-
description: z$1.ZodString;
|
|
715
|
-
display_name: z$1.ZodString;
|
|
716
|
-
documentation_url: z$1.ZodString;
|
|
717
|
-
has_connections: z$1.ZodBoolean;
|
|
718
|
-
has_metered_option: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
719
|
-
id: z$1.ZodString;
|
|
720
|
-
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
721
|
-
is_new: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
722
|
-
promotion: z$1.ZodOptional<z$1.ZodObject<{
|
|
723
|
-
help_link: z$1.ZodString;
|
|
724
|
-
link: z$1.ZodString;
|
|
725
|
-
message: z$1.ZodString;
|
|
726
|
-
until: z$1.ZodISODateTime;
|
|
727
|
-
}, z$1.core.$strip>>;
|
|
728
|
-
searchTags: z$1.ZodArray<z$1.ZodString>;
|
|
729
|
-
short_description: z$1.ZodString;
|
|
730
|
-
single_connection: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
731
|
-
source: z$1.ZodOptional<z$1.ZodEnum<{
|
|
732
|
-
native: "native";
|
|
733
|
-
user_defined: "user_defined";
|
|
734
|
-
}>>;
|
|
735
|
-
terms_url: z$1.ZodOptional<z$1.ZodString>;
|
|
736
|
-
vendor: z$1.ZodOptional<z$1.ZodEnum<{
|
|
737
|
-
google: "google";
|
|
738
|
-
microsoft: "microsoft";
|
|
739
|
-
aws: "aws";
|
|
740
|
-
meta: "meta";
|
|
741
|
-
}>>;
|
|
742
|
-
who_can_create: z$1.ZodEnum<{
|
|
743
|
-
editors_and_admins: "editors_and_admins";
|
|
744
|
-
admins_only: "admins_only";
|
|
745
|
-
}>;
|
|
746
|
-
}, z$1.core.$strip>;
|
|
747
645
|
declare const TemplateProjectResponseSchema: z$1.ZodObject<{
|
|
748
646
|
description: z$1.ZodString;
|
|
749
647
|
id: z$1.ZodString;
|
|
@@ -772,7 +670,7 @@ declare const TimeSeriesDataSchema: z$1.ZodObject<{
|
|
|
772
670
|
label: z$1.ZodString;
|
|
773
671
|
total: z$1.ZodNumber;
|
|
774
672
|
}, z$1.core.$strip>;
|
|
775
|
-
declare const
|
|
673
|
+
declare const ChannelTimeSeriesGroupSchema: z$1.ZodObject<{
|
|
776
674
|
bounceRate: z$1.ZodObject<{
|
|
777
675
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
778
676
|
date: z$1.ZodString;
|
|
@@ -814,22 +712,8 @@ declare const TimeSeriesGroupSchema: z$1.ZodObject<{
|
|
|
814
712
|
total: z$1.ZodNumber;
|
|
815
713
|
}, z$1.core.$strip>;
|
|
816
714
|
}, z$1.core.$strip>;
|
|
817
|
-
declare const
|
|
715
|
+
declare const ChannelAnalyticsSchema: z$1.ZodObject<{
|
|
818
716
|
lists: z$1.ZodObject<{
|
|
819
|
-
country: z$1.ZodObject<{
|
|
820
|
-
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
821
|
-
label: z$1.ZodString;
|
|
822
|
-
value: z$1.ZodNumber;
|
|
823
|
-
}, z$1.core.$strip>>>;
|
|
824
|
-
label: z$1.ZodString;
|
|
825
|
-
}, z$1.core.$strip>;
|
|
826
|
-
device: z$1.ZodObject<{
|
|
827
|
-
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
828
|
-
label: z$1.ZodString;
|
|
829
|
-
value: z$1.ZodNumber;
|
|
830
|
-
}, z$1.core.$strip>>>;
|
|
831
|
-
label: z$1.ZodString;
|
|
832
|
-
}, z$1.core.$strip>;
|
|
833
717
|
page: z$1.ZodObject<{
|
|
834
718
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
835
719
|
label: z$1.ZodString;
|
|
@@ -888,82 +772,196 @@ declare const ProjectAnalyticsResponseSchema: z$1.ZodObject<{
|
|
|
888
772
|
}, z$1.core.$strip>;
|
|
889
773
|
}, z$1.core.$strip>;
|
|
890
774
|
}, z$1.core.$strip>;
|
|
891
|
-
declare const
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
775
|
+
declare const TimeSeriesGroupSchema: z$1.ZodObject<{
|
|
776
|
+
bounceRate: z$1.ZodObject<{
|
|
777
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
778
|
+
date: z$1.ZodString;
|
|
779
|
+
value: z$1.ZodNumber;
|
|
780
|
+
}, z$1.core.$strip>>>;
|
|
781
|
+
label: z$1.ZodString;
|
|
782
|
+
total: z$1.ZodNumber;
|
|
783
|
+
}, z$1.core.$strip>;
|
|
784
|
+
pageviews: z$1.ZodObject<{
|
|
785
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
786
|
+
date: z$1.ZodString;
|
|
787
|
+
value: z$1.ZodNumber;
|
|
788
|
+
}, z$1.core.$strip>>>;
|
|
789
|
+
label: z$1.ZodString;
|
|
790
|
+
total: z$1.ZodNumber;
|
|
791
|
+
}, z$1.core.$strip>;
|
|
792
|
+
pageviewsPerVisit: z$1.ZodObject<{
|
|
793
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
794
|
+
date: z$1.ZodString;
|
|
795
|
+
value: z$1.ZodNumber;
|
|
796
|
+
}, z$1.core.$strip>>>;
|
|
797
|
+
label: z$1.ZodString;
|
|
798
|
+
total: z$1.ZodNumber;
|
|
799
|
+
}, z$1.core.$strip>;
|
|
800
|
+
sessionDuration: z$1.ZodObject<{
|
|
801
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
802
|
+
date: z$1.ZodString;
|
|
803
|
+
value: z$1.ZodNumber;
|
|
804
|
+
}, z$1.core.$strip>>>;
|
|
805
|
+
label: z$1.ZodString;
|
|
806
|
+
total: z$1.ZodNumber;
|
|
807
|
+
}, z$1.core.$strip>;
|
|
808
|
+
visitors: z$1.ZodObject<{
|
|
809
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
810
|
+
date: z$1.ZodString;
|
|
811
|
+
value: z$1.ZodNumber;
|
|
812
|
+
}, z$1.core.$strip>>>;
|
|
813
|
+
label: z$1.ZodString;
|
|
814
|
+
total: z$1.ZodNumber;
|
|
815
|
+
}, z$1.core.$strip>;
|
|
901
816
|
}, z$1.core.$strip>;
|
|
902
|
-
declare const
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
817
|
+
declare const ProjectAnalyticsResponseSchema: z$1.ZodObject<{
|
|
818
|
+
channels: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
819
|
+
lists: z$1.ZodObject<{
|
|
820
|
+
page: z$1.ZodObject<{
|
|
821
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
822
|
+
label: z$1.ZodString;
|
|
823
|
+
value: z$1.ZodNumber;
|
|
824
|
+
}, z$1.core.$strip>>>;
|
|
825
|
+
label: z$1.ZodString;
|
|
826
|
+
}, z$1.core.$strip>;
|
|
827
|
+
source: z$1.ZodObject<{
|
|
828
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
829
|
+
label: z$1.ZodString;
|
|
830
|
+
value: z$1.ZodNumber;
|
|
831
|
+
}, z$1.core.$strip>>>;
|
|
832
|
+
label: z$1.ZodString;
|
|
833
|
+
}, z$1.core.$strip>;
|
|
834
|
+
}, z$1.core.$strip>;
|
|
835
|
+
timeSeries: z$1.ZodObject<{
|
|
836
|
+
bounceRate: z$1.ZodObject<{
|
|
837
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
838
|
+
date: z$1.ZodString;
|
|
839
|
+
value: z$1.ZodNumber;
|
|
840
|
+
}, z$1.core.$strip>>>;
|
|
841
|
+
label: z$1.ZodString;
|
|
842
|
+
total: z$1.ZodNumber;
|
|
843
|
+
}, z$1.core.$strip>;
|
|
844
|
+
pageviews: z$1.ZodObject<{
|
|
845
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
846
|
+
date: z$1.ZodString;
|
|
847
|
+
value: z$1.ZodNumber;
|
|
848
|
+
}, z$1.core.$strip>>>;
|
|
849
|
+
label: z$1.ZodString;
|
|
850
|
+
total: z$1.ZodNumber;
|
|
851
|
+
}, z$1.core.$strip>;
|
|
852
|
+
pageviewsPerVisit: z$1.ZodObject<{
|
|
853
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
854
|
+
date: z$1.ZodString;
|
|
855
|
+
value: z$1.ZodNumber;
|
|
856
|
+
}, z$1.core.$strip>>>;
|
|
857
|
+
label: z$1.ZodString;
|
|
858
|
+
total: z$1.ZodNumber;
|
|
859
|
+
}, z$1.core.$strip>;
|
|
860
|
+
sessionDuration: z$1.ZodObject<{
|
|
861
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
862
|
+
date: z$1.ZodString;
|
|
863
|
+
value: z$1.ZodNumber;
|
|
864
|
+
}, z$1.core.$strip>>>;
|
|
865
|
+
label: z$1.ZodString;
|
|
866
|
+
total: z$1.ZodNumber;
|
|
867
|
+
}, z$1.core.$strip>;
|
|
868
|
+
visitors: z$1.ZodObject<{
|
|
869
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
870
|
+
date: z$1.ZodString;
|
|
871
|
+
value: z$1.ZodNumber;
|
|
872
|
+
}, z$1.core.$strip>>>;
|
|
873
|
+
label: z$1.ZodString;
|
|
874
|
+
total: z$1.ZodNumber;
|
|
875
|
+
}, z$1.core.$strip>;
|
|
876
|
+
}, z$1.core.$strip>;
|
|
877
|
+
}, z$1.core.$strip>>>;
|
|
878
|
+
channelsSource: z$1.ZodOptional<z$1.ZodEnum<{
|
|
879
|
+
legacy: "legacy";
|
|
880
|
+
user_app_events: "user_app_events";
|
|
922
881
|
}>>;
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
882
|
+
lists: z$1.ZodObject<{
|
|
883
|
+
country: z$1.ZodObject<{
|
|
884
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
885
|
+
label: z$1.ZodString;
|
|
886
|
+
value: z$1.ZodNumber;
|
|
887
|
+
}, z$1.core.$strip>>>;
|
|
888
|
+
label: z$1.ZodString;
|
|
889
|
+
}, z$1.core.$strip>;
|
|
890
|
+
device: z$1.ZodObject<{
|
|
891
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
892
|
+
label: z$1.ZodString;
|
|
893
|
+
value: z$1.ZodNumber;
|
|
894
|
+
}, z$1.core.$strip>>>;
|
|
895
|
+
label: z$1.ZodString;
|
|
896
|
+
}, z$1.core.$strip>;
|
|
897
|
+
page: z$1.ZodObject<{
|
|
898
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
899
|
+
label: z$1.ZodString;
|
|
900
|
+
value: z$1.ZodNumber;
|
|
901
|
+
}, z$1.core.$strip>>>;
|
|
902
|
+
label: z$1.ZodString;
|
|
903
|
+
}, z$1.core.$strip>;
|
|
904
|
+
source: z$1.ZodObject<{
|
|
905
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
906
|
+
label: z$1.ZodString;
|
|
907
|
+
value: z$1.ZodNumber;
|
|
908
|
+
}, z$1.core.$strip>>>;
|
|
909
|
+
label: z$1.ZodString;
|
|
910
|
+
}, z$1.core.$strip>;
|
|
928
911
|
}, z$1.core.$strip>;
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
912
|
+
timeSeries: z$1.ZodObject<{
|
|
913
|
+
bounceRate: z$1.ZodObject<{
|
|
914
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
915
|
+
date: z$1.ZodString;
|
|
916
|
+
value: z$1.ZodNumber;
|
|
917
|
+
}, z$1.core.$strip>>>;
|
|
918
|
+
label: z$1.ZodString;
|
|
919
|
+
total: z$1.ZodNumber;
|
|
920
|
+
}, z$1.core.$strip>;
|
|
921
|
+
pageviews: z$1.ZodObject<{
|
|
922
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
923
|
+
date: z$1.ZodString;
|
|
924
|
+
value: z$1.ZodNumber;
|
|
925
|
+
}, z$1.core.$strip>>>;
|
|
926
|
+
label: z$1.ZodString;
|
|
927
|
+
total: z$1.ZodNumber;
|
|
928
|
+
}, z$1.core.$strip>;
|
|
929
|
+
pageviewsPerVisit: z$1.ZodObject<{
|
|
930
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
931
|
+
date: z$1.ZodString;
|
|
932
|
+
value: z$1.ZodNumber;
|
|
933
|
+
}, z$1.core.$strip>>>;
|
|
934
|
+
label: z$1.ZodString;
|
|
935
|
+
total: z$1.ZodNumber;
|
|
936
|
+
}, z$1.core.$strip>;
|
|
937
|
+
sessionDuration: z$1.ZodObject<{
|
|
938
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
939
|
+
date: z$1.ZodString;
|
|
940
|
+
value: z$1.ZodNumber;
|
|
941
|
+
}, z$1.core.$strip>>>;
|
|
942
|
+
label: z$1.ZodString;
|
|
943
|
+
total: z$1.ZodNumber;
|
|
944
|
+
}, z$1.core.$strip>;
|
|
945
|
+
visitors: z$1.ZodObject<{
|
|
946
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
947
|
+
date: z$1.ZodString;
|
|
948
|
+
value: z$1.ZodNumber;
|
|
949
|
+
}, z$1.core.$strip>>>;
|
|
950
|
+
label: z$1.ZodString;
|
|
951
|
+
total: z$1.ZodNumber;
|
|
952
|
+
}, z$1.core.$strip>;
|
|
953
|
+
}, z$1.core.$strip>;
|
|
954
|
+
}, z$1.core.$strip>;
|
|
955
|
+
declare const ToolDisplayDataSchema: z$1.ZodObject<{
|
|
956
|
+
default_preference: z$1.ZodOptional<z$1.ZodEnum<{
|
|
957
|
+
never_ask: "never_ask";
|
|
958
|
+
ask: "ask";
|
|
959
|
+
disable: "disable";
|
|
960
|
+
}>>;
|
|
961
|
+
description: z$1.ZodString;
|
|
962
|
+
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
963
|
+
name: z$1.ZodString;
|
|
964
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
967
965
|
}, z$1.core.$strip>;
|
|
968
966
|
declare const TrendDataPointSchema: z$1.ZodObject<{
|
|
969
967
|
time: z$1.ZodString;
|
|
@@ -1057,6 +1055,252 @@ declare const PublicV1ProjectAnalyticsBodySchema: z$1.ZodObject<{
|
|
|
1057
1055
|
}, z$1.core.$strip>>>;
|
|
1058
1056
|
}, z$1.core.$strip>>;
|
|
1059
1057
|
}, z$1.core.$strip>;
|
|
1058
|
+
declare const UserCreatorSchema: z$1.ZodObject<{
|
|
1059
|
+
type: z$1.ZodEnum<{
|
|
1060
|
+
user: "user";
|
|
1061
|
+
}>;
|
|
1062
|
+
user_id: z$1.ZodString;
|
|
1063
|
+
}, z$1.core.$strip>;
|
|
1064
|
+
declare const CreatorSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1065
|
+
name: z$1.ZodString;
|
|
1066
|
+
url: z$1.ZodString;
|
|
1067
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1068
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1069
|
+
user_id: z$1.ZodString;
|
|
1070
|
+
type: z$1.ZodLiteral<"user">;
|
|
1071
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1072
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1073
|
+
name: z$1.ZodString;
|
|
1074
|
+
url: z$1.ZodString;
|
|
1075
|
+
type: z$1.ZodLiteral<"company">;
|
|
1076
|
+
}, z$1.core.$strip>], "type">;
|
|
1077
|
+
declare const AppUserConnectorApiSchema: z$1.ZodObject<{
|
|
1078
|
+
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1079
|
+
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1080
|
+
custom: "custom";
|
|
1081
|
+
ecommerce: "ecommerce";
|
|
1082
|
+
marketing: "marketing";
|
|
1083
|
+
productivity: "productivity";
|
|
1084
|
+
sales: "sales";
|
|
1085
|
+
support: "support";
|
|
1086
|
+
other: "other";
|
|
1087
|
+
messaging: "messaging";
|
|
1088
|
+
development: "development";
|
|
1089
|
+
payments: "payments";
|
|
1090
|
+
security: "security";
|
|
1091
|
+
}>>;
|
|
1092
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1093
|
+
name: z$1.ZodString;
|
|
1094
|
+
url: z$1.ZodString;
|
|
1095
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1096
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1097
|
+
user_id: z$1.ZodString;
|
|
1098
|
+
type: z$1.ZodLiteral<"user">;
|
|
1099
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1100
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1101
|
+
name: z$1.ZodString;
|
|
1102
|
+
url: z$1.ZodString;
|
|
1103
|
+
type: z$1.ZodLiteral<"company">;
|
|
1104
|
+
}, z$1.core.$strip>], "type">;
|
|
1105
|
+
display_name: z$1.ZodString;
|
|
1106
|
+
documentation_url: z$1.ZodString;
|
|
1107
|
+
has_clients: z$1.ZodBoolean;
|
|
1108
|
+
id: z$1.ZodString;
|
|
1109
|
+
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
1110
|
+
long_description: z$1.ZodString;
|
|
1111
|
+
search_tags: z$1.ZodArray<z$1.ZodString>;
|
|
1112
|
+
short_description: z$1.ZodString;
|
|
1113
|
+
terms_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1114
|
+
who_can_create: z$1.ZodEnum<{
|
|
1115
|
+
editors_and_admins: "editors_and_admins";
|
|
1116
|
+
admins_only: "admins_only";
|
|
1117
|
+
}>;
|
|
1118
|
+
}, z$1.core.$strip>;
|
|
1119
|
+
declare const McpConnectorSchema: z$1.ZodObject<{
|
|
1120
|
+
app_mcp_auth_method: z$1.ZodOptional<z$1.ZodString>;
|
|
1121
|
+
app_mcp_project_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1122
|
+
app_mcp_server_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1123
|
+
app_site_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1124
|
+
category: z$1.ZodEnum<{
|
|
1125
|
+
custom: "custom";
|
|
1126
|
+
ecommerce: "ecommerce";
|
|
1127
|
+
marketing: "marketing";
|
|
1128
|
+
productivity: "productivity";
|
|
1129
|
+
sales: "sales";
|
|
1130
|
+
support: "support";
|
|
1131
|
+
other: "other";
|
|
1132
|
+
messaging: "messaging";
|
|
1133
|
+
development: "development";
|
|
1134
|
+
payments: "payments";
|
|
1135
|
+
security: "security";
|
|
1136
|
+
}>;
|
|
1137
|
+
connect_interaction: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1138
|
+
desktop_app_download: "desktop_app_download";
|
|
1139
|
+
}>>;
|
|
1140
|
+
connection_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1141
|
+
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1142
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1143
|
+
name: z$1.ZodString;
|
|
1144
|
+
url: z$1.ZodString;
|
|
1145
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1146
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1147
|
+
user_id: z$1.ZodString;
|
|
1148
|
+
type: z$1.ZodLiteral<"user">;
|
|
1149
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1150
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1151
|
+
name: z$1.ZodString;
|
|
1152
|
+
url: z$1.ZodString;
|
|
1153
|
+
type: z$1.ZodLiteral<"company">;
|
|
1154
|
+
}, z$1.core.$strip>], "type">;
|
|
1155
|
+
custom_url_hint: z$1.ZodOptional<z$1.ZodString>;
|
|
1156
|
+
display_name: z$1.ZodString;
|
|
1157
|
+
documentation_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1158
|
+
icon_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1159
|
+
id: z$1.ZodString;
|
|
1160
|
+
info: z$1.ZodOptional<z$1.ZodString>;
|
|
1161
|
+
integration_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1162
|
+
is_connected: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1163
|
+
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
1164
|
+
launched: z$1.ZodBoolean;
|
|
1165
|
+
parent_registry_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1166
|
+
platform_availability: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
1167
|
+
webapp: "webapp";
|
|
1168
|
+
desktop: "desktop";
|
|
1169
|
+
}>>>;
|
|
1170
|
+
refresh_failures: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1171
|
+
requires_custom_url: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1172
|
+
searchTags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
1173
|
+
server_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1174
|
+
status: z$1.ZodEnum<{
|
|
1175
|
+
connected: "connected";
|
|
1176
|
+
available: "available";
|
|
1177
|
+
disabled: "disabled";
|
|
1178
|
+
}>;
|
|
1179
|
+
summary: z$1.ZodString;
|
|
1180
|
+
tools: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
1181
|
+
default_preference: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1182
|
+
never_ask: "never_ask";
|
|
1183
|
+
ask: "ask";
|
|
1184
|
+
disable: "disable";
|
|
1185
|
+
}>>;
|
|
1186
|
+
description: z$1.ZodString;
|
|
1187
|
+
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1188
|
+
name: z$1.ZodString;
|
|
1189
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
1190
|
+
}, z$1.core.$strip>>>;
|
|
1191
|
+
url: z$1.ZodOptional<z$1.ZodString>;
|
|
1192
|
+
url_placeholder: z$1.ZodOptional<z$1.ZodString>;
|
|
1193
|
+
}, z$1.core.$strip>;
|
|
1194
|
+
declare const SeamlessConnectorApiSchema: z$1.ZodObject<{
|
|
1195
|
+
alias: z$1.ZodOptional<z$1.ZodString>;
|
|
1196
|
+
categories: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
1197
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1198
|
+
name: z$1.ZodString;
|
|
1199
|
+
url: z$1.ZodString;
|
|
1200
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1201
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1202
|
+
user_id: z$1.ZodString;
|
|
1203
|
+
type: z$1.ZodLiteral<"user">;
|
|
1204
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1205
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1206
|
+
name: z$1.ZodString;
|
|
1207
|
+
url: z$1.ZodString;
|
|
1208
|
+
type: z$1.ZodLiteral<"company">;
|
|
1209
|
+
}, z$1.core.$strip>], "type">;
|
|
1210
|
+
description: z$1.ZodString;
|
|
1211
|
+
display_name: z$1.ZodString;
|
|
1212
|
+
documentation_url: z$1.ZodString;
|
|
1213
|
+
features: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1214
|
+
body: z$1.ZodOptional<z$1.ZodString>;
|
|
1215
|
+
items: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
1216
|
+
title: z$1.ZodString;
|
|
1217
|
+
}, z$1.core.$strip>>>>;
|
|
1218
|
+
id: z$1.ZodString;
|
|
1219
|
+
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
1220
|
+
level: z$1.ZodString;
|
|
1221
|
+
manual_connect_hint: z$1.ZodOptional<z$1.ZodString>;
|
|
1222
|
+
permissions: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1223
|
+
control_type: z$1.ZodOptional<z$1.ZodString>;
|
|
1224
|
+
default_preference: z$1.ZodString;
|
|
1225
|
+
description: z$1.ZodString;
|
|
1226
|
+
display_name: z$1.ZodString;
|
|
1227
|
+
is_primary: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1228
|
+
name: z$1.ZodString;
|
|
1229
|
+
}, z$1.core.$strip>>>;
|
|
1230
|
+
searchTags: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
1231
|
+
short_description: z$1.ZodString;
|
|
1232
|
+
toolIntegrationName: z$1.ZodOptional<z$1.ZodString>;
|
|
1233
|
+
}, z$1.core.$strip>;
|
|
1234
|
+
declare const StandardConnectorApiSchema: z$1.ZodObject<{
|
|
1235
|
+
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1236
|
+
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1237
|
+
custom: "custom";
|
|
1238
|
+
ecommerce: "ecommerce";
|
|
1239
|
+
marketing: "marketing";
|
|
1240
|
+
productivity: "productivity";
|
|
1241
|
+
sales: "sales";
|
|
1242
|
+
support: "support";
|
|
1243
|
+
other: "other";
|
|
1244
|
+
messaging: "messaging";
|
|
1245
|
+
development: "development";
|
|
1246
|
+
payments: "payments";
|
|
1247
|
+
security: "security";
|
|
1248
|
+
}>>;
|
|
1249
|
+
connection_scope: z$1.ZodEnum<{
|
|
1250
|
+
workspace: "workspace";
|
|
1251
|
+
project: "project";
|
|
1252
|
+
}>;
|
|
1253
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1254
|
+
name: z$1.ZodString;
|
|
1255
|
+
url: z$1.ZodString;
|
|
1256
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1257
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1258
|
+
user_id: z$1.ZodString;
|
|
1259
|
+
type: z$1.ZodLiteral<"user">;
|
|
1260
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1261
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1262
|
+
name: z$1.ZodString;
|
|
1263
|
+
url: z$1.ZodString;
|
|
1264
|
+
type: z$1.ZodLiteral<"company">;
|
|
1265
|
+
}, z$1.core.$strip>], "type">;
|
|
1266
|
+
data_scope: z$1.ZodEnum<{
|
|
1267
|
+
organization: "organization";
|
|
1268
|
+
individual: "individual";
|
|
1269
|
+
}>;
|
|
1270
|
+
description: z$1.ZodString;
|
|
1271
|
+
display_name: z$1.ZodString;
|
|
1272
|
+
documentation_url: z$1.ZodString;
|
|
1273
|
+
has_connections: z$1.ZodBoolean;
|
|
1274
|
+
has_metered_option: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1275
|
+
id: z$1.ZodString;
|
|
1276
|
+
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
1277
|
+
is_new: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1278
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1279
|
+
promotion: z$1.ZodOptional<z$1.ZodObject<{
|
|
1280
|
+
help_link: z$1.ZodString;
|
|
1281
|
+
link: z$1.ZodString;
|
|
1282
|
+
message: z$1.ZodString;
|
|
1283
|
+
until: z$1.ZodISODateTime;
|
|
1284
|
+
}, z$1.core.$strip>>;
|
|
1285
|
+
searchTags: z$1.ZodArray<z$1.ZodString>;
|
|
1286
|
+
short_description: z$1.ZodString;
|
|
1287
|
+
single_connection: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1288
|
+
source: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1289
|
+
native: "native";
|
|
1290
|
+
user_defined: "user_defined";
|
|
1291
|
+
}>>;
|
|
1292
|
+
terms_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1293
|
+
vendor: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1294
|
+
google: "google";
|
|
1295
|
+
microsoft: "microsoft";
|
|
1296
|
+
aws: "aws";
|
|
1297
|
+
meta: "meta";
|
|
1298
|
+
}>>;
|
|
1299
|
+
who_can_create: z$1.ZodEnum<{
|
|
1300
|
+
editors_and_admins: "editors_and_admins";
|
|
1301
|
+
admins_only: "admins_only";
|
|
1302
|
+
}>;
|
|
1303
|
+
}, z$1.core.$strip>;
|
|
1060
1304
|
declare const V1AddConnectorInputBodySchema: z$1.ZodObject<{
|
|
1061
1305
|
auth_type: z$1.ZodEnum<{
|
|
1062
1306
|
none: "none";
|
|
@@ -1359,10 +1603,19 @@ declare const V1ListAppUserConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1359
1603
|
payments: "payments";
|
|
1360
1604
|
security: "security";
|
|
1361
1605
|
}>>;
|
|
1362
|
-
creator: z$1.ZodObject<{
|
|
1606
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1363
1607
|
name: z$1.ZodString;
|
|
1364
1608
|
url: z$1.ZodString;
|
|
1365
|
-
|
|
1609
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1610
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1611
|
+
user_id: z$1.ZodString;
|
|
1612
|
+
type: z$1.ZodLiteral<"user">;
|
|
1613
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1614
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1615
|
+
name: z$1.ZodString;
|
|
1616
|
+
url: z$1.ZodString;
|
|
1617
|
+
type: z$1.ZodLiteral<"company">;
|
|
1618
|
+
}, z$1.core.$strip>], "type">;
|
|
1366
1619
|
display_name: z$1.ZodString;
|
|
1367
1620
|
documentation_url: z$1.ZodString;
|
|
1368
1621
|
has_clients: z$1.ZodBoolean;
|
|
@@ -1441,10 +1694,19 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1441
1694
|
}>>;
|
|
1442
1695
|
connection_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1443
1696
|
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1444
|
-
creator: z$1.ZodObject<{
|
|
1697
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1445
1698
|
name: z$1.ZodString;
|
|
1446
1699
|
url: z$1.ZodString;
|
|
1447
|
-
|
|
1700
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1701
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1702
|
+
user_id: z$1.ZodString;
|
|
1703
|
+
type: z$1.ZodLiteral<"user">;
|
|
1704
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1705
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1706
|
+
name: z$1.ZodString;
|
|
1707
|
+
url: z$1.ZodString;
|
|
1708
|
+
type: z$1.ZodLiteral<"company">;
|
|
1709
|
+
}, z$1.core.$strip>], "type">;
|
|
1448
1710
|
custom_url_hint: z$1.ZodOptional<z$1.ZodString>;
|
|
1449
1711
|
display_name: z$1.ZodString;
|
|
1450
1712
|
documentation_url: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1494,10 +1756,19 @@ declare const V1ListSeamlessConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1494
1756
|
connectors: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1495
1757
|
alias: z$1.ZodOptional<z$1.ZodString>;
|
|
1496
1758
|
categories: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
1497
|
-
creator: z$1.ZodObject<{
|
|
1759
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1498
1760
|
name: z$1.ZodString;
|
|
1499
1761
|
url: z$1.ZodString;
|
|
1500
|
-
|
|
1762
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1763
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1764
|
+
user_id: z$1.ZodString;
|
|
1765
|
+
type: z$1.ZodLiteral<"user">;
|
|
1766
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1767
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1768
|
+
name: z$1.ZodString;
|
|
1769
|
+
url: z$1.ZodString;
|
|
1770
|
+
type: z$1.ZodLiteral<"company">;
|
|
1771
|
+
}, z$1.core.$strip>], "type">;
|
|
1501
1772
|
description: z$1.ZodString;
|
|
1502
1773
|
display_name: z$1.ZodString;
|
|
1503
1774
|
documentation_url: z$1.ZodString;
|
|
@@ -1545,10 +1816,19 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1545
1816
|
workspace: "workspace";
|
|
1546
1817
|
project: "project";
|
|
1547
1818
|
}>;
|
|
1548
|
-
creator: z$1.ZodObject<{
|
|
1819
|
+
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1549
1820
|
name: z$1.ZodString;
|
|
1550
1821
|
url: z$1.ZodString;
|
|
1551
|
-
|
|
1822
|
+
type: z$1.ZodLiteral<"lovable">;
|
|
1823
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1824
|
+
user_id: z$1.ZodString;
|
|
1825
|
+
type: z$1.ZodLiteral<"user">;
|
|
1826
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
1827
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1828
|
+
name: z$1.ZodString;
|
|
1829
|
+
url: z$1.ZodString;
|
|
1830
|
+
type: z$1.ZodLiteral<"company">;
|
|
1831
|
+
}, z$1.core.$strip>], "type">;
|
|
1552
1832
|
data_scope: z$1.ZodEnum<{
|
|
1553
1833
|
organization: "organization";
|
|
1554
1834
|
individual: "individual";
|
|
@@ -1561,6 +1841,7 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1561
1841
|
id: z$1.ZodString;
|
|
1562
1842
|
is_enabled_for_workspace: z$1.ZodBoolean;
|
|
1563
1843
|
is_new: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1844
|
+
logo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1564
1845
|
promotion: z$1.ZodOptional<z$1.ZodObject<{
|
|
1565
1846
|
help_link: z$1.ZodString;
|
|
1566
1847
|
link: z$1.ZodString;
|
|
@@ -1890,8 +2171,11 @@ declare const V1RemixProgressResultSchema: z$1.ZodObject<{
|
|
|
1890
2171
|
warnings: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1891
2172
|
code: z$1.ZodEnum<{
|
|
1892
2173
|
edge_functions_not_deployed: "edge_functions_not_deployed";
|
|
2174
|
+
integration_skipped: "integration_skipped";
|
|
1893
2175
|
}>;
|
|
1894
2176
|
failed_edge_functions: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
2177
|
+
reason: z$1.ZodOptional<z$1.ZodString>;
|
|
2178
|
+
skipped_integration: z$1.ZodOptional<z$1.ZodString>;
|
|
1895
2179
|
}, z$1.core.$strip>>>>;
|
|
1896
2180
|
}, z$1.core.$strip>;
|
|
1897
2181
|
declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
@@ -1902,8 +2186,11 @@ declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
|
1902
2186
|
warnings: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1903
2187
|
code: z$1.ZodEnum<{
|
|
1904
2188
|
edge_functions_not_deployed: "edge_functions_not_deployed";
|
|
2189
|
+
integration_skipped: "integration_skipped";
|
|
1905
2190
|
}>;
|
|
1906
2191
|
failed_edge_functions: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
2192
|
+
reason: z$1.ZodOptional<z$1.ZodString>;
|
|
2193
|
+
skipped_integration: z$1.ZodOptional<z$1.ZodString>;
|
|
1907
2194
|
}, z$1.core.$strip>>>>;
|
|
1908
2195
|
}, z$1.core.$strip>>;
|
|
1909
2196
|
status: z$1.ZodString;
|
|
@@ -1923,7 +2210,6 @@ declare const V1RemoveConnectorOutputBodySchema: z$1.ZodObject<{
|
|
|
1923
2210
|
}, z$1.core.$strip>;
|
|
1924
2211
|
declare const V1SecurityFindingSchema: z$1.ZodObject<{
|
|
1925
2212
|
category: z$1.ZodOptional<z$1.ZodString>;
|
|
1926
|
-
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1927
2213
|
created_at: z$1.ZodISODateTime;
|
|
1928
2214
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
1929
2215
|
details: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1993,7 +2279,6 @@ declare const V1SecurityScannerRunSchema: z$1.ZodObject<{
|
|
|
1993
2279
|
declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
1994
2280
|
findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1995
2281
|
category: z$1.ZodOptional<z$1.ZodString>;
|
|
1996
|
-
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1997
2282
|
created_at: z$1.ZodISODateTime;
|
|
1998
2283
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
1999
2284
|
details: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3221,5 +3506,5 @@ declare const V1DatabaseQueryOutputBodyWritableSchema: z.ZodObject<{
|
|
|
3221
3506
|
rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3222
3507
|
}, z.core.$strip>;
|
|
3223
3508
|
//#endregion
|
|
3224
|
-
export { AddProjectsToFolderResultSchema, AppUserConnectorApiSchema,
|
|
3509
|
+
export { AddProjectsToFolderResultSchema, AppUserConnectorApiSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, CreatorSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceMemberSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, PaginationSchema, ProjectAnalyticsResponseSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, RemixJobFailureSchema, RemixJobStepInfoSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, 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, V1MessageExportStatusSchema, V1MessageListItemSchema, V1MessageResponseSchema, V1MoveProjectsToFolderInputBodySchema, V1ProjectCloudBodySchema, V1ProjectCloudDiskSchema, V1ProjectCloudResourcePressureSchema, V1ProjectCloudResourceSignalSchema, 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, V1StartMessageExportInputBodySchema, V1StartMessageExportOutputBodySchema, V1TriggerSecurityScanInputBodySchema, V1TriggerSecurityScanResponseBodySchema, V1UnscopedFileSchema, V1UpdateMemberCreditLimitInputBodySchema, V1UpdateWorkspaceSettingsInputBodySchema, V1UpdateWorkspaceSettingsNestedInputBodySchema, V1UsagePeriodSchema, V1WorkspaceAuditLogEntrySchema, V1WorkspaceAuditLogsBodySchema, V1WorkspaceCreditHistoryBodySchema, V1WorkspaceCreditsBodySchema, V1WorkspaceCreditsExpiringGrantSchema, V1WorkspaceCreditsGrantTypeBalanceSchema, V1WorkspaceInsightsActivityFreshnessSchema, V1WorkspaceInsightsBodySchema, V1WorkspaceInsightsEdgeFunctionSchema, V1WorkspaceInsightsFindingSchema, V1WorkspaceInsightsOwnerSchema, V1WorkspaceInsightsProjectSchema, V1WorkspaceInsightsProjectsBodySchema, V1WorkspaceInsightsReasonSchema, V1WorkspaceInsightsReasonValuesSchema, V1WorkspaceInsightsReviewPrioritySchema, V1WorkspaceInsightsSignalsSchema, V1WorkspaceInsightsStatSchema, V1WorkspaceInsightsSummarySchema, V1WorkspaceMemberSchema, V1WorkspaceSettingsBodySchema, V1WorkspaceSkillDtoSchema, V1WorkspaceUsageBreakdownBodySchema, V1WorkspaceUsageBreakdownEntrySchema, V1WorkspaceUsageConnectorBreakdownSchema, V1WorkspaceUsageDatabaseBreakdownSchema, V1WorkspaceUsageGatewayModelSchema, V1WorkspaceUsageMeBodySchema, V1WorkspaceUsageProjectRowSchema, V1WorkspaceUsageProjectsBodySchema, V1WorkspaceUsageTimeseriesBodySchema, V1WorkspaceUsageTimeseriesBucketSchema, V1WriteWorkspaceSkillInputBodySchema, V1WriteWorkspaceSkillOutputBodySchema, VisibilityChangeInfoSchema, WorkspaceAnalyticsResponseSchema, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspaceSchema, WorkspaceWithMembershipSchema };
|
|
3225
3510
|
//# sourceMappingURL=schemas.d.ts.map
|