@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.js
CHANGED
|
@@ -44,16 +44,22 @@ const ErrorModelSchema = z$1.object({
|
|
|
44
44
|
title: z$1.string().optional(),
|
|
45
45
|
type: z$1.string().optional()
|
|
46
46
|
});
|
|
47
|
-
const
|
|
47
|
+
const CurrentUserWorkspaceSchema = z$1.object({
|
|
48
48
|
id: z$1.string(),
|
|
49
49
|
name: z$1.string(),
|
|
50
|
-
role: z$1.
|
|
50
|
+
role: z$1.enum([
|
|
51
|
+
"owner",
|
|
52
|
+
"admin",
|
|
53
|
+
"member",
|
|
54
|
+
"viewer",
|
|
55
|
+
"collaborator"
|
|
56
|
+
])
|
|
51
57
|
});
|
|
52
|
-
const
|
|
58
|
+
const CurrentUserSchema = z$1.object({
|
|
53
59
|
email: z$1.string(),
|
|
54
60
|
id: z$1.string(),
|
|
55
61
|
name: z$1.string(),
|
|
56
|
-
workspaces: z$1.array(
|
|
62
|
+
workspaces: z$1.array(CurrentUserWorkspaceSchema).nullable()
|
|
57
63
|
});
|
|
58
64
|
const GitFileEntrySchema = z$1.object({
|
|
59
65
|
binary: z$1.boolean(),
|
|
@@ -77,23 +83,23 @@ const GetAvailableLibraryProjectsPublicV1OutputBodySchema = z$1.object({
|
|
|
77
83
|
libraries: z$1.array(LibraryProjectResponseSchema).nullable(),
|
|
78
84
|
total: z$1.number()
|
|
79
85
|
});
|
|
80
|
-
const
|
|
86
|
+
const AnalyticsBreakdownPointSchema = z$1.object({
|
|
81
87
|
label: z$1.string(),
|
|
82
88
|
value: z$1.number()
|
|
83
89
|
});
|
|
84
|
-
const
|
|
85
|
-
data: z$1.array(
|
|
90
|
+
const AnalyticsBreakdownSchema = z$1.object({
|
|
91
|
+
data: z$1.array(AnalyticsBreakdownPointSchema).nullable(),
|
|
86
92
|
label: z$1.string()
|
|
87
93
|
});
|
|
88
94
|
const ChannelListsGroupSchema = z$1.object({
|
|
89
|
-
page:
|
|
90
|
-
source:
|
|
95
|
+
page: AnalyticsBreakdownSchema,
|
|
96
|
+
source: AnalyticsBreakdownSchema
|
|
91
97
|
});
|
|
92
|
-
const
|
|
93
|
-
country:
|
|
94
|
-
device:
|
|
95
|
-
page:
|
|
96
|
-
source:
|
|
98
|
+
const AnalyticsBreakdownGroupSchema = z$1.object({
|
|
99
|
+
country: AnalyticsBreakdownSchema,
|
|
100
|
+
device: AnalyticsBreakdownSchema,
|
|
101
|
+
page: AnalyticsBreakdownSchema,
|
|
102
|
+
source: AnalyticsBreakdownSchema
|
|
97
103
|
});
|
|
98
104
|
const LovableCreatorSchema = z$1.object({
|
|
99
105
|
name: z$1.string(),
|
|
@@ -118,13 +124,34 @@ const ProjectPiiFindingDtoSchema = z$1.object({
|
|
|
118
124
|
found_at: z$1.iso.datetime(),
|
|
119
125
|
id: z$1.string(),
|
|
120
126
|
info_type: z$1.string().optional(),
|
|
121
|
-
likelihood: z$1.
|
|
127
|
+
likelihood: z$1.enum([
|
|
128
|
+
"LIKELIHOOD_UNSPECIFIED",
|
|
129
|
+
"VERY_UNLIKELY",
|
|
130
|
+
"UNLIKELY",
|
|
131
|
+
"POSSIBLE",
|
|
132
|
+
"LIKELY",
|
|
133
|
+
"VERY_LIKELY"
|
|
134
|
+
]).optional(),
|
|
122
135
|
quote: z$1.string().optional(),
|
|
123
136
|
scan_id: z$1.string().optional(),
|
|
124
|
-
sensitivity: z$1.
|
|
125
|
-
|
|
137
|
+
sensitivity: z$1.enum([
|
|
138
|
+
"low",
|
|
139
|
+
"mid",
|
|
140
|
+
"high"
|
|
141
|
+
]).optional(),
|
|
142
|
+
source: z$1.enum([
|
|
143
|
+
"chat",
|
|
144
|
+
"upload",
|
|
145
|
+
"cloud_storage",
|
|
146
|
+
"cloud_sql",
|
|
147
|
+
"connector"
|
|
148
|
+
]),
|
|
126
149
|
sql_location: z$1.string().optional(),
|
|
127
|
-
status: z$1.
|
|
150
|
+
status: z$1.enum([
|
|
151
|
+
"open",
|
|
152
|
+
"ignored",
|
|
153
|
+
"fixed"
|
|
154
|
+
]),
|
|
128
155
|
storage_path: z$1.string().optional()
|
|
129
156
|
});
|
|
130
157
|
const CursorListResponseProjectPiiFindingDtoSchema = z$1.object({
|
|
@@ -162,9 +189,18 @@ const PublicV1CreateProjectResponseSchema = z$1.object({
|
|
|
162
189
|
message_id: z$1.string().optional(),
|
|
163
190
|
name: z$1.string().optional(),
|
|
164
191
|
preview_url: z$1.string().optional(),
|
|
165
|
-
status: z$1.
|
|
192
|
+
status: z$1.enum([
|
|
193
|
+
"in_progress",
|
|
194
|
+
"completed",
|
|
195
|
+
"failed"
|
|
196
|
+
]).optional(),
|
|
166
197
|
url: z$1.string().optional(),
|
|
167
|
-
visibility: z$1.
|
|
198
|
+
visibility: z$1.enum([
|
|
199
|
+
"draft",
|
|
200
|
+
"private",
|
|
201
|
+
"workspace_view",
|
|
202
|
+
"public"
|
|
203
|
+
]).optional(),
|
|
168
204
|
workspace_id: z$1.string().optional()
|
|
169
205
|
});
|
|
170
206
|
const PublicV1DeployProjectInputBodySchema = z$1.object({
|
|
@@ -177,7 +213,48 @@ const PublicV1GitFilesResponseSchema = z$1.object({
|
|
|
177
213
|
pagination: PaginationSchema,
|
|
178
214
|
ref: z$1.string()
|
|
179
215
|
});
|
|
180
|
-
const
|
|
216
|
+
const PiiLabelSchema = z$1.object({
|
|
217
|
+
chat_message_id: z$1.string().optional(),
|
|
218
|
+
chat_upload_id: z$1.string().optional(),
|
|
219
|
+
connector_id: z$1.string().optional(),
|
|
220
|
+
found_at: z$1.iso.datetime(),
|
|
221
|
+
id: z$1.string(),
|
|
222
|
+
info_type: z$1.string().optional(),
|
|
223
|
+
likelihood: z$1.enum([
|
|
224
|
+
"likelihood_unspecified",
|
|
225
|
+
"very_unlikely",
|
|
226
|
+
"unlikely",
|
|
227
|
+
"possible",
|
|
228
|
+
"likely",
|
|
229
|
+
"very_likely"
|
|
230
|
+
]).optional(),
|
|
231
|
+
quote: z$1.string().optional(),
|
|
232
|
+
scan_id: z$1.string().optional(),
|
|
233
|
+
sensitivity: z$1.enum([
|
|
234
|
+
"low",
|
|
235
|
+
"mid",
|
|
236
|
+
"high"
|
|
237
|
+
]).optional(),
|
|
238
|
+
source: z$1.enum([
|
|
239
|
+
"chat",
|
|
240
|
+
"upload",
|
|
241
|
+
"cloud_storage",
|
|
242
|
+
"cloud_sql",
|
|
243
|
+
"connector"
|
|
244
|
+
]),
|
|
245
|
+
sql_location: z$1.string().optional(),
|
|
246
|
+
status: z$1.enum([
|
|
247
|
+
"open",
|
|
248
|
+
"ignored",
|
|
249
|
+
"fixed"
|
|
250
|
+
]),
|
|
251
|
+
storage_path: z$1.string().optional()
|
|
252
|
+
});
|
|
253
|
+
const PiiLabelPageSchema = z$1.object({
|
|
254
|
+
data: z$1.array(PiiLabelSchema).nullable(),
|
|
255
|
+
pagination: PaginationSchema
|
|
256
|
+
});
|
|
257
|
+
const UpdateProjectRequestSchema = z$1.object({
|
|
181
258
|
description: z$1.string().max(1e5).optional(),
|
|
182
259
|
display_name: z$1.string().optional(),
|
|
183
260
|
visibility: z$1.enum([
|
|
@@ -191,7 +268,7 @@ const PublicV1ProjectFileUploadUrlInputBodySchema = z$1.object({
|
|
|
191
268
|
content_type: z$1.string().optional(),
|
|
192
269
|
project_id: z$1.string()
|
|
193
270
|
});
|
|
194
|
-
const
|
|
271
|
+
const ProjectSummarySchema = z$1.object({
|
|
195
272
|
created_at: z$1.iso.datetime().optional(),
|
|
196
273
|
description: z$1.string().optional(),
|
|
197
274
|
display_name: z$1.string().optional(),
|
|
@@ -203,24 +280,38 @@ const PublicV1ProjectListItemSchema = z$1.object({
|
|
|
203
280
|
latest_screenshot_url: z$1.string().optional(),
|
|
204
281
|
name: z$1.string().optional(),
|
|
205
282
|
og_image_url: z$1.string().optional(),
|
|
206
|
-
project_type: z$1.
|
|
207
|
-
publish_visibility: z$1.
|
|
208
|
-
|
|
283
|
+
project_type: z$1.enum(["project", "library"]).optional(),
|
|
284
|
+
publish_visibility: z$1.enum([
|
|
285
|
+
"public",
|
|
286
|
+
"private",
|
|
287
|
+
"workspace_only"
|
|
288
|
+
]).optional(),
|
|
289
|
+
status: z$1.enum([
|
|
290
|
+
"in_progress",
|
|
291
|
+
"completed",
|
|
292
|
+
"failed"
|
|
293
|
+
]).optional(),
|
|
209
294
|
tech_stack: z$1.string().optional(),
|
|
210
295
|
updated_at: z$1.iso.datetime().optional(),
|
|
211
296
|
url: z$1.string().optional(),
|
|
212
297
|
user_id: z$1.string().optional(),
|
|
213
|
-
visibility: z$1.
|
|
298
|
+
visibility: z$1.enum([
|
|
299
|
+
"draft",
|
|
300
|
+
"private",
|
|
301
|
+
"workspace_view",
|
|
302
|
+
"public"
|
|
303
|
+
]).optional(),
|
|
214
304
|
workspace_id: z$1.string()
|
|
215
305
|
});
|
|
216
|
-
const
|
|
217
|
-
data: z$1.array(
|
|
306
|
+
const ProjectSummaryPageSchema = z$1.object({
|
|
307
|
+
data: z$1.array(ProjectSummarySchema).nullable(),
|
|
218
308
|
pagination: PaginationSchema
|
|
219
309
|
});
|
|
220
310
|
const PublicV1ProjectRemixInputBodySchema = z$1.object({
|
|
221
311
|
description: z$1.string().min(1).optional(),
|
|
222
312
|
display_name: z$1.string().optional(),
|
|
223
313
|
include_custom_knowledge: z$1.boolean().optional(),
|
|
314
|
+
include_files: z$1.boolean().optional(),
|
|
224
315
|
include_history: z$1.boolean().optional(),
|
|
225
316
|
initial_message: z$1.string().optional(),
|
|
226
317
|
message_id: z$1.string().optional(),
|
|
@@ -230,12 +321,12 @@ const PublicV1ProjectRemixInputBodySchema = z$1.object({
|
|
|
230
321
|
source_project_id: z$1.string().min(1).regex(/.*\S.*/),
|
|
231
322
|
workspace_id: z$1.string()
|
|
232
323
|
});
|
|
233
|
-
const
|
|
324
|
+
const PublishAudienceTargetSchema = z$1.object({
|
|
234
325
|
id: z$1.string().min(1),
|
|
235
326
|
type: z$1.enum(["group", "user"])
|
|
236
327
|
});
|
|
237
|
-
const
|
|
238
|
-
audience: z$1.array(
|
|
328
|
+
const PublishProjectRequestSchema = z$1.object({
|
|
329
|
+
audience: z$1.array(PublishAudienceTargetSchema).max(100).nullish(),
|
|
239
330
|
name: z$1.string().optional(),
|
|
240
331
|
visibility: z$1.enum([
|
|
241
332
|
"public",
|
|
@@ -243,15 +334,28 @@ const PublicV1PublishProjectInputBodySchema = z$1.object({
|
|
|
243
334
|
"custom"
|
|
244
335
|
]).optional()
|
|
245
336
|
});
|
|
246
|
-
const
|
|
337
|
+
const PublishProjectResponseSchema = z$1.object({
|
|
247
338
|
deployment_id: z$1.string().optional(),
|
|
248
|
-
status: z$1.
|
|
339
|
+
status: z$1.enum(["pending"]),
|
|
249
340
|
url: z$1.string().optional(),
|
|
250
|
-
visibility: z$1.
|
|
341
|
+
visibility: z$1.enum([
|
|
342
|
+
"public",
|
|
343
|
+
"workspace",
|
|
344
|
+
"custom"
|
|
345
|
+
])
|
|
251
346
|
});
|
|
252
|
-
const
|
|
347
|
+
const DeploymentSchema = z$1.object({
|
|
253
348
|
deployment_id: z$1.string(),
|
|
254
|
-
error_class: z$1.
|
|
349
|
+
error_class: z$1.enum([
|
|
350
|
+
"transient",
|
|
351
|
+
"user_code",
|
|
352
|
+
"user_config",
|
|
353
|
+
"user_config_code",
|
|
354
|
+
"user_config_external",
|
|
355
|
+
"user_data",
|
|
356
|
+
"blocked_by_policy",
|
|
357
|
+
"internal"
|
|
358
|
+
]).optional(),
|
|
255
359
|
error_code: z$1.string().optional(),
|
|
256
360
|
error_message: z$1.string().optional(),
|
|
257
361
|
status: z$1.enum([
|
|
@@ -270,8 +374,8 @@ const PublicV1SetProjectSkillEnabledInputBodySchema = z$1.object({
|
|
|
270
374
|
enabled: z$1.boolean(),
|
|
271
375
|
project_id: z$1.string()
|
|
272
376
|
});
|
|
273
|
-
const
|
|
274
|
-
audience: z$1.array(
|
|
377
|
+
const UpdatePublishSettingsRequestSchema = z$1.object({
|
|
378
|
+
audience: z$1.array(PublishAudienceTargetSchema).max(100).nullish(),
|
|
275
379
|
is_published: z$1.boolean().optional(),
|
|
276
380
|
visibility: z$1.enum([
|
|
277
381
|
"public",
|
|
@@ -279,51 +383,93 @@ const PublicV1UpdatePublishSettingsInputBodySchema = z$1.object({
|
|
|
279
383
|
"custom"
|
|
280
384
|
]).optional()
|
|
281
385
|
});
|
|
282
|
-
const
|
|
386
|
+
const PublishSettingsSchema = z$1.object({
|
|
283
387
|
is_published: z$1.boolean(),
|
|
284
388
|
url: z$1.string().optional(),
|
|
285
|
-
visibility: z$1.
|
|
389
|
+
visibility: z$1.enum([
|
|
390
|
+
"public",
|
|
391
|
+
"workspace",
|
|
392
|
+
"custom"
|
|
393
|
+
])
|
|
286
394
|
});
|
|
287
|
-
const
|
|
395
|
+
const WorkspaceSchema = z$1.object({
|
|
288
396
|
created_at: z$1.iso.datetime().optional(),
|
|
289
397
|
description: z$1.string().optional(),
|
|
290
398
|
id: z$1.string(),
|
|
291
399
|
image_url: z$1.string().optional(),
|
|
292
400
|
name: z$1.string(),
|
|
293
401
|
num_projects: z$1.number(),
|
|
294
|
-
plan: z$1.
|
|
402
|
+
plan: z$1.enum([
|
|
403
|
+
"free",
|
|
404
|
+
"pro",
|
|
405
|
+
"business",
|
|
406
|
+
"enterprise"
|
|
407
|
+
]),
|
|
295
408
|
updated_at: z$1.iso.datetime().optional()
|
|
296
409
|
});
|
|
297
|
-
const
|
|
410
|
+
const WorkspaceMembershipSchema = z$1.object({
|
|
298
411
|
joined_at: z$1.iso.datetime().optional(),
|
|
299
|
-
role: z$1.
|
|
412
|
+
role: z$1.enum([
|
|
413
|
+
"owner",
|
|
414
|
+
"admin",
|
|
415
|
+
"member",
|
|
416
|
+
"viewer",
|
|
417
|
+
"collaborator"
|
|
418
|
+
]),
|
|
300
419
|
user_id: z$1.string()
|
|
301
420
|
});
|
|
302
|
-
const
|
|
303
|
-
current_member:
|
|
304
|
-
workspace:
|
|
421
|
+
const GetWorkspaceResponseSchema = z$1.object({
|
|
422
|
+
current_member: WorkspaceMembershipSchema.optional(),
|
|
423
|
+
workspace: WorkspaceSchema
|
|
305
424
|
});
|
|
306
|
-
const
|
|
425
|
+
const WorkspaceWithMembershipSchema = z$1.object({
|
|
307
426
|
created_at: z$1.iso.datetime().optional(),
|
|
308
427
|
description: z$1.string().optional(),
|
|
309
428
|
id: z$1.string(),
|
|
310
429
|
image_url: z$1.string().optional(),
|
|
311
|
-
membership:
|
|
430
|
+
membership: WorkspaceMembershipSchema.optional(),
|
|
312
431
|
name: z$1.string(),
|
|
313
432
|
num_projects: z$1.number(),
|
|
314
|
-
plan: z$1.
|
|
433
|
+
plan: z$1.enum([
|
|
434
|
+
"free",
|
|
435
|
+
"pro",
|
|
436
|
+
"business",
|
|
437
|
+
"enterprise"
|
|
438
|
+
]),
|
|
315
439
|
updated_at: z$1.iso.datetime().optional()
|
|
316
440
|
});
|
|
317
441
|
const RemixJobFailureSchema = z$1.object({
|
|
318
442
|
code: z$1.string().optional(),
|
|
319
|
-
failed_step: z$1.
|
|
443
|
+
failed_step: z$1.enum([
|
|
444
|
+
"starting",
|
|
445
|
+
"creating_new_project",
|
|
446
|
+
"restoring_supabase",
|
|
447
|
+
"copying_history",
|
|
448
|
+
"preparing_repository",
|
|
449
|
+
"remixing_integration",
|
|
450
|
+
"pushing_repository",
|
|
451
|
+
"finalizing",
|
|
452
|
+
"completed",
|
|
453
|
+
"failed"
|
|
454
|
+
]),
|
|
320
455
|
message: z$1.string()
|
|
321
456
|
});
|
|
322
457
|
const RemixJobStepInfoSchema = z$1.object({
|
|
323
458
|
failure: RemixJobFailureSchema.optional(),
|
|
324
459
|
integration_name: z$1.string().optional(),
|
|
325
460
|
status: z$1.string().optional(),
|
|
326
|
-
step: z$1.
|
|
461
|
+
step: z$1.enum([
|
|
462
|
+
"starting",
|
|
463
|
+
"creating_new_project",
|
|
464
|
+
"restoring_supabase",
|
|
465
|
+
"copying_history",
|
|
466
|
+
"preparing_repository",
|
|
467
|
+
"remixing_integration",
|
|
468
|
+
"pushing_repository",
|
|
469
|
+
"finalizing",
|
|
470
|
+
"completed",
|
|
471
|
+
"failed"
|
|
472
|
+
])
|
|
327
473
|
});
|
|
328
474
|
const RemixWarningSchema = z$1.object({
|
|
329
475
|
code: z$1.enum(["edge_functions_not_deployed", "integration_skipped"]),
|
|
@@ -341,6 +487,7 @@ const SearchProjectItemSchema = z$1.object({
|
|
|
341
487
|
app_visitors_30d: z$1.number().optional(),
|
|
342
488
|
app_visitors_7d: z$1.number().optional(),
|
|
343
489
|
category: z$1.string().optional(),
|
|
490
|
+
commit_time: z$1.iso.datetime().optional(),
|
|
344
491
|
created_at: z$1.iso.datetime().optional(),
|
|
345
492
|
created_by: z$1.string().optional(),
|
|
346
493
|
deleted_at: z$1.iso.datetime().optional(),
|
|
@@ -394,6 +541,7 @@ const SearchProjectItemSchema = z$1.object({
|
|
|
394
541
|
const SearchWorkspaceProjectsResponseSchema = z$1.object({
|
|
395
542
|
has_more: z$1.boolean(),
|
|
396
543
|
projects: z$1.array(SearchProjectItemSchema).nullable(),
|
|
544
|
+
title_search: z$1.boolean().optional(),
|
|
397
545
|
total: z$1.number()
|
|
398
546
|
});
|
|
399
547
|
const SkippedProjectInfoSchema = z$1.object({
|
|
@@ -447,7 +595,7 @@ const TimeSeriesGroupSchema = z$1.object({
|
|
|
447
595
|
const ProjectAnalyticsResponseSchema = z$1.object({
|
|
448
596
|
channels: z$1.record(z$1.string(), ChannelAnalyticsSchema).optional(),
|
|
449
597
|
channelsSource: z$1.enum(["legacy", "user_app_events"]).optional(),
|
|
450
|
-
lists:
|
|
598
|
+
lists: AnalyticsBreakdownGroupSchema,
|
|
451
599
|
timeSeries: TimeSeriesGroupSchema
|
|
452
600
|
});
|
|
453
601
|
const ToolDisplayDataSchema = z$1.object({
|
|
@@ -465,14 +613,14 @@ const TrendDataPointSchema = z$1.object({
|
|
|
465
613
|
time: z$1.string(),
|
|
466
614
|
visits: z$1.number()
|
|
467
615
|
});
|
|
468
|
-
const
|
|
616
|
+
const AnalyticsTrendSchema = z$1.object({
|
|
469
617
|
currentVisitors: z$1.number(),
|
|
470
618
|
data: z$1.array(TrendDataPointSchema).nullable()
|
|
471
619
|
});
|
|
472
|
-
const
|
|
473
|
-
lists:
|
|
620
|
+
const ProjectAnalyticsSchema = z$1.object({
|
|
621
|
+
lists: AnalyticsBreakdownGroupSchema.optional(),
|
|
474
622
|
timeSeries: TimeSeriesGroupSchema.optional(),
|
|
475
|
-
trend:
|
|
623
|
+
trend: AnalyticsTrendSchema.optional()
|
|
476
624
|
});
|
|
477
625
|
const UserCreatorSchema = z$1.object({
|
|
478
626
|
type: z$1.enum(["user"]),
|
|
@@ -576,6 +724,7 @@ const SeamlessConnectorApiSchema = z$1.object({
|
|
|
576
724
|
toolIntegrationName: z$1.string().optional()
|
|
577
725
|
});
|
|
578
726
|
const StandardConnectorApiSchema = z$1.object({
|
|
727
|
+
can_deploy_apps: z$1.boolean(),
|
|
579
728
|
can_restrict_to_admins: z$1.boolean(),
|
|
580
729
|
categories: z$1.array(z$1.enum([
|
|
581
730
|
"ecommerce",
|
|
@@ -597,16 +746,17 @@ const StandardConnectorApiSchema = z$1.object({
|
|
|
597
746
|
display_name: z$1.string(),
|
|
598
747
|
documentation_url: z$1.string(),
|
|
599
748
|
has_connections: z$1.boolean(),
|
|
600
|
-
has_metered_option: z$1.boolean().optional(),
|
|
601
749
|
id: z$1.string(),
|
|
602
750
|
is_enabled_for_workspace: z$1.boolean(),
|
|
603
751
|
is_new: z$1.boolean().optional(),
|
|
604
752
|
logo_url: z$1.string().optional(),
|
|
753
|
+
pricing_url: z$1.string().optional(),
|
|
605
754
|
promotion: StandardConnectorPromotionSchema.optional(),
|
|
606
755
|
searchTags: z$1.array(z$1.string()),
|
|
607
756
|
short_description: z$1.string(),
|
|
608
757
|
single_connection: z$1.boolean().optional(),
|
|
609
758
|
source: z$1.enum(["native", "user_defined"]).optional(),
|
|
759
|
+
supports_inbound: z$1.boolean().optional(),
|
|
610
760
|
terms_url: z$1.string().optional(),
|
|
611
761
|
vendor: z$1.enum([
|
|
612
762
|
"google",
|
|
@@ -626,7 +776,8 @@ const V1AddConnectorInputBodySchema = z$1.object({
|
|
|
626
776
|
relay_client_id: z$1.string().optional(),
|
|
627
777
|
relay_service_name: z$1.string().optional(),
|
|
628
778
|
token: z$1.string().optional(),
|
|
629
|
-
url: z$1.string().optional()
|
|
779
|
+
url: z$1.string().optional(),
|
|
780
|
+
use_egress_proxy: z$1.boolean().optional()
|
|
630
781
|
});
|
|
631
782
|
const V1AvailableConnectorEntrySchema = z$1.object({
|
|
632
783
|
category: z$1.string(),
|
|
@@ -639,56 +790,57 @@ const V1AvailableConnectorEntrySchema = z$1.object({
|
|
|
639
790
|
const V1AwaitingInputSummarySchema = z$1.object({
|
|
640
791
|
event_id: z$1.string(),
|
|
641
792
|
input_schema: z$1.unknown().optional(),
|
|
642
|
-
|
|
793
|
+
params: z$1.unknown().optional(),
|
|
794
|
+
prev_session_id: z$1.string().optional(),
|
|
795
|
+
tool_id: z$1.string().optional()
|
|
643
796
|
});
|
|
644
|
-
const
|
|
645
|
-
awaiting_input: V1AwaitingInputSummarySchema.optional(),
|
|
646
|
-
commit_sha: z$1.string().optional(),
|
|
647
|
-
content: z$1.string(),
|
|
648
|
-
cost_credits: z$1.number().optional(),
|
|
649
|
-
edit_id: z$1.string().optional(),
|
|
650
|
-
message_id: z$1.string(),
|
|
651
|
-
status: z$1.string(),
|
|
652
|
-
summary: z$1.string().optional()
|
|
653
|
-
});
|
|
654
|
-
const V1BillingCreditLimitRowSchema = z$1.object({
|
|
797
|
+
const MemberCreditLimitSchema = z$1.object({
|
|
655
798
|
monthly_credit_limit: z$1.number().optional(),
|
|
799
|
+
temporary_limit_expires_at: z$1.iso.datetime().optional(),
|
|
800
|
+
temporary_monthly_credit_limit: z$1.number().optional(),
|
|
656
801
|
user_id: z$1.string()
|
|
657
802
|
});
|
|
658
|
-
const
|
|
659
|
-
data: z$1.array(
|
|
803
|
+
const CreditLimitPageSchema = z$1.object({
|
|
804
|
+
data: z$1.array(MemberCreditLimitSchema).nullable(),
|
|
660
805
|
default_monthly_credit_limit: z$1.number().optional(),
|
|
661
806
|
pagination: PaginationSchema
|
|
662
807
|
});
|
|
663
|
-
const
|
|
808
|
+
const BillingPeriodSchema = z$1.object({
|
|
664
809
|
end: z$1.iso.datetime(),
|
|
665
810
|
start: z$1.iso.datetime()
|
|
666
811
|
});
|
|
667
|
-
const
|
|
812
|
+
const CreditUsagePeriodSchema = z$1.object({
|
|
668
813
|
end: z$1.string(),
|
|
669
|
-
group_by: z$1.
|
|
670
|
-
interval: z$1.
|
|
814
|
+
group_by: z$1.enum(["member", "project"]).optional(),
|
|
815
|
+
interval: z$1.enum([
|
|
816
|
+
"day",
|
|
817
|
+
"week",
|
|
818
|
+
"month"
|
|
819
|
+
]).optional(),
|
|
671
820
|
start: z$1.string()
|
|
672
821
|
});
|
|
673
|
-
const
|
|
822
|
+
const MemberCreditLimitUpdateSchema = z$1.object({
|
|
823
|
+
duration: z$1.enum(["permanent", "current_period"]).optional(),
|
|
674
824
|
email: z$1.string().optional(),
|
|
675
825
|
monthly_credit_limit: z$1.number().gte(0).nullable(),
|
|
676
826
|
user_id: z$1.string().optional()
|
|
677
827
|
});
|
|
678
|
-
const
|
|
679
|
-
const
|
|
828
|
+
const SetMemberCreditLimitsRequestSchema = z$1.object({ members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(1e3) });
|
|
829
|
+
const MemberCreditLimitResultSchema = z$1.object({
|
|
830
|
+
approved_until: z$1.iso.datetime().optional(),
|
|
831
|
+
duration: z$1.enum(["current_period"]).optional(),
|
|
680
832
|
email: z$1.string().optional(),
|
|
681
833
|
error: z$1.string().optional(),
|
|
682
|
-
status: z$1.
|
|
834
|
+
status: z$1.enum(["success", "error"]),
|
|
683
835
|
user_id: z$1.string().optional()
|
|
684
836
|
});
|
|
685
837
|
const V1BulkSetMemberCreditLimitInputBodySchema = z$1.object({
|
|
686
|
-
members: z$1.array(
|
|
838
|
+
members: z$1.array(MemberCreditLimitUpdateSchema).min(1).max(50),
|
|
687
839
|
workspace_id: z$1.string()
|
|
688
840
|
});
|
|
689
|
-
const
|
|
841
|
+
const SetMemberCreditLimitsResponseSchema = z$1.object({
|
|
690
842
|
failed: z$1.number(),
|
|
691
|
-
results: z$1.array(
|
|
843
|
+
results: z$1.array(MemberCreditLimitResultSchema).nullable(),
|
|
692
844
|
successful: z$1.number(),
|
|
693
845
|
total: z$1.number()
|
|
694
846
|
});
|
|
@@ -709,8 +861,8 @@ const V1ConnectorResponseSchema = z$1.object({
|
|
|
709
861
|
name: z$1.string(),
|
|
710
862
|
url: z$1.string().optional()
|
|
711
863
|
});
|
|
712
|
-
const
|
|
713
|
-
const
|
|
864
|
+
const CreateEmbedUrlRequestSchema = z$1.object({ parent_origin: z$1.string() });
|
|
865
|
+
const CreateEmbedUrlResponseSchema = z$1.object({
|
|
714
866
|
embed_url: z$1.string(),
|
|
715
867
|
expires_at: z$1.iso.datetime()
|
|
716
868
|
});
|
|
@@ -729,14 +881,27 @@ const V1CreateProjectResponseSchema = z$1.object({
|
|
|
729
881
|
name: z$1.string().optional(),
|
|
730
882
|
og_image_url: z$1.string().optional(),
|
|
731
883
|
preview_url: z$1.string().optional(),
|
|
732
|
-
project_type: z$1.
|
|
733
|
-
publish_visibility: z$1.
|
|
734
|
-
|
|
884
|
+
project_type: z$1.enum(["project", "library"]).optional(),
|
|
885
|
+
publish_visibility: z$1.enum([
|
|
886
|
+
"public",
|
|
887
|
+
"private",
|
|
888
|
+
"workspace_only"
|
|
889
|
+
]).optional(),
|
|
890
|
+
status: z$1.enum([
|
|
891
|
+
"in_progress",
|
|
892
|
+
"completed",
|
|
893
|
+
"failed"
|
|
894
|
+
]).optional(),
|
|
735
895
|
tech_stack: z$1.string().optional(),
|
|
736
896
|
updated_at: z$1.iso.datetime().optional(),
|
|
737
897
|
url: z$1.string().optional(),
|
|
738
898
|
user_id: z$1.string().optional(),
|
|
739
|
-
visibility: z$1.
|
|
899
|
+
visibility: z$1.enum([
|
|
900
|
+
"draft",
|
|
901
|
+
"private",
|
|
902
|
+
"workspace_view",
|
|
903
|
+
"public"
|
|
904
|
+
]).optional(),
|
|
740
905
|
workspace_id: z$1.string()
|
|
741
906
|
});
|
|
742
907
|
const V1CreateVariantInputBodySchema = z$1.object({
|
|
@@ -749,7 +914,8 @@ const V1CreateVariantOutputBodySchema = z$1.object({
|
|
|
749
914
|
thread_id: z$1.string(),
|
|
750
915
|
variant_id: z$1.string()
|
|
751
916
|
});
|
|
752
|
-
const
|
|
917
|
+
const CreditHistoryEntrySchema = z$1.object({
|
|
918
|
+
credit_grant_id: z$1.string(),
|
|
753
919
|
credits_change: z$1.number(),
|
|
754
920
|
event_type: z$1.enum([
|
|
755
921
|
"granted",
|
|
@@ -859,25 +1025,31 @@ const V1ListStandardConnectorsResponseSchema = z$1.object({
|
|
|
859
1025
|
has_more: z$1.boolean(),
|
|
860
1026
|
total: z$1.number()
|
|
861
1027
|
});
|
|
862
|
-
const
|
|
863
|
-
data: z$1.array(
|
|
1028
|
+
const WorkspacePageSchema = z$1.object({
|
|
1029
|
+
data: z$1.array(WorkspaceWithMembershipSchema).nullable(),
|
|
864
1030
|
pagination: PaginationSchema
|
|
865
1031
|
});
|
|
866
|
-
const
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
"
|
|
877
|
-
"
|
|
878
|
-
"
|
|
879
|
-
|
|
880
|
-
|
|
1032
|
+
const V1MessageErrorSchema = z$1.object({
|
|
1033
|
+
code: z$1.string(),
|
|
1034
|
+
message: z$1.string()
|
|
1035
|
+
});
|
|
1036
|
+
const V1AiResponseSummarySchema = z$1.object({
|
|
1037
|
+
awaiting_input: V1AwaitingInputSummarySchema.optional(),
|
|
1038
|
+
commit_sha: z$1.string().optional(),
|
|
1039
|
+
completion_reason: z$1.enum([
|
|
1040
|
+
"finished",
|
|
1041
|
+
"stopped",
|
|
1042
|
+
"error",
|
|
1043
|
+
"policy_violation",
|
|
1044
|
+
"max_iterations"
|
|
1045
|
+
]).optional(),
|
|
1046
|
+
content: z$1.string(),
|
|
1047
|
+
cost_credits: z$1.number().optional(),
|
|
1048
|
+
edit_id: z$1.string().optional(),
|
|
1049
|
+
error: V1MessageErrorSchema.optional(),
|
|
1050
|
+
message_id: z$1.string(),
|
|
1051
|
+
status: z$1.string(),
|
|
1052
|
+
summary: z$1.string().optional()
|
|
881
1053
|
});
|
|
882
1054
|
const V1MessageListItemSchema = z$1.object({
|
|
883
1055
|
content: z$1.string(),
|
|
@@ -898,10 +1070,18 @@ const V1ListMessagesOutputBodySchema = z$1.object({
|
|
|
898
1070
|
const V1MessageResponseSchema = z$1.object({
|
|
899
1071
|
awaiting_input: V1AwaitingInputSummarySchema.optional(),
|
|
900
1072
|
commit_sha: z$1.string().optional(),
|
|
1073
|
+
completion_reason: z$1.enum([
|
|
1074
|
+
"finished",
|
|
1075
|
+
"stopped",
|
|
1076
|
+
"error",
|
|
1077
|
+
"policy_violation",
|
|
1078
|
+
"max_iterations"
|
|
1079
|
+
]).optional(),
|
|
901
1080
|
content: z$1.string(),
|
|
902
1081
|
cost_credits: z$1.number().optional(),
|
|
903
1082
|
created_at: z$1.string(),
|
|
904
1083
|
edit_id: z$1.string().optional(),
|
|
1084
|
+
error: V1MessageErrorSchema.optional(),
|
|
905
1085
|
message_id: z$1.string(),
|
|
906
1086
|
queue_pause_reason: z$1.string().optional(),
|
|
907
1087
|
queue_paused: z$1.boolean().optional(),
|
|
@@ -912,55 +1092,7 @@ const V1MessageResponseSchema = z$1.object({
|
|
|
912
1092
|
summary: z$1.string().optional()
|
|
913
1093
|
});
|
|
914
1094
|
const V1MoveProjectsToFolderInputBodySchema = z$1.object({ project_ids: z$1.array(z$1.string()).min(1).max(30).nullable() });
|
|
915
|
-
const
|
|
916
|
-
size_bytes: z$1.number(),
|
|
917
|
-
timestamp: z$1.iso.datetime(),
|
|
918
|
-
used_bytes: z$1.number()
|
|
919
|
-
});
|
|
920
|
-
const V1ProjectCloudResourceSignalSchema = z$1.object({
|
|
921
|
-
alert_hours: z$1.number(),
|
|
922
|
-
label: z$1.string(),
|
|
923
|
-
latest_alert_at: z$1.iso.datetime().optional(),
|
|
924
|
-
latest_value: z$1.number().optional(),
|
|
925
|
-
resource_type: z$1.string()
|
|
926
|
-
});
|
|
927
|
-
const V1ProjectCloudResourcePressureSchema = z$1.object({
|
|
928
|
-
resources: z$1.array(V1ProjectCloudResourceSignalSchema).nullable(),
|
|
929
|
-
window_hours: z$1.number()
|
|
930
|
-
});
|
|
931
|
-
const V1ProjectCloudBodySchema = z$1.object({
|
|
932
|
-
disk: V1ProjectCloudDiskSchema.optional(),
|
|
933
|
-
environment: z$1.string(),
|
|
934
|
-
instance_tier: z$1.enum([
|
|
935
|
-
"xs",
|
|
936
|
-
"s",
|
|
937
|
-
"m",
|
|
938
|
-
"ml",
|
|
939
|
-
"l",
|
|
940
|
-
"xl",
|
|
941
|
-
"xxl"
|
|
942
|
-
]),
|
|
943
|
-
instance_tier_label: z$1.string(),
|
|
944
|
-
pause_reason: z$1.string().optional(),
|
|
945
|
-
postgres_version: z$1.string().optional(),
|
|
946
|
-
region: z$1.string().optional(),
|
|
947
|
-
resource_pressure: V1ProjectCloudResourcePressureSchema.optional(),
|
|
948
|
-
status: z$1.enum([
|
|
949
|
-
"OK",
|
|
950
|
-
"RESIZING",
|
|
951
|
-
"UPGRADING",
|
|
952
|
-
"RESTARTING",
|
|
953
|
-
"COMING_UP",
|
|
954
|
-
"RESTORING",
|
|
955
|
-
"UNHEALTHY",
|
|
956
|
-
"INACTIVE",
|
|
957
|
-
"PAUSING",
|
|
958
|
-
"UNKNOWN",
|
|
959
|
-
""
|
|
960
|
-
]).optional(),
|
|
961
|
-
user_paused: z$1.boolean()
|
|
962
|
-
});
|
|
963
|
-
const V1ProjectCollaboratorSchema = z$1.object({
|
|
1095
|
+
const ProjectCollaboratorSchema = z$1.object({
|
|
964
1096
|
accepted_at: z$1.iso.datetime().optional(),
|
|
965
1097
|
access_level: z$1.enum([
|
|
966
1098
|
"owner",
|
|
@@ -975,10 +1107,11 @@ const V1ProjectCollaboratorSchema = z$1.object({
|
|
|
975
1107
|
invited_by: z$1.string().optional(),
|
|
976
1108
|
is_internal: z$1.boolean(),
|
|
977
1109
|
is_workspace_member: z$1.boolean(),
|
|
1110
|
+
last_accessed_at: z$1.iso.datetime().nullable(),
|
|
978
1111
|
user_id: z$1.string()
|
|
979
1112
|
});
|
|
980
|
-
const
|
|
981
|
-
data: z$1.array(
|
|
1113
|
+
const ProjectCollaboratorPageSchema = z$1.object({
|
|
1114
|
+
data: z$1.array(ProjectCollaboratorSchema).nullable(),
|
|
982
1115
|
pagination: PaginationSchema
|
|
983
1116
|
});
|
|
984
1117
|
const V1ProjectFileUploadUrlInputBodySchema = z$1.object({ content_type: z$1.string().optional() });
|
|
@@ -988,7 +1121,7 @@ const V1ProjectGitFilesResponseSchema = z$1.object({
|
|
|
988
1121
|
ref: z$1.string(),
|
|
989
1122
|
total: z$1.number()
|
|
990
1123
|
});
|
|
991
|
-
const
|
|
1124
|
+
const ProjectSchema = z$1.object({
|
|
992
1125
|
created_at: z$1.iso.datetime().optional(),
|
|
993
1126
|
description: z$1.string().optional(),
|
|
994
1127
|
display_name: z$1.string().optional(),
|
|
@@ -1002,14 +1135,27 @@ const V1ProjectResponseSchema = z$1.object({
|
|
|
1002
1135
|
name: z$1.string().optional(),
|
|
1003
1136
|
og_image_url: z$1.string().optional(),
|
|
1004
1137
|
preview_url: z$1.string().optional(),
|
|
1005
|
-
project_type: z$1.
|
|
1006
|
-
publish_visibility: z$1.
|
|
1007
|
-
|
|
1138
|
+
project_type: z$1.enum(["project", "library"]).optional(),
|
|
1139
|
+
publish_visibility: z$1.enum([
|
|
1140
|
+
"public",
|
|
1141
|
+
"private",
|
|
1142
|
+
"workspace_only"
|
|
1143
|
+
]).optional(),
|
|
1144
|
+
status: z$1.enum([
|
|
1145
|
+
"in_progress",
|
|
1146
|
+
"completed",
|
|
1147
|
+
"failed"
|
|
1148
|
+
]).optional(),
|
|
1008
1149
|
tech_stack: z$1.string().optional(),
|
|
1009
1150
|
updated_at: z$1.iso.datetime().optional(),
|
|
1010
1151
|
url: z$1.string().optional(),
|
|
1011
1152
|
user_id: z$1.string().optional(),
|
|
1012
|
-
visibility: z$1.
|
|
1153
|
+
visibility: z$1.enum([
|
|
1154
|
+
"draft",
|
|
1155
|
+
"private",
|
|
1156
|
+
"workspace_view",
|
|
1157
|
+
"public"
|
|
1158
|
+
]).optional(),
|
|
1013
1159
|
workspace_id: z$1.string()
|
|
1014
1160
|
});
|
|
1015
1161
|
const V1ProjectSkillDtoSchema = z$1.object({
|
|
@@ -1030,6 +1176,7 @@ const V1ListProjectSkillsOutputBodySchema = z$1.object({
|
|
|
1030
1176
|
const V1RemixInitInputBodySchema = z$1.object({
|
|
1031
1177
|
description: z$1.string().optional(),
|
|
1032
1178
|
include_custom_knowledge: z$1.boolean().optional(),
|
|
1179
|
+
include_files: z$1.boolean().optional(),
|
|
1033
1180
|
include_history: z$1.boolean().optional(),
|
|
1034
1181
|
initial_message: z$1.string().optional(),
|
|
1035
1182
|
message_id: z$1.string().optional(),
|
|
@@ -1040,68 +1187,108 @@ const V1RemixInitInputBodySchema = z$1.object({
|
|
|
1040
1187
|
workspace_id: z$1.string()
|
|
1041
1188
|
});
|
|
1042
1189
|
const V1RemixInitOutputBodySchema = z$1.object({ job_id: z$1.string() });
|
|
1043
|
-
const
|
|
1190
|
+
const RemixResultSchema = z$1.object({
|
|
1044
1191
|
project_id: z$1.string(),
|
|
1045
1192
|
warnings: z$1.array(RemixWarningSchema).nullish()
|
|
1046
1193
|
});
|
|
1194
|
+
const RemixJobSchema = z$1.object({
|
|
1195
|
+
error_code: z$1.string().optional(),
|
|
1196
|
+
error_message: z$1.string().optional(),
|
|
1197
|
+
result: RemixResultSchema.optional(),
|
|
1198
|
+
status: z$1.enum([
|
|
1199
|
+
"preparing",
|
|
1200
|
+
"running",
|
|
1201
|
+
"completed",
|
|
1202
|
+
"error",
|
|
1203
|
+
"unknown"
|
|
1204
|
+
]),
|
|
1205
|
+
step: RemixJobStepInfoSchema.optional()
|
|
1206
|
+
});
|
|
1047
1207
|
const V1RemixProgressOutputBodySchema = z$1.object({
|
|
1048
1208
|
error_code: z$1.string().optional(),
|
|
1049
1209
|
error_message: z$1.string().optional(),
|
|
1050
|
-
result:
|
|
1210
|
+
result: RemixResultSchema.optional(),
|
|
1051
1211
|
status: z$1.string(),
|
|
1052
1212
|
step: RemixJobStepInfoSchema.optional()
|
|
1053
1213
|
});
|
|
1054
1214
|
const V1RemoveConnectorOutputBodySchema = z$1.object({ success: z$1.boolean() });
|
|
1055
|
-
const
|
|
1215
|
+
const SecurityFindingSchema = z$1.object({
|
|
1056
1216
|
category: z$1.string().optional(),
|
|
1057
1217
|
created_at: z$1.iso.datetime(),
|
|
1058
1218
|
description: z$1.string().optional(),
|
|
1059
1219
|
details: z$1.string().optional(),
|
|
1060
1220
|
finding_id: z$1.string(),
|
|
1061
1221
|
first_seen_scan_id: z$1.string().optional(),
|
|
1062
|
-
level: z$1.
|
|
1222
|
+
level: z$1.enum([
|
|
1223
|
+
"error",
|
|
1224
|
+
"warn",
|
|
1225
|
+
"info"
|
|
1226
|
+
]),
|
|
1063
1227
|
link: z$1.string().optional(),
|
|
1064
1228
|
metadata: z$1.record(z$1.string(), z$1.unknown()).optional(),
|
|
1065
1229
|
name: z$1.string(),
|
|
1066
1230
|
recurrence: z$1.number(),
|
|
1067
1231
|
remediation_difficulty: z$1.string().optional(),
|
|
1068
1232
|
scanner_name: z$1.string(),
|
|
1069
|
-
status: z$1.
|
|
1233
|
+
status: z$1.enum([
|
|
1234
|
+
"open",
|
|
1235
|
+
"fixed",
|
|
1236
|
+
"ignored"
|
|
1237
|
+
]),
|
|
1070
1238
|
updated_at: z$1.iso.datetime()
|
|
1071
1239
|
});
|
|
1072
|
-
const
|
|
1240
|
+
const SecurityScanActorSchema = z$1.object({
|
|
1073
1241
|
email: z$1.string().optional(),
|
|
1074
1242
|
id: z$1.string().optional(),
|
|
1075
1243
|
name: z$1.string().optional(),
|
|
1076
|
-
type: z$1.
|
|
1244
|
+
type: z$1.enum(["user", "system"])
|
|
1077
1245
|
});
|
|
1078
|
-
const
|
|
1246
|
+
const SecurityScanSchema = z$1.object({
|
|
1079
1247
|
commit_sha: z$1.string().optional(),
|
|
1080
1248
|
finished_at: z$1.iso.datetime().optional(),
|
|
1081
1249
|
requested_scanners: z$1.array(z$1.string()).nullable(),
|
|
1082
1250
|
scan_id: z$1.string(),
|
|
1083
1251
|
started_at: z$1.iso.datetime(),
|
|
1084
|
-
status: z$1.
|
|
1085
|
-
|
|
1086
|
-
|
|
1252
|
+
status: z$1.enum([
|
|
1253
|
+
"running",
|
|
1254
|
+
"completed",
|
|
1255
|
+
"failed"
|
|
1256
|
+
]),
|
|
1257
|
+
trigger_source: z$1.enum([
|
|
1258
|
+
"workflow",
|
|
1259
|
+
"user",
|
|
1260
|
+
"ui_auto",
|
|
1261
|
+
"aikido_import",
|
|
1262
|
+
"manage_findings",
|
|
1263
|
+
"app_mcp_deep_auto",
|
|
1264
|
+
"hvt_scheduled",
|
|
1265
|
+
"workspace_scheduled",
|
|
1266
|
+
"enterprise_batch",
|
|
1267
|
+
"gitsync_pull"
|
|
1268
|
+
]),
|
|
1269
|
+
triggered_by: SecurityScanActorSchema
|
|
1087
1270
|
});
|
|
1088
|
-
const
|
|
1089
|
-
data: z$1.array(
|
|
1271
|
+
const SecurityScanPageSchema = z$1.object({
|
|
1272
|
+
data: z$1.array(SecurityScanSchema).nullable(),
|
|
1090
1273
|
pagination: PaginationSchema
|
|
1091
1274
|
});
|
|
1092
|
-
const
|
|
1275
|
+
const SecurityScannerRunSchema = z$1.object({
|
|
1093
1276
|
commit_sha: z$1.string().optional(),
|
|
1094
1277
|
error_message: z$1.string().optional(),
|
|
1095
1278
|
finished_at: z$1.iso.datetime().optional(),
|
|
1096
1279
|
scanner_name: z$1.string(),
|
|
1097
1280
|
scanner_version: z$1.string().optional(),
|
|
1098
1281
|
started_at: z$1.iso.datetime(),
|
|
1099
|
-
status: z$1.
|
|
1282
|
+
status: z$1.enum([
|
|
1283
|
+
"succeeded",
|
|
1284
|
+
"failed",
|
|
1285
|
+
"skipped"
|
|
1286
|
+
])
|
|
1100
1287
|
});
|
|
1101
|
-
const
|
|
1102
|
-
findings: z$1.array(
|
|
1103
|
-
scan:
|
|
1104
|
-
scanner_runs: z$1.array(
|
|
1288
|
+
const SecurityScanDetailSchema = z$1.object({
|
|
1289
|
+
findings: z$1.array(SecurityFindingSchema).nullable(),
|
|
1290
|
+
scan: SecurityScanSchema,
|
|
1291
|
+
scanner_runs: z$1.array(SecurityScannerRunSchema).nullable()
|
|
1105
1292
|
});
|
|
1106
1293
|
const V1SelectedLibrarySchema = z$1.object({ project_id: z$1.string() });
|
|
1107
1294
|
const V1SendMessageOutputBodySchema = z$1.object({
|
|
@@ -1123,21 +1310,15 @@ const V1SetProjectVisibilityInputBodySchema = z$1.object({ visibility: z$1.enum(
|
|
|
1123
1310
|
]) });
|
|
1124
1311
|
const V1SetProjectVisibilityOutputBodySchema = z$1.object({ visibility: z$1.string() });
|
|
1125
1312
|
const V1SetWorkspaceKnowledgeInputBodySchema = z$1.object({ content: z$1.string() });
|
|
1126
|
-
const V1StartMessageExportInputBodySchema = z$1.object({
|
|
1127
|
-
end_date: z$1.string().optional(),
|
|
1128
|
-
project_id: z$1.string().optional(),
|
|
1129
|
-
start_date: z$1.string().optional(),
|
|
1130
|
-
user_id: z$1.string().optional()
|
|
1131
|
-
});
|
|
1132
|
-
const V1StartMessageExportOutputBodySchema = z$1.object({
|
|
1133
|
-
export_id: z$1.string(),
|
|
1134
|
-
status: z$1.enum(["running"])
|
|
1135
|
-
});
|
|
1136
1313
|
const V1TriggerSecurityScanInputBodySchema = z$1.object({ project_id: z$1.string() });
|
|
1137
|
-
const
|
|
1314
|
+
const TriggerSecurityScanResponseSchema = z$1.object({
|
|
1138
1315
|
message: z$1.string().optional(),
|
|
1139
1316
|
scan_id: z$1.string(),
|
|
1140
|
-
status: z$1.
|
|
1317
|
+
status: z$1.enum([
|
|
1318
|
+
"started",
|
|
1319
|
+
"running",
|
|
1320
|
+
"completed"
|
|
1321
|
+
])
|
|
1141
1322
|
});
|
|
1142
1323
|
const V1UnscopedFileSchema = z$1.object({
|
|
1143
1324
|
file_id: z$1.string(),
|
|
@@ -1216,7 +1397,7 @@ const V1UpdateWorkspaceSettingsInputBodySchema = z$1.object({
|
|
|
1216
1397
|
default_monthly_member_credit_limit: z$1.number().gte(0).nullish(),
|
|
1217
1398
|
workspace_id: z$1.string()
|
|
1218
1399
|
});
|
|
1219
|
-
const
|
|
1400
|
+
const UpdateWorkspaceSettingsRequestSchema = z$1.object({ default_monthly_member_credit_limit: z$1.number().gte(0).nullish() });
|
|
1220
1401
|
const V1UsagePeriodSchema = z$1.object({
|
|
1221
1402
|
end: z$1.string(),
|
|
1222
1403
|
granularity: z$1.string().optional(),
|
|
@@ -1245,48 +1426,100 @@ const V1WorkspaceAuditLogsBodySchema = z$1.object({
|
|
|
1245
1426
|
data: z$1.array(V1WorkspaceAuditLogEntrySchema).nullable(),
|
|
1246
1427
|
pagination: PaginationSchema
|
|
1247
1428
|
});
|
|
1248
|
-
const
|
|
1249
|
-
data: z$1.array(
|
|
1429
|
+
const CreditHistoryPageSchema = z$1.object({
|
|
1430
|
+
data: z$1.array(CreditHistoryEntrySchema).nullable(),
|
|
1250
1431
|
pagination: PaginationSchema,
|
|
1251
1432
|
total: z$1.number().optional(),
|
|
1252
1433
|
total_is_capped: z$1.boolean().optional()
|
|
1253
1434
|
});
|
|
1254
|
-
const
|
|
1255
|
-
applicability: z$1.
|
|
1435
|
+
const ExpiringCreditGrantSchema = z$1.object({
|
|
1436
|
+
applicability: z$1.enum([
|
|
1437
|
+
"generic",
|
|
1438
|
+
"build_time",
|
|
1439
|
+
"build_mode",
|
|
1440
|
+
"plan_mode"
|
|
1441
|
+
]).optional(),
|
|
1256
1442
|
credits: z$1.number(),
|
|
1257
1443
|
expires_at: z$1.iso.datetime(),
|
|
1258
|
-
grant_type: z$1.
|
|
1444
|
+
grant_type: z$1.enum([
|
|
1445
|
+
"billing",
|
|
1446
|
+
"rollover",
|
|
1447
|
+
"topup",
|
|
1448
|
+
"commitment",
|
|
1449
|
+
"cashback",
|
|
1450
|
+
"granted",
|
|
1451
|
+
"overage",
|
|
1452
|
+
"unlimited",
|
|
1453
|
+
"allowance"
|
|
1454
|
+
])
|
|
1259
1455
|
});
|
|
1260
|
-
const
|
|
1261
|
-
grant_type: z$1.
|
|
1456
|
+
const CreditGrantTypeBalanceSchema = z$1.object({
|
|
1457
|
+
grant_type: z$1.enum([
|
|
1458
|
+
"billing",
|
|
1459
|
+
"daily",
|
|
1460
|
+
"rollover",
|
|
1461
|
+
"topup",
|
|
1462
|
+
"commitment",
|
|
1463
|
+
"cashback",
|
|
1464
|
+
"granted",
|
|
1465
|
+
"overage",
|
|
1466
|
+
"unlimited",
|
|
1467
|
+
"allowance"
|
|
1468
|
+
]),
|
|
1262
1469
|
granted: z$1.number(),
|
|
1263
1470
|
remaining: z$1.number()
|
|
1264
1471
|
});
|
|
1265
|
-
const
|
|
1266
|
-
billing_period:
|
|
1472
|
+
const CreditBalanceSchema = z$1.object({
|
|
1473
|
+
billing_period: BillingPeriodSchema,
|
|
1267
1474
|
daily_limit: z$1.number(),
|
|
1268
1475
|
daily_remaining: z$1.number(),
|
|
1269
|
-
expiring_grants: z$1.array(
|
|
1270
|
-
grant_type_balances: z$1.array(
|
|
1476
|
+
expiring_grants: z$1.array(ExpiringCreditGrantSchema).nullable(),
|
|
1477
|
+
grant_type_balances: z$1.array(CreditGrantTypeBalanceSchema).nullable(),
|
|
1271
1478
|
total_billing_period_used: z$1.number(),
|
|
1272
1479
|
total_granted: z$1.number(),
|
|
1273
1480
|
total_remaining: z$1.number()
|
|
1274
1481
|
});
|
|
1275
|
-
const
|
|
1482
|
+
const WorkspaceGroupSchema = z$1.object({
|
|
1483
|
+
created_at: z$1.iso.datetime(),
|
|
1484
|
+
description: z$1.string().optional(),
|
|
1485
|
+
id: z$1.string(),
|
|
1486
|
+
member_count: z$1.number(),
|
|
1487
|
+
name: z$1.string(),
|
|
1488
|
+
scim_external_id: z$1.string().optional(),
|
|
1489
|
+
updated_at: z$1.iso.datetime(),
|
|
1490
|
+
workspace_id: z$1.string()
|
|
1491
|
+
});
|
|
1492
|
+
const WorkspaceGroupPageSchema = z$1.object({
|
|
1493
|
+
data: z$1.array(WorkspaceGroupSchema).nullable(),
|
|
1494
|
+
pagination: PaginationSchema
|
|
1495
|
+
});
|
|
1496
|
+
const WorkspaceInsightsActivityFreshnessSchema = z$1.object({
|
|
1276
1497
|
edits_as_of: z$1.iso.datetime().optional(),
|
|
1277
1498
|
visitors_as_of: z$1.iso.datetime().optional()
|
|
1278
1499
|
});
|
|
1279
|
-
const
|
|
1280
|
-
const
|
|
1281
|
-
category: z$1.
|
|
1500
|
+
const WorkspaceInsightsEdgeFunctionSchema = z$1.object({ name: z$1.string() });
|
|
1501
|
+
const WorkspaceInsightsFindingSchema = z$1.object({
|
|
1502
|
+
category: z$1.enum([
|
|
1503
|
+
"security",
|
|
1504
|
+
"data",
|
|
1505
|
+
"exposure",
|
|
1506
|
+
"credentials",
|
|
1507
|
+
"access",
|
|
1508
|
+
"integrations",
|
|
1509
|
+
"runtime"
|
|
1510
|
+
]),
|
|
1282
1511
|
description: z$1.string(),
|
|
1283
1512
|
id: z$1.string(),
|
|
1284
1513
|
project_count: z$1.number(),
|
|
1285
|
-
severity: z$1.
|
|
1514
|
+
severity: z$1.enum([
|
|
1515
|
+
"needs_review",
|
|
1516
|
+
"review_recommended",
|
|
1517
|
+
"no_review_needed"
|
|
1518
|
+
]),
|
|
1286
1519
|
title: z$1.string()
|
|
1287
1520
|
});
|
|
1288
|
-
const
|
|
1289
|
-
const
|
|
1521
|
+
const WorkspaceInsightsOwnerSchema = z$1.object({ display_name: z$1.string().optional() });
|
|
1522
|
+
const WorkspaceInsightsReasonValuesSchema = z$1.object({
|
|
1290
1523
|
connector_count: z$1.number().optional(),
|
|
1291
1524
|
edge_function_count: z$1.number().optional(),
|
|
1292
1525
|
error_count: z$1.number().optional(),
|
|
@@ -1296,20 +1529,32 @@ const V1WorkspaceInsightsReasonValuesSchema = z$1.object({
|
|
|
1296
1529
|
shared_user_count: z$1.number().optional(),
|
|
1297
1530
|
warning_count: z$1.number().optional()
|
|
1298
1531
|
});
|
|
1299
|
-
const
|
|
1300
|
-
category: z$1.
|
|
1532
|
+
const WorkspaceInsightsReasonSchema = z$1.object({
|
|
1533
|
+
category: z$1.enum([
|
|
1534
|
+
"security",
|
|
1535
|
+
"data",
|
|
1536
|
+
"exposure",
|
|
1537
|
+
"credentials",
|
|
1538
|
+
"access",
|
|
1539
|
+
"integrations",
|
|
1540
|
+
"runtime"
|
|
1541
|
+
]),
|
|
1301
1542
|
detail: z$1.string(),
|
|
1302
1543
|
id: z$1.string(),
|
|
1303
1544
|
label: z$1.string(),
|
|
1304
|
-
severity: z$1.
|
|
1305
|
-
|
|
1545
|
+
severity: z$1.enum([
|
|
1546
|
+
"needs_review",
|
|
1547
|
+
"review_recommended",
|
|
1548
|
+
"no_review_needed"
|
|
1549
|
+
]),
|
|
1550
|
+
values: WorkspaceInsightsReasonValuesSchema.optional()
|
|
1306
1551
|
});
|
|
1307
|
-
const
|
|
1552
|
+
const WorkspaceInsightsReviewPrioritySchema = z$1.object({
|
|
1308
1553
|
needs_review: z$1.number(),
|
|
1309
1554
|
no_review_needed: z$1.number(),
|
|
1310
1555
|
review_recommended: z$1.number()
|
|
1311
1556
|
});
|
|
1312
|
-
const
|
|
1557
|
+
const WorkspaceInsightsSignalsSchema = z$1.object({
|
|
1313
1558
|
chat_attachment_count: z$1.number(),
|
|
1314
1559
|
connector_count: z$1.number(),
|
|
1315
1560
|
edge_function_count: z$1.number(),
|
|
@@ -1340,12 +1585,16 @@ const V1WorkspaceInsightsSignalsSchema = z$1.object({
|
|
|
1340
1585
|
supply_chain_warning_count: z$1.number(),
|
|
1341
1586
|
warning_count: z$1.number()
|
|
1342
1587
|
});
|
|
1343
|
-
const
|
|
1344
|
-
activity_group: z$1.
|
|
1588
|
+
const WorkspaceInsightsProjectSchema = z$1.object({
|
|
1589
|
+
activity_group: z$1.enum([
|
|
1590
|
+
"last_14_days",
|
|
1591
|
+
"last_60_days",
|
|
1592
|
+
"older"
|
|
1593
|
+
]).optional(),
|
|
1345
1594
|
connectors: z$1.array(z$1.string()).nullish(),
|
|
1346
1595
|
description: z$1.string().optional(),
|
|
1347
1596
|
display_name: z$1.string().optional(),
|
|
1348
|
-
edge_functions: z$1.array(
|
|
1597
|
+
edge_functions: z$1.array(WorkspaceInsightsEdgeFunctionSchema).nullish(),
|
|
1349
1598
|
edit_count: z$1.number(),
|
|
1350
1599
|
edits_24h: z$1.number(),
|
|
1351
1600
|
edits_30d: z$1.number(),
|
|
@@ -1355,71 +1604,110 @@ const V1WorkspaceInsightsProjectSchema = z$1.object({
|
|
|
1355
1604
|
is_published: z$1.boolean().optional(),
|
|
1356
1605
|
last_edited_at: z$1.iso.datetime().optional(),
|
|
1357
1606
|
last_security_scan_at: z$1.iso.datetime().optional(),
|
|
1358
|
-
matched_reason:
|
|
1607
|
+
matched_reason: WorkspaceInsightsReasonSchema.optional(),
|
|
1359
1608
|
message_count: z$1.number(),
|
|
1360
1609
|
name: z$1.string().optional(),
|
|
1361
1610
|
og_image_url: z$1.string().optional(),
|
|
1362
|
-
owner:
|
|
1363
|
-
publish_visibility: z$1.
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1611
|
+
owner: WorkspaceInsightsOwnerSchema.optional(),
|
|
1612
|
+
publish_visibility: z$1.enum([
|
|
1613
|
+
"public",
|
|
1614
|
+
"private",
|
|
1615
|
+
"workspace_only"
|
|
1616
|
+
]).optional(),
|
|
1617
|
+
review_priority: z$1.enum([
|
|
1618
|
+
"needs_review",
|
|
1619
|
+
"review_recommended",
|
|
1620
|
+
"no_review_needed",
|
|
1621
|
+
"unscored"
|
|
1622
|
+
]).optional(),
|
|
1623
|
+
review_priority_explanation: z$1.array(WorkspaceInsightsReasonSchema).nullable(),
|
|
1624
|
+
signals: WorkspaceInsightsSignalsSchema,
|
|
1367
1625
|
url: z$1.string().optional(),
|
|
1368
|
-
visibility: z$1.
|
|
1626
|
+
visibility: z$1.enum([
|
|
1627
|
+
"draft",
|
|
1628
|
+
"private",
|
|
1629
|
+
"workspace_view",
|
|
1630
|
+
"public"
|
|
1631
|
+
]).optional(),
|
|
1369
1632
|
visitors_24h: z$1.number(),
|
|
1370
1633
|
visitors_30d: z$1.number(),
|
|
1371
1634
|
visitors_7d: z$1.number()
|
|
1372
1635
|
});
|
|
1373
|
-
const
|
|
1374
|
-
activity_as_of:
|
|
1375
|
-
applied_finding:
|
|
1636
|
+
const WorkspaceInsightsProjectPageSchema = z$1.object({
|
|
1637
|
+
activity_as_of: WorkspaceInsightsActivityFreshnessSchema.optional(),
|
|
1638
|
+
applied_finding: WorkspaceInsightsFindingSchema.optional(),
|
|
1376
1639
|
as_of: z$1.iso.datetime().optional(),
|
|
1377
|
-
data: z$1.array(
|
|
1640
|
+
data: z$1.array(WorkspaceInsightsProjectSchema).nullable(),
|
|
1378
1641
|
pagination: PaginationSchema,
|
|
1379
1642
|
total: z$1.number()
|
|
1380
1643
|
});
|
|
1381
|
-
const
|
|
1644
|
+
const WorkspaceInsightsStatSchema = z$1.object({
|
|
1382
1645
|
delta_30d: z$1.number(),
|
|
1383
1646
|
delta_window: z$1.string(),
|
|
1384
1647
|
value: z$1.number()
|
|
1385
1648
|
});
|
|
1386
|
-
const
|
|
1387
|
-
externally_published:
|
|
1388
|
-
risk:
|
|
1389
|
-
total_projects:
|
|
1390
|
-
workspace_members:
|
|
1649
|
+
const WorkspaceInsightsSummarySchema = z$1.object({
|
|
1650
|
+
externally_published: WorkspaceInsightsStatSchema,
|
|
1651
|
+
risk: WorkspaceInsightsReviewPrioritySchema,
|
|
1652
|
+
total_projects: WorkspaceInsightsStatSchema,
|
|
1653
|
+
workspace_members: WorkspaceInsightsStatSchema
|
|
1391
1654
|
});
|
|
1392
|
-
const
|
|
1655
|
+
const WorkspaceInsightsSchema = z$1.object({
|
|
1393
1656
|
as_of: z$1.iso.datetime().optional(),
|
|
1394
|
-
findings: z$1.array(
|
|
1395
|
-
summary:
|
|
1657
|
+
findings: z$1.array(WorkspaceInsightsFindingSchema),
|
|
1658
|
+
summary: WorkspaceInsightsSummarySchema
|
|
1396
1659
|
});
|
|
1397
|
-
const
|
|
1660
|
+
const WorkspaceMemberGroupSchema = z$1.object({
|
|
1661
|
+
id: z$1.string(),
|
|
1662
|
+
name: z$1.string()
|
|
1663
|
+
});
|
|
1664
|
+
const WorkspaceMemberSchema = z$1.object({
|
|
1398
1665
|
display_name: z$1.string().optional(),
|
|
1399
1666
|
email: z$1.string().optional(),
|
|
1667
|
+
groups: z$1.array(WorkspaceMemberGroupSchema).optional(),
|
|
1400
1668
|
invited_at: z$1.iso.datetime().optional(),
|
|
1401
1669
|
joined_at: z$1.iso.datetime().optional(),
|
|
1402
1670
|
monthly_credit_limit: z$1.number().optional(),
|
|
1403
|
-
role: z$1.
|
|
1671
|
+
role: z$1.enum([
|
|
1672
|
+
"owner",
|
|
1673
|
+
"admin",
|
|
1674
|
+
"member",
|
|
1675
|
+
"viewer",
|
|
1676
|
+
"collaborator"
|
|
1677
|
+
]),
|
|
1404
1678
|
user_id: z$1.string(),
|
|
1405
1679
|
workspace_id: z$1.string()
|
|
1406
1680
|
});
|
|
1407
|
-
const
|
|
1408
|
-
data: z$1.array(
|
|
1681
|
+
const WorkspaceMemberPageSchema = z$1.object({
|
|
1682
|
+
data: z$1.array(WorkspaceMemberSchema).nullable(),
|
|
1409
1683
|
pagination: PaginationSchema
|
|
1410
1684
|
});
|
|
1411
|
-
const
|
|
1685
|
+
const WorkspaceSettingsSchema = z$1.object({
|
|
1412
1686
|
billing_period_end_date: z$1.iso.datetime().optional(),
|
|
1413
1687
|
billing_period_start_date: z$1.iso.datetime().optional(),
|
|
1414
1688
|
default_monthly_member_credit_limit: z$1.number().optional(),
|
|
1415
|
-
default_project_visibility: z$1.
|
|
1689
|
+
default_project_visibility: z$1.enum([
|
|
1690
|
+
"draft",
|
|
1691
|
+
"private",
|
|
1692
|
+
"workspace_view",
|
|
1693
|
+
"public"
|
|
1694
|
+
]).optional(),
|
|
1416
1695
|
enable_pii: z$1.boolean(),
|
|
1417
1696
|
enforce_sso: z$1.boolean(),
|
|
1418
1697
|
id: z$1.string(),
|
|
1419
1698
|
name: z$1.string(),
|
|
1420
1699
|
num_seats: z$1.number().optional(),
|
|
1421
|
-
plan: z$1.
|
|
1422
|
-
|
|
1700
|
+
plan: z$1.enum([
|
|
1701
|
+
"free",
|
|
1702
|
+
"pro",
|
|
1703
|
+
"business",
|
|
1704
|
+
"enterprise"
|
|
1705
|
+
]),
|
|
1706
|
+
publishing_policy: z$1.enum([
|
|
1707
|
+
"org_only",
|
|
1708
|
+
"workspace_only",
|
|
1709
|
+
"disabled"
|
|
1710
|
+
]).optional()
|
|
1423
1711
|
});
|
|
1424
1712
|
const V1WorkspaceSkillDtoSchema = z$1.object({
|
|
1425
1713
|
description: z$1.string(),
|
|
@@ -1444,37 +1732,37 @@ const V1WorkspaceUsageBreakdownEntrySchema = z$1.object({
|
|
|
1444
1732
|
user_id: z$1.string()
|
|
1445
1733
|
});
|
|
1446
1734
|
const V1WorkspaceUsageBreakdownBodySchema = z$1.object({
|
|
1447
|
-
billing_period:
|
|
1735
|
+
billing_period: BillingPeriodSchema,
|
|
1448
1736
|
data: z$1.array(V1WorkspaceUsageBreakdownEntrySchema).nullable(),
|
|
1449
1737
|
member_count: z$1.number(),
|
|
1450
1738
|
pagination: PaginationSchema
|
|
1451
1739
|
});
|
|
1452
|
-
const
|
|
1740
|
+
const ConnectorUsageSchema = z$1.object({
|
|
1453
1741
|
credits: z$1.number(),
|
|
1454
1742
|
key: z$1.string(),
|
|
1455
1743
|
label: z$1.string()
|
|
1456
1744
|
});
|
|
1457
|
-
const
|
|
1745
|
+
const DatabaseUsageSchema = z$1.object({
|
|
1458
1746
|
credits: z$1.number(),
|
|
1459
1747
|
key: z$1.enum(["database_server", "database_storage"]),
|
|
1460
1748
|
label: z$1.string()
|
|
1461
1749
|
});
|
|
1462
|
-
const
|
|
1750
|
+
const GatewayModelUsageSchema = z$1.object({
|
|
1463
1751
|
credits: z$1.number(),
|
|
1464
1752
|
name: z$1.string(),
|
|
1465
1753
|
provider: z$1.string()
|
|
1466
1754
|
});
|
|
1467
|
-
const
|
|
1755
|
+
const CreditUsageEntrySchema = z$1.object({
|
|
1468
1756
|
build: z$1.number(),
|
|
1469
1757
|
connectors: z$1.number(),
|
|
1470
|
-
connectors_breakdown: z$1.array(
|
|
1758
|
+
connectors_breakdown: z$1.array(ConnectorUsageSchema).nullish(),
|
|
1471
1759
|
database: z$1.number(),
|
|
1472
|
-
database_breakdown: z$1.array(
|
|
1760
|
+
database_breakdown: z$1.array(DatabaseUsageSchema).nullish(),
|
|
1473
1761
|
display_name: z$1.string().optional(),
|
|
1474
1762
|
email: z$1.string().optional(),
|
|
1475
1763
|
functions: z$1.number(),
|
|
1476
1764
|
gateway: z$1.number(),
|
|
1477
|
-
gateway_models: z$1.array(
|
|
1765
|
+
gateway_models: z$1.array(GatewayModelUsageSchema).nullish(),
|
|
1478
1766
|
network: z$1.number(),
|
|
1479
1767
|
period_end: z$1.string().optional(),
|
|
1480
1768
|
period_start: z$1.string().optional(),
|
|
@@ -1485,11 +1773,11 @@ const V1BillingUsageRowSchema = z$1.object({
|
|
|
1485
1773
|
total: z$1.number(),
|
|
1486
1774
|
user_id: z$1.string().optional()
|
|
1487
1775
|
});
|
|
1488
|
-
const
|
|
1489
|
-
data: z$1.array(
|
|
1776
|
+
const CreditUsagePageSchema = z$1.object({
|
|
1777
|
+
data: z$1.array(CreditUsageEntrySchema).nullable(),
|
|
1490
1778
|
entity_count: z$1.number().optional(),
|
|
1491
1779
|
pagination: PaginationSchema,
|
|
1492
|
-
period:
|
|
1780
|
+
period: CreditUsagePeriodSchema,
|
|
1493
1781
|
workspace_total: z$1.number()
|
|
1494
1782
|
});
|
|
1495
1783
|
const V1WorkspaceUsageMeBodySchema = z$1.object({
|
|
@@ -1519,12 +1807,12 @@ const V1WorkspaceUsageProjectsBodySchema = z$1.object({
|
|
|
1519
1807
|
const V1WorkspaceUsageTimeseriesBucketSchema = z$1.object({
|
|
1520
1808
|
build: z$1.number(),
|
|
1521
1809
|
connectors: z$1.number(),
|
|
1522
|
-
connectors_breakdown: z$1.array(
|
|
1810
|
+
connectors_breakdown: z$1.array(ConnectorUsageSchema).nullable(),
|
|
1523
1811
|
database: z$1.number(),
|
|
1524
|
-
database_breakdown: z$1.array(
|
|
1812
|
+
database_breakdown: z$1.array(DatabaseUsageSchema).nullable(),
|
|
1525
1813
|
functions: z$1.number(),
|
|
1526
1814
|
gateway: z$1.number(),
|
|
1527
|
-
gateway_models: z$1.array(
|
|
1815
|
+
gateway_models: z$1.array(GatewayModelUsageSchema).nullable(),
|
|
1528
1816
|
network: z$1.number(),
|
|
1529
1817
|
period_end: z$1.string(),
|
|
1530
1818
|
period_start: z$1.string(),
|
|
@@ -1545,6 +1833,7 @@ const V1WriteWorkspaceSkillOutputBodySchema = z$1.object({
|
|
|
1545
1833
|
skill: V1WorkspaceSkillDtoSchema
|
|
1546
1834
|
});
|
|
1547
1835
|
const VisibilityChangeInfoSchema = z$1.object({
|
|
1836
|
+
commit_time: z$1.iso.datetime().optional(),
|
|
1548
1837
|
new_visibility: z$1.enum([
|
|
1549
1838
|
"public",
|
|
1550
1839
|
"private",
|
|
@@ -1566,24 +1855,172 @@ const AddProjectsToFolderResultSchema = z$1.object({
|
|
|
1566
1855
|
total_requested: z$1.number(),
|
|
1567
1856
|
visibility_updated: z$1.array(VisibilityChangeInfoSchema).nullable()
|
|
1568
1857
|
});
|
|
1569
|
-
const
|
|
1858
|
+
const WorkspaceAnalyticsSchema = z$1.object({ timeSeries: TimeSeriesGroupSchema });
|
|
1859
|
+
//#endregion
|
|
1860
|
+
//#region src/schemas-deprecated.ts
|
|
1861
|
+
/** @deprecated Renamed to PiiLabelPageSchema. */
|
|
1862
|
+
const CursorListResponsePublicV1PiiLabelSchema = PiiLabelPageSchema;
|
|
1863
|
+
/** @deprecated Renamed to ProjectSummaryPageSchema. */
|
|
1864
|
+
const CursorListResponsePublicV1ProjectListItemSchema = ProjectSummaryPageSchema;
|
|
1865
|
+
/** @deprecated Renamed to ProjectCollaboratorPageSchema. */
|
|
1866
|
+
const CursorListResponseV1ProjectCollaboratorSchema = ProjectCollaboratorPageSchema;
|
|
1867
|
+
/** @deprecated Renamed to SecurityScanPageSchema. */
|
|
1868
|
+
const CursorListResponseV1SecurityScanSummarySchema = SecurityScanPageSchema;
|
|
1869
|
+
/** @deprecated Renamed to WorkspaceGroupPageSchema. */
|
|
1870
|
+
const CursorListResponseV1WorkspaceGroupSchema = WorkspaceGroupPageSchema;
|
|
1871
|
+
/** @deprecated Renamed to WorkspaceMemberPageSchema. */
|
|
1872
|
+
const CursorListResponseV1WorkspaceMemberSchema = WorkspaceMemberPageSchema;
|
|
1873
|
+
/** @deprecated Renamed to CurrentUserSchema. */
|
|
1874
|
+
const GetMeOutputBodySchema = CurrentUserSchema;
|
|
1875
|
+
/** @deprecated Renamed to CurrentUserWorkspaceSchema. */
|
|
1876
|
+
const GetMeWorkspaceSchema = CurrentUserWorkspaceSchema;
|
|
1877
|
+
/** @deprecated Renamed to AnalyticsBreakdownPointSchema. */
|
|
1878
|
+
const ListDataPointSchema = AnalyticsBreakdownPointSchema;
|
|
1879
|
+
/** @deprecated Renamed to AnalyticsBreakdownSchema. */
|
|
1880
|
+
const ListDataSchema = AnalyticsBreakdownSchema;
|
|
1881
|
+
/** @deprecated Renamed to AnalyticsBreakdownGroupSchema. */
|
|
1882
|
+
const ListsGroupSchema = AnalyticsBreakdownGroupSchema;
|
|
1883
|
+
/** @deprecated Renamed to AnalyticsTrendSchema. */
|
|
1884
|
+
const ProjectTrendResponseSchema = AnalyticsTrendSchema;
|
|
1885
|
+
/** @deprecated Renamed to GetWorkspaceResponseSchema. */
|
|
1886
|
+
const PublicV1GetWorkspaceBodySchema = GetWorkspaceResponseSchema;
|
|
1887
|
+
/** @deprecated Renamed to UpdateProjectRequestSchema. */
|
|
1888
|
+
const PublicV1PatchProjectBodySchema = UpdateProjectRequestSchema;
|
|
1889
|
+
/** @deprecated Renamed to PiiLabelSchema. */
|
|
1890
|
+
const PublicV1PiiLabelSchema = PiiLabelSchema;
|
|
1891
|
+
/** @deprecated Renamed to ProjectAnalyticsSchema. */
|
|
1892
|
+
const PublicV1ProjectAnalyticsBodySchema = ProjectAnalyticsSchema;
|
|
1893
|
+
/** @deprecated Renamed to ProjectSummarySchema. */
|
|
1894
|
+
const PublicV1ProjectListItemSchema = ProjectSummarySchema;
|
|
1895
|
+
/** @deprecated Renamed to PublishAudienceTargetSchema. */
|
|
1896
|
+
const PublicV1PublishAudienceTargetSchema = PublishAudienceTargetSchema;
|
|
1897
|
+
/** @deprecated Renamed to PublishProjectRequestSchema. */
|
|
1898
|
+
const PublicV1PublishProjectInputBodySchema = PublishProjectRequestSchema;
|
|
1899
|
+
/** @deprecated Renamed to PublishProjectResponseSchema. */
|
|
1900
|
+
const PublicV1PublishProjectResponseSchema = PublishProjectResponseSchema;
|
|
1901
|
+
/** @deprecated Renamed to DeploymentSchema. */
|
|
1902
|
+
const PublicV1PublishStatusResponseSchema = DeploymentSchema;
|
|
1903
|
+
/** @deprecated Renamed to RemixJobSchema. */
|
|
1904
|
+
const PublicV1RemixJobOutputBodySchema = RemixJobSchema;
|
|
1905
|
+
/** @deprecated Renamed to UpdatePublishSettingsRequestSchema. */
|
|
1906
|
+
const PublicV1UpdatePublishSettingsInputBodySchema = UpdatePublishSettingsRequestSchema;
|
|
1907
|
+
/** @deprecated Renamed to PublishSettingsSchema. */
|
|
1908
|
+
const PublicV1UpdatePublishSettingsResponseSchema = PublishSettingsSchema;
|
|
1909
|
+
/** @deprecated Renamed to WorkspaceMembershipSchema. */
|
|
1910
|
+
const PublicV1WorkspaceMemberSchema = WorkspaceMembershipSchema;
|
|
1911
|
+
/** @deprecated Renamed to WorkspaceSchema. */
|
|
1912
|
+
const PublicV1WorkspaceSchema = WorkspaceSchema;
|
|
1913
|
+
/** @deprecated Renamed to WorkspaceWithMembershipSchema. */
|
|
1914
|
+
const PublicV1WorkspaceWithMembershipSchema = WorkspaceWithMembershipSchema;
|
|
1915
|
+
/** @deprecated Renamed to SetMemberCreditLimitsRequestSchema. */
|
|
1916
|
+
const V1BillingBulkSetMemberCreditLimitInputBodySchema = SetMemberCreditLimitsRequestSchema;
|
|
1917
|
+
/** @deprecated Renamed to MemberCreditLimitSchema. */
|
|
1918
|
+
const V1BillingCreditLimitRowSchema = MemberCreditLimitSchema;
|
|
1919
|
+
/** @deprecated Renamed to CreditLimitPageSchema. */
|
|
1920
|
+
const V1BillingCreditLimitsBodySchema = CreditLimitPageSchema;
|
|
1921
|
+
/** @deprecated Renamed to BillingPeriodSchema. */
|
|
1922
|
+
const V1BillingPeriodSchema = BillingPeriodSchema;
|
|
1923
|
+
/** @deprecated Renamed to CreditUsagePageSchema. */
|
|
1924
|
+
const V1BillingUsageBodySchema = CreditUsagePageSchema;
|
|
1925
|
+
/** @deprecated Renamed to CreditUsagePeriodSchema. */
|
|
1926
|
+
const V1BillingUsagePeriodSchema = CreditUsagePeriodSchema;
|
|
1927
|
+
/** @deprecated Renamed to CreditUsageEntrySchema. */
|
|
1928
|
+
const V1BillingUsageRowSchema = CreditUsageEntrySchema;
|
|
1929
|
+
/** @deprecated Renamed to MemberCreditLimitUpdateSchema. */
|
|
1930
|
+
const V1BulkMemberCreditLimitItemSchema = MemberCreditLimitUpdateSchema;
|
|
1931
|
+
/** @deprecated Renamed to MemberCreditLimitResultSchema. */
|
|
1932
|
+
const V1BulkMemberCreditLimitResultSchema = MemberCreditLimitResultSchema;
|
|
1933
|
+
/** @deprecated Renamed to SetMemberCreditLimitsResponseSchema. */
|
|
1934
|
+
const V1BulkSetMemberCreditLimitOutputBodySchema = SetMemberCreditLimitsResponseSchema;
|
|
1935
|
+
/** @deprecated Renamed to CreateEmbedUrlRequestSchema. */
|
|
1936
|
+
const V1CreateEmbedUrlInputBodySchema = CreateEmbedUrlRequestSchema;
|
|
1937
|
+
/** @deprecated Renamed to CreateEmbedUrlResponseSchema. */
|
|
1938
|
+
const V1CreateEmbedUrlOutputBodySchema = CreateEmbedUrlResponseSchema;
|
|
1939
|
+
/** @deprecated Renamed to CreditHistoryEntrySchema. */
|
|
1940
|
+
const V1CreditHistoryEntrySchema = CreditHistoryEntrySchema;
|
|
1941
|
+
/** @deprecated Renamed to SecurityScanDetailSchema. */
|
|
1942
|
+
const V1GetSecurityScanOutputBodySchema = SecurityScanDetailSchema;
|
|
1943
|
+
/** @deprecated Renamed to WorkspacePageSchema. */
|
|
1944
|
+
const V1ListWorkspacesBodySchema = WorkspacePageSchema;
|
|
1945
|
+
/** @deprecated Renamed to ProjectCollaboratorSchema. */
|
|
1946
|
+
const V1ProjectCollaboratorSchema = ProjectCollaboratorSchema;
|
|
1947
|
+
/** @deprecated Renamed to ProjectSchema. */
|
|
1948
|
+
const V1ProjectResponseSchema = ProjectSchema;
|
|
1949
|
+
/** @deprecated Renamed to RemixResultSchema. */
|
|
1950
|
+
const V1RemixProgressResultSchema = RemixResultSchema;
|
|
1951
|
+
/** @deprecated Renamed to SecurityFindingSchema. */
|
|
1952
|
+
const V1SecurityFindingSchema = SecurityFindingSchema;
|
|
1953
|
+
/** @deprecated Renamed to SecurityScanActorSchema. */
|
|
1954
|
+
const V1SecurityScanActorSchema = SecurityScanActorSchema;
|
|
1955
|
+
/** @deprecated Renamed to SecurityScanSchema. */
|
|
1956
|
+
const V1SecurityScanSummarySchema = SecurityScanSchema;
|
|
1957
|
+
/** @deprecated Renamed to SecurityScannerRunSchema. */
|
|
1958
|
+
const V1SecurityScannerRunSchema = SecurityScannerRunSchema;
|
|
1959
|
+
/** @deprecated Renamed to TriggerSecurityScanResponseSchema. */
|
|
1960
|
+
const V1TriggerSecurityScanResponseBodySchema = TriggerSecurityScanResponseSchema;
|
|
1961
|
+
/** @deprecated Renamed to UpdateWorkspaceSettingsRequestSchema. */
|
|
1962
|
+
const V1UpdateWorkspaceSettingsNestedInputBodySchema = UpdateWorkspaceSettingsRequestSchema;
|
|
1963
|
+
/** @deprecated Renamed to CreditHistoryPageSchema. */
|
|
1964
|
+
const V1WorkspaceCreditHistoryBodySchema = CreditHistoryPageSchema;
|
|
1965
|
+
/** @deprecated Renamed to CreditBalanceSchema. */
|
|
1966
|
+
const V1WorkspaceCreditsBodySchema = CreditBalanceSchema;
|
|
1967
|
+
/** @deprecated Renamed to ExpiringCreditGrantSchema. */
|
|
1968
|
+
const V1WorkspaceCreditsExpiringGrantSchema = ExpiringCreditGrantSchema;
|
|
1969
|
+
/** @deprecated Renamed to CreditGrantTypeBalanceSchema. */
|
|
1970
|
+
const V1WorkspaceCreditsGrantTypeBalanceSchema = CreditGrantTypeBalanceSchema;
|
|
1971
|
+
/** @deprecated Renamed to WorkspaceGroupSchema. */
|
|
1972
|
+
const V1WorkspaceGroupSchema = WorkspaceGroupSchema;
|
|
1973
|
+
/** @deprecated Renamed to WorkspaceInsightsActivityFreshnessSchema. */
|
|
1974
|
+
const V1WorkspaceInsightsActivityFreshnessSchema = WorkspaceInsightsActivityFreshnessSchema;
|
|
1975
|
+
/** @deprecated Renamed to WorkspaceInsightsSchema. */
|
|
1976
|
+
const V1WorkspaceInsightsBodySchema = WorkspaceInsightsSchema;
|
|
1977
|
+
/** @deprecated Renamed to WorkspaceInsightsEdgeFunctionSchema. */
|
|
1978
|
+
const V1WorkspaceInsightsEdgeFunctionSchema = WorkspaceInsightsEdgeFunctionSchema;
|
|
1979
|
+
/** @deprecated Renamed to WorkspaceInsightsFindingSchema. */
|
|
1980
|
+
const V1WorkspaceInsightsFindingSchema = WorkspaceInsightsFindingSchema;
|
|
1981
|
+
/** @deprecated Renamed to WorkspaceInsightsOwnerSchema. */
|
|
1982
|
+
const V1WorkspaceInsightsOwnerSchema = WorkspaceInsightsOwnerSchema;
|
|
1983
|
+
/** @deprecated Renamed to WorkspaceInsightsProjectSchema. */
|
|
1984
|
+
const V1WorkspaceInsightsProjectSchema = WorkspaceInsightsProjectSchema;
|
|
1985
|
+
/** @deprecated Renamed to WorkspaceInsightsProjectPageSchema. */
|
|
1986
|
+
const V1WorkspaceInsightsProjectsBodySchema = WorkspaceInsightsProjectPageSchema;
|
|
1987
|
+
/** @deprecated Renamed to WorkspaceInsightsReasonSchema. */
|
|
1988
|
+
const V1WorkspaceInsightsReasonSchema = WorkspaceInsightsReasonSchema;
|
|
1989
|
+
/** @deprecated Renamed to WorkspaceInsightsReasonValuesSchema. */
|
|
1990
|
+
const V1WorkspaceInsightsReasonValuesSchema = WorkspaceInsightsReasonValuesSchema;
|
|
1991
|
+
/** @deprecated Renamed to WorkspaceInsightsReviewPrioritySchema. */
|
|
1992
|
+
const V1WorkspaceInsightsReviewPrioritySchema = WorkspaceInsightsReviewPrioritySchema;
|
|
1993
|
+
/** @deprecated Renamed to WorkspaceInsightsSignalsSchema. */
|
|
1994
|
+
const V1WorkspaceInsightsSignalsSchema = WorkspaceInsightsSignalsSchema;
|
|
1995
|
+
/** @deprecated Renamed to WorkspaceInsightsStatSchema. */
|
|
1996
|
+
const V1WorkspaceInsightsStatSchema = WorkspaceInsightsStatSchema;
|
|
1997
|
+
/** @deprecated Renamed to WorkspaceInsightsSummarySchema. */
|
|
1998
|
+
const V1WorkspaceInsightsSummarySchema = WorkspaceInsightsSummarySchema;
|
|
1999
|
+
/** @deprecated Renamed to WorkspaceMemberGroupSchema. */
|
|
2000
|
+
const V1WorkspaceMemberGroupSchema = WorkspaceMemberGroupSchema;
|
|
2001
|
+
/** @deprecated Renamed to WorkspaceMemberSchema. */
|
|
2002
|
+
const V1WorkspaceMemberSchema = WorkspaceMemberSchema;
|
|
2003
|
+
/** @deprecated Renamed to WorkspaceSettingsSchema. */
|
|
2004
|
+
const V1WorkspaceSettingsBodySchema = WorkspaceSettingsSchema;
|
|
2005
|
+
/** @deprecated Renamed to ConnectorUsageSchema. */
|
|
2006
|
+
const V1WorkspaceUsageConnectorBreakdownSchema = ConnectorUsageSchema;
|
|
2007
|
+
/** @deprecated Renamed to DatabaseUsageSchema. */
|
|
2008
|
+
const V1WorkspaceUsageDatabaseBreakdownSchema = DatabaseUsageSchema;
|
|
2009
|
+
/** @deprecated Renamed to GatewayModelUsageSchema. */
|
|
2010
|
+
const V1WorkspaceUsageGatewayModelSchema = GatewayModelUsageSchema;
|
|
2011
|
+
/** @deprecated Renamed to WorkspaceAnalyticsSchema. */
|
|
2012
|
+
const WorkspaceAnalyticsResponseSchema = WorkspaceAnalyticsSchema;
|
|
1570
2013
|
//#endregion
|
|
1571
2014
|
//#region src/schemas.ts
|
|
1572
|
-
/** @deprecated Renamed to
|
|
1573
|
-
const CursorListResponseSearchProjectItemSchema =
|
|
1574
|
-
/** @deprecated Renamed to
|
|
1575
|
-
const GetUserWorkspaceBodySchema =
|
|
1576
|
-
/** @deprecated Renamed to
|
|
1577
|
-
const
|
|
1578
|
-
/** @deprecated Renamed to PublicV1WorkspaceMemberSchema. */
|
|
1579
|
-
const WorkspaceMembershipResponseSchema = PublicV1WorkspaceMemberSchema;
|
|
1580
|
-
/** @deprecated Renamed to PublicV1WorkspaceMemberSchema. */
|
|
1581
|
-
const WorkspaceMembershipSchema = PublicV1WorkspaceMemberSchema;
|
|
1582
|
-
/** @deprecated Renamed to PublicV1WorkspaceWithMembershipSchema. */
|
|
1583
|
-
const WorkspaceWithMembershipSchema = PublicV1WorkspaceWithMembershipSchema;
|
|
2015
|
+
/** @deprecated Renamed to ProjectSummaryPageSchema. */
|
|
2016
|
+
const CursorListResponseSearchProjectItemSchema = ProjectSummaryPageSchema;
|
|
2017
|
+
/** @deprecated Renamed to GetWorkspaceResponseSchema. */
|
|
2018
|
+
const GetUserWorkspaceBodySchema = GetWorkspaceResponseSchema;
|
|
2019
|
+
/** @deprecated Renamed to WorkspaceMembershipSchema. */
|
|
2020
|
+
const WorkspaceMembershipResponseSchema = WorkspaceMembershipSchema;
|
|
1584
2021
|
const V1DatabaseQueryOutputBodySchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
|
|
1585
2022
|
const V1DatabaseQueryOutputBodyWritableSchema = z.object({ rows: z.array(z.record(z.string(), z.unknown())).nullable() });
|
|
1586
2023
|
//#endregion
|
|
1587
|
-
export { AddProjectsToFolderResultSchema, AppUserConnectorApiSchema, ChannelAnalyticsSchema, ChannelListsGroupSchema, ChannelTimeSeriesGroupSchema, CommonSeamlessConnectorFeatureSchema, CommonSeamlessConnectorPermissionSchema, CompanyCreatorSchema, CreatorSchema, CursorListResponseProjectPiiFindingDtoSchema, CursorListResponsePublicV1ConnectorItemSchema, CursorListResponsePublicV1ProjectListItemSchema, CursorListResponseSearchProjectItemSchema, CursorListResponseV1EditSummarySchema, CursorListResponseV1MessageListItemSchema, CursorListResponseV1ProjectCollaboratorSchema, CursorListResponseV1ProjectSkillDtoSchema, CursorListResponseV1SecurityScanSummarySchema, CursorListResponseV1WorkspaceMemberSchema, DiffHunkSchema, DiffLineSchema, ErrorDetailSchema, ErrorModelSchema, GetAvailableLibraryProjectsPublicV1OutputBodySchema, GetAvailableTemplateProjectsPublicV1OutputBodySchema, GetMeOutputBodySchema, GetMeWorkspaceSchema, GetUserWorkspaceBodySchema, GitFileEntryLiteSchema, GitFileEntrySchema, LibraryProjectResponseSchema, ListDataPointSchema, ListDataSchema, ListsGroupSchema, LovableCreatorSchema, McpConnectorSchema, PaginationSchema, ProjectAnalyticsResponseSchema, ProjectFileInfoSchema, ProjectPiiFindingDtoSchema, ProjectTrendResponseSchema, PublicV1ConnectorItemSchema, PublicV1CreateProjectResponseSchema, PublicV1DeployProjectInputBodySchema, PublicV1EnableDatabaseInputBodySchema, PublicV1GetWorkspaceBodySchema, PublicV1GitFilesResponseSchema, PublicV1PatchProjectBodySchema, PublicV1ProjectAnalyticsBodySchema, PublicV1ProjectCreateInputBodySchema, PublicV1ProjectFileUploadUrlInputBodySchema, PublicV1ProjectListItemSchema, PublicV1ProjectRemixInputBodySchema, PublicV1PublishAudienceTargetSchema, PublicV1PublishProjectInputBodySchema, PublicV1PublishProjectResponseSchema, PublicV1PublishStatusResponseSchema, PublicV1SendMessageInputBodySchema, PublicV1SetProjectKnowledgeInputBodySchema, PublicV1SetProjectSkillEnabledInputBodySchema, PublicV1UpdatePublishSettingsInputBodySchema, PublicV1UpdatePublishSettingsResponseSchema, PublicV1WorkspaceMemberSchema, PublicV1WorkspaceSchema, PublicV1WorkspaceWithMembershipSchema, RemixJobFailureSchema, RemixJobStepInfoSchema, RemixWarningSchema, SeamlessConnectorApiSchema, SearchProjectItemSchema, SearchWorkspaceProjectsResponseSchema, SkippedProjectInfoSchema, StandardConnectorApiSchema, StandardConnectorPromotionSchema, TemplateProjectResponseSchema, TimeSeriesDataPointSchema, TimeSeriesDataSchema, TimeSeriesGroupSchema, ToolDisplayDataSchema, TrendDataPointSchema, UserCreatorSchema, V1AddConnectorInputBodySchema, V1AiResponseSummarySchema, V1AvailableConnectorEntrySchema, V1AwaitingInputSummarySchema, V1BillingBulkSetMemberCreditLimitInputBodySchema, V1BillingCreditLimitRowSchema, V1BillingCreditLimitsBodySchema, V1BillingPeriodSchema, V1BillingUsageBodySchema, V1BillingUsagePeriodSchema, V1BillingUsageRowSchema, V1BulkMemberCreditLimitItemSchema, V1BulkMemberCreditLimitResultSchema, V1BulkSetMemberCreditLimitInputBodySchema, V1BulkSetMemberCreditLimitOutputBodySchema, V1ConnectionItemSchema, V1ConnectorResponseSchema, V1CreateEmbedUrlInputBodySchema, V1CreateEmbedUrlOutputBodySchema, V1CreateProjectInputBodySchema, V1CreateProjectResponseSchema, V1CreateVariantInputBodySchema, V1CreateVariantOutputBodySchema, V1CreditHistoryEntrySchema, V1DatabaseQueryOutputBodySchema, V1DatabaseQueryOutputBodyWritableSchema, V1DeleteWorkspaceSkillOutputBodySchema, V1DeployProjectInputBodySchema, V1DeployProjectOutputBodySchema, V1DiffEntrySchema, V1DiffResponseSchema, V1EditSummarySchema, V1EnableDatabaseOutputBodySchema, V1EphemeralFileUploadUrlInputBodySchema, V1FileUploadUrlOutputBodySchema, V1GetDatabaseStatusOutputBodySchema, V1GetEditsOutputBodySchema, V1GetSecurityScanOutputBodySchema, V1GetWorkspaceSkillOutputBodySchema, V1KnowledgeResponseSchema, V1ListAppUserConnectorsResponseSchema, V1ListAvailableConnectorsOutputBodySchema, V1ListConnectionsResponseSchema, V1ListConnectorsOutputBodySchema, V1ListMcpConnectorsResponseSchema, V1ListMessagesOutputBodySchema, V1ListProjectSkillsOutputBodySchema, V1ListSeamlessConnectorsResponseSchema, V1ListStandardConnectorsResponseSchema, V1ListWorkspaceSkillsOutputBodySchema, V1ListWorkspacesBodySchema,
|
|
2024
|
+
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 };
|
|
1588
2025
|
|
|
1589
2026
|
//# sourceMappingURL=schemas.js.map
|