@lovable.dev/sdk 1.1.1 → 1.2.2

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.
@@ -2136,7 +2136,7 @@ export interface components {
2136
2136
  description?: string;
2137
2137
  /** @description Project display name */
2138
2138
  display_name?: string;
2139
- /** @description Preview URL with a short-lived signed token (?__lovable_token=…) that authenticates an iframe load without an in-iframe Lovable login. Partner integrations should iframe this directly; the token expires after 1h. Uses viewer-level access, which also covers the project's published deployment and custom-domain routes not only the static-preview host in this URL. */
2139
+ /** @description Static-preview URL with a short-lived (1h) signed token (?__lovable_token=…) that loads the preview in an iframe or a direct open without an in-iframe Lovable login. Grants static-preview access only; to permit a specific third-party framing origin, mint an origin-bound token via POST /v1/projects/{project_id}/embed-url. */
2140
2140
  embed_url?: string;
2141
2141
  /** @description Project ID */
2142
2142
  id?: string;
@@ -2439,7 +2439,7 @@ export interface components {
2439
2439
  * @description Product vendor for catalog filtering
2440
2440
  * @enum {string}
2441
2441
  */
2442
- vendor?: "google" | "microsoft";
2442
+ vendor?: "google" | "microsoft" | "aws";
2443
2443
  /**
2444
2444
  * @description Who may create connections for this connector in this workspace
2445
2445
  * @enum {string}
@@ -2648,7 +2648,7 @@ export interface components {
2648
2648
  description?: string;
2649
2649
  /** @description Project display name */
2650
2650
  display_name?: string;
2651
- /** @description Preview URL with a short-lived signed token (?__lovable_token=…) that authenticates an iframe load without an in-iframe Lovable login. Partner integrations should iframe this directly; the token expires after 1h. Uses viewer-level access, which also covers the project's published deployment and custom-domain routes not only the static-preview host in this URL. */
2651
+ /** @description Static-preview URL with a short-lived (1h) signed token (?__lovable_token=…) that loads the preview in an iframe or a direct open without an in-iframe Lovable login. Grants static-preview access only; to permit a specific third-party framing origin, mint an origin-bound token via POST /v1/projects/{project_id}/embed-url. */
2652
2652
  embed_url?: string;
2653
2653
  /** @description Project ID */
2654
2654
  id: string;
@@ -2664,6 +2664,8 @@ export interface components {
2664
2664
  name?: string;
2665
2665
  /** @description Project status: in_progress, completed, failed */
2666
2666
  status?: string;
2667
+ /** @description Technology stack (default: vite) */
2668
+ tech_stack?: string;
2667
2669
  /** @description Published project URL */
2668
2670
  url?: string;
2669
2671
  /** @description Project visibility: draft, private, workspace_view, public */
@@ -3023,7 +3025,7 @@ export interface components {
3023
3025
  description?: string;
3024
3026
  /** @description Project display name */
3025
3027
  display_name?: string;
3026
- /** @description Preview URL with a short-lived signed token (?__lovable_token=…) that authenticates an iframe load without an in-iframe Lovable login. Partner integrations should iframe this directly; the token expires after 1h. Uses viewer-level access, which also covers the project's published deployment and custom-domain routes not only the static-preview host in this URL. */
3028
+ /** @description Static-preview URL with a short-lived (1h) signed token (?__lovable_token=…) that loads the preview in an iframe or a direct open without an in-iframe Lovable login. Grants static-preview access only; to permit a specific third-party framing origin, mint an origin-bound token via POST /v1/projects/{project_id}/embed-url. */
3027
3029
  embed_url?: string;
3028
3030
  /** @description Project ID */
3029
3031
  id: string;
@@ -3037,6 +3039,8 @@ export interface components {
3037
3039
  name?: string;
3038
3040
  /** @description Project status: in_progress, completed, failed */
3039
3041
  status?: string;
3042
+ /** @description Technology stack (default: vite) */
3043
+ tech_stack?: string;
3040
3044
  /** @description Published project URL */
3041
3045
  url?: string;
3042
3046
  /** @description Project visibility: draft, private, workspace_view, public */
@@ -3920,6 +3924,8 @@ export interface components {
3920
3924
  branded_app_url_failure_reason?: string;
3921
3925
  branded_app_url_slug?: string;
3922
3926
  branded_app_url_status?: string;
3927
+ cloud_block_bucket_creation?: boolean;
3928
+ cloud_block_database_creation?: boolean;
3923
3929
  cloud_block_public_buckets?: boolean;
3924
3930
  /** Format: date-time */
3925
3931
  created_at: string;
@@ -4150,6 +4156,8 @@ export interface components {
4150
4156
  branded_app_url_failure_reason?: string;
4151
4157
  branded_app_url_slug?: string;
4152
4158
  branded_app_url_status?: string;
4159
+ cloud_block_bucket_creation?: boolean;
4160
+ cloud_block_database_creation?: boolean;
4153
4161
  cloud_block_public_buckets?: boolean;
4154
4162
  /** Format: date-time */
4155
4163
  created_at: string;
@@ -498,7 +498,11 @@ export const StandardConnectorApiSchema = z.object({
498
498
  single_connection: z.boolean().optional(),
499
499
  source: z.enum(['native', 'user_defined']).optional(),
500
500
  terms_url: z.string().optional(),
501
- vendor: z.enum(['google', 'microsoft']).optional(),
501
+ vendor: z.enum([
502
+ 'google',
503
+ 'microsoft',
504
+ 'aws'
505
+ ]).optional(),
502
506
  who_can_create: z.enum(['editors_and_admins', 'admins_only'])
503
507
  });
504
508
 
@@ -702,6 +706,7 @@ export const V1CreateProjectResponseSchema = z.object({
702
706
  message_id: z.string().optional(),
703
707
  name: z.string().optional(),
704
708
  status: z.string().optional(),
709
+ tech_stack: z.string().optional(),
705
710
  url: z.string().optional(),
706
711
  visibility: z.string().optional(),
707
712
  workspace_id: z.string()
@@ -937,6 +942,7 @@ export const V1ProjectResponseSchema = z.object({
937
942
  latest_screenshot_url: z.string().optional(),
938
943
  name: z.string().optional(),
939
944
  status: z.string().optional(),
945
+ tech_stack: z.string().optional(),
940
946
  url: z.string().optional(),
941
947
  visibility: z.string().optional(),
942
948
  workspace_id: z.string()
@@ -1566,6 +1572,8 @@ export const WorkspaceSchema = z.object({
1566
1572
  branded_app_url_failure_reason: z.string().optional(),
1567
1573
  branded_app_url_slug: z.string().optional(),
1568
1574
  branded_app_url_status: z.string().optional(),
1575
+ cloud_block_bucket_creation: z.boolean().optional(),
1576
+ cloud_block_database_creation: z.boolean().optional(),
1569
1577
  cloud_block_public_buckets: z.boolean().optional(),
1570
1578
  created_at: z.iso.datetime(),
1571
1579
  custom_branded_domain: z.string().optional(),
@@ -1825,6 +1833,8 @@ export const WorkspaceWithMembershipSchema = z.object({
1825
1833
  branded_app_url_failure_reason: z.string().optional(),
1826
1834
  branded_app_url_slug: z.string().optional(),
1827
1835
  branded_app_url_status: z.string().optional(),
1836
+ cloud_block_bucket_creation: z.boolean().optional(),
1837
+ cloud_block_database_creation: z.boolean().optional(),
1828
1838
  cloud_block_public_buckets: z.boolean().optional(),
1829
1839
  created_at: z.iso.datetime(),
1830
1840
  custom_branded_domain: z.string().optional(),