@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/schemas.js 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.ts
4
- const CommonSeamlessConnectorCreatorSchema = z$1.object({
5
- name: z$1.string(),
6
- url: z$1.string()
7
- });
8
4
  const CommonSeamlessConnectorFeatureSchema = z$1.object({
9
5
  body: z$1.string().optional(),
10
6
  items: z$1.array(z$1.string()).nullable(),
@@ -18,37 +14,12 @@ const CommonSeamlessConnectorPermissionSchema = z$1.object({
18
14
  is_primary: z$1.boolean().optional(),
19
15
  name: z$1.string()
20
16
  });
21
- const CreatorSchema = z$1.object({
17
+ const CompanyCreatorSchema = z$1.object({
18
+ logo_url: z$1.string().optional(),
22
19
  name: z$1.string(),
20
+ type: z$1.enum(["company"]),
23
21
  url: z$1.string()
24
22
  });
25
- const AppUserConnectorApiSchema = z$1.object({
26
- can_restrict_to_admins: z$1.boolean(),
27
- categories: z$1.array(z$1.enum([
28
- "ecommerce",
29
- "marketing",
30
- "productivity",
31
- "sales",
32
- "support",
33
- "other",
34
- "messaging",
35
- "development",
36
- "payments",
37
- "security",
38
- "custom"
39
- ])),
40
- creator: CreatorSchema,
41
- display_name: z$1.string(),
42
- documentation_url: z$1.string(),
43
- has_clients: z$1.boolean(),
44
- id: z$1.string(),
45
- is_enabled_for_workspace: z$1.boolean(),
46
- long_description: z$1.string(),
47
- search_tags: z$1.array(z$1.string()),
48
- short_description: z$1.string(),
49
- terms_url: z$1.string().optional(),
50
- who_can_create: z$1.enum(["editors_and_admins", "admins_only"])
51
- });
52
23
  const DiffLineSchema = z$1.object({
53
24
  content: z$1.string(),
54
25
  type: z$1.string()
@@ -114,14 +85,19 @@ const ListDataSchema = z$1.object({
114
85
  data: z$1.array(ListDataPointSchema).nullable(),
115
86
  label: z$1.string()
116
87
  });
88
+ const ChannelListsGroupSchema = z$1.object({
89
+ page: ListDataSchema,
90
+ source: ListDataSchema
91
+ });
117
92
  const ListsGroupSchema = z$1.object({
118
93
  country: ListDataSchema,
119
94
  device: ListDataSchema,
120
95
  page: ListDataSchema,
121
96
  source: ListDataSchema
122
97
  });
123
- const McpConnectorCreatorStructSchema = z$1.object({
98
+ const LovableCreatorSchema = z$1.object({
124
99
  name: z$1.string(),
100
+ type: z$1.enum(["lovable"]),
125
101
  url: z$1.string()
126
102
  });
127
103
  const PaginationSchema = z$1.object({
@@ -350,25 +326,10 @@ const RemixJobStepInfoSchema = z$1.object({
350
326
  step: z$1.string()
351
327
  });
352
328
  const RemixWarningSchema = z$1.object({
353
- code: z$1.enum(["edge_functions_not_deployed"]),
354
- failed_edge_functions: z$1.array(z$1.string()).nullish()
355
- });
356
- const SeamlessConnectorApiSchema = z$1.object({
357
- alias: z$1.string().optional(),
358
- categories: z$1.array(z$1.string()).nullable(),
359
- creator: CommonSeamlessConnectorCreatorSchema,
360
- description: z$1.string(),
361
- display_name: z$1.string(),
362
- documentation_url: z$1.string(),
363
- features: z$1.array(CommonSeamlessConnectorFeatureSchema).nullish(),
364
- id: z$1.string(),
365
- is_enabled_for_workspace: z$1.boolean(),
366
- level: z$1.string(),
367
- manual_connect_hint: z$1.string().optional(),
368
- permissions: z$1.array(CommonSeamlessConnectorPermissionSchema).nullable(),
369
- searchTags: z$1.array(z$1.string()).nullish(),
370
- short_description: z$1.string(),
371
- toolIntegrationName: z$1.string().optional()
329
+ code: z$1.enum(["edge_functions_not_deployed", "integration_skipped"]),
330
+ failed_edge_functions: z$1.array(z$1.string()).nullish(),
331
+ reason: z$1.string().optional(),
332
+ skipped_integration: z$1.string().optional()
372
333
  });
373
334
  const SearchProjectItemSchema = z$1.object({
374
335
  abandoned_at: z$1.iso.datetime().optional(),
@@ -445,46 +406,6 @@ const StandardConnectorPromotionSchema = z$1.object({
445
406
  message: z$1.string(),
446
407
  until: z$1.iso.datetime()
447
408
  });
448
- const StandardConnectorApiSchema = z$1.object({
449
- can_restrict_to_admins: z$1.boolean(),
450
- categories: z$1.array(z$1.enum([
451
- "ecommerce",
452
- "marketing",
453
- "productivity",
454
- "sales",
455
- "support",
456
- "other",
457
- "messaging",
458
- "development",
459
- "payments",
460
- "security",
461
- "custom"
462
- ])),
463
- connection_scope: z$1.enum(["project", "workspace"]),
464
- creator: CreatorSchema,
465
- data_scope: z$1.enum(["organization", "individual"]),
466
- description: z$1.string(),
467
- display_name: z$1.string(),
468
- documentation_url: z$1.string(),
469
- has_connections: z$1.boolean(),
470
- has_metered_option: z$1.boolean().optional(),
471
- id: z$1.string(),
472
- is_enabled_for_workspace: z$1.boolean(),
473
- is_new: z$1.boolean().optional(),
474
- promotion: StandardConnectorPromotionSchema.optional(),
475
- searchTags: z$1.array(z$1.string()),
476
- short_description: z$1.string(),
477
- single_connection: z$1.boolean().optional(),
478
- source: z$1.enum(["native", "user_defined"]).optional(),
479
- terms_url: z$1.string().optional(),
480
- vendor: z$1.enum([
481
- "google",
482
- "microsoft",
483
- "aws",
484
- "meta"
485
- ]).optional(),
486
- who_can_create: z$1.enum(["editors_and_admins", "admins_only"])
487
- });
488
409
  const TemplateProjectResponseSchema = z$1.object({
489
410
  description: z$1.string(),
490
411
  id: z$1.string(),
@@ -505,6 +426,17 @@ const TimeSeriesDataSchema = z$1.object({
505
426
  label: z$1.string(),
506
427
  total: z$1.number()
507
428
  });
429
+ const ChannelTimeSeriesGroupSchema = z$1.object({
430
+ bounceRate: TimeSeriesDataSchema,
431
+ pageviews: TimeSeriesDataSchema,
432
+ pageviewsPerVisit: TimeSeriesDataSchema,
433
+ sessionDuration: TimeSeriesDataSchema,
434
+ visitors: TimeSeriesDataSchema
435
+ });
436
+ const ChannelAnalyticsSchema = z$1.object({
437
+ lists: ChannelListsGroupSchema,
438
+ timeSeries: ChannelTimeSeriesGroupSchema
439
+ });
508
440
  const TimeSeriesGroupSchema = z$1.object({
509
441
  bounceRate: TimeSeriesDataSchema,
510
442
  pageviews: TimeSeriesDataSchema,
@@ -513,6 +445,8 @@ const TimeSeriesGroupSchema = z$1.object({
513
445
  visitors: TimeSeriesDataSchema
514
446
  });
515
447
  const ProjectAnalyticsResponseSchema = z$1.object({
448
+ channels: z$1.record(z$1.string(), ChannelAnalyticsSchema).optional(),
449
+ channelsSource: z$1.enum(["legacy", "user_app_events"]).optional(),
516
450
  lists: ListsGroupSchema,
517
451
  timeSeries: TimeSeriesGroupSchema
518
452
  });
@@ -527,6 +461,55 @@ const ToolDisplayDataSchema = z$1.object({
527
461
  name: z$1.string(),
528
462
  title: z$1.string().optional()
529
463
  });
464
+ const TrendDataPointSchema = z$1.object({
465
+ time: z$1.string(),
466
+ visits: z$1.number()
467
+ });
468
+ const ProjectTrendResponseSchema = z$1.object({
469
+ currentVisitors: z$1.number(),
470
+ data: z$1.array(TrendDataPointSchema).nullable()
471
+ });
472
+ const PublicV1ProjectAnalyticsBodySchema = z$1.object({
473
+ lists: ListsGroupSchema.optional(),
474
+ timeSeries: TimeSeriesGroupSchema.optional(),
475
+ trend: ProjectTrendResponseSchema.optional()
476
+ });
477
+ const UserCreatorSchema = z$1.object({
478
+ type: z$1.enum(["user"]),
479
+ user_id: z$1.string()
480
+ });
481
+ const CreatorSchema = z$1.discriminatedUnion("type", [
482
+ LovableCreatorSchema.extend({ type: z$1.literal("lovable") }),
483
+ UserCreatorSchema.extend({ type: z$1.literal("user") }),
484
+ CompanyCreatorSchema.extend({ type: z$1.literal("company") })
485
+ ]);
486
+ const AppUserConnectorApiSchema = z$1.object({
487
+ can_restrict_to_admins: z$1.boolean(),
488
+ categories: z$1.array(z$1.enum([
489
+ "ecommerce",
490
+ "marketing",
491
+ "productivity",
492
+ "sales",
493
+ "support",
494
+ "other",
495
+ "messaging",
496
+ "development",
497
+ "payments",
498
+ "security",
499
+ "custom"
500
+ ])),
501
+ creator: CreatorSchema,
502
+ display_name: z$1.string(),
503
+ documentation_url: z$1.string(),
504
+ has_clients: z$1.boolean(),
505
+ id: z$1.string(),
506
+ is_enabled_for_workspace: z$1.boolean(),
507
+ long_description: z$1.string(),
508
+ search_tags: z$1.array(z$1.string()),
509
+ short_description: z$1.string(),
510
+ terms_url: z$1.string().optional(),
511
+ who_can_create: z$1.enum(["editors_and_admins", "admins_only"])
512
+ });
530
513
  const McpConnectorSchema = z$1.object({
531
514
  app_mcp_auth_method: z$1.string().optional(),
532
515
  app_mcp_project_id: z$1.string().optional(),
@@ -548,7 +531,7 @@ const McpConnectorSchema = z$1.object({
548
531
  connect_interaction: z$1.enum(["desktop_app_download"]).optional(),
549
532
  connection_id: z$1.string().optional(),
550
533
  connector_id: z$1.string().optional(),
551
- creator: McpConnectorCreatorStructSchema,
534
+ creator: CreatorSchema,
552
535
  custom_url_hint: z$1.string().optional(),
553
536
  display_name: z$1.string(),
554
537
  documentation_url: z$1.string().optional(),
@@ -575,18 +558,63 @@ const McpConnectorSchema = z$1.object({
575
558
  url: z$1.string().optional(),
576
559
  url_placeholder: z$1.string().optional()
577
560
  });
578
- const TrendDataPointSchema = z$1.object({
579
- time: z$1.string(),
580
- visits: z$1.number()
581
- });
582
- const ProjectTrendResponseSchema = z$1.object({
583
- currentVisitors: z$1.number(),
584
- data: z$1.array(TrendDataPointSchema).nullable()
561
+ const SeamlessConnectorApiSchema = z$1.object({
562
+ alias: z$1.string().optional(),
563
+ categories: z$1.array(z$1.string()).nullable(),
564
+ creator: CreatorSchema,
565
+ description: z$1.string(),
566
+ display_name: z$1.string(),
567
+ documentation_url: z$1.string(),
568
+ features: z$1.array(CommonSeamlessConnectorFeatureSchema).nullish(),
569
+ id: z$1.string(),
570
+ is_enabled_for_workspace: z$1.boolean(),
571
+ level: z$1.string(),
572
+ manual_connect_hint: z$1.string().optional(),
573
+ permissions: z$1.array(CommonSeamlessConnectorPermissionSchema).nullable(),
574
+ searchTags: z$1.array(z$1.string()).nullish(),
575
+ short_description: z$1.string(),
576
+ toolIntegrationName: z$1.string().optional()
585
577
  });
586
- const PublicV1ProjectAnalyticsBodySchema = z$1.object({
587
- lists: ListsGroupSchema.optional(),
588
- timeSeries: TimeSeriesGroupSchema.optional(),
589
- trend: ProjectTrendResponseSchema.optional()
578
+ const StandardConnectorApiSchema = z$1.object({
579
+ can_restrict_to_admins: z$1.boolean(),
580
+ categories: z$1.array(z$1.enum([
581
+ "ecommerce",
582
+ "marketing",
583
+ "productivity",
584
+ "sales",
585
+ "support",
586
+ "other",
587
+ "messaging",
588
+ "development",
589
+ "payments",
590
+ "security",
591
+ "custom"
592
+ ])),
593
+ connection_scope: z$1.enum(["project", "workspace"]),
594
+ creator: CreatorSchema,
595
+ data_scope: z$1.enum(["organization", "individual"]),
596
+ description: z$1.string(),
597
+ display_name: z$1.string(),
598
+ documentation_url: z$1.string(),
599
+ has_connections: z$1.boolean(),
600
+ has_metered_option: z$1.boolean().optional(),
601
+ id: z$1.string(),
602
+ is_enabled_for_workspace: z$1.boolean(),
603
+ is_new: z$1.boolean().optional(),
604
+ logo_url: z$1.string().optional(),
605
+ promotion: StandardConnectorPromotionSchema.optional(),
606
+ searchTags: z$1.array(z$1.string()),
607
+ short_description: z$1.string(),
608
+ single_connection: z$1.boolean().optional(),
609
+ source: z$1.enum(["native", "user_defined"]).optional(),
610
+ terms_url: z$1.string().optional(),
611
+ vendor: z$1.enum([
612
+ "google",
613
+ "microsoft",
614
+ "aws",
615
+ "meta"
616
+ ]).optional(),
617
+ who_can_create: z$1.enum(["editors_and_admins", "admins_only"])
590
618
  });
591
619
  const V1AddConnectorInputBodySchema = z$1.object({
592
620
  auth_type: z$1.enum(["none", "bearer_token"]),
@@ -1026,7 +1054,6 @@ const V1RemixProgressOutputBodySchema = z$1.object({
1026
1054
  const V1RemoveConnectorOutputBodySchema = z$1.object({ success: z$1.boolean() });
1027
1055
  const V1SecurityFindingSchema = z$1.object({
1028
1056
  category: z$1.string().optional(),
1029
- connector_id: z$1.string().optional(),
1030
1057
  created_at: z$1.iso.datetime(),
1031
1058
  description: z$1.string().optional(),
1032
1059
  details: z$1.string().optional(),
@@ -1557,6 +1584,6 @@ const WorkspaceWithMembershipSchema = PublicV1WorkspaceWithMembershipSchema;
1557
1584
  const V1DatabaseQueryOutputBodySchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
1558
1585
  const V1DatabaseQueryOutputBodyWritableSchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
1559
1586
  //#endregion
1560
- export { AddProjectsToFolderResultSchema, AppUserConnectorApiSchema, CommonSeamlessConnectorCreatorSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, 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, McpConnectorCreatorStructSchema, 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, 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 };
1587
+ 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 };
1561
1588
 
1562
1589
  //# sourceMappingURL=schemas.js.map