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