@lovable.dev/sdk 1.7.5 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +162 -311
- package/dist/index.d.ts +950 -929
- package/dist/index.js +5 -17
- package/dist/index.js.map +1 -1
- package/dist/schemas.d.ts +2695 -292
- package/dist/schemas.js +668 -194
- package/dist/schemas.js.map +1 -1
- package/package.json +2 -1
- package/src/client.ts +4 -16
- package/src/generated/paths.ts +929 -898
- package/src/generated/version.ts +1 -1
- package/src/generated/zod/zod.gen.ts +529 -189
- package/src/index.ts +1 -0
- package/src/schemas-deprecated.ts +209 -0
- package/src/schemas.ts +11 -17
- package/src/types.ts +17 -15
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
|
|
56
|
+
declare const CurrentUserWorkspaceSchema: z$1.ZodObject<{
|
|
57
57
|
id: z$1.ZodString;
|
|
58
58
|
name: z$1.ZodString;
|
|
59
|
-
role: z$1.
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
186
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
203
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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,89 @@ 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
|
|
348
|
+
declare const PiiLabelSchema: z$1.ZodObject<{
|
|
349
|
+
chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
|
|
350
|
+
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
351
|
+
found_at: z$1.ZodISODateTime;
|
|
352
|
+
id: z$1.ZodString;
|
|
353
|
+
info_type: z$1.ZodOptional<z$1.ZodString>;
|
|
354
|
+
likelihood: z$1.ZodOptional<z$1.ZodEnum<{
|
|
355
|
+
likelihood_unspecified: "likelihood_unspecified";
|
|
356
|
+
very_unlikely: "very_unlikely";
|
|
357
|
+
unlikely: "unlikely";
|
|
358
|
+
possible: "possible";
|
|
359
|
+
likely: "likely";
|
|
360
|
+
very_likely: "very_likely";
|
|
361
|
+
}>>;
|
|
362
|
+
quote: z$1.ZodOptional<z$1.ZodString>;
|
|
363
|
+
sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
|
|
364
|
+
low: "low";
|
|
365
|
+
mid: "mid";
|
|
366
|
+
high: "high";
|
|
367
|
+
}>>;
|
|
368
|
+
source: z$1.ZodEnum<{
|
|
369
|
+
chat: "chat";
|
|
370
|
+
upload: "upload";
|
|
371
|
+
cloud_storage: "cloud_storage";
|
|
372
|
+
cloud_sql: "cloud_sql";
|
|
373
|
+
connector: "connector";
|
|
374
|
+
}>;
|
|
375
|
+
sql_location: z$1.ZodOptional<z$1.ZodString>;
|
|
376
|
+
status: z$1.ZodEnum<{
|
|
377
|
+
open: "open";
|
|
378
|
+
ignored: "ignored";
|
|
379
|
+
fixed: "fixed";
|
|
380
|
+
}>;
|
|
381
|
+
storage_path: z$1.ZodOptional<z$1.ZodString>;
|
|
382
|
+
}, z$1.core.$strip>;
|
|
383
|
+
declare const PiiLabelPageSchema: z$1.ZodObject<{
|
|
384
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
385
|
+
chat_upload_id: z$1.ZodOptional<z$1.ZodString>;
|
|
386
|
+
connector_id: z$1.ZodOptional<z$1.ZodString>;
|
|
387
|
+
found_at: z$1.ZodISODateTime;
|
|
388
|
+
id: z$1.ZodString;
|
|
389
|
+
info_type: z$1.ZodOptional<z$1.ZodString>;
|
|
390
|
+
likelihood: z$1.ZodOptional<z$1.ZodEnum<{
|
|
391
|
+
likelihood_unspecified: "likelihood_unspecified";
|
|
392
|
+
very_unlikely: "very_unlikely";
|
|
393
|
+
unlikely: "unlikely";
|
|
394
|
+
possible: "possible";
|
|
395
|
+
likely: "likely";
|
|
396
|
+
very_likely: "very_likely";
|
|
397
|
+
}>>;
|
|
398
|
+
quote: z$1.ZodOptional<z$1.ZodString>;
|
|
399
|
+
sensitivity: z$1.ZodOptional<z$1.ZodEnum<{
|
|
400
|
+
low: "low";
|
|
401
|
+
mid: "mid";
|
|
402
|
+
high: "high";
|
|
403
|
+
}>>;
|
|
404
|
+
source: z$1.ZodEnum<{
|
|
405
|
+
chat: "chat";
|
|
406
|
+
upload: "upload";
|
|
407
|
+
cloud_storage: "cloud_storage";
|
|
408
|
+
cloud_sql: "cloud_sql";
|
|
409
|
+
connector: "connector";
|
|
410
|
+
}>;
|
|
411
|
+
sql_location: z$1.ZodOptional<z$1.ZodString>;
|
|
412
|
+
status: z$1.ZodEnum<{
|
|
413
|
+
open: "open";
|
|
414
|
+
ignored: "ignored";
|
|
415
|
+
fixed: "fixed";
|
|
416
|
+
}>;
|
|
417
|
+
storage_path: z$1.ZodOptional<z$1.ZodString>;
|
|
418
|
+
}, z$1.core.$strip>>>;
|
|
419
|
+
pagination: z$1.ZodObject<{
|
|
420
|
+
has_more: z$1.ZodBoolean;
|
|
421
|
+
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
422
|
+
}, z$1.core.$strip>;
|
|
423
|
+
}, z$1.core.$strip>;
|
|
424
|
+
declare const UpdateProjectRequestSchema: z$1.ZodObject<{
|
|
286
425
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
287
426
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
288
427
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
289
|
-
draft: "draft";
|
|
290
|
-
private: "private";
|
|
291
428
|
public: "public";
|
|
429
|
+
private: "private";
|
|
430
|
+
draft: "draft";
|
|
292
431
|
workspace_view: "workspace_view";
|
|
293
432
|
}>>;
|
|
294
433
|
}, z$1.core.$strip>;
|
|
@@ -296,7 +435,7 @@ declare const PublicV1ProjectFileUploadUrlInputBodySchema: z$1.ZodObject<{
|
|
|
296
435
|
content_type: z$1.ZodOptional<z$1.ZodString>;
|
|
297
436
|
project_id: z$1.ZodString;
|
|
298
437
|
}, z$1.core.$strip>;
|
|
299
|
-
declare const
|
|
438
|
+
declare const ProjectSummarySchema: z$1.ZodObject<{
|
|
300
439
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
301
440
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
302
441
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -308,17 +447,31 @@ declare const PublicV1ProjectListItemSchema: z$1.ZodObject<{
|
|
|
308
447
|
latest_screenshot_url: z$1.ZodOptional<z$1.ZodString>;
|
|
309
448
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
310
449
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
311
|
-
project_type: z$1.ZodOptional<z$1.
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
450
|
+
project_type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
451
|
+
project: "project";
|
|
452
|
+
library: "library";
|
|
453
|
+
}>>;
|
|
454
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
455
|
+
public: "public";
|
|
456
|
+
private: "private";
|
|
457
|
+
workspace_only: "workspace_only";
|
|
458
|
+
}>>;
|
|
459
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
460
|
+
in_progress: "in_progress";
|
|
461
|
+
completed: "completed";
|
|
462
|
+
failed: "failed";
|
|
463
|
+
}>>;
|
|
316
464
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
317
465
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
318
|
-
visibility: z$1.ZodOptional<z$1.
|
|
466
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
467
|
+
public: "public";
|
|
468
|
+
private: "private";
|
|
469
|
+
draft: "draft";
|
|
470
|
+
workspace_view: "workspace_view";
|
|
471
|
+
}>>;
|
|
319
472
|
workspace_id: z$1.ZodString;
|
|
320
473
|
}, z$1.core.$strip>;
|
|
321
|
-
declare const
|
|
474
|
+
declare const ProjectSummaryPageSchema: z$1.ZodObject<{
|
|
322
475
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
323
476
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
324
477
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -331,14 +484,28 @@ declare const CursorListResponsePublicV1ProjectListItemSchema: z$1.ZodObject<{
|
|
|
331
484
|
latest_screenshot_url: z$1.ZodOptional<z$1.ZodString>;
|
|
332
485
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
333
486
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
334
|
-
project_type: z$1.ZodOptional<z$1.
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
487
|
+
project_type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
488
|
+
project: "project";
|
|
489
|
+
library: "library";
|
|
490
|
+
}>>;
|
|
491
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
492
|
+
public: "public";
|
|
493
|
+
private: "private";
|
|
494
|
+
workspace_only: "workspace_only";
|
|
495
|
+
}>>;
|
|
496
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
497
|
+
in_progress: "in_progress";
|
|
498
|
+
completed: "completed";
|
|
499
|
+
failed: "failed";
|
|
500
|
+
}>>;
|
|
339
501
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
340
502
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
341
|
-
visibility: z$1.ZodOptional<z$1.
|
|
503
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
504
|
+
public: "public";
|
|
505
|
+
private: "private";
|
|
506
|
+
draft: "draft";
|
|
507
|
+
workspace_view: "workspace_view";
|
|
508
|
+
}>>;
|
|
342
509
|
workspace_id: z$1.ZodString;
|
|
343
510
|
}, z$1.core.$strip>>>;
|
|
344
511
|
pagination: z$1.ZodObject<{
|
|
@@ -363,14 +530,14 @@ declare const PublicV1ProjectRemixInputBodySchema: z$1.ZodObject<{
|
|
|
363
530
|
source_project_id: z$1.ZodString;
|
|
364
531
|
workspace_id: z$1.ZodString;
|
|
365
532
|
}, z$1.core.$strip>;
|
|
366
|
-
declare const
|
|
533
|
+
declare const PublishAudienceTargetSchema: z$1.ZodObject<{
|
|
367
534
|
id: z$1.ZodString;
|
|
368
535
|
type: z$1.ZodEnum<{
|
|
369
536
|
group: "group";
|
|
370
537
|
user: "user";
|
|
371
538
|
}>;
|
|
372
539
|
}, z$1.core.$strip>;
|
|
373
|
-
declare const
|
|
540
|
+
declare const PublishProjectRequestSchema: z$1.ZodObject<{
|
|
374
541
|
audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
375
542
|
id: z$1.ZodString;
|
|
376
543
|
type: z$1.ZodEnum<{
|
|
@@ -380,30 +547,127 @@ declare const PublicV1PublishProjectInputBodySchema: z$1.ZodObject<{
|
|
|
380
547
|
}, z$1.core.$strip>>>>;
|
|
381
548
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
382
549
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
550
|
+
public: "public";
|
|
383
551
|
custom: "custom";
|
|
384
552
|
workspace: "workspace";
|
|
385
|
-
public: "public";
|
|
386
553
|
}>>;
|
|
387
554
|
}, z$1.core.$strip>;
|
|
388
|
-
declare const
|
|
555
|
+
declare const PublishProjectResponseSchema: z$1.ZodObject<{
|
|
389
556
|
deployment_id: z$1.ZodOptional<z$1.ZodString>;
|
|
390
|
-
status: z$1.
|
|
557
|
+
status: z$1.ZodEnum<{
|
|
558
|
+
pending: "pending";
|
|
559
|
+
}>;
|
|
391
560
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
392
|
-
visibility: z$1.
|
|
561
|
+
visibility: z$1.ZodEnum<{
|
|
562
|
+
public: "public";
|
|
563
|
+
custom: "custom";
|
|
564
|
+
workspace: "workspace";
|
|
565
|
+
}>;
|
|
393
566
|
}, z$1.core.$strip>;
|
|
394
|
-
declare const
|
|
567
|
+
declare const DeploymentSchema: z$1.ZodObject<{
|
|
395
568
|
deployment_id: z$1.ZodString;
|
|
396
|
-
error_class: z$1.ZodOptional<z$1.
|
|
569
|
+
error_class: z$1.ZodOptional<z$1.ZodEnum<{
|
|
570
|
+
transient: "transient";
|
|
571
|
+
user_code: "user_code";
|
|
572
|
+
user_config: "user_config";
|
|
573
|
+
user_config_code: "user_config_code";
|
|
574
|
+
user_config_external: "user_config_external";
|
|
575
|
+
user_data: "user_data";
|
|
576
|
+
blocked_by_policy: "blocked_by_policy";
|
|
577
|
+
internal: "internal";
|
|
578
|
+
}>>;
|
|
397
579
|
error_code: z$1.ZodOptional<z$1.ZodString>;
|
|
398
580
|
error_message: z$1.ZodOptional<z$1.ZodString>;
|
|
399
581
|
status: z$1.ZodEnum<{
|
|
582
|
+
completed: "completed";
|
|
400
583
|
unknown: "unknown";
|
|
401
584
|
error: "error";
|
|
402
585
|
running: "running";
|
|
403
|
-
completed: "completed";
|
|
404
586
|
}>;
|
|
405
587
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
406
588
|
}, z$1.core.$strip>;
|
|
589
|
+
declare const SecurityFindingSchema: z$1.ZodObject<{
|
|
590
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
591
|
+
created_at: z$1.ZodISODateTime;
|
|
592
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
593
|
+
finding_id: z$1.ZodString;
|
|
594
|
+
level: z$1.ZodEnum<{
|
|
595
|
+
error: "error";
|
|
596
|
+
warn: "warn";
|
|
597
|
+
info: "info";
|
|
598
|
+
}>;
|
|
599
|
+
name: z$1.ZodString;
|
|
600
|
+
scanner_name: z$1.ZodString;
|
|
601
|
+
status: z$1.ZodEnum<{
|
|
602
|
+
open: "open";
|
|
603
|
+
ignored: "ignored";
|
|
604
|
+
fixed: "fixed";
|
|
605
|
+
}>;
|
|
606
|
+
updated_at: z$1.ZodISODateTime;
|
|
607
|
+
}, z$1.core.$strip>;
|
|
608
|
+
declare const SecurityScanSchema: z$1.ZodObject<{
|
|
609
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
610
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
611
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
612
|
+
scan_id: z$1.ZodString;
|
|
613
|
+
started_at: z$1.ZodISODateTime;
|
|
614
|
+
status: z$1.ZodEnum<{
|
|
615
|
+
completed: "completed";
|
|
616
|
+
failed: "failed";
|
|
617
|
+
running: "running";
|
|
618
|
+
}>;
|
|
619
|
+
}, z$1.core.$strip>;
|
|
620
|
+
declare const SecurityScanPageSchema: z$1.ZodObject<{
|
|
621
|
+
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
622
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
623
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
624
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
625
|
+
scan_id: z$1.ZodString;
|
|
626
|
+
started_at: z$1.ZodISODateTime;
|
|
627
|
+
status: z$1.ZodEnum<{
|
|
628
|
+
completed: "completed";
|
|
629
|
+
failed: "failed";
|
|
630
|
+
running: "running";
|
|
631
|
+
}>;
|
|
632
|
+
}, z$1.core.$strip>>>;
|
|
633
|
+
pagination: z$1.ZodObject<{
|
|
634
|
+
has_more: z$1.ZodBoolean;
|
|
635
|
+
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
636
|
+
}, z$1.core.$strip>;
|
|
637
|
+
}, z$1.core.$strip>;
|
|
638
|
+
declare const SecurityScanDetailSchema: z$1.ZodObject<{
|
|
639
|
+
findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
640
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
641
|
+
created_at: z$1.ZodISODateTime;
|
|
642
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
643
|
+
finding_id: z$1.ZodString;
|
|
644
|
+
level: z$1.ZodEnum<{
|
|
645
|
+
error: "error";
|
|
646
|
+
warn: "warn";
|
|
647
|
+
info: "info";
|
|
648
|
+
}>;
|
|
649
|
+
name: z$1.ZodString;
|
|
650
|
+
scanner_name: z$1.ZodString;
|
|
651
|
+
status: z$1.ZodEnum<{
|
|
652
|
+
open: "open";
|
|
653
|
+
ignored: "ignored";
|
|
654
|
+
fixed: "fixed";
|
|
655
|
+
}>;
|
|
656
|
+
updated_at: z$1.ZodISODateTime;
|
|
657
|
+
}, z$1.core.$strip>>>;
|
|
658
|
+
scan: z$1.ZodObject<{
|
|
659
|
+
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
660
|
+
finished_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
661
|
+
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
662
|
+
scan_id: z$1.ZodString;
|
|
663
|
+
started_at: z$1.ZodISODateTime;
|
|
664
|
+
status: z$1.ZodEnum<{
|
|
665
|
+
completed: "completed";
|
|
666
|
+
failed: "failed";
|
|
667
|
+
running: "running";
|
|
668
|
+
}>;
|
|
669
|
+
}, z$1.core.$strip>;
|
|
670
|
+
}, z$1.core.$strip>;
|
|
407
671
|
declare const PublicV1SetProjectKnowledgeInputBodySchema: z$1.ZodObject<{
|
|
408
672
|
content: z$1.ZodString;
|
|
409
673
|
project_id: z$1.ZodString;
|
|
@@ -412,7 +676,7 @@ declare const PublicV1SetProjectSkillEnabledInputBodySchema: z$1.ZodObject<{
|
|
|
412
676
|
enabled: z$1.ZodBoolean;
|
|
413
677
|
project_id: z$1.ZodString;
|
|
414
678
|
}, z$1.core.$strip>;
|
|
415
|
-
declare const
|
|
679
|
+
declare const UpdatePublishSettingsRequestSchema: z$1.ZodObject<{
|
|
416
680
|
audience: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
417
681
|
id: z$1.ZodString;
|
|
418
682
|
type: z$1.ZodEnum<{
|
|
@@ -422,35 +686,56 @@ declare const PublicV1UpdatePublishSettingsInputBodySchema: z$1.ZodObject<{
|
|
|
422
686
|
}, z$1.core.$strip>>>>;
|
|
423
687
|
is_published: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
424
688
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
689
|
+
public: "public";
|
|
425
690
|
custom: "custom";
|
|
426
691
|
workspace: "workspace";
|
|
427
|
-
public: "public";
|
|
428
692
|
}>>;
|
|
429
693
|
}, z$1.core.$strip>;
|
|
430
|
-
declare const
|
|
694
|
+
declare const PublishSettingsSchema: z$1.ZodObject<{
|
|
431
695
|
is_published: z$1.ZodBoolean;
|
|
432
696
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
433
|
-
visibility: z$1.
|
|
697
|
+
visibility: z$1.ZodEnum<{
|
|
698
|
+
public: "public";
|
|
699
|
+
custom: "custom";
|
|
700
|
+
workspace: "workspace";
|
|
701
|
+
}>;
|
|
434
702
|
}, z$1.core.$strip>;
|
|
435
|
-
declare const
|
|
703
|
+
declare const WorkspaceSchema: z$1.ZodObject<{
|
|
436
704
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
437
705
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
438
706
|
id: z$1.ZodString;
|
|
439
707
|
image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
440
708
|
name: z$1.ZodString;
|
|
441
709
|
num_projects: z$1.ZodNumber;
|
|
442
|
-
plan: z$1.
|
|
710
|
+
plan: z$1.ZodEnum<{
|
|
711
|
+
free: "free";
|
|
712
|
+
pro: "pro";
|
|
713
|
+
business: "business";
|
|
714
|
+
enterprise: "enterprise";
|
|
715
|
+
}>;
|
|
443
716
|
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
444
717
|
}, z$1.core.$strip>;
|
|
445
|
-
declare const
|
|
718
|
+
declare const WorkspaceMembershipSchema: z$1.ZodObject<{
|
|
446
719
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
447
|
-
role: z$1.
|
|
720
|
+
role: z$1.ZodEnum<{
|
|
721
|
+
owner: "owner";
|
|
722
|
+
admin: "admin";
|
|
723
|
+
member: "member";
|
|
724
|
+
viewer: "viewer";
|
|
725
|
+
collaborator: "collaborator";
|
|
726
|
+
}>;
|
|
448
727
|
user_id: z$1.ZodString;
|
|
449
728
|
}, z$1.core.$strip>;
|
|
450
|
-
declare const
|
|
729
|
+
declare const GetWorkspaceResponseSchema: z$1.ZodObject<{
|
|
451
730
|
current_member: z$1.ZodOptional<z$1.ZodObject<{
|
|
452
731
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
453
|
-
role: z$1.
|
|
732
|
+
role: z$1.ZodEnum<{
|
|
733
|
+
owner: "owner";
|
|
734
|
+
admin: "admin";
|
|
735
|
+
member: "member";
|
|
736
|
+
viewer: "viewer";
|
|
737
|
+
collaborator: "collaborator";
|
|
738
|
+
}>;
|
|
454
739
|
user_id: z$1.ZodString;
|
|
455
740
|
}, z$1.core.$strip>>;
|
|
456
741
|
workspace: z$1.ZodObject<{
|
|
@@ -460,39 +745,88 @@ declare const PublicV1GetWorkspaceBodySchema: z$1.ZodObject<{
|
|
|
460
745
|
image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
461
746
|
name: z$1.ZodString;
|
|
462
747
|
num_projects: z$1.ZodNumber;
|
|
463
|
-
plan: z$1.
|
|
748
|
+
plan: z$1.ZodEnum<{
|
|
749
|
+
free: "free";
|
|
750
|
+
pro: "pro";
|
|
751
|
+
business: "business";
|
|
752
|
+
enterprise: "enterprise";
|
|
753
|
+
}>;
|
|
464
754
|
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
465
755
|
}, z$1.core.$strip>;
|
|
466
756
|
}, z$1.core.$strip>;
|
|
467
|
-
declare const
|
|
757
|
+
declare const WorkspaceWithMembershipSchema: z$1.ZodObject<{
|
|
468
758
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
469
759
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
470
760
|
id: z$1.ZodString;
|
|
471
761
|
image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
472
762
|
membership: z$1.ZodOptional<z$1.ZodObject<{
|
|
473
763
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
474
|
-
role: z$1.
|
|
764
|
+
role: z$1.ZodEnum<{
|
|
765
|
+
owner: "owner";
|
|
766
|
+
admin: "admin";
|
|
767
|
+
member: "member";
|
|
768
|
+
viewer: "viewer";
|
|
769
|
+
collaborator: "collaborator";
|
|
770
|
+
}>;
|
|
475
771
|
user_id: z$1.ZodString;
|
|
476
772
|
}, z$1.core.$strip>>;
|
|
477
773
|
name: z$1.ZodString;
|
|
478
774
|
num_projects: z$1.ZodNumber;
|
|
479
|
-
plan: z$1.
|
|
775
|
+
plan: z$1.ZodEnum<{
|
|
776
|
+
free: "free";
|
|
777
|
+
pro: "pro";
|
|
778
|
+
business: "business";
|
|
779
|
+
enterprise: "enterprise";
|
|
780
|
+
}>;
|
|
480
781
|
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
481
782
|
}, z$1.core.$strip>;
|
|
482
783
|
declare const RemixJobFailureSchema: z$1.ZodObject<{
|
|
483
784
|
code: z$1.ZodOptional<z$1.ZodString>;
|
|
484
|
-
failed_step: z$1.
|
|
785
|
+
failed_step: z$1.ZodEnum<{
|
|
786
|
+
completed: "completed";
|
|
787
|
+
failed: "failed";
|
|
788
|
+
starting: "starting";
|
|
789
|
+
creating_new_project: "creating_new_project";
|
|
790
|
+
restoring_supabase: "restoring_supabase";
|
|
791
|
+
copying_history: "copying_history";
|
|
792
|
+
preparing_repository: "preparing_repository";
|
|
793
|
+
remixing_integration: "remixing_integration";
|
|
794
|
+
pushing_repository: "pushing_repository";
|
|
795
|
+
finalizing: "finalizing";
|
|
796
|
+
}>;
|
|
485
797
|
message: z$1.ZodString;
|
|
486
798
|
}, z$1.core.$strip>;
|
|
487
799
|
declare const RemixJobStepInfoSchema: z$1.ZodObject<{
|
|
488
800
|
failure: z$1.ZodOptional<z$1.ZodObject<{
|
|
489
801
|
code: z$1.ZodOptional<z$1.ZodString>;
|
|
490
|
-
failed_step: z$1.
|
|
802
|
+
failed_step: z$1.ZodEnum<{
|
|
803
|
+
completed: "completed";
|
|
804
|
+
failed: "failed";
|
|
805
|
+
starting: "starting";
|
|
806
|
+
creating_new_project: "creating_new_project";
|
|
807
|
+
restoring_supabase: "restoring_supabase";
|
|
808
|
+
copying_history: "copying_history";
|
|
809
|
+
preparing_repository: "preparing_repository";
|
|
810
|
+
remixing_integration: "remixing_integration";
|
|
811
|
+
pushing_repository: "pushing_repository";
|
|
812
|
+
finalizing: "finalizing";
|
|
813
|
+
}>;
|
|
491
814
|
message: z$1.ZodString;
|
|
492
815
|
}, z$1.core.$strip>>;
|
|
493
816
|
integration_name: z$1.ZodOptional<z$1.ZodString>;
|
|
494
817
|
status: z$1.ZodOptional<z$1.ZodString>;
|
|
495
|
-
step: z$1.
|
|
818
|
+
step: z$1.ZodEnum<{
|
|
819
|
+
completed: "completed";
|
|
820
|
+
failed: "failed";
|
|
821
|
+
starting: "starting";
|
|
822
|
+
creating_new_project: "creating_new_project";
|
|
823
|
+
restoring_supabase: "restoring_supabase";
|
|
824
|
+
copying_history: "copying_history";
|
|
825
|
+
preparing_repository: "preparing_repository";
|
|
826
|
+
remixing_integration: "remixing_integration";
|
|
827
|
+
pushing_repository: "pushing_repository";
|
|
828
|
+
finalizing: "finalizing";
|
|
829
|
+
}>;
|
|
496
830
|
}, z$1.core.$strip>;
|
|
497
831
|
declare const RemixWarningSchema: z$1.ZodObject<{
|
|
498
832
|
code: z$1.ZodEnum<{
|
|
@@ -540,8 +874,8 @@ declare const SearchProjectItemSchema: z$1.ZodObject<{
|
|
|
540
874
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
541
875
|
project_type: z$1.ZodOptional<z$1.ZodString>;
|
|
542
876
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
543
|
-
private: "private";
|
|
544
877
|
public: "public";
|
|
878
|
+
private: "private";
|
|
545
879
|
}>>;
|
|
546
880
|
reasons: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
547
881
|
remix_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -560,9 +894,9 @@ declare const SearchProjectItemSchema: z$1.ZodObject<{
|
|
|
560
894
|
user_id: z$1.ZodString;
|
|
561
895
|
user_photo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
562
896
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
563
|
-
draft: "draft";
|
|
564
|
-
private: "private";
|
|
565
897
|
public: "public";
|
|
898
|
+
private: "private";
|
|
899
|
+
draft: "draft";
|
|
566
900
|
workspace_view: "workspace_view";
|
|
567
901
|
}>>;
|
|
568
902
|
workspace_id: z$1.ZodString;
|
|
@@ -606,8 +940,8 @@ declare const SearchWorkspaceProjectsResponseSchema: z$1.ZodObject<{
|
|
|
606
940
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
607
941
|
project_type: z$1.ZodOptional<z$1.ZodString>;
|
|
608
942
|
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
609
|
-
private: "private";
|
|
610
943
|
public: "public";
|
|
944
|
+
private: "private";
|
|
611
945
|
}>>;
|
|
612
946
|
reasons: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
613
947
|
remix_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -626,13 +960,14 @@ declare const SearchWorkspaceProjectsResponseSchema: z$1.ZodObject<{
|
|
|
626
960
|
user_id: z$1.ZodString;
|
|
627
961
|
user_photo_url: z$1.ZodOptional<z$1.ZodString>;
|
|
628
962
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
629
|
-
draft: "draft";
|
|
630
|
-
private: "private";
|
|
631
963
|
public: "public";
|
|
964
|
+
private: "private";
|
|
965
|
+
draft: "draft";
|
|
632
966
|
workspace_view: "workspace_view";
|
|
633
967
|
}>>;
|
|
634
968
|
workspace_id: z$1.ZodString;
|
|
635
969
|
}, z$1.core.$strip>>>;
|
|
970
|
+
title_search: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
636
971
|
total: z$1.ZodNumber;
|
|
637
972
|
}, z$1.core.$strip>;
|
|
638
973
|
declare const SkippedProjectInfoSchema: z$1.ZodObject<{
|
|
@@ -970,14 +1305,14 @@ declare const TrendDataPointSchema: z$1.ZodObject<{
|
|
|
970
1305
|
time: z$1.ZodString;
|
|
971
1306
|
visits: z$1.ZodNumber;
|
|
972
1307
|
}, z$1.core.$strip>;
|
|
973
|
-
declare const
|
|
1308
|
+
declare const AnalyticsTrendSchema: z$1.ZodObject<{
|
|
974
1309
|
currentVisitors: z$1.ZodNumber;
|
|
975
1310
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
976
1311
|
time: z$1.ZodString;
|
|
977
1312
|
visits: z$1.ZodNumber;
|
|
978
1313
|
}, z$1.core.$strip>>>;
|
|
979
1314
|
}, z$1.core.$strip>;
|
|
980
|
-
declare const
|
|
1315
|
+
declare const ProjectAnalyticsSchema: z$1.ZodObject<{
|
|
981
1316
|
lists: z$1.ZodOptional<z$1.ZodObject<{
|
|
982
1317
|
country: z$1.ZodObject<{
|
|
983
1318
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -1081,6 +1416,7 @@ declare const AppUserConnectorApiSchema: z$1.ZodObject<{
|
|
|
1081
1416
|
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1082
1417
|
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1083
1418
|
custom: "custom";
|
|
1419
|
+
security: "security";
|
|
1084
1420
|
ecommerce: "ecommerce";
|
|
1085
1421
|
marketing: "marketing";
|
|
1086
1422
|
productivity: "productivity";
|
|
@@ -1090,7 +1426,6 @@ declare const AppUserConnectorApiSchema: z$1.ZodObject<{
|
|
|
1090
1426
|
messaging: "messaging";
|
|
1091
1427
|
development: "development";
|
|
1092
1428
|
payments: "payments";
|
|
1093
|
-
security: "security";
|
|
1094
1429
|
}>>;
|
|
1095
1430
|
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1096
1431
|
name: z$1.ZodString;
|
|
@@ -1126,6 +1461,7 @@ declare const McpConnectorSchema: z$1.ZodObject<{
|
|
|
1126
1461
|
app_site_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1127
1462
|
category: z$1.ZodEnum<{
|
|
1128
1463
|
custom: "custom";
|
|
1464
|
+
security: "security";
|
|
1129
1465
|
ecommerce: "ecommerce";
|
|
1130
1466
|
marketing: "marketing";
|
|
1131
1467
|
productivity: "productivity";
|
|
@@ -1135,7 +1471,6 @@ declare const McpConnectorSchema: z$1.ZodObject<{
|
|
|
1135
1471
|
messaging: "messaging";
|
|
1136
1472
|
development: "development";
|
|
1137
1473
|
payments: "payments";
|
|
1138
|
-
security: "security";
|
|
1139
1474
|
}>;
|
|
1140
1475
|
connect_interaction: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1141
1476
|
desktop_app_download: "desktop_app_download";
|
|
@@ -1175,9 +1510,9 @@ declare const McpConnectorSchema: z$1.ZodObject<{
|
|
|
1175
1510
|
searchTags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
1176
1511
|
server_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1177
1512
|
status: z$1.ZodEnum<{
|
|
1513
|
+
disabled: "disabled";
|
|
1178
1514
|
connected: "connected";
|
|
1179
1515
|
available: "available";
|
|
1180
|
-
disabled: "disabled";
|
|
1181
1516
|
}>;
|
|
1182
1517
|
summary: z$1.ZodString;
|
|
1183
1518
|
tools: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -1235,9 +1570,11 @@ declare const SeamlessConnectorApiSchema: z$1.ZodObject<{
|
|
|
1235
1570
|
toolIntegrationName: z$1.ZodOptional<z$1.ZodString>;
|
|
1236
1571
|
}, z$1.core.$strip>;
|
|
1237
1572
|
declare const StandardConnectorApiSchema: z$1.ZodObject<{
|
|
1573
|
+
can_deploy_apps: z$1.ZodBoolean;
|
|
1238
1574
|
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1239
1575
|
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1240
1576
|
custom: "custom";
|
|
1577
|
+
security: "security";
|
|
1241
1578
|
ecommerce: "ecommerce";
|
|
1242
1579
|
marketing: "marketing";
|
|
1243
1580
|
productivity: "productivity";
|
|
@@ -1247,11 +1584,10 @@ declare const StandardConnectorApiSchema: z$1.ZodObject<{
|
|
|
1247
1584
|
messaging: "messaging";
|
|
1248
1585
|
development: "development";
|
|
1249
1586
|
payments: "payments";
|
|
1250
|
-
security: "security";
|
|
1251
1587
|
}>>;
|
|
1252
1588
|
connection_scope: z$1.ZodEnum<{
|
|
1253
|
-
workspace: "workspace";
|
|
1254
1589
|
project: "project";
|
|
1590
|
+
workspace: "workspace";
|
|
1255
1591
|
}>;
|
|
1256
1592
|
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1257
1593
|
name: z$1.ZodString;
|
|
@@ -1332,53 +1668,55 @@ declare const V1AvailableConnectorEntrySchema: z$1.ZodObject<{
|
|
|
1332
1668
|
declare const V1AwaitingInputSummarySchema: z$1.ZodObject<{
|
|
1333
1669
|
event_id: z$1.ZodString;
|
|
1334
1670
|
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1671
|
+
params: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1335
1672
|
prev_session_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1673
|
+
tool_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1336
1674
|
}, z$1.core.$strip>;
|
|
1337
|
-
declare const
|
|
1338
|
-
monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1339
|
-
user_id: z$1.ZodString;
|
|
1340
|
-
}, z$1.core.$strip>;
|
|
1341
|
-
declare const V1BillingCreditLimitsBodySchema: z$1.ZodObject<{
|
|
1342
|
-
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1343
|
-
monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1344
|
-
user_id: z$1.ZodString;
|
|
1345
|
-
}, z$1.core.$strip>>>;
|
|
1346
|
-
default_monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1347
|
-
pagination: z$1.ZodObject<{
|
|
1348
|
-
has_more: z$1.ZodBoolean;
|
|
1349
|
-
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
1350
|
-
}, z$1.core.$strip>;
|
|
1351
|
-
}, z$1.core.$strip>;
|
|
1352
|
-
declare const V1BillingPeriodSchema: z$1.ZodObject<{
|
|
1675
|
+
declare const BillingPeriodSchema: z$1.ZodObject<{
|
|
1353
1676
|
end: z$1.ZodISODateTime;
|
|
1354
1677
|
start: z$1.ZodISODateTime;
|
|
1355
1678
|
}, z$1.core.$strip>;
|
|
1356
|
-
declare const
|
|
1679
|
+
declare const CreditUsagePeriodSchema: z$1.ZodObject<{
|
|
1357
1680
|
end: z$1.ZodString;
|
|
1358
|
-
group_by: z$1.ZodOptional<z$1.
|
|
1359
|
-
|
|
1681
|
+
group_by: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1682
|
+
project: "project";
|
|
1683
|
+
member: "member";
|
|
1684
|
+
}>>;
|
|
1685
|
+
interval: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1686
|
+
day: "day";
|
|
1687
|
+
week: "week";
|
|
1688
|
+
month: "month";
|
|
1689
|
+
}>>;
|
|
1360
1690
|
start: z$1.ZodString;
|
|
1361
1691
|
}, z$1.core.$strip>;
|
|
1362
1692
|
declare const V1BulkMemberCreditLimitItemSchema: z$1.ZodObject<{
|
|
1693
|
+
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1694
|
+
permanent: "permanent";
|
|
1695
|
+
current_period: "current_period";
|
|
1696
|
+
}>>;
|
|
1363
1697
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
1364
1698
|
monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
|
|
1365
1699
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1366
1700
|
}, z$1.core.$strip>;
|
|
1367
|
-
declare const V1BillingBulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
|
|
1368
|
-
members: z$1.ZodArray<z$1.ZodObject<{
|
|
1369
|
-
email: z$1.ZodOptional<z$1.ZodString>;
|
|
1370
|
-
monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
|
|
1371
|
-
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1372
|
-
}, z$1.core.$strip>>;
|
|
1373
|
-
}, z$1.core.$strip>;
|
|
1374
1701
|
declare const V1BulkMemberCreditLimitResultSchema: z$1.ZodObject<{
|
|
1702
|
+
approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1703
|
+
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1704
|
+
current_period: "current_period";
|
|
1705
|
+
}>>;
|
|
1375
1706
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
1376
1707
|
error: z$1.ZodOptional<z$1.ZodString>;
|
|
1377
|
-
status: z$1.
|
|
1708
|
+
status: z$1.ZodEnum<{
|
|
1709
|
+
success: "success";
|
|
1710
|
+
error: "error";
|
|
1711
|
+
}>;
|
|
1378
1712
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1379
1713
|
}, z$1.core.$strip>;
|
|
1380
1714
|
declare const V1BulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
|
|
1381
1715
|
members: z$1.ZodArray<z$1.ZodObject<{
|
|
1716
|
+
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1717
|
+
permanent: "permanent";
|
|
1718
|
+
current_period: "current_period";
|
|
1719
|
+
}>>;
|
|
1382
1720
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
1383
1721
|
monthly_credit_limit: z$1.ZodNullable<z$1.ZodNumber>;
|
|
1384
1722
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1388,9 +1726,16 @@ declare const V1BulkSetMemberCreditLimitInputBodySchema: z$1.ZodObject<{
|
|
|
1388
1726
|
declare const V1BulkSetMemberCreditLimitOutputBodySchema: z$1.ZodObject<{
|
|
1389
1727
|
failed: z$1.ZodNumber;
|
|
1390
1728
|
results: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1729
|
+
approved_until: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1730
|
+
duration: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1731
|
+
current_period: "current_period";
|
|
1732
|
+
}>>;
|
|
1391
1733
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
1392
1734
|
error: z$1.ZodOptional<z$1.ZodString>;
|
|
1393
|
-
status: z$1.
|
|
1735
|
+
status: z$1.ZodEnum<{
|
|
1736
|
+
success: "success";
|
|
1737
|
+
error: "error";
|
|
1738
|
+
}>;
|
|
1394
1739
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1395
1740
|
}, z$1.core.$strip>>>;
|
|
1396
1741
|
successful: z$1.ZodNumber;
|
|
@@ -1413,10 +1758,10 @@ declare const V1ConnectorResponseSchema: z$1.ZodObject<{
|
|
|
1413
1758
|
name: z$1.ZodString;
|
|
1414
1759
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
1415
1760
|
}, z$1.core.$strip>;
|
|
1416
|
-
declare const
|
|
1761
|
+
declare const CreateEmbedUrlRequestSchema: z$1.ZodObject<{
|
|
1417
1762
|
parent_origin: z$1.ZodString;
|
|
1418
1763
|
}, z$1.core.$strip>;
|
|
1419
|
-
declare const
|
|
1764
|
+
declare const CreateEmbedUrlResponseSchema: z$1.ZodObject<{
|
|
1420
1765
|
embed_url: z$1.ZodString;
|
|
1421
1766
|
expires_at: z$1.ZodISODateTime;
|
|
1422
1767
|
}, z$1.core.$strip>;
|
|
@@ -1435,14 +1780,28 @@ declare const V1CreateProjectResponseSchema: z$1.ZodObject<{
|
|
|
1435
1780
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
1436
1781
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1437
1782
|
preview_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1438
|
-
project_type: z$1.ZodOptional<z$1.
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1783
|
+
project_type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1784
|
+
project: "project";
|
|
1785
|
+
library: "library";
|
|
1786
|
+
}>>;
|
|
1787
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1788
|
+
public: "public";
|
|
1789
|
+
private: "private";
|
|
1790
|
+
workspace_only: "workspace_only";
|
|
1791
|
+
}>>;
|
|
1792
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1793
|
+
in_progress: "in_progress";
|
|
1794
|
+
completed: "completed";
|
|
1795
|
+
failed: "failed";
|
|
1796
|
+
}>>;
|
|
1443
1797
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
1444
1798
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1445
|
-
visibility: z$1.ZodOptional<z$1.
|
|
1799
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1800
|
+
public: "public";
|
|
1801
|
+
private: "private";
|
|
1802
|
+
draft: "draft";
|
|
1803
|
+
workspace_view: "workspace_view";
|
|
1804
|
+
}>>;
|
|
1446
1805
|
workspace_id: z$1.ZodString;
|
|
1447
1806
|
}, z$1.core.$strip>;
|
|
1448
1807
|
declare const V1CreateVariantInputBodySchema: z$1.ZodObject<{
|
|
@@ -1455,7 +1814,8 @@ declare const V1CreateVariantOutputBodySchema: z$1.ZodObject<{
|
|
|
1455
1814
|
thread_id: z$1.ZodString;
|
|
1456
1815
|
variant_id: z$1.ZodString;
|
|
1457
1816
|
}, z$1.core.$strip>;
|
|
1458
|
-
declare const
|
|
1817
|
+
declare const CreditHistoryEntrySchema: z$1.ZodObject<{
|
|
1818
|
+
credit_grant_id: z$1.ZodString;
|
|
1459
1819
|
credits_change: z$1.ZodNumber;
|
|
1460
1820
|
event_type: z$1.ZodEnum<{
|
|
1461
1821
|
granted: "granted";
|
|
@@ -1583,6 +1943,7 @@ declare const V1ListAppUserConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1583
1943
|
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1584
1944
|
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1585
1945
|
custom: "custom";
|
|
1946
|
+
security: "security";
|
|
1586
1947
|
ecommerce: "ecommerce";
|
|
1587
1948
|
marketing: "marketing";
|
|
1588
1949
|
productivity: "productivity";
|
|
@@ -1592,7 +1953,6 @@ declare const V1ListAppUserConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1592
1953
|
messaging: "messaging";
|
|
1593
1954
|
development: "development";
|
|
1594
1955
|
payments: "payments";
|
|
1595
|
-
security: "security";
|
|
1596
1956
|
}>>;
|
|
1597
1957
|
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1598
1958
|
name: z$1.ZodString;
|
|
@@ -1669,6 +2029,7 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1669
2029
|
app_site_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1670
2030
|
category: z$1.ZodEnum<{
|
|
1671
2031
|
custom: "custom";
|
|
2032
|
+
security: "security";
|
|
1672
2033
|
ecommerce: "ecommerce";
|
|
1673
2034
|
marketing: "marketing";
|
|
1674
2035
|
productivity: "productivity";
|
|
@@ -1678,7 +2039,6 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1678
2039
|
messaging: "messaging";
|
|
1679
2040
|
development: "development";
|
|
1680
2041
|
payments: "payments";
|
|
1681
|
-
security: "security";
|
|
1682
2042
|
}>;
|
|
1683
2043
|
connect_interaction: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1684
2044
|
desktop_app_download: "desktop_app_download";
|
|
@@ -1718,9 +2078,9 @@ declare const V1ListMcpConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1718
2078
|
searchTags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
1719
2079
|
server_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1720
2080
|
status: z$1.ZodEnum<{
|
|
2081
|
+
disabled: "disabled";
|
|
1721
2082
|
connected: "connected";
|
|
1722
2083
|
available: "available";
|
|
1723
|
-
disabled: "disabled";
|
|
1724
2084
|
}>;
|
|
1725
2085
|
summary: z$1.ZodString;
|
|
1726
2086
|
tools: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -1789,9 +2149,11 @@ declare const V1ListSeamlessConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1789
2149
|
}, z$1.core.$strip>;
|
|
1790
2150
|
declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
|
|
1791
2151
|
connectors: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2152
|
+
can_deploy_apps: z$1.ZodBoolean;
|
|
1792
2153
|
can_restrict_to_admins: z$1.ZodBoolean;
|
|
1793
2154
|
categories: z$1.ZodArray<z$1.ZodEnum<{
|
|
1794
2155
|
custom: "custom";
|
|
2156
|
+
security: "security";
|
|
1795
2157
|
ecommerce: "ecommerce";
|
|
1796
2158
|
marketing: "marketing";
|
|
1797
2159
|
productivity: "productivity";
|
|
@@ -1801,11 +2163,10 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1801
2163
|
messaging: "messaging";
|
|
1802
2164
|
development: "development";
|
|
1803
2165
|
payments: "payments";
|
|
1804
|
-
security: "security";
|
|
1805
2166
|
}>>;
|
|
1806
2167
|
connection_scope: z$1.ZodEnum<{
|
|
1807
|
-
workspace: "workspace";
|
|
1808
2168
|
project: "project";
|
|
2169
|
+
workspace: "workspace";
|
|
1809
2170
|
}>;
|
|
1810
2171
|
creator: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
1811
2172
|
name: z$1.ZodString;
|
|
@@ -1862,7 +2223,7 @@ declare const V1ListStandardConnectorsResponseSchema: z$1.ZodObject<{
|
|
|
1862
2223
|
has_more: z$1.ZodBoolean;
|
|
1863
2224
|
total: z$1.ZodNumber;
|
|
1864
2225
|
}, z$1.core.$strip>;
|
|
1865
|
-
declare const
|
|
2226
|
+
declare const WorkspacePageSchema: z$1.ZodObject<{
|
|
1866
2227
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
1867
2228
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1868
2229
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1870,12 +2231,23 @@ declare const V1ListWorkspacesBodySchema: z$1.ZodObject<{
|
|
|
1870
2231
|
image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
1871
2232
|
membership: z$1.ZodOptional<z$1.ZodObject<{
|
|
1872
2233
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1873
|
-
role: z$1.
|
|
2234
|
+
role: z$1.ZodEnum<{
|
|
2235
|
+
owner: "owner";
|
|
2236
|
+
admin: "admin";
|
|
2237
|
+
member: "member";
|
|
2238
|
+
viewer: "viewer";
|
|
2239
|
+
collaborator: "collaborator";
|
|
2240
|
+
}>;
|
|
1874
2241
|
user_id: z$1.ZodString;
|
|
1875
2242
|
}, z$1.core.$strip>>;
|
|
1876
2243
|
name: z$1.ZodString;
|
|
1877
2244
|
num_projects: z$1.ZodNumber;
|
|
1878
|
-
plan: z$1.
|
|
2245
|
+
plan: z$1.ZodEnum<{
|
|
2246
|
+
free: "free";
|
|
2247
|
+
pro: "pro";
|
|
2248
|
+
business: "business";
|
|
2249
|
+
enterprise: "enterprise";
|
|
2250
|
+
}>;
|
|
1879
2251
|
updated_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1880
2252
|
}, z$1.core.$strip>>>;
|
|
1881
2253
|
pagination: z$1.ZodObject<{
|
|
@@ -1891,9 +2263,18 @@ declare const V1AiResponseSummarySchema: z$1.ZodObject<{
|
|
|
1891
2263
|
awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
|
|
1892
2264
|
event_id: z$1.ZodString;
|
|
1893
2265
|
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
2266
|
+
params: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1894
2267
|
prev_session_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2268
|
+
tool_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1895
2269
|
}, z$1.core.$strip>>;
|
|
1896
2270
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2271
|
+
completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2272
|
+
error: "error";
|
|
2273
|
+
finished: "finished";
|
|
2274
|
+
stopped: "stopped";
|
|
2275
|
+
policy_violation: "policy_violation";
|
|
2276
|
+
max_iterations: "max_iterations";
|
|
2277
|
+
}>>;
|
|
1897
2278
|
content: z$1.ZodString;
|
|
1898
2279
|
cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1899
2280
|
edit_id: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1942,9 +2323,18 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
|
|
|
1942
2323
|
awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
|
|
1943
2324
|
event_id: z$1.ZodString;
|
|
1944
2325
|
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
2326
|
+
params: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1945
2327
|
prev_session_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2328
|
+
tool_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1946
2329
|
}, z$1.core.$strip>>;
|
|
1947
2330
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2331
|
+
completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2332
|
+
error: "error";
|
|
2333
|
+
finished: "finished";
|
|
2334
|
+
stopped: "stopped";
|
|
2335
|
+
policy_violation: "policy_violation";
|
|
2336
|
+
max_iterations: "max_iterations";
|
|
2337
|
+
}>>;
|
|
1948
2338
|
content: z$1.ZodString;
|
|
1949
2339
|
cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1950
2340
|
created_at: z$1.ZodString;
|
|
@@ -1961,9 +2351,18 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
|
|
|
1961
2351
|
awaiting_input: z$1.ZodOptional<z$1.ZodObject<{
|
|
1962
2352
|
event_id: z$1.ZodString;
|
|
1963
2353
|
input_schema: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
2354
|
+
params: z$1.ZodOptional<z$1.ZodUnknown>;
|
|
1964
2355
|
prev_session_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2356
|
+
tool_id: z$1.ZodOptional<z$1.ZodString>;
|
|
1965
2357
|
}, z$1.core.$strip>>;
|
|
1966
2358
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
2359
|
+
completion_reason: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2360
|
+
error: "error";
|
|
2361
|
+
finished: "finished";
|
|
2362
|
+
stopped: "stopped";
|
|
2363
|
+
policy_violation: "policy_violation";
|
|
2364
|
+
max_iterations: "max_iterations";
|
|
2365
|
+
}>>;
|
|
1967
2366
|
content: z$1.ZodString;
|
|
1968
2367
|
cost_credits: z$1.ZodOptional<z$1.ZodNumber>;
|
|
1969
2368
|
edit_id: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1982,14 +2381,14 @@ declare const V1MessageResponseSchema: z$1.ZodObject<{
|
|
|
1982
2381
|
declare const V1MoveProjectsToFolderInputBodySchema: z$1.ZodObject<{
|
|
1983
2382
|
project_ids: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
1984
2383
|
}, z$1.core.$strip>;
|
|
1985
|
-
declare const
|
|
2384
|
+
declare const ProjectCollaboratorSchema: z$1.ZodObject<{
|
|
1986
2385
|
accepted_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
1987
2386
|
access_level: z$1.ZodEnum<{
|
|
1988
|
-
none: "none";
|
|
1989
2387
|
owner: "owner";
|
|
1990
2388
|
admin: "admin";
|
|
1991
2389
|
write: "write";
|
|
1992
2390
|
read: "read";
|
|
2391
|
+
none: "none";
|
|
1993
2392
|
}>;
|
|
1994
2393
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
1995
2394
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -1997,17 +2396,18 @@ declare const V1ProjectCollaboratorSchema: z$1.ZodObject<{
|
|
|
1997
2396
|
invited_by: z$1.ZodOptional<z$1.ZodString>;
|
|
1998
2397
|
is_internal: z$1.ZodBoolean;
|
|
1999
2398
|
is_workspace_member: z$1.ZodBoolean;
|
|
2399
|
+
last_accessed_at: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
2000
2400
|
user_id: z$1.ZodString;
|
|
2001
2401
|
}, z$1.core.$strip>;
|
|
2002
|
-
declare const
|
|
2402
|
+
declare const ProjectCollaboratorPageSchema: z$1.ZodObject<{
|
|
2003
2403
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2004
2404
|
accepted_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2005
2405
|
access_level: z$1.ZodEnum<{
|
|
2006
|
-
none: "none";
|
|
2007
2406
|
owner: "owner";
|
|
2008
2407
|
admin: "admin";
|
|
2009
2408
|
write: "write";
|
|
2010
2409
|
read: "read";
|
|
2410
|
+
none: "none";
|
|
2011
2411
|
}>;
|
|
2012
2412
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2013
2413
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2015,6 +2415,7 @@ declare const CursorListResponseV1ProjectCollaboratorSchema: z$1.ZodObject<{
|
|
|
2015
2415
|
invited_by: z$1.ZodOptional<z$1.ZodString>;
|
|
2016
2416
|
is_internal: z$1.ZodBoolean;
|
|
2017
2417
|
is_workspace_member: z$1.ZodBoolean;
|
|
2418
|
+
last_accessed_at: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
2018
2419
|
user_id: z$1.ZodString;
|
|
2019
2420
|
}, z$1.core.$strip>>>;
|
|
2020
2421
|
pagination: z$1.ZodObject<{
|
|
@@ -2035,7 +2436,7 @@ declare const V1ProjectGitFilesResponseSchema: z$1.ZodObject<{
|
|
|
2035
2436
|
ref: z$1.ZodString;
|
|
2036
2437
|
total: z$1.ZodNumber;
|
|
2037
2438
|
}, z$1.core.$strip>;
|
|
2038
|
-
declare const
|
|
2439
|
+
declare const ProjectSchema: z$1.ZodObject<{
|
|
2039
2440
|
created_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2040
2441
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
2041
2442
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2049,14 +2450,28 @@ declare const V1ProjectResponseSchema: z$1.ZodObject<{
|
|
|
2049
2450
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
2050
2451
|
og_image_url: z$1.ZodOptional<z$1.ZodString>;
|
|
2051
2452
|
preview_url: z$1.ZodOptional<z$1.ZodString>;
|
|
2052
|
-
project_type: z$1.ZodOptional<z$1.
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2453
|
+
project_type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2454
|
+
project: "project";
|
|
2455
|
+
library: "library";
|
|
2456
|
+
}>>;
|
|
2457
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2458
|
+
public: "public";
|
|
2459
|
+
private: "private";
|
|
2460
|
+
workspace_only: "workspace_only";
|
|
2461
|
+
}>>;
|
|
2462
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2463
|
+
in_progress: "in_progress";
|
|
2464
|
+
completed: "completed";
|
|
2465
|
+
failed: "failed";
|
|
2466
|
+
}>>;
|
|
2057
2467
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
2058
2468
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2059
|
-
visibility: z$1.ZodOptional<z$1.
|
|
2469
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2470
|
+
public: "public";
|
|
2471
|
+
private: "private";
|
|
2472
|
+
draft: "draft";
|
|
2473
|
+
workspace_view: "workspace_view";
|
|
2474
|
+
}>>;
|
|
2060
2475
|
workspace_id: z$1.ZodString;
|
|
2061
2476
|
}, z$1.core.$strip>;
|
|
2062
2477
|
declare const V1ProjectSkillDtoSchema: z$1.ZodObject<{
|
|
@@ -2133,17 +2548,13 @@ declare const PublicV1RemixJobOutputBodySchema: z$1.ZodObject<{
|
|
|
2133
2548
|
skipped_integration: z$1.ZodOptional<z$1.ZodString>;
|
|
2134
2549
|
}, z$1.core.$strip>>>>;
|
|
2135
2550
|
}, z$1.core.$strip>>;
|
|
2136
|
-
status: z$1.
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
integration_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2144
|
-
status: z$1.ZodOptional<z$1.ZodString>;
|
|
2145
|
-
step: z$1.ZodString;
|
|
2146
|
-
}, z$1.core.$strip>>;
|
|
2551
|
+
status: z$1.ZodEnum<{
|
|
2552
|
+
completed: "completed";
|
|
2553
|
+
unknown: "unknown";
|
|
2554
|
+
error: "error";
|
|
2555
|
+
running: "running";
|
|
2556
|
+
preparing: "preparing";
|
|
2557
|
+
}>;
|
|
2147
2558
|
}, z$1.core.$strip>;
|
|
2148
2559
|
declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
2149
2560
|
error_code: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2164,12 +2575,34 @@ declare const V1RemixProgressOutputBodySchema: z$1.ZodObject<{
|
|
|
2164
2575
|
step: z$1.ZodOptional<z$1.ZodObject<{
|
|
2165
2576
|
failure: z$1.ZodOptional<z$1.ZodObject<{
|
|
2166
2577
|
code: z$1.ZodOptional<z$1.ZodString>;
|
|
2167
|
-
failed_step: z$1.
|
|
2578
|
+
failed_step: z$1.ZodEnum<{
|
|
2579
|
+
completed: "completed";
|
|
2580
|
+
failed: "failed";
|
|
2581
|
+
starting: "starting";
|
|
2582
|
+
creating_new_project: "creating_new_project";
|
|
2583
|
+
restoring_supabase: "restoring_supabase";
|
|
2584
|
+
copying_history: "copying_history";
|
|
2585
|
+
preparing_repository: "preparing_repository";
|
|
2586
|
+
remixing_integration: "remixing_integration";
|
|
2587
|
+
pushing_repository: "pushing_repository";
|
|
2588
|
+
finalizing: "finalizing";
|
|
2589
|
+
}>;
|
|
2168
2590
|
message: z$1.ZodString;
|
|
2169
2591
|
}, z$1.core.$strip>>;
|
|
2170
2592
|
integration_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2171
2593
|
status: z$1.ZodOptional<z$1.ZodString>;
|
|
2172
|
-
step: z$1.
|
|
2594
|
+
step: z$1.ZodEnum<{
|
|
2595
|
+
completed: "completed";
|
|
2596
|
+
failed: "failed";
|
|
2597
|
+
starting: "starting";
|
|
2598
|
+
creating_new_project: "creating_new_project";
|
|
2599
|
+
restoring_supabase: "restoring_supabase";
|
|
2600
|
+
copying_history: "copying_history";
|
|
2601
|
+
preparing_repository: "preparing_repository";
|
|
2602
|
+
remixing_integration: "remixing_integration";
|
|
2603
|
+
pushing_repository: "pushing_repository";
|
|
2604
|
+
finalizing: "finalizing";
|
|
2605
|
+
}>;
|
|
2173
2606
|
}, z$1.core.$strip>>;
|
|
2174
2607
|
}, z$1.core.$strip>;
|
|
2175
2608
|
declare const V1RemoveConnectorOutputBodySchema: z$1.ZodObject<{
|
|
@@ -2182,21 +2615,32 @@ declare const V1SecurityFindingSchema: z$1.ZodObject<{
|
|
|
2182
2615
|
details: z$1.ZodOptional<z$1.ZodString>;
|
|
2183
2616
|
finding_id: z$1.ZodString;
|
|
2184
2617
|
first_seen_scan_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2185
|
-
level: z$1.
|
|
2618
|
+
level: z$1.ZodEnum<{
|
|
2619
|
+
error: "error";
|
|
2620
|
+
warn: "warn";
|
|
2621
|
+
info: "info";
|
|
2622
|
+
}>;
|
|
2186
2623
|
link: z$1.ZodOptional<z$1.ZodString>;
|
|
2187
2624
|
metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
2188
2625
|
name: z$1.ZodString;
|
|
2189
2626
|
recurrence: z$1.ZodNumber;
|
|
2190
2627
|
remediation_difficulty: z$1.ZodOptional<z$1.ZodString>;
|
|
2191
2628
|
scanner_name: z$1.ZodString;
|
|
2192
|
-
status: z$1.
|
|
2629
|
+
status: z$1.ZodEnum<{
|
|
2630
|
+
open: "open";
|
|
2631
|
+
ignored: "ignored";
|
|
2632
|
+
fixed: "fixed";
|
|
2633
|
+
}>;
|
|
2193
2634
|
updated_at: z$1.ZodISODateTime;
|
|
2194
2635
|
}, z$1.core.$strip>;
|
|
2195
2636
|
declare const V1SecurityScanActorSchema: z$1.ZodObject<{
|
|
2196
2637
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2197
2638
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2198
2639
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
2199
|
-
type: z$1.
|
|
2640
|
+
type: z$1.ZodEnum<{
|
|
2641
|
+
user: "user";
|
|
2642
|
+
system: "system";
|
|
2643
|
+
}>;
|
|
2200
2644
|
}, z$1.core.$strip>;
|
|
2201
2645
|
declare const V1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
2202
2646
|
commit_sha: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2204,13 +2648,31 @@ declare const V1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
|
2204
2648
|
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
2205
2649
|
scan_id: z$1.ZodString;
|
|
2206
2650
|
started_at: z$1.ZodISODateTime;
|
|
2207
|
-
status: z$1.
|
|
2208
|
-
|
|
2651
|
+
status: z$1.ZodEnum<{
|
|
2652
|
+
completed: "completed";
|
|
2653
|
+
failed: "failed";
|
|
2654
|
+
running: "running";
|
|
2655
|
+
}>;
|
|
2656
|
+
trigger_source: z$1.ZodEnum<{
|
|
2657
|
+
user: "user";
|
|
2658
|
+
workflow: "workflow";
|
|
2659
|
+
ui_auto: "ui_auto";
|
|
2660
|
+
aikido_import: "aikido_import";
|
|
2661
|
+
manage_findings: "manage_findings";
|
|
2662
|
+
app_mcp_deep_auto: "app_mcp_deep_auto";
|
|
2663
|
+
hvt_scheduled: "hvt_scheduled";
|
|
2664
|
+
workspace_scheduled: "workspace_scheduled";
|
|
2665
|
+
enterprise_batch: "enterprise_batch";
|
|
2666
|
+
gitsync_pull: "gitsync_pull";
|
|
2667
|
+
}>;
|
|
2209
2668
|
triggered_by: z$1.ZodObject<{
|
|
2210
2669
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2211
2670
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2212
2671
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
2213
|
-
type: z$1.
|
|
2672
|
+
type: z$1.ZodEnum<{
|
|
2673
|
+
user: "user";
|
|
2674
|
+
system: "system";
|
|
2675
|
+
}>;
|
|
2214
2676
|
}, z$1.core.$strip>;
|
|
2215
2677
|
}, z$1.core.$strip>;
|
|
2216
2678
|
declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
@@ -2220,13 +2682,31 @@ declare const CursorListResponseV1SecurityScanSummarySchema: z$1.ZodObject<{
|
|
|
2220
2682
|
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
2221
2683
|
scan_id: z$1.ZodString;
|
|
2222
2684
|
started_at: z$1.ZodISODateTime;
|
|
2223
|
-
status: z$1.
|
|
2224
|
-
|
|
2685
|
+
status: z$1.ZodEnum<{
|
|
2686
|
+
completed: "completed";
|
|
2687
|
+
failed: "failed";
|
|
2688
|
+
running: "running";
|
|
2689
|
+
}>;
|
|
2690
|
+
trigger_source: z$1.ZodEnum<{
|
|
2691
|
+
user: "user";
|
|
2692
|
+
workflow: "workflow";
|
|
2693
|
+
ui_auto: "ui_auto";
|
|
2694
|
+
aikido_import: "aikido_import";
|
|
2695
|
+
manage_findings: "manage_findings";
|
|
2696
|
+
app_mcp_deep_auto: "app_mcp_deep_auto";
|
|
2697
|
+
hvt_scheduled: "hvt_scheduled";
|
|
2698
|
+
workspace_scheduled: "workspace_scheduled";
|
|
2699
|
+
enterprise_batch: "enterprise_batch";
|
|
2700
|
+
gitsync_pull: "gitsync_pull";
|
|
2701
|
+
}>;
|
|
2225
2702
|
triggered_by: z$1.ZodObject<{
|
|
2226
2703
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2227
2704
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2228
2705
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
2229
|
-
type: z$1.
|
|
2706
|
+
type: z$1.ZodEnum<{
|
|
2707
|
+
user: "user";
|
|
2708
|
+
system: "system";
|
|
2709
|
+
}>;
|
|
2230
2710
|
}, z$1.core.$strip>;
|
|
2231
2711
|
}, z$1.core.$strip>>>;
|
|
2232
2712
|
pagination: z$1.ZodObject<{
|
|
@@ -2241,7 +2721,11 @@ declare const V1SecurityScannerRunSchema: z$1.ZodObject<{
|
|
|
2241
2721
|
scanner_name: z$1.ZodString;
|
|
2242
2722
|
scanner_version: z$1.ZodOptional<z$1.ZodString>;
|
|
2243
2723
|
started_at: z$1.ZodISODateTime;
|
|
2244
|
-
status: z$1.
|
|
2724
|
+
status: z$1.ZodEnum<{
|
|
2725
|
+
failed: "failed";
|
|
2726
|
+
succeeded: "succeeded";
|
|
2727
|
+
skipped: "skipped";
|
|
2728
|
+
}>;
|
|
2245
2729
|
}, z$1.core.$strip>;
|
|
2246
2730
|
declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
2247
2731
|
findings: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2251,14 +2735,22 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
|
2251
2735
|
details: z$1.ZodOptional<z$1.ZodString>;
|
|
2252
2736
|
finding_id: z$1.ZodString;
|
|
2253
2737
|
first_seen_scan_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2254
|
-
level: z$1.
|
|
2738
|
+
level: z$1.ZodEnum<{
|
|
2739
|
+
error: "error";
|
|
2740
|
+
warn: "warn";
|
|
2741
|
+
info: "info";
|
|
2742
|
+
}>;
|
|
2255
2743
|
link: z$1.ZodOptional<z$1.ZodString>;
|
|
2256
2744
|
metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
2257
2745
|
name: z$1.ZodString;
|
|
2258
2746
|
recurrence: z$1.ZodNumber;
|
|
2259
2747
|
remediation_difficulty: z$1.ZodOptional<z$1.ZodString>;
|
|
2260
2748
|
scanner_name: z$1.ZodString;
|
|
2261
|
-
status: z$1.
|
|
2749
|
+
status: z$1.ZodEnum<{
|
|
2750
|
+
open: "open";
|
|
2751
|
+
ignored: "ignored";
|
|
2752
|
+
fixed: "fixed";
|
|
2753
|
+
}>;
|
|
2262
2754
|
updated_at: z$1.ZodISODateTime;
|
|
2263
2755
|
}, z$1.core.$strip>>>;
|
|
2264
2756
|
scan: z$1.ZodObject<{
|
|
@@ -2267,13 +2759,31 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
|
2267
2759
|
requested_scanners: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
2268
2760
|
scan_id: z$1.ZodString;
|
|
2269
2761
|
started_at: z$1.ZodISODateTime;
|
|
2270
|
-
status: z$1.
|
|
2271
|
-
|
|
2762
|
+
status: z$1.ZodEnum<{
|
|
2763
|
+
completed: "completed";
|
|
2764
|
+
failed: "failed";
|
|
2765
|
+
running: "running";
|
|
2766
|
+
}>;
|
|
2767
|
+
trigger_source: z$1.ZodEnum<{
|
|
2768
|
+
user: "user";
|
|
2769
|
+
workflow: "workflow";
|
|
2770
|
+
ui_auto: "ui_auto";
|
|
2771
|
+
aikido_import: "aikido_import";
|
|
2772
|
+
manage_findings: "manage_findings";
|
|
2773
|
+
app_mcp_deep_auto: "app_mcp_deep_auto";
|
|
2774
|
+
hvt_scheduled: "hvt_scheduled";
|
|
2775
|
+
workspace_scheduled: "workspace_scheduled";
|
|
2776
|
+
enterprise_batch: "enterprise_batch";
|
|
2777
|
+
gitsync_pull: "gitsync_pull";
|
|
2778
|
+
}>;
|
|
2272
2779
|
triggered_by: z$1.ZodObject<{
|
|
2273
2780
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2274
2781
|
id: z$1.ZodOptional<z$1.ZodString>;
|
|
2275
2782
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
2276
|
-
type: z$1.
|
|
2783
|
+
type: z$1.ZodEnum<{
|
|
2784
|
+
user: "user";
|
|
2785
|
+
system: "system";
|
|
2786
|
+
}>;
|
|
2277
2787
|
}, z$1.core.$strip>;
|
|
2278
2788
|
}, z$1.core.$strip>;
|
|
2279
2789
|
scanner_runs: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2283,7 +2793,11 @@ declare const V1GetSecurityScanOutputBodySchema: z$1.ZodObject<{
|
|
|
2283
2793
|
scanner_name: z$1.ZodString;
|
|
2284
2794
|
scanner_version: z$1.ZodOptional<z$1.ZodString>;
|
|
2285
2795
|
started_at: z$1.ZodISODateTime;
|
|
2286
|
-
status: z$1.
|
|
2796
|
+
status: z$1.ZodEnum<{
|
|
2797
|
+
failed: "failed";
|
|
2798
|
+
succeeded: "succeeded";
|
|
2799
|
+
skipped: "skipped";
|
|
2800
|
+
}>;
|
|
2287
2801
|
}, z$1.core.$strip>>>;
|
|
2288
2802
|
}, z$1.core.$strip>;
|
|
2289
2803
|
declare const V1SelectedLibrarySchema: z$1.ZodObject<{
|
|
@@ -2320,9 +2834,9 @@ declare const V1SetProjectSkillEnabledOutputBodySchema: z$1.ZodObject<{
|
|
|
2320
2834
|
}, z$1.core.$strip>;
|
|
2321
2835
|
declare const V1SetProjectVisibilityInputBodySchema: z$1.ZodObject<{
|
|
2322
2836
|
visibility: z$1.ZodEnum<{
|
|
2323
|
-
draft: "draft";
|
|
2324
|
-
private: "private";
|
|
2325
2837
|
public: "public";
|
|
2838
|
+
private: "private";
|
|
2839
|
+
draft: "draft";
|
|
2326
2840
|
workspace_view: "workspace_view";
|
|
2327
2841
|
}>;
|
|
2328
2842
|
}, z$1.core.$strip>;
|
|
@@ -2338,7 +2852,11 @@ declare const V1TriggerSecurityScanInputBodySchema: z$1.ZodObject<{
|
|
|
2338
2852
|
declare const V1TriggerSecurityScanResponseBodySchema: z$1.ZodObject<{
|
|
2339
2853
|
message: z$1.ZodOptional<z$1.ZodString>;
|
|
2340
2854
|
scan_id: z$1.ZodString;
|
|
2341
|
-
status: z$1.
|
|
2855
|
+
status: z$1.ZodEnum<{
|
|
2856
|
+
completed: "completed";
|
|
2857
|
+
running: "running";
|
|
2858
|
+
started: "started";
|
|
2859
|
+
}>;
|
|
2342
2860
|
}, z$1.core.$strip>;
|
|
2343
2861
|
declare const V1UnscopedFileSchema: z$1.ZodObject<{
|
|
2344
2862
|
file_id: z$1.ZodString;
|
|
@@ -2371,9 +2889,9 @@ declare const PublicV1ProjectCreateInputBodySchema: z$1.ZodObject<{
|
|
|
2371
2889
|
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
2372
2890
|
template_project_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2373
2891
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2374
|
-
draft: "draft";
|
|
2375
|
-
private: "private";
|
|
2376
2892
|
public: "public";
|
|
2893
|
+
private: "private";
|
|
2894
|
+
draft: "draft";
|
|
2377
2895
|
workspace_view: "workspace_view";
|
|
2378
2896
|
}>>;
|
|
2379
2897
|
workspace_id: z$1.ZodString;
|
|
@@ -2425,9 +2943,9 @@ declare const V1CreateProjectInputBodySchema: z$1.ZodObject<{
|
|
|
2425
2943
|
tech_stack: z$1.ZodOptional<z$1.ZodString>;
|
|
2426
2944
|
template_project_id: z$1.ZodOptional<z$1.ZodString>;
|
|
2427
2945
|
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
2428
|
-
draft: "draft";
|
|
2429
|
-
private: "private";
|
|
2430
2946
|
public: "public";
|
|
2947
|
+
private: "private";
|
|
2948
|
+
draft: "draft";
|
|
2431
2949
|
workspace_view: "workspace_view";
|
|
2432
2950
|
}>>;
|
|
2433
2951
|
}, z$1.core.$strip>;
|
|
@@ -2461,9 +2979,6 @@ declare const V1UpdateWorkspaceSettingsInputBodySchema: z$1.ZodObject<{
|
|
|
2461
2979
|
default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
2462
2980
|
workspace_id: z$1.ZodString;
|
|
2463
2981
|
}, z$1.core.$strip>;
|
|
2464
|
-
declare const V1UpdateWorkspaceSettingsNestedInputBodySchema: z$1.ZodObject<{
|
|
2465
|
-
default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
2466
|
-
}, z$1.core.$strip>;
|
|
2467
2982
|
declare const V1UsagePeriodSchema: z$1.ZodObject<{
|
|
2468
2983
|
end: z$1.ZodString;
|
|
2469
2984
|
granularity: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2513,8 +3028,9 @@ declare const V1WorkspaceAuditLogsBodySchema: z$1.ZodObject<{
|
|
|
2513
3028
|
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
2514
3029
|
}, z$1.core.$strip>;
|
|
2515
3030
|
}, z$1.core.$strip>;
|
|
2516
|
-
declare const
|
|
3031
|
+
declare const CreditHistoryPageSchema: z$1.ZodObject<{
|
|
2517
3032
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
3033
|
+
credit_grant_id: z$1.ZodString;
|
|
2518
3034
|
credits_change: z$1.ZodNumber;
|
|
2519
3035
|
event_type: z$1.ZodEnum<{
|
|
2520
3036
|
granted: "granted";
|
|
@@ -2542,18 +3058,44 @@ declare const V1WorkspaceCreditHistoryBodySchema: z$1.ZodObject<{
|
|
|
2542
3058
|
total: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2543
3059
|
total_is_capped: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
2544
3060
|
}, z$1.core.$strip>;
|
|
2545
|
-
declare const
|
|
2546
|
-
applicability: z$1.ZodOptional<z$1.
|
|
3061
|
+
declare const ExpiringCreditGrantSchema: z$1.ZodObject<{
|
|
3062
|
+
applicability: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3063
|
+
generic: "generic";
|
|
3064
|
+
build_time: "build_time";
|
|
3065
|
+
build_mode: "build_mode";
|
|
3066
|
+
plan_mode: "plan_mode";
|
|
3067
|
+
}>>;
|
|
2547
3068
|
credits: z$1.ZodNumber;
|
|
2548
3069
|
expires_at: z$1.ZodISODateTime;
|
|
2549
|
-
grant_type: z$1.
|
|
3070
|
+
grant_type: z$1.ZodEnum<{
|
|
3071
|
+
granted: "granted";
|
|
3072
|
+
billing: "billing";
|
|
3073
|
+
rollover: "rollover";
|
|
3074
|
+
topup: "topup";
|
|
3075
|
+
commitment: "commitment";
|
|
3076
|
+
cashback: "cashback";
|
|
3077
|
+
overage: "overage";
|
|
3078
|
+
unlimited: "unlimited";
|
|
3079
|
+
allowance: "allowance";
|
|
3080
|
+
}>;
|
|
2550
3081
|
}, z$1.core.$strip>;
|
|
2551
|
-
declare const
|
|
2552
|
-
grant_type: z$1.
|
|
3082
|
+
declare const CreditGrantTypeBalanceSchema: z$1.ZodObject<{
|
|
3083
|
+
grant_type: z$1.ZodEnum<{
|
|
3084
|
+
granted: "granted";
|
|
3085
|
+
billing: "billing";
|
|
3086
|
+
rollover: "rollover";
|
|
3087
|
+
topup: "topup";
|
|
3088
|
+
commitment: "commitment";
|
|
3089
|
+
cashback: "cashback";
|
|
3090
|
+
daily: "daily";
|
|
3091
|
+
overage: "overage";
|
|
3092
|
+
unlimited: "unlimited";
|
|
3093
|
+
allowance: "allowance";
|
|
3094
|
+
}>;
|
|
2553
3095
|
granted: z$1.ZodNumber;
|
|
2554
3096
|
remaining: z$1.ZodNumber;
|
|
2555
3097
|
}, z$1.core.$strip>;
|
|
2556
|
-
declare const
|
|
3098
|
+
declare const CreditBalanceSchema: z$1.ZodObject<{
|
|
2557
3099
|
billing_period: z$1.ZodObject<{
|
|
2558
3100
|
end: z$1.ZodISODateTime;
|
|
2559
3101
|
start: z$1.ZodISODateTime;
|
|
@@ -2561,13 +3103,39 @@ declare const V1WorkspaceCreditsBodySchema: z$1.ZodObject<{
|
|
|
2561
3103
|
daily_limit: z$1.ZodNumber;
|
|
2562
3104
|
daily_remaining: z$1.ZodNumber;
|
|
2563
3105
|
expiring_grants: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2564
|
-
applicability: z$1.ZodOptional<z$1.
|
|
3106
|
+
applicability: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3107
|
+
generic: "generic";
|
|
3108
|
+
build_time: "build_time";
|
|
3109
|
+
build_mode: "build_mode";
|
|
3110
|
+
plan_mode: "plan_mode";
|
|
3111
|
+
}>>;
|
|
2565
3112
|
credits: z$1.ZodNumber;
|
|
2566
3113
|
expires_at: z$1.ZodISODateTime;
|
|
2567
|
-
grant_type: z$1.
|
|
3114
|
+
grant_type: z$1.ZodEnum<{
|
|
3115
|
+
granted: "granted";
|
|
3116
|
+
billing: "billing";
|
|
3117
|
+
rollover: "rollover";
|
|
3118
|
+
topup: "topup";
|
|
3119
|
+
commitment: "commitment";
|
|
3120
|
+
cashback: "cashback";
|
|
3121
|
+
overage: "overage";
|
|
3122
|
+
unlimited: "unlimited";
|
|
3123
|
+
allowance: "allowance";
|
|
3124
|
+
}>;
|
|
2568
3125
|
}, z$1.core.$strip>>>;
|
|
2569
3126
|
grant_type_balances: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2570
|
-
grant_type: z$1.
|
|
3127
|
+
grant_type: z$1.ZodEnum<{
|
|
3128
|
+
granted: "granted";
|
|
3129
|
+
billing: "billing";
|
|
3130
|
+
rollover: "rollover";
|
|
3131
|
+
topup: "topup";
|
|
3132
|
+
commitment: "commitment";
|
|
3133
|
+
cashback: "cashback";
|
|
3134
|
+
daily: "daily";
|
|
3135
|
+
overage: "overage";
|
|
3136
|
+
unlimited: "unlimited";
|
|
3137
|
+
allowance: "allowance";
|
|
3138
|
+
}>;
|
|
2571
3139
|
granted: z$1.ZodNumber;
|
|
2572
3140
|
remaining: z$1.ZodNumber;
|
|
2573
3141
|
}, z$1.core.$strip>>>;
|
|
@@ -2575,7 +3143,7 @@ declare const V1WorkspaceCreditsBodySchema: z$1.ZodObject<{
|
|
|
2575
3143
|
total_granted: z$1.ZodNumber;
|
|
2576
3144
|
total_remaining: z$1.ZodNumber;
|
|
2577
3145
|
}, z$1.core.$strip>;
|
|
2578
|
-
declare const
|
|
3146
|
+
declare const WorkspaceGroupSchema: z$1.ZodObject<{
|
|
2579
3147
|
created_at: z$1.ZodISODateTime;
|
|
2580
3148
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
2581
3149
|
id: z$1.ZodString;
|
|
@@ -2585,7 +3153,7 @@ declare const V1WorkspaceGroupSchema: z$1.ZodObject<{
|
|
|
2585
3153
|
updated_at: z$1.ZodISODateTime;
|
|
2586
3154
|
workspace_id: z$1.ZodString;
|
|
2587
3155
|
}, z$1.core.$strip>;
|
|
2588
|
-
declare const
|
|
3156
|
+
declare const WorkspaceGroupPageSchema: z$1.ZodObject<{
|
|
2589
3157
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2590
3158
|
created_at: z$1.ZodISODateTime;
|
|
2591
3159
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2601,25 +3169,37 @@ declare const CursorListResponseV1WorkspaceGroupSchema: z$1.ZodObject<{
|
|
|
2601
3169
|
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
2602
3170
|
}, z$1.core.$strip>;
|
|
2603
3171
|
}, z$1.core.$strip>;
|
|
2604
|
-
declare const
|
|
3172
|
+
declare const WorkspaceInsightsActivityFreshnessSchema: z$1.ZodObject<{
|
|
2605
3173
|
edits_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2606
3174
|
visitors_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2607
3175
|
}, z$1.core.$strip>;
|
|
2608
|
-
declare const
|
|
3176
|
+
declare const WorkspaceInsightsEdgeFunctionSchema: z$1.ZodObject<{
|
|
2609
3177
|
name: z$1.ZodString;
|
|
2610
3178
|
}, z$1.core.$strip>;
|
|
2611
|
-
declare const
|
|
2612
|
-
category: z$1.
|
|
3179
|
+
declare const WorkspaceInsightsFindingSchema: z$1.ZodObject<{
|
|
3180
|
+
category: z$1.ZodEnum<{
|
|
3181
|
+
data: "data";
|
|
3182
|
+
security: "security";
|
|
3183
|
+
exposure: "exposure";
|
|
3184
|
+
credentials: "credentials";
|
|
3185
|
+
access: "access";
|
|
3186
|
+
integrations: "integrations";
|
|
3187
|
+
runtime: "runtime";
|
|
3188
|
+
}>;
|
|
2613
3189
|
description: z$1.ZodString;
|
|
2614
3190
|
id: z$1.ZodString;
|
|
2615
3191
|
project_count: z$1.ZodNumber;
|
|
2616
|
-
severity: z$1.
|
|
3192
|
+
severity: z$1.ZodEnum<{
|
|
3193
|
+
needs_review: "needs_review";
|
|
3194
|
+
review_recommended: "review_recommended";
|
|
3195
|
+
no_review_needed: "no_review_needed";
|
|
3196
|
+
}>;
|
|
2617
3197
|
title: z$1.ZodString;
|
|
2618
3198
|
}, z$1.core.$strip>;
|
|
2619
|
-
declare const
|
|
3199
|
+
declare const WorkspaceInsightsOwnerSchema: z$1.ZodObject<{
|
|
2620
3200
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2621
3201
|
}, z$1.core.$strip>;
|
|
2622
|
-
declare const
|
|
3202
|
+
declare const WorkspaceInsightsReasonValuesSchema: z$1.ZodObject<{
|
|
2623
3203
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2624
3204
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2625
3205
|
error_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2629,12 +3209,24 @@ declare const V1WorkspaceInsightsReasonValuesSchema: z$1.ZodObject<{
|
|
|
2629
3209
|
shared_user_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2630
3210
|
warning_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2631
3211
|
}, z$1.core.$strip>;
|
|
2632
|
-
declare const
|
|
2633
|
-
category: z$1.
|
|
3212
|
+
declare const WorkspaceInsightsReasonSchema: z$1.ZodObject<{
|
|
3213
|
+
category: z$1.ZodEnum<{
|
|
3214
|
+
data: "data";
|
|
3215
|
+
security: "security";
|
|
3216
|
+
exposure: "exposure";
|
|
3217
|
+
credentials: "credentials";
|
|
3218
|
+
access: "access";
|
|
3219
|
+
integrations: "integrations";
|
|
3220
|
+
runtime: "runtime";
|
|
3221
|
+
}>;
|
|
2634
3222
|
detail: z$1.ZodString;
|
|
2635
3223
|
id: z$1.ZodString;
|
|
2636
3224
|
label: z$1.ZodString;
|
|
2637
|
-
severity: z$1.
|
|
3225
|
+
severity: z$1.ZodEnum<{
|
|
3226
|
+
needs_review: "needs_review";
|
|
3227
|
+
review_recommended: "review_recommended";
|
|
3228
|
+
no_review_needed: "no_review_needed";
|
|
3229
|
+
}>;
|
|
2638
3230
|
values: z$1.ZodOptional<z$1.ZodObject<{
|
|
2639
3231
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2640
3232
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2646,12 +3238,12 @@ declare const V1WorkspaceInsightsReasonSchema: z$1.ZodObject<{
|
|
|
2646
3238
|
warning_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2647
3239
|
}, z$1.core.$strip>>;
|
|
2648
3240
|
}, z$1.core.$strip>;
|
|
2649
|
-
declare const
|
|
3241
|
+
declare const WorkspaceInsightsReviewPrioritySchema: z$1.ZodObject<{
|
|
2650
3242
|
needs_review: z$1.ZodNumber;
|
|
2651
3243
|
no_review_needed: z$1.ZodNumber;
|
|
2652
3244
|
review_recommended: z$1.ZodNumber;
|
|
2653
3245
|
}, z$1.core.$strip>;
|
|
2654
|
-
declare const
|
|
3246
|
+
declare const WorkspaceInsightsSignalsSchema: z$1.ZodObject<{
|
|
2655
3247
|
chat_attachment_count: z$1.ZodNumber;
|
|
2656
3248
|
connector_count: z$1.ZodNumber;
|
|
2657
3249
|
edge_function_count: z$1.ZodNumber;
|
|
@@ -2682,8 +3274,12 @@ declare const V1WorkspaceInsightsSignalsSchema: z$1.ZodObject<{
|
|
|
2682
3274
|
supply_chain_warning_count: z$1.ZodNumber;
|
|
2683
3275
|
warning_count: z$1.ZodNumber;
|
|
2684
3276
|
}, z$1.core.$strip>;
|
|
2685
|
-
declare const
|
|
2686
|
-
activity_group: z$1.ZodOptional<z$1.
|
|
3277
|
+
declare const WorkspaceInsightsProjectSchema: z$1.ZodObject<{
|
|
3278
|
+
activity_group: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3279
|
+
last_14_days: "last_14_days";
|
|
3280
|
+
last_60_days: "last_60_days";
|
|
3281
|
+
older: "older";
|
|
3282
|
+
}>>;
|
|
2687
3283
|
connectors: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
2688
3284
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
2689
3285
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2700,11 +3296,23 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
|
|
|
2700
3296
|
last_edited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2701
3297
|
last_security_scan_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2702
3298
|
matched_reason: z$1.ZodOptional<z$1.ZodObject<{
|
|
2703
|
-
category: z$1.
|
|
3299
|
+
category: z$1.ZodEnum<{
|
|
3300
|
+
data: "data";
|
|
3301
|
+
security: "security";
|
|
3302
|
+
exposure: "exposure";
|
|
3303
|
+
credentials: "credentials";
|
|
3304
|
+
access: "access";
|
|
3305
|
+
integrations: "integrations";
|
|
3306
|
+
runtime: "runtime";
|
|
3307
|
+
}>;
|
|
2704
3308
|
detail: z$1.ZodString;
|
|
2705
3309
|
id: z$1.ZodString;
|
|
2706
3310
|
label: z$1.ZodString;
|
|
2707
|
-
severity: z$1.
|
|
3311
|
+
severity: z$1.ZodEnum<{
|
|
3312
|
+
needs_review: "needs_review";
|
|
3313
|
+
review_recommended: "review_recommended";
|
|
3314
|
+
no_review_needed: "no_review_needed";
|
|
3315
|
+
}>;
|
|
2708
3316
|
values: z$1.ZodOptional<z$1.ZodObject<{
|
|
2709
3317
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2710
3318
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2722,14 +3330,35 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
|
|
|
2722
3330
|
owner: z$1.ZodOptional<z$1.ZodObject<{
|
|
2723
3331
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2724
3332
|
}, z$1.core.$strip>>;
|
|
2725
|
-
publish_visibility: z$1.ZodOptional<z$1.
|
|
2726
|
-
|
|
3333
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3334
|
+
public: "public";
|
|
3335
|
+
private: "private";
|
|
3336
|
+
workspace_only: "workspace_only";
|
|
3337
|
+
}>>;
|
|
3338
|
+
review_priority: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3339
|
+
needs_review: "needs_review";
|
|
3340
|
+
review_recommended: "review_recommended";
|
|
3341
|
+
no_review_needed: "no_review_needed";
|
|
3342
|
+
unscored: "unscored";
|
|
3343
|
+
}>>;
|
|
2727
3344
|
review_priority_explanation: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2728
|
-
category: z$1.
|
|
3345
|
+
category: z$1.ZodEnum<{
|
|
3346
|
+
data: "data";
|
|
3347
|
+
security: "security";
|
|
3348
|
+
exposure: "exposure";
|
|
3349
|
+
credentials: "credentials";
|
|
3350
|
+
access: "access";
|
|
3351
|
+
integrations: "integrations";
|
|
3352
|
+
runtime: "runtime";
|
|
3353
|
+
}>;
|
|
2729
3354
|
detail: z$1.ZodString;
|
|
2730
3355
|
id: z$1.ZodString;
|
|
2731
3356
|
label: z$1.ZodString;
|
|
2732
|
-
severity: z$1.
|
|
3357
|
+
severity: z$1.ZodEnum<{
|
|
3358
|
+
needs_review: "needs_review";
|
|
3359
|
+
review_recommended: "review_recommended";
|
|
3360
|
+
no_review_needed: "no_review_needed";
|
|
3361
|
+
}>;
|
|
2733
3362
|
values: z$1.ZodOptional<z$1.ZodObject<{
|
|
2734
3363
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2735
3364
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2773,27 +3402,48 @@ declare const V1WorkspaceInsightsProjectSchema: z$1.ZodObject<{
|
|
|
2773
3402
|
warning_count: z$1.ZodNumber;
|
|
2774
3403
|
}, z$1.core.$strip>;
|
|
2775
3404
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
2776
|
-
visibility: z$1.ZodOptional<z$1.
|
|
3405
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3406
|
+
public: "public";
|
|
3407
|
+
private: "private";
|
|
3408
|
+
draft: "draft";
|
|
3409
|
+
workspace_view: "workspace_view";
|
|
3410
|
+
}>>;
|
|
2777
3411
|
visitors_24h: z$1.ZodNumber;
|
|
2778
3412
|
visitors_30d: z$1.ZodNumber;
|
|
2779
3413
|
visitors_7d: z$1.ZodNumber;
|
|
2780
3414
|
}, z$1.core.$strip>;
|
|
2781
|
-
declare const
|
|
3415
|
+
declare const WorkspaceInsightsProjectPageSchema: z$1.ZodObject<{
|
|
2782
3416
|
activity_as_of: z$1.ZodOptional<z$1.ZodObject<{
|
|
2783
3417
|
edits_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2784
3418
|
visitors_as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2785
3419
|
}, z$1.core.$strip>>;
|
|
2786
3420
|
applied_finding: z$1.ZodOptional<z$1.ZodObject<{
|
|
2787
|
-
category: z$1.
|
|
3421
|
+
category: z$1.ZodEnum<{
|
|
3422
|
+
data: "data";
|
|
3423
|
+
security: "security";
|
|
3424
|
+
exposure: "exposure";
|
|
3425
|
+
credentials: "credentials";
|
|
3426
|
+
access: "access";
|
|
3427
|
+
integrations: "integrations";
|
|
3428
|
+
runtime: "runtime";
|
|
3429
|
+
}>;
|
|
2788
3430
|
description: z$1.ZodString;
|
|
2789
3431
|
id: z$1.ZodString;
|
|
2790
3432
|
project_count: z$1.ZodNumber;
|
|
2791
|
-
severity: z$1.
|
|
3433
|
+
severity: z$1.ZodEnum<{
|
|
3434
|
+
needs_review: "needs_review";
|
|
3435
|
+
review_recommended: "review_recommended";
|
|
3436
|
+
no_review_needed: "no_review_needed";
|
|
3437
|
+
}>;
|
|
2792
3438
|
title: z$1.ZodString;
|
|
2793
3439
|
}, z$1.core.$strip>>;
|
|
2794
3440
|
as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2795
3441
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2796
|
-
activity_group: z$1.ZodOptional<z$1.
|
|
3442
|
+
activity_group: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3443
|
+
last_14_days: "last_14_days";
|
|
3444
|
+
last_60_days: "last_60_days";
|
|
3445
|
+
older: "older";
|
|
3446
|
+
}>>;
|
|
2797
3447
|
connectors: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>>;
|
|
2798
3448
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
2799
3449
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2810,11 +3460,23 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
|
|
|
2810
3460
|
last_edited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2811
3461
|
last_security_scan_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2812
3462
|
matched_reason: z$1.ZodOptional<z$1.ZodObject<{
|
|
2813
|
-
category: z$1.
|
|
3463
|
+
category: z$1.ZodEnum<{
|
|
3464
|
+
data: "data";
|
|
3465
|
+
security: "security";
|
|
3466
|
+
exposure: "exposure";
|
|
3467
|
+
credentials: "credentials";
|
|
3468
|
+
access: "access";
|
|
3469
|
+
integrations: "integrations";
|
|
3470
|
+
runtime: "runtime";
|
|
3471
|
+
}>;
|
|
2814
3472
|
detail: z$1.ZodString;
|
|
2815
3473
|
id: z$1.ZodString;
|
|
2816
3474
|
label: z$1.ZodString;
|
|
2817
|
-
severity: z$1.
|
|
3475
|
+
severity: z$1.ZodEnum<{
|
|
3476
|
+
needs_review: "needs_review";
|
|
3477
|
+
review_recommended: "review_recommended";
|
|
3478
|
+
no_review_needed: "no_review_needed";
|
|
3479
|
+
}>;
|
|
2818
3480
|
values: z$1.ZodOptional<z$1.ZodObject<{
|
|
2819
3481
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2820
3482
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2832,14 +3494,35 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
|
|
|
2832
3494
|
owner: z$1.ZodOptional<z$1.ZodObject<{
|
|
2833
3495
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2834
3496
|
}, z$1.core.$strip>>;
|
|
2835
|
-
publish_visibility: z$1.ZodOptional<z$1.
|
|
2836
|
-
|
|
3497
|
+
publish_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3498
|
+
public: "public";
|
|
3499
|
+
private: "private";
|
|
3500
|
+
workspace_only: "workspace_only";
|
|
3501
|
+
}>>;
|
|
3502
|
+
review_priority: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3503
|
+
needs_review: "needs_review";
|
|
3504
|
+
review_recommended: "review_recommended";
|
|
3505
|
+
no_review_needed: "no_review_needed";
|
|
3506
|
+
unscored: "unscored";
|
|
3507
|
+
}>>;
|
|
2837
3508
|
review_priority_explanation: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2838
|
-
category: z$1.
|
|
3509
|
+
category: z$1.ZodEnum<{
|
|
3510
|
+
data: "data";
|
|
3511
|
+
security: "security";
|
|
3512
|
+
exposure: "exposure";
|
|
3513
|
+
credentials: "credentials";
|
|
3514
|
+
access: "access";
|
|
3515
|
+
integrations: "integrations";
|
|
3516
|
+
runtime: "runtime";
|
|
3517
|
+
}>;
|
|
2839
3518
|
detail: z$1.ZodString;
|
|
2840
3519
|
id: z$1.ZodString;
|
|
2841
3520
|
label: z$1.ZodString;
|
|
2842
|
-
severity: z$1.
|
|
3521
|
+
severity: z$1.ZodEnum<{
|
|
3522
|
+
needs_review: "needs_review";
|
|
3523
|
+
review_recommended: "review_recommended";
|
|
3524
|
+
no_review_needed: "no_review_needed";
|
|
3525
|
+
}>;
|
|
2843
3526
|
values: z$1.ZodOptional<z$1.ZodObject<{
|
|
2844
3527
|
connector_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2845
3528
|
edge_function_count: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -2883,7 +3566,12 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
|
|
|
2883
3566
|
warning_count: z$1.ZodNumber;
|
|
2884
3567
|
}, z$1.core.$strip>;
|
|
2885
3568
|
url: z$1.ZodOptional<z$1.ZodString>;
|
|
2886
|
-
visibility: z$1.ZodOptional<z$1.
|
|
3569
|
+
visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3570
|
+
public: "public";
|
|
3571
|
+
private: "private";
|
|
3572
|
+
draft: "draft";
|
|
3573
|
+
workspace_view: "workspace_view";
|
|
3574
|
+
}>>;
|
|
2887
3575
|
visitors_24h: z$1.ZodNumber;
|
|
2888
3576
|
visitors_30d: z$1.ZodNumber;
|
|
2889
3577
|
visitors_7d: z$1.ZodNumber;
|
|
@@ -2894,12 +3582,12 @@ declare const V1WorkspaceInsightsProjectsBodySchema: z$1.ZodObject<{
|
|
|
2894
3582
|
}, z$1.core.$strip>;
|
|
2895
3583
|
total: z$1.ZodNumber;
|
|
2896
3584
|
}, z$1.core.$strip>;
|
|
2897
|
-
declare const
|
|
3585
|
+
declare const WorkspaceInsightsStatSchema: z$1.ZodObject<{
|
|
2898
3586
|
delta_30d: z$1.ZodNumber;
|
|
2899
3587
|
delta_window: z$1.ZodString;
|
|
2900
3588
|
value: z$1.ZodNumber;
|
|
2901
3589
|
}, z$1.core.$strip>;
|
|
2902
|
-
declare const
|
|
3590
|
+
declare const WorkspaceInsightsSummarySchema: z$1.ZodObject<{
|
|
2903
3591
|
externally_published: z$1.ZodObject<{
|
|
2904
3592
|
delta_30d: z$1.ZodNumber;
|
|
2905
3593
|
delta_window: z$1.ZodString;
|
|
@@ -2921,16 +3609,28 @@ declare const V1WorkspaceInsightsSummarySchema: z$1.ZodObject<{
|
|
|
2921
3609
|
value: z$1.ZodNumber;
|
|
2922
3610
|
}, z$1.core.$strip>;
|
|
2923
3611
|
}, z$1.core.$strip>;
|
|
2924
|
-
declare const
|
|
3612
|
+
declare const WorkspaceInsightsSchema: z$1.ZodObject<{
|
|
2925
3613
|
as_of: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2926
|
-
findings: z$1.
|
|
2927
|
-
category: z$1.
|
|
3614
|
+
findings: z$1.ZodArray<z$1.ZodObject<{
|
|
3615
|
+
category: z$1.ZodEnum<{
|
|
3616
|
+
data: "data";
|
|
3617
|
+
security: "security";
|
|
3618
|
+
exposure: "exposure";
|
|
3619
|
+
credentials: "credentials";
|
|
3620
|
+
access: "access";
|
|
3621
|
+
integrations: "integrations";
|
|
3622
|
+
runtime: "runtime";
|
|
3623
|
+
}>;
|
|
2928
3624
|
description: z$1.ZodString;
|
|
2929
3625
|
id: z$1.ZodString;
|
|
2930
3626
|
project_count: z$1.ZodNumber;
|
|
2931
|
-
severity: z$1.
|
|
3627
|
+
severity: z$1.ZodEnum<{
|
|
3628
|
+
needs_review: "needs_review";
|
|
3629
|
+
review_recommended: "review_recommended";
|
|
3630
|
+
no_review_needed: "no_review_needed";
|
|
3631
|
+
}>;
|
|
2932
3632
|
title: z$1.ZodString;
|
|
2933
|
-
}, z$1.core.$strip
|
|
3633
|
+
}, z$1.core.$strip>>;
|
|
2934
3634
|
summary: z$1.ZodObject<{
|
|
2935
3635
|
externally_published: z$1.ZodObject<{
|
|
2936
3636
|
delta_30d: z$1.ZodNumber;
|
|
@@ -2954,11 +3654,11 @@ declare const V1WorkspaceInsightsBodySchema: z$1.ZodObject<{
|
|
|
2954
3654
|
}, z$1.core.$strip>;
|
|
2955
3655
|
}, z$1.core.$strip>;
|
|
2956
3656
|
}, z$1.core.$strip>;
|
|
2957
|
-
declare const
|
|
3657
|
+
declare const WorkspaceMemberGroupSchema: z$1.ZodObject<{
|
|
2958
3658
|
id: z$1.ZodString;
|
|
2959
3659
|
name: z$1.ZodString;
|
|
2960
3660
|
}, z$1.core.$strip>;
|
|
2961
|
-
declare const
|
|
3661
|
+
declare const WorkspaceMemberSchema: z$1.ZodObject<{
|
|
2962
3662
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2963
3663
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
2964
3664
|
groups: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2968,11 +3668,17 @@ declare const V1WorkspaceMemberSchema: z$1.ZodObject<{
|
|
|
2968
3668
|
invited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2969
3669
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2970
3670
|
monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2971
|
-
role: z$1.
|
|
3671
|
+
role: z$1.ZodEnum<{
|
|
3672
|
+
owner: "owner";
|
|
3673
|
+
admin: "admin";
|
|
3674
|
+
member: "member";
|
|
3675
|
+
viewer: "viewer";
|
|
3676
|
+
collaborator: "collaborator";
|
|
3677
|
+
}>;
|
|
2972
3678
|
user_id: z$1.ZodString;
|
|
2973
3679
|
workspace_id: z$1.ZodString;
|
|
2974
3680
|
}, z$1.core.$strip>;
|
|
2975
|
-
declare const
|
|
3681
|
+
declare const WorkspaceMemberPageSchema: z$1.ZodObject<{
|
|
2976
3682
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
2977
3683
|
display_name: z$1.ZodOptional<z$1.ZodString>;
|
|
2978
3684
|
email: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -2983,7 +3689,13 @@ declare const CursorListResponseV1WorkspaceMemberSchema: z$1.ZodObject<{
|
|
|
2983
3689
|
invited_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2984
3690
|
joined_at: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2985
3691
|
monthly_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2986
|
-
role: z$1.
|
|
3692
|
+
role: z$1.ZodEnum<{
|
|
3693
|
+
owner: "owner";
|
|
3694
|
+
admin: "admin";
|
|
3695
|
+
member: "member";
|
|
3696
|
+
viewer: "viewer";
|
|
3697
|
+
collaborator: "collaborator";
|
|
3698
|
+
}>;
|
|
2987
3699
|
user_id: z$1.ZodString;
|
|
2988
3700
|
workspace_id: z$1.ZodString;
|
|
2989
3701
|
}, z$1.core.$strip>>>;
|
|
@@ -2992,18 +3704,32 @@ declare const CursorListResponseV1WorkspaceMemberSchema: z$1.ZodObject<{
|
|
|
2992
3704
|
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
2993
3705
|
}, z$1.core.$strip>;
|
|
2994
3706
|
}, z$1.core.$strip>;
|
|
2995
|
-
declare const
|
|
3707
|
+
declare const WorkspaceSettingsSchema: z$1.ZodObject<{
|
|
2996
3708
|
billing_period_end_date: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2997
3709
|
billing_period_start_date: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
2998
3710
|
default_monthly_member_credit_limit: z$1.ZodOptional<z$1.ZodNumber>;
|
|
2999
|
-
default_project_visibility: z$1.ZodOptional<z$1.
|
|
3711
|
+
default_project_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3712
|
+
public: "public";
|
|
3713
|
+
private: "private";
|
|
3714
|
+
draft: "draft";
|
|
3715
|
+
workspace_view: "workspace_view";
|
|
3716
|
+
}>>;
|
|
3000
3717
|
enable_pii: z$1.ZodBoolean;
|
|
3001
3718
|
enforce_sso: z$1.ZodBoolean;
|
|
3002
3719
|
id: z$1.ZodString;
|
|
3003
3720
|
name: z$1.ZodString;
|
|
3004
3721
|
num_seats: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3005
|
-
plan: z$1.
|
|
3006
|
-
|
|
3722
|
+
plan: z$1.ZodEnum<{
|
|
3723
|
+
free: "free";
|
|
3724
|
+
pro: "pro";
|
|
3725
|
+
business: "business";
|
|
3726
|
+
enterprise: "enterprise";
|
|
3727
|
+
}>;
|
|
3728
|
+
publishing_policy: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3729
|
+
workspace_only: "workspace_only";
|
|
3730
|
+
org_only: "org_only";
|
|
3731
|
+
disabled: "disabled";
|
|
3732
|
+
}>>;
|
|
3007
3733
|
}, z$1.core.$strip>;
|
|
3008
3734
|
declare const V1WorkspaceSkillDtoSchema: z$1.ZodObject<{
|
|
3009
3735
|
description: z$1.ZodString;
|
|
@@ -3079,12 +3805,12 @@ declare const V1WorkspaceUsageBreakdownBodySchema: z$1.ZodObject<{
|
|
|
3079
3805
|
next_cursor: z$1.ZodNullable<z$1.ZodString>;
|
|
3080
3806
|
}, z$1.core.$strip>;
|
|
3081
3807
|
}, z$1.core.$strip>;
|
|
3082
|
-
declare const
|
|
3808
|
+
declare const ConnectorUsageSchema: z$1.ZodObject<{
|
|
3083
3809
|
credits: z$1.ZodNumber;
|
|
3084
3810
|
key: z$1.ZodString;
|
|
3085
3811
|
label: z$1.ZodString;
|
|
3086
3812
|
}, z$1.core.$strip>;
|
|
3087
|
-
declare const
|
|
3813
|
+
declare const DatabaseUsageSchema: z$1.ZodObject<{
|
|
3088
3814
|
credits: z$1.ZodNumber;
|
|
3089
3815
|
key: z$1.ZodEnum<{
|
|
3090
3816
|
database_server: "database_server";
|
|
@@ -3092,12 +3818,12 @@ declare const V1WorkspaceUsageDatabaseBreakdownSchema: z$1.ZodObject<{
|
|
|
3092
3818
|
}>;
|
|
3093
3819
|
label: z$1.ZodString;
|
|
3094
3820
|
}, z$1.core.$strip>;
|
|
3095
|
-
declare const
|
|
3821
|
+
declare const GatewayModelUsageSchema: z$1.ZodObject<{
|
|
3096
3822
|
credits: z$1.ZodNumber;
|
|
3097
3823
|
name: z$1.ZodString;
|
|
3098
3824
|
provider: z$1.ZodString;
|
|
3099
3825
|
}, z$1.core.$strip>;
|
|
3100
|
-
declare const
|
|
3826
|
+
declare const CreditUsageEntrySchema: z$1.ZodObject<{
|
|
3101
3827
|
build: z$1.ZodNumber;
|
|
3102
3828
|
connectors: z$1.ZodNumber;
|
|
3103
3829
|
connectors_breakdown: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -3133,7 +3859,7 @@ declare const V1BillingUsageRowSchema: z$1.ZodObject<{
|
|
|
3133
3859
|
total: z$1.ZodNumber;
|
|
3134
3860
|
user_id: z$1.ZodOptional<z$1.ZodString>;
|
|
3135
3861
|
}, z$1.core.$strip>;
|
|
3136
|
-
declare const
|
|
3862
|
+
declare const CreditUsagePageSchema: z$1.ZodObject<{
|
|
3137
3863
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
3138
3864
|
build: z$1.ZodNumber;
|
|
3139
3865
|
connectors: z$1.ZodNumber;
|
|
@@ -3177,10 +3903,17 @@ declare const V1BillingUsageBodySchema: z$1.ZodObject<{
|
|
|
3177
3903
|
}, z$1.core.$strip>;
|
|
3178
3904
|
period: z$1.ZodObject<{
|
|
3179
3905
|
end: z$1.ZodString;
|
|
3180
|
-
group_by: z$1.ZodOptional<z$1.
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3906
|
+
group_by: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3907
|
+
project: "project";
|
|
3908
|
+
member: "member";
|
|
3909
|
+
}>>;
|
|
3910
|
+
interval: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3911
|
+
day: "day";
|
|
3912
|
+
week: "week";
|
|
3913
|
+
month: "month";
|
|
3914
|
+
}>>;
|
|
3915
|
+
start: z$1.ZodString;
|
|
3916
|
+
}, z$1.core.$strip>;
|
|
3184
3917
|
workspace_total: z$1.ZodNumber;
|
|
3185
3918
|
}, z$1.core.$strip>;
|
|
3186
3919
|
declare const V1WorkspaceUsageMeBodySchema: z$1.ZodObject<{
|
|
@@ -3324,15 +4057,15 @@ declare const V1WriteWorkspaceSkillOutputBodySchema: z$1.ZodObject<{
|
|
|
3324
4057
|
declare const VisibilityChangeInfoSchema: z$1.ZodObject<{
|
|
3325
4058
|
commit_time: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
3326
4059
|
new_visibility: z$1.ZodEnum<{
|
|
3327
|
-
draft: "draft";
|
|
3328
|
-
private: "private";
|
|
3329
4060
|
public: "public";
|
|
4061
|
+
private: "private";
|
|
4062
|
+
draft: "draft";
|
|
3330
4063
|
workspace_view: "workspace_view";
|
|
3331
4064
|
}>;
|
|
3332
4065
|
previous_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3333
|
-
draft: "draft";
|
|
3334
|
-
private: "private";
|
|
3335
4066
|
public: "public";
|
|
4067
|
+
private: "private";
|
|
4068
|
+
draft: "draft";
|
|
3336
4069
|
workspace_view: "workspace_view";
|
|
3337
4070
|
}>>;
|
|
3338
4071
|
project_id: z$1.ZodString;
|
|
@@ -3348,21 +4081,21 @@ declare const AddProjectsToFolderResultSchema: z$1.ZodObject<{
|
|
|
3348
4081
|
visibility_updated: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
3349
4082
|
commit_time: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
3350
4083
|
new_visibility: z$1.ZodEnum<{
|
|
3351
|
-
draft: "draft";
|
|
3352
|
-
private: "private";
|
|
3353
4084
|
public: "public";
|
|
4085
|
+
private: "private";
|
|
4086
|
+
draft: "draft";
|
|
3354
4087
|
workspace_view: "workspace_view";
|
|
3355
4088
|
}>;
|
|
3356
4089
|
previous_visibility: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3357
|
-
draft: "draft";
|
|
3358
|
-
private: "private";
|
|
3359
4090
|
public: "public";
|
|
4091
|
+
private: "private";
|
|
4092
|
+
draft: "draft";
|
|
3360
4093
|
workspace_view: "workspace_view";
|
|
3361
4094
|
}>>;
|
|
3362
4095
|
project_id: z$1.ZodString;
|
|
3363
4096
|
}, z$1.core.$strip>>>;
|
|
3364
4097
|
}, z$1.core.$strip>;
|
|
3365
|
-
declare const
|
|
4098
|
+
declare const WorkspaceAnalyticsSchema: z$1.ZodObject<{
|
|
3366
4099
|
timeSeries: z$1.ZodObject<{
|
|
3367
4100
|
bounceRate: z$1.ZodObject<{
|
|
3368
4101
|
data: z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -3407,8 +4140,1680 @@ declare const WorkspaceAnalyticsResponseSchema: z$1.ZodObject<{
|
|
|
3407
4140
|
}, z$1.core.$strip>;
|
|
3408
4141
|
}, z$1.core.$strip>;
|
|
3409
4142
|
//#endregion
|
|
4143
|
+
//#region src/schemas-deprecated.d.ts
|
|
4144
|
+
/** @deprecated Renamed to PiiLabelPageSchema. */
|
|
4145
|
+
declare const CursorListResponsePublicV1PiiLabelSchema: import("zod").ZodObject<{
|
|
4146
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4147
|
+
chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4148
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4149
|
+
found_at: import("zod").ZodISODateTime;
|
|
4150
|
+
id: import("zod").ZodString;
|
|
4151
|
+
info_type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4152
|
+
likelihood: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4153
|
+
likelihood_unspecified: "likelihood_unspecified";
|
|
4154
|
+
very_unlikely: "very_unlikely";
|
|
4155
|
+
unlikely: "unlikely";
|
|
4156
|
+
possible: "possible";
|
|
4157
|
+
likely: "likely";
|
|
4158
|
+
very_likely: "very_likely";
|
|
4159
|
+
}>>;
|
|
4160
|
+
quote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4161
|
+
sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4162
|
+
low: "low";
|
|
4163
|
+
mid: "mid";
|
|
4164
|
+
high: "high";
|
|
4165
|
+
}>>;
|
|
4166
|
+
source: import("zod").ZodEnum<{
|
|
4167
|
+
chat: "chat";
|
|
4168
|
+
upload: "upload";
|
|
4169
|
+
cloud_storage: "cloud_storage";
|
|
4170
|
+
cloud_sql: "cloud_sql";
|
|
4171
|
+
connector: "connector";
|
|
4172
|
+
}>;
|
|
4173
|
+
sql_location: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4174
|
+
status: import("zod").ZodEnum<{
|
|
4175
|
+
open: "open";
|
|
4176
|
+
ignored: "ignored";
|
|
4177
|
+
fixed: "fixed";
|
|
4178
|
+
}>;
|
|
4179
|
+
storage_path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4180
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4181
|
+
pagination: import("zod").ZodObject<{
|
|
4182
|
+
has_more: import("zod").ZodBoolean;
|
|
4183
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4184
|
+
}, import("zod/v4/core").$strip>;
|
|
4185
|
+
}, import("zod/v4/core").$strip>;
|
|
4186
|
+
/** @deprecated Renamed to ProjectSummaryPageSchema. */
|
|
4187
|
+
declare const CursorListResponsePublicV1ProjectListItemSchema: import("zod").ZodObject<{
|
|
4188
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4189
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4190
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4191
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4192
|
+
folder_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4193
|
+
generated_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4194
|
+
id: import("zod").ZodString;
|
|
4195
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4196
|
+
last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4197
|
+
latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4198
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4199
|
+
og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4200
|
+
project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4201
|
+
project: "project";
|
|
4202
|
+
library: "library";
|
|
4203
|
+
}>>;
|
|
4204
|
+
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4205
|
+
public: "public";
|
|
4206
|
+
private: "private";
|
|
4207
|
+
workspace_only: "workspace_only";
|
|
4208
|
+
}>>;
|
|
4209
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4210
|
+
in_progress: "in_progress";
|
|
4211
|
+
completed: "completed";
|
|
4212
|
+
failed: "failed";
|
|
4213
|
+
}>>;
|
|
4214
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4215
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4216
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4217
|
+
public: "public";
|
|
4218
|
+
private: "private";
|
|
4219
|
+
draft: "draft";
|
|
4220
|
+
workspace_view: "workspace_view";
|
|
4221
|
+
}>>;
|
|
4222
|
+
workspace_id: import("zod").ZodString;
|
|
4223
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4224
|
+
pagination: import("zod").ZodObject<{
|
|
4225
|
+
has_more: import("zod").ZodBoolean;
|
|
4226
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4227
|
+
}, import("zod/v4/core").$strip>;
|
|
4228
|
+
}, import("zod/v4/core").$strip>;
|
|
4229
|
+
/** @deprecated Renamed to ProjectCollaboratorPageSchema. */
|
|
4230
|
+
declare const CursorListResponseV1ProjectCollaboratorSchema: import("zod").ZodObject<{
|
|
4231
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4232
|
+
accepted_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4233
|
+
access_level: import("zod").ZodEnum<{
|
|
4234
|
+
owner: "owner";
|
|
4235
|
+
admin: "admin";
|
|
4236
|
+
write: "write";
|
|
4237
|
+
read: "read";
|
|
4238
|
+
none: "none";
|
|
4239
|
+
}>;
|
|
4240
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4241
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4242
|
+
invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4243
|
+
invited_by: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4244
|
+
is_internal: import("zod").ZodBoolean;
|
|
4245
|
+
is_workspace_member: import("zod").ZodBoolean;
|
|
4246
|
+
last_accessed_at: import("zod").ZodNullable<import("zod").ZodISODateTime>;
|
|
4247
|
+
user_id: import("zod").ZodString;
|
|
4248
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4249
|
+
pagination: import("zod").ZodObject<{
|
|
4250
|
+
has_more: import("zod").ZodBoolean;
|
|
4251
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4252
|
+
}, import("zod/v4/core").$strip>;
|
|
4253
|
+
}, import("zod/v4/core").$strip>;
|
|
4254
|
+
/** @deprecated Renamed to WorkspaceGroupPageSchema. */
|
|
4255
|
+
declare const CursorListResponseV1WorkspaceGroupSchema: import("zod").ZodObject<{
|
|
4256
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4257
|
+
created_at: import("zod").ZodISODateTime;
|
|
4258
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4259
|
+
id: import("zod").ZodString;
|
|
4260
|
+
member_count: import("zod").ZodNumber;
|
|
4261
|
+
name: import("zod").ZodString;
|
|
4262
|
+
scim_external_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4263
|
+
updated_at: import("zod").ZodISODateTime;
|
|
4264
|
+
workspace_id: import("zod").ZodString;
|
|
4265
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4266
|
+
pagination: import("zod").ZodObject<{
|
|
4267
|
+
has_more: import("zod").ZodBoolean;
|
|
4268
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4269
|
+
}, import("zod/v4/core").$strip>;
|
|
4270
|
+
}, import("zod/v4/core").$strip>;
|
|
4271
|
+
/** @deprecated Renamed to WorkspaceMemberPageSchema. */
|
|
4272
|
+
declare const CursorListResponseV1WorkspaceMemberSchema: import("zod").ZodObject<{
|
|
4273
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4274
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4275
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4276
|
+
groups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4277
|
+
id: import("zod").ZodString;
|
|
4278
|
+
name: import("zod").ZodString;
|
|
4279
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4280
|
+
invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4281
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4282
|
+
monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4283
|
+
role: import("zod").ZodEnum<{
|
|
4284
|
+
owner: "owner";
|
|
4285
|
+
admin: "admin";
|
|
4286
|
+
member: "member";
|
|
4287
|
+
viewer: "viewer";
|
|
4288
|
+
collaborator: "collaborator";
|
|
4289
|
+
}>;
|
|
4290
|
+
user_id: import("zod").ZodString;
|
|
4291
|
+
workspace_id: import("zod").ZodString;
|
|
4292
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4293
|
+
pagination: import("zod").ZodObject<{
|
|
4294
|
+
has_more: import("zod").ZodBoolean;
|
|
4295
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4296
|
+
}, import("zod/v4/core").$strip>;
|
|
4297
|
+
}, import("zod/v4/core").$strip>;
|
|
4298
|
+
/** @deprecated Renamed to CurrentUserSchema. */
|
|
4299
|
+
declare const GetMeOutputBodySchema: import("zod").ZodObject<{
|
|
4300
|
+
email: import("zod").ZodString;
|
|
4301
|
+
id: import("zod").ZodString;
|
|
4302
|
+
name: import("zod").ZodString;
|
|
4303
|
+
workspaces: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4304
|
+
id: import("zod").ZodString;
|
|
4305
|
+
name: import("zod").ZodString;
|
|
4306
|
+
role: import("zod").ZodEnum<{
|
|
4307
|
+
owner: "owner";
|
|
4308
|
+
admin: "admin";
|
|
4309
|
+
member: "member";
|
|
4310
|
+
viewer: "viewer";
|
|
4311
|
+
collaborator: "collaborator";
|
|
4312
|
+
}>;
|
|
4313
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4314
|
+
}, import("zod/v4/core").$strip>;
|
|
4315
|
+
/** @deprecated Renamed to CurrentUserWorkspaceSchema. */
|
|
4316
|
+
declare const GetMeWorkspaceSchema: import("zod").ZodObject<{
|
|
4317
|
+
id: import("zod").ZodString;
|
|
4318
|
+
name: import("zod").ZodString;
|
|
4319
|
+
role: import("zod").ZodEnum<{
|
|
4320
|
+
owner: "owner";
|
|
4321
|
+
admin: "admin";
|
|
4322
|
+
member: "member";
|
|
4323
|
+
viewer: "viewer";
|
|
4324
|
+
collaborator: "collaborator";
|
|
4325
|
+
}>;
|
|
4326
|
+
}, import("zod/v4/core").$strip>;
|
|
4327
|
+
/** @deprecated Renamed to AnalyticsBreakdownPointSchema. */
|
|
4328
|
+
declare const ListDataPointSchema: import("zod").ZodObject<{
|
|
4329
|
+
label: import("zod").ZodString;
|
|
4330
|
+
value: import("zod").ZodNumber;
|
|
4331
|
+
}, import("zod/v4/core").$strip>;
|
|
4332
|
+
/** @deprecated Renamed to AnalyticsBreakdownSchema. */
|
|
4333
|
+
declare const ListDataSchema: import("zod").ZodObject<{
|
|
4334
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4335
|
+
label: import("zod").ZodString;
|
|
4336
|
+
value: import("zod").ZodNumber;
|
|
4337
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4338
|
+
label: import("zod").ZodString;
|
|
4339
|
+
}, import("zod/v4/core").$strip>;
|
|
4340
|
+
/** @deprecated Renamed to AnalyticsBreakdownGroupSchema. */
|
|
4341
|
+
declare const ListsGroupSchema: import("zod").ZodObject<{
|
|
4342
|
+
country: import("zod").ZodObject<{
|
|
4343
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4344
|
+
label: import("zod").ZodString;
|
|
4345
|
+
value: import("zod").ZodNumber;
|
|
4346
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4347
|
+
label: import("zod").ZodString;
|
|
4348
|
+
}, import("zod/v4/core").$strip>;
|
|
4349
|
+
device: import("zod").ZodObject<{
|
|
4350
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4351
|
+
label: import("zod").ZodString;
|
|
4352
|
+
value: import("zod").ZodNumber;
|
|
4353
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4354
|
+
label: import("zod").ZodString;
|
|
4355
|
+
}, import("zod/v4/core").$strip>;
|
|
4356
|
+
page: import("zod").ZodObject<{
|
|
4357
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4358
|
+
label: import("zod").ZodString;
|
|
4359
|
+
value: import("zod").ZodNumber;
|
|
4360
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4361
|
+
label: import("zod").ZodString;
|
|
4362
|
+
}, import("zod/v4/core").$strip>;
|
|
4363
|
+
source: import("zod").ZodObject<{
|
|
4364
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4365
|
+
label: import("zod").ZodString;
|
|
4366
|
+
value: import("zod").ZodNumber;
|
|
4367
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4368
|
+
label: import("zod").ZodString;
|
|
4369
|
+
}, import("zod/v4/core").$strip>;
|
|
4370
|
+
}, import("zod/v4/core").$strip>;
|
|
4371
|
+
/** @deprecated Renamed to AnalyticsTrendSchema. */
|
|
4372
|
+
declare const ProjectTrendResponseSchema: import("zod").ZodObject<{
|
|
4373
|
+
currentVisitors: import("zod").ZodNumber;
|
|
4374
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4375
|
+
time: import("zod").ZodString;
|
|
4376
|
+
visits: import("zod").ZodNumber;
|
|
4377
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4378
|
+
}, import("zod/v4/core").$strip>;
|
|
4379
|
+
/** @deprecated Renamed to GetWorkspaceResponseSchema. */
|
|
4380
|
+
declare const PublicV1GetWorkspaceBodySchema: import("zod").ZodObject<{
|
|
4381
|
+
current_member: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4382
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4383
|
+
role: import("zod").ZodEnum<{
|
|
4384
|
+
owner: "owner";
|
|
4385
|
+
admin: "admin";
|
|
4386
|
+
member: "member";
|
|
4387
|
+
viewer: "viewer";
|
|
4388
|
+
collaborator: "collaborator";
|
|
4389
|
+
}>;
|
|
4390
|
+
user_id: import("zod").ZodString;
|
|
4391
|
+
}, import("zod/v4/core").$strip>>;
|
|
4392
|
+
workspace: import("zod").ZodObject<{
|
|
4393
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4394
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4395
|
+
id: import("zod").ZodString;
|
|
4396
|
+
image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4397
|
+
name: import("zod").ZodString;
|
|
4398
|
+
num_projects: import("zod").ZodNumber;
|
|
4399
|
+
plan: import("zod").ZodEnum<{
|
|
4400
|
+
free: "free";
|
|
4401
|
+
pro: "pro";
|
|
4402
|
+
business: "business";
|
|
4403
|
+
enterprise: "enterprise";
|
|
4404
|
+
}>;
|
|
4405
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4406
|
+
}, import("zod/v4/core").$strip>;
|
|
4407
|
+
}, import("zod/v4/core").$strip>;
|
|
4408
|
+
/** @deprecated Renamed to UpdateProjectRequestSchema. */
|
|
4409
|
+
declare const PublicV1PatchProjectBodySchema: import("zod").ZodObject<{
|
|
4410
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4411
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4412
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4413
|
+
public: "public";
|
|
4414
|
+
private: "private";
|
|
4415
|
+
draft: "draft";
|
|
4416
|
+
workspace_view: "workspace_view";
|
|
4417
|
+
}>>;
|
|
4418
|
+
}, import("zod/v4/core").$strip>;
|
|
4419
|
+
/** @deprecated Renamed to PiiLabelSchema. */
|
|
4420
|
+
declare const PublicV1PiiLabelSchema: import("zod").ZodObject<{
|
|
4421
|
+
chat_upload_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4422
|
+
connector_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4423
|
+
found_at: import("zod").ZodISODateTime;
|
|
4424
|
+
id: import("zod").ZodString;
|
|
4425
|
+
info_type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4426
|
+
likelihood: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4427
|
+
likelihood_unspecified: "likelihood_unspecified";
|
|
4428
|
+
very_unlikely: "very_unlikely";
|
|
4429
|
+
unlikely: "unlikely";
|
|
4430
|
+
possible: "possible";
|
|
4431
|
+
likely: "likely";
|
|
4432
|
+
very_likely: "very_likely";
|
|
4433
|
+
}>>;
|
|
4434
|
+
quote: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4435
|
+
sensitivity: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4436
|
+
low: "low";
|
|
4437
|
+
mid: "mid";
|
|
4438
|
+
high: "high";
|
|
4439
|
+
}>>;
|
|
4440
|
+
source: import("zod").ZodEnum<{
|
|
4441
|
+
chat: "chat";
|
|
4442
|
+
upload: "upload";
|
|
4443
|
+
cloud_storage: "cloud_storage";
|
|
4444
|
+
cloud_sql: "cloud_sql";
|
|
4445
|
+
connector: "connector";
|
|
4446
|
+
}>;
|
|
4447
|
+
sql_location: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4448
|
+
status: import("zod").ZodEnum<{
|
|
4449
|
+
open: "open";
|
|
4450
|
+
ignored: "ignored";
|
|
4451
|
+
fixed: "fixed";
|
|
4452
|
+
}>;
|
|
4453
|
+
storage_path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4454
|
+
}, import("zod/v4/core").$strip>;
|
|
4455
|
+
/** @deprecated Renamed to ProjectAnalyticsSchema. */
|
|
4456
|
+
declare const PublicV1ProjectAnalyticsBodySchema: import("zod").ZodObject<{
|
|
4457
|
+
lists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4458
|
+
country: import("zod").ZodObject<{
|
|
4459
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4460
|
+
label: import("zod").ZodString;
|
|
4461
|
+
value: import("zod").ZodNumber;
|
|
4462
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4463
|
+
label: import("zod").ZodString;
|
|
4464
|
+
}, import("zod/v4/core").$strip>;
|
|
4465
|
+
device: import("zod").ZodObject<{
|
|
4466
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4467
|
+
label: import("zod").ZodString;
|
|
4468
|
+
value: import("zod").ZodNumber;
|
|
4469
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4470
|
+
label: import("zod").ZodString;
|
|
4471
|
+
}, import("zod/v4/core").$strip>;
|
|
4472
|
+
page: import("zod").ZodObject<{
|
|
4473
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4474
|
+
label: import("zod").ZodString;
|
|
4475
|
+
value: import("zod").ZodNumber;
|
|
4476
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4477
|
+
label: import("zod").ZodString;
|
|
4478
|
+
}, import("zod/v4/core").$strip>;
|
|
4479
|
+
source: import("zod").ZodObject<{
|
|
4480
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4481
|
+
label: import("zod").ZodString;
|
|
4482
|
+
value: import("zod").ZodNumber;
|
|
4483
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4484
|
+
label: import("zod").ZodString;
|
|
4485
|
+
}, import("zod/v4/core").$strip>;
|
|
4486
|
+
}, import("zod/v4/core").$strip>>;
|
|
4487
|
+
timeSeries: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4488
|
+
bounceRate: import("zod").ZodObject<{
|
|
4489
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4490
|
+
date: import("zod").ZodString;
|
|
4491
|
+
value: import("zod").ZodNumber;
|
|
4492
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4493
|
+
label: import("zod").ZodString;
|
|
4494
|
+
total: import("zod").ZodNumber;
|
|
4495
|
+
}, import("zod/v4/core").$strip>;
|
|
4496
|
+
pageviews: import("zod").ZodObject<{
|
|
4497
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4498
|
+
date: import("zod").ZodString;
|
|
4499
|
+
value: import("zod").ZodNumber;
|
|
4500
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4501
|
+
label: import("zod").ZodString;
|
|
4502
|
+
total: import("zod").ZodNumber;
|
|
4503
|
+
}, import("zod/v4/core").$strip>;
|
|
4504
|
+
pageviewsPerVisit: import("zod").ZodObject<{
|
|
4505
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4506
|
+
date: import("zod").ZodString;
|
|
4507
|
+
value: import("zod").ZodNumber;
|
|
4508
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4509
|
+
label: import("zod").ZodString;
|
|
4510
|
+
total: import("zod").ZodNumber;
|
|
4511
|
+
}, import("zod/v4/core").$strip>;
|
|
4512
|
+
sessionDuration: import("zod").ZodObject<{
|
|
4513
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4514
|
+
date: import("zod").ZodString;
|
|
4515
|
+
value: import("zod").ZodNumber;
|
|
4516
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4517
|
+
label: import("zod").ZodString;
|
|
4518
|
+
total: import("zod").ZodNumber;
|
|
4519
|
+
}, import("zod/v4/core").$strip>;
|
|
4520
|
+
visitors: import("zod").ZodObject<{
|
|
4521
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4522
|
+
date: import("zod").ZodString;
|
|
4523
|
+
value: import("zod").ZodNumber;
|
|
4524
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4525
|
+
label: import("zod").ZodString;
|
|
4526
|
+
total: import("zod").ZodNumber;
|
|
4527
|
+
}, import("zod/v4/core").$strip>;
|
|
4528
|
+
}, import("zod/v4/core").$strip>>;
|
|
4529
|
+
trend: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4530
|
+
currentVisitors: import("zod").ZodNumber;
|
|
4531
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4532
|
+
time: import("zod").ZodString;
|
|
4533
|
+
visits: import("zod").ZodNumber;
|
|
4534
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4535
|
+
}, import("zod/v4/core").$strip>>;
|
|
4536
|
+
}, import("zod/v4/core").$strip>;
|
|
4537
|
+
/** @deprecated Renamed to ProjectSummarySchema. */
|
|
4538
|
+
declare const PublicV1ProjectListItemSchema: import("zod").ZodObject<{
|
|
4539
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4540
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4541
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4542
|
+
folder_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4543
|
+
generated_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4544
|
+
id: import("zod").ZodString;
|
|
4545
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4546
|
+
last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4547
|
+
latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4548
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4549
|
+
og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4550
|
+
project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4551
|
+
project: "project";
|
|
4552
|
+
library: "library";
|
|
4553
|
+
}>>;
|
|
4554
|
+
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4555
|
+
public: "public";
|
|
4556
|
+
private: "private";
|
|
4557
|
+
workspace_only: "workspace_only";
|
|
4558
|
+
}>>;
|
|
4559
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4560
|
+
in_progress: "in_progress";
|
|
4561
|
+
completed: "completed";
|
|
4562
|
+
failed: "failed";
|
|
4563
|
+
}>>;
|
|
4564
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4565
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4566
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4567
|
+
public: "public";
|
|
4568
|
+
private: "private";
|
|
4569
|
+
draft: "draft";
|
|
4570
|
+
workspace_view: "workspace_view";
|
|
4571
|
+
}>>;
|
|
4572
|
+
workspace_id: import("zod").ZodString;
|
|
4573
|
+
}, import("zod/v4/core").$strip>;
|
|
4574
|
+
/** @deprecated Renamed to PublishAudienceTargetSchema. */
|
|
4575
|
+
declare const PublicV1PublishAudienceTargetSchema: import("zod").ZodObject<{
|
|
4576
|
+
id: import("zod").ZodString;
|
|
4577
|
+
type: import("zod").ZodEnum<{
|
|
4578
|
+
group: "group";
|
|
4579
|
+
user: "user";
|
|
4580
|
+
}>;
|
|
4581
|
+
}, import("zod/v4/core").$strip>;
|
|
4582
|
+
/** @deprecated Renamed to PublishProjectRequestSchema. */
|
|
4583
|
+
declare const PublicV1PublishProjectInputBodySchema: import("zod").ZodObject<{
|
|
4584
|
+
audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4585
|
+
id: import("zod").ZodString;
|
|
4586
|
+
type: import("zod").ZodEnum<{
|
|
4587
|
+
group: "group";
|
|
4588
|
+
user: "user";
|
|
4589
|
+
}>;
|
|
4590
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4591
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4592
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4593
|
+
public: "public";
|
|
4594
|
+
custom: "custom";
|
|
4595
|
+
workspace: "workspace";
|
|
4596
|
+
}>>;
|
|
4597
|
+
}, import("zod/v4/core").$strip>;
|
|
4598
|
+
/** @deprecated Renamed to PublishProjectResponseSchema. */
|
|
4599
|
+
declare const PublicV1PublishProjectResponseSchema: import("zod").ZodObject<{
|
|
4600
|
+
deployment_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4601
|
+
status: import("zod").ZodEnum<{
|
|
4602
|
+
pending: "pending";
|
|
4603
|
+
}>;
|
|
4604
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4605
|
+
visibility: import("zod").ZodEnum<{
|
|
4606
|
+
public: "public";
|
|
4607
|
+
custom: "custom";
|
|
4608
|
+
workspace: "workspace";
|
|
4609
|
+
}>;
|
|
4610
|
+
}, import("zod/v4/core").$strip>;
|
|
4611
|
+
/** @deprecated Renamed to DeploymentSchema. */
|
|
4612
|
+
declare const PublicV1PublishStatusResponseSchema: import("zod").ZodObject<{
|
|
4613
|
+
deployment_id: import("zod").ZodString;
|
|
4614
|
+
error_class: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4615
|
+
transient: "transient";
|
|
4616
|
+
user_code: "user_code";
|
|
4617
|
+
user_config: "user_config";
|
|
4618
|
+
user_config_code: "user_config_code";
|
|
4619
|
+
user_config_external: "user_config_external";
|
|
4620
|
+
user_data: "user_data";
|
|
4621
|
+
blocked_by_policy: "blocked_by_policy";
|
|
4622
|
+
internal: "internal";
|
|
4623
|
+
}>>;
|
|
4624
|
+
error_code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4625
|
+
error_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4626
|
+
status: import("zod").ZodEnum<{
|
|
4627
|
+
completed: "completed";
|
|
4628
|
+
unknown: "unknown";
|
|
4629
|
+
error: "error";
|
|
4630
|
+
running: "running";
|
|
4631
|
+
}>;
|
|
4632
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4633
|
+
}, import("zod/v4/core").$strip>;
|
|
4634
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4635
|
+
declare const RemixJobSchema: import("zod").ZodObject<{
|
|
4636
|
+
error_code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4637
|
+
error_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4638
|
+
result: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4639
|
+
project_id: import("zod").ZodString;
|
|
4640
|
+
warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4641
|
+
code: import("zod").ZodEnum<{
|
|
4642
|
+
edge_functions_not_deployed: "edge_functions_not_deployed";
|
|
4643
|
+
integration_skipped: "integration_skipped";
|
|
4644
|
+
}>;
|
|
4645
|
+
failed_edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
4646
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4647
|
+
skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4648
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4649
|
+
}, import("zod/v4/core").$strip>>;
|
|
4650
|
+
status: import("zod").ZodEnum<{
|
|
4651
|
+
completed: "completed";
|
|
4652
|
+
unknown: "unknown";
|
|
4653
|
+
error: "error";
|
|
4654
|
+
running: "running";
|
|
4655
|
+
preparing: "preparing";
|
|
4656
|
+
}>;
|
|
4657
|
+
}, import("zod/v4/core").$strip>;
|
|
4658
|
+
/** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
|
|
4659
|
+
declare const PublicV1UpdatePublishSettingsInputBodySchema: import("zod").ZodObject<{
|
|
4660
|
+
audience: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4661
|
+
id: import("zod").ZodString;
|
|
4662
|
+
type: import("zod").ZodEnum<{
|
|
4663
|
+
group: "group";
|
|
4664
|
+
user: "user";
|
|
4665
|
+
}>;
|
|
4666
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4667
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4668
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4669
|
+
public: "public";
|
|
4670
|
+
custom: "custom";
|
|
4671
|
+
workspace: "workspace";
|
|
4672
|
+
}>>;
|
|
4673
|
+
}, import("zod/v4/core").$strip>;
|
|
4674
|
+
/** @deprecated Renamed to PublishSettingsSchema. */
|
|
4675
|
+
declare const PublicV1UpdatePublishSettingsResponseSchema: import("zod").ZodObject<{
|
|
4676
|
+
is_published: import("zod").ZodBoolean;
|
|
4677
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4678
|
+
visibility: import("zod").ZodEnum<{
|
|
4679
|
+
public: "public";
|
|
4680
|
+
custom: "custom";
|
|
4681
|
+
workspace: "workspace";
|
|
4682
|
+
}>;
|
|
4683
|
+
}, import("zod/v4/core").$strip>;
|
|
4684
|
+
/** @deprecated Renamed to WorkspaceMembershipSchema. */
|
|
4685
|
+
declare const PublicV1WorkspaceMemberSchema: import("zod").ZodObject<{
|
|
4686
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4687
|
+
role: import("zod").ZodEnum<{
|
|
4688
|
+
owner: "owner";
|
|
4689
|
+
admin: "admin";
|
|
4690
|
+
member: "member";
|
|
4691
|
+
viewer: "viewer";
|
|
4692
|
+
collaborator: "collaborator";
|
|
4693
|
+
}>;
|
|
4694
|
+
user_id: import("zod").ZodString;
|
|
4695
|
+
}, import("zod/v4/core").$strip>;
|
|
4696
|
+
/** @deprecated Renamed to WorkspaceSchema. */
|
|
4697
|
+
declare const PublicV1WorkspaceSchema: import("zod").ZodObject<{
|
|
4698
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4699
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4700
|
+
id: import("zod").ZodString;
|
|
4701
|
+
image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4702
|
+
name: import("zod").ZodString;
|
|
4703
|
+
num_projects: import("zod").ZodNumber;
|
|
4704
|
+
plan: import("zod").ZodEnum<{
|
|
4705
|
+
free: "free";
|
|
4706
|
+
pro: "pro";
|
|
4707
|
+
business: "business";
|
|
4708
|
+
enterprise: "enterprise";
|
|
4709
|
+
}>;
|
|
4710
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4711
|
+
}, import("zod/v4/core").$strip>;
|
|
4712
|
+
/** @deprecated Renamed to WorkspaceWithMembershipSchema. */
|
|
4713
|
+
declare const PublicV1WorkspaceWithMembershipSchema: import("zod").ZodObject<{
|
|
4714
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4715
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4716
|
+
id: import("zod").ZodString;
|
|
4717
|
+
image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4718
|
+
membership: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4719
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4720
|
+
role: import("zod").ZodEnum<{
|
|
4721
|
+
owner: "owner";
|
|
4722
|
+
admin: "admin";
|
|
4723
|
+
member: "member";
|
|
4724
|
+
viewer: "viewer";
|
|
4725
|
+
collaborator: "collaborator";
|
|
4726
|
+
}>;
|
|
4727
|
+
user_id: import("zod").ZodString;
|
|
4728
|
+
}, import("zod/v4/core").$strip>>;
|
|
4729
|
+
name: import("zod").ZodString;
|
|
4730
|
+
num_projects: import("zod").ZodNumber;
|
|
4731
|
+
plan: import("zod").ZodEnum<{
|
|
4732
|
+
free: "free";
|
|
4733
|
+
pro: "pro";
|
|
4734
|
+
business: "business";
|
|
4735
|
+
enterprise: "enterprise";
|
|
4736
|
+
}>;
|
|
4737
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4738
|
+
}, import("zod/v4/core").$strip>;
|
|
4739
|
+
/** @deprecated Renamed to BillingPeriodSchema. */
|
|
4740
|
+
declare const V1BillingPeriodSchema: import("zod").ZodObject<{
|
|
4741
|
+
end: import("zod").ZodISODateTime;
|
|
4742
|
+
start: import("zod").ZodISODateTime;
|
|
4743
|
+
}, import("zod/v4/core").$strip>;
|
|
4744
|
+
/** @deprecated Renamed to CreditUsagePageSchema. */
|
|
4745
|
+
declare const V1BillingUsageBodySchema: import("zod").ZodObject<{
|
|
4746
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4747
|
+
build: import("zod").ZodNumber;
|
|
4748
|
+
connectors: import("zod").ZodNumber;
|
|
4749
|
+
connectors_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4750
|
+
credits: import("zod").ZodNumber;
|
|
4751
|
+
key: import("zod").ZodString;
|
|
4752
|
+
label: import("zod").ZodString;
|
|
4753
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4754
|
+
database: import("zod").ZodNumber;
|
|
4755
|
+
database_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4756
|
+
credits: import("zod").ZodNumber;
|
|
4757
|
+
key: import("zod").ZodEnum<{
|
|
4758
|
+
database_server: "database_server";
|
|
4759
|
+
database_storage: "database_storage";
|
|
4760
|
+
}>;
|
|
4761
|
+
label: import("zod").ZodString;
|
|
4762
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4763
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4764
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4765
|
+
functions: import("zod").ZodNumber;
|
|
4766
|
+
gateway: import("zod").ZodNumber;
|
|
4767
|
+
gateway_models: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4768
|
+
credits: import("zod").ZodNumber;
|
|
4769
|
+
name: import("zod").ZodString;
|
|
4770
|
+
provider: import("zod").ZodString;
|
|
4771
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4772
|
+
network: import("zod").ZodNumber;
|
|
4773
|
+
period_end: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4774
|
+
period_start: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4775
|
+
project_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4776
|
+
realtime: import("zod").ZodNumber;
|
|
4777
|
+
run: import("zod").ZodNumber;
|
|
4778
|
+
storage: import("zod").ZodNumber;
|
|
4779
|
+
total: import("zod").ZodNumber;
|
|
4780
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4781
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4782
|
+
entity_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4783
|
+
pagination: import("zod").ZodObject<{
|
|
4784
|
+
has_more: import("zod").ZodBoolean;
|
|
4785
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4786
|
+
}, import("zod/v4/core").$strip>;
|
|
4787
|
+
period: import("zod").ZodObject<{
|
|
4788
|
+
end: import("zod").ZodString;
|
|
4789
|
+
group_by: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4790
|
+
project: "project";
|
|
4791
|
+
member: "member";
|
|
4792
|
+
}>>;
|
|
4793
|
+
interval: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4794
|
+
day: "day";
|
|
4795
|
+
week: "week";
|
|
4796
|
+
month: "month";
|
|
4797
|
+
}>>;
|
|
4798
|
+
start: import("zod").ZodString;
|
|
4799
|
+
}, import("zod/v4/core").$strip>;
|
|
4800
|
+
workspace_total: import("zod").ZodNumber;
|
|
4801
|
+
}, import("zod/v4/core").$strip>;
|
|
4802
|
+
/** @deprecated Renamed to CreditUsagePeriodSchema. */
|
|
4803
|
+
declare const V1BillingUsagePeriodSchema: import("zod").ZodObject<{
|
|
4804
|
+
end: import("zod").ZodString;
|
|
4805
|
+
group_by: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4806
|
+
project: "project";
|
|
4807
|
+
member: "member";
|
|
4808
|
+
}>>;
|
|
4809
|
+
interval: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4810
|
+
day: "day";
|
|
4811
|
+
week: "week";
|
|
4812
|
+
month: "month";
|
|
4813
|
+
}>>;
|
|
4814
|
+
start: import("zod").ZodString;
|
|
4815
|
+
}, import("zod/v4/core").$strip>;
|
|
4816
|
+
/** @deprecated Renamed to CreditUsageEntrySchema. */
|
|
4817
|
+
declare const V1BillingUsageRowSchema: import("zod").ZodObject<{
|
|
4818
|
+
build: import("zod").ZodNumber;
|
|
4819
|
+
connectors: import("zod").ZodNumber;
|
|
4820
|
+
connectors_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4821
|
+
credits: import("zod").ZodNumber;
|
|
4822
|
+
key: import("zod").ZodString;
|
|
4823
|
+
label: import("zod").ZodString;
|
|
4824
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4825
|
+
database: import("zod").ZodNumber;
|
|
4826
|
+
database_breakdown: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4827
|
+
credits: import("zod").ZodNumber;
|
|
4828
|
+
key: import("zod").ZodEnum<{
|
|
4829
|
+
database_server: "database_server";
|
|
4830
|
+
database_storage: "database_storage";
|
|
4831
|
+
}>;
|
|
4832
|
+
label: import("zod").ZodString;
|
|
4833
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4834
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4835
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4836
|
+
functions: import("zod").ZodNumber;
|
|
4837
|
+
gateway: import("zod").ZodNumber;
|
|
4838
|
+
gateway_models: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4839
|
+
credits: import("zod").ZodNumber;
|
|
4840
|
+
name: import("zod").ZodString;
|
|
4841
|
+
provider: import("zod").ZodString;
|
|
4842
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
4843
|
+
network: import("zod").ZodNumber;
|
|
4844
|
+
period_end: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4845
|
+
period_start: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4846
|
+
project_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4847
|
+
realtime: import("zod").ZodNumber;
|
|
4848
|
+
run: import("zod").ZodNumber;
|
|
4849
|
+
storage: import("zod").ZodNumber;
|
|
4850
|
+
total: import("zod").ZodNumber;
|
|
4851
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4852
|
+
}, import("zod/v4/core").$strip>;
|
|
4853
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4854
|
+
declare const MemberCreditLimitUpdateSchema: import("zod").ZodObject<{
|
|
4855
|
+
duration: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4856
|
+
permanent: "permanent";
|
|
4857
|
+
current_period: "current_period";
|
|
4858
|
+
}>>;
|
|
4859
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4860
|
+
monthly_credit_limit: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
4861
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4862
|
+
}, import("zod/v4/core").$strip>;
|
|
4863
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4864
|
+
declare const MemberCreditLimitResultSchema: import("zod").ZodObject<{
|
|
4865
|
+
approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4866
|
+
duration: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4867
|
+
current_period: "current_period";
|
|
4868
|
+
}>>;
|
|
4869
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4870
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4871
|
+
status: import("zod").ZodEnum<{
|
|
4872
|
+
success: "success";
|
|
4873
|
+
error: "error";
|
|
4874
|
+
}>;
|
|
4875
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4876
|
+
}, import("zod/v4/core").$strip>;
|
|
4877
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
4878
|
+
declare const SetMemberCreditLimitsResponseSchema: import("zod").ZodObject<{
|
|
4879
|
+
failed: import("zod").ZodNumber;
|
|
4880
|
+
results: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4881
|
+
approved_until: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4882
|
+
duration: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4883
|
+
current_period: "current_period";
|
|
4884
|
+
}>>;
|
|
4885
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4886
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4887
|
+
status: import("zod").ZodEnum<{
|
|
4888
|
+
success: "success";
|
|
4889
|
+
error: "error";
|
|
4890
|
+
}>;
|
|
4891
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4892
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4893
|
+
successful: import("zod").ZodNumber;
|
|
4894
|
+
total: import("zod").ZodNumber;
|
|
4895
|
+
}, import("zod/v4/core").$strip>;
|
|
4896
|
+
/** @deprecated Renamed to CreateEmbedUrlRequestSchema. */
|
|
4897
|
+
declare const V1CreateEmbedUrlInputBodySchema: import("zod").ZodObject<{
|
|
4898
|
+
parent_origin: import("zod").ZodString;
|
|
4899
|
+
}, import("zod/v4/core").$strip>;
|
|
4900
|
+
/** @deprecated Renamed to CreateEmbedUrlResponseSchema. */
|
|
4901
|
+
declare const V1CreateEmbedUrlOutputBodySchema: import("zod").ZodObject<{
|
|
4902
|
+
embed_url: import("zod").ZodString;
|
|
4903
|
+
expires_at: import("zod").ZodISODateTime;
|
|
4904
|
+
}, import("zod/v4/core").$strip>;
|
|
4905
|
+
/** @deprecated Renamed to CreditHistoryEntrySchema. */
|
|
4906
|
+
declare const V1CreditHistoryEntrySchema: import("zod").ZodObject<{
|
|
4907
|
+
credit_grant_id: import("zod").ZodString;
|
|
4908
|
+
credits_change: import("zod").ZodNumber;
|
|
4909
|
+
event_type: import("zod").ZodEnum<{
|
|
4910
|
+
granted: "granted";
|
|
4911
|
+
expired: "expired";
|
|
4912
|
+
adjustment: "adjustment";
|
|
4913
|
+
converted: "converted";
|
|
4914
|
+
}>;
|
|
4915
|
+
grant_type: import("zod").ZodEnum<{
|
|
4916
|
+
granted: "granted";
|
|
4917
|
+
billing: "billing";
|
|
4918
|
+
rollover: "rollover";
|
|
4919
|
+
topup: "topup";
|
|
4920
|
+
commitment: "commitment";
|
|
4921
|
+
cashback: "cashback";
|
|
4922
|
+
daily: "daily";
|
|
4923
|
+
}>;
|
|
4924
|
+
id: import("zod").ZodString;
|
|
4925
|
+
label: import("zod").ZodString;
|
|
4926
|
+
occurred_at: import("zod").ZodISODateTime;
|
|
4927
|
+
}, import("zod/v4/core").$strip>;
|
|
4928
|
+
/** @deprecated Renamed to WorkspacePageSchema. */
|
|
4929
|
+
declare const V1ListWorkspacesBodySchema: import("zod").ZodObject<{
|
|
4930
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4931
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4932
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4933
|
+
id: import("zod").ZodString;
|
|
4934
|
+
image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4935
|
+
membership: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4936
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4937
|
+
role: import("zod").ZodEnum<{
|
|
4938
|
+
owner: "owner";
|
|
4939
|
+
admin: "admin";
|
|
4940
|
+
member: "member";
|
|
4941
|
+
viewer: "viewer";
|
|
4942
|
+
collaborator: "collaborator";
|
|
4943
|
+
}>;
|
|
4944
|
+
user_id: import("zod").ZodString;
|
|
4945
|
+
}, import("zod/v4/core").$strip>>;
|
|
4946
|
+
name: import("zod").ZodString;
|
|
4947
|
+
num_projects: import("zod").ZodNumber;
|
|
4948
|
+
plan: import("zod").ZodEnum<{
|
|
4949
|
+
free: "free";
|
|
4950
|
+
pro: "pro";
|
|
4951
|
+
business: "business";
|
|
4952
|
+
enterprise: "enterprise";
|
|
4953
|
+
}>;
|
|
4954
|
+
updated_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4955
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4956
|
+
pagination: import("zod").ZodObject<{
|
|
4957
|
+
has_more: import("zod").ZodBoolean;
|
|
4958
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4959
|
+
}, import("zod/v4/core").$strip>;
|
|
4960
|
+
}, import("zod/v4/core").$strip>;
|
|
4961
|
+
/** @deprecated Renamed to ProjectCollaboratorSchema. */
|
|
4962
|
+
declare const V1ProjectCollaboratorSchema: import("zod").ZodObject<{
|
|
4963
|
+
accepted_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4964
|
+
access_level: import("zod").ZodEnum<{
|
|
4965
|
+
owner: "owner";
|
|
4966
|
+
admin: "admin";
|
|
4967
|
+
write: "write";
|
|
4968
|
+
read: "read";
|
|
4969
|
+
none: "none";
|
|
4970
|
+
}>;
|
|
4971
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4972
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4973
|
+
invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4974
|
+
invited_by: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4975
|
+
is_internal: import("zod").ZodBoolean;
|
|
4976
|
+
is_workspace_member: import("zod").ZodBoolean;
|
|
4977
|
+
last_accessed_at: import("zod").ZodNullable<import("zod").ZodISODateTime>;
|
|
4978
|
+
user_id: import("zod").ZodString;
|
|
4979
|
+
}, import("zod/v4/core").$strip>;
|
|
4980
|
+
/** @deprecated Renamed to ProjectSchema. */
|
|
4981
|
+
declare const V1ProjectResponseSchema: import("zod").ZodObject<{
|
|
4982
|
+
created_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4983
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4984
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4985
|
+
folder_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4986
|
+
generated_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4987
|
+
id: import("zod").ZodString;
|
|
4988
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4989
|
+
last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
4990
|
+
latest_commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4991
|
+
latest_screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4992
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4993
|
+
og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4994
|
+
preview_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4995
|
+
project_type: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4996
|
+
project: "project";
|
|
4997
|
+
library: "library";
|
|
4998
|
+
}>>;
|
|
4999
|
+
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5000
|
+
public: "public";
|
|
5001
|
+
private: "private";
|
|
5002
|
+
workspace_only: "workspace_only";
|
|
5003
|
+
}>>;
|
|
5004
|
+
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5005
|
+
in_progress: "in_progress";
|
|
5006
|
+
completed: "completed";
|
|
5007
|
+
failed: "failed";
|
|
5008
|
+
}>>;
|
|
5009
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5010
|
+
user_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5011
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5012
|
+
public: "public";
|
|
5013
|
+
private: "private";
|
|
5014
|
+
draft: "draft";
|
|
5015
|
+
workspace_view: "workspace_view";
|
|
5016
|
+
}>>;
|
|
5017
|
+
workspace_id: import("zod").ZodString;
|
|
5018
|
+
}, import("zod/v4/core").$strip>;
|
|
5019
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5020
|
+
declare const RemixResultSchema: import("zod").ZodObject<{
|
|
5021
|
+
project_id: import("zod").ZodString;
|
|
5022
|
+
warnings: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5023
|
+
code: import("zod").ZodEnum<{
|
|
5024
|
+
edge_functions_not_deployed: "edge_functions_not_deployed";
|
|
5025
|
+
integration_skipped: "integration_skipped";
|
|
5026
|
+
}>;
|
|
5027
|
+
failed_edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5028
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5029
|
+
skipped_integration: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5030
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
5031
|
+
}, import("zod/v4/core").$strip>;
|
|
5032
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5033
|
+
declare const SecurityScanActorSchema: import("zod").ZodObject<{
|
|
5034
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5035
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5036
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5037
|
+
type: import("zod").ZodEnum<{
|
|
5038
|
+
user: "user";
|
|
5039
|
+
system: "system";
|
|
5040
|
+
}>;
|
|
5041
|
+
}, import("zod/v4/core").$strip>;
|
|
5042
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5043
|
+
declare const SecurityScannerRunSchema: import("zod").ZodObject<{
|
|
5044
|
+
commit_sha: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5045
|
+
error_message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5046
|
+
finished_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5047
|
+
scanner_name: import("zod").ZodString;
|
|
5048
|
+
scanner_version: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5049
|
+
started_at: import("zod").ZodISODateTime;
|
|
5050
|
+
status: import("zod").ZodEnum<{
|
|
5051
|
+
failed: "failed";
|
|
5052
|
+
succeeded: "succeeded";
|
|
5053
|
+
skipped: "skipped";
|
|
5054
|
+
}>;
|
|
5055
|
+
}, import("zod/v4/core").$strip>;
|
|
5056
|
+
/** @deprecated Retained for legacy endpoints. */
|
|
5057
|
+
declare const TriggerSecurityScanResponseSchema: import("zod").ZodObject<{
|
|
5058
|
+
message: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5059
|
+
scan_id: import("zod").ZodString;
|
|
5060
|
+
status: import("zod").ZodEnum<{
|
|
5061
|
+
completed: "completed";
|
|
5062
|
+
running: "running";
|
|
5063
|
+
started: "started";
|
|
5064
|
+
}>;
|
|
5065
|
+
}, import("zod/v4/core").$strip>;
|
|
5066
|
+
/** @deprecated Renamed to CreditHistoryPageSchema. */
|
|
5067
|
+
declare const V1WorkspaceCreditHistoryBodySchema: import("zod").ZodObject<{
|
|
5068
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5069
|
+
credit_grant_id: import("zod").ZodString;
|
|
5070
|
+
credits_change: import("zod").ZodNumber;
|
|
5071
|
+
event_type: import("zod").ZodEnum<{
|
|
5072
|
+
granted: "granted";
|
|
5073
|
+
expired: "expired";
|
|
5074
|
+
adjustment: "adjustment";
|
|
5075
|
+
converted: "converted";
|
|
5076
|
+
}>;
|
|
5077
|
+
grant_type: import("zod").ZodEnum<{
|
|
5078
|
+
granted: "granted";
|
|
5079
|
+
billing: "billing";
|
|
5080
|
+
rollover: "rollover";
|
|
5081
|
+
topup: "topup";
|
|
5082
|
+
commitment: "commitment";
|
|
5083
|
+
cashback: "cashback";
|
|
5084
|
+
daily: "daily";
|
|
5085
|
+
}>;
|
|
5086
|
+
id: import("zod").ZodString;
|
|
5087
|
+
label: import("zod").ZodString;
|
|
5088
|
+
occurred_at: import("zod").ZodISODateTime;
|
|
5089
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5090
|
+
pagination: import("zod").ZodObject<{
|
|
5091
|
+
has_more: import("zod").ZodBoolean;
|
|
5092
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5093
|
+
}, import("zod/v4/core").$strip>;
|
|
5094
|
+
total: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5095
|
+
total_is_capped: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5096
|
+
}, import("zod/v4/core").$strip>;
|
|
5097
|
+
/** @deprecated Renamed to CreditBalanceSchema. */
|
|
5098
|
+
declare const V1WorkspaceCreditsBodySchema: import("zod").ZodObject<{
|
|
5099
|
+
billing_period: import("zod").ZodObject<{
|
|
5100
|
+
end: import("zod").ZodISODateTime;
|
|
5101
|
+
start: import("zod").ZodISODateTime;
|
|
5102
|
+
}, import("zod/v4/core").$strip>;
|
|
5103
|
+
daily_limit: import("zod").ZodNumber;
|
|
5104
|
+
daily_remaining: import("zod").ZodNumber;
|
|
5105
|
+
expiring_grants: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5106
|
+
applicability: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5107
|
+
generic: "generic";
|
|
5108
|
+
build_time: "build_time";
|
|
5109
|
+
build_mode: "build_mode";
|
|
5110
|
+
plan_mode: "plan_mode";
|
|
5111
|
+
}>>;
|
|
5112
|
+
credits: import("zod").ZodNumber;
|
|
5113
|
+
expires_at: import("zod").ZodISODateTime;
|
|
5114
|
+
grant_type: import("zod").ZodEnum<{
|
|
5115
|
+
granted: "granted";
|
|
5116
|
+
billing: "billing";
|
|
5117
|
+
rollover: "rollover";
|
|
5118
|
+
topup: "topup";
|
|
5119
|
+
commitment: "commitment";
|
|
5120
|
+
cashback: "cashback";
|
|
5121
|
+
overage: "overage";
|
|
5122
|
+
unlimited: "unlimited";
|
|
5123
|
+
allowance: "allowance";
|
|
5124
|
+
}>;
|
|
5125
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5126
|
+
grant_type_balances: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5127
|
+
grant_type: import("zod").ZodEnum<{
|
|
5128
|
+
granted: "granted";
|
|
5129
|
+
billing: "billing";
|
|
5130
|
+
rollover: "rollover";
|
|
5131
|
+
topup: "topup";
|
|
5132
|
+
commitment: "commitment";
|
|
5133
|
+
cashback: "cashback";
|
|
5134
|
+
daily: "daily";
|
|
5135
|
+
overage: "overage";
|
|
5136
|
+
unlimited: "unlimited";
|
|
5137
|
+
allowance: "allowance";
|
|
5138
|
+
}>;
|
|
5139
|
+
granted: import("zod").ZodNumber;
|
|
5140
|
+
remaining: import("zod").ZodNumber;
|
|
5141
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5142
|
+
total_billing_period_used: import("zod").ZodNumber;
|
|
5143
|
+
total_granted: import("zod").ZodNumber;
|
|
5144
|
+
total_remaining: import("zod").ZodNumber;
|
|
5145
|
+
}, import("zod/v4/core").$strip>;
|
|
5146
|
+
/** @deprecated Renamed to ExpiringCreditGrantSchema. */
|
|
5147
|
+
declare const V1WorkspaceCreditsExpiringGrantSchema: import("zod").ZodObject<{
|
|
5148
|
+
applicability: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5149
|
+
generic: "generic";
|
|
5150
|
+
build_time: "build_time";
|
|
5151
|
+
build_mode: "build_mode";
|
|
5152
|
+
plan_mode: "plan_mode";
|
|
5153
|
+
}>>;
|
|
5154
|
+
credits: import("zod").ZodNumber;
|
|
5155
|
+
expires_at: import("zod").ZodISODateTime;
|
|
5156
|
+
grant_type: import("zod").ZodEnum<{
|
|
5157
|
+
granted: "granted";
|
|
5158
|
+
billing: "billing";
|
|
5159
|
+
rollover: "rollover";
|
|
5160
|
+
topup: "topup";
|
|
5161
|
+
commitment: "commitment";
|
|
5162
|
+
cashback: "cashback";
|
|
5163
|
+
overage: "overage";
|
|
5164
|
+
unlimited: "unlimited";
|
|
5165
|
+
allowance: "allowance";
|
|
5166
|
+
}>;
|
|
5167
|
+
}, import("zod/v4/core").$strip>;
|
|
5168
|
+
/** @deprecated Renamed to CreditGrantTypeBalanceSchema. */
|
|
5169
|
+
declare const V1WorkspaceCreditsGrantTypeBalanceSchema: import("zod").ZodObject<{
|
|
5170
|
+
grant_type: import("zod").ZodEnum<{
|
|
5171
|
+
granted: "granted";
|
|
5172
|
+
billing: "billing";
|
|
5173
|
+
rollover: "rollover";
|
|
5174
|
+
topup: "topup";
|
|
5175
|
+
commitment: "commitment";
|
|
5176
|
+
cashback: "cashback";
|
|
5177
|
+
daily: "daily";
|
|
5178
|
+
overage: "overage";
|
|
5179
|
+
unlimited: "unlimited";
|
|
5180
|
+
allowance: "allowance";
|
|
5181
|
+
}>;
|
|
5182
|
+
granted: import("zod").ZodNumber;
|
|
5183
|
+
remaining: import("zod").ZodNumber;
|
|
5184
|
+
}, import("zod/v4/core").$strip>;
|
|
5185
|
+
/** @deprecated Renamed to WorkspaceGroupSchema. */
|
|
5186
|
+
declare const V1WorkspaceGroupSchema: import("zod").ZodObject<{
|
|
5187
|
+
created_at: import("zod").ZodISODateTime;
|
|
5188
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5189
|
+
id: import("zod").ZodString;
|
|
5190
|
+
member_count: import("zod").ZodNumber;
|
|
5191
|
+
name: import("zod").ZodString;
|
|
5192
|
+
scim_external_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5193
|
+
updated_at: import("zod").ZodISODateTime;
|
|
5194
|
+
workspace_id: import("zod").ZodString;
|
|
5195
|
+
}, import("zod/v4/core").$strip>;
|
|
5196
|
+
/** @deprecated Renamed to WorkspaceInsightsActivityFreshnessSchema. */
|
|
5197
|
+
declare const V1WorkspaceInsightsActivityFreshnessSchema: import("zod").ZodObject<{
|
|
5198
|
+
edits_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5199
|
+
visitors_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5200
|
+
}, import("zod/v4/core").$strip>;
|
|
5201
|
+
/** @deprecated Renamed to WorkspaceInsightsSchema. */
|
|
5202
|
+
declare const V1WorkspaceInsightsBodySchema: import("zod").ZodObject<{
|
|
5203
|
+
as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5204
|
+
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5205
|
+
category: import("zod").ZodEnum<{
|
|
5206
|
+
data: "data";
|
|
5207
|
+
security: "security";
|
|
5208
|
+
exposure: "exposure";
|
|
5209
|
+
credentials: "credentials";
|
|
5210
|
+
access: "access";
|
|
5211
|
+
integrations: "integrations";
|
|
5212
|
+
runtime: "runtime";
|
|
5213
|
+
}>;
|
|
5214
|
+
description: import("zod").ZodString;
|
|
5215
|
+
id: import("zod").ZodString;
|
|
5216
|
+
project_count: import("zod").ZodNumber;
|
|
5217
|
+
severity: import("zod").ZodEnum<{
|
|
5218
|
+
needs_review: "needs_review";
|
|
5219
|
+
review_recommended: "review_recommended";
|
|
5220
|
+
no_review_needed: "no_review_needed";
|
|
5221
|
+
}>;
|
|
5222
|
+
title: import("zod").ZodString;
|
|
5223
|
+
}, import("zod/v4/core").$strip>>;
|
|
5224
|
+
summary: import("zod").ZodObject<{
|
|
5225
|
+
externally_published: import("zod").ZodObject<{
|
|
5226
|
+
delta_30d: import("zod").ZodNumber;
|
|
5227
|
+
delta_window: import("zod").ZodString;
|
|
5228
|
+
value: import("zod").ZodNumber;
|
|
5229
|
+
}, import("zod/v4/core").$strip>;
|
|
5230
|
+
risk: import("zod").ZodObject<{
|
|
5231
|
+
needs_review: import("zod").ZodNumber;
|
|
5232
|
+
no_review_needed: import("zod").ZodNumber;
|
|
5233
|
+
review_recommended: import("zod").ZodNumber;
|
|
5234
|
+
}, import("zod/v4/core").$strip>;
|
|
5235
|
+
total_projects: import("zod").ZodObject<{
|
|
5236
|
+
delta_30d: import("zod").ZodNumber;
|
|
5237
|
+
delta_window: import("zod").ZodString;
|
|
5238
|
+
value: import("zod").ZodNumber;
|
|
5239
|
+
}, import("zod/v4/core").$strip>;
|
|
5240
|
+
workspace_members: import("zod").ZodObject<{
|
|
5241
|
+
delta_30d: import("zod").ZodNumber;
|
|
5242
|
+
delta_window: import("zod").ZodString;
|
|
5243
|
+
value: import("zod").ZodNumber;
|
|
5244
|
+
}, import("zod/v4/core").$strip>;
|
|
5245
|
+
}, import("zod/v4/core").$strip>;
|
|
5246
|
+
}, import("zod/v4/core").$strip>;
|
|
5247
|
+
/** @deprecated Renamed to WorkspaceInsightsEdgeFunctionSchema. */
|
|
5248
|
+
declare const V1WorkspaceInsightsEdgeFunctionSchema: import("zod").ZodObject<{
|
|
5249
|
+
name: import("zod").ZodString;
|
|
5250
|
+
}, import("zod/v4/core").$strip>;
|
|
5251
|
+
/** @deprecated Renamed to WorkspaceInsightsFindingSchema. */
|
|
5252
|
+
declare const V1WorkspaceInsightsFindingSchema: import("zod").ZodObject<{
|
|
5253
|
+
category: import("zod").ZodEnum<{
|
|
5254
|
+
data: "data";
|
|
5255
|
+
security: "security";
|
|
5256
|
+
exposure: "exposure";
|
|
5257
|
+
credentials: "credentials";
|
|
5258
|
+
access: "access";
|
|
5259
|
+
integrations: "integrations";
|
|
5260
|
+
runtime: "runtime";
|
|
5261
|
+
}>;
|
|
5262
|
+
description: import("zod").ZodString;
|
|
5263
|
+
id: import("zod").ZodString;
|
|
5264
|
+
project_count: import("zod").ZodNumber;
|
|
5265
|
+
severity: import("zod").ZodEnum<{
|
|
5266
|
+
needs_review: "needs_review";
|
|
5267
|
+
review_recommended: "review_recommended";
|
|
5268
|
+
no_review_needed: "no_review_needed";
|
|
5269
|
+
}>;
|
|
5270
|
+
title: import("zod").ZodString;
|
|
5271
|
+
}, import("zod/v4/core").$strip>;
|
|
5272
|
+
/** @deprecated Renamed to WorkspaceInsightsOwnerSchema. */
|
|
5273
|
+
declare const V1WorkspaceInsightsOwnerSchema: import("zod").ZodObject<{
|
|
5274
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5275
|
+
}, import("zod/v4/core").$strip>;
|
|
5276
|
+
/** @deprecated Renamed to WorkspaceInsightsProjectSchema. */
|
|
5277
|
+
declare const V1WorkspaceInsightsProjectSchema: import("zod").ZodObject<{
|
|
5278
|
+
activity_group: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5279
|
+
last_14_days: "last_14_days";
|
|
5280
|
+
last_60_days: "last_60_days";
|
|
5281
|
+
older: "older";
|
|
5282
|
+
}>>;
|
|
5283
|
+
connectors: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5284
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5285
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5286
|
+
edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5287
|
+
name: import("zod").ZodString;
|
|
5288
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
5289
|
+
edit_count: import("zod").ZodNumber;
|
|
5290
|
+
edits_24h: import("zod").ZodNumber;
|
|
5291
|
+
edits_30d: import("zod").ZodNumber;
|
|
5292
|
+
edits_7d: import("zod").ZodNumber;
|
|
5293
|
+
generated_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5294
|
+
id: import("zod").ZodString;
|
|
5295
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5296
|
+
last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5297
|
+
last_security_scan_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5298
|
+
matched_reason: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5299
|
+
category: import("zod").ZodEnum<{
|
|
5300
|
+
data: "data";
|
|
5301
|
+
security: "security";
|
|
5302
|
+
exposure: "exposure";
|
|
5303
|
+
credentials: "credentials";
|
|
5304
|
+
access: "access";
|
|
5305
|
+
integrations: "integrations";
|
|
5306
|
+
runtime: "runtime";
|
|
5307
|
+
}>;
|
|
5308
|
+
detail: import("zod").ZodString;
|
|
5309
|
+
id: import("zod").ZodString;
|
|
5310
|
+
label: import("zod").ZodString;
|
|
5311
|
+
severity: import("zod").ZodEnum<{
|
|
5312
|
+
needs_review: "needs_review";
|
|
5313
|
+
review_recommended: "review_recommended";
|
|
5314
|
+
no_review_needed: "no_review_needed";
|
|
5315
|
+
}>;
|
|
5316
|
+
values: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5317
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5318
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5319
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5320
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5321
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5322
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5323
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5324
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5325
|
+
}, import("zod/v4/core").$strip>>;
|
|
5326
|
+
}, import("zod/v4/core").$strip>>;
|
|
5327
|
+
message_count: import("zod").ZodNumber;
|
|
5328
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5329
|
+
og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5330
|
+
owner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5331
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5332
|
+
}, import("zod/v4/core").$strip>>;
|
|
5333
|
+
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5334
|
+
public: "public";
|
|
5335
|
+
private: "private";
|
|
5336
|
+
workspace_only: "workspace_only";
|
|
5337
|
+
}>>;
|
|
5338
|
+
review_priority: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5339
|
+
needs_review: "needs_review";
|
|
5340
|
+
review_recommended: "review_recommended";
|
|
5341
|
+
no_review_needed: "no_review_needed";
|
|
5342
|
+
unscored: "unscored";
|
|
5343
|
+
}>>;
|
|
5344
|
+
review_priority_explanation: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5345
|
+
category: import("zod").ZodEnum<{
|
|
5346
|
+
data: "data";
|
|
5347
|
+
security: "security";
|
|
5348
|
+
exposure: "exposure";
|
|
5349
|
+
credentials: "credentials";
|
|
5350
|
+
access: "access";
|
|
5351
|
+
integrations: "integrations";
|
|
5352
|
+
runtime: "runtime";
|
|
5353
|
+
}>;
|
|
5354
|
+
detail: import("zod").ZodString;
|
|
5355
|
+
id: import("zod").ZodString;
|
|
5356
|
+
label: import("zod").ZodString;
|
|
5357
|
+
severity: import("zod").ZodEnum<{
|
|
5358
|
+
needs_review: "needs_review";
|
|
5359
|
+
review_recommended: "review_recommended";
|
|
5360
|
+
no_review_needed: "no_review_needed";
|
|
5361
|
+
}>;
|
|
5362
|
+
values: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5363
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5364
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5365
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5366
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5367
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5368
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5369
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5370
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5371
|
+
}, import("zod/v4/core").$strip>>;
|
|
5372
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5373
|
+
signals: import("zod").ZodObject<{
|
|
5374
|
+
chat_attachment_count: import("zod").ZodNumber;
|
|
5375
|
+
connector_count: import("zod").ZodNumber;
|
|
5376
|
+
edge_function_count: import("zod").ZodNumber;
|
|
5377
|
+
error_count: import("zod").ZodNumber;
|
|
5378
|
+
external_collaborators_known: import("zod").ZodBoolean;
|
|
5379
|
+
has_chat_attachment: import("zod").ZodBoolean;
|
|
5380
|
+
has_external_collaborators: import("zod").ZodBoolean;
|
|
5381
|
+
has_pii: import("zod").ZodBoolean;
|
|
5382
|
+
has_project_asset: import("zod").ZodBoolean;
|
|
5383
|
+
has_project_secret: import("zod").ZodBoolean;
|
|
5384
|
+
info_count: import("zod").ZodNumber;
|
|
5385
|
+
is_orphaned: import("zod").ZodBoolean;
|
|
5386
|
+
is_public_published: import("zod").ZodBoolean;
|
|
5387
|
+
is_published: import("zod").ZodBoolean;
|
|
5388
|
+
lovable_cloud_enabled: import("zod").ZodBoolean;
|
|
5389
|
+
open_pii_finding_count: import("zod").ZodNumber;
|
|
5390
|
+
overshared: import("zod").ZodBoolean;
|
|
5391
|
+
project_asset_count: import("zod").ZodNumber;
|
|
5392
|
+
project_secret_count: import("zod").ZodNumber;
|
|
5393
|
+
shared_user_count: import("zod").ZodNumber;
|
|
5394
|
+
supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5395
|
+
supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5396
|
+
supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5397
|
+
supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5398
|
+
supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5399
|
+
supply_chain_error_count: import("zod").ZodNumber;
|
|
5400
|
+
supply_chain_info_count: import("zod").ZodNumber;
|
|
5401
|
+
supply_chain_warning_count: import("zod").ZodNumber;
|
|
5402
|
+
warning_count: import("zod").ZodNumber;
|
|
5403
|
+
}, import("zod/v4/core").$strip>;
|
|
5404
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5405
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5406
|
+
public: "public";
|
|
5407
|
+
private: "private";
|
|
5408
|
+
draft: "draft";
|
|
5409
|
+
workspace_view: "workspace_view";
|
|
5410
|
+
}>>;
|
|
5411
|
+
visitors_24h: import("zod").ZodNumber;
|
|
5412
|
+
visitors_30d: import("zod").ZodNumber;
|
|
5413
|
+
visitors_7d: import("zod").ZodNumber;
|
|
5414
|
+
}, import("zod/v4/core").$strip>;
|
|
5415
|
+
/** @deprecated Renamed to WorkspaceInsightsProjectPageSchema. */
|
|
5416
|
+
declare const V1WorkspaceInsightsProjectsBodySchema: import("zod").ZodObject<{
|
|
5417
|
+
activity_as_of: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5418
|
+
edits_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5419
|
+
visitors_as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5420
|
+
}, import("zod/v4/core").$strip>>;
|
|
5421
|
+
applied_finding: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5422
|
+
category: import("zod").ZodEnum<{
|
|
5423
|
+
data: "data";
|
|
5424
|
+
security: "security";
|
|
5425
|
+
exposure: "exposure";
|
|
5426
|
+
credentials: "credentials";
|
|
5427
|
+
access: "access";
|
|
5428
|
+
integrations: "integrations";
|
|
5429
|
+
runtime: "runtime";
|
|
5430
|
+
}>;
|
|
5431
|
+
description: import("zod").ZodString;
|
|
5432
|
+
id: import("zod").ZodString;
|
|
5433
|
+
project_count: import("zod").ZodNumber;
|
|
5434
|
+
severity: import("zod").ZodEnum<{
|
|
5435
|
+
needs_review: "needs_review";
|
|
5436
|
+
review_recommended: "review_recommended";
|
|
5437
|
+
no_review_needed: "no_review_needed";
|
|
5438
|
+
}>;
|
|
5439
|
+
title: import("zod").ZodString;
|
|
5440
|
+
}, import("zod/v4/core").$strip>>;
|
|
5441
|
+
as_of: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5442
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5443
|
+
activity_group: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5444
|
+
last_14_days: "last_14_days";
|
|
5445
|
+
last_60_days: "last_60_days";
|
|
5446
|
+
older: "older";
|
|
5447
|
+
}>>;
|
|
5448
|
+
connectors: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5449
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5450
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5451
|
+
edge_functions: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5452
|
+
name: import("zod").ZodString;
|
|
5453
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
5454
|
+
edit_count: import("zod").ZodNumber;
|
|
5455
|
+
edits_24h: import("zod").ZodNumber;
|
|
5456
|
+
edits_30d: import("zod").ZodNumber;
|
|
5457
|
+
edits_7d: import("zod").ZodNumber;
|
|
5458
|
+
generated_description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5459
|
+
id: import("zod").ZodString;
|
|
5460
|
+
is_published: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5461
|
+
last_edited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5462
|
+
last_security_scan_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5463
|
+
matched_reason: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5464
|
+
category: import("zod").ZodEnum<{
|
|
5465
|
+
data: "data";
|
|
5466
|
+
security: "security";
|
|
5467
|
+
exposure: "exposure";
|
|
5468
|
+
credentials: "credentials";
|
|
5469
|
+
access: "access";
|
|
5470
|
+
integrations: "integrations";
|
|
5471
|
+
runtime: "runtime";
|
|
5472
|
+
}>;
|
|
5473
|
+
detail: import("zod").ZodString;
|
|
5474
|
+
id: import("zod").ZodString;
|
|
5475
|
+
label: import("zod").ZodString;
|
|
5476
|
+
severity: import("zod").ZodEnum<{
|
|
5477
|
+
needs_review: "needs_review";
|
|
5478
|
+
review_recommended: "review_recommended";
|
|
5479
|
+
no_review_needed: "no_review_needed";
|
|
5480
|
+
}>;
|
|
5481
|
+
values: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5482
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5483
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5484
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5485
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5486
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5487
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5488
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5489
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5490
|
+
}, import("zod/v4/core").$strip>>;
|
|
5491
|
+
}, import("zod/v4/core").$strip>>;
|
|
5492
|
+
message_count: import("zod").ZodNumber;
|
|
5493
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5494
|
+
og_image_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5495
|
+
owner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5496
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5497
|
+
}, import("zod/v4/core").$strip>>;
|
|
5498
|
+
publish_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5499
|
+
public: "public";
|
|
5500
|
+
private: "private";
|
|
5501
|
+
workspace_only: "workspace_only";
|
|
5502
|
+
}>>;
|
|
5503
|
+
review_priority: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5504
|
+
needs_review: "needs_review";
|
|
5505
|
+
review_recommended: "review_recommended";
|
|
5506
|
+
no_review_needed: "no_review_needed";
|
|
5507
|
+
unscored: "unscored";
|
|
5508
|
+
}>>;
|
|
5509
|
+
review_priority_explanation: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5510
|
+
category: import("zod").ZodEnum<{
|
|
5511
|
+
data: "data";
|
|
5512
|
+
security: "security";
|
|
5513
|
+
exposure: "exposure";
|
|
5514
|
+
credentials: "credentials";
|
|
5515
|
+
access: "access";
|
|
5516
|
+
integrations: "integrations";
|
|
5517
|
+
runtime: "runtime";
|
|
5518
|
+
}>;
|
|
5519
|
+
detail: import("zod").ZodString;
|
|
5520
|
+
id: import("zod").ZodString;
|
|
5521
|
+
label: import("zod").ZodString;
|
|
5522
|
+
severity: import("zod").ZodEnum<{
|
|
5523
|
+
needs_review: "needs_review";
|
|
5524
|
+
review_recommended: "review_recommended";
|
|
5525
|
+
no_review_needed: "no_review_needed";
|
|
5526
|
+
}>;
|
|
5527
|
+
values: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5528
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5529
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5530
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5531
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5532
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5533
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5534
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5535
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5536
|
+
}, import("zod/v4/core").$strip>>;
|
|
5537
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5538
|
+
signals: import("zod").ZodObject<{
|
|
5539
|
+
chat_attachment_count: import("zod").ZodNumber;
|
|
5540
|
+
connector_count: import("zod").ZodNumber;
|
|
5541
|
+
edge_function_count: import("zod").ZodNumber;
|
|
5542
|
+
error_count: import("zod").ZodNumber;
|
|
5543
|
+
external_collaborators_known: import("zod").ZodBoolean;
|
|
5544
|
+
has_chat_attachment: import("zod").ZodBoolean;
|
|
5545
|
+
has_external_collaborators: import("zod").ZodBoolean;
|
|
5546
|
+
has_pii: import("zod").ZodBoolean;
|
|
5547
|
+
has_project_asset: import("zod").ZodBoolean;
|
|
5548
|
+
has_project_secret: import("zod").ZodBoolean;
|
|
5549
|
+
info_count: import("zod").ZodNumber;
|
|
5550
|
+
is_orphaned: import("zod").ZodBoolean;
|
|
5551
|
+
is_public_published: import("zod").ZodBoolean;
|
|
5552
|
+
is_published: import("zod").ZodBoolean;
|
|
5553
|
+
lovable_cloud_enabled: import("zod").ZodBoolean;
|
|
5554
|
+
open_pii_finding_count: import("zod").ZodNumber;
|
|
5555
|
+
overshared: import("zod").ZodBoolean;
|
|
5556
|
+
project_asset_count: import("zod").ZodNumber;
|
|
5557
|
+
project_secret_count: import("zod").ZodNumber;
|
|
5558
|
+
shared_user_count: import("zod").ZodNumber;
|
|
5559
|
+
supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5560
|
+
supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5561
|
+
supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5562
|
+
supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5563
|
+
supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5564
|
+
supply_chain_error_count: import("zod").ZodNumber;
|
|
5565
|
+
supply_chain_info_count: import("zod").ZodNumber;
|
|
5566
|
+
supply_chain_warning_count: import("zod").ZodNumber;
|
|
5567
|
+
warning_count: import("zod").ZodNumber;
|
|
5568
|
+
}, import("zod/v4/core").$strip>;
|
|
5569
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5570
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5571
|
+
public: "public";
|
|
5572
|
+
private: "private";
|
|
5573
|
+
draft: "draft";
|
|
5574
|
+
workspace_view: "workspace_view";
|
|
5575
|
+
}>>;
|
|
5576
|
+
visitors_24h: import("zod").ZodNumber;
|
|
5577
|
+
visitors_30d: import("zod").ZodNumber;
|
|
5578
|
+
visitors_7d: import("zod").ZodNumber;
|
|
5579
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5580
|
+
pagination: import("zod").ZodObject<{
|
|
5581
|
+
has_more: import("zod").ZodBoolean;
|
|
5582
|
+
next_cursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5583
|
+
}, import("zod/v4/core").$strip>;
|
|
5584
|
+
total: import("zod").ZodNumber;
|
|
5585
|
+
}, import("zod/v4/core").$strip>;
|
|
5586
|
+
/** @deprecated Renamed to WorkspaceInsightsReasonSchema. */
|
|
5587
|
+
declare const V1WorkspaceInsightsReasonSchema: import("zod").ZodObject<{
|
|
5588
|
+
category: import("zod").ZodEnum<{
|
|
5589
|
+
data: "data";
|
|
5590
|
+
security: "security";
|
|
5591
|
+
exposure: "exposure";
|
|
5592
|
+
credentials: "credentials";
|
|
5593
|
+
access: "access";
|
|
5594
|
+
integrations: "integrations";
|
|
5595
|
+
runtime: "runtime";
|
|
5596
|
+
}>;
|
|
5597
|
+
detail: import("zod").ZodString;
|
|
5598
|
+
id: import("zod").ZodString;
|
|
5599
|
+
label: import("zod").ZodString;
|
|
5600
|
+
severity: import("zod").ZodEnum<{
|
|
5601
|
+
needs_review: "needs_review";
|
|
5602
|
+
review_recommended: "review_recommended";
|
|
5603
|
+
no_review_needed: "no_review_needed";
|
|
5604
|
+
}>;
|
|
5605
|
+
values: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5606
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5607
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5608
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5609
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5610
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5611
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5612
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5613
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5614
|
+
}, import("zod/v4/core").$strip>>;
|
|
5615
|
+
}, import("zod/v4/core").$strip>;
|
|
5616
|
+
/** @deprecated Renamed to WorkspaceInsightsReasonValuesSchema. */
|
|
5617
|
+
declare const V1WorkspaceInsightsReasonValuesSchema: import("zod").ZodObject<{
|
|
5618
|
+
connector_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5619
|
+
edge_function_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5620
|
+
error_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5621
|
+
info_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5622
|
+
open_pii_finding_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5623
|
+
secret_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5624
|
+
shared_user_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5625
|
+
warning_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5626
|
+
}, import("zod/v4/core").$strip>;
|
|
5627
|
+
/** @deprecated Renamed to WorkspaceInsightsReviewPrioritySchema. */
|
|
5628
|
+
declare const V1WorkspaceInsightsReviewPrioritySchema: import("zod").ZodObject<{
|
|
5629
|
+
needs_review: import("zod").ZodNumber;
|
|
5630
|
+
no_review_needed: import("zod").ZodNumber;
|
|
5631
|
+
review_recommended: import("zod").ZodNumber;
|
|
5632
|
+
}, import("zod/v4/core").$strip>;
|
|
5633
|
+
/** @deprecated Renamed to WorkspaceInsightsSignalsSchema. */
|
|
5634
|
+
declare const V1WorkspaceInsightsSignalsSchema: import("zod").ZodObject<{
|
|
5635
|
+
chat_attachment_count: import("zod").ZodNumber;
|
|
5636
|
+
connector_count: import("zod").ZodNumber;
|
|
5637
|
+
edge_function_count: import("zod").ZodNumber;
|
|
5638
|
+
error_count: import("zod").ZodNumber;
|
|
5639
|
+
external_collaborators_known: import("zod").ZodBoolean;
|
|
5640
|
+
has_chat_attachment: import("zod").ZodBoolean;
|
|
5641
|
+
has_external_collaborators: import("zod").ZodBoolean;
|
|
5642
|
+
has_pii: import("zod").ZodBoolean;
|
|
5643
|
+
has_project_asset: import("zod").ZodBoolean;
|
|
5644
|
+
has_project_secret: import("zod").ZodBoolean;
|
|
5645
|
+
info_count: import("zod").ZodNumber;
|
|
5646
|
+
is_orphaned: import("zod").ZodBoolean;
|
|
5647
|
+
is_public_published: import("zod").ZodBoolean;
|
|
5648
|
+
is_published: import("zod").ZodBoolean;
|
|
5649
|
+
lovable_cloud_enabled: import("zod").ZodBoolean;
|
|
5650
|
+
open_pii_finding_count: import("zod").ZodNumber;
|
|
5651
|
+
overshared: import("zod").ZodBoolean;
|
|
5652
|
+
project_asset_count: import("zod").ZodNumber;
|
|
5653
|
+
project_secret_count: import("zod").ZodNumber;
|
|
5654
|
+
shared_user_count: import("zod").ZodNumber;
|
|
5655
|
+
supabase_auth_providers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString>>>;
|
|
5656
|
+
supabase_rls_enabled_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5657
|
+
supabase_signals_fetched_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5658
|
+
supabase_storage_bucket_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5659
|
+
supabase_table_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5660
|
+
supply_chain_error_count: import("zod").ZodNumber;
|
|
5661
|
+
supply_chain_info_count: import("zod").ZodNumber;
|
|
5662
|
+
supply_chain_warning_count: import("zod").ZodNumber;
|
|
5663
|
+
warning_count: import("zod").ZodNumber;
|
|
5664
|
+
}, import("zod/v4/core").$strip>;
|
|
5665
|
+
/** @deprecated Renamed to WorkspaceInsightsStatSchema. */
|
|
5666
|
+
declare const V1WorkspaceInsightsStatSchema: import("zod").ZodObject<{
|
|
5667
|
+
delta_30d: import("zod").ZodNumber;
|
|
5668
|
+
delta_window: import("zod").ZodString;
|
|
5669
|
+
value: import("zod").ZodNumber;
|
|
5670
|
+
}, import("zod/v4/core").$strip>;
|
|
5671
|
+
/** @deprecated Renamed to WorkspaceInsightsSummarySchema. */
|
|
5672
|
+
declare const V1WorkspaceInsightsSummarySchema: import("zod").ZodObject<{
|
|
5673
|
+
externally_published: import("zod").ZodObject<{
|
|
5674
|
+
delta_30d: import("zod").ZodNumber;
|
|
5675
|
+
delta_window: import("zod").ZodString;
|
|
5676
|
+
value: import("zod").ZodNumber;
|
|
5677
|
+
}, import("zod/v4/core").$strip>;
|
|
5678
|
+
risk: import("zod").ZodObject<{
|
|
5679
|
+
needs_review: import("zod").ZodNumber;
|
|
5680
|
+
no_review_needed: import("zod").ZodNumber;
|
|
5681
|
+
review_recommended: import("zod").ZodNumber;
|
|
5682
|
+
}, import("zod/v4/core").$strip>;
|
|
5683
|
+
total_projects: import("zod").ZodObject<{
|
|
5684
|
+
delta_30d: import("zod").ZodNumber;
|
|
5685
|
+
delta_window: import("zod").ZodString;
|
|
5686
|
+
value: import("zod").ZodNumber;
|
|
5687
|
+
}, import("zod/v4/core").$strip>;
|
|
5688
|
+
workspace_members: import("zod").ZodObject<{
|
|
5689
|
+
delta_30d: import("zod").ZodNumber;
|
|
5690
|
+
delta_window: import("zod").ZodString;
|
|
5691
|
+
value: import("zod").ZodNumber;
|
|
5692
|
+
}, import("zod/v4/core").$strip>;
|
|
5693
|
+
}, import("zod/v4/core").$strip>;
|
|
5694
|
+
/** @deprecated Renamed to WorkspaceMemberGroupSchema. */
|
|
5695
|
+
declare const V1WorkspaceMemberGroupSchema: import("zod").ZodObject<{
|
|
5696
|
+
id: import("zod").ZodString;
|
|
5697
|
+
name: import("zod").ZodString;
|
|
5698
|
+
}, import("zod/v4/core").$strip>;
|
|
5699
|
+
/** @deprecated Renamed to WorkspaceMemberSchema. */
|
|
5700
|
+
declare const V1WorkspaceMemberSchema: import("zod").ZodObject<{
|
|
5701
|
+
display_name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5702
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5703
|
+
groups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5704
|
+
id: import("zod").ZodString;
|
|
5705
|
+
name: import("zod").ZodString;
|
|
5706
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5707
|
+
invited_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5708
|
+
joined_at: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5709
|
+
monthly_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5710
|
+
role: import("zod").ZodEnum<{
|
|
5711
|
+
owner: "owner";
|
|
5712
|
+
admin: "admin";
|
|
5713
|
+
member: "member";
|
|
5714
|
+
viewer: "viewer";
|
|
5715
|
+
collaborator: "collaborator";
|
|
5716
|
+
}>;
|
|
5717
|
+
user_id: import("zod").ZodString;
|
|
5718
|
+
workspace_id: import("zod").ZodString;
|
|
5719
|
+
}, import("zod/v4/core").$strip>;
|
|
5720
|
+
/** @deprecated Renamed to WorkspaceSettingsSchema. */
|
|
5721
|
+
declare const V1WorkspaceSettingsBodySchema: import("zod").ZodObject<{
|
|
5722
|
+
billing_period_end_date: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5723
|
+
billing_period_start_date: import("zod").ZodOptional<import("zod").ZodISODateTime>;
|
|
5724
|
+
default_monthly_member_credit_limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5725
|
+
default_project_visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5726
|
+
public: "public";
|
|
5727
|
+
private: "private";
|
|
5728
|
+
draft: "draft";
|
|
5729
|
+
workspace_view: "workspace_view";
|
|
5730
|
+
}>>;
|
|
5731
|
+
enable_pii: import("zod").ZodBoolean;
|
|
5732
|
+
enforce_sso: import("zod").ZodBoolean;
|
|
5733
|
+
id: import("zod").ZodString;
|
|
5734
|
+
name: import("zod").ZodString;
|
|
5735
|
+
num_seats: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5736
|
+
plan: import("zod").ZodEnum<{
|
|
5737
|
+
free: "free";
|
|
5738
|
+
pro: "pro";
|
|
5739
|
+
business: "business";
|
|
5740
|
+
enterprise: "enterprise";
|
|
5741
|
+
}>;
|
|
5742
|
+
publishing_policy: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5743
|
+
workspace_only: "workspace_only";
|
|
5744
|
+
org_only: "org_only";
|
|
5745
|
+
disabled: "disabled";
|
|
5746
|
+
}>>;
|
|
5747
|
+
}, import("zod/v4/core").$strip>;
|
|
5748
|
+
/** @deprecated Renamed to ConnectorUsageSchema. */
|
|
5749
|
+
declare const V1WorkspaceUsageConnectorBreakdownSchema: import("zod").ZodObject<{
|
|
5750
|
+
credits: import("zod").ZodNumber;
|
|
5751
|
+
key: import("zod").ZodString;
|
|
5752
|
+
label: import("zod").ZodString;
|
|
5753
|
+
}, import("zod/v4/core").$strip>;
|
|
5754
|
+
/** @deprecated Renamed to DatabaseUsageSchema. */
|
|
5755
|
+
declare const V1WorkspaceUsageDatabaseBreakdownSchema: import("zod").ZodObject<{
|
|
5756
|
+
credits: import("zod").ZodNumber;
|
|
5757
|
+
key: import("zod").ZodEnum<{
|
|
5758
|
+
database_server: "database_server";
|
|
5759
|
+
database_storage: "database_storage";
|
|
5760
|
+
}>;
|
|
5761
|
+
label: import("zod").ZodString;
|
|
5762
|
+
}, import("zod/v4/core").$strip>;
|
|
5763
|
+
/** @deprecated Renamed to GatewayModelUsageSchema. */
|
|
5764
|
+
declare const V1WorkspaceUsageGatewayModelSchema: import("zod").ZodObject<{
|
|
5765
|
+
credits: import("zod").ZodNumber;
|
|
5766
|
+
name: import("zod").ZodString;
|
|
5767
|
+
provider: import("zod").ZodString;
|
|
5768
|
+
}, import("zod/v4/core").$strip>;
|
|
5769
|
+
/** @deprecated Renamed to WorkspaceAnalyticsSchema. */
|
|
5770
|
+
declare const WorkspaceAnalyticsResponseSchema: import("zod").ZodObject<{
|
|
5771
|
+
timeSeries: import("zod").ZodObject<{
|
|
5772
|
+
bounceRate: import("zod").ZodObject<{
|
|
5773
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5774
|
+
date: import("zod").ZodString;
|
|
5775
|
+
value: import("zod").ZodNumber;
|
|
5776
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5777
|
+
label: import("zod").ZodString;
|
|
5778
|
+
total: import("zod").ZodNumber;
|
|
5779
|
+
}, import("zod/v4/core").$strip>;
|
|
5780
|
+
pageviews: import("zod").ZodObject<{
|
|
5781
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5782
|
+
date: import("zod").ZodString;
|
|
5783
|
+
value: import("zod").ZodNumber;
|
|
5784
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5785
|
+
label: import("zod").ZodString;
|
|
5786
|
+
total: import("zod").ZodNumber;
|
|
5787
|
+
}, import("zod/v4/core").$strip>;
|
|
5788
|
+
pageviewsPerVisit: import("zod").ZodObject<{
|
|
5789
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5790
|
+
date: import("zod").ZodString;
|
|
5791
|
+
value: import("zod").ZodNumber;
|
|
5792
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5793
|
+
label: import("zod").ZodString;
|
|
5794
|
+
total: import("zod").ZodNumber;
|
|
5795
|
+
}, import("zod/v4/core").$strip>;
|
|
5796
|
+
sessionDuration: import("zod").ZodObject<{
|
|
5797
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5798
|
+
date: import("zod").ZodString;
|
|
5799
|
+
value: import("zod").ZodNumber;
|
|
5800
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5801
|
+
label: import("zod").ZodString;
|
|
5802
|
+
total: import("zod").ZodNumber;
|
|
5803
|
+
}, import("zod/v4/core").$strip>;
|
|
5804
|
+
visitors: import("zod").ZodObject<{
|
|
5805
|
+
data: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5806
|
+
date: import("zod").ZodString;
|
|
5807
|
+
value: import("zod").ZodNumber;
|
|
5808
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5809
|
+
label: import("zod").ZodString;
|
|
5810
|
+
total: import("zod").ZodNumber;
|
|
5811
|
+
}, import("zod/v4/core").$strip>;
|
|
5812
|
+
}, import("zod/v4/core").$strip>;
|
|
5813
|
+
}, import("zod/v4/core").$strip>;
|
|
5814
|
+
//#endregion
|
|
3410
5815
|
//#region src/schemas.d.ts
|
|
3411
|
-
/** @deprecated Renamed to
|
|
5816
|
+
/** @deprecated Renamed to ProjectSummaryPageSchema. */
|
|
3412
5817
|
declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
|
|
3413
5818
|
data: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3414
5819
|
created_at: z.ZodOptional<z.ZodISODateTime>;
|
|
@@ -3422,14 +5827,28 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
|
|
|
3422
5827
|
latest_screenshot_url: z.ZodOptional<z.ZodString>;
|
|
3423
5828
|
name: z.ZodOptional<z.ZodString>;
|
|
3424
5829
|
og_image_url: z.ZodOptional<z.ZodString>;
|
|
3425
|
-
project_type: z.ZodOptional<z.
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
5830
|
+
project_type: z.ZodOptional<z.ZodEnum<{
|
|
5831
|
+
project: "project";
|
|
5832
|
+
library: "library";
|
|
5833
|
+
}>>;
|
|
5834
|
+
publish_visibility: z.ZodOptional<z.ZodEnum<{
|
|
5835
|
+
public: "public";
|
|
5836
|
+
private: "private";
|
|
5837
|
+
workspace_only: "workspace_only";
|
|
5838
|
+
}>>;
|
|
5839
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
5840
|
+
in_progress: "in_progress";
|
|
5841
|
+
completed: "completed";
|
|
5842
|
+
failed: "failed";
|
|
5843
|
+
}>>;
|
|
3430
5844
|
url: z.ZodOptional<z.ZodString>;
|
|
3431
5845
|
user_id: z.ZodOptional<z.ZodString>;
|
|
3432
|
-
visibility: z.ZodOptional<z.
|
|
5846
|
+
visibility: z.ZodOptional<z.ZodEnum<{
|
|
5847
|
+
public: "public";
|
|
5848
|
+
private: "private";
|
|
5849
|
+
draft: "draft";
|
|
5850
|
+
workspace_view: "workspace_view";
|
|
5851
|
+
}>>;
|
|
3433
5852
|
workspace_id: z.ZodString;
|
|
3434
5853
|
}, z.core.$strip>>>;
|
|
3435
5854
|
pagination: z.ZodObject<{
|
|
@@ -3437,11 +5856,17 @@ declare const CursorListResponseSearchProjectItemSchema: z.ZodObject<{
|
|
|
3437
5856
|
next_cursor: z.ZodNullable<z.ZodString>;
|
|
3438
5857
|
}, z.core.$strip>;
|
|
3439
5858
|
}, z.core.$strip>;
|
|
3440
|
-
/** @deprecated Renamed to
|
|
5859
|
+
/** @deprecated Renamed to GetWorkspaceResponseSchema. */
|
|
3441
5860
|
declare const GetUserWorkspaceBodySchema: z.ZodObject<{
|
|
3442
5861
|
current_member: z.ZodOptional<z.ZodObject<{
|
|
3443
5862
|
joined_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3444
|
-
role: z.
|
|
5863
|
+
role: z.ZodEnum<{
|
|
5864
|
+
owner: "owner";
|
|
5865
|
+
admin: "admin";
|
|
5866
|
+
member: "member";
|
|
5867
|
+
viewer: "viewer";
|
|
5868
|
+
collaborator: "collaborator";
|
|
5869
|
+
}>;
|
|
3445
5870
|
user_id: z.ZodString;
|
|
3446
5871
|
}, z.core.$strip>>;
|
|
3447
5872
|
workspace: z.ZodObject<{
|
|
@@ -3451,49 +5876,27 @@ declare const GetUserWorkspaceBodySchema: z.ZodObject<{
|
|
|
3451
5876
|
image_url: z.ZodOptional<z.ZodString>;
|
|
3452
5877
|
name: z.ZodString;
|
|
3453
5878
|
num_projects: z.ZodNumber;
|
|
3454
|
-
plan: z.
|
|
5879
|
+
plan: z.ZodEnum<{
|
|
5880
|
+
free: "free";
|
|
5881
|
+
pro: "pro";
|
|
5882
|
+
business: "business";
|
|
5883
|
+
enterprise: "enterprise";
|
|
5884
|
+
}>;
|
|
3455
5885
|
updated_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3456
5886
|
}, z.core.$strip>;
|
|
3457
5887
|
}, z.core.$strip>;
|
|
3458
|
-
/** @deprecated Renamed to
|
|
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. */
|
|
5888
|
+
/** @deprecated Renamed to WorkspaceMembershipSchema. */
|
|
3470
5889
|
declare const WorkspaceMembershipResponseSchema: z.ZodObject<{
|
|
3471
5890
|
joined_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3472
|
-
role: z.
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
5891
|
+
role: z.ZodEnum<{
|
|
5892
|
+
owner: "owner";
|
|
5893
|
+
admin: "admin";
|
|
5894
|
+
member: "member";
|
|
5895
|
+
viewer: "viewer";
|
|
5896
|
+
collaborator: "collaborator";
|
|
5897
|
+
}>;
|
|
3479
5898
|
user_id: z.ZodString;
|
|
3480
5899
|
}, 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
5900
|
declare const V1DatabaseQueryOutputBodySchema: z.ZodObject<{
|
|
3498
5901
|
rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3499
5902
|
}, z.core.$strip>;
|
|
@@ -3501,5 +5904,5 @@ declare const V1DatabaseQueryOutputBodyWritableSchema: z.ZodObject<{
|
|
|
3501
5904
|
rows: z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
3502
5905
|
}, z.core.$strip>;
|
|
3503
5906
|
//#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,
|
|
5907
|
+
export { AddProjectsToFolderResultSchema, AnalyticsBreakdownGroupSchema, AnalyticsBreakdownPointSchema, AnalyticsBreakdownSchema, AnalyticsTrendSchema, AppUserConnectorApiSchema, BillingPeriodSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, ConnectorUsageSchema, CreateEmbedUrlRequestSchema, CreateEmbedUrlResponseSchema, CreatorSchema, CreditBalanceSchema, CreditGrantTypeBalanceSchema, CreditHistoryEntrySchema, CreditHistoryPageSchema, CreditUsageEntrySchema, CreditUsagePageSchema, CreditUsagePeriodSchema, CurrentUserSchema, CurrentUserWorkspaceSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1PiiLabelSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceGroupSchema, CursorListResponseV1WorkspaceMemberSchema, DatabaseUsageSchema, DeploymentSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, ExpiringCreditGrantSchema, GatewayModelUsageSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GetWorkspaceResponseSchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, MemberCreditLimitResultSchema, MemberCreditLimitUpdateSchema, PaginationSchema, PiiLabelPageSchema, PiiLabelSchema, ProjectAnalyticsResponseSchema, ProjectAnalyticsSchema, ProjectCollaboratorPageSchema, ProjectCollaboratorSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectSchema, ProjectSummaryPageSchema, ProjectSummarySchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1PiiLabelSchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1RemixJobOutputBodySchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, PublishAudienceTargetSchema, PublishProjectRequestSchema, PublishProjectResponseSchema, PublishSettingsSchema, RemixJobFailureSchema, RemixJobSchema, RemixJobStepInfoSchema, RemixResultSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SecurityFindingSchema, SecurityScanActorSchema, SecurityScanDetailSchema, SecurityScanPageSchema, SecurityScanSchema, SecurityScannerRunSchema, SetMemberCreditLimitsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, TriggerSecurityScanResponseSchema, UpdateProjectRequestSchema, UpdatePublishSettingsRequestSchema, UserCreatorSchema, V1AddConnectorInputBodySchema, V1AiResponseSummarySchema, V1AvailableConnectorEntrySchema, V1AwaitingInputSummarySchema, V1BillingPeriodSchema, V1BillingUsageBodySchema, V1BillingUsagePeriodSchema, V1BillingUsageRowSchema, V1BulkMemberCreditLimitItemSchema, V1BulkMemberCreditLimitResultSchema, V1BulkSetMemberCreditLimitInputBodySchema, V1BulkSetMemberCreditLimitOutputBodySchema, V1ConnectionItemSchema, V1ConnectorResponseSchema, V1CreateEmbedUrlInputBodySchema, V1CreateEmbedUrlOutputBodySchema, V1CreateProjectInputBodySchema, V1CreateProjectResponseSchema, V1CreateVariantInputBodySchema, V1CreateVariantOutputBodySchema, V1CreditHistoryEntrySchema, V1DatabaseQueryOutputBodySchema, V1DatabaseQueryOutputBodyWritableSchema, V1DeleteWorkspaceSkillOutputBodySchema, V1DeployProjectInputBodySchema, V1DeployProjectOutputBodySchema, V1DiffEntrySchema, V1DiffResponseSchema, V1EditSummarySchema, V1EnableDatabaseOutputBodySchema, V1EphemeralFileUploadUrlInputBodySchema, V1FileUploadUrlOutputBodySchema, V1GetDatabaseStatusOutputBodySchema, V1GetEditsOutputBodySchema, V1GetSecurityScanOutputBodySchema, V1GetWorkspaceSkillOutputBodySchema, V1KnowledgeResponseSchema, V1ListAppUserConnectorsResponseSchema, V1ListAvailableConnectorsOutputBodySchema, V1ListConnectionsResponseSchema, V1ListConnectorsOutputBodySchema, V1ListMcpConnectorsResponseSchema, V1ListMessagesOutputBodySchema, V1ListProjectSkillsOutputBodySchema, V1ListSeamlessConnectorsResponseSchema, V1ListStandardConnectorsResponseSchema, V1ListWorkspaceSkillsOutputBodySchema, V1ListWorkspacesBodySchema, V1MessageErrorSchema, V1MessageListItemSchema, V1MessageResponseSchema, V1MoveProjectsToFolderInputBodySchema, V1ProjectCollaboratorSchema, V1ProjectFileUploadUrlInputBodySchema, V1ProjectGitFilesResponseSchema, V1ProjectResponseSchema, V1ProjectSkillDtoSchema, V1RemixInitInputBodySchema, V1RemixInitOutputBodySchema, V1RemixProgressOutputBodySchema, V1RemixProgressResultSchema, V1RemoveConnectorOutputBodySchema, V1SecurityFindingSchema, V1SecurityScanActorSchema, V1SecurityScanSummarySchema, V1SecurityScannerRunSchema, V1SelectedLibrarySchema, V1SendMessageInputBodySchema, V1SendMessageOutputBodySchema, V1SetFolderVisibilityInputBodySchema, V1SetFolderVisibilityOutputBodySchema, V1SetProjectKnowledgeInputBodySchema, V1SetProjectSkillEnabledInputBodySchema, V1SetProjectSkillEnabledOutputBodySchema, V1SetProjectVisibilityInputBodySchema, V1SetProjectVisibilityOutputBodySchema, V1SetWorkspaceKnowledgeInputBodySchema, V1TriggerSecurityScanInputBodySchema, V1TriggerSecurityScanResponseBodySchema, V1UnscopedFileSchema, V1UpdateMemberCreditLimitInputBodySchema, V1UpdateWorkspaceSettingsInputBodySchema, V1UsagePeriodSchema, V1WorkspaceAuditLogEntrySchema, V1WorkspaceAuditLogsBodySchema, V1WorkspaceCreditHistoryBodySchema, V1WorkspaceCreditsBodySchema, V1WorkspaceCreditsExpiringGrantSchema, V1WorkspaceCreditsGrantTypeBalanceSchema, V1WorkspaceGroupSchema, V1WorkspaceInsightsActivityFreshnessSchema, V1WorkspaceInsightsBodySchema, V1WorkspaceInsightsEdgeFunctionSchema, V1WorkspaceInsightsFindingSchema, V1WorkspaceInsightsOwnerSchema, V1WorkspaceInsightsProjectSchema, V1WorkspaceInsightsProjectsBodySchema, V1WorkspaceInsightsReasonSchema, V1WorkspaceInsightsReasonValuesSchema, V1WorkspaceInsightsReviewPrioritySchema, V1WorkspaceInsightsSignalsSchema, V1WorkspaceInsightsStatSchema, V1WorkspaceInsightsSummarySchema, V1WorkspaceMemberGroupSchema, V1WorkspaceMemberSchema, V1WorkspaceSettingsBodySchema, V1WorkspaceSkillDtoSchema, V1WorkspaceUsageBreakdownBodySchema, V1WorkspaceUsageBreakdownEntrySchema, V1WorkspaceUsageConnectorBreakdownSchema, V1WorkspaceUsageDatabaseBreakdownSchema, V1WorkspaceUsageGatewayModelSchema, V1WorkspaceUsageMeBodySchema, V1WorkspaceUsageProjectRowSchema, V1WorkspaceUsageProjectsBodySchema, V1WorkspaceUsageTimeseriesBodySchema, V1WorkspaceUsageTimeseriesBucketSchema, V1WriteWorkspaceSkillInputBodySchema, V1WriteWorkspaceSkillOutputBodySchema, VisibilityChangeInfoSchema, WorkspaceAnalyticsResponseSchema, WorkspaceAnalyticsSchema, WorkspaceGroupPageSchema, WorkspaceGroupSchema, WorkspaceInsightsActivityFreshnessSchema, WorkspaceInsightsEdgeFunctionSchema, WorkspaceInsightsFindingSchema, WorkspaceInsightsOwnerSchema, WorkspaceInsightsProjectPageSchema, WorkspaceInsightsProjectSchema, WorkspaceInsightsReasonSchema, WorkspaceInsightsReasonValuesSchema, WorkspaceInsightsReviewPrioritySchema, WorkspaceInsightsSchema, WorkspaceInsightsSignalsSchema, WorkspaceInsightsStatSchema, WorkspaceInsightsSummarySchema, WorkspaceMemberGroupSchema, WorkspaceMemberPageSchema, WorkspaceMemberSchema, WorkspaceMembershipResponseSchema, WorkspaceMembershipSchema, WorkspacePageSchema, WorkspaceSchema, WorkspaceSettingsSchema, WorkspaceWithMembershipSchema };
|
|
3505
5908
|
//# sourceMappingURL=schemas.d.ts.map
|