@lovable.dev/sdk 1.7.5 → 1.9.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.d.ts CHANGED
@@ -53,19 +53,31 @@ declare const ErrorModelSchema: z$1.ZodObject<{
53
53
  title: z$1.ZodOptional<z$1.ZodString>;
54
54
  type: z$1.ZodOptional<z$1.ZodString>;
55
55
  }, z$1.core.$strip>;
56
- declare const GetMeWorkspaceSchema: z$1.ZodObject<{
56
+ declare const CurrentUserWorkspaceSchema: z$1.ZodObject<{
57
57
  id: z$1.ZodString;
58
58
  name: z$1.ZodString;
59
- role: z$1.ZodString;
59
+ role: z$1.ZodEnum<{
60
+ owner: "owner";
61
+ admin: "admin";
62
+ member: "member";
63
+ viewer: "viewer";
64
+ collaborator: "collaborator";
65
+ }>;
60
66
  }, z$1.core.$strip>;
61
- declare const GetMeOutputBodySchema: z$1.ZodObject<{
67
+ declare const CurrentUserSchema: z$1.ZodObject<{
62
68
  email: z$1.ZodString;
63
69
  id: z$1.ZodString;
64
70
  name: z$1.ZodString;
65
71
  workspaces: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
66
72
  id: z$1.ZodString;
67
73
  name: z$1.ZodString;
68
- role: z$1.ZodString;
74
+ role: z$1.ZodEnum<{
75
+ owner: "owner";
76
+ admin: "admin";
77
+ member: "member";
78
+ viewer: "viewer";
79
+ collaborator: "collaborator";
80
+ }>;
69
81
  }, z$1.core.$strip>>>;
70
82
  }, z$1.core.$strip>;
71
83
  declare const GitFileEntrySchema: z$1.ZodObject<{
@@ -97,11 +109,11 @@ declare const GetAvailableLibraryProjectsPublicV1OutputBodySchema: z$1.ZodObject
97
109
  }, z$1.core.$strip>>>;
98
110
  total: z$1.ZodNumber;
99
111
  }, z$1.core.$strip>;
