@lovable.dev/sdk 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schemas.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",
@@ -291,8 +289,6 @@ const ProjectSummarySchema = z$1.object({
291
289
  "completed",
292
290
  "failed"
293
291
  ]).optional(),
294
- tech_stack: z$1.string().optional(),
295
- updated_at: z$1.iso.datetime().optional(),
296
292
  url: z$1.string().optional(),
297
293
  user_id: z$1.string().optional(),
298
294
  visibility: z$1.enum([
@@ -366,6 +362,45 @@ const DeploymentSchema = z$1.object({
366
362
  ]),
367
363
  url: z$1.string().optional()
368
364
  });
365
+ const SecurityFindingSchema = z$1.object({
366
+ category: z$1.string().optional(),
367
+ created_at: z$1.iso.datetime(),
368
+ description: z$1.string().optional(),
369
+ finding_id: z$1.string(),
370
+ level: z$1.enum([
371
+ "error",
372
+ "warn",
373
+ "info"
374
+ ]),
375
+ name: z$1.string(),
376
+ scanner_name: z$1.string(),
377
+ status: z$1.enum([
378
+ "open",
379
+ "fixed",
380
+ "ignored"
381
+ ]),
382
+ updated_at: z$1.iso.datetime()
383
+ });
384
+ const SecurityScanSchema = z$1.object({
385
+ commit_sha: z$1.string().optional(),
386
+ finished_at: z$1.iso.datetime().optional(),
387
+ requested_scanners: z$1.array(z$1.string()).nullable(),
388
+ scan_id: z$1.string(),
389
+ started_at: z$1.iso.datetime(),
390
+ status: z$1.enum([
391
+ "running",
392
+ "completed",
393
+ "failed"
394
+ ])
395
+ });
396
+ const SecurityScanPageSchema = z$1.object({
397
+ data: z$1.array(SecurityScanSchema).nullable(),
398
+ pagination: PaginationSchema
399
+ });
400
+ const SecurityScanDetailSchema = z$1.object({
401
+ findings: z$1.array(SecurityFindingSchema).nullable(),
402
+ scan: SecurityScanSchema
403
+ });
369
404
  const PublicV1SetProjectKnowledgeInputBodySchema = z$1.object({
370
405
  content: z$1.string(),
371
406
  project_id: z$1.string()
@@ -794,17 +829,6 @@ const V1AwaitingInputSummarySchema = z$1.object({
794
829
  prev_session_id: z$1.string().optional(),
795
830
  tool_id: z$1.string().optional()
796
831
  });
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
832
  const BillingPeriodSchema = z$1.object({
809
833
  end: z$1.iso.datetime(),
810
834
  start: z$1.iso.datetime()
@@ -819,14 +843,13 @@ const CreditUsagePeriodSchema = z$1.object({
819
843
  ]).optional(),
820
844
  start: z$1.string()
821
845
  });
822
- const MemberCreditLimitUpdateSchema = z$1.object({
846
+ const V1BulkMemberCreditLimitItemSchema = z$1.object({
823
847
  duration: z$1.enum(["permanent", "current_period"]).optional(),
824
848
  email: z$1.string().optional(),
825
849
  monthly_credit_limit: z$1.number().gte(0).nullable(),
826
850
  user_id: z$1.string().optional()
827
851
  });
828
- const SetMemberCreditLimitsRequestSchema = z$1.object({ members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(1e3) });
829
- const MemberCreditLimitResultSchema = z$1.object({
852
+ const V1BulkMemberCreditLimitResultSchema = z$1.object({
830
853
  approved_until: z$1.iso.datetime().optional(),
831
854
  duration: z$1.enum(["current_period"]).optional(),
832
855
  email: z$1.string().optional(),
@@ -835,12 +858,12 @@ const MemberCreditLimitResultSchema = z$1.object({
835
858
  user_id: z$1.string().optional()
836
859
  });
837
860
  const V1BulkSetMemberCreditLimitInputBodySchema = z$1.object({
838
- members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(50),
861
+ members: z$1.array(V1BulkMemberCreditLimitItemSchema).min(1).max(50),
839
862
  workspace_id: z$1.string()
840
863
  });
841
- const SetMemberCreditLimitsResponseSchema = z$1.object({
864
+ const V1BulkSetMemberCreditLimitOutputBodySchema = z$1.object({
842
865
  failed: z$1.number(),
843
- results: z$1.array(MemberCreditLimitResultSchema).nullable(),
866
+ results: z$1.array(V1BulkMemberCreditLimitResultSchema).nullable(),
844
867
  successful: z$1.number(),
845
868
  total: z$1.number()
846
869
  });
@@ -892,8 +915,6 @@ const V1CreateProjectResponseSchema = z$1.object({
892
915
  "completed",
893
916
  "failed"
894
917
  ]).optional(),
895
- tech_stack: z$1.string().optional(),
896
- updated_at: z$1.iso.datetime().optional(),
897
918
  url: z$1.string().optional(),
898
919
  user_id: z$1.string().optional(),
899
920
  visibility: z$1.enum([
@@ -1146,8 +1167,6 @@ const ProjectSchema = z$1.object({
1146
1167
  "completed",
1147
1168
  "failed"
1148
1169
  ]).optional(),
1149
- tech_stack: z$1.string().optional(),
1150
- updated_at: z$1.iso.datetime().optional(),
1151
1170
  url: z$1.string().optional(),
1152
1171
  user_id: z$1.string().optional(),
1153
1172
  visibility: z$1.enum([
@@ -1187,32 +1206,31 @@ const V1RemixInitInputBodySchema = z$1.object({
1187
1206
  workspace_id: z$1.string()
1188
1207
  });
1189
1208
  const V1RemixInitOutputBodySchema = z$1.object({ job_id: z$1.string() });
1190
- const RemixResultSchema = z$1.object({
1209
+ const V1RemixProgressResultSchema = z$1.object({
1191
1210
  project_id: z$1.string(),
1192
1211
  warnings: z$1.array(RemixWarningSchema).nullish()
1193
1212
  });
1194
- const RemixJobSchema = z$1.object({
1213
+ const PublicV1RemixJobOutputBodySchema = z$1.object({
1195
1214
  error_code: z$1.string().optional(),
1196
1215
  error_message: z$1.string().optional(),
1197
- result: RemixResultSchema.optional(),
1216
+ result: V1RemixProgressResultSchema.optional(),
1198
1217
  status: z$1.enum([
1199
1218
  "preparing",
1200
1219
  "running",
1201
1220
  "completed",
1202
1221
  "error",
1203
1222
  "unknown"
1204
- ]),
1205
- step: RemixJobStepInfoSchema.optional()
1223
+ ])
1206
1224
  });
1207
1225
  const V1RemixProgressOutputBodySchema = z$1.object({
1208
1226
  error_code: z$1.string().optional(),
1209
1227
  error_message: z$1.string().optional(),
1210
- result: RemixResultSchema.optional(),
1228
+ result: V1RemixProgressResultSchema.optional(),
1211
1229
  status: z$1.string(),
1212
1230
  step: RemixJobStepInfoSchema.optional()
1213
1231
  });
1214
1232
  const V1RemoveConnectorOutputBodySchema = z$1.object({ success: z$1.boolean() });
1215
- const SecurityFindingSchema = z$1.object({
1233
+ const V1SecurityFindingSchema = z$1.object({
1216
1234
  category: z$1.string().optional(),
1217
1235
  created_at: z$1.iso.datetime(),
1218
1236
  description: z$1.string().optional(),
@@ -1237,13 +1255,13 @@ const SecurityFindingSchema = z$1.object({
1237
1255
  ]),
1238
1256
  updated_at: z$1.iso.datetime()
1239
1257
  });
1240
- const SecurityScanActorSchema = z$1.object({
1258
+ const V1SecurityScanActorSchema = z$1.object({
1241
1259
  email: z$1.string().optional(),
1242
1260
  id: z$1.string().optional(),
1243
1261
  name: z$1.string().optional(),
1244
1262
  type: z$1.enum(["user", "system"])
1245
1263
  });
1246
- const SecurityScanSchema = z$1.object({
1264
+ const V1SecurityScanSummarySchema = z$1.object({
1247
1265
  commit_sha: z$1.string().optional(),
1248
1266
  finished_at: z$1.iso.datetime().optional(),
1249
1267
  requested_scanners: z$1.array(z$1.string()).nullable(),
@@ -1266,13 +1284,13 @@ const SecurityScanSchema = z$1.object({
1266
1284
  "enterprise_batch",
1267
1285
  "gitsync_pull"
1268
1286
  ]),
1269
- triggered_by: SecurityScanActorSchema
1287
+ triggered_by: V1SecurityScanActorSchema
1270
1288
  });
1271
- const SecurityScanPageSchema = z$1.object({
1272
- data: z$1.array(SecurityScanSchema).nullable(),
1289
+ const CursorListResponseV1SecurityScanSummarySchema = z$1.object({
1290
+ data: z$1.array(V1SecurityScanSummarySchema).nullable(),
1273
1291
  pagination: PaginationSchema
1274
1292
  });
1275
- const SecurityScannerRunSchema = z$1.object({
1293
+ const V1SecurityScannerRunSchema = z$1.object({
1276
1294
  commit_sha: z$1.string().optional(),
1277
1295
  error_message: z$1.string().optional(),
1278
1296
  finished_at: z$1.iso.datetime().optional(),
@@ -1285,10 +1303,10 @@ const SecurityScannerRunSchema = z$1.object({
1285
1303
  "skipped"
1286
1304
  ])
1287
1305
  });
1288
- const SecurityScanDetailSchema = z$1.object({
1289
- findings: z$1.array(SecurityFindingSchema).nullable(),
1290
- scan: SecurityScanSchema,
1291
- scanner_runs: z$1.array(SecurityScannerRunSchema).nullable()
1306
+ const V1GetSecurityScanOutputBodySchema = z$1.object({
1307
+ findings: z$1.array(V1SecurityFindingSchema).nullable(),
1308
+ scan: V1SecurityScanSummarySchema,
1309
+ scanner_runs: z$1.array(V1SecurityScannerRunSchema).nullable()
1292
1310
  });
1293
1311
  const V1SelectedLibrarySchema = z$1.object({ project_id: z$1.string() });
1294
1312
  const V1SendMessageOutputBodySchema = z$1.object({
@@ -1311,7 +1329,7 @@ const V1SetProjectVisibilityInputBodySchema = z$1.object({ visibility: z$1.enum(
1311
1329
  const V1SetProjectVisibilityOutputBodySchema = z$1.object({ visibility: z$1.string() });
1312
1330
  const V1SetWorkspaceKnowledgeInputBodySchema = z$1.object({ content: z$1.string() });
1313
1331
  const V1TriggerSecurityScanInputBodySchema = z$1.object({ project_id: z$1.string() });
1314
- const TriggerSecurityScanResponseSchema = z$1.object({
1332
+ const V1TriggerSecurityScanResponseBodySchema = z$1.object({
1315
1333
  message: z$1.string().optional(),
1316
1334
  scan_id: z$1.string(),
1317
1335
  status: z$1.enum([
@@ -1397,7 +1415,6 @@ const V1UpdateWorkspaceSettingsInputBodySchema = z$1.object({
1397
1415
  default_monthly_member_credit_limit: z$1.number().gte(0).nullish(),
1398
1416
  workspace_id: z$1.string()
1399
1417
  });
1400
- const UpdateWorkspaceSettingsRequestSchema = z$1.object({ default_monthly_member_credit_limit: z$1.number().gte(0).nullish() });
1401
1418
  const V1UsagePeriodSchema = z$1.object({
1402
1419
  end: z$1.string(),
1403
1420
  granularity: z$1.string().optional(),
@@ -1864,8 +1881,6 @@ const CursorListResponsePublicV1PiiLabelSchema = PiiLabelPageSchema;
1864
1881
  const CursorListResponsePublicV1ProjectListItemSchema = ProjectSummaryPageSchema;
1865
1882
  /** @deprecated Renamed to ProjectCollaboratorPageSchema. */
1866
1883
  const CursorListResponseV1ProjectCollaboratorSchema = ProjectCollaboratorPageSchema;
1867
- /** @deprecated Renamed to SecurityScanPageSchema. */
1868
- const CursorListResponseV1SecurityScanSummarySchema = SecurityScanPageSchema;
1869
1884
  /** @deprecated Renamed to WorkspaceGroupPageSchema. */
1870
1885
  const CursorListResponseV1WorkspaceGroupSchema = WorkspaceGroupPageSchema;
1871
1886
  /** @deprecated Renamed to WorkspaceMemberPageSchema. */
@@ -1900,8 +1915,8 @@ const PublicV1PublishProjectInputBodySchema = PublishProjectRequestSchema;
1900
1915
  const PublicV1PublishProjectResponseSchema = PublishProjectResponseSchema;
1901
1916
  /** @deprecated Renamed to DeploymentSchema. */
1902
1917
  const PublicV1PublishStatusResponseSchema = DeploymentSchema;
1903
- /** @deprecated Renamed to RemixJobSchema. */
1904
- const PublicV1RemixJobOutputBodySchema = RemixJobSchema;
1918
+ /** @deprecated Retained for legacy endpoints. */
1919
+ const RemixJobSchema = PublicV1RemixJobOutputBodySchema;
1905
1920
  /** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
1906
1921
  const PublicV1UpdatePublishSettingsInputBodySchema = UpdatePublishSettingsRequestSchema;
1907
1922
  /** @deprecated Renamed to PublishSettingsSchema. */
@@ -1912,12 +1927,6 @@ const PublicV1WorkspaceMemberSchema = WorkspaceMembershipSchema;
1912
1927
  const PublicV1WorkspaceSchema = WorkspaceSchema;
1913
1928
  /** @deprecated Renamed to WorkspaceWithMembershipSchema. */
1914
1929
  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
1930
  /** @deprecated Renamed to BillingPeriodSchema. */
1922
1931
  const V1BillingPeriodSchema = BillingPeriodSchema;
1923
1932
  /** @deprecated Renamed to CreditUsagePageSchema. */
@@ -1926,40 +1935,32 @@ const V1BillingUsageBodySchema = CreditUsagePageSchema;
1926
1935
  const V1BillingUsagePeriodSchema = CreditUsagePeriodSchema;
1927
1936
  /** @deprecated Renamed to CreditUsageEntrySchema. */
1928
1937
  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;
1938
+ /** @deprecated Retained for legacy endpoints. */
1939
+ const MemberCreditLimitUpdateSchema = V1BulkMemberCreditLimitItemSchema;
1940
+ /** @deprecated Retained for legacy endpoints. */
1941
+ const MemberCreditLimitResultSchema = V1BulkMemberCreditLimitResultSchema;
1942
+ /** @deprecated Retained for legacy endpoints. */
1943
+ const SetMemberCreditLimitsResponseSchema = V1BulkSetMemberCreditLimitOutputBodySchema;
1935
1944
  /** @deprecated Renamed to CreateEmbedUrlRequestSchema. */
1936
1945
  const V1CreateEmbedUrlInputBodySchema = CreateEmbedUrlRequestSchema;
1937
1946
  /** @deprecated Renamed to CreateEmbedUrlResponseSchema. */
1938
1947
  const V1CreateEmbedUrlOutputBodySchema = CreateEmbedUrlResponseSchema;
1939
1948
  /** @deprecated Renamed to CreditHistoryEntrySchema. */
1940
1949
  const V1CreditHistoryEntrySchema = CreditHistoryEntrySchema;
1941
- /** @deprecated Renamed to SecurityScanDetailSchema. */
1942
- const V1GetSecurityScanOutputBodySchema = SecurityScanDetailSchema;
1943
1950
  /** @deprecated Renamed to WorkspacePageSchema. */
1944
1951
  const V1ListWorkspacesBodySchema = WorkspacePageSchema;
1945
1952
  /** @deprecated Renamed to ProjectCollaboratorSchema. */
1946
1953
  const V1ProjectCollaboratorSchema = ProjectCollaboratorSchema;
1947
1954
  /** @deprecated Renamed to ProjectSchema. */
1948
1955
  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;
1956
+ /** @deprecated Retained for legacy endpoints. */
1957
+ const RemixResultSchema = V1RemixProgressResultSchema;
1958
+ /** @deprecated Retained for legacy endpoints. */
1959
+ const SecurityScanActorSchema = V1SecurityScanActorSchema;
1960
+ /** @deprecated Retained for legacy endpoints. */
1961
+ const SecurityScannerRunSchema = V1SecurityScannerRunSchema;
1962
+ /** @deprecated Retained for legacy endpoints. */
1963
+ const TriggerSecurityScanResponseSchema = V1TriggerSecurityScanResponseBodySchema;
1963
1964
  /** @deprecated Renamed to CreditHistoryPageSchema. */
1964
1965
  const V1WorkspaceCreditHistoryBodySchema = CreditHistoryPageSchema;
1965
1966
  /** @deprecated Renamed to CreditBalanceSchema. */
@@ -2021,6 +2022,6 @@ const WorkspaceMembershipResponseSchema = WorkspaceMembershipSchema;
2021
2022
  const V1DatabaseQueryOutputBodySchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
2022
2023
  const V1DatabaseQueryOutputBodyWritableSchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
2023
2024
  //#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 };
2025
+ 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
2026
 
2026
2027
  //# sourceMappingURL=schemas.js.map