@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/dist/schemas.js CHANGED
@@ -214,7 +214,6 @@ const PublicV1GitFilesResponseSchema = z$1.object({
214
214
  ref: z$1.string()
215
215
  });
216
216
  const PiiLabelSchema = z$1.object({
217
- chat_message_id: z$1.string().optional(),
218
217
  chat_upload_id: z$1.string().optional(),
219
218
  connector_id: z$1.string().optional(),
220
219
  found_at: z$1.iso.datetime(),
@@ -229,7 +228,6 @@ const PiiLabelSchema = z$1.object({
229
228
  "very_likely"
230
229
  ]).optional(),
231
230
  quote: z$1.string().optional(),
232
- scan_id: z$1.string().optional(),
233
231
  sensitivity: z$1.enum([
234
232
  "low",
235
233
  "mid",
@@ -281,6 +279,11 @@ const ProjectSummarySchema = z$1.object({
281
279
  name: z$1.string().optional(),
282
280
  og_image_url: z$1.string().optional(),
283
281
  project_type: z$1.enum(["project", "library"]).optional(),
282
+ publish_audience: z$1.enum([
283
+ "public",
284
+ "workspace",
285
+ "custom"
286
+ ]).optional(),
284
287
  publish_visibility: z$1.enum([
285
288
  "public",
286
289
  "private",
@@ -291,8 +294,6 @@ const ProjectSummarySchema = z$1.object({
291
294
  "completed",
292
295
  "failed"
293
296
  ]).optional(),
294
- tech_stack: z$1.string().optional(),
295
- updated_at: z$1.iso.datetime().optional(),
296
297
  url: z$1.string().optional(),
297
298
  user_id: z$1.string().optional(),
298
299
  visibility: z$1.enum([
@@ -366,6 +367,45 @@ const DeploymentSchema = z$1.object({
366
367
  ]),
367
368
  url: z$1.string().optional()
368
369
  });
370
+ const SecurityFindingSchema = z$1.object({
371
+ category: z$1.string().optional(),
372
+ created_at: z$1.iso.datetime(),
373
+ description: z$1.string().optional(),
374
+ finding_id: z$1.string(),
375
+ level: z$1.enum([
376
+ "error",
377
+ "warn",
378
+ "info"
379
+ ]),
380
+ name: z$1.string(),
381
+ scanner_name: z$1.string(),
382
+ status: z$1.enum([
383
+ "open",
384
+ "fixed",
385
+ "ignored"
386
+ ]),
387
+ updated_at: z$1.iso.datetime()
388
+ });
389
+ const SecurityScanSchema = z$1.object({
390
+ commit_sha: z$1.string().optional(),
391
+ finished_at: z$1.iso.datetime().optional(),
392
+ requested_scanners: z$1.array(z$1.string()).nullable(),
393
+ scan_id: z$1.string(),
394
+ started_at: z$1.iso.datetime(),
395
+ status: z$1.enum([
396
+ "running",
397
+ "completed",
398
+ "failed"
399
+ ])
400
+ });
401
+ const SecurityScanPageSchema = z$1.object({
402
+ data: z$1.array(SecurityScanSchema).nullable(),
403
+ pagination: PaginationSchema
404
+ });
405
+ const SecurityScanDetailSchema = z$1.object({
406
+ findings: z$1.array(SecurityFindingSchema).nullable(),
407
+ scan: SecurityScanSchema
408
+ });
369
409
  const PublicV1SetProjectKnowledgeInputBodySchema = z$1.object({
370
410
  content: z$1.string(),
371
411
  project_id: z$1.string()
@@ -794,17 +834,6 @@ const V1AwaitingInputSummarySchema = z$1.object({
794
834
  prev_session_id: z$1.string().optional(),
795
835
  tool_id: z$1.string().optional()
796
836
  });
797
- const MemberCreditLimitSchema = z$1.object({
798
- monthly_credit_limit: z$1.number().optional(),
799
- temporary_limit_expires_at: z$1.iso.datetime().optional(),
800
- temporary_monthly_credit_limit: z$1.number().optional(),
801
- user_id: z$1.string()
802
- });
803
- const CreditLimitPageSchema = z$1.object({
804
- data: z$1.array(MemberCreditLimitSchema).nullable(),
805
- default_monthly_credit_limit: z$1.number().optional(),
806
- pagination: PaginationSchema
807
- });
808
837
  const BillingPeriodSchema = z$1.object({
809
838
  end: z$1.iso.datetime(),
810
839
  start: z$1.iso.datetime()
@@ -819,14 +848,13 @@ const CreditUsagePeriodSchema = z$1.object({
819
848
  ]).optional(),
820
849
  start: z$1.string()
821
850
  });
822
- const MemberCreditLimitUpdateSchema = z$1.object({
851
+ const V1BulkMemberCreditLimitItemSchema = z$1.object({
823
852
  duration: z$1.enum(["permanent", "current_period"]).optional(),
824
853
  email: z$1.string().optional(),
825
854
  monthly_credit_limit: z$1.number().gte(0).nullable(),
826
855
  user_id: z$1.string().optional()
827
856
  });
828
- const SetMemberCreditLimitsRequestSchema = z$1.object({ members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(1e3) });
829
- const MemberCreditLimitResultSchema = z$1.object({
857
+ const V1BulkMemberCreditLimitResultSchema = z$1.object({
830
858
  approved_until: z$1.iso.datetime().optional(),
831
859
  duration: z$1.enum(["current_period"]).optional(),
832
860
  email: z$1.string().optional(),
@@ -835,12 +863,12 @@ const MemberCreditLimitResultSchema = z$1.object({
835
863
  user_id: z$1.string().optional()
836
864
  });
837
865
  const V1BulkSetMemberCreditLimitInputBodySchema = z$1.object({
838
- members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(50),
866
+ members: z$1.array(V1BulkMemberCreditLimitItemSchema).min(1).max(50),
839
867
  workspace_id: z$1.string()
840
868
  });
841
- const SetMemberCreditLimitsResponseSchema = z$1.object({
869
+ const V1BulkSetMemberCreditLimitOutputBodySchema = z$1.object({
842
870
  failed: z$1.number(),
843
- results: z$1.array(MemberCreditLimitResultSchema).nullable(),
871
+ results: z$1.array(V1BulkMemberCreditLimitResultSchema).nullable(),
844
872
  successful: z$1.number(),
845
873
  total: z$1.number()
846
874
  });
@@ -882,6 +910,11 @@ const V1CreateProjectResponseSchema = z$1.object({
882
910
  og_image_url: z$1.string().optional(),
883
911
  preview_url: z$1.string().optional(),
884
912
  project_type: z$1.enum(["project", "library"]).optional(),
913
+ publish_audience: z$1.enum([
914
+ "public",
915
+ "workspace",
916
+ "custom"
917
+ ]).optional(),
885
918
  publish_visibility: z$1.enum([
886
919
  "public",
887
920
  "private",
@@ -892,8 +925,6 @@ const V1CreateProjectResponseSchema = z$1.object({
892
925
  "completed",
893
926
  "failed"
894
927
  ]).optional(),
895
- tech_stack: z$1.string().optional(),
896
- updated_at: z$1.iso.datetime().optional(),
897
928
  url: z$1.string().optional(),
898
929
  user_id: z$1.string().optional(),
899
930
  visibility: z$1.enum([
@@ -1136,6 +1167,11 @@ const ProjectSchema = z$1.object({
1136
1167
  og_image_url: z$1.string().optional(),
1137
1168
  preview_url: z$1.string().optional(),
1138
1169
  project_type: z$1.enum(["project", "library"]).optional(),
1170
+ publish_audience: z$1.enum([
1171
+ "public",
1172
+ "workspace",
1173
+ "custom"
1174
+ ]).optional(),
1139
1175
  publish_visibility: z$1.enum([
1140
1176
  "public",
1141
1177
  "private",
@@ -1146,8 +1182,6 @@ const ProjectSchema = z$1.object({
1146
1182
  "completed",
1147
1183
  "failed"
1148
1184
  ]).optional(),
1149
- tech_stack: z$1.string().optional(),
1150
- updated_at: z$1.iso.datetime().optional(),
1151
1185
  url: z$1.string().optional(),
1152
1186
  user_id: z$1.string().optional(),
1153
1187
  visibility: z$1.enum([
@@ -1187,32 +1221,31 @@ const V1RemixInitInputBodySchema = z$1.object({
1187
1221
  workspace_id: z$1.string()
1188
1222
  });
1189
1223
  const V1RemixInitOutputBodySchema = z$1.object({ job_id: z$1.string() });
1190
- const RemixResultSchema = z$1.object({
1224
+ const V1RemixProgressResultSchema = z$1.object({
1191
1225
  project_id: z$1.string(),
1192
1226
  warnings: z$1.array(RemixWarningSchema).nullish()
1193
1227
  });
1194
- const RemixJobSchema = z$1.object({
1228
+ const PublicV1RemixJobOutputBodySchema = z$1.object({
1195
1229
  error_code: z$1.string().optional(),
1196
1230
  error_message: z$1.string().optional(),
1197
- result: RemixResultSchema.optional(),
1231
+ result: V1RemixProgressResultSchema.optional(),
1198
1232
  status: z$1.enum([
1199
1233
  "preparing",
1200
1234
  "running",
1201
1235
  "completed",
1202
1236
  "error",
1203
1237
  "unknown"
1204
- ]),
1205
- step: RemixJobStepInfoSchema.optional()
1238
+ ])
1206
1239
  });
1207
1240
  const V1RemixProgressOutputBodySchema = z$1.object({
1208
1241
  error_code: z$1.string().optional(),
1209
1242
  error_message: z$1.string().optional(),
1210
- result: RemixResultSchema.optional(),
1243
+ result: V1RemixProgressResultSchema.optional(),
1211
1244
  status: z$1.string(),
1212
1245
  step: RemixJobStepInfoSchema.optional()
1213
1246
  });
1214
1247
  const V1RemoveConnectorOutputBodySchema = z$1.object({ success: z$1.boolean() });
1215
- const SecurityFindingSchema = z$1.object({
1248
+ const V1SecurityFindingSchema = z$1.object({
1216
1249
  category: z$1.string().optional(),
1217
1250
  created_at: z$1.iso.datetime(),
1218
1251
  description: z$1.string().optional(),
@@ -1237,13 +1270,13 @@ const SecurityFindingSchema = z$1.object({
1237
1270
  ]),
1238
1271
  updated_at: z$1.iso.datetime()
1239
1272
  });
1240
- const SecurityScanActorSchema = z$1.object({
1273
+ const V1SecurityScanActorSchema = z$1.object({
1241
1274
  email: z$1.string().optional(),
1242
1275
  id: z$1.string().optional(),
1243
1276
  name: z$1.string().optional(),
1244
1277
  type: z$1.enum(["user", "system"])
1245
1278
  });
1246
- const SecurityScanSchema = z$1.object({
1279
+ const V1SecurityScanSummarySchema = z$1.object({
1247
1280
  commit_sha: z$1.string().optional(),
1248
1281
  finished_at: z$1.iso.datetime().optional(),
1249
1282
  requested_scanners: z$1.array(z$1.string()).nullable(),
@@ -1266,13 +1299,13 @@ const SecurityScanSchema = z$1.object({
1266
1299
  "enterprise_batch",
1267
1300
  "gitsync_pull"
1268
1301
  ]),
1269
- triggered_by: SecurityScanActorSchema
1302
+ triggered_by: V1SecurityScanActorSchema
1270
1303
  });
1271
- const SecurityScanPageSchema = z$1.object({
1272
- data: z$1.array(SecurityScanSchema).nullable(),
1304
+ const CursorListResponseV1SecurityScanSummarySchema = z$1.object({
1305
+ data: z$1.array(V1SecurityScanSummarySchema).nullable(),
1273
1306
  pagination: PaginationSchema
1274
1307
  });
1275
- const SecurityScannerRunSchema = z$1.object({
1308
+ const V1SecurityScannerRunSchema = z$1.object({
1276
1309
  commit_sha: z$1.string().optional(),
1277
1310
  error_message: z$1.string().optional(),
1278
1311
  finished_at: z$1.iso.datetime().optional(),
@@ -1285,10 +1318,10 @@ const SecurityScannerRunSchema = z$1.object({
1285
1318
  "skipped"
1286
1319
  ])
1287
1320
  });
1288
- const SecurityScanDetailSchema = z$1.object({
1289
- findings: z$1.array(SecurityFindingSchema).nullable(),
1290
- scan: SecurityScanSchema,
1291
- scanner_runs: z$1.array(SecurityScannerRunSchema).nullable()
1321
+ const V1GetSecurityScanOutputBodySchema = z$1.object({
1322
+ findings: z$1.array(V1SecurityFindingSchema).nullable(),
1323
+ scan: V1SecurityScanSummarySchema,
1324
+ scanner_runs: z$1.array(V1SecurityScannerRunSchema).nullable()
1292
1325
  });
1293
1326
  const V1SelectedLibrarySchema = z$1.object({ project_id: z$1.string() });
1294
1327
  const V1SendMessageOutputBodySchema = z$1.object({
@@ -1311,7 +1344,7 @@ const V1SetProjectVisibilityInputBodySchema = z$1.object({ visibility: z$1.enum(
1311
1344
  const V1SetProjectVisibilityOutputBodySchema = z$1.object({ visibility: z$1.string() });
1312
1345
  const V1SetWorkspaceKnowledgeInputBodySchema = z$1.object({ content: z$1.string() });
1313
1346
  const V1TriggerSecurityScanInputBodySchema = z$1.object({ project_id: z$1.string() });
1314
- const TriggerSecurityScanResponseSchema = z$1.object({
1347
+ const V1TriggerSecurityScanResponseBodySchema = z$1.object({
1315
1348
  message: z$1.string().optional(),
1316
1349
  scan_id: z$1.string(),
1317
1350
  status: z$1.enum([
@@ -1397,7 +1430,6 @@ const V1UpdateWorkspaceSettingsInputBodySchema = z$1.object({
1397
1430
  default_monthly_member_credit_limit: z$1.number().gte(0).nullish(),
1398
1431
  workspace_id: z$1.string()
1399
1432
  });
1400
- const UpdateWorkspaceSettingsRequestSchema = z$1.object({ default_monthly_member_credit_limit: z$1.number().gte(0).nullish() });
1401
1433
  const V1UsagePeriodSchema = z$1.object({
1402
1434
  end: z$1.string(),
1403
1435
  granularity: z$1.string().optional(),
@@ -1609,6 +1641,11 @@ const WorkspaceInsightsProjectSchema = z$1.object({
1609
1641
  name: z$1.string().optional(),
1610
1642
  og_image_url: z$1.string().optional(),
1611
1643
  owner: WorkspaceInsightsOwnerSchema.optional(),
1644
+ publish_audience: z$1.enum([
1645
+ "public",
1646
+ "workspace",
1647
+ "custom"
1648
+ ]).optional(),
1612
1649
  publish_visibility: z$1.enum([
1613
1650
  "public",
1614
1651
  "private",
@@ -1864,8 +1901,6 @@ const CursorListResponsePublicV1PiiLabelSchema = PiiLabelPageSchema;
1864
1901
  const CursorListResponsePublicV1ProjectListItemSchema = ProjectSummaryPageSchema;
1865
1902
  /** @deprecated Renamed to ProjectCollaboratorPageSchema. */
1866
1903
  const CursorListResponseV1ProjectCollaboratorSchema = ProjectCollaboratorPageSchema;
1867
- /** @deprecated Renamed to SecurityScanPageSchema. */
1868
- const CursorListResponseV1SecurityScanSummarySchema = SecurityScanPageSchema;
1869
1904
  /** @deprecated Renamed to WorkspaceGroupPageSchema. */
1870
1905
  const CursorListResponseV1WorkspaceGroupSchema = WorkspaceGroupPageSchema;
1871
1906
  /** @deprecated Renamed to WorkspaceMemberPageSchema. */
@@ -1900,8 +1935,8 @@ const PublicV1PublishProjectInputBodySchema = PublishProjectRequestSchema;
1900
1935
  const PublicV1PublishProjectResponseSchema = PublishProjectResponseSchema;
1901
1936
  /** @deprecated Renamed to DeploymentSchema. */
1902
1937
  const PublicV1PublishStatusResponseSchema = DeploymentSchema;
1903
- /** @deprecated Renamed to RemixJobSchema. */
1904
- const PublicV1RemixJobOutputBodySchema = RemixJobSchema;
1938
+ /** @deprecated Retained for legacy endpoints. */
1939
+ const RemixJobSchema = PublicV1RemixJobOutputBodySchema;
1905
1940
  /** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
1906
1941
  const PublicV1UpdatePublishSettingsInputBodySchema = UpdatePublishSettingsRequestSchema;
1907
1942
  /** @deprecated Renamed to PublishSettingsSchema. */
@@ -1912,12 +1947,6 @@ const PublicV1WorkspaceMemberSchema = WorkspaceMembershipSchema;
1912
1947
  const PublicV1WorkspaceSchema = WorkspaceSchema;
1913
1948
  /** @deprecated Renamed to WorkspaceWithMembershipSchema. */
1914
1949
  const PublicV1WorkspaceWithMembershipSchema = WorkspaceWithMembershipSchema;
1915
- /** @deprecated Renamed to SetMemberCreditLimitsRequestSchema. */
1916
- const V1BillingBulkSetMemberCreditLimitInputBodySchema = SetMemberCreditLimitsRequestSchema;
1917
- /** @deprecated Renamed to MemberCreditLimitSchema. */
1918
- const V1BillingCreditLimitRowSchema = MemberCreditLimitSchema;
1919
- /** @deprecated Renamed to CreditLimitPageSchema. */
1920
- const V1BillingCreditLimitsBodySchema = CreditLimitPageSchema;
1921
1950
  /** @deprecated Renamed to BillingPeriodSchema. */
1922
1951
  const V1BillingPeriodSchema = BillingPeriodSchema;
1923
1952
  /** @deprecated Renamed to CreditUsagePageSchema. */
@@ -1926,40 +1955,32 @@ const V1BillingUsageBodySchema = CreditUsagePageSchema;
1926
1955
  const V1BillingUsagePeriodSchema = CreditUsagePeriodSchema;
1927
1956
  /** @deprecated Renamed to CreditUsageEntrySchema. */
1928
1957
  const V1BillingUsageRowSchema = CreditUsageEntrySchema;
1929
- /** @deprecated Renamed to MemberCreditLimitUpdateSchema. */
1930
- const V1BulkMemberCreditLimitItemSchema = MemberCreditLimitUpdateSchema;
1931
- /** @deprecated Renamed to MemberCreditLimitResultSchema. */
1932
- const V1BulkMemberCreditLimitResultSchema = MemberCreditLimitResultSchema;
1933
- /** @deprecated Renamed to SetMemberCreditLimitsResponseSchema. */
1934
- const V1BulkSetMemberCreditLimitOutputBodySchema = SetMemberCreditLimitsResponseSchema;
1958
+ /** @deprecated Retained for legacy endpoints. */
1959
+ const MemberCreditLimitUpdateSchema = V1BulkMemberCreditLimitItemSchema;
1960
+ /** @deprecated Retained for legacy endpoints. */
1961
+ const MemberCreditLimitResultSchema = V1BulkMemberCreditLimitResultSchema;
1962
+ /** @deprecated Retained for legacy endpoints. */
1963
+ const SetMemberCreditLimitsResponseSchema = V1BulkSetMemberCreditLimitOutputBodySchema;
1935
1964
  /** @deprecated Renamed to CreateEmbedUrlRequestSchema. */
1936
1965
  const V1CreateEmbedUrlInputBodySchema = CreateEmbedUrlRequestSchema;
1937
1966
  /** @deprecated Renamed to CreateEmbedUrlResponseSchema. */
1938
1967
  const V1CreateEmbedUrlOutputBodySchema = CreateEmbedUrlResponseSchema;
1939
1968
  /** @deprecated Renamed to CreditHistoryEntrySchema. */
1940
1969
  const V1CreditHistoryEntrySchema = CreditHistoryEntrySchema;
1941
- /** @deprecated Renamed to SecurityScanDetailSchema. */
1942
- const V1GetSecurityScanOutputBodySchema = SecurityScanDetailSchema;
1943
1970
  /** @deprecated Renamed to WorkspacePageSchema. */
1944
1971
  const V1ListWorkspacesBodySchema = WorkspacePageSchema;
1945
1972
  /** @deprecated Renamed to ProjectCollaboratorSchema. */
1946
1973
  const V1ProjectCollaboratorSchema = ProjectCollaboratorSchema;
1947
1974
  /** @deprecated Renamed to ProjectSchema. */
1948
1975
  const V1ProjectResponseSchema = ProjectSchema;
1949
- /** @deprecated Renamed to RemixResultSchema. */
1950
- const V1RemixProgressResultSchema = RemixResultSchema;
1951
- /** @deprecated Renamed to SecurityFindingSchema. */
1952
- const V1SecurityFindingSchema = SecurityFindingSchema;
1953
- /** @deprecated Renamed to SecurityScanActorSchema. */
1954
- const V1SecurityScanActorSchema = SecurityScanActorSchema;
1955
- /** @deprecated Renamed to SecurityScanSchema. */
1956
- const V1SecurityScanSummarySchema = SecurityScanSchema;
1957
- /** @deprecated Renamed to SecurityScannerRunSchema. */
1958
- const V1SecurityScannerRunSchema = SecurityScannerRunSchema;
1959
- /** @deprecated Renamed to TriggerSecurityScanResponseSchema. */
1960
- const V1TriggerSecurityScanResponseBodySchema = TriggerSecurityScanResponseSchema;
1961
- /** @deprecated Renamed to UpdateWorkspaceSettingsRequestSchema. */
1962
- const V1UpdateWorkspaceSettingsNestedInputBodySchema = UpdateWorkspaceSettingsRequestSchema;
1976
+ /** @deprecated Retained for legacy endpoints. */
1977
+ const RemixResultSchema = V1RemixProgressResultSchema;
1978
+ /** @deprecated Retained for legacy endpoints. */
1979
+ const SecurityScanActorSchema = V1SecurityScanActorSchema;
1980
+ /** @deprecated Retained for legacy endpoints. */
1981
+ const SecurityScannerRunSchema = V1SecurityScannerRunSchema;
1982
+ /** @deprecated Retained for legacy endpoints. */
1983
+ const TriggerSecurityScanResponseSchema = V1TriggerSecurityScanResponseBodySchema;
1963
1984
  /** @deprecated Renamed to CreditHistoryPageSchema. */
1964
1985
  const V1WorkspaceCreditHistoryBodySchema = CreditHistoryPageSchema;
1965
1986
  /** @deprecated Renamed to CreditBalanceSchema. */
@@ -2021,6 +2042,6 @@ const WorkspaceMembershipResponseSchema = WorkspaceMembershipSchema;
2021
2042
  const V1DatabaseQueryOutputBodySchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
2022
2043
  const V1DatabaseQueryOutputBodyWritableSchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
2023
2044
  //#endregion
2024
- export { AddProjectsToFolderResultSchema, AnalyticsBreakdownGroupSchema, AnalyticsBreakdownPointSchema, AnalyticsBreakdownSchema, AnalyticsTrendSchema, AppUserConnectorApiSchema, BillingPeriodSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, ConnectorUsageSchema, CreateEmbedUrlRequestSchema, CreateEmbedUrlResponseSchema, CreatorSchema, CreditBalanceSchema, CreditGrantTypeBalanceSchema, CreditHistoryEntrySchema, CreditHistoryPageSchema, CreditLimitPageSchema, CreditUsageEntrySchema, CreditUsagePageSchema, CreditUsagePeriodSchema, CurrentUserSchema, CurrentUserWorkspaceSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1PiiLabelSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceGroupSchema, CursorListResponseV1WorkspaceMemberSchema, DatabaseUsageSchema, DeploymentSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, ExpiringCreditGrantSchema, GatewayModelUsageSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GetWorkspaceResponseSchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, MemberCreditLimitResultSchema, MemberCreditLimitSchema, MemberCreditLimitUpdateSchema, PaginationSchema, PiiLabelPageSchema, PiiLabelSchema, ProjectAnalyticsResponseSchema, ProjectAnalyticsSchema, ProjectCollaboratorPageSchema, ProjectCollaboratorSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectSchema, ProjectSummaryPageSchema, ProjectSummarySchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1PiiLabelSchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1RemixJobOutputBodySchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, PublishAudienceTargetSchema, PublishProjectRequestSchema, PublishProjectResponseSchema, PublishSettingsSchema, RemixJobFailureSchema, RemixJobSchema, RemixJobStepInfoSchema, RemixResultSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SecurityFindingSchema, SecurityScanActorSchema, SecurityScanDetailSchema, SecurityScanPageSchema, SecurityScanSchema, SecurityScannerRunSchema, SetMemberCreditLimitsRequestSchema, SetMemberCreditLimitsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, TriggerSecurityScanResponseSchema, UpdateProjectRequestSchema, UpdatePublishSettingsRequestSchema, UpdateWorkspaceSettingsRequestSchema, UserCreatorSchema, V1AddConnectorInputBodySchema, V1AiResponseSummarySchema, V1AvailableConnectorEntrySchema, V1AwaitingInputSummarySchema, V1BillingBulkSetMemberCreditLimitInputBodySchema, V1BillingCreditLimitRowSchema, V1BillingCreditLimitsBodySchema, V1BillingPeriodSchema, V1BillingUsageBodySchema, V1BillingUsagePeriodSchema, V1BillingUsageRowSchema, V1BulkMemberCreditLimitItemSchema, V1BulkMemberCreditLimitResultSchema, V1BulkSetMemberCreditLimitInputBodySchema, V1BulkSetMemberCreditLimitOutputBodySchema, V1ConnectionItemSchema, V1ConnectorResponseSchema, V1CreateEmbedUrlInputBodySchema, V1CreateEmbedUrlOutputBodySchema, V1CreateProjectInputBodySchema, V1CreateProjectResponseSchema, V1CreateVariantInputBodySchema, V1CreateVariantOutputBodySchema, V1CreditHistoryEntrySchema, V1DatabaseQueryOutputBodySchema, V1DatabaseQueryOutputBodyWritableSchema, V1DeleteWorkspaceSkillOutputBodySchema, V1DeployProjectInputBodySchema, V1DeployProjectOutputBodySchema, V1DiffEntrySchema, V1DiffResponseSchema, V1EditSummarySchema, V1EnableDatabaseOutputBodySchema, V1EphemeralFileUploadUrlInputBodySchema, V1FileUploadUrlOutputBodySchema, V1GetDatabaseStatusOutputBodySchema, V1GetEditsOutputBodySchema, V1GetSecurityScanOutputBodySchema, V1GetWorkspaceSkillOutputBodySchema, V1KnowledgeResponseSchema, V1ListAppUserConnectorsResponseSchema, V1ListAvailableConnectorsOutputBodySchema, V1ListConnectionsResponseSchema, V1ListConnectorsOutputBodySchema, V1ListMcpConnectorsResponseSchema, V1ListMessagesOutputBodySchema, V1ListProjectSkillsOutputBodySchema, V1ListSeamlessConnectorsResponseSchema, V1ListStandardConnectorsResponseSchema, V1ListWorkspaceSkillsOutputBodySchema, V1ListWorkspacesBodySchema, V1MessageErrorSchema, V1MessageListItemSchema, V1MessageResponseSchema, V1MoveProjectsToFolderInputBodySchema, V1ProjectCollaboratorSchema, V1ProjectFileUploadUrlInputBodySchema, V1ProjectGitFilesResponseSchema, V1ProjectResponseSchema, V1ProjectSkillDtoSchema, V1RemixInitInputBodySchema, V1RemixInitOutputBodySchema, V1RemixProgressOutputBodySchema, V1RemixProgressResultSchema, V1RemoveConnectorOutputBodySchema, V1SecurityFindingSchema, V1SecurityScanActorSchema, V1SecurityScanSummarySchema, V1SecurityScannerRunSchema, V1SelectedLibrarySchema, V1SendMessageInputBodySchema, V1SendMessageOutputBodySchema, V1SetFolderVisibilityInputBodySchema, V1SetFolderVisibilityOutputBodySchema, V1SetProjectKnowledgeInputBodySchema, V1SetProjectSkillEnabledInputBodySchema, V1SetProjectSkillEnabledOutputBodySchema, V1SetProjectVisibilityInputBodySchema, V1SetProjectVisibilityOutputBodySchema, V1SetWorkspaceKnowledgeInputBodySchema, V1TriggerSecurityScanInputBodySchema, V1TriggerSecurityScanResponseBodySchema, V1UnscopedFileSchema, V1UpdateMemberCreditLimitInputBodySchema, V1UpdateWorkspaceSettingsInputBodySchema, V1UpdateWorkspaceSettingsNestedInputBodySchema, V1UsagePeriodSchema, V1WorkspaceAuditLogEntrySchema, V1WorkspaceAuditLogsBodySchema, V1WorkspaceCreditHistoryBodySchema, V1WorkspaceCreditsBodySchema, V1WorkspaceCreditsExpiringGrantSchema, V1WorkspaceCreditsGrantTypeBalanceSchema, V1WorkspaceGroupSchema, V1WorkspaceInsightsActivityFreshnessSchema, V1WorkspaceInsightsBodySchema, V1WorkspaceInsightsEdgeFunctionSchema, V1WorkspaceInsightsFindingSchema, V1WorkspaceInsightsOwnerSchema, V1WorkspaceInsightsProjectSchema, V1WorkspaceInsightsProjectsBodySchema, V1WorkspaceInsightsReasonSchema, V1WorkspaceInsightsReasonValuesSchema, V1WorkspaceInsightsReviewPrioritySchema, V1WorkspaceInsightsSignalsSchema, V1WorkspaceInsightsStatSchema, V1WorkspaceInsightsSummarySchema, V1WorkspaceMemberGroupSchema, V1WorkspaceMemberSchema, V1WorkspaceSettingsBodySchema, V1WorkspaceSkillDtoSchema, V1WorkspaceUsageBreakdownBodySchema, V1WorkspaceUsageBreakdownEntrySchema, V1WorkspaceUsageConnectorBreakdownSchema, V1WorkspaceUsageDatabaseBreakdownSchema, V1WorkspaceUsageGatewayModelSchema, V1WorkspaceUsageMeBodySchema, V1WorkspaceUsageProjectRowSchema, V1WorkspaceUsageProjectsBodySchema, V1WorkspaceUsageTimeseriesBodySchema, V1WorkspaceUsageTimeseriesBucketSchema, V1WriteWorkspaceSkillInputBodySchema, V1WriteWorkspaceSkillOutputBodySchema, VisibilityChangeInfoSchema, WorkspaceAnalyticsResponseSchema, WorkspaceAnalyticsSchema, WorkspaceGroupPageSchema, WorkspaceGroupSchema, WorkspaceInsightsActivityFreshnessSchema, WorkspaceInsightsEdgeFunctionSchema, WorkspaceInsightsFindingSchema, WorkspaceInsightsOwnerSchema, WorkspaceInsightsProjectPageSchema, WorkspaceInsightsProjectSchema, WorkspaceInsightsReasonSchema, WorkspaceInsightsReasonValuesSchema, WorkspaceInsightsReviewPrioritySchema, WorkspaceInsightsSchema, WorkspaceInsightsSignalsSchema, WorkspaceInsightsStatSchema, WorkspaceInsightsSummarySchema, WorkspaceMemberGroupSchema, WorkspaceMemberPageSchema, WorkspaceMemberSchema, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspacePageSchema, WorkspaceSchema, WorkspaceSettingsSchema, WorkspaceWithMembershipSchema };
2045
+ 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 };
2025
2046
 
2026
2047
  //# sourceMappingURL=schemas.js.map