100
- declare const ListDataPointSchema: z$1.ZodObject<{
112
+ declare const AnalyticsBreakdownPointSchema: z$1.ZodObject<{
101
113
  label: z$1.ZodString;
102
114
  value: z$1.ZodNumber;
103
115
  }, z$1.core.$strip>;
104
- declare const ListDataSchema: z$1.ZodObject<{
116
+ declare const AnalyticsBreakdownSchema: z$1.ZodObject<{
105
117
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
106
118
  label: z$1.ZodString;
107
119
  value: z$1.ZodNumber;
@@ -124,7 +136,7 @@ declare const ChannelListsGroupSchema: z$1.ZodObject<{
124
136
  label: z$1.ZodString;
125
137
  }, z$1.core.$strip>;
126
138
  }, z$1.core.$strip>;
127
- declare const ListsGroupSchema: z$1.ZodObject<{
139
+ declare const AnalyticsBreakdownGroupSchema: z$1.ZodObject<{
128
140
  country: z$1.ZodObject<{
129
141
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
130
142
  label: z$1.ZodString;
@@ -179,13 +191,34 @@ declare const ProjectPiiFindingDtoSchema: z$1.ZodObject<{
179
191
  found_at: z$1.ZodISODateTime;
180
192
  id: z$1.ZodString;
181
193
  info_type: z$1.ZodOptional<z$1.ZodString>;
182
- likelihood: z$1.ZodOptional<z$1.ZodString>;
194
+ likelihood: z$1.ZodOptional<z$1.ZodEnum<{
195
+ LIKELIHOOD_UNSPECIFIED: "LIKELIHOOD_UNSPECIFIED";
196
+ VERY_UNLIKELY: "VERY_UNLIKELY";
197
+ UNLIKELY: "UNLIKELY";
198
+ POSSIBLE: "POSSIBLE";
199
+ LIKELY: "LIKELY";
200
+ VERY_LIKELY: "VERY_LIKELY";
201
+ }>>;
183
202
  quote: z$1.ZodOptional<z$1.ZodString>;
184
203
  scan_id: z$1.ZodOptional<z$1.ZodString>;
185
- sensitivity: z$1.ZodOptional<z$1.ZodString>;
186
- source: z$1.ZodString;
204
+ sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
205
+ low: "low";
206
+ mid: "mid";
207
+ high: "high";
208
+ }>>;
209
+ source: z$1.ZodEnum<{
210
+ chat: "chat";
211
+ upload: "upload";
212
+ cloud_storage: "cloud_storage";
213
+ cloud_sql: "cloud_sql";
214
+ connector: "connector";
215
+ }>;
187
216
  sql_location: z$1.ZodOptional<z$1.ZodString>;
188
- status: z$1.ZodString;
217
+ status: z$1.ZodEnum<{
218
+ open: "open";
219
+ ignored: "ignored";
220
+ fixed: "fixed";
221
+ }>;
189
222
  storage_path: z$1.ZodOptional<z$1.ZodString>;
190
223
  }, z$1.core.$strip>;
191
224
  declare const CursorListResponseProjectPiiFindingDtoSchema: z$1.ZodObject<{
@@ -196,13 +229,34 @@ declare const CursorListResponseProjectPiiFindingDtoSchema: z$1.ZodObject<{
196
229
  found_at: z$1.ZodISODateTime;
197
230
  id: z$1.ZodString;
198
231
  info_type: z$1.ZodOptional<z$1.ZodString>;
199
- likelihood: z$1.ZodOptional<z$1.ZodString>;
232
+ likelihood: z$1.ZodOptional<z$1.ZodEnum<{
233
+ LIKELIHOOD_UNSPECIFIED: "LIKELIHOOD_UNSPECIFIED";
234
+ VERY_UNLIKELY: "VERY_UNLIKELY";
235
+ UNLIKELY: "UNLIKELY";
236
+ POSSIBLE: "POSSIBLE";
237
+ LIKELY: "LIKELY";
238
+ VERY_LIKELY: "VERY_LIKELY";
239
+ }>>;
200
240
  quote: z$1.ZodOptional<z$1.ZodString>;
201
241
  scan_id: z$1.ZodOptional<z$1.ZodString>;
202
- sensitivity: z$1.ZodOptional<z$1.ZodString>;
203
- source: z$1.ZodString;
242
+ sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
243
+ low: "low";
244
+ mid: "mid";
245
+ high: "high";
246
+ }>>;
247
+ source: z$1.ZodEnum<{
248
+ chat: "chat";
249
+ upload: "upload";
250
+ cloud_storage: "cloud_storage";
251
+ cloud_sql: "cloud_sql";
252
+ connector: "connector";
253
+ }>;
204
254
  sql_location: z$1.ZodOptional<z$1.ZodString>;
205
- status: z$1.ZodString;
255
+ status: z$1.ZodEnum<{
256
+ open: "open";
257
+ ignored: "ignored";
258
+ fixed: "fixed";
259
+ }>;
206
260
  storage_path: z$1.ZodOptional<z$1.ZodString>;
207
261
  }, z$1.core.$strip>>>;
208
262
  pagination: z$1.ZodObject<{
@@ -259,9 +313,18 @@ declare const PublicV1CreateProjectResponseSchema: z$1.ZodObject<{
259
313
  message_id: z$1.ZodOptional<z$1.ZodString>;
260
314
  name: z$1.ZodOptional<z$1.ZodString>;
261
315
  preview_url: z$1.ZodOptional<z$1.ZodString>;
262
- status: z$1.ZodOptional<z$1.ZodString>;
316
+ status: z$1.ZodOptional<z$1.ZodEnum<{
317
+ in_progress: "in_progress";
318
+ completed: "completed";
319
+ failed: "failed";
320
+ }>>;
263
321
  url: z$1.ZodOptional<z$1.ZodString>;
264
- visibility: z$1.ZodOptional<z$1.ZodString>;
322
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
323
+ public: "public";
324
+ private: "private";
325
+ draft: "draft";
326
+ workspace_view: "workspace_view";
327
+ }>>;
265
328
  workspace_id: z$1.ZodOptional<z$1.ZodString>;
266
329
  }, z$1.core.$strip>;
267
330
  declare const PublicV1DeployProjectInputBodySchema: z$1.ZodObject<{
@@ -282,13 +345,93 @@ declare const PublicV1GitFilesResponseSchema: z$1.ZodObject<{
282
345
  }, z$1.core.$strip>;
283
346
  ref: z$1.ZodString;
284
347
  }, z$1.core.$strip>;
285
- declare const PublicV1PatchProjectBodySchema: z$1.ZodObject<{
348
+ declare const PiiLabelSchema: z$1.ZodObject<{
349
+ chat_message_id: z$1.ZodOptional<z$1.ZodString>;
350
+ chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
351
+ connector_id: z$1.ZodOptional<z$1.ZodString>;
352
+ found_at: z$1.ZodISODateTime;
353
+ id: z$1.ZodString;
354
+ info_type: z$1.ZodOptional<z$1.ZodString>;
355
+ likelihood: z$1.ZodOptional<z$1.ZodEnum<{
356
+ likelihood_unspecified: "likelihood_unspecified";
357
+ very_unlikely: "very_unlikely";
358
+ unlikely: "unlikely";
359
+ possible: "possible";
360
+ likely: "likely";
361
+ very_likely: "very_likely";
362
+ }>>;
363
+ quote: z$1.ZodOptional<z$1.ZodString>;
364
+ scan_id: z$1.ZodOptional<z$1.ZodString>;
365
+ sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
366
+ low: "low";
367
+ mid: "mid";
368
+ high: "high";
369
+ }>>;
370
+ source: z$1.ZodEnum<{
371
+ chat: "chat";
372
+ upload: "upload";
373
+ cloud_storage: "cloud_storage";
374
+ cloud_sql: "cloud_sql";
375
+ connector: "connector";
376
+ }>;
377
+ sql_location: z$1.ZodOptional<z$1.ZodString>;
378
+ status: z$1.ZodEnum<{
379
+ open: "open";
380
+ ignored: "ignored";
381
+ fixed: "fixed";
382
+ }>;
383
+ storage_path: z$1.ZodOptional<z$1.ZodString>;
384
+ }, z$1.core.$strip>;
385
+ declare const PiiLabelPageSchema: z$1.ZodObject<{
386
+ data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
387
+ chat_message_id: z$1.ZodOptional<z$1.ZodString>;
388
+ chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
389
+ connector_id: z$1.ZodOptional<z$1.ZodString>;
390
+ found_at: z$1.ZodISODateTime;
391
+ id: z$1.ZodString;
392
+ info_type: z$1.ZodOptional<z$1.ZodString>;
393
+ likelihood: z$1.ZodOptional<z$1.ZodEnum<{
394
+ likelihood_unspecified: "likelihood_unspecified";
395
+ very_unlikely: "very_unlikely";
396
+ unlikely: "unlikely";
397
+ possible: "possible";
398
+ likely: "likely";
399
+ very_likely: "very_likely";
400
+ }>>;
401
+ quote: z$1.ZodOptional<z$1.ZodString>;
402
+ scan_id: z$1.ZodOptional<z$1.ZodString>;
403
+ sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
404
+ low: "low";
405
+ mid: "mid";
406
+ high: "high";
407
+ }>>;
408
+ source: z$1.ZodEnum<{
409
+ chat: "chat";
410
+ upload: "upload";
411
+ cloud_storage: "cloud_storage";
412
+ cloud_sql: "cloud_sql";
413
+ connector: "connector";
414
+ }>;
415
+ sql_location: z$1.ZodOptional<z$1.ZodString>;
416
+ status: z$1.ZodEnum<{
417
+ open: "open";
418
+ ignored: "ignored";
419
+ fixed: "fixed";
420
+ }>;
421
+ storage_path: z$1.ZodOptional<z$1.ZodString>;
422
+ }, z$1.core.$strip>>>;
423
+ pagination: z$1.ZodObject<{
424
+ has_more: z$1.ZodBoolean;
425
+ next_cursor: z$1.ZodNullable<z$1.ZodString>;
426
+ }, z$1.core.$strip>;
427
+ }, z$1.core.$strip>;
428
+ declare const UpdateProjectRequestSchema: z$1.ZodObject<{
286
429
  description: z$1.ZodOptional<z$1.ZodString>;
287
430
  display_name: z$1.ZodOptional<z$1.ZodString>;
288
431
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
289
- draft: "draft";
290
- private: "private";
291
432
  public: "public";
433
+ private: "private";
434
+ draft: "draft";
292
435
  workspace_view: "workspace_view";
293
436
  }>>;
294
437
  }, z$1.core.$strip>;
@@ -296,7 +439,7 @@ declare const PublicV1ProjectFileUploadUrlInputBodySchema: z$1.ZodObject<{
296
439
  content_type: z$1.ZodOptional<z$1.ZodString>;
297
440
  project_id: z$1.ZodString;
298
441
  }, z$1.core.$strip>;
299
- declare const PublicV1ProjectListItemSchema: z$1.ZodObject<{
442
+ declare const ProjectSummarySchema: z$1.ZodObject<{
300
443
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
301
444
  description: z$1.ZodOptional<z$1.ZodString>;
302
445
  display_name: z$1.ZodOptional<z$1.ZodString>;
@@ -308,17 +451,33 @@ declare const PublicV1ProjectListItemSchema: z$1.ZodObject<{
308
451
  latest_screenshot_url: z$1.ZodOptional<z$1.ZodString>;
309
452
  name: z$1.ZodOptional<z$1.ZodString>;
310
453
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
311
- project_type: z$1.ZodOptional<z$1.ZodString>;
312
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
313
- status: z$1.ZodOptional<z$1.ZodString>;
454
+ project_type: z$1.ZodOptional<z$1.ZodEnum<{
455
+ project: "project";
456
+ library: "library";
457
+ }>>;
458
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
459
+ public: "public";
460
+ private: "private";
461
+ workspace_only: "workspace_only";
462
+ }>>;
463
+ status: z$1.ZodOptional<z$1.ZodEnum<{
464
+ in_progress: "in_progress";
465
+ completed: "completed";
466
+ failed: "failed";
467
+ }>>;
314
468
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
315
469
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
316
470
  url: z$1.ZodOptional<z$1.ZodString>;
317
471
  user_id: z$1.ZodOptional<z$1.ZodString>;
318
- visibility: z$1.ZodOptional<z$1.ZodString>;
472
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
473
+ public: "public";
474
+ private: "private";
475
+ draft: "draft";
476
+ workspace_view: "workspace_view";
477
+ }>>;
319
478
  workspace_id: z$1.ZodString;
320
479
  }, z$1.core.$strip>;
321
- declare const CursorListResponsePublicV1ProjectListItemSchema: z$1.ZodObject<{
480
+ declare const ProjectSummaryPageSchema: z$1.ZodObject<{
322
481
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
323
482
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
324
483
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -331,14 +490,30 @@ declare const CursorListResponsePublicV1ProjectListItemSchema: z$1.ZodObject<{
331
490
  latest_screenshot_url: z$1.ZodOptional<z$1.ZodString>;
332
491
  name: z$1.ZodOptional<z$1.ZodString>;
333
492
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
334
- project_type: z$1.ZodOptional<z$1.ZodString>;
335
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
336
- status: z$1.ZodOptional<z$1.ZodString>;
493
+ project_type: z$1.ZodOptional<z$1.ZodEnum<{
494
+ project: "project";
495
+ library: "library";
496
+ }>>;
497
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
498
+ public: "public";
499
+ private: "private";
500
+ workspace_only: "workspace_only";
501
+ }>>;
502
+ status: z$1.ZodOptional<z$1.ZodEnum<{
503
+ in_progress: "in_progress";
504
+ completed: "completed";
505
+ failed: "failed";
506
+ }>>;
337
507
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
338
508
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
339
509
  url: z$1.ZodOptional<z$1.ZodString>;
340
510
  user_id: z$1.ZodOptional<z$1.ZodString>;
341
- visibility: z$1.ZodOptional<z$1.ZodString>;
511
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
512
+ public: "public";
513
+ private: "private";
514
+ draft: "draft";
515
+ workspace_view: "workspace_view";
516
+ }>>;
342
517
  workspace_id: z$1.ZodString;
343
518
  }, z$1.core.$strip>>>;
344
519
  pagination: z$1.ZodObject<{
@@ -363,44 +538,59 @@ declare const PublicV1ProjectRemixInputBodySchema: z$1.ZodObject<{
363
538
  source_project_id: z$1.ZodString;
364
539
  workspace_id: z$1.ZodString;
365
540
  }, z$1.core.$strip>;
366
- declare const PublicV1PublishAudienceTargetSchema: z$1.ZodObject<{
541
+ declare const PublishAudienceTargetSchema: z$1.ZodObject<{
367
542
  id: z$1.ZodString;
368
543
  type: z$1.ZodEnum<{
369
- group: "group";
370
544
  user: "user";
545
+ group: "group";
371
546
  }>;
372
547
  }, z$1.core.$strip>;
373
- declare const PublicV1PublishProjectInputBodySchema: z$1.ZodObject<{
548
+ declare const PublishProjectRequestSchema: z$1.ZodObject<{
374
549
  audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
375
550
  id: z$1.ZodString;
376
551
  type: z$1.ZodEnum<{
377
- group: "group";
378
552
  user: "user";
553
+ group: "group";
379
554
  }>;
380
555
  }, z$1.core.$strip>>>>;
381
556
  name: z$1.ZodOptional<z$1.ZodString>;
382
557
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
558
+ public: "public";
383
559
  custom: "custom";
384
560
  workspace: "workspace";
385
- public: "public";
386
561
  }>>;
387
562
  }, z$1.core.$strip>;
388
- declare const PublicV1PublishProjectResponseSchema: z$1.ZodObject<{
563
+ declare const PublishProjectResponseSchema: z$1.ZodObject<{
389
564
  deployment_id: z$1.ZodOptional<z$1.ZodString>;
390
- status: z$1.ZodString;
565
+ status: z$1.ZodEnum<{
566
+ pending: "pending";
567
+ }>;
391
568
  url: z$1.ZodOptional<z$1.ZodString>;
392
- visibility: z$1.ZodString;
569
+ visibility: z$1.ZodEnum<{
570
+ public: "public";
571
+ custom: "custom";
572
+ workspace: "workspace";
573
+ }>;
393
574
  }, z$1.core.$strip>;
394
- declare const PublicV1PublishStatusResponseSchema: z$1.ZodObject<{
575
+ declare const DeploymentSchema: z$1.ZodObject<{
395
576
  deployment_id: z$1.ZodString;
396
- error_class: z$1.ZodOptional<z$1.ZodString>;
577
+ error_class: z$1.ZodOptional<z$1.ZodEnum<{
578
+ transient: "transient";
579
+ user_code: "user_code";
580
+ user_config: "user_config";
581
+ user_config_code: "user_config_code";
582
+ user_config_external: "user_config_external";
583
+ user_data: "user_data";
584
+ blocked_by_policy: "blocked_by_policy";
585
+ internal: "internal";
586
+ }>>;
397
587
  error_code: z$1.ZodOptional<z$1.ZodString>;
398
588
  error_message: z$1.ZodOptional<z$1.ZodString>;
399
589
  status: z$1.ZodEnum<{
590
+ completed: "completed";
400
591
  unknown: "unknown";
401
- error: "error";
402
592
  running: "running";
403
- completed: "completed";
593
+ error: "error";
404
594
  }>;
405
595
  url: z$1.ZodOptional<z$1.ZodString>;
406
596
  }, z$1.core.$strip>;
@@ -412,45 +602,66 @@ declare const PublicV1SetProjectSkillEnabledInputBodySchema: z$1.ZodObject<{
412
602
  enabled: z$1.ZodBoolean;
413
603
  project_id: z$1.ZodString;
414
604
  }, z$1.core.$strip>;
415
- declare const PublicV1UpdatePublishSettingsInputBodySchema: z$1.ZodObject<{
605
+ declare const UpdatePublishSettingsRequestSchema: z$1.ZodObject<{
416
606
  audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
417
607
  id: z$1.ZodString;
418
608
  type: z$1.ZodEnum<{
419
- group: "group";
420
609
  user: "user";
610
+ group: "group";
421
611
  }>;
422
612
  }, z$1.core.$strip>>>>;
423
613
  is_published: z$1.ZodOptional<z$1.ZodBoolean>;
424
614
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
615
+ public: "public";
425
616
  custom: "custom";
426
617
  workspace: "workspace";
427
- public: "public";
428
618
  }>>;
429
619
  }, z$1.core.$strip>;
430
- declare const PublicV1UpdatePublishSettingsResponseSchema: z$1.ZodObject<{
620
+ declare const PublishSettingsSchema: z$1.ZodObject<{
431
621
  is_published: z$1.ZodBoolean;
432
622
  url: z$1.ZodOptional<z$1.ZodString>;
433
- visibility: z$1.ZodString;
623
+ visibility: z$1.ZodEnum<{
624
+ public: "public";
625
+ custom: "custom";
626
+ workspace: "workspace";
627
+ }>;
434
628
  }, z$1.core.$strip>;
435
- declare const PublicV1WorkspaceSchema: z$1.ZodObject<{
629
+ declare const WorkspaceSchema: z$1.ZodObject<{
436
630
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
437
631
  description: z$1.ZodOptional<z$1.ZodString>;
438
632
  id: z$1.ZodString;
439
633
  image_url: z$1.ZodOptional<z$1.ZodString>;
440
634
  name: z$1.ZodString;
441
635
  num_projects: z$1.ZodNumber;
442
- plan: z$1.ZodString;
636
+ plan: z$1.ZodEnum<{
637
+ free: "free";
638
+ pro: "pro";
639
+ business: "business";
640
+ enterprise: "enterprise";
641
+ }>;
443
642
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
444
643
  }, z$1.core.$strip>;
445
- declare const PublicV1WorkspaceMemberSchema: z$1.ZodObject<{
644
+ declare const WorkspaceMembershipSchema: z$1.ZodObject<{
446
645
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
447
- role: z$1.ZodString;
646
+ role: z$1.ZodEnum<{
647
+ owner: "owner";
648
+ admin: "admin";
649
+ member: "member";
650
+ viewer: "viewer";
651
+ collaborator: "collaborator";
652
+ }>;
448
653
  user_id: z$1.ZodString;
449
654
  }, z$1.core.$strip>;
450
- declare const PublicV1GetWorkspaceBodySchema: z$1.ZodObject<{
655
+ declare const GetWorkspaceResponseSchema: z$1.ZodObject<{
451
656
  current_member: z$1.ZodOptional<z$1.ZodObject<{
452
657
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
453
- role: z$1.ZodString;
658
+ role: z$1.ZodEnum<{
659
+ owner: "owner";
660
+ admin: "admin";
661
+ member: "member";
662
+ viewer: "viewer";
663
+ collaborator: "collaborator";
664
+ }>;
454
665
  user_id: z$1.ZodString;
455
666
  }, z$1.core.$strip>>;
456
667
  workspace: z$1.ZodObject<{
@@ -460,39 +671,88 @@ declare const PublicV1GetWorkspaceBodySchema: z$1.ZodObject<{
460
671
  image_url: z$1.ZodOptional<z$1.ZodString>;
461
672
  name: z$1.ZodString;
462
673
  num_projects: z$1.ZodNumber;
463
- plan: z$1.ZodString;
674
+ plan: z$1.ZodEnum<{
675
+ free: "free";
676
+ pro: "pro";
677
+ business: "business";
678
+ enterprise: "enterprise";
679
+ }>;
464
680
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
465
681
  }, z$1.core.$strip>;
466
682
  }, z$1.core.$strip>;
467
- declare const PublicV1WorkspaceWithMembershipSchema: z$1.ZodObject<{
683
+ declare const WorkspaceWithMembershipSchema: z$1.ZodObject<{
468
684
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
469
685
  description: z$1.ZodOptional<z$1.ZodString>;
470
686
  id: z$1.ZodString;
471
687
  image_url: z$1.ZodOptional<z$1.ZodString>;
472
688
  membership: z$1.ZodOptional<z$1.ZodObject<{
473
689
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
474
- role: z$1.ZodString;
690
+ role: z$1.ZodEnum<{
691
+ owner: "owner";
692
+ admin: "admin";
693
+ member: "member";
694
+ viewer: "viewer";
695
+ collaborator: "collaborator";
696
+ }>;
475
697
  user_id: z$1.ZodString;
476
698
  }, z$1.core.$strip>>;
477
699
  name: z$1.ZodString;
478
700
  num_projects: z$1.ZodNumber;
479
- plan: z$1.ZodString;
701
+ plan: z$1.ZodEnum<{
702
+ free: "free";
703
+ pro: "pro";
704
+ business: "business";
705
+ enterprise: "enterprise";
706
+ }>;
480
707
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
481
708
  }, z$1.core.$strip>;
482
709
  declare const RemixJobFailureSchema: z$1.ZodObject<{
483
710
  code: z$1.ZodOptional<z$1.ZodString>;
484
- failed_step: z$1.ZodString;
711
+ failed_step: z$1.ZodEnum<{
712
+ completed: "completed";
713
+ failed: "failed";
714
+ starting: "starting";
715
+ creating_new_project: "creating_new_project";
716
+ restoring_supabase: "restoring_supabase";
717
+ copying_history: "copying_history";
718
+ preparing_repository: "preparing_repository";
719
+ remixing_integration: "remixing_integration";
720
+ pushing_repository: "pushing_repository";
721
+ finalizing: "finalizing";
722
+ }>;
485
723
  message: z$1.ZodString;
486
724
  }, z$1.core.$strip>;
487
725
  declare const RemixJobStepInfoSchema: z$1.ZodObject<{
488
726
  failure: z$1.ZodOptional<z$1.ZodObject<{
489
727
  code: z$1.ZodOptional<z$1.ZodString>;
490
- failed_step: z$1.ZodString;
728
+ failed_step: z$1.ZodEnum<{
729
+ completed: "completed";
730
+ failed: "failed";
731
+ starting: "starting";
732
+ creating_new_project: "creating_new_project";
733
+ restoring_supabase: "restoring_supabase";
734
+ copying_history: "copying_history";
735
+ preparing_repository: "preparing_repository";
736
+ remixing_integration: "remixing_integration";
737
+ pushing_repository: "pushing_repository";
738
+ finalizing: "finalizing";
739
+ }>;
491
740
  message: z$1.ZodString;
492
741
  }, z$1.core.$strip>>;
493
742
  integration_name: z$1.ZodOptional<z$1.ZodString>;
494
743
  status: z$1.ZodOptional<z$1.ZodString>;
495
- step: z$1.ZodString;
744
+ step: z$1.ZodEnum<{
745
+ completed: "completed";
746
+ failed: "failed";
747
+ starting: "starting";
748
+ creating_new_project: "creating_new_project";
749
+ restoring_supabase: "restoring_supabase";
750
+ copying_history: "copying_history";
751
+ preparing_repository: "preparing_repository";
752
+ remixing_integration: "remixing_integration";
753
+ pushing_repository: "pushing_repository";
754
+ finalizing: "finalizing";
755
+ }>;
496
756
  }, z$1.core.$strip>;
497
757
  declare const RemixWarningSchema: z$1.ZodObject<{
498
758
  code: z$1.ZodEnum<{
@@ -540,8 +800,8 @@ declare const SearchProjectItemSchema: z$1.ZodObject<{
540
800
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
541
801
  project_type: z$1.ZodOptional<z$1.ZodString>;
542
802
  publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
543
- private: "private";
544
803
  public: "public";
804
+ private: "private";
545
805
  }>>;
546
806
  reasons: z$1.ZodOptional<z$1.ZodUnknown>;
547
807
  remix_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -560,9 +820,9 @@ declare const SearchProjectItemSchema: z$1.ZodObject<{
560
820
  user_id: z$1.ZodString;
561
821
  user_photo_url: z$1.ZodOptional<z$1.ZodString>;
562
822
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
563
- draft: "draft";
564
- private: "private";
565
823
  public: "public";
824
+ private: "private";
825
+ draft: "draft";
566
826
  workspace_view: "workspace_view";
567
827
  }>>;
568
828
  workspace_id: z$1.ZodString;
@@ -606,8 +866,8 @@ declare const SearchWorkspaceProjectsResponseSchema: z$1.ZodObject<{
606
866
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
607
867
  project_type: z$1.ZodOptional<z$1.ZodString>;
608
868
  publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
609
- private: "private";
610
869
  public: "public";
870
+ private: "private";
611
871
  }>>;
612
872
  reasons: z$1.ZodOptional<z$1.ZodUnknown>;
613
873
  remix_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -626,13 +886,14 @@ declare const SearchWorkspaceProjectsResponseSchema: z$1.ZodObject<{
626
886
  user_id: z$1.ZodString;
627
887
  user_photo_url: z$1.ZodOptional<z$1.ZodString>;
628
888
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
629
- draft: "draft";
630
- private: "private";
631
889
  public: "public";
890
+ private: "private";
891
+ draft: "draft";
632
892
  workspace_view: "workspace_view";
633
893
  }>>;
634
894
  workspace_id: z$1.ZodString;
635
895
  }, z$1.core.$strip>>>;
896
+ title_search: z$1.ZodOptional<z$1.ZodBoolean>;
636
897
  total: z$1.ZodNumber;
637
898
  }, z$1.core.$strip>;
638
899
  declare const SkippedProjectInfoSchema: z$1.ZodObject<{
@@ -970,14 +1231,14 @@ declare const TrendDataPointSchema: z$1.ZodObject<{
970
1231
  time: z$1.ZodString;
971
1232
  visits: z$1.ZodNumber;
972
1233
  }, z$1.core.$strip>;
973
- declare const ProjectTrendResponseSchema: z$1.ZodObject<{
1234
+ declare const AnalyticsTrendSchema: z$1.ZodObject<{
974
1235
  currentVisitors: z$1.ZodNumber;
975
1236
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
976
1237
  time: z$1.ZodString;
977
1238
  visits: z$1.ZodNumber;
978
1239
  }, z$1.core.$strip>>>;
979
1240
  }, z$1.core.$strip>;
980
- declare const PublicV1ProjectAnalyticsBodySchema: z$1.ZodObject<{
1241
+ declare const ProjectAnalyticsSchema: z$1.ZodObject<{
981
1242
  lists: z$1.ZodOptional<z$1.ZodObject<{
982
1243
  country: z$1.ZodObject<{
983
1244
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
@@ -1081,6 +1342,7 @@ declare const AppUserConnectorApiSchema: z$1.ZodObject<{
1081
1342
  can_restrict_to_admins: z$1.ZodBoolean;
1082
1343
  categories: z$1.ZodArray<z$1.ZodEnum<{
1083
1344
  custom: "custom";
1345
+ security: "security";
1084
1346
  ecommerce: "ecommerce";
1085
1347
  marketing: "marketing";
1086
1348
  productivity: "productivity";
@@ -1090,7 +1352,6 @@ declare const AppUserConnectorApiSchema: z$1.ZodObject<{
1090
1352
  messaging: "messaging";
1091
1353
  development: "development";
1092
1354
  payments: "payments";
1093
- security: "security";
1094
1355
  }>>;
1095
1356
  creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
1096
1357
  name: z$1.ZodString;
@@ -1126,6 +1387,7 @@ declare const McpConnectorSchema: z$1.ZodObject<{
1126
1387
  app_site_url: z$1.ZodOptional<z$1.ZodString>;
1127
1388
  category: z$1.ZodEnum<{
1128
1389
  custom: "custom";
1390
+ security: "security";
1129
1391
  ecommerce: "ecommerce";
1130
1392
  marketing: "marketing";
1131
1393
  productivity: "productivity";
@@ -1135,7 +1397,6 @@ declare const McpConnectorSchema: z$1.ZodObject<{
1135
1397
  messaging: "messaging";
1136
1398
  development: "development";
1137
1399
  payments: "payments";
1138
- security: "security";
1139
1400
  }>;
1140
1401
  connect_interaction: z$1.ZodOptional<z$1.ZodEnum<{
1141
1402
  desktop_app_download: "desktop_app_download";
@@ -1175,9 +1436,9 @@ declare const McpConnectorSchema: z$1.ZodObject<{
1175
1436
  searchTags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
1176
1437
  server_url: z$1.ZodOptional<z$1.ZodString>;
1177
1438
  status: z$1.ZodEnum<{
1439
+ disabled: "disabled";
1178
1440
  connected: "connected";
1179
1441
  available: "available";
1180
- disabled: "disabled";
1181
1442
  }>;
1182
1443
  summary: z$1.ZodString;
1183
1444
  tools: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
@@ -1235,9 +1496,11 @@ declare const SeamlessConnectorApiSchema: z$1.ZodObject<{
1235
1496
  toolIntegrationName: z$1.ZodOptional<z$1.ZodString>;
1236
1497
  }, z$1.core.$strip>;
1237
1498
  declare const StandardConnectorApiSchema: z$1.ZodObject<{
1499
+ can_deploy_apps: z$1.ZodBoolean;
1238
1500
  can_restrict_to_admins: z$1.ZodBoolean;
1239
1501
  categories: z$1.ZodArray<z$1.ZodEnum<{
1240
1502
  custom: "custom";
1503
+ security: "security";
1241
1504
  ecommerce: "ecommerce";
1242
1505
  marketing: "marketing";
1243
1506
  productivity: "productivity";
@@ -1247,11 +1510,10 @@ declare const StandardConnectorApiSchema: z$1.ZodObject<{
1247
1510
  messaging: "messaging";
1248
1511
  development: "development";
1249
1512
  payments: "payments";
1250
- security: "security";
1251
1513
  }>>;
1252
1514
  connection_scope: z$1.ZodEnum<{
1253
- workspace: "workspace";
1254
1515
  project: "project";
1516
+ workspace: "workspace";
1255
1517
  }>;
1256
1518
  creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
1257
1519
  name: z$1.ZodString;
@@ -1332,15 +1594,21 @@ declare const V1AvailableConnectorEntrySchema: z$1.ZodObject<{
1332
1594
  declare const V1AwaitingInputSummarySchema: z$1.ZodObject<{
1333
1595
  event_id: z$1.ZodString;
1334
1596
  input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
1597
+ params: z$1.ZodOptional<z$1.ZodUnknown>;
1335
1598
  prev_session_id: z$1.ZodOptional<z$1.ZodString>;
1599
+ tool_id: z$1.ZodOptional<z$1.ZodString>;
1336
1600
  }, z$1.core.$strip>;
1337
- declare const V1BillingCreditLimitRowSchema: z$1.ZodObject<{
1601
+ declare const MemberCreditLimitSchema: z$1.ZodObject<{
1338
1602
  monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1603
+ temporary_limit_expires_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1604
+ temporary_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1339
1605
  user_id: z$1.ZodString;
1340
1606
  }, z$1.core.$strip>;
1341
- declare const V1BillingCreditLimitsBodySchema: z$1.ZodObject<{
1607
+ declare const CreditLimitPageSchema: z$1.ZodObject<{
1342
1608
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
1343
1609
  monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1610
+ temporary_limit_expires_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1611
+ temporary_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
1344
1612
  user_id: z$1.ZodString;
1345
1613
  }, z$1.core.$strip>>>;
1346
1614
  default_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
@@ -1349,48 +1617,81 @@ declare const V1BillingCreditLimitsBodySchema: z$1.ZodObject<{
1349
1617
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
1350
1618
  }, z$1.core.$strip>;
1351
1619
  }, z$1.core.$strip>;
1352
- declare const V1BillingPeriodSchema: z$1.ZodObject<{
1620
+ declare const BillingPeriodSchema: z$1.ZodObject<{
1353
1621
  end: z$1.ZodISODateTime;
1354
1622
  start: z$1.ZodISODateTime;
1355
1623
  }, z$1.core.$strip>;
1356
- declare const V1BillingUsagePeriodSchema: z$1.ZodObject<{
1624
+ declare const CreditUsagePeriodSchema: z$1.ZodObject<{
1357
1625
  end: z$1.ZodString;
1358
- group_by: z$1.ZodOptional<z$1.ZodString>;
1359
- interval: z$1.ZodOptional<z$1.ZodString>;
1626
+ group_by: z$1.ZodOptional<z$1.ZodEnum<{
1627
+ project: "project";
1628
+ member: "member";
1629
+ }>>;
1630
+ interval: z$1.ZodOptional<z$1.ZodEnum<{
1631
+ day: "day";
1632
+ week: "week";
1633
+ month: "month";
1634
+ }>>;
1360
1635
  start: z$1.ZodString;
1361
1636
  }, z$1.core.$strip>;
1362
- declare const V1BulkMemberCreditLimitItemSchema: z$1.ZodObject<{
1637
+ declare const MemberCreditLimitUpdateSchema: z$1.ZodObject<{
1638
+ duration: z$1.ZodOptional<z$1.ZodEnum<{
1639
+ permanent: "permanent";
1640
+ current_period: "current_period";
1641
+ }>>;
1363
1642
  email: z$1.ZodOptional<z$1.ZodString>;
1364
1643
  monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
1365
1644
  user_id: z$1.ZodOptional<z$1.ZodString>;
1366
1645
  }, z$1.core.$strip>;
1367
- declare const V1BillingBulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
1646
+ declare const SetMemberCreditLimitsRequestSchema: z$1.ZodObject<{
1368
1647
  members: z$1.ZodArray<z$1.ZodObject<{
1648
+ duration: z$1.ZodOptional<z$1.ZodEnum<{
1649
+ permanent: "permanent";
1650
+ current_period: "current_period";
1651
+ }>>;
1369
1652
  email: z$1.ZodOptional<z$1.ZodString>;
1370
1653
  monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
1371
1654
  user_id: z$1.ZodOptional<z$1.ZodString>;
1372
1655
  }, z$1.core.$strip>>;
1373
1656
  }, z$1.core.$strip>;
1374
- declare const V1BulkMemberCreditLimitResultSchema: z$1.ZodObject<{
1657
+ declare const MemberCreditLimitResultSchema: z$1.ZodObject<{
1658
+ approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
1659
+ duration: z$1.ZodOptional<z$1.ZodEnum<{
1660
+ current_period: "current_period";
1661
+ }>>;
1375
1662
  email: z$1.ZodOptional<z$1.ZodString>;
1376
1663
  error: z$1.ZodOptional<z$1.ZodString>;
1377
- status: z$1.ZodString;
1664
+ status: z$1.ZodEnum<{
1665
+ success: "success";
1666
+ error: "error";
1667
+ }>;
1378
1668
  user_id: z$1.ZodOptional<z$1.ZodString>;
1379
1669
  }, z$1.core.$strip>;
1380
1670
  declare const V1BulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
1381
1671
  members: z$1.ZodArray<z$1.ZodObject<{
1672
+ duration: z$1.ZodOptional<z$1.ZodEnum<{
1673
+ permanent: "permanent";
1674
+ current_period: "current_period";
1675
+ }>>;
1382
1676
  email: z$1.ZodOptional<z$1.ZodString>;
1383
1677
  monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
1384
1678
  user_id: z$1.ZodOptional<z$1.ZodString>;
1385
1679
  }, z$1.core.$strip>>;
1386
1680
  workspace_id: z$1.ZodString;
1387
1681
  }, z$1.core.$strip>;
1388
- declare const V1BulkSetMemberCreditLimitOutputBodySchema: z$1.ZodObject<{
1682
+ declare const SetMemberCreditLimitsResponseSchema: z$1.ZodObject<{
1389
1683
  failed: z$1.ZodNumber;
1390
1684
  results: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
1685
+ approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
1686
+ duration: z$1.ZodOptional<z$1.ZodEnum<{
1687
+ current_period: "current_period";
1688
+ }>>;
1391
1689
  email: z$1.ZodOptional<z$1.ZodString>;
1392
1690
  error: z$1.ZodOptional<z$1.ZodString>;
1393
- status: z$1.ZodString;
1691
+ status: z$1.ZodEnum<{
1692
+ success: "success";
1693
+ error: "error";
1694
+ }>;
1394
1695
  user_id: z$1.ZodOptional<z$1.ZodString>;
1395
1696
  }, z$1.core.$strip>>>;
1396
1697
  successful: z$1.ZodNumber;
@@ -1413,10 +1714,10 @@ declare const V1ConnectorResponseSchema: z$1.ZodObject<{
1413
1714
  name: z$1.ZodString;
1414
1715
  url: z$1.ZodOptional<z$1.ZodString>;
1415
1716
  }, z$1.core.$strip>;
1416
- declare const V1CreateEmbedUrlInputBodySchema: z$1.ZodObject<{
1717
+ declare const CreateEmbedUrlRequestSchema: z$1.ZodObject<{
1417
1718
  parent_origin: z$1.ZodString;
1418
1719
  }, z$1.core.$strip>;
1419
- declare const V1CreateEmbedUrlOutputBodySchema: z$1.ZodObject<{
1720
+ declare const CreateEmbedUrlResponseSchema: z$1.ZodObject<{
1420
1721
  embed_url: z$1.ZodString;
1421
1722
  expires_at: z$1.ZodISODateTime;
1422
1723
  }, z$1.core.$strip>;
@@ -1435,14 +1736,30 @@ declare const V1CreateProjectResponseSchema: z$1.ZodObject<{
1435
1736
  name: z$1.ZodOptional<z$1.ZodString>;
1436
1737
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
1437
1738
  preview_url: z$1.ZodOptional<z$1.ZodString>;
1438
- project_type: z$1.ZodOptional<z$1.ZodString>;
1439
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
1440
- status: z$1.ZodOptional<z$1.ZodString>;
1739
+ project_type: z$1.ZodOptional<z$1.ZodEnum<{
1740
+ project: "project";
1741
+ library: "library";
1742
+ }>>;
1743
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
1744
+ public: "public";
1745
+ private: "private";
1746
+ workspace_only: "workspace_only";
1747
+ }>>;
1748
+ status: z$1.ZodOptional<z$1.ZodEnum<{
1749
+ in_progress: "in_progress";
1750
+ completed: "completed";
1751
+ failed: "failed";
1752
+ }>>;
1441
1753
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
1442
1754
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1443
1755
  url: z$1.ZodOptional<z$1.ZodString>;
1444
1756
  user_id: z$1.ZodOptional<z$1.ZodString>;
1445
- visibility: z$1.ZodOptional<z$1.ZodString>;
1757
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
1758
+ public: "public";
1759
+ private: "private";
1760
+ draft: "draft";
1761
+ workspace_view: "workspace_view";
1762
+ }>>;
1446
1763
  workspace_id: z$1.ZodString;
1447
1764
  }, z$1.core.$strip>;
1448
1765
  declare const V1CreateVariantInputBodySchema: z$1.ZodObject<{
@@ -1455,7 +1772,8 @@ declare const V1CreateVariantOutputBodySchema: z$1.ZodObject<{
1455
1772
  thread_id: z$1.ZodString;
1456
1773
  variant_id: z$1.ZodString;
1457
1774
  }, z$1.core.$strip>;
1458
- declare const V1CreditHistoryEntrySchema: z$1.ZodObject<{
1775
+ declare const CreditHistoryEntrySchema: z$1.ZodObject<{
1776
+ credit_grant_id: z$1.ZodString;
1459
1777
  credits_change: z$1.ZodNumber;
1460
1778
  event_type: z$1.ZodEnum<{
1461
1779
  granted: "granted";
@@ -1583,6 +1901,7 @@ declare const V1ListAppUserConnectorsResponseSchema: z$1.ZodObject<{
1583
1901
  can_restrict_to_admins: z$1.ZodBoolean;
1584
1902
  categories: z$1.ZodArray<z$1.ZodEnum<{
1585
1903
  custom: "custom";
1904
+ security: "security";
1586
1905
  ecommerce: "ecommerce";
1587
1906
  marketing: "marketing";
1588
1907
  productivity: "productivity";
@@ -1592,7 +1911,6 @@ declare const V1ListAppUserConnectorsResponseSchema: z$1.ZodObject<{
1592
1911
  messaging: "messaging";
1593
1912
  development: "development";
1594
1913
  payments: "payments";
1595
- security: "security";
1596
1914
  }>>;
1597
1915
  creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
1598
1916
  name: z$1.ZodString;
@@ -1669,6 +1987,7 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
1669
1987
  app_site_url: z$1.ZodOptional<z$1.ZodString>;
1670
1988
  category: z$1.ZodEnum<{
1671
1989
  custom: "custom";
1990
+ security: "security";
1672
1991
  ecommerce: "ecommerce";
1673
1992
  marketing: "marketing";
1674
1993
  productivity: "productivity";
@@ -1678,7 +1997,6 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
1678
1997
  messaging: "messaging";
1679
1998
  development: "development";
1680
1999
  payments: "payments";
1681
- security: "security";
1682
2000
  }>;
1683
2001
  connect_interaction: z$1.ZodOptional<z$1.ZodEnum<{
1684
2002
  desktop_app_download: "desktop_app_download";
@@ -1718,9 +2036,9 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
1718
2036
  searchTags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
1719
2037
  server_url: z$1.ZodOptional<z$1.ZodString>;
1720
2038
  status: z$1.ZodEnum<{
2039
+ disabled: "disabled";
1721
2040
  connected: "connected";
1722
2041
  available: "available";
1723
- disabled: "disabled";
1724
2042
  }>;
1725
2043
  summary: z$1.ZodString;
1726
2044
  tools: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
@@ -1789,9 +2107,11 @@ declare const V1ListSeamlessConnectorsResponseSchema: z$1.ZodObject<{
1789
2107
  }, z$1.core.$strip>;
1790
2108
  declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
1791
2109
  connectors: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2110
+ can_deploy_apps: z$1.ZodBoolean;
1792
2111
  can_restrict_to_admins: z$1.ZodBoolean;
1793
2112
  categories: z$1.ZodArray<z$1.ZodEnum<{
1794
2113
  custom: "custom";
2114
+ security: "security";
1795
2115
  ecommerce: "ecommerce";
1796
2116
  marketing: "marketing";
1797
2117
  productivity: "productivity";
@@ -1801,11 +2121,10 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
1801
2121
  messaging: "messaging";
1802
2122
  development: "development";
1803
2123
  payments: "payments";
1804
- security: "security";
1805
2124
  }>>;
1806
2125
  connection_scope: z$1.ZodEnum<{
1807
- workspace: "workspace";
1808
2126
  project: "project";
2127
+ workspace: "workspace";
1809
2128
  }>;
1810
2129
  creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
1811
2130
  name: z$1.ZodString;
@@ -1862,7 +2181,7 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
1862
2181
  has_more: z$1.ZodBoolean;
1863
2182
  total: z$1.ZodNumber;
1864
2183
  }, z$1.core.$strip>;
1865
- declare const V1ListWorkspacesBodySchema: z$1.ZodObject<{
2184
+ declare const WorkspacePageSchema: z$1.ZodObject<{
1866
2185
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
1867
2186
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1868
2187
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -1870,12 +2189,23 @@ declare const V1ListWorkspacesBodySchema: z$1.ZodObject<{
1870
2189
  image_url: z$1.ZodOptional<z$1.ZodString>;
1871
2190
  membership: z$1.ZodOptional<z$1.ZodObject<{
1872
2191
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1873
- role: z$1.ZodString;
2192
+ role: z$1.ZodEnum<{
2193
+ owner: "owner";
2194
+ admin: "admin";
2195
+ member: "member";
2196
+ viewer: "viewer";
2197
+ collaborator: "collaborator";
2198
+ }>;
1874
2199
  user_id: z$1.ZodString;
1875
2200
  }, z$1.core.$strip>>;
1876
2201
  name: z$1.ZodString;
1877
2202
  num_projects: z$1.ZodNumber;
1878
- plan: z$1.ZodString;
2203
+ plan: z$1.ZodEnum<{
2204
+ free: "free";
2205
+ pro: "pro";
2206
+ business: "business";
2207
+ enterprise: "enterprise";
2208
+ }>;
1879
2209
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1880
2210
  }, z$1.core.$strip>>>;
1881
2211
  pagination: z$1.ZodObject<{
@@ -1891,9 +2221,18 @@ declare const V1AiResponseSummarySchema: z$1.ZodObject<{
1891
2221
  awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
1892
2222
  event_id: z$1.ZodString;
1893
2223
  input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
2224
+ params: z$1.ZodOptional<z$1.ZodUnknown>;
1894
2225
  prev_session_id: z$1.ZodOptional<z$1.ZodString>;
2226
+ tool_id: z$1.ZodOptional<z$1.ZodString>;
1895
2227
  }, z$1.core.$strip>>;
1896
2228
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2229
+ completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
2230
+ error: "error";
2231
+ finished: "finished";
2232
+ stopped: "stopped";
2233
+ policy_violation: "policy_violation";
2234
+ max_iterations: "max_iterations";
2235
+ }>>;
1897
2236
  content: z$1.ZodString;
1898
2237
  cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
1899
2238
  edit_id: z$1.ZodOptional<z$1.ZodString>;
@@ -1942,9 +2281,18 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
1942
2281
  awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
1943
2282
  event_id: z$1.ZodString;
1944
2283
  input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
2284
+ params: z$1.ZodOptional<z$1.ZodUnknown>;
1945
2285
  prev_session_id: z$1.ZodOptional<z$1.ZodString>;
2286
+ tool_id: z$1.ZodOptional<z$1.ZodString>;
1946
2287
  }, z$1.core.$strip>>;
1947
2288
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2289
+ completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
2290
+ error: "error";
2291
+ finished: "finished";
2292
+ stopped: "stopped";
2293
+ policy_violation: "policy_violation";
2294
+ max_iterations: "max_iterations";
2295
+ }>>;
1948
2296
  content: z$1.ZodString;
1949
2297
  cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
1950
2298
  created_at: z$1.ZodString;
@@ -1961,9 +2309,18 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
1961
2309
  awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
1962
2310
  event_id: z$1.ZodString;
1963
2311
  input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
2312
+ params: z$1.ZodOptional<z$1.ZodUnknown>;
1964
2313
  prev_session_id: z$1.ZodOptional<z$1.ZodString>;
2314
+ tool_id: z$1.ZodOptional<z$1.ZodString>;
1965
2315
  }, z$1.core.$strip>>;
1966
2316
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2317
+ completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
2318
+ error: "error";
2319
+ finished: "finished";
2320
+ stopped: "stopped";
2321
+ policy_violation: "policy_violation";
2322
+ max_iterations: "max_iterations";
2323
+ }>>;
1967
2324
  content: z$1.ZodString;
1968
2325
  cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
1969
2326
  edit_id: z$1.ZodOptional<z$1.ZodString>;
@@ -1982,14 +2339,14 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
1982
2339
  declare const V1MoveProjectsToFolderInputBodySchema: z$1.ZodObject<{
1983
2340
  project_ids: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
1984
2341
  }, z$1.core.$strip>;
1985
- declare const V1ProjectCollaboratorSchema: z$1.ZodObject<{
2342
+ declare const ProjectCollaboratorSchema: z$1.ZodObject<{
1986
2343
  accepted_at: z$1.ZodOptional<z$1.ZodISODateTime>;
1987
2344
  access_level: z$1.ZodEnum<{
1988
- none: "none";
1989
2345
  owner: "owner";
1990
2346
  admin: "admin";
1991
2347
  write: "write";
1992
2348
  read: "read";
2349
+ none: "none";
1993
2350
  }>;
1994
2351
  display_name: z$1.ZodOptional<z$1.ZodString>;
1995
2352
  email: z$1.ZodOptional<z$1.ZodString>;
@@ -1997,17 +2354,18 @@ declare const V1ProjectCollaboratorSchema: z$1.ZodObject<{
1997
2354
  invited_by: z$1.ZodOptional<z$1.ZodString>;
1998
2355
  is_internal: z$1.ZodBoolean;
1999
2356
  is_workspace_member: z$1.ZodBoolean;
2357
+ last_accessed_at: z$1.ZodNullable<z$1.ZodISODateTime>;
2000
2358
  user_id: z$1.ZodString;
2001
2359
  }, z$1.core.$strip>;
2002
- declare const CursorListResponseV1ProjectCollaboratorSchema: z$1.ZodObject<{
2360
+ declare const ProjectCollaboratorPageSchema: z$1.ZodObject<{
2003
2361
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2004
2362
  accepted_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2005
2363
  access_level: z$1.ZodEnum<{
2006
- none: "none";
2007
2364
  owner: "owner";
2008
2365
  admin: "admin";
2009
2366
  write: "write";
2010
2367
  read: "read";
2368
+ none: "none";
2011
2369
  }>;
2012
2370
  display_name: z$1.ZodOptional<z$1.ZodString>;
2013
2371
  email: z$1.ZodOptional<z$1.ZodString>;
@@ -2015,6 +2373,7 @@ declare const CursorListResponseV1ProjectCollaboratorSchema: z$1.ZodObject<{
2015
2373
  invited_by: z$1.ZodOptional<z$1.ZodString>;
2016
2374
  is_internal: z$1.ZodBoolean;
2017
2375
  is_workspace_member: z$1.ZodBoolean;
2376
+ last_accessed_at: z$1.ZodNullable<z$1.ZodISODateTime>;
2018
2377
  user_id: z$1.ZodString;
2019
2378
  }, z$1.core.$strip>>>;
2020
2379
  pagination: z$1.ZodObject<{
@@ -2035,7 +2394,7 @@ declare const V1ProjectGitFilesResponseSchema: z$1.ZodObject<{
2035
2394
  ref: z$1.ZodString;
2036
2395
  total: z$1.ZodNumber;
2037
2396
  }, z$1.core.$strip>;
2038
- declare const V1ProjectResponseSchema: z$1.ZodObject<{
2397
+ declare const ProjectSchema: z$1.ZodObject<{
2039
2398
  created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2040
2399
  description: z$1.ZodOptional<z$1.ZodString>;
2041
2400
  display_name: z$1.ZodOptional<z$1.ZodString>;
@@ -2049,14 +2408,30 @@ declare const V1ProjectResponseSchema: z$1.ZodObject<{
2049
2408
  name: z$1.ZodOptional<z$1.ZodString>;
2050
2409
  og_image_url: z$1.ZodOptional<z$1.ZodString>;
2051
2410
  preview_url: z$1.ZodOptional<z$1.ZodString>;
2052
- project_type: z$1.ZodOptional<z$1.ZodString>;
2053
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
2054
- status: z$1.ZodOptional<z$1.ZodString>;
2411
+ project_type: z$1.ZodOptional<z$1.ZodEnum<{
2412
+ project: "project";
2413
+ library: "library";
2414
+ }>>;
2415
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
2416
+ public: "public";
2417
+ private: "private";
2418
+ workspace_only: "workspace_only";
2419
+ }>>;
2420
+ status: z$1.ZodOptional<z$1.ZodEnum<{
2421
+ in_progress: "in_progress";
2422
+ completed: "completed";
2423
+ failed: "failed";
2424
+ }>>;
2055
2425
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
2056
2426
  updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2057
2427
  url: z$1.ZodOptional<z$1.ZodString>;
2058
2428
  user_id: z$1.ZodOptional<z$1.ZodString>;
2059
- visibility: z$1.ZodOptional<z$1.ZodString>;
2429
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
2430
+ public: "public";
2431
+ private: "private";
2432
+ draft: "draft";
2433
+ workspace_view: "workspace_view";
2434
+ }>>;
2060
2435
  workspace_id: z$1.ZodString;
2061
2436
  }, z$1.core.$strip>;
2062
2437
  declare const V1ProjectSkillDtoSchema: z$1.ZodObject<{
@@ -2106,7 +2481,7 @@ declare const V1RemixInitInputBodySchema: z$1.ZodObject<{
2106
2481
  declare const V1RemixInitOutputBodySchema: z$1.ZodObject<{
2107
2482
  job_id: z$1.ZodString;
2108
2483
  }, z$1.core.$strip>;
2109
- declare const V1RemixProgressResultSchema: z$1.ZodObject<{
2484
+ declare const RemixResultSchema: z$1.ZodObject<{
2110
2485
  project_id: z$1.ZodString;
2111
2486
  warnings: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2112
2487
  code: z$1.ZodEnum<{
@@ -2118,7 +2493,7 @@ declare const V1RemixProgressResultSchema: z$1.ZodObject<{
2118
2493
  skipped_integration: z$1.ZodOptional<z$1.ZodString>;
2119
2494
  }, z$1.core.$strip>>>>;
2120
2495
  }, z$1.core.$strip>;
2121
- declare const PublicV1RemixJobOutputBodySchema: z$1.ZodObject<{
2496
+ declare const RemixJobSchema: z$1.ZodObject<{
2122
2497
  error_code: z$1.ZodOptional<z$1.ZodString>;
2123
2498
  error_message: z$1.ZodOptional<z$1.ZodString>;
2124
2499
  result: z$1.ZodOptional<z$1.ZodObject<{
@@ -2133,16 +2508,44 @@ declare const PublicV1RemixJobOutputBodySchema: z$1.ZodObject<{
2133
2508
  skipped_integration: z$1.ZodOptional<z$1.ZodString>;
2134
2509
  }, z$1.core.$strip>>>>;
2135
2510
  }, z$1.core.$strip>>;
2136
- status: z$1.ZodString;
2511
+ status: z$1.ZodEnum<{
2512
+ completed: "completed";
2513
+ unknown: "unknown";
2514
+ running: "running";
2515
+ error: "error";
2516
+ preparing: "preparing";
2517
+ }>;
2137
2518
  step: z$1.ZodOptional<z$1.ZodObject<{
2138
2519
  failure: z$1.ZodOptional<z$1.ZodObject<{
2139
2520
  code: z$1.ZodOptional<z$1.ZodString>;
2140
- failed_step: z$1.ZodString;
2521
+ failed_step: z$1.ZodEnum<{
2522
+ completed: "completed";
2523
+ failed: "failed";
2524
+ starting: "starting";
2525
+ creating_new_project: "creating_new_project";
2526
+ restoring_supabase: "restoring_supabase";
2527
+ copying_history: "copying_history";
2528
+ preparing_repository: "preparing_repository";
2529
+ remixing_integration: "remixing_integration";
2530
+ pushing_repository: "pushing_repository";
2531
+ finalizing: "finalizing";
2532
+ }>;
2141
2533
  message: z$1.ZodString;
2142
2534
  }, z$1.core.$strip>>;
2143
2535
  integration_name: z$1.ZodOptional<z$1.ZodString>;
2144
2536
  status: z$1.ZodOptional<z$1.ZodString>;
2145
- step: z$1.ZodString;
2537
+ step: z$1.ZodEnum<{
2538
+ completed: "completed";
2539
+ failed: "failed";
2540
+ starting: "starting";
2541
+ creating_new_project: "creating_new_project";
2542
+ restoring_supabase: "restoring_supabase";
2543
+ copying_history: "copying_history";
2544
+ preparing_repository: "preparing_repository";
2545
+ remixing_integration: "remixing_integration";
2546
+ pushing_repository: "pushing_repository";
2547
+ finalizing: "finalizing";
2548
+ }>;
2146
2549
  }, z$1.core.$strip>>;
2147
2550
  }, z$1.core.$strip>;
2148
2551
  declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
@@ -2164,69 +2567,138 @@ declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
2164
2567
  step: z$1.ZodOptional<z$1.ZodObject<{
2165
2568
  failure: z$1.ZodOptional<z$1.ZodObject<{
2166
2569
  code: z$1.ZodOptional<z$1.ZodString>;
2167
- failed_step: z$1.ZodString;
2570
+ failed_step: z$1.ZodEnum<{
2571
+ completed: "completed";
2572
+ failed: "failed";
2573
+ starting: "starting";
2574
+ creating_new_project: "creating_new_project";
2575
+ restoring_supabase: "restoring_supabase";
2576
+ copying_history: "copying_history";
2577
+ preparing_repository: "preparing_repository";
2578
+ remixing_integration: "remixing_integration";
2579
+ pushing_repository: "pushing_repository";
2580
+ finalizing: "finalizing";
2581
+ }>;
2168
2582
  message: z$1.ZodString;
2169
2583
  }, z$1.core.$strip>>;
2170
2584
  integration_name: z$1.ZodOptional<z$1.ZodString>;
2171
2585
  status: z$1.ZodOptional<z$1.ZodString>;
2172
- step: z$1.ZodString;
2586
+ step: z$1.ZodEnum<{
2587
+ completed: "completed";
2588
+ failed: "failed";
2589
+ starting: "starting";
2590
+ creating_new_project: "creating_new_project";
2591
+ restoring_supabase: "restoring_supabase";
2592
+ copying_history: "copying_history";
2593
+ preparing_repository: "preparing_repository";
2594
+ remixing_integration: "remixing_integration";
2595
+ pushing_repository: "pushing_repository";
2596
+ finalizing: "finalizing";
2597
+ }>;
2173
2598
  }, z$1.core.$strip>>;
2174
2599
  }, z$1.core.$strip>;
2175
2600
  declare const V1RemoveConnectorOutputBodySchema: z$1.ZodObject<{
2176
2601
  success: z$1.ZodBoolean;
2177
2602
  }, z$1.core.$strip>;
2178
- declare const V1SecurityFindingSchema: z$1.ZodObject<{
2603
+ declare const SecurityFindingSchema: z$1.ZodObject<{
2179
2604
  category: z$1.ZodOptional<z$1.ZodString>;
2180
2605
  created_at: z$1.ZodISODateTime;
2181
2606
  description: z$1.ZodOptional<z$1.ZodString>;
2182
2607
  details: z$1.ZodOptional<z$1.ZodString>;
2183
2608
  finding_id: z$1.ZodString;
2184
2609
  first_seen_scan_id: z$1.ZodOptional<z$1.ZodString>;
2185
- level: z$1.ZodString;
2610
+ level: z$1.ZodEnum<{
2611
+ error: "error";
2612
+ warn: "warn";
2613
+ info: "info";
2614
+ }>;
2186
2615
  link: z$1.ZodOptional<z$1.ZodString>;
2187
2616
  metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2188
2617
  name: z$1.ZodString;
2189
2618
  recurrence: z$1.ZodNumber;
2190
2619
  remediation_difficulty: z$1.ZodOptional<z$1.ZodString>;
2191
2620
  scanner_name: z$1.ZodString;
2192
- status: z$1.ZodString;
2621
+ status: z$1.ZodEnum<{
2622
+ open: "open";
2623
+ ignored: "ignored";
2624
+ fixed: "fixed";
2625
+ }>;
2193
2626
  updated_at: z$1.ZodISODateTime;
2194
2627
  }, z$1.core.$strip>;
2195
- declare const V1SecurityScanActorSchema: z$1.ZodObject<{
2628
+ declare const SecurityScanActorSchema: z$1.ZodObject<{
2196
2629
  email: z$1.ZodOptional<z$1.ZodString>;
2197
2630
  id: z$1.ZodOptional<z$1.ZodString>;
2198
2631
  name: z$1.ZodOptional<z$1.ZodString>;
2199
- type: z$1.ZodString;
2632
+ type: z$1.ZodEnum<{
2633
+ user: "user";
2634
+ system: "system";
2635
+ }>;
2200
2636
  }, z$1.core.$strip>;
2201
- declare const V1SecurityScanSummarySchema: z$1.ZodObject<{
2637
+ declare const SecurityScanSchema: z$1.ZodObject<{
2202
2638
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2203
2639
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2204
2640
  requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
2205
2641
  scan_id: z$1.ZodString;
2206
2642
  started_at: z$1.ZodISODateTime;
2207
- status: z$1.ZodString;
2208
- trigger_source: z$1.ZodString;
2643
+ status: z$1.ZodEnum<{
2644
+ completed: "completed";
2645
+ failed: "failed";
2646
+ running: "running";
2647
+ }>;
2648
+ trigger_source: z$1.ZodEnum<{
2649
+ workflow: "workflow";
2650
+ user: "user";
2651
+ ui_auto: "ui_auto";
2652
+ aikido_import: "aikido_import";
2653
+ manage_findings: "manage_findings";
2654
+ app_mcp_deep_auto: "app_mcp_deep_auto";
2655
+ hvt_scheduled: "hvt_scheduled";
2656
+ workspace_scheduled: "workspace_scheduled";
2657
+ enterprise_batch: "enterprise_batch";
2658
+ gitsync_pull: "gitsync_pull";
2659
+ }>;
2209
2660
  triggered_by: z$1.ZodObject<{
2210
2661
  email: z$1.ZodOptional<z$1.ZodString>;
2211
2662
  id: z$1.ZodOptional<z$1.ZodString>;
2212
2663
  name: z$1.ZodOptional<z$1.ZodString>;
2213
- type: z$1.ZodString;
2664
+ type: z$1.ZodEnum<{
2665
+ user: "user";
2666
+ system: "system";
2667
+ }>;
2214
2668
  }, z$1.core.$strip>;
2215
2669
  }, z$1.core.$strip>;
2216
- declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
2670
+ declare const SecurityScanPageSchema: z$1.ZodObject<{
2217
2671
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2218
2672
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2219
2673
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2220
2674
  requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
2221
2675
  scan_id: z$1.ZodString;
2222
2676
  started_at: z$1.ZodISODateTime;
2223
- status: z$1.ZodString;
2224
- trigger_source: z$1.ZodString;
2677
+ status: z$1.ZodEnum<{
2678
+ completed: "completed";
2679
+ failed: "failed";
2680
+ running: "running";
2681
+ }>;
2682
+ trigger_source: z$1.ZodEnum<{
2683
+ workflow: "workflow";
2684
+ user: "user";
2685
+ ui_auto: "ui_auto";
2686
+ aikido_import: "aikido_import";
2687
+ manage_findings: "manage_findings";
2688
+ app_mcp_deep_auto: "app_mcp_deep_auto";
2689
+ hvt_scheduled: "hvt_scheduled";
2690
+ workspace_scheduled: "workspace_scheduled";
2691
+ enterprise_batch: "enterprise_batch";
2692
+ gitsync_pull: "gitsync_pull";
2693
+ }>;
2225
2694
  triggered_by: z$1.ZodObject<{
2226
2695
  email: z$1.ZodOptional<z$1.ZodString>;
2227
2696
  id: z$1.ZodOptional<z$1.ZodString>;
2228
2697
  name: z$1.ZodOptional<z$1.ZodString>;
2229
- type: z$1.ZodString;
2698
+ type: z$1.ZodEnum<{
2699
+ user: "user";
2700
+ system: "system";
2701
+ }>;
2230
2702
  }, z$1.core.$strip>;
2231
2703
  }, z$1.core.$strip>>>;
2232
2704
  pagination: z$1.ZodObject<{
@@ -2234,16 +2706,20 @@ declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
2234
2706
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
2235
2707
  }, z$1.core.$strip>;
2236
2708
  }, z$1.core.$strip>;
2237
- declare const V1SecurityScannerRunSchema: z$1.ZodObject<{
2709
+ declare const SecurityScannerRunSchema: z$1.ZodObject<{
2238
2710
  commit_sha: z$1.ZodOptional<z$1.ZodString>;
2239
2711
  error_message: z$1.ZodOptional<z$1.ZodString>;
2240
2712
  finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2241
2713
  scanner_name: z$1.ZodString;
2242
2714
  scanner_version: z$1.ZodOptional<z$1.ZodString>;
2243
2715
  started_at: z$1.ZodISODateTime;
2244
- status: z$1.ZodString;
2716
+ status: z$1.ZodEnum<{
2717
+ failed: "failed";
2718
+ succeeded: "succeeded";
2719
+ skipped: "skipped";
2720
+ }>;
2245
2721
  }, z$1.core.$strip>;
2246
- declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
2722
+ declare const SecurityScanDetailSchema: z$1.ZodObject<{
2247
2723
  findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2248
2724
  category: z$1.ZodOptional<z$1.ZodString>;
2249
2725
  created_at: z$1.ZodISODateTime;
@@ -2251,14 +2727,22 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
2251
2727
  details: z$1.ZodOptional<z$1.ZodString>;
2252
2728
  finding_id: z$1.ZodString;
2253
2729
  first_seen_scan_id: z$1.ZodOptional<z$1.ZodString>;
2254
- level: z$1.ZodString;
2730
+ level: z$1.ZodEnum<{
2731
+ error: "error";
2732
+ warn: "warn";
2733
+ info: "info";
2734
+ }>;
2255
2735
  link: z$1.ZodOptional<z$1.ZodString>;
2256
2736
  metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2257
2737
  name: z$1.ZodString;
2258
2738
  recurrence: z$1.ZodNumber;
2259
2739
  remediation_difficulty: z$1.ZodOptional<z$1.ZodString>;
2260
2740
  scanner_name: z$1.ZodString;
2261
- status: z$1.ZodString;
2741
+ status: z$1.ZodEnum<{
2742
+ open: "open";
2743
+ ignored: "ignored";
2744
+ fixed: "fixed";
2745
+ }>;
2262
2746
  updated_at: z$1.ZodISODateTime;
2263
2747
  }, z$1.core.$strip>>>;
2264
2748
  scan: z$1.ZodObject<{
@@ -2267,13 +2751,31 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
2267
2751
  requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
2268
2752
  scan_id: z$1.ZodString;
2269
2753
  started_at: z$1.ZodISODateTime;
2270
- status: z$1.ZodString;
2271
- trigger_source: z$1.ZodString;
2754
+ status: z$1.ZodEnum<{
2755
+ completed: "completed";
2756
+ failed: "failed";
2757
+ running: "running";
2758
+ }>;
2759
+ trigger_source: z$1.ZodEnum<{
2760
+ workflow: "workflow";
2761
+ user: "user";
2762
+ ui_auto: "ui_auto";
2763
+ aikido_import: "aikido_import";
2764
+ manage_findings: "manage_findings";
2765
+ app_mcp_deep_auto: "app_mcp_deep_auto";
2766
+ hvt_scheduled: "hvt_scheduled";
2767
+ workspace_scheduled: "workspace_scheduled";
2768
+ enterprise_batch: "enterprise_batch";
2769
+ gitsync_pull: "gitsync_pull";
2770
+ }>;
2272
2771
  triggered_by: z$1.ZodObject<{
2273
2772
  email: z$1.ZodOptional<z$1.ZodString>;
2274
2773
  id: z$1.ZodOptional<z$1.ZodString>;
2275
2774
  name: z$1.ZodOptional<z$1.ZodString>;
2276
- type: z$1.ZodString;
2775
+ type: z$1.ZodEnum<{
2776
+ user: "user";
2777
+ system: "system";
2778
+ }>;
2277
2779
  }, z$1.core.$strip>;
2278
2780
  }, z$1.core.$strip>;
2279
2781
  scanner_runs: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
@@ -2283,7 +2785,11 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
2283
2785
  scanner_name: z$1.ZodString;
2284
2786
  scanner_version: z$1.ZodOptional<z$1.ZodString>;
2285
2787
  started_at: z$1.ZodISODateTime;
2286
- status: z$1.ZodString;
2788
+ status: z$1.ZodEnum<{
2789
+ failed: "failed";
2790
+ succeeded: "succeeded";
2791
+ skipped: "skipped";
2792
+ }>;
2287
2793
  }, z$1.core.$strip>>>;
2288
2794
  }, z$1.core.$strip>;
2289
2795
  declare const V1SelectedLibrarySchema: z$1.ZodObject<{
@@ -2320,9 +2826,9 @@ declare const V1SetProjectSkillEnabledOutputBodySchema: z$1.ZodObject<{
2320
2826
  }, z$1.core.$strip>;
2321
2827
  declare const V1SetProjectVisibilityInputBodySchema: z$1.ZodObject<{
2322
2828
  visibility: z$1.ZodEnum<{
2323
- draft: "draft";
2324
- private: "private";
2325
2829
  public: "public";
2830
+ private: "private";
2831
+ draft: "draft";
2326
2832
  workspace_view: "workspace_view";
2327
2833
  }>;
2328
2834
  }, z$1.core.$strip>;
@@ -2335,10 +2841,14 @@ declare const V1SetWorkspaceKnowledgeInputBodySchema: z$1.ZodObject<{
2335
2841
  declare const V1TriggerSecurityScanInputBodySchema: z$1.ZodObject<{
2336
2842
  project_id: z$1.ZodString;
2337
2843
  }, z$1.core.$strip>;
2338
- declare const V1TriggerSecurityScanResponseBodySchema: z$1.ZodObject<{
2844
+ declare const TriggerSecurityScanResponseSchema: z$1.ZodObject<{
2339
2845
  message: z$1.ZodOptional<z$1.ZodString>;
2340
2846
  scan_id: z$1.ZodString;
2341
- status: z$1.ZodString;
2847
+ status: z$1.ZodEnum<{
2848
+ completed: "completed";
2849
+ running: "running";
2850
+ started: "started";
2851
+ }>;
2342
2852
  }, z$1.core.$strip>;
2343
2853
  declare const V1UnscopedFileSchema: z$1.ZodObject<{
2344
2854
  file_id: z$1.ZodString;
@@ -2371,9 +2881,9 @@ declare const PublicV1ProjectCreateInputBodySchema: z$1.ZodObject<{
2371
2881
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
2372
2882
  template_project_id: z$1.ZodOptional<z$1.ZodString>;
2373
2883
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
2374
- draft: "draft";
2375
- private: "private";
2376
2884
  public: "public";
2885
+ private: "private";
2886
+ draft: "draft";
2377
2887
  workspace_view: "workspace_view";
2378
2888
  }>>;
2379
2889
  workspace_id: z$1.ZodString;
@@ -2425,9 +2935,9 @@ declare const V1CreateProjectInputBodySchema: z$1.ZodObject<{
2425
2935
  tech_stack: z$1.ZodOptional<z$1.ZodString>;
2426
2936
  template_project_id: z$1.ZodOptional<z$1.ZodString>;
2427
2937
  visibility: z$1.ZodOptional<z$1.ZodEnum<{
2428
- draft: "draft";
2429
- private: "private";
2430
2938
  public: "public";
2939
+ private: "private";
2940
+ draft: "draft";
2431
2941
  workspace_view: "workspace_view";
2432
2942
  }>>;
2433
2943
  }, z$1.core.$strip>;
@@ -2461,7 +2971,7 @@ declare const V1UpdateWorkspaceSettingsInputBodySchema: z$1.ZodObject<{
2461
2971
  default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
2462
2972
  workspace_id: z$1.ZodString;
2463
2973
  }, z$1.core.$strip>;
2464
- declare const V1UpdateWorkspaceSettingsNestedInputBodySchema: z$1.ZodObject<{
2974
+ declare const UpdateWorkspaceSettingsRequestSchema: z$1.ZodObject<{
2465
2975
  default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
2466
2976
  }, z$1.core.$strip>;
2467
2977
  declare const V1UsagePeriodSchema: z$1.ZodObject<{
@@ -2513,8 +3023,9 @@ declare const V1WorkspaceAuditLogsBodySchema: z$1.ZodObject<{
2513
3023
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
2514
3024
  }, z$1.core.$strip>;
2515
3025
  }, z$1.core.$strip>;
2516
- declare const V1WorkspaceCreditHistoryBodySchema: z$1.ZodObject<{
3026
+ declare const CreditHistoryPageSchema: z$1.ZodObject<{
2517
3027
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
3028
+ credit_grant_id: z$1.ZodString;
2518
3029
  credits_change: z$1.ZodNumber;
2519
3030
  event_type: z$1.ZodEnum<{
2520
3031
  granted: "granted";
@@ -2542,18 +3053,44 @@ declare const V1WorkspaceCreditHistoryBodySchema: z$1.ZodObject<{
2542
3053
  total: z$1.ZodOptional<z$1.ZodNumber>;
2543
3054
  total_is_capped: z$1.ZodOptional<z$1.ZodBoolean>;
2544
3055
  }, z$1.core.$strip>;
2545
- declare const V1WorkspaceCreditsExpiringGrantSchema: z$1.ZodObject<{
2546
- applicability: z$1.ZodOptional<z$1.ZodString>;
3056
+ declare const ExpiringCreditGrantSchema: z$1.ZodObject<{
3057
+ applicability: z$1.ZodOptional<z$1.ZodEnum<{
3058
+ generic: "generic";
3059
+ build_time: "build_time";
3060
+ build_mode: "build_mode";
3061
+ plan_mode: "plan_mode";
3062
+ }>>;
2547
3063
  credits: z$1.ZodNumber;
2548
3064
  expires_at: z$1.ZodISODateTime;
2549
- grant_type: z$1.ZodString;
3065
+ grant_type: z$1.ZodEnum<{
3066
+ granted: "granted";
3067
+ billing: "billing";
3068
+ rollover: "rollover";
3069
+ topup: "topup";
3070
+ commitment: "commitment";
3071
+ cashback: "cashback";
3072
+ overage: "overage";
3073
+ unlimited: "unlimited";
3074
+ allowance: "allowance";
3075
+ }>;
2550
3076
  }, z$1.core.$strip>;
2551
- declare const V1WorkspaceCreditsGrantTypeBalanceSchema: z$1.ZodObject<{
2552
- grant_type: z$1.ZodString;
3077
+ declare const CreditGrantTypeBalanceSchema: z$1.ZodObject<{
3078
+ grant_type: z$1.ZodEnum<{
3079
+ granted: "granted";
3080
+ billing: "billing";
3081
+ rollover: "rollover";
3082
+ topup: "topup";
3083
+ commitment: "commitment";
3084
+ cashback: "cashback";
3085
+ daily: "daily";
3086
+ overage: "overage";
3087
+ unlimited: "unlimited";
3088
+ allowance: "allowance";
3089
+ }>;
2553
3090
  granted: z$1.ZodNumber;
2554
3091
  remaining: z$1.ZodNumber;
2555
3092
  }, z$1.core.$strip>;
2556
- declare const V1WorkspaceCreditsBodySchema: z$1.ZodObject<{
3093
+ declare const CreditBalanceSchema: z$1.ZodObject<{
2557
3094
  billing_period: z$1.ZodObject<{
2558
3095
  end: z$1.ZodISODateTime;
2559
3096
  start: z$1.ZodISODateTime;
@@ -2561,13 +3098,39 @@ declare const V1WorkspaceCreditsBodySchema: z$1.ZodObject<{
2561
3098
  daily_limit: z$1.ZodNumber;
2562
3099
  daily_remaining: z$1.ZodNumber;
2563
3100
  expiring_grants: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2564
- applicability: z$1.ZodOptional<z$1.ZodString>;
3101
+ applicability: z$1.ZodOptional<z$1.ZodEnum<{
3102
+ generic: "generic";
3103
+ build_time: "build_time";
3104
+ build_mode: "build_mode";
3105
+ plan_mode: "plan_mode";
3106
+ }>>;
2565
3107
  credits: z$1.ZodNumber;
2566
3108
  expires_at: z$1.ZodISODateTime;
2567
- grant_type: z$1.ZodString;
3109
+ grant_type: z$1.ZodEnum<{
3110
+ granted: "granted";
3111
+ billing: "billing";
3112
+ rollover: "rollover";
3113
+ topup: "topup";
3114
+ commitment: "commitment";
3115
+ cashback: "cashback";
3116
+ overage: "overage";
3117
+ unlimited: "unlimited";
3118
+ allowance: "allowance";
3119
+ }>;
2568
3120
  }, z$1.core.$strip>>>;
2569
3121
  grant_type_balances: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2570
- grant_type: z$1.ZodString;
3122
+ grant_type: z$1.ZodEnum<{
3123
+ granted: "granted";
3124
+ billing: "billing";
3125
+ rollover: "rollover";
3126
+ topup: "topup";
3127
+ commitment: "commitment";
3128
+ cashback: "cashback";
3129
+ daily: "daily";
3130
+ overage: "overage";
3131
+ unlimited: "unlimited";
3132
+ allowance: "allowance";
3133
+ }>;
2571
3134
  granted: z$1.ZodNumber;
2572
3135
  remaining: z$1.ZodNumber;
2573
3136
  }, z$1.core.$strip>>>;
@@ -2575,7 +3138,7 @@ declare const V1WorkspaceCreditsBodySchema: z$1.ZodObject<{
2575
3138
  total_granted: z$1.ZodNumber;
2576
3139
  total_remaining: z$1.ZodNumber;
2577
3140
  }, z$1.core.$strip>;
2578
- declare const V1WorkspaceGroupSchema: z$1.ZodObject<{
3141
+ declare const WorkspaceGroupSchema: z$1.ZodObject<{
2579
3142
  created_at: z$1.ZodISODateTime;
2580
3143
  description: z$1.ZodOptional<z$1.ZodString>;
2581
3144
  id: z$1.ZodString;
@@ -2585,7 +3148,7 @@ declare const V1WorkspaceGroupSchema: z$1.ZodObject<{
2585
3148
  updated_at: z$1.ZodISODateTime;
2586
3149
  workspace_id: z$1.ZodString;
2587
3150
  }, z$1.core.$strip>;
2588
- declare const CursorListResponseV1WorkspaceGroupSchema: z$1.ZodObject<{
3151
+ declare const WorkspaceGroupPageSchema: z$1.ZodObject<{
2589
3152
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2590
3153
  created_at: z$1.ZodISODateTime;
2591
3154
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -2601,25 +3164,37 @@ declare const CursorListResponseV1WorkspaceGroupSchema: z$1.ZodObject<{
2601
3164
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
2602
3165
  }, z$1.core.$strip>;
2603
3166
  }, z$1.core.$strip>;
2604
- declare const V1WorkspaceInsightsActivityFreshnessSchema: z$1.ZodObject<{
3167
+ declare const WorkspaceInsightsActivityFreshnessSchema: z$1.ZodObject<{
2605
3168
  edits_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2606
3169
  visitors_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2607
3170
  }, z$1.core.$strip>;
2608
- declare const V1WorkspaceInsightsEdgeFunctionSchema: z$1.ZodObject<{
3171
+ declare const WorkspaceInsightsEdgeFunctionSchema: z$1.ZodObject<{
2609
3172
  name: z$1.ZodString;
2610
3173
  }, z$1.core.$strip>;
2611
- declare const V1WorkspaceInsightsFindingSchema: z$1.ZodObject<{
2612
- category: z$1.ZodString;
3174
+ declare const WorkspaceInsightsFindingSchema: z$1.ZodObject<{
3175
+ category: z$1.ZodEnum<{
3176
+ data: "data";
3177
+ security: "security";
3178
+ exposure: "exposure";
3179
+ credentials: "credentials";
3180
+ access: "access";
3181
+ integrations: "integrations";
3182
+ runtime: "runtime";
3183
+ }>;
2613
3184
  description: z$1.ZodString;
2614
3185
  id: z$1.ZodString;
2615
3186
  project_count: z$1.ZodNumber;
2616
- severity: z$1.ZodString;
3187
+ severity: z$1.ZodEnum<{
3188
+ needs_review: "needs_review";
3189
+ review_recommended: "review_recommended";
3190
+ no_review_needed: "no_review_needed";
3191
+ }>;
2617
3192
  title: z$1.ZodString;
2618
3193
  }, z$1.core.$strip>;
2619
- declare const V1WorkspaceInsightsOwnerSchema: z$1.ZodObject<{
3194
+ declare const WorkspaceInsightsOwnerSchema: z$1.ZodObject<{
2620
3195
  display_name: z$1.ZodOptional<z$1.ZodString>;
2621
3196
  }, z$1.core.$strip>;
2622
- declare const V1WorkspaceInsightsReasonValuesSchema: z$1.ZodObject<{
3197
+ declare const WorkspaceInsightsReasonValuesSchema: z$1.ZodObject<{
2623
3198
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2624
3199
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
2625
3200
  error_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2629,12 +3204,24 @@ declare const V1WorkspaceInsightsReasonValuesSchema: z$1.ZodObject<{
2629
3204
  shared_user_count: z$1.ZodOptional<z$1.ZodNumber>;
2630
3205
  warning_count: z$1.ZodOptional<z$1.ZodNumber>;
2631
3206
  }, z$1.core.$strip>;
2632
- declare const V1WorkspaceInsightsReasonSchema: z$1.ZodObject<{
2633
- category: z$1.ZodString;
3207
+ declare const WorkspaceInsightsReasonSchema: z$1.ZodObject<{
3208
+ category: z$1.ZodEnum<{
3209
+ data: "data";
3210
+ security: "security";
3211
+ exposure: "exposure";
3212
+ credentials: "credentials";
3213
+ access: "access";
3214
+ integrations: "integrations";
3215
+ runtime: "runtime";
3216
+ }>;
2634
3217
  detail: z$1.ZodString;
2635
3218
  id: z$1.ZodString;
2636
3219
  label: z$1.ZodString;
2637
- severity: z$1.ZodString;
3220
+ severity: z$1.ZodEnum<{
3221
+ needs_review: "needs_review";
3222
+ review_recommended: "review_recommended";
3223
+ no_review_needed: "no_review_needed";
3224
+ }>;
2638
3225
  values: z$1.ZodOptional<z$1.ZodObject<{
2639
3226
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2640
3227
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2646,12 +3233,12 @@ declare const V1WorkspaceInsightsReasonSchema: z$1.ZodObject<{
2646
3233
  warning_count: z$1.ZodOptional<z$1.ZodNumber>;
2647
3234
  }, z$1.core.$strip>>;
2648
3235
  }, z$1.core.$strip>;
2649
- declare const V1WorkspaceInsightsReviewPrioritySchema: z$1.ZodObject<{
3236
+ declare const WorkspaceInsightsReviewPrioritySchema: z$1.ZodObject<{
2650
3237
  needs_review: z$1.ZodNumber;
2651
3238
  no_review_needed: z$1.ZodNumber;
2652
3239
  review_recommended: z$1.ZodNumber;
2653
3240
  }, z$1.core.$strip>;
2654
- declare const V1WorkspaceInsightsSignalsSchema: z$1.ZodObject<{
3241
+ declare const WorkspaceInsightsSignalsSchema: z$1.ZodObject<{
2655
3242
  chat_attachment_count: z$1.ZodNumber;
2656
3243
  connector_count: z$1.ZodNumber;
2657
3244
  edge_function_count: z$1.ZodNumber;
@@ -2682,8 +3269,12 @@ declare const V1WorkspaceInsightsSignalsSchema: z$1.ZodObject<{
2682
3269
  supply_chain_warning_count: z$1.ZodNumber;
2683
3270
  warning_count: z$1.ZodNumber;
2684
3271
  }, z$1.core.$strip>;
2685
- declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
2686
- activity_group: z$1.ZodOptional<z$1.ZodString>;
3272
+ declare const WorkspaceInsightsProjectSchema: z$1.ZodObject<{
3273
+ activity_group: z$1.ZodOptional<z$1.ZodEnum<{
3274
+ last_14_days: "last_14_days";
3275
+ last_60_days: "last_60_days";
3276
+ older: "older";
3277
+ }>>;
2687
3278
  connectors: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
2688
3279
  description: z$1.ZodOptional<z$1.ZodString>;
2689
3280
  display_name: z$1.ZodOptional<z$1.ZodString>;
@@ -2700,11 +3291,23 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
2700
3291
  last_edited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2701
3292
  last_security_scan_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2702
3293
  matched_reason: z$1.ZodOptional<z$1.ZodObject<{
2703
- category: z$1.ZodString;
3294
+ category: z$1.ZodEnum<{
3295
+ data: "data";
3296
+ security: "security";
3297
+ exposure: "exposure";
3298
+ credentials: "credentials";
3299
+ access: "access";
3300
+ integrations: "integrations";
3301
+ runtime: "runtime";
3302
+ }>;
2704
3303
  detail: z$1.ZodString;
2705
3304
  id: z$1.ZodString;
2706
3305
  label: z$1.ZodString;
2707
- severity: z$1.ZodString;
3306
+ severity: z$1.ZodEnum<{
3307
+ needs_review: "needs_review";
3308
+ review_recommended: "review_recommended";
3309
+ no_review_needed: "no_review_needed";
3310
+ }>;
2708
3311
  values: z$1.ZodOptional<z$1.ZodObject<{
2709
3312
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2710
3313
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2722,14 +3325,35 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
2722
3325
  owner: z$1.ZodOptional<z$1.ZodObject<{
2723
3326
  display_name: z$1.ZodOptional<z$1.ZodString>;
2724
3327
  }, z$1.core.$strip>>;
2725
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
2726
- review_priority: z$1.ZodOptional<z$1.ZodString>;
3328
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
3329
+ public: "public";
3330
+ private: "private";
3331
+ workspace_only: "workspace_only";
3332
+ }>>;
3333
+ review_priority: z$1.ZodOptional<z$1.ZodEnum<{
3334
+ needs_review: "needs_review";
3335
+ review_recommended: "review_recommended";
3336
+ no_review_needed: "no_review_needed";
3337
+ unscored: "unscored";
3338
+ }>>;
2727
3339
  review_priority_explanation: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2728
- category: z$1.ZodString;
3340
+ category: z$1.ZodEnum<{
3341
+ data: "data";
3342
+ security: "security";
3343
+ exposure: "exposure";
3344
+ credentials: "credentials";
3345
+ access: "access";
3346
+ integrations: "integrations";
3347
+ runtime: "runtime";
3348
+ }>;
2729
3349
  detail: z$1.ZodString;
2730
3350
  id: z$1.ZodString;
2731
3351
  label: z$1.ZodString;
2732
- severity: z$1.ZodString;
3352
+ severity: z$1.ZodEnum<{
3353
+ needs_review: "needs_review";
3354
+ review_recommended: "review_recommended";
3355
+ no_review_needed: "no_review_needed";
3356
+ }>;
2733
3357
  values: z$1.ZodOptional<z$1.ZodObject<{
2734
3358
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2735
3359
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2773,27 +3397,48 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
2773
3397
  warning_count: z$1.ZodNumber;
2774
3398
  }, z$1.core.$strip>;
2775
3399
  url: z$1.ZodOptional<z$1.ZodString>;
2776
- visibility: z$1.ZodOptional<z$1.ZodString>;
3400
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
3401
+ public: "public";
3402
+ private: "private";
3403
+ draft: "draft";
3404
+ workspace_view: "workspace_view";
3405
+ }>>;
2777
3406
  visitors_24h: z$1.ZodNumber;
2778
3407
  visitors_30d: z$1.ZodNumber;
2779
3408
  visitors_7d: z$1.ZodNumber;
2780
3409
  }, z$1.core.$strip>;
2781
- declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
3410
+ declare const WorkspaceInsightsProjectPageSchema: z$1.ZodObject<{
2782
3411
  activity_as_of: z$1.ZodOptional<z$1.ZodObject<{
2783
3412
  edits_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2784
3413
  visitors_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2785
3414
  }, z$1.core.$strip>>;
2786
3415
  applied_finding: z$1.ZodOptional<z$1.ZodObject<{
2787
- category: z$1.ZodString;
3416
+ category: z$1.ZodEnum<{
3417
+ data: "data";
3418
+ security: "security";
3419
+ exposure: "exposure";
3420
+ credentials: "credentials";
3421
+ access: "access";
3422
+ integrations: "integrations";
3423
+ runtime: "runtime";
3424
+ }>;
2788
3425
  description: z$1.ZodString;
2789
3426
  id: z$1.ZodString;
2790
3427
  project_count: z$1.ZodNumber;
2791
- severity: z$1.ZodString;
3428
+ severity: z$1.ZodEnum<{
3429
+ needs_review: "needs_review";
3430
+ review_recommended: "review_recommended";
3431
+ no_review_needed: "no_review_needed";
3432
+ }>;
2792
3433
  title: z$1.ZodString;
2793
3434
  }, z$1.core.$strip>>;
2794
3435
  as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2795
3436
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2796
- activity_group: z$1.ZodOptional<z$1.ZodString>;
3437
+ activity_group: z$1.ZodOptional<z$1.ZodEnum<{
3438
+ last_14_days: "last_14_days";
3439
+ last_60_days: "last_60_days";
3440
+ older: "older";
3441
+ }>>;
2797
3442
  connectors: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
2798
3443
  description: z$1.ZodOptional<z$1.ZodString>;
2799
3444
  display_name: z$1.ZodOptional<z$1.ZodString>;
@@ -2810,11 +3455,23 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
2810
3455
  last_edited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2811
3456
  last_security_scan_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2812
3457
  matched_reason: z$1.ZodOptional<z$1.ZodObject<{
2813
- category: z$1.ZodString;
3458
+ category: z$1.ZodEnum<{
3459
+ data: "data";
3460
+ security: "security";
3461
+ exposure: "exposure";
3462
+ credentials: "credentials";
3463
+ access: "access";
3464
+ integrations: "integrations";
3465
+ runtime: "runtime";
3466
+ }>;
2814
3467
  detail: z$1.ZodString;
2815
3468
  id: z$1.ZodString;
2816
3469
  label: z$1.ZodString;
2817
- severity: z$1.ZodString;
3470
+ severity: z$1.ZodEnum<{
3471
+ needs_review: "needs_review";
3472
+ review_recommended: "review_recommended";
3473
+ no_review_needed: "no_review_needed";
3474
+ }>;
2818
3475
  values: z$1.ZodOptional<z$1.ZodObject<{
2819
3476
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2820
3477
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2832,14 +3489,35 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
2832
3489
  owner: z$1.ZodOptional<z$1.ZodObject<{
2833
3490
  display_name: z$1.ZodOptional<z$1.ZodString>;
2834
3491
  }, z$1.core.$strip>>;
2835
- publish_visibility: z$1.ZodOptional<z$1.ZodString>;
2836
- review_priority: z$1.ZodOptional<z$1.ZodString>;
3492
+ publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
3493
+ public: "public";
3494
+ private: "private";
3495
+ workspace_only: "workspace_only";
3496
+ }>>;
3497
+ review_priority: z$1.ZodOptional<z$1.ZodEnum<{
3498
+ needs_review: "needs_review";
3499
+ review_recommended: "review_recommended";
3500
+ no_review_needed: "no_review_needed";
3501
+ unscored: "unscored";
3502
+ }>>;
2837
3503
  review_priority_explanation: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2838
- category: z$1.ZodString;
3504
+ category: z$1.ZodEnum<{
3505
+ data: "data";
3506
+ security: "security";
3507
+ exposure: "exposure";
3508
+ credentials: "credentials";
3509
+ access: "access";
3510
+ integrations: "integrations";
3511
+ runtime: "runtime";
3512
+ }>;
2839
3513
  detail: z$1.ZodString;
2840
3514
  id: z$1.ZodString;
2841
3515
  label: z$1.ZodString;
2842
- severity: z$1.ZodString;
3516
+ severity: z$1.ZodEnum<{
3517
+ needs_review: "needs_review";
3518
+ review_recommended: "review_recommended";
3519
+ no_review_needed: "no_review_needed";
3520
+ }>;
2843
3521
  values: z$1.ZodOptional<z$1.ZodObject<{
2844
3522
  connector_count: z$1.ZodOptional<z$1.ZodNumber>;
2845
3523
  edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2883,7 +3561,12 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
2883
3561
  warning_count: z$1.ZodNumber;
2884
3562
  }, z$1.core.$strip>;
2885
3563
  url: z$1.ZodOptional<z$1.ZodString>;
2886
- visibility: z$1.ZodOptional<z$1.ZodString>;
3564
+ visibility: z$1.ZodOptional<z$1.ZodEnum<{
3565
+ public: "public";
3566
+ private: "private";
3567
+ draft: "draft";
3568
+ workspace_view: "workspace_view";
3569
+ }>>;
2887
3570
  visitors_24h: z$1.ZodNumber;
2888
3571
  visitors_30d: z$1.ZodNumber;
2889
3572
  visitors_7d: z$1.ZodNumber;
@@ -2894,12 +3577,12 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
2894
3577
  }, z$1.core.$strip>;
2895
3578
  total: z$1.ZodNumber;
2896
3579
  }, z$1.core.$strip>;
2897
- declare const V1WorkspaceInsightsStatSchema: z$1.ZodObject<{
3580
+ declare const WorkspaceInsightsStatSchema: z$1.ZodObject<{
2898
3581
  delta_30d: z$1.ZodNumber;
2899
3582
  delta_window: z$1.ZodString;
2900
3583
  value: z$1.ZodNumber;
2901
3584
  }, z$1.core.$strip>;
2902
- declare const V1WorkspaceInsightsSummarySchema: z$1.ZodObject<{
3585
+ declare const WorkspaceInsightsSummarySchema: z$1.ZodObject<{
2903
3586
  externally_published: z$1.ZodObject<{
2904
3587
  delta_30d: z$1.ZodNumber;
2905
3588
  delta_window: z$1.ZodString;
@@ -2921,16 +3604,28 @@ declare const V1WorkspaceInsightsSummarySchema: z$1.ZodObject<{
2921
3604
  value: z$1.ZodNumber;
2922
3605
  }, z$1.core.$strip>;
2923
3606
  }, z$1.core.$strip>;
2924
- declare const V1WorkspaceInsightsBodySchema: z$1.ZodObject<{
3607
+ declare const WorkspaceInsightsSchema: z$1.ZodObject<{
2925
3608
  as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
2926
- findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2927
- category: z$1.ZodString;
3609
+ findings: z$1.ZodArray<z$1.ZodObject<{
3610
+ category: z$1.ZodEnum<{
3611
+ data: "data";
3612
+ security: "security";
3613
+ exposure: "exposure";
3614
+ credentials: "credentials";
3615
+ access: "access";
3616
+ integrations: "integrations";
3617
+ runtime: "runtime";
3618
+ }>;
2928
3619
  description: z$1.ZodString;
2929
3620
  id: z$1.ZodString;
2930
3621
  project_count: z$1.ZodNumber;
2931
- severity: z$1.ZodString;
3622
+ severity: z$1.ZodEnum<{
3623
+ needs_review: "needs_review";
3624
+ review_recommended: "review_recommended";
3625
+ no_review_needed: "no_review_needed";
3626
+ }>;
2932
3627
  title: z$1.ZodString;
2933
- }, z$1.core.$strip>>>;
3628
+ }, z$1.core.$strip>>;
2934
3629
  summary: z$1.ZodObject<{
2935
3630
  externally_published: z$1.ZodObject<{
2936
3631
  delta_30d: z$1.ZodNumber;
@@ -2954,11 +3649,11 @@ declare const V1WorkspaceInsightsBodySchema: z$1.ZodObject<{
2954
3649
  }, z$1.core.$strip>;
2955
3650
  }, z$1.core.$strip>;
2956
3651
  }, z$1.core.$strip>;
2957
- declare const V1WorkspaceMemberGroupSchema: z$1.ZodObject<{
3652
+ declare const WorkspaceMemberGroupSchema: z$1.ZodObject<{
2958
3653
  id: z$1.ZodString;
2959
3654
  name: z$1.ZodString;
2960
3655
  }, z$1.core.$strip>;
2961
- declare const V1WorkspaceMemberSchema: z$1.ZodObject<{
3656
+ declare const WorkspaceMemberSchema: z$1.ZodObject<{
2962
3657
  display_name: z$1.ZodOptional<z$1.ZodString>;
2963
3658
  email: z$1.ZodOptional<z$1.ZodString>;
2964
3659
  groups: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
@@ -2968,11 +3663,17 @@ declare const V1WorkspaceMemberSchema: z$1.ZodObject<{
2968
3663
  invited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2969
3664
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2970
3665
  monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
2971
- role: z$1.ZodString;
3666
+ role: z$1.ZodEnum<{
3667
+ owner: "owner";
3668
+ admin: "admin";
3669
+ member: "member";
3670
+ viewer: "viewer";
3671
+ collaborator: "collaborator";
3672
+ }>;
2972
3673
  user_id: z$1.ZodString;
2973
3674
  workspace_id: z$1.ZodString;
2974
3675
  }, z$1.core.$strip>;
2975
- declare const CursorListResponseV1WorkspaceMemberSchema: z$1.ZodObject<{
3676
+ declare const WorkspaceMemberPageSchema: z$1.ZodObject<{
2976
3677
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
2977
3678
  display_name: z$1.ZodOptional<z$1.ZodString>;
2978
3679
  email: z$1.ZodOptional<z$1.ZodString>;
@@ -2983,7 +3684,13 @@ declare const CursorListResponseV1WorkspaceMemberSchema: z$1.ZodObject<{
2983
3684
  invited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2984
3685
  joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
2985
3686
  monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
2986
- role: z$1.ZodString;
3687
+ role: z$1.ZodEnum<{
3688
+ owner: "owner";
3689
+ admin: "admin";
3690
+ member: "member";
3691
+ viewer: "viewer";
3692
+ collaborator: "collaborator";
3693
+ }>;
2987
3694
  user_id: z$1.ZodString;
2988
3695
  workspace_id: z$1.ZodString;
2989
3696
  }, z$1.core.$strip>>>;
@@ -2992,18 +3699,32 @@ declare const CursorListResponseV1WorkspaceMemberSchema: z$1.ZodObject<{
2992
3699
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
2993
3700
  }, z$1.core.$strip>;
2994
3701
  }, z$1.core.$strip>;
2995
- declare const V1WorkspaceSettingsBodySchema: z$1.ZodObject<{
3702
+ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
2996
3703
  billing_period_end_date: z$1.ZodOptional<z$1.ZodISODateTime>;
2997
3704
  billing_period_start_date: z$1.ZodOptional<z$1.ZodISODateTime>;
2998
3705
  default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
2999
- default_project_visibility: z$1.ZodOptional<z$1.ZodString>;
3706
+ default_project_visibility: z$1.ZodOptional<z$1.ZodEnum<{
3707
+ public: "public";
3708
+ private: "private";
3709
+ draft: "draft";
3710
+ workspace_view: "workspace_view";
3711
+ }>>;
3000
3712
  enable_pii: z$1.ZodBoolean;
3001
3713
  enforce_sso: z$1.ZodBoolean;
3002
3714
  id: z$1.ZodString;
3003
3715
  name: z$1.ZodString;
3004
3716
  num_seats: z$1.ZodOptional<z$1.ZodNumber>;
3005
- plan: z$1.ZodString;
3006
- publishing_policy: z$1.ZodOptional<z$1.ZodString>;
3717
+ plan: z$1.ZodEnum<{
3718
+ free: "free";
3719
+ pro: "pro";
3720
+ business: "business";
3721
+ enterprise: "enterprise";
3722
+ }>;
3723
+ publishing_policy: z$1.ZodOptional<z$1.ZodEnum<{
3724
+ workspace_only: "workspace_only";
3725
+ org_only: "org_only";
3726
+ disabled: "disabled";
3727
+ }>>;
3007
3728
  }, z$1.core.$strip>;
3008
3729
  declare const V1WorkspaceSkillDtoSchema: z$1.ZodObject<{
3009
3730
  description: z$1.ZodString;
@@ -3079,12 +3800,12 @@ declare const V1WorkspaceUsageBreakdownBodySchema: z$1.ZodObject<{
3079
3800
  next_cursor: z$1.ZodNullable<z$1.ZodString>;
3080
3801
  }, z$1.core.$strip>;
3081
3802
  }, z$1.core.$strip>;
3082
- declare const V1WorkspaceUsageConnectorBreakdownSchema: z$1.ZodObject<{
3803
+ declare const ConnectorUsageSchema: z$1.ZodObject<{
3083
3804
  credits: z$1.ZodNumber;
3084
3805
  key: z$1.ZodString;
3085
3806
  label: z$1.ZodString;
3086
3807
  }, z$1.core.$strip>;
3087
- declare const V1WorkspaceUsageDatabaseBreakdownSchema: z$1.ZodObject<{
3808
+ declare const DatabaseUsageSchema: z$1.ZodObject<{
3088
3809
  credits: z$1.ZodNumber;
3089
3810
  key: z$1.ZodEnum<{
3090
3811
  database_server: "database_server";
@@ -3092,12 +3813,12 @@ declare const V1WorkspaceUsageDatabaseBreakdownSchema: z$1.ZodObject<{
3092
3813
  }>;
3093
3814
  label: z$1.ZodString;
3094
3815
  }, z$1.core.$strip>;
3095
- declare const V1WorkspaceUsageGatewayModelSchema: z$1.ZodObject<{
3816
+ declare const GatewayModelUsageSchema: z$1.ZodObject<{
3096
3817
  credits: z$1.ZodNumber;
3097
3818
  name: z$1.ZodString;
3098
3819
  provider: z$1.ZodString;
3099
3820
  }, z$1.core.$strip>;
3100
- declare const V1BillingUsageRowSchema: z$1.ZodObject<{
3821
+ declare const CreditUsageEntrySchema: z$1.ZodObject<{
3101
3822
  build: z$1.ZodNumber;
3102
3823
  connectors: z$1.ZodNumber;
3103
3824
  connectors_breakdown: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
@@ -3133,7 +3854,7 @@ declare const V1BillingUsageRowSchema: z$1.ZodObject<{
3133
3854
  total: z$1.ZodNumber;
3134
3855
  user_id: z$1.ZodOptional<z$1.ZodString>;
3135
3856
  }, z$1.core.$strip>;
3136
- declare const V1BillingUsageBodySchema: z$1.ZodObject<{
3857
+ declare const CreditUsagePageSchema: z$1.ZodObject<{
3137
3858
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
3138
3859
  build: z$1.ZodNumber;
3139
3860
  connectors: z$1.ZodNumber;
@@ -3177,8 +3898,15 @@ declare const V1BillingUsageBodySchema: z$1.ZodObject<{
3177
3898
  }, z$1.core.$strip>;
3178
3899
  period: z$1.ZodObject<{
3179
3900
  end: z$1.ZodString;
3180
- group_by: z$1.ZodOptional<z$1.ZodString>;
3181
- interval: z$1.ZodOptional<z$1.ZodString>;
3901
+ group_by: z$1.ZodOptional<z$1.ZodEnum<{
3902
+ project: "project";
3903
+ member: "member";
3904
+ }>>;
3905
+ interval: z$1.ZodOptional<z$1.ZodEnum<{
3906
+ day: "day";
3907
+ week: "week";
3908
+ month: "month";
3909
+ }>>;
3182
3910
  start: z$1.ZodString;
3183
3911
  }, z$1.core.$strip>;
3184
3912
  workspace_total: z$1.ZodNumber;
@@ -3324,15 +4052,15 @@ declare const V1WriteWorkspaceSkillOutputBodySchema: z$1.ZodObject<{
3324
4052
  declare const VisibilityChangeInfoSchema: z$1.ZodObject<{
3325
4053
  commit_time: z$1.ZodOptional<z$1.ZodISODateTime>;
3326
4054
  new_visibility: z$1.ZodEnum<{
3327
- draft: "draft";
3328
- private: "private";
3329
4055
  public: "public";
4056
+ private: "private";
4057
+ draft: "draft";
3330
4058
  workspace_view: "workspace_view";
3331
4059
  }>;
3332
4060
  previous_visibility: z$1.ZodOptional<z$1.ZodEnum<{
3333
- draft: "draft";
3334
- private: "private";
3335
4061
  public: "public";
4062
+ private: "private";
4063
+ draft: "draft";
3336
4064
  workspace_view: "workspace_view";
3337
4065
  }>>;
3338
4066
  project_id: z$1.ZodString;
@@ -3348,21 +4076,21 @@ declare const AddProjectsToFolderResultSchema: z$1.ZodObject<{
3348
4076
  visibility_updated: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
3349
4077
  commit_time: z$1.ZodOptional<z$1.ZodISODateTime>;
3350
4078
  new_visibility: z$1.ZodEnum<{
3351
- draft: "draft";
3352
- private: "private";
3353
4079
  public: "public";
4080
+ private: "private";
4081
+ draft: "draft";
3354
4082
  workspace_view: "workspace_view";
3355
4083
  }>;
3356
4084
  previous_visibility: z$1.ZodOptional<z$1.ZodEnum<{
3357
- draft: "draft";
3358
- private: "private";
3359
4085
  public: "public";
4086
+ private: "private";
4087
+ draft: "draft";
3360
4088
  workspace_view: "workspace_view";
3361
4089
  }>>;
3362
4090
  project_id: z$1.ZodString;
3363
4091
  }, z$1.core.$strip>>>;
3364
4092
  }, z$1.core.$strip>;
3365
- declare const WorkspaceAnalyticsResponseSchema: z$1.ZodObject<{
4093
+ declare const WorkspaceAnalyticsSchema: z$1.ZodObject<{
3366
4094
  timeSeries: z$1.ZodObject<{
3367
4095
  bounceRate: z$1.ZodObject<{
3368
4096
  data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
@@ -3407,8 +4135,1933 @@ declare const WorkspaceAnalyticsResponseSchema: z$1.ZodObject<{
3407
4135
  }, z$1.core.$strip>;
3408
4136
  }, z$1.core.$strip>;
3409
4137
  //#endregion
4138
+ //#region src/schemas-deprecated.d.ts
4139
+ /** @deprecated Renamed to PiiLabelPageSchema. */
4140
+ declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<{
4141
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4142
+ chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
4143
+ chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
4144
+ connector_id: import("zod").ZodOptional<import("zod").ZodString>;
4145
+ found_at: import("zod").ZodISODateTime;
4146
+ id: import("zod").ZodString;
4147
+ info_type: import("zod").ZodOptional<import("zod").ZodString>;
4148
+ likelihood: import("zod").ZodOptional<import("zod").ZodEnum<{
4149
+ likelihood_unspecified: "likelihood_unspecified";
4150
+ very_unlikely: "very_unlikely";
4151
+ unlikely: "unlikely";
4152
+ possible: "possible";
4153
+ likely: "likely";
4154
+ very_likely: "very_likely";
4155
+ }>>;
4156
+ quote: import("zod").ZodOptional<import("zod").ZodString>;
4157
+ scan_id: import("zod").ZodOptional<import("zod").ZodString>;
4158
+ sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
4159
+ low: "low";
4160
+ mid: "mid";
4161
+ high: "high";
4162
+ }>>;
4163
+ source: import("zod").ZodEnum<{
4164
+ chat: "chat";
4165
+ upload: "upload";
4166
+ cloud_storage: "cloud_storage";
4167
+ cloud_sql: "cloud_sql";
4168
+ connector: "connector";
4169
+ }>;
4170
+ sql_location: import("zod").ZodOptional<import("zod").ZodString>;
4171
+ status: import("zod").ZodEnum<{
4172
+ open: "open";
4173
+ ignored: "ignored";
4174
+ fixed: "fixed";
4175
+ }>;
4176
+ storage_path: import("zod").ZodOptional<import("zod").ZodString>;
4177
+ }, import("zod/v4/core").$strip>>>;
4178
+ pagination: import("zod").ZodObject<{
4179
+ has_more: import("zod").ZodBoolean;
4180
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4181
+ }, import("zod/v4/core").$strip>;
4182
+ }, import("zod/v4/core").$strip>;
4183
+ /** @deprecated Renamed to ProjectSummaryPageSchema. */
4184
+ declare const CursorListResponsePublicV1ProjectListItemSchema: import("zod").ZodObject<{
4185
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4186
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4187
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4188
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4189
+ folder_id: import("zod").ZodOptional<import("zod").ZodString>;
4190
+ generated_description: import("zod").ZodOptional<import("zod").ZodString>;
4191
+ id: import("zod").ZodString;
4192
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
4193
+ last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4194
+ latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
4195
+ name: import("zod").ZodOptional<import("zod").ZodString>;
4196
+ og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
4197
+ project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
4198
+ project: "project";
4199
+ library: "library";
4200
+ }>>;
4201
+ publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4202
+ public: "public";
4203
+ private: "private";
4204
+ workspace_only: "workspace_only";
4205
+ }>>;
4206
+ status: import("zod").ZodOptional<import("zod").ZodEnum<{
4207
+ in_progress: "in_progress";
4208
+ completed: "completed";
4209
+ failed: "failed";
4210
+ }>>;
4211
+ tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
4212
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4213
+ url: import("zod").ZodOptional<import("zod").ZodString>;
4214
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4215
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4216
+ public: "public";
4217
+ private: "private";
4218
+ draft: "draft";
4219
+ workspace_view: "workspace_view";
4220
+ }>>;
4221
+ workspace_id: import("zod").ZodString;
4222
+ }, import("zod/v4/core").$strip>>>;
4223
+ pagination: import("zod").ZodObject<{
4224
+ has_more: import("zod").ZodBoolean;
4225
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4226
+ }, import("zod/v4/core").$strip>;
4227
+ }, import("zod/v4/core").$strip>;
4228
+ /** @deprecated Renamed to ProjectCollaboratorPageSchema. */
4229
+ declare const CursorListResponseV1ProjectCollaboratorSchema: import("zod").ZodObject<{
4230
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4231
+ accepted_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4232
+ access_level: import("zod").ZodEnum<{
4233
+ owner: "owner";
4234
+ admin: "admin";
4235
+ write: "write";
4236
+ read: "read";
4237
+ none: "none";
4238
+ }>;
4239
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4240
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4241
+ invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4242
+ invited_by: import("zod").ZodOptional<import("zod").ZodString>;
4243
+ is_internal: import("zod").ZodBoolean;
4244
+ is_workspace_member: import("zod").ZodBoolean;
4245
+ last_accessed_at: import("zod").ZodNullable<import("zod").ZodISODateTime>;
4246
+ user_id: import("zod").ZodString;
4247
+ }, import("zod/v4/core").$strip>>>;
4248
+ pagination: import("zod").ZodObject<{
4249
+ has_more: import("zod").ZodBoolean;
4250
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4251
+ }, import("zod/v4/core").$strip>;
4252
+ }, import("zod/v4/core").$strip>;
4253
+ /** @deprecated Renamed to SecurityScanPageSchema. */
4254
+ declare const CursorListResponseV1SecurityScanSummarySchema: import("zod").ZodObject<{
4255
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4256
+ commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
4257
+ finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4258
+ requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
4259
+ scan_id: import("zod").ZodString;
4260
+ started_at: import("zod").ZodISODateTime;
4261
+ status: import("zod").ZodEnum<{
4262
+ completed: "completed";
4263
+ failed: "failed";
4264
+ running: "running";
4265
+ }>;
4266
+ trigger_source: import("zod").ZodEnum<{
4267
+ workflow: "workflow";
4268
+ user: "user";
4269
+ ui_auto: "ui_auto";
4270
+ aikido_import: "aikido_import";
4271
+ manage_findings: "manage_findings";
4272
+ app_mcp_deep_auto: "app_mcp_deep_auto";
4273
+ hvt_scheduled: "hvt_scheduled";
4274
+ workspace_scheduled: "workspace_scheduled";
4275
+ enterprise_batch: "enterprise_batch";
4276
+ gitsync_pull: "gitsync_pull";
4277
+ }>;
4278
+ triggered_by: import("zod").ZodObject<{
4279
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4280
+ id: import("zod").ZodOptional<import("zod").ZodString>;
4281
+ name: import("zod").ZodOptional<import("zod").ZodString>;
4282
+ type: import("zod").ZodEnum<{
4283
+ user: "user";
4284
+ system: "system";
4285
+ }>;
4286
+ }, import("zod/v4/core").$strip>;
4287
+ }, import("zod/v4/core").$strip>>>;
4288
+ pagination: import("zod").ZodObject<{
4289
+ has_more: import("zod").ZodBoolean;
4290
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4291
+ }, import("zod/v4/core").$strip>;
4292
+ }, import("zod/v4/core").$strip>;
4293
+ /** @deprecated Renamed to WorkspaceGroupPageSchema. */
4294
+ declare const CursorListResponseV1WorkspaceGroupSchema: import("zod").ZodObject<{
4295
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4296
+ created_at: import("zod").ZodISODateTime;
4297
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4298
+ id: import("zod").ZodString;
4299
+ member_count: import("zod").ZodNumber;
4300
+ name: import("zod").ZodString;
4301
+ scim_external_id: import("zod").ZodOptional<import("zod").ZodString>;
4302
+ updated_at: import("zod").ZodISODateTime;
4303
+ workspace_id: import("zod").ZodString;
4304
+ }, import("zod/v4/core").$strip>>>;
4305
+ pagination: import("zod").ZodObject<{
4306
+ has_more: import("zod").ZodBoolean;
4307
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4308
+ }, import("zod/v4/core").$strip>;
4309
+ }, import("zod/v4/core").$strip>;
4310
+ /** @deprecated Renamed to WorkspaceMemberPageSchema. */
4311
+ declare const CursorListResponseV1WorkspaceMemberSchema: import("zod").ZodObject<{
4312
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4313
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4314
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4315
+ groups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
4316
+ id: import("zod").ZodString;
4317
+ name: import("zod").ZodString;
4318
+ }, import("zod/v4/core").$strip>>>;
4319
+ invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4320
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4321
+ monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4322
+ role: import("zod").ZodEnum<{
4323
+ owner: "owner";
4324
+ admin: "admin";
4325
+ member: "member";
4326
+ viewer: "viewer";
4327
+ collaborator: "collaborator";
4328
+ }>;
4329
+ user_id: import("zod").ZodString;
4330
+ workspace_id: import("zod").ZodString;
4331
+ }, import("zod/v4/core").$strip>>>;
4332
+ pagination: import("zod").ZodObject<{
4333
+ has_more: import("zod").ZodBoolean;
4334
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4335
+ }, import("zod/v4/core").$strip>;
4336
+ }, import("zod/v4/core").$strip>;
4337
+ /** @deprecated Renamed to CurrentUserSchema. */
4338
+ declare const GetMeOutputBodySchema: import("zod").ZodObject<{
4339
+ email: import("zod").ZodString;
4340
+ id: import("zod").ZodString;
4341
+ name: import("zod").ZodString;
4342
+ workspaces: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4343
+ id: import("zod").ZodString;
4344
+ name: import("zod").ZodString;
4345
+ role: import("zod").ZodEnum<{
4346
+ owner: "owner";
4347
+ admin: "admin";
4348
+ member: "member";
4349
+ viewer: "viewer";
4350
+ collaborator: "collaborator";
4351
+ }>;
4352
+ }, import("zod/v4/core").$strip>>>;
4353
+ }, import("zod/v4/core").$strip>;
4354
+ /** @deprecated Renamed to CurrentUserWorkspaceSchema. */
4355
+ declare const GetMeWorkspaceSchema: import("zod").ZodObject<{
4356
+ id: import("zod").ZodString;
4357
+ name: import("zod").ZodString;
4358
+ role: import("zod").ZodEnum<{
4359
+ owner: "owner";
4360
+ admin: "admin";
4361
+ member: "member";
4362
+ viewer: "viewer";
4363
+ collaborator: "collaborator";
4364
+ }>;
4365
+ }, import("zod/v4/core").$strip>;
4366
+ /** @deprecated Renamed to AnalyticsBreakdownPointSchema. */
4367
+ declare const ListDataPointSchema: import("zod").ZodObject<{
4368
+ label: import("zod").ZodString;
4369
+ value: import("zod").ZodNumber;
4370
+ }, import("zod/v4/core").$strip>;
4371
+ /** @deprecated Renamed to AnalyticsBreakdownSchema. */
4372
+ declare const ListDataSchema: import("zod").ZodObject<{
4373
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4374
+ label: import("zod").ZodString;
4375
+ value: import("zod").ZodNumber;
4376
+ }, import("zod/v4/core").$strip>>>;
4377
+ label: import("zod").ZodString;
4378
+ }, import("zod/v4/core").$strip>;
4379
+ /** @deprecated Renamed to AnalyticsBreakdownGroupSchema. */
4380
+ declare const ListsGroupSchema: import("zod").ZodObject<{
4381
+ country: import("zod").ZodObject<{
4382
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4383
+ label: import("zod").ZodString;
4384
+ value: import("zod").ZodNumber;
4385
+ }, import("zod/v4/core").$strip>>>;
4386
+ label: import("zod").ZodString;
4387
+ }, import("zod/v4/core").$strip>;
4388
+ device: import("zod").ZodObject<{
4389
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4390
+ label: import("zod").ZodString;
4391
+ value: import("zod").ZodNumber;
4392
+ }, import("zod/v4/core").$strip>>>;
4393
+ label: import("zod").ZodString;
4394
+ }, import("zod/v4/core").$strip>;
4395
+ page: import("zod").ZodObject<{
4396
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4397
+ label: import("zod").ZodString;
4398
+ value: import("zod").ZodNumber;
4399
+ }, import("zod/v4/core").$strip>>>;
4400
+ label: import("zod").ZodString;
4401
+ }, import("zod/v4/core").$strip>;
4402
+ source: import("zod").ZodObject<{
4403
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4404
+ label: import("zod").ZodString;
4405
+ value: import("zod").ZodNumber;
4406
+ }, import("zod/v4/core").$strip>>>;
4407
+ label: import("zod").ZodString;
4408
+ }, import("zod/v4/core").$strip>;
4409
+ }, import("zod/v4/core").$strip>;
4410
+ /** @deprecated Renamed to AnalyticsTrendSchema. */
4411
+ declare const ProjectTrendResponseSchema: import("zod").ZodObject<{
4412
+ currentVisitors: import("zod").ZodNumber;
4413
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4414
+ time: import("zod").ZodString;
4415
+ visits: import("zod").ZodNumber;
4416
+ }, import("zod/v4/core").$strip>>>;
4417
+ }, import("zod/v4/core").$strip>;
4418
+ /** @deprecated Renamed to GetWorkspaceResponseSchema. */
4419
+ declare const PublicV1GetWorkspaceBodySchema: import("zod").ZodObject<{
4420
+ current_member: import("zod").ZodOptional<import("zod").ZodObject<{
4421
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4422
+ role: import("zod").ZodEnum<{
4423
+ owner: "owner";
4424
+ admin: "admin";
4425
+ member: "member";
4426
+ viewer: "viewer";
4427
+ collaborator: "collaborator";
4428
+ }>;
4429
+ user_id: import("zod").ZodString;
4430
+ }, import("zod/v4/core").$strip>>;
4431
+ workspace: import("zod").ZodObject<{
4432
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4433
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4434
+ id: import("zod").ZodString;
4435
+ image_url: import("zod").ZodOptional<import("zod").ZodString>;
4436
+ name: import("zod").ZodString;
4437
+ num_projects: import("zod").ZodNumber;
4438
+ plan: import("zod").ZodEnum<{
4439
+ free: "free";
4440
+ pro: "pro";
4441
+ business: "business";
4442
+ enterprise: "enterprise";
4443
+ }>;
4444
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4445
+ }, import("zod/v4/core").$strip>;
4446
+ }, import("zod/v4/core").$strip>;
4447
+ /** @deprecated Renamed to UpdateProjectRequestSchema. */
4448
+ declare const PublicV1PatchProjectBodySchema: import("zod").ZodObject<{
4449
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4450
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4451
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4452
+ public: "public";
4453
+ private: "private";
4454
+ draft: "draft";
4455
+ workspace_view: "workspace_view";
4456
+ }>>;
4457
+ }, import("zod/v4/core").$strip>;
4458
+ /** @deprecated Renamed to PiiLabelSchema. */
4459
+ declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
4460
+ chat_message_id: import("zod").ZodOptional<import("zod").ZodString>;
4461
+ chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
4462
+ connector_id: import("zod").ZodOptional<import("zod").ZodString>;
4463
+ found_at: import("zod").ZodISODateTime;
4464
+ id: import("zod").ZodString;
4465
+ info_type: import("zod").ZodOptional<import("zod").ZodString>;
4466
+ likelihood: import("zod").ZodOptional<import("zod").ZodEnum<{
4467
+ likelihood_unspecified: "likelihood_unspecified";
4468
+ very_unlikely: "very_unlikely";
4469
+ unlikely: "unlikely";
4470
+ possible: "possible";
4471
+ likely: "likely";
4472
+ very_likely: "very_likely";
4473
+ }>>;
4474
+ quote: import("zod").ZodOptional<import("zod").ZodString>;
4475
+ scan_id: import("zod").ZodOptional<import("zod").ZodString>;
4476
+ sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
4477
+ low: "low";
4478
+ mid: "mid";
4479
+ high: "high";
4480
+ }>>;
4481
+ source: import("zod").ZodEnum<{
4482
+ chat: "chat";
4483
+ upload: "upload";
4484
+ cloud_storage: "cloud_storage";
4485
+ cloud_sql: "cloud_sql";
4486
+ connector: "connector";
4487
+ }>;
4488
+ sql_location: import("zod").ZodOptional<import("zod").ZodString>;
4489
+ status: import("zod").ZodEnum<{
4490
+ open: "open";
4491
+ ignored: "ignored";
4492
+ fixed: "fixed";
4493
+ }>;
4494
+ storage_path: import("zod").ZodOptional<import("zod").ZodString>;
4495
+ }, import("zod/v4/core").$strip>;
4496
+ /** @deprecated Renamed to ProjectAnalyticsSchema. */
4497
+ declare const PublicV1ProjectAnalyticsBodySchema: import("zod").ZodObject<{
4498
+ lists: import("zod").ZodOptional<import("zod").ZodObject<{
4499
+ country: import("zod").ZodObject<{
4500
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4501
+ label: import("zod").ZodString;
4502
+ value: import("zod").ZodNumber;
4503
+ }, import("zod/v4/core").$strip>>>;
4504
+ label: import("zod").ZodString;
4505
+ }, import("zod/v4/core").$strip>;
4506
+ device: import("zod").ZodObject<{
4507
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4508
+ label: import("zod").ZodString;
4509
+ value: import("zod").ZodNumber;
4510
+ }, import("zod/v4/core").$strip>>>;
4511
+ label: import("zod").ZodString;
4512
+ }, import("zod/v4/core").$strip>;
4513
+ page: import("zod").ZodObject<{
4514
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4515
+ label: import("zod").ZodString;
4516
+ value: import("zod").ZodNumber;
4517
+ }, import("zod/v4/core").$strip>>>;
4518
+ label: import("zod").ZodString;
4519
+ }, import("zod/v4/core").$strip>;
4520
+ source: import("zod").ZodObject<{
4521
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4522
+ label: import("zod").ZodString;
4523
+ value: import("zod").ZodNumber;
4524
+ }, import("zod/v4/core").$strip>>>;
4525
+ label: import("zod").ZodString;
4526
+ }, import("zod/v4/core").$strip>;
4527
+ }, import("zod/v4/core").$strip>>;
4528
+ timeSeries: import("zod").ZodOptional<import("zod").ZodObject<{
4529
+ bounceRate: import("zod").ZodObject<{
4530
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4531
+ date: import("zod").ZodString;
4532
+ value: import("zod").ZodNumber;
4533
+ }, import("zod/v4/core").$strip>>>;
4534
+ label: import("zod").ZodString;
4535
+ total: import("zod").ZodNumber;
4536
+ }, import("zod/v4/core").$strip>;
4537
+ pageviews: import("zod").ZodObject<{
4538
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4539
+ date: import("zod").ZodString;
4540
+ value: import("zod").ZodNumber;
4541
+ }, import("zod/v4/core").$strip>>>;
4542
+ label: import("zod").ZodString;
4543
+ total: import("zod").ZodNumber;
4544
+ }, import("zod/v4/core").$strip>;
4545
+ pageviewsPerVisit: import("zod").ZodObject<{
4546
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4547
+ date: import("zod").ZodString;
4548
+ value: import("zod").ZodNumber;
4549
+ }, import("zod/v4/core").$strip>>>;
4550
+ label: import("zod").ZodString;
4551
+ total: import("zod").ZodNumber;
4552
+ }, import("zod/v4/core").$strip>;
4553
+ sessionDuration: import("zod").ZodObject<{
4554
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4555
+ date: import("zod").ZodString;
4556
+ value: import("zod").ZodNumber;
4557
+ }, import("zod/v4/core").$strip>>>;
4558
+ label: import("zod").ZodString;
4559
+ total: import("zod").ZodNumber;
4560
+ }, import("zod/v4/core").$strip>;
4561
+ visitors: import("zod").ZodObject<{
4562
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4563
+ date: import("zod").ZodString;
4564
+ value: import("zod").ZodNumber;
4565
+ }, import("zod/v4/core").$strip>>>;
4566
+ label: import("zod").ZodString;
4567
+ total: import("zod").ZodNumber;
4568
+ }, import("zod/v4/core").$strip>;
4569
+ }, import("zod/v4/core").$strip>>;
4570
+ trend: import("zod").ZodOptional<import("zod").ZodObject<{
4571
+ currentVisitors: import("zod").ZodNumber;
4572
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4573
+ time: import("zod").ZodString;
4574
+ visits: import("zod").ZodNumber;
4575
+ }, import("zod/v4/core").$strip>>>;
4576
+ }, import("zod/v4/core").$strip>>;
4577
+ }, import("zod/v4/core").$strip>;
4578
+ /** @deprecated Renamed to ProjectSummarySchema. */
4579
+ declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
4580
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4581
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4582
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4583
+ folder_id: import("zod").ZodOptional<import("zod").ZodString>;
4584
+ generated_description: import("zod").ZodOptional<import("zod").ZodString>;
4585
+ id: import("zod").ZodString;
4586
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
4587
+ last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4588
+ latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
4589
+ name: import("zod").ZodOptional<import("zod").ZodString>;
4590
+ og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
4591
+ project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
4592
+ project: "project";
4593
+ library: "library";
4594
+ }>>;
4595
+ publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4596
+ public: "public";
4597
+ private: "private";
4598
+ workspace_only: "workspace_only";
4599
+ }>>;
4600
+ status: import("zod").ZodOptional<import("zod").ZodEnum<{
4601
+ in_progress: "in_progress";
4602
+ completed: "completed";
4603
+ failed: "failed";
4604
+ }>>;
4605
+ tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
4606
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4607
+ url: import("zod").ZodOptional<import("zod").ZodString>;
4608
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4609
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4610
+ public: "public";
4611
+ private: "private";
4612
+ draft: "draft";
4613
+ workspace_view: "workspace_view";
4614
+ }>>;
4615
+ workspace_id: import("zod").ZodString;
4616
+ }, import("zod/v4/core").$strip>;
4617
+ /** @deprecated Renamed to PublishAudienceTargetSchema. */
4618
+ declare const PublicV1PublishAudienceTargetSchema: import("zod").ZodObject<{
4619
+ id: import("zod").ZodString;
4620
+ type: import("zod").ZodEnum<{
4621
+ user: "user";
4622
+ group: "group";
4623
+ }>;
4624
+ }, import("zod/v4/core").$strip>;
4625
+ /** @deprecated Renamed to PublishProjectRequestSchema. */
4626
+ declare const PublicV1PublishProjectInputBodySchema: import("zod").ZodObject<{
4627
+ audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4628
+ id: import("zod").ZodString;
4629
+ type: import("zod").ZodEnum<{
4630
+ user: "user";
4631
+ group: "group";
4632
+ }>;
4633
+ }, import("zod/v4/core").$strip>>>>;
4634
+ name: import("zod").ZodOptional<import("zod").ZodString>;
4635
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4636
+ public: "public";
4637
+ custom: "custom";
4638
+ workspace: "workspace";
4639
+ }>>;
4640
+ }, import("zod/v4/core").$strip>;
4641
+ /** @deprecated Renamed to PublishProjectResponseSchema. */
4642
+ declare const PublicV1PublishProjectResponseSchema: import("zod").ZodObject<{
4643
+ deployment_id: import("zod").ZodOptional<import("zod").ZodString>;
4644
+ status: import("zod").ZodEnum<{
4645
+ pending: "pending";
4646
+ }>;
4647
+ url: import("zod").ZodOptional<import("zod").ZodString>;
4648
+ visibility: import("zod").ZodEnum<{
4649
+ public: "public";
4650
+ custom: "custom";
4651
+ workspace: "workspace";
4652
+ }>;
4653
+ }, import("zod/v4/core").$strip>;
4654
+ /** @deprecated Renamed to DeploymentSchema. */
4655
+ declare const PublicV1PublishStatusResponseSchema: import("zod").ZodObject<{
4656
+ deployment_id: import("zod").ZodString;
4657
+ error_class: import("zod").ZodOptional<import("zod").ZodEnum<{
4658
+ transient: "transient";
4659
+ user_code: "user_code";
4660
+ user_config: "user_config";
4661
+ user_config_code: "user_config_code";
4662
+ user_config_external: "user_config_external";
4663
+ user_data: "user_data";
4664
+ blocked_by_policy: "blocked_by_policy";
4665
+ internal: "internal";
4666
+ }>>;
4667
+ error_code: import("zod").ZodOptional<import("zod").ZodString>;
4668
+ error_message: import("zod").ZodOptional<import("zod").ZodString>;
4669
+ status: import("zod").ZodEnum<{
4670
+ completed: "completed";
4671
+ unknown: "unknown";
4672
+ running: "running";
4673
+ error: "error";
4674
+ }>;
4675
+ url: import("zod").ZodOptional<import("zod").ZodString>;
4676
+ }, import("zod/v4/core").$strip>;
4677
+ /** @deprecated Renamed to RemixJobSchema. */
4678
+ declare const PublicV1RemixJobOutputBodySchema: import("zod").ZodObject<{
4679
+ error_code: import("zod").ZodOptional<import("zod").ZodString>;
4680
+ error_message: import("zod").ZodOptional<import("zod").ZodString>;
4681
+ result: import("zod").ZodOptional<import("zod").ZodObject<{
4682
+ project_id: import("zod").ZodString;
4683
+ warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4684
+ code: import("zod").ZodEnum<{
4685
+ edge_functions_not_deployed: "edge_functions_not_deployed";
4686
+ integration_skipped: "integration_skipped";
4687
+ }>;
4688
+ failed_edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
4689
+ reason: import("zod").ZodOptional<import("zod").ZodString>;
4690
+ skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
4691
+ }, import("zod/v4/core").$strip>>>>;
4692
+ }, import("zod/v4/core").$strip>>;
4693
+ status: import("zod").ZodEnum<{
4694
+ completed: "completed";
4695
+ unknown: "unknown";
4696
+ running: "running";
4697
+ error: "error";
4698
+ preparing: "preparing";
4699
+ }>;
4700
+ step: import("zod").ZodOptional<import("zod").ZodObject<{
4701
+ failure: import("zod").ZodOptional<import("zod").ZodObject<{
4702
+ code: import("zod").ZodOptional<import("zod").ZodString>;
4703
+ failed_step: import("zod").ZodEnum<{
4704
+ completed: "completed";
4705
+ failed: "failed";
4706
+ starting: "starting";
4707
+ creating_new_project: "creating_new_project";
4708
+ restoring_supabase: "restoring_supabase";
4709
+ copying_history: "copying_history";
4710
+ preparing_repository: "preparing_repository";
4711
+ remixing_integration: "remixing_integration";
4712
+ pushing_repository: "pushing_repository";
4713
+ finalizing: "finalizing";
4714
+ }>;
4715
+ message: import("zod").ZodString;
4716
+ }, import("zod/v4/core").$strip>>;
4717
+ integration_name: import("zod").ZodOptional<import("zod").ZodString>;
4718
+ status: import("zod").ZodOptional<import("zod").ZodString>;
4719
+ step: import("zod").ZodEnum<{
4720
+ completed: "completed";
4721
+ failed: "failed";
4722
+ starting: "starting";
4723
+ creating_new_project: "creating_new_project";
4724
+ restoring_supabase: "restoring_supabase";
4725
+ copying_history: "copying_history";
4726
+ preparing_repository: "preparing_repository";
4727
+ remixing_integration: "remixing_integration";
4728
+ pushing_repository: "pushing_repository";
4729
+ finalizing: "finalizing";
4730
+ }>;
4731
+ }, import("zod/v4/core").$strip>>;
4732
+ }, import("zod/v4/core").$strip>;
4733
+ /** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
4734
+ declare const PublicV1UpdatePublishSettingsInputBodySchema: import("zod").ZodObject<{
4735
+ audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4736
+ id: import("zod").ZodString;
4737
+ type: import("zod").ZodEnum<{
4738
+ user: "user";
4739
+ group: "group";
4740
+ }>;
4741
+ }, import("zod/v4/core").$strip>>>>;
4742
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
4743
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
4744
+ public: "public";
4745
+ custom: "custom";
4746
+ workspace: "workspace";
4747
+ }>>;
4748
+ }, import("zod/v4/core").$strip>;
4749
+ /** @deprecated Renamed to PublishSettingsSchema. */
4750
+ declare const PublicV1UpdatePublishSettingsResponseSchema: import("zod").ZodObject<{
4751
+ is_published: import("zod").ZodBoolean;
4752
+ url: import("zod").ZodOptional<import("zod").ZodString>;
4753
+ visibility: import("zod").ZodEnum<{
4754
+ public: "public";
4755
+ custom: "custom";
4756
+ workspace: "workspace";
4757
+ }>;
4758
+ }, import("zod/v4/core").$strip>;
4759
+ /** @deprecated Renamed to WorkspaceMembershipSchema. */
4760
+ declare const PublicV1WorkspaceMemberSchema: import("zod").ZodObject<{
4761
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4762
+ role: import("zod").ZodEnum<{
4763
+ owner: "owner";
4764
+ admin: "admin";
4765
+ member: "member";
4766
+ viewer: "viewer";
4767
+ collaborator: "collaborator";
4768
+ }>;
4769
+ user_id: import("zod").ZodString;
4770
+ }, import("zod/v4/core").$strip>;
4771
+ /** @deprecated Renamed to WorkspaceSchema. */
4772
+ declare const PublicV1WorkspaceSchema: import("zod").ZodObject<{
4773
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4774
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4775
+ id: import("zod").ZodString;
4776
+ image_url: import("zod").ZodOptional<import("zod").ZodString>;
4777
+ name: import("zod").ZodString;
4778
+ num_projects: import("zod").ZodNumber;
4779
+ plan: import("zod").ZodEnum<{
4780
+ free: "free";
4781
+ pro: "pro";
4782
+ business: "business";
4783
+ enterprise: "enterprise";
4784
+ }>;
4785
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4786
+ }, import("zod/v4/core").$strip>;
4787
+ /** @deprecated Renamed to WorkspaceWithMembershipSchema. */
4788
+ declare const PublicV1WorkspaceWithMembershipSchema: import("zod").ZodObject<{
4789
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4790
+ description: import("zod").ZodOptional<import("zod").ZodString>;
4791
+ id: import("zod").ZodString;
4792
+ image_url: import("zod").ZodOptional<import("zod").ZodString>;
4793
+ membership: import("zod").ZodOptional<import("zod").ZodObject<{
4794
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4795
+ role: import("zod").ZodEnum<{
4796
+ owner: "owner";
4797
+ admin: "admin";
4798
+ member: "member";
4799
+ viewer: "viewer";
4800
+ collaborator: "collaborator";
4801
+ }>;
4802
+ user_id: import("zod").ZodString;
4803
+ }, import("zod/v4/core").$strip>>;
4804
+ name: import("zod").ZodString;
4805
+ num_projects: import("zod").ZodNumber;
4806
+ plan: import("zod").ZodEnum<{
4807
+ free: "free";
4808
+ pro: "pro";
4809
+ business: "business";
4810
+ enterprise: "enterprise";
4811
+ }>;
4812
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4813
+ }, import("zod/v4/core").$strip>;
4814
+ /** @deprecated Renamed to SetMemberCreditLimitsRequestSchema. */
4815
+ declare const V1BillingBulkSetMemberCreditLimitInputBodySchema: import("zod").ZodObject<{
4816
+ members: import("zod").ZodArray<import("zod").ZodObject<{
4817
+ duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4818
+ permanent: "permanent";
4819
+ current_period: "current_period";
4820
+ }>>;
4821
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4822
+ monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
4823
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4824
+ }, import("zod/v4/core").$strip>>;
4825
+ }, import("zod/v4/core").$strip>;
4826
+ /** @deprecated Renamed to MemberCreditLimitSchema. */
4827
+ declare const V1BillingCreditLimitRowSchema: import("zod").ZodObject<{
4828
+ monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4829
+ temporary_limit_expires_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4830
+ temporary_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4831
+ user_id: import("zod").ZodString;
4832
+ }, import("zod/v4/core").$strip>;
4833
+ /** @deprecated Renamed to CreditLimitPageSchema. */
4834
+ declare const V1BillingCreditLimitsBodySchema: import("zod").ZodObject<{
4835
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4836
+ monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4837
+ temporary_limit_expires_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4838
+ temporary_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4839
+ user_id: import("zod").ZodString;
4840
+ }, import("zod/v4/core").$strip>>>;
4841
+ default_monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
4842
+ pagination: import("zod").ZodObject<{
4843
+ has_more: import("zod").ZodBoolean;
4844
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4845
+ }, import("zod/v4/core").$strip>;
4846
+ }, import("zod/v4/core").$strip>;
4847
+ /** @deprecated Renamed to BillingPeriodSchema. */
4848
+ declare const V1BillingPeriodSchema: import("zod").ZodObject<{
4849
+ end: import("zod").ZodISODateTime;
4850
+ start: import("zod").ZodISODateTime;
4851
+ }, import("zod/v4/core").$strip>;
4852
+ /** @deprecated Renamed to CreditUsagePageSchema. */
4853
+ declare const V1BillingUsageBodySchema: import("zod").ZodObject<{
4854
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4855
+ build: import("zod").ZodNumber;
4856
+ connectors: import("zod").ZodNumber;
4857
+ connectors_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4858
+ credits: import("zod").ZodNumber;
4859
+ key: import("zod").ZodString;
4860
+ label: import("zod").ZodString;
4861
+ }, import("zod/v4/core").$strip>>>>;
4862
+ database: import("zod").ZodNumber;
4863
+ database_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4864
+ credits: import("zod").ZodNumber;
4865
+ key: import("zod").ZodEnum<{
4866
+ database_server: "database_server";
4867
+ database_storage: "database_storage";
4868
+ }>;
4869
+ label: import("zod").ZodString;
4870
+ }, import("zod/v4/core").$strip>>>>;
4871
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4872
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4873
+ functions: import("zod").ZodNumber;
4874
+ gateway: import("zod").ZodNumber;
4875
+ gateway_models: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4876
+ credits: import("zod").ZodNumber;
4877
+ name: import("zod").ZodString;
4878
+ provider: import("zod").ZodString;
4879
+ }, import("zod/v4/core").$strip>>>>;
4880
+ network: import("zod").ZodNumber;
4881
+ period_end: import("zod").ZodOptional<import("zod").ZodString>;
4882
+ period_start: import("zod").ZodOptional<import("zod").ZodString>;
4883
+ project_id: import("zod").ZodOptional<import("zod").ZodString>;
4884
+ realtime: import("zod").ZodNumber;
4885
+ run: import("zod").ZodNumber;
4886
+ storage: import("zod").ZodNumber;
4887
+ total: import("zod").ZodNumber;
4888
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4889
+ }, import("zod/v4/core").$strip>>>;
4890
+ entity_count: import("zod").ZodOptional<import("zod").ZodNumber>;
4891
+ pagination: import("zod").ZodObject<{
4892
+ has_more: import("zod").ZodBoolean;
4893
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
4894
+ }, import("zod/v4/core").$strip>;
4895
+ period: import("zod").ZodObject<{
4896
+ end: import("zod").ZodString;
4897
+ group_by: import("zod").ZodOptional<import("zod").ZodEnum<{
4898
+ project: "project";
4899
+ member: "member";
4900
+ }>>;
4901
+ interval: import("zod").ZodOptional<import("zod").ZodEnum<{
4902
+ day: "day";
4903
+ week: "week";
4904
+ month: "month";
4905
+ }>>;
4906
+ start: import("zod").ZodString;
4907
+ }, import("zod/v4/core").$strip>;
4908
+ workspace_total: import("zod").ZodNumber;
4909
+ }, import("zod/v4/core").$strip>;
4910
+ /** @deprecated Renamed to CreditUsagePeriodSchema. */
4911
+ declare const V1BillingUsagePeriodSchema: import("zod").ZodObject<{
4912
+ end: import("zod").ZodString;
4913
+ group_by: import("zod").ZodOptional<import("zod").ZodEnum<{
4914
+ project: "project";
4915
+ member: "member";
4916
+ }>>;
4917
+ interval: import("zod").ZodOptional<import("zod").ZodEnum<{
4918
+ day: "day";
4919
+ week: "week";
4920
+ month: "month";
4921
+ }>>;
4922
+ start: import("zod").ZodString;
4923
+ }, import("zod/v4/core").$strip>;
4924
+ /** @deprecated Renamed to CreditUsageEntrySchema. */
4925
+ declare const V1BillingUsageRowSchema: import("zod").ZodObject<{
4926
+ build: import("zod").ZodNumber;
4927
+ connectors: import("zod").ZodNumber;
4928
+ connectors_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4929
+ credits: import("zod").ZodNumber;
4930
+ key: import("zod").ZodString;
4931
+ label: import("zod").ZodString;
4932
+ }, import("zod/v4/core").$strip>>>>;
4933
+ database: import("zod").ZodNumber;
4934
+ database_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4935
+ credits: import("zod").ZodNumber;
4936
+ key: import("zod").ZodEnum<{
4937
+ database_server: "database_server";
4938
+ database_storage: "database_storage";
4939
+ }>;
4940
+ label: import("zod").ZodString;
4941
+ }, import("zod/v4/core").$strip>>>>;
4942
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
4943
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4944
+ functions: import("zod").ZodNumber;
4945
+ gateway: import("zod").ZodNumber;
4946
+ gateway_models: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4947
+ credits: import("zod").ZodNumber;
4948
+ name: import("zod").ZodString;
4949
+ provider: import("zod").ZodString;
4950
+ }, import("zod/v4/core").$strip>>>>;
4951
+ network: import("zod").ZodNumber;
4952
+ period_end: import("zod").ZodOptional<import("zod").ZodString>;
4953
+ period_start: import("zod").ZodOptional<import("zod").ZodString>;
4954
+ project_id: import("zod").ZodOptional<import("zod").ZodString>;
4955
+ realtime: import("zod").ZodNumber;
4956
+ run: import("zod").ZodNumber;
4957
+ storage: import("zod").ZodNumber;
4958
+ total: import("zod").ZodNumber;
4959
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4960
+ }, import("zod/v4/core").$strip>;
4961
+ /** @deprecated Renamed to MemberCreditLimitUpdateSchema. */
4962
+ declare const V1BulkMemberCreditLimitItemSchema: import("zod").ZodObject<{
4963
+ duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4964
+ permanent: "permanent";
4965
+ current_period: "current_period";
4966
+ }>>;
4967
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4968
+ monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
4969
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4970
+ }, import("zod/v4/core").$strip>;
4971
+ /** @deprecated Renamed to MemberCreditLimitResultSchema. */
4972
+ declare const V1BulkMemberCreditLimitResultSchema: import("zod").ZodObject<{
4973
+ approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4974
+ duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4975
+ current_period: "current_period";
4976
+ }>>;
4977
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4978
+ error: import("zod").ZodOptional<import("zod").ZodString>;
4979
+ status: import("zod").ZodEnum<{
4980
+ success: "success";
4981
+ error: "error";
4982
+ }>;
4983
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
4984
+ }, import("zod/v4/core").$strip>;
4985
+ /** @deprecated Renamed to SetMemberCreditLimitsResponseSchema. */
4986
+ declare const V1BulkSetMemberCreditLimitOutputBodySchema: import("zod").ZodObject<{
4987
+ failed: import("zod").ZodNumber;
4988
+ results: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
4989
+ approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
4990
+ duration: import("zod").ZodOptional<import("zod").ZodEnum<{
4991
+ current_period: "current_period";
4992
+ }>>;
4993
+ email: import("zod").ZodOptional<import("zod").ZodString>;
4994
+ error: import("zod").ZodOptional<import("zod").ZodString>;
4995
+ status: import("zod").ZodEnum<{
4996
+ success: "success";
4997
+ error: "error";
4998
+ }>;
4999
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
5000
+ }, import("zod/v4/core").$strip>>>;
5001
+ successful: import("zod").ZodNumber;
5002
+ total: import("zod").ZodNumber;
5003
+ }, import("zod/v4/core").$strip>;
5004
+ /** @deprecated Renamed to CreateEmbedUrlRequestSchema. */
5005
+ declare const V1CreateEmbedUrlInputBodySchema: import("zod").ZodObject<{
5006
+ parent_origin: import("zod").ZodString;
5007
+ }, import("zod/v4/core").$strip>;
5008
+ /** @deprecated Renamed to CreateEmbedUrlResponseSchema. */
5009
+ declare const V1CreateEmbedUrlOutputBodySchema: import("zod").ZodObject<{
5010
+ embed_url: import("zod").ZodString;
5011
+ expires_at: import("zod").ZodISODateTime;
5012
+ }, import("zod/v4/core").$strip>;
5013
+ /** @deprecated Renamed to CreditHistoryEntrySchema. */
5014
+ declare const V1CreditHistoryEntrySchema: import("zod").ZodObject<{
5015
+ credit_grant_id: import("zod").ZodString;
5016
+ credits_change: import("zod").ZodNumber;
5017
+ event_type: import("zod").ZodEnum<{
5018
+ granted: "granted";
5019
+ expired: "expired";
5020
+ adjustment: "adjustment";
5021
+ converted: "converted";
5022
+ }>;
5023
+ grant_type: import("zod").ZodEnum<{
5024
+ granted: "granted";
5025
+ billing: "billing";
5026
+ rollover: "rollover";
5027
+ topup: "topup";
5028
+ commitment: "commitment";
5029
+ cashback: "cashback";
5030
+ daily: "daily";
5031
+ }>;
5032
+ id: import("zod").ZodString;
5033
+ label: import("zod").ZodString;
5034
+ occurred_at: import("zod").ZodISODateTime;
5035
+ }, import("zod/v4/core").$strip>;
5036
+ /** @deprecated Renamed to SecurityScanDetailSchema. */
5037
+ declare const V1GetSecurityScanOutputBodySchema: import("zod").ZodObject<{
5038
+ findings: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5039
+ category: import("zod").ZodOptional<import("zod").ZodString>;
5040
+ created_at: import("zod").ZodISODateTime;
5041
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5042
+ details: import("zod").ZodOptional<import("zod").ZodString>;
5043
+ finding_id: import("zod").ZodString;
5044
+ first_seen_scan_id: import("zod").ZodOptional<import("zod").ZodString>;
5045
+ level: import("zod").ZodEnum<{
5046
+ error: "error";
5047
+ warn: "warn";
5048
+ info: "info";
5049
+ }>;
5050
+ link: import("zod").ZodOptional<import("zod").ZodString>;
5051
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
5052
+ name: import("zod").ZodString;
5053
+ recurrence: import("zod").ZodNumber;
5054
+ remediation_difficulty: import("zod").ZodOptional<import("zod").ZodString>;
5055
+ scanner_name: import("zod").ZodString;
5056
+ status: import("zod").ZodEnum<{
5057
+ open: "open";
5058
+ ignored: "ignored";
5059
+ fixed: "fixed";
5060
+ }>;
5061
+ updated_at: import("zod").ZodISODateTime;
5062
+ }, import("zod/v4/core").$strip>>>;
5063
+ scan: import("zod").ZodObject<{
5064
+ commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5065
+ finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5066
+ requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
5067
+ scan_id: import("zod").ZodString;
5068
+ started_at: import("zod").ZodISODateTime;
5069
+ status: import("zod").ZodEnum<{
5070
+ completed: "completed";
5071
+ failed: "failed";
5072
+ running: "running";
5073
+ }>;
5074
+ trigger_source: import("zod").ZodEnum<{
5075
+ workflow: "workflow";
5076
+ user: "user";
5077
+ ui_auto: "ui_auto";
5078
+ aikido_import: "aikido_import";
5079
+ manage_findings: "manage_findings";
5080
+ app_mcp_deep_auto: "app_mcp_deep_auto";
5081
+ hvt_scheduled: "hvt_scheduled";
5082
+ workspace_scheduled: "workspace_scheduled";
5083
+ enterprise_batch: "enterprise_batch";
5084
+ gitsync_pull: "gitsync_pull";
5085
+ }>;
5086
+ triggered_by: import("zod").ZodObject<{
5087
+ email: import("zod").ZodOptional<import("zod").ZodString>;
5088
+ id: import("zod").ZodOptional<import("zod").ZodString>;
5089
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5090
+ type: import("zod").ZodEnum<{
5091
+ user: "user";
5092
+ system: "system";
5093
+ }>;
5094
+ }, import("zod/v4/core").$strip>;
5095
+ }, import("zod/v4/core").$strip>;
5096
+ scanner_runs: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5097
+ commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5098
+ error_message: import("zod").ZodOptional<import("zod").ZodString>;
5099
+ finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5100
+ scanner_name: import("zod").ZodString;
5101
+ scanner_version: import("zod").ZodOptional<import("zod").ZodString>;
5102
+ started_at: import("zod").ZodISODateTime;
5103
+ status: import("zod").ZodEnum<{
5104
+ failed: "failed";
5105
+ succeeded: "succeeded";
5106
+ skipped: "skipped";
5107
+ }>;
5108
+ }, import("zod/v4/core").$strip>>>;
5109
+ }, import("zod/v4/core").$strip>;
5110
+ /** @deprecated Renamed to WorkspacePageSchema. */
5111
+ declare const V1ListWorkspacesBodySchema: import("zod").ZodObject<{
5112
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5113
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5114
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5115
+ id: import("zod").ZodString;
5116
+ image_url: import("zod").ZodOptional<import("zod").ZodString>;
5117
+ membership: import("zod").ZodOptional<import("zod").ZodObject<{
5118
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5119
+ role: import("zod").ZodEnum<{
5120
+ owner: "owner";
5121
+ admin: "admin";
5122
+ member: "member";
5123
+ viewer: "viewer";
5124
+ collaborator: "collaborator";
5125
+ }>;
5126
+ user_id: import("zod").ZodString;
5127
+ }, import("zod/v4/core").$strip>>;
5128
+ name: import("zod").ZodString;
5129
+ num_projects: import("zod").ZodNumber;
5130
+ plan: import("zod").ZodEnum<{
5131
+ free: "free";
5132
+ pro: "pro";
5133
+ business: "business";
5134
+ enterprise: "enterprise";
5135
+ }>;
5136
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5137
+ }, import("zod/v4/core").$strip>>>;
5138
+ pagination: import("zod").ZodObject<{
5139
+ has_more: import("zod").ZodBoolean;
5140
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
5141
+ }, import("zod/v4/core").$strip>;
5142
+ }, import("zod/v4/core").$strip>;
5143
+ /** @deprecated Renamed to ProjectCollaboratorSchema. */
5144
+ declare const V1ProjectCollaboratorSchema: import("zod").ZodObject<{
5145
+ accepted_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5146
+ access_level: import("zod").ZodEnum<{
5147
+ owner: "owner";
5148
+ admin: "admin";
5149
+ write: "write";
5150
+ read: "read";
5151
+ none: "none";
5152
+ }>;
5153
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5154
+ email: import("zod").ZodOptional<import("zod").ZodString>;
5155
+ invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5156
+ invited_by: import("zod").ZodOptional<import("zod").ZodString>;
5157
+ is_internal: import("zod").ZodBoolean;
5158
+ is_workspace_member: import("zod").ZodBoolean;
5159
+ last_accessed_at: import("zod").ZodNullable<import("zod").ZodISODateTime>;
5160
+ user_id: import("zod").ZodString;
5161
+ }, import("zod/v4/core").$strip>;
5162
+ /** @deprecated Renamed to ProjectSchema. */
5163
+ declare const V1ProjectResponseSchema: import("zod").ZodObject<{
5164
+ created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5165
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5166
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5167
+ folder_id: import("zod").ZodOptional<import("zod").ZodString>;
5168
+ generated_description: import("zod").ZodOptional<import("zod").ZodString>;
5169
+ id: import("zod").ZodString;
5170
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
5171
+ last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5172
+ latest_commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5173
+ latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
5174
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5175
+ og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
5176
+ preview_url: import("zod").ZodOptional<import("zod").ZodString>;
5177
+ project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
5178
+ project: "project";
5179
+ library: "library";
5180
+ }>>;
5181
+ publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5182
+ public: "public";
5183
+ private: "private";
5184
+ workspace_only: "workspace_only";
5185
+ }>>;
5186
+ status: import("zod").ZodOptional<import("zod").ZodEnum<{
5187
+ in_progress: "in_progress";
5188
+ completed: "completed";
5189
+ failed: "failed";
5190
+ }>>;
5191
+ tech_stack: import("zod").ZodOptional<import("zod").ZodString>;
5192
+ updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5193
+ url: import("zod").ZodOptional<import("zod").ZodString>;
5194
+ user_id: import("zod").ZodOptional<import("zod").ZodString>;
5195
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5196
+ public: "public";
5197
+ private: "private";
5198
+ draft: "draft";
5199
+ workspace_view: "workspace_view";
5200
+ }>>;
5201
+ workspace_id: import("zod").ZodString;
5202
+ }, import("zod/v4/core").$strip>;
5203
+ /** @deprecated Renamed to RemixResultSchema. */
5204
+ declare const V1RemixProgressResultSchema: import("zod").ZodObject<{
5205
+ project_id: import("zod").ZodString;
5206
+ warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5207
+ code: import("zod").ZodEnum<{
5208
+ edge_functions_not_deployed: "edge_functions_not_deployed";
5209
+ integration_skipped: "integration_skipped";
5210
+ }>;
5211
+ failed_edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5212
+ reason: import("zod").ZodOptional<import("zod").ZodString>;
5213
+ skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
5214
+ }, import("zod/v4/core").$strip>>>>;
5215
+ }, import("zod/v4/core").$strip>;
5216
+ /** @deprecated Renamed to SecurityFindingSchema. */
5217
+ declare const V1SecurityFindingSchema: import("zod").ZodObject<{
5218
+ category: import("zod").ZodOptional<import("zod").ZodString>;
5219
+ created_at: import("zod").ZodISODateTime;
5220
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5221
+ details: import("zod").ZodOptional<import("zod").ZodString>;
5222
+ finding_id: import("zod").ZodString;
5223
+ first_seen_scan_id: import("zod").ZodOptional<import("zod").ZodString>;
5224
+ level: import("zod").ZodEnum<{
5225
+ error: "error";
5226
+ warn: "warn";
5227
+ info: "info";
5228
+ }>;
5229
+ link: import("zod").ZodOptional<import("zod").ZodString>;
5230
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
5231
+ name: import("zod").ZodString;
5232
+ recurrence: import("zod").ZodNumber;
5233
+ remediation_difficulty: import("zod").ZodOptional<import("zod").ZodString>;
5234
+ scanner_name: import("zod").ZodString;
5235
+ status: import("zod").ZodEnum<{
5236
+ open: "open";
5237
+ ignored: "ignored";
5238
+ fixed: "fixed";
5239
+ }>;
5240
+ updated_at: import("zod").ZodISODateTime;
5241
+ }, import("zod/v4/core").$strip>;
5242
+ /** @deprecated Renamed to SecurityScanActorSchema. */
5243
+ declare const V1SecurityScanActorSchema: import("zod").ZodObject<{
5244
+ email: import("zod").ZodOptional<import("zod").ZodString>;
5245
+ id: import("zod").ZodOptional<import("zod").ZodString>;
5246
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5247
+ type: import("zod").ZodEnum<{
5248
+ user: "user";
5249
+ system: "system";
5250
+ }>;
5251
+ }, import("zod/v4/core").$strip>;
5252
+ /** @deprecated Renamed to SecurityScanSchema. */
5253
+ declare const V1SecurityScanSummarySchema: import("zod").ZodObject<{
5254
+ commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5255
+ finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5256
+ requested_scanners: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>;
5257
+ scan_id: import("zod").ZodString;
5258
+ started_at: import("zod").ZodISODateTime;
5259
+ status: import("zod").ZodEnum<{
5260
+ completed: "completed";
5261
+ failed: "failed";
5262
+ running: "running";
5263
+ }>;
5264
+ trigger_source: import("zod").ZodEnum<{
5265
+ workflow: "workflow";
5266
+ user: "user";
5267
+ ui_auto: "ui_auto";
5268
+ aikido_import: "aikido_import";
5269
+ manage_findings: "manage_findings";
5270
+ app_mcp_deep_auto: "app_mcp_deep_auto";
5271
+ hvt_scheduled: "hvt_scheduled";
5272
+ workspace_scheduled: "workspace_scheduled";
5273
+ enterprise_batch: "enterprise_batch";
5274
+ gitsync_pull: "gitsync_pull";
5275
+ }>;
5276
+ triggered_by: import("zod").ZodObject<{
5277
+ email: import("zod").ZodOptional<import("zod").ZodString>;
5278
+ id: import("zod").ZodOptional<import("zod").ZodString>;
5279
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5280
+ type: import("zod").ZodEnum<{
5281
+ user: "user";
5282
+ system: "system";
5283
+ }>;
5284
+ }, import("zod/v4/core").$strip>;
5285
+ }, import("zod/v4/core").$strip>;
5286
+ /** @deprecated Renamed to SecurityScannerRunSchema. */
5287
+ declare const V1SecurityScannerRunSchema: import("zod").ZodObject<{
5288
+ commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
5289
+ error_message: import("zod").ZodOptional<import("zod").ZodString>;
5290
+ finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5291
+ scanner_name: import("zod").ZodString;
5292
+ scanner_version: import("zod").ZodOptional<import("zod").ZodString>;
5293
+ started_at: import("zod").ZodISODateTime;
5294
+ status: import("zod").ZodEnum<{
5295
+ failed: "failed";
5296
+ succeeded: "succeeded";
5297
+ skipped: "skipped";
5298
+ }>;
5299
+ }, import("zod/v4/core").$strip>;
5300
+ /** @deprecated Renamed to TriggerSecurityScanResponseSchema. */
5301
+ declare const V1TriggerSecurityScanResponseBodySchema: import("zod").ZodObject<{
5302
+ message: import("zod").ZodOptional<import("zod").ZodString>;
5303
+ scan_id: import("zod").ZodString;
5304
+ status: import("zod").ZodEnum<{
5305
+ completed: "completed";
5306
+ running: "running";
5307
+ started: "started";
5308
+ }>;
5309
+ }, import("zod/v4/core").$strip>;
5310
+ /** @deprecated Renamed to UpdateWorkspaceSettingsRequestSchema. */
5311
+ declare const V1UpdateWorkspaceSettingsNestedInputBodySchema: import("zod").ZodObject<{
5312
+ default_monthly_member_credit_limit: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
5313
+ }, import("zod/v4/core").$strip>;
5314
+ /** @deprecated Renamed to CreditHistoryPageSchema. */
5315
+ declare const V1WorkspaceCreditHistoryBodySchema: import("zod").ZodObject<{
5316
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5317
+ credit_grant_id: import("zod").ZodString;
5318
+ credits_change: import("zod").ZodNumber;
5319
+ event_type: import("zod").ZodEnum<{
5320
+ granted: "granted";
5321
+ expired: "expired";
5322
+ adjustment: "adjustment";
5323
+ converted: "converted";
5324
+ }>;
5325
+ grant_type: import("zod").ZodEnum<{
5326
+ granted: "granted";
5327
+ billing: "billing";
5328
+ rollover: "rollover";
5329
+ topup: "topup";
5330
+ commitment: "commitment";
5331
+ cashback: "cashback";
5332
+ daily: "daily";
5333
+ }>;
5334
+ id: import("zod").ZodString;
5335
+ label: import("zod").ZodString;
5336
+ occurred_at: import("zod").ZodISODateTime;
5337
+ }, import("zod/v4/core").$strip>>>;
5338
+ pagination: import("zod").ZodObject<{
5339
+ has_more: import("zod").ZodBoolean;
5340
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
5341
+ }, import("zod/v4/core").$strip>;
5342
+ total: import("zod").ZodOptional<import("zod").ZodNumber>;
5343
+ total_is_capped: import("zod").ZodOptional<import("zod").ZodBoolean>;
5344
+ }, import("zod/v4/core").$strip>;
5345
+ /** @deprecated Renamed to CreditBalanceSchema. */
5346
+ declare const V1WorkspaceCreditsBodySchema: import("zod").ZodObject<{
5347
+ billing_period: import("zod").ZodObject<{
5348
+ end: import("zod").ZodISODateTime;
5349
+ start: import("zod").ZodISODateTime;
5350
+ }, import("zod/v4/core").$strip>;
5351
+ daily_limit: import("zod").ZodNumber;
5352
+ daily_remaining: import("zod").ZodNumber;
5353
+ expiring_grants: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5354
+ applicability: import("zod").ZodOptional<import("zod").ZodEnum<{
5355
+ generic: "generic";
5356
+ build_time: "build_time";
5357
+ build_mode: "build_mode";
5358
+ plan_mode: "plan_mode";
5359
+ }>>;
5360
+ credits: import("zod").ZodNumber;
5361
+ expires_at: import("zod").ZodISODateTime;
5362
+ grant_type: import("zod").ZodEnum<{
5363
+ granted: "granted";
5364
+ billing: "billing";
5365
+ rollover: "rollover";
5366
+ topup: "topup";
5367
+ commitment: "commitment";
5368
+ cashback: "cashback";
5369
+ overage: "overage";
5370
+ unlimited: "unlimited";
5371
+ allowance: "allowance";
5372
+ }>;
5373
+ }, import("zod/v4/core").$strip>>>;
5374
+ grant_type_balances: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5375
+ grant_type: import("zod").ZodEnum<{
5376
+ granted: "granted";
5377
+ billing: "billing";
5378
+ rollover: "rollover";
5379
+ topup: "topup";
5380
+ commitment: "commitment";
5381
+ cashback: "cashback";
5382
+ daily: "daily";
5383
+ overage: "overage";
5384
+ unlimited: "unlimited";
5385
+ allowance: "allowance";
5386
+ }>;
5387
+ granted: import("zod").ZodNumber;
5388
+ remaining: import("zod").ZodNumber;
5389
+ }, import("zod/v4/core").$strip>>>;
5390
+ total_billing_period_used: import("zod").ZodNumber;
5391
+ total_granted: import("zod").ZodNumber;
5392
+ total_remaining: import("zod").ZodNumber;
5393
+ }, import("zod/v4/core").$strip>;
5394
+ /** @deprecated Renamed to ExpiringCreditGrantSchema. */
5395
+ declare const V1WorkspaceCreditsExpiringGrantSchema: import("zod").ZodObject<{
5396
+ applicability: import("zod").ZodOptional<import("zod").ZodEnum<{
5397
+ generic: "generic";
5398
+ build_time: "build_time";
5399
+ build_mode: "build_mode";
5400
+ plan_mode: "plan_mode";
5401
+ }>>;
5402
+ credits: import("zod").ZodNumber;
5403
+ expires_at: import("zod").ZodISODateTime;
5404
+ grant_type: import("zod").ZodEnum<{
5405
+ granted: "granted";
5406
+ billing: "billing";
5407
+ rollover: "rollover";
5408
+ topup: "topup";
5409
+ commitment: "commitment";
5410
+ cashback: "cashback";
5411
+ overage: "overage";
5412
+ unlimited: "unlimited";
5413
+ allowance: "allowance";
5414
+ }>;
5415
+ }, import("zod/v4/core").$strip>;
5416
+ /** @deprecated Renamed to CreditGrantTypeBalanceSchema. */
5417
+ declare const V1WorkspaceCreditsGrantTypeBalanceSchema: import("zod").ZodObject<{
5418
+ grant_type: import("zod").ZodEnum<{
5419
+ granted: "granted";
5420
+ billing: "billing";
5421
+ rollover: "rollover";
5422
+ topup: "topup";
5423
+ commitment: "commitment";
5424
+ cashback: "cashback";
5425
+ daily: "daily";
5426
+ overage: "overage";
5427
+ unlimited: "unlimited";
5428
+ allowance: "allowance";
5429
+ }>;
5430
+ granted: import("zod").ZodNumber;
5431
+ remaining: import("zod").ZodNumber;
5432
+ }, import("zod/v4/core").$strip>;
5433
+ /** @deprecated Renamed to WorkspaceGroupSchema. */
5434
+ declare const V1WorkspaceGroupSchema: import("zod").ZodObject<{
5435
+ created_at: import("zod").ZodISODateTime;
5436
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5437
+ id: import("zod").ZodString;
5438
+ member_count: import("zod").ZodNumber;
5439
+ name: import("zod").ZodString;
5440
+ scim_external_id: import("zod").ZodOptional<import("zod").ZodString>;
5441
+ updated_at: import("zod").ZodISODateTime;
5442
+ workspace_id: import("zod").ZodString;
5443
+ }, import("zod/v4/core").$strip>;
5444
+ /** @deprecated Renamed to WorkspaceInsightsActivityFreshnessSchema. */
5445
+ declare const V1WorkspaceInsightsActivityFreshnessSchema: import("zod").ZodObject<{
5446
+ edits_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5447
+ visitors_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5448
+ }, import("zod/v4/core").$strip>;
5449
+ /** @deprecated Renamed to WorkspaceInsightsSchema. */
5450
+ declare const V1WorkspaceInsightsBodySchema: import("zod").ZodObject<{
5451
+ as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5452
+ findings: import("zod").ZodArray<import("zod").ZodObject<{
5453
+ category: import("zod").ZodEnum<{
5454
+ data: "data";
5455
+ security: "security";
5456
+ exposure: "exposure";
5457
+ credentials: "credentials";
5458
+ access: "access";
5459
+ integrations: "integrations";
5460
+ runtime: "runtime";
5461
+ }>;
5462
+ description: import("zod").ZodString;
5463
+ id: import("zod").ZodString;
5464
+ project_count: import("zod").ZodNumber;
5465
+ severity: import("zod").ZodEnum<{
5466
+ needs_review: "needs_review";
5467
+ review_recommended: "review_recommended";
5468
+ no_review_needed: "no_review_needed";
5469
+ }>;
5470
+ title: import("zod").ZodString;
5471
+ }, import("zod/v4/core").$strip>>;
5472
+ summary: import("zod").ZodObject<{
5473
+ externally_published: import("zod").ZodObject<{
5474
+ delta_30d: import("zod").ZodNumber;
5475
+ delta_window: import("zod").ZodString;
5476
+ value: import("zod").ZodNumber;
5477
+ }, import("zod/v4/core").$strip>;
5478
+ risk: import("zod").ZodObject<{
5479
+ needs_review: import("zod").ZodNumber;
5480
+ no_review_needed: import("zod").ZodNumber;
5481
+ review_recommended: import("zod").ZodNumber;
5482
+ }, import("zod/v4/core").$strip>;
5483
+ total_projects: import("zod").ZodObject<{
5484
+ delta_30d: import("zod").ZodNumber;
5485
+ delta_window: import("zod").ZodString;
5486
+ value: import("zod").ZodNumber;
5487
+ }, import("zod/v4/core").$strip>;
5488
+ workspace_members: import("zod").ZodObject<{
5489
+ delta_30d: import("zod").ZodNumber;
5490
+ delta_window: import("zod").ZodString;
5491
+ value: import("zod").ZodNumber;
5492
+ }, import("zod/v4/core").$strip>;
5493
+ }, import("zod/v4/core").$strip>;
5494
+ }, import("zod/v4/core").$strip>;
5495
+ /** @deprecated Renamed to WorkspaceInsightsEdgeFunctionSchema. */
5496
+ declare const V1WorkspaceInsightsEdgeFunctionSchema: import("zod").ZodObject<{
5497
+ name: import("zod").ZodString;
5498
+ }, import("zod/v4/core").$strip>;
5499
+ /** @deprecated Renamed to WorkspaceInsightsFindingSchema. */
5500
+ declare const V1WorkspaceInsightsFindingSchema: import("zod").ZodObject<{
5501
+ category: import("zod").ZodEnum<{
5502
+ data: "data";
5503
+ security: "security";
5504
+ exposure: "exposure";
5505
+ credentials: "credentials";
5506
+ access: "access";
5507
+ integrations: "integrations";
5508
+ runtime: "runtime";
5509
+ }>;
5510
+ description: import("zod").ZodString;
5511
+ id: import("zod").ZodString;
5512
+ project_count: import("zod").ZodNumber;
5513
+ severity: import("zod").ZodEnum<{
5514
+ needs_review: "needs_review";
5515
+ review_recommended: "review_recommended";
5516
+ no_review_needed: "no_review_needed";
5517
+ }>;
5518
+ title: import("zod").ZodString;
5519
+ }, import("zod/v4/core").$strip>;
5520
+ /** @deprecated Renamed to WorkspaceInsightsOwnerSchema. */
5521
+ declare const V1WorkspaceInsightsOwnerSchema: import("zod").ZodObject<{
5522
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5523
+ }, import("zod/v4/core").$strip>;
5524
+ /** @deprecated Renamed to WorkspaceInsightsProjectSchema. */
5525
+ declare const V1WorkspaceInsightsProjectSchema: import("zod").ZodObject<{
5526
+ activity_group: import("zod").ZodOptional<import("zod").ZodEnum<{
5527
+ last_14_days: "last_14_days";
5528
+ last_60_days: "last_60_days";
5529
+ older: "older";
5530
+ }>>;
5531
+ connectors: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5532
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5533
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5534
+ edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5535
+ name: import("zod").ZodString;
5536
+ }, import("zod/v4/core").$strip>>>>;
5537
+ edit_count: import("zod").ZodNumber;
5538
+ edits_24h: import("zod").ZodNumber;
5539
+ edits_30d: import("zod").ZodNumber;
5540
+ edits_7d: import("zod").ZodNumber;
5541
+ generated_description: import("zod").ZodOptional<import("zod").ZodString>;
5542
+ id: import("zod").ZodString;
5543
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
5544
+ last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5545
+ last_security_scan_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5546
+ matched_reason: import("zod").ZodOptional<import("zod").ZodObject<{
5547
+ category: import("zod").ZodEnum<{
5548
+ data: "data";
5549
+ security: "security";
5550
+ exposure: "exposure";
5551
+ credentials: "credentials";
5552
+ access: "access";
5553
+ integrations: "integrations";
5554
+ runtime: "runtime";
5555
+ }>;
5556
+ detail: import("zod").ZodString;
5557
+ id: import("zod").ZodString;
5558
+ label: import("zod").ZodString;
5559
+ severity: import("zod").ZodEnum<{
5560
+ needs_review: "needs_review";
5561
+ review_recommended: "review_recommended";
5562
+ no_review_needed: "no_review_needed";
5563
+ }>;
5564
+ values: import("zod").ZodOptional<import("zod").ZodObject<{
5565
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5566
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5567
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5568
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5569
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5570
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5571
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5572
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5573
+ }, import("zod/v4/core").$strip>>;
5574
+ }, import("zod/v4/core").$strip>>;
5575
+ message_count: import("zod").ZodNumber;
5576
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5577
+ og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
5578
+ owner: import("zod").ZodOptional<import("zod").ZodObject<{
5579
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5580
+ }, import("zod/v4/core").$strip>>;
5581
+ publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5582
+ public: "public";
5583
+ private: "private";
5584
+ workspace_only: "workspace_only";
5585
+ }>>;
5586
+ review_priority: import("zod").ZodOptional<import("zod").ZodEnum<{
5587
+ needs_review: "needs_review";
5588
+ review_recommended: "review_recommended";
5589
+ no_review_needed: "no_review_needed";
5590
+ unscored: "unscored";
5591
+ }>>;
5592
+ review_priority_explanation: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5593
+ category: import("zod").ZodEnum<{
5594
+ data: "data";
5595
+ security: "security";
5596
+ exposure: "exposure";
5597
+ credentials: "credentials";
5598
+ access: "access";
5599
+ integrations: "integrations";
5600
+ runtime: "runtime";
5601
+ }>;
5602
+ detail: import("zod").ZodString;
5603
+ id: import("zod").ZodString;
5604
+ label: import("zod").ZodString;
5605
+ severity: import("zod").ZodEnum<{
5606
+ needs_review: "needs_review";
5607
+ review_recommended: "review_recommended";
5608
+ no_review_needed: "no_review_needed";
5609
+ }>;
5610
+ values: import("zod").ZodOptional<import("zod").ZodObject<{
5611
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5612
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5613
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5614
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5615
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5616
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5617
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5618
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5619
+ }, import("zod/v4/core").$strip>>;
5620
+ }, import("zod/v4/core").$strip>>>;
5621
+ signals: import("zod").ZodObject<{
5622
+ chat_attachment_count: import("zod").ZodNumber;
5623
+ connector_count: import("zod").ZodNumber;
5624
+ edge_function_count: import("zod").ZodNumber;
5625
+ error_count: import("zod").ZodNumber;
5626
+ external_collaborators_known: import("zod").ZodBoolean;
5627
+ has_chat_attachment: import("zod").ZodBoolean;
5628
+ has_external_collaborators: import("zod").ZodBoolean;
5629
+ has_pii: import("zod").ZodBoolean;
5630
+ has_project_asset: import("zod").ZodBoolean;
5631
+ has_project_secret: import("zod").ZodBoolean;
5632
+ info_count: import("zod").ZodNumber;
5633
+ is_orphaned: import("zod").ZodBoolean;
5634
+ is_public_published: import("zod").ZodBoolean;
5635
+ is_published: import("zod").ZodBoolean;
5636
+ lovable_cloud_enabled: import("zod").ZodBoolean;
5637
+ open_pii_finding_count: import("zod").ZodNumber;
5638
+ overshared: import("zod").ZodBoolean;
5639
+ project_asset_count: import("zod").ZodNumber;
5640
+ project_secret_count: import("zod").ZodNumber;
5641
+ shared_user_count: import("zod").ZodNumber;
5642
+ supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5643
+ supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5644
+ supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5645
+ supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5646
+ supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5647
+ supply_chain_error_count: import("zod").ZodNumber;
5648
+ supply_chain_info_count: import("zod").ZodNumber;
5649
+ supply_chain_warning_count: import("zod").ZodNumber;
5650
+ warning_count: import("zod").ZodNumber;
5651
+ }, import("zod/v4/core").$strip>;
5652
+ url: import("zod").ZodOptional<import("zod").ZodString>;
5653
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5654
+ public: "public";
5655
+ private: "private";
5656
+ draft: "draft";
5657
+ workspace_view: "workspace_view";
5658
+ }>>;
5659
+ visitors_24h: import("zod").ZodNumber;
5660
+ visitors_30d: import("zod").ZodNumber;
5661
+ visitors_7d: import("zod").ZodNumber;
5662
+ }, import("zod/v4/core").$strip>;
5663
+ /** @deprecated Renamed to WorkspaceInsightsProjectPageSchema. */
5664
+ declare const V1WorkspaceInsightsProjectsBodySchema: import("zod").ZodObject<{
5665
+ activity_as_of: import("zod").ZodOptional<import("zod").ZodObject<{
5666
+ edits_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5667
+ visitors_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5668
+ }, import("zod/v4/core").$strip>>;
5669
+ applied_finding: import("zod").ZodOptional<import("zod").ZodObject<{
5670
+ category: import("zod").ZodEnum<{
5671
+ data: "data";
5672
+ security: "security";
5673
+ exposure: "exposure";
5674
+ credentials: "credentials";
5675
+ access: "access";
5676
+ integrations: "integrations";
5677
+ runtime: "runtime";
5678
+ }>;
5679
+ description: import("zod").ZodString;
5680
+ id: import("zod").ZodString;
5681
+ project_count: import("zod").ZodNumber;
5682
+ severity: import("zod").ZodEnum<{
5683
+ needs_review: "needs_review";
5684
+ review_recommended: "review_recommended";
5685
+ no_review_needed: "no_review_needed";
5686
+ }>;
5687
+ title: import("zod").ZodString;
5688
+ }, import("zod/v4/core").$strip>>;
5689
+ as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5690
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5691
+ activity_group: import("zod").ZodOptional<import("zod").ZodEnum<{
5692
+ last_14_days: "last_14_days";
5693
+ last_60_days: "last_60_days";
5694
+ older: "older";
5695
+ }>>;
5696
+ connectors: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5697
+ description: import("zod").ZodOptional<import("zod").ZodString>;
5698
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5699
+ edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5700
+ name: import("zod").ZodString;
5701
+ }, import("zod/v4/core").$strip>>>>;
5702
+ edit_count: import("zod").ZodNumber;
5703
+ edits_24h: import("zod").ZodNumber;
5704
+ edits_30d: import("zod").ZodNumber;
5705
+ edits_7d: import("zod").ZodNumber;
5706
+ generated_description: import("zod").ZodOptional<import("zod").ZodString>;
5707
+ id: import("zod").ZodString;
5708
+ is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
5709
+ last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5710
+ last_security_scan_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5711
+ matched_reason: import("zod").ZodOptional<import("zod").ZodObject<{
5712
+ category: import("zod").ZodEnum<{
5713
+ data: "data";
5714
+ security: "security";
5715
+ exposure: "exposure";
5716
+ credentials: "credentials";
5717
+ access: "access";
5718
+ integrations: "integrations";
5719
+ runtime: "runtime";
5720
+ }>;
5721
+ detail: import("zod").ZodString;
5722
+ id: import("zod").ZodString;
5723
+ label: import("zod").ZodString;
5724
+ severity: import("zod").ZodEnum<{
5725
+ needs_review: "needs_review";
5726
+ review_recommended: "review_recommended";
5727
+ no_review_needed: "no_review_needed";
5728
+ }>;
5729
+ values: import("zod").ZodOptional<import("zod").ZodObject<{
5730
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5731
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5732
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5733
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5734
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5735
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5736
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5737
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5738
+ }, import("zod/v4/core").$strip>>;
5739
+ }, import("zod/v4/core").$strip>>;
5740
+ message_count: import("zod").ZodNumber;
5741
+ name: import("zod").ZodOptional<import("zod").ZodString>;
5742
+ og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
5743
+ owner: import("zod").ZodOptional<import("zod").ZodObject<{
5744
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5745
+ }, import("zod/v4/core").$strip>>;
5746
+ publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5747
+ public: "public";
5748
+ private: "private";
5749
+ workspace_only: "workspace_only";
5750
+ }>>;
5751
+ review_priority: import("zod").ZodOptional<import("zod").ZodEnum<{
5752
+ needs_review: "needs_review";
5753
+ review_recommended: "review_recommended";
5754
+ no_review_needed: "no_review_needed";
5755
+ unscored: "unscored";
5756
+ }>>;
5757
+ review_priority_explanation: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
5758
+ category: import("zod").ZodEnum<{
5759
+ data: "data";
5760
+ security: "security";
5761
+ exposure: "exposure";
5762
+ credentials: "credentials";
5763
+ access: "access";
5764
+ integrations: "integrations";
5765
+ runtime: "runtime";
5766
+ }>;
5767
+ detail: import("zod").ZodString;
5768
+ id: import("zod").ZodString;
5769
+ label: import("zod").ZodString;
5770
+ severity: import("zod").ZodEnum<{
5771
+ needs_review: "needs_review";
5772
+ review_recommended: "review_recommended";
5773
+ no_review_needed: "no_review_needed";
5774
+ }>;
5775
+ values: import("zod").ZodOptional<import("zod").ZodObject<{
5776
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5777
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5778
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5779
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5780
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5781
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5782
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5783
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5784
+ }, import("zod/v4/core").$strip>>;
5785
+ }, import("zod/v4/core").$strip>>>;
5786
+ signals: import("zod").ZodObject<{
5787
+ chat_attachment_count: import("zod").ZodNumber;
5788
+ connector_count: import("zod").ZodNumber;
5789
+ edge_function_count: import("zod").ZodNumber;
5790
+ error_count: import("zod").ZodNumber;
5791
+ external_collaborators_known: import("zod").ZodBoolean;
5792
+ has_chat_attachment: import("zod").ZodBoolean;
5793
+ has_external_collaborators: import("zod").ZodBoolean;
5794
+ has_pii: import("zod").ZodBoolean;
5795
+ has_project_asset: import("zod").ZodBoolean;
5796
+ has_project_secret: import("zod").ZodBoolean;
5797
+ info_count: import("zod").ZodNumber;
5798
+ is_orphaned: import("zod").ZodBoolean;
5799
+ is_public_published: import("zod").ZodBoolean;
5800
+ is_published: import("zod").ZodBoolean;
5801
+ lovable_cloud_enabled: import("zod").ZodBoolean;
5802
+ open_pii_finding_count: import("zod").ZodNumber;
5803
+ overshared: import("zod").ZodBoolean;
5804
+ project_asset_count: import("zod").ZodNumber;
5805
+ project_secret_count: import("zod").ZodNumber;
5806
+ shared_user_count: import("zod").ZodNumber;
5807
+ supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5808
+ supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5809
+ supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5810
+ supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5811
+ supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5812
+ supply_chain_error_count: import("zod").ZodNumber;
5813
+ supply_chain_info_count: import("zod").ZodNumber;
5814
+ supply_chain_warning_count: import("zod").ZodNumber;
5815
+ warning_count: import("zod").ZodNumber;
5816
+ }, import("zod/v4/core").$strip>;
5817
+ url: import("zod").ZodOptional<import("zod").ZodString>;
5818
+ visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5819
+ public: "public";
5820
+ private: "private";
5821
+ draft: "draft";
5822
+ workspace_view: "workspace_view";
5823
+ }>>;
5824
+ visitors_24h: import("zod").ZodNumber;
5825
+ visitors_30d: import("zod").ZodNumber;
5826
+ visitors_7d: import("zod").ZodNumber;
5827
+ }, import("zod/v4/core").$strip>>>;
5828
+ pagination: import("zod").ZodObject<{
5829
+ has_more: import("zod").ZodBoolean;
5830
+ next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
5831
+ }, import("zod/v4/core").$strip>;
5832
+ total: import("zod").ZodNumber;
5833
+ }, import("zod/v4/core").$strip>;
5834
+ /** @deprecated Renamed to WorkspaceInsightsReasonSchema. */
5835
+ declare const V1WorkspaceInsightsReasonSchema: import("zod").ZodObject<{
5836
+ category: import("zod").ZodEnum<{
5837
+ data: "data";
5838
+ security: "security";
5839
+ exposure: "exposure";
5840
+ credentials: "credentials";
5841
+ access: "access";
5842
+ integrations: "integrations";
5843
+ runtime: "runtime";
5844
+ }>;
5845
+ detail: import("zod").ZodString;
5846
+ id: import("zod").ZodString;
5847
+ label: import("zod").ZodString;
5848
+ severity: import("zod").ZodEnum<{
5849
+ needs_review: "needs_review";
5850
+ review_recommended: "review_recommended";
5851
+ no_review_needed: "no_review_needed";
5852
+ }>;
5853
+ values: import("zod").ZodOptional<import("zod").ZodObject<{
5854
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5855
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5856
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5857
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5858
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5859
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5860
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5861
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5862
+ }, import("zod/v4/core").$strip>>;
5863
+ }, import("zod/v4/core").$strip>;
5864
+ /** @deprecated Renamed to WorkspaceInsightsReasonValuesSchema. */
5865
+ declare const V1WorkspaceInsightsReasonValuesSchema: import("zod").ZodObject<{
5866
+ connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5867
+ edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5868
+ error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5869
+ info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5870
+ open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5871
+ secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5872
+ shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5873
+ warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5874
+ }, import("zod/v4/core").$strip>;
5875
+ /** @deprecated Renamed to WorkspaceInsightsReviewPrioritySchema. */
5876
+ declare const V1WorkspaceInsightsReviewPrioritySchema: import("zod").ZodObject<{
5877
+ needs_review: import("zod").ZodNumber;
5878
+ no_review_needed: import("zod").ZodNumber;
5879
+ review_recommended: import("zod").ZodNumber;
5880
+ }, import("zod/v4/core").$strip>;
5881
+ /** @deprecated Renamed to WorkspaceInsightsSignalsSchema. */
5882
+ declare const V1WorkspaceInsightsSignalsSchema: import("zod").ZodObject<{
5883
+ chat_attachment_count: import("zod").ZodNumber;
5884
+ connector_count: import("zod").ZodNumber;
5885
+ edge_function_count: import("zod").ZodNumber;
5886
+ error_count: import("zod").ZodNumber;
5887
+ external_collaborators_known: import("zod").ZodBoolean;
5888
+ has_chat_attachment: import("zod").ZodBoolean;
5889
+ has_external_collaborators: import("zod").ZodBoolean;
5890
+ has_pii: import("zod").ZodBoolean;
5891
+ has_project_asset: import("zod").ZodBoolean;
5892
+ has_project_secret: import("zod").ZodBoolean;
5893
+ info_count: import("zod").ZodNumber;
5894
+ is_orphaned: import("zod").ZodBoolean;
5895
+ is_public_published: import("zod").ZodBoolean;
5896
+ is_published: import("zod").ZodBoolean;
5897
+ lovable_cloud_enabled: import("zod").ZodBoolean;
5898
+ open_pii_finding_count: import("zod").ZodNumber;
5899
+ overshared: import("zod").ZodBoolean;
5900
+ project_asset_count: import("zod").ZodNumber;
5901
+ project_secret_count: import("zod").ZodNumber;
5902
+ shared_user_count: import("zod").ZodNumber;
5903
+ supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
5904
+ supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5905
+ supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5906
+ supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5907
+ supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
5908
+ supply_chain_error_count: import("zod").ZodNumber;
5909
+ supply_chain_info_count: import("zod").ZodNumber;
5910
+ supply_chain_warning_count: import("zod").ZodNumber;
5911
+ warning_count: import("zod").ZodNumber;
5912
+ }, import("zod/v4/core").$strip>;
5913
+ /** @deprecated Renamed to WorkspaceInsightsStatSchema. */
5914
+ declare const V1WorkspaceInsightsStatSchema: import("zod").ZodObject<{
5915
+ delta_30d: import("zod").ZodNumber;
5916
+ delta_window: import("zod").ZodString;
5917
+ value: import("zod").ZodNumber;
5918
+ }, import("zod/v4/core").$strip>;
5919
+ /** @deprecated Renamed to WorkspaceInsightsSummarySchema. */
5920
+ declare const V1WorkspaceInsightsSummarySchema: import("zod").ZodObject<{
5921
+ externally_published: import("zod").ZodObject<{
5922
+ delta_30d: import("zod").ZodNumber;
5923
+ delta_window: import("zod").ZodString;
5924
+ value: import("zod").ZodNumber;
5925
+ }, import("zod/v4/core").$strip>;
5926
+ risk: import("zod").ZodObject<{
5927
+ needs_review: import("zod").ZodNumber;
5928
+ no_review_needed: import("zod").ZodNumber;
5929
+ review_recommended: import("zod").ZodNumber;
5930
+ }, import("zod/v4/core").$strip>;
5931
+ total_projects: import("zod").ZodObject<{
5932
+ delta_30d: import("zod").ZodNumber;
5933
+ delta_window: import("zod").ZodString;
5934
+ value: import("zod").ZodNumber;
5935
+ }, import("zod/v4/core").$strip>;
5936
+ workspace_members: import("zod").ZodObject<{
5937
+ delta_30d: import("zod").ZodNumber;
5938
+ delta_window: import("zod").ZodString;
5939
+ value: import("zod").ZodNumber;
5940
+ }, import("zod/v4/core").$strip>;
5941
+ }, import("zod/v4/core").$strip>;
5942
+ /** @deprecated Renamed to WorkspaceMemberGroupSchema. */
5943
+ declare const V1WorkspaceMemberGroupSchema: import("zod").ZodObject<{
5944
+ id: import("zod").ZodString;
5945
+ name: import("zod").ZodString;
5946
+ }, import("zod/v4/core").$strip>;
5947
+ /** @deprecated Renamed to WorkspaceMemberSchema. */
5948
+ declare const V1WorkspaceMemberSchema: import("zod").ZodObject<{
5949
+ display_name: import("zod").ZodOptional<import("zod").ZodString>;
5950
+ email: import("zod").ZodOptional<import("zod").ZodString>;
5951
+ groups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
5952
+ id: import("zod").ZodString;
5953
+ name: import("zod").ZodString;
5954
+ }, import("zod/v4/core").$strip>>>;
5955
+ invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5956
+ joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5957
+ monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
5958
+ role: import("zod").ZodEnum<{
5959
+ owner: "owner";
5960
+ admin: "admin";
5961
+ member: "member";
5962
+ viewer: "viewer";
5963
+ collaborator: "collaborator";
5964
+ }>;
5965
+ user_id: import("zod").ZodString;
5966
+ workspace_id: import("zod").ZodString;
5967
+ }, import("zod/v4/core").$strip>;
5968
+ /** @deprecated Renamed to WorkspaceSettingsSchema. */
5969
+ declare const V1WorkspaceSettingsBodySchema: import("zod").ZodObject<{
5970
+ billing_period_end_date: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5971
+ billing_period_start_date: import("zod").ZodOptional<import("zod").ZodISODateTime>;
5972
+ default_monthly_member_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
5973
+ default_project_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
5974
+ public: "public";
5975
+ private: "private";
5976
+ draft: "draft";
5977
+ workspace_view: "workspace_view";
5978
+ }>>;
5979
+ enable_pii: import("zod").ZodBoolean;
5980
+ enforce_sso: import("zod").ZodBoolean;
5981
+ id: import("zod").ZodString;
5982
+ name: import("zod").ZodString;
5983
+ num_seats: import("zod").ZodOptional<import("zod").ZodNumber>;
5984
+ plan: import("zod").ZodEnum<{
5985
+ free: "free";
5986
+ pro: "pro";
5987
+ business: "business";
5988
+ enterprise: "enterprise";
5989
+ }>;
5990
+ publishing_policy: import("zod").ZodOptional<import("zod").ZodEnum<{
5991
+ workspace_only: "workspace_only";
5992
+ org_only: "org_only";
5993
+ disabled: "disabled";
5994
+ }>>;
5995
+ }, import("zod/v4/core").$strip>;
5996
+ /** @deprecated Renamed to ConnectorUsageSchema. */
5997
+ declare const V1WorkspaceUsageConnectorBreakdownSchema: import("zod").ZodObject<{
5998
+ credits: import("zod").ZodNumber;
5999
+ key: import("zod").ZodString;
6000
+ label: import("zod").ZodString;
6001
+ }, import("zod/v4/core").$strip>;
6002
+ /** @deprecated Renamed to DatabaseUsageSchema. */
6003
+ declare const V1WorkspaceUsageDatabaseBreakdownSchema: import("zod").ZodObject<{
6004
+ credits: import("zod").ZodNumber;
6005
+ key: import("zod").ZodEnum<{
6006
+ database_server: "database_server";
6007
+ database_storage: "database_storage";
6008
+ }>;
6009
+ label: import("zod").ZodString;
6010
+ }, import("zod/v4/core").$strip>;
6011
+ /** @deprecated Renamed to GatewayModelUsageSchema. */
6012
+ declare const V1WorkspaceUsageGatewayModelSchema: import("zod").ZodObject<{
6013
+ credits: import("zod").ZodNumber;
6014
+ name: import("zod").ZodString;
6015
+ provider: import("zod").ZodString;
6016
+ }, import("zod/v4/core").$strip>;
6017
+ /** @deprecated Renamed to WorkspaceAnalyticsSchema. */
6018
+ declare const WorkspaceAnalyticsResponseSchema: import("zod").ZodObject<{
6019
+ timeSeries: import("zod").ZodObject<{
6020
+ bounceRate: import("zod").ZodObject<{
6021
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
6022
+ date: import("zod").ZodString;
6023
+ value: import("zod").ZodNumber;
6024
+ }, import("zod/v4/core").$strip>>>;
6025
+ label: import("zod").ZodString;
6026
+ total: import("zod").ZodNumber;
6027
+ }, import("zod/v4/core").$strip>;
6028
+ pageviews: import("zod").ZodObject<{
6029
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
6030
+ date: import("zod").ZodString;
6031
+ value: import("zod").ZodNumber;
6032
+ }, import("zod/v4/core").$strip>>>;
6033
+ label: import("zod").ZodString;
6034
+ total: import("zod").ZodNumber;
6035
+ }, import("zod/v4/core").$strip>;
6036
+ pageviewsPerVisit: import("zod").ZodObject<{
6037
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
6038
+ date: import("zod").ZodString;
6039
+ value: import("zod").ZodNumber;
6040
+ }, import("zod/v4/core").$strip>>>;
6041
+ label: import("zod").ZodString;
6042
+ total: import("zod").ZodNumber;
6043
+ }, import("zod/v4/core").$strip>;
6044
+ sessionDuration: import("zod").ZodObject<{
6045
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
6046
+ date: import("zod").ZodString;
6047
+ value: import("zod").ZodNumber;
6048
+ }, import("zod/v4/core").$strip>>>;
6049
+ label: import("zod").ZodString;
6050
+ total: import("zod").ZodNumber;
6051
+ }, import("zod/v4/core").$strip>;
6052
+ visitors: import("zod").ZodObject<{
6053
+ data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
6054
+ date: import("zod").ZodString;
6055
+ value: import("zod").ZodNumber;
6056
+ }, import("zod/v4/core").$strip>>>;
6057
+ label: import("zod").ZodString;
6058
+ total: import("zod").ZodNumber;
6059
+ }, import("zod/v4/core").$strip>;
6060
+ }, import("zod/v4/core").$strip>;
6061
+ }, import("zod/v4/core").$strip>;
6062
+ //#endregion
3410
6063
  //#region src/schemas.d.ts
3411
- /** @deprecated Renamed to CursorListResponsePublicV1ProjectListItemSchema. */
6064
+ /** @deprecated Renamed to ProjectSummaryPageSchema. */
3412
6065
  declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
3413
6066
  data: z.ZodNullable<z.ZodArray<z.ZodObject<{
3414
6067
  created_at: z.ZodOptional<z.ZodISODateTime>;
@@ -3422,14 +6075,30 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
3422
6075
  latest_screenshot_url: z.ZodOptional<z.ZodString>;
3423
6076
  name: z.ZodOptional<z.ZodString>;
3424
6077
  og_image_url: z.ZodOptional<z.ZodString>;
3425
- project_type: z.ZodOptional<z.ZodString>;
3426
- publish_visibility: z.ZodOptional<z.ZodString>;
3427
- status: z.ZodOptional<z.ZodString>;
6078
+ project_type: z.ZodOptional<z.ZodEnum<{
6079
+ project: "project";
6080
+ library: "library";
6081
+ }>>;
6082
+ publish_visibility: z.ZodOptional<z.ZodEnum<{
6083
+ public: "public";
6084
+ private: "private";
6085
+ workspace_only: "workspace_only";
6086
+ }>>;
6087
+ status: z.ZodOptional<z.ZodEnum<{
6088
+ in_progress: "in_progress";
6089
+ completed: "completed";
6090
+ failed: "failed";
6091
+ }>>;
3428
6092
  tech_stack: z.ZodOptional<z.ZodString>;
3429
6093
  updated_at: z.ZodOptional<z.ZodISODateTime>;
3430
6094
  url: z.ZodOptional<z.ZodString>;
3431
6095
  user_id: z.ZodOptional<z.ZodString>;
3432
- visibility: z.ZodOptional<z.ZodString>;
6096
+ visibility: z.ZodOptional<z.ZodEnum<{
6097
+ public: "public";
6098
+ private: "private";
6099
+ draft: "draft";
6100
+ workspace_view: "workspace_view";
6101
+ }>>;
3433
6102
  workspace_id: z.ZodString;
3434
6103
  }, z.core.$strip>>>;
3435
6104
  pagination: z.ZodObject<{
@@ -3437,11 +6106,17 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
3437
6106
  next_cursor: z.ZodNullable<z.ZodString>;
3438
6107
  }, z.core.$strip>;
3439
6108
  }, z.core.$strip>;
3440
- /** @deprecated Renamed to PublicV1GetWorkspaceBodySchema. */
6109
+ /** @deprecated Renamed to GetWorkspaceResponseSchema. */
3441
6110
  declare const GetUserWorkspaceBodySchema: z.ZodObject<{
3442
6111
  current_member: z.ZodOptional<z.ZodObject<{
3443
6112
  joined_at: z.ZodOptional<z.ZodISODateTime>;
3444
- role: z.ZodString;
6113
+ role: z.ZodEnum<{
6114
+ owner: "owner";
6115
+ admin: "admin";
6116
+ member: "member";
6117
+ viewer: "viewer";
6118
+ collaborator: "collaborator";
6119
+ }>;
3445
6120
  user_id: z.ZodString;
3446
6121
  }, z.core.$strip>>;
3447
6122
  workspace: z.ZodObject<{
@@ -3451,49 +6126,27 @@ declare const GetUserWorkspaceBodySchema: z.ZodObject<{
3451
6126
  image_url: z.ZodOptional<z.ZodString>;
3452
6127
  name: z.ZodString;
3453
6128
  num_projects: z.ZodNumber;
3454
- plan: z.ZodString;
6129
+ plan: z.ZodEnum<{
6130
+ free: "free";
6131
+ pro: "pro";
6132
+ business: "business";
6133
+ enterprise: "enterprise";
6134
+ }>;
3455
6135
  updated_at: z.ZodOptional<z.ZodISODateTime>;
3456
6136
  }, z.core.$strip>;
3457
6137
  }, z.core.$strip>;
3458
- /** @deprecated Renamed to PublicV1WorkspaceSchema. */
3459
- declare const WorkspaceSchema: z.ZodObject<{
3460
- created_at: z.ZodOptional<z.ZodISODateTime>;
3461
- description: z.ZodOptional<z.ZodString>;
3462
- id: z.ZodString;
3463
- image_url: z.ZodOptional<z.ZodString>;
3464
- name: z.ZodString;
3465
- num_projects: z.ZodNumber;
3466
- plan: z.ZodString;
3467
- updated_at: z.ZodOptional<z.ZodISODateTime>;
3468
- }, z.core.$strip>;
3469
- /** @deprecated Renamed to PublicV1WorkspaceMemberSchema. */
6138
+ /** @deprecated Renamed to WorkspaceMembershipSchema. */
3470
6139
  declare const WorkspaceMembershipResponseSchema: z.ZodObject<{
3471
6140
  joined_at: z.ZodOptional<z.ZodISODateTime>;
3472
- role: z.ZodString;
3473
- user_id: z.ZodString;
3474
- }, z.core.$strip>;
3475
- /** @deprecated Renamed to PublicV1WorkspaceMemberSchema. */
3476
- declare const WorkspaceMembershipSchema: z.ZodObject<{
3477
- joined_at: z.ZodOptional<z.ZodISODateTime>;
3478
- role: z.ZodString;
6141
+ role: z.ZodEnum<{
6142
+ owner: "owner";
6143
+ admin: "admin";
6144
+ member: "member";
6145
+ viewer: "viewer";
6146
+ collaborator: "collaborator";
6147
+ }>;
3479
6148
  user_id: z.ZodString;
3480
6149
  }, z.core.$strip>;
3481
- /** @deprecated Renamed to PublicV1WorkspaceWithMembershipSchema. */
3482
- declare const WorkspaceWithMembershipSchema: z.ZodObject<{
3483
- created_at: z.ZodOptional<z.ZodISODateTime>;
3484
- description: z.ZodOptional<z.ZodString>;
3485
- id: z.ZodString;
3486
- image_url: z.ZodOptional<z.ZodString>;
3487
- membership: z.ZodOptional<z.ZodObject<{
3488
- joined_at: z.ZodOptional<z.ZodISODateTime>;
3489
- role: z.ZodString;
3490
- user_id: z.ZodString;
3491
- }, z.core.$strip>>;
3492
- name: z.ZodString;
3493
- num_projects: z.ZodNumber;
3494
- plan: z.ZodString;
3495
- updated_at: z.ZodOptional<z.ZodISODateTime>;
3496
- }, z.core.$strip>;
3497
6150
  declare const V1DatabaseQueryOutputBodySchema: z.ZodObject<{
3498
6151
  rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3499
6152
  }, z.core.$strip>;
@@ -3501,5 +6154,5 @@ declare const V1DatabaseQueryOutputBodyWritableSchema: z.ZodObject<{
3501
6154
  rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3502
6155
  }, z.core.$strip>;
3503
6156
  //#endregion
3504
- export { AddProjectsToFolderResultSchema, AppUserConnectorApiSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, CreatorSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceGroupSchema, 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, PublicV1RemixJobOutputBodySchema, 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, 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, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspaceSchema, WorkspaceWithMembershipSchema };
6157
+ 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 };
3505
6158
  //# sourceMappingURL=schemas.d.ts.map