@perstack/api-client 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.d.ts +264 -245
- package/dist/v1/index.js +203 -192
- package/dist/v1/index.js.map +1 -1
- package/package.json +1 -1
package/dist/v1/index.d.ts
CHANGED
|
@@ -574,6 +574,13 @@ declare const apiCheckpointActionDelegateSchema: z.ZodObject<{
|
|
|
574
574
|
}, z.core.$strip>;
|
|
575
575
|
query: z.ZodString;
|
|
576
576
|
}, z.core.$strip>;
|
|
577
|
+
declare const apiCheckpointActionInteractiveTool: z.ZodObject<{
|
|
578
|
+
error: z.ZodOptional<z.ZodString>;
|
|
579
|
+
type: z.ZodLiteral<"interactiveTool">;
|
|
580
|
+
skillName: z.ZodString;
|
|
581
|
+
toolName: z.ZodString;
|
|
582
|
+
args: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
583
|
+
}, z.core.$strip>;
|
|
577
584
|
declare const apiCheckpointActionGeneralToolSchema: z.ZodObject<{
|
|
578
585
|
error: z.ZodOptional<z.ZodString>;
|
|
579
586
|
type: z.ZodLiteral<"generalTool">;
|
|
@@ -797,6 +804,12 @@ declare const apiCheckpointActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
797
804
|
tags: z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodString>, z.ZodString>, z.ZodString>>;
|
|
798
805
|
}, z.core.$strip>;
|
|
799
806
|
query: z.ZodString;
|
|
807
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
808
|
+
error: z.ZodOptional<z.ZodString>;
|
|
809
|
+
type: z.ZodLiteral<"interactiveTool">;
|
|
810
|
+
skillName: z.ZodString;
|
|
811
|
+
toolName: z.ZodString;
|
|
812
|
+
args: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
800
813
|
}, z.core.$strip>, z.ZodObject<{
|
|
801
814
|
error: z.ZodOptional<z.ZodString>;
|
|
802
815
|
type: z.ZodLiteral<"generalTool">;
|
|
@@ -1023,6 +1036,12 @@ declare const apiCheckpointSchema: z.ZodObject<{
|
|
|
1023
1036
|
tags: z.ZodArray<z.ZodPipe<z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodString>, z.ZodString>, z.ZodString>>;
|
|
1024
1037
|
}, z.core.$strip>;
|
|
1025
1038
|
query: z.ZodString;
|
|
1039
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1040
|
+
error: z.ZodOptional<z.ZodString>;
|
|
1041
|
+
type: z.ZodLiteral<"interactiveTool">;
|
|
1042
|
+
skillName: z.ZodString;
|
|
1043
|
+
toolName: z.ZodString;
|
|
1044
|
+
args: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1026
1045
|
}, z.core.$strip>, z.ZodObject<{
|
|
1027
1046
|
error: z.ZodOptional<z.ZodString>;
|
|
1028
1047
|
type: z.ZodLiteral<"generalTool">;
|
|
@@ -2273,6 +2292,250 @@ declare const deleteStudioExpertInput: z.ZodObject<{
|
|
|
2273
2292
|
type DeleteStudioExpertInput = z.input<typeof deleteStudioExpertInput>;
|
|
2274
2293
|
declare function deleteStudioExpert(input: DeleteStudioExpertInput, client: ApiV1Client): Promise<void>;
|
|
2275
2294
|
|
|
2295
|
+
declare const apiWorkspaceItemOwnerSchema: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2296
|
+
type ApiWorkspaceItemOwner = z.infer<typeof apiWorkspaceItemOwnerSchema>;
|
|
2297
|
+
declare const apiWorkspaceItemLifecycleSchema: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2298
|
+
type ApiWorkspaceItemLifecycle = z.infer<typeof apiWorkspaceItemLifecycleSchema>;
|
|
2299
|
+
declare const apiWorkspaceItemPermissionSchema: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2300
|
+
type ApiWorkspaceItemPermission = z.infer<typeof apiWorkspaceItemPermissionSchema>;
|
|
2301
|
+
declare const apiBaseWorkspaceItemSchema: z.ZodObject<{
|
|
2302
|
+
id: z.ZodCUID2;
|
|
2303
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2304
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2305
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2306
|
+
path: z.ZodString;
|
|
2307
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2308
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2309
|
+
}, z.core.$strip>;
|
|
2310
|
+
declare const apiWorkspaceItemDirectorySchema: z.ZodObject<{
|
|
2311
|
+
id: z.ZodCUID2;
|
|
2312
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2313
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2314
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2315
|
+
path: z.ZodString;
|
|
2316
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2317
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2318
|
+
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2319
|
+
}, z.core.$strip>;
|
|
2320
|
+
type ApiWorkspaceItemDirectory = z.infer<typeof apiWorkspaceItemDirectorySchema>;
|
|
2321
|
+
declare const apiWorkspaceItemFileSchema: z.ZodObject<{
|
|
2322
|
+
id: z.ZodCUID2;
|
|
2323
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2324
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2325
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2326
|
+
path: z.ZodString;
|
|
2327
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2328
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2329
|
+
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2330
|
+
key: z.ZodString;
|
|
2331
|
+
mimeType: z.ZodString;
|
|
2332
|
+
size: z.ZodNumber;
|
|
2333
|
+
}, z.core.$strip>;
|
|
2334
|
+
type ApiWorkspaceItemFile = z.infer<typeof apiWorkspaceItemFileSchema>;
|
|
2335
|
+
declare const apiWorkspaceItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2336
|
+
id: z.ZodCUID2;
|
|
2337
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2338
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2339
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2340
|
+
path: z.ZodString;
|
|
2341
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2342
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2343
|
+
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2344
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2345
|
+
id: z.ZodCUID2;
|
|
2346
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2347
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2348
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2349
|
+
path: z.ZodString;
|
|
2350
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2351
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2352
|
+
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2353
|
+
key: z.ZodString;
|
|
2354
|
+
mimeType: z.ZodString;
|
|
2355
|
+
size: z.ZodNumber;
|
|
2356
|
+
}, z.core.$strip>], "type">;
|
|
2357
|
+
type ApiWorkspaceItem = z.infer<typeof apiWorkspaceItemSchema>;
|
|
2358
|
+
|
|
2359
|
+
declare const apiWorkspaceSchema: z.ZodObject<{
|
|
2360
|
+
type: z.ZodLiteral<"workspace">;
|
|
2361
|
+
id: z.ZodCUID2;
|
|
2362
|
+
applicationId: z.ZodCUID2;
|
|
2363
|
+
application: z.ZodObject<{
|
|
2364
|
+
type: z.ZodLiteral<"application">;
|
|
2365
|
+
id: z.ZodCUID2;
|
|
2366
|
+
organizationId: z.ZodCUID2;
|
|
2367
|
+
organization: z.ZodObject<{
|
|
2368
|
+
type: z.ZodLiteral<"organization">;
|
|
2369
|
+
id: z.ZodCUID2;
|
|
2370
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2371
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2372
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2373
|
+
nameChangedAt: z.ZodOptional<z.ZodDate>;
|
|
2374
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"inactive">, z.ZodLiteral<"deleted">]>;
|
|
2375
|
+
organizationType: z.ZodUnion<readonly [z.ZodLiteral<"personal">, z.ZodLiteral<"personalPlus">, z.ZodLiteral<"team">, z.ZodLiteral<"serviceAdmin">]>;
|
|
2376
|
+
maxApplications: z.ZodNumber;
|
|
2377
|
+
maxApiKeys: z.ZodNumber;
|
|
2378
|
+
maxStudioExperts: z.ZodNumber;
|
|
2379
|
+
}, z.core.$strip>;
|
|
2380
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2381
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2382
|
+
name: z.ZodString;
|
|
2383
|
+
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"inactive">, z.ZodLiteral<"deleted">]>;
|
|
2384
|
+
}, z.core.$strip>;
|
|
2385
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2386
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2387
|
+
items: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2388
|
+
id: z.ZodCUID2;
|
|
2389
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2390
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2391
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2392
|
+
path: z.ZodString;
|
|
2393
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2394
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2395
|
+
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2396
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2397
|
+
id: z.ZodCUID2;
|
|
2398
|
+
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2399
|
+
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2400
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2401
|
+
path: z.ZodString;
|
|
2402
|
+
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2403
|
+
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2404
|
+
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2405
|
+
key: z.ZodString;
|
|
2406
|
+
mimeType: z.ZodString;
|
|
2407
|
+
size: z.ZodNumber;
|
|
2408
|
+
}, z.core.$strip>], "type">>;
|
|
2409
|
+
countItems: z.ZodNumber;
|
|
2410
|
+
envVariables: z.ZodArray<z.ZodString>;
|
|
2411
|
+
envSecrets: z.ZodArray<z.ZodString>;
|
|
2412
|
+
countWorkspaceInstances: z.ZodNumber;
|
|
2413
|
+
}, z.core.$strip>;
|
|
2414
|
+
type ApiWorkspace = z.infer<typeof apiWorkspaceSchema>;
|
|
2415
|
+
|
|
2416
|
+
declare function getWorkspace(client: ApiV1Client): Promise<{
|
|
2417
|
+
workspace: ApiWorkspace;
|
|
2418
|
+
}>;
|
|
2419
|
+
/**
|
|
2420
|
+
* Create a workspace item
|
|
2421
|
+
*/
|
|
2422
|
+
declare const createWorkspaceItemInput: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2423
|
+
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2424
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2425
|
+
path: z.ZodString;
|
|
2426
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2427
|
+
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2428
|
+
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2429
|
+
path: z.ZodString;
|
|
2430
|
+
file: z.ZodCustom<buffer.File, buffer.File>;
|
|
2431
|
+
}, z.core.$strip>], "type">;
|
|
2432
|
+
type CreateWorkspaceItemInput = z.input<typeof createWorkspaceItemInput>;
|
|
2433
|
+
declare function createWorkspaceItem(input: CreateWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2434
|
+
workspaceItem: ApiWorkspaceItem;
|
|
2435
|
+
}>;
|
|
2436
|
+
/**
|
|
2437
|
+
* Retrieve a workspace item
|
|
2438
|
+
*/
|
|
2439
|
+
declare const getWorkspaceItemInput: z.ZodObject<{
|
|
2440
|
+
itemId: z.ZodString;
|
|
2441
|
+
}, z.core.$strip>;
|
|
2442
|
+
type GetWorkspaceItemInput = z.input<typeof getWorkspaceItemInput>;
|
|
2443
|
+
declare function getWorkspaceItem(input: GetWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2444
|
+
workspaceItem: ApiWorkspaceItem;
|
|
2445
|
+
}>;
|
|
2446
|
+
/**
|
|
2447
|
+
* Retrieve multiple workspace items
|
|
2448
|
+
*/
|
|
2449
|
+
declare const getWorkspaceItemsInput: z.ZodObject<{
|
|
2450
|
+
take: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>]>>;
|
|
2451
|
+
skip: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>]>>;
|
|
2452
|
+
}, z.core.$strip>;
|
|
2453
|
+
type GetWorkspaceItemsInput = z.input<typeof getWorkspaceItemsInput>;
|
|
2454
|
+
declare function getWorkspaceItems(input: GetWorkspaceItemsInput, client: ApiV1Client): Promise<{
|
|
2455
|
+
workspaceItems: ApiWorkspaceItem[];
|
|
2456
|
+
total: number;
|
|
2457
|
+
take: number;
|
|
2458
|
+
skip: number;
|
|
2459
|
+
}>;
|
|
2460
|
+
/**
|
|
2461
|
+
* Download a workspace file item
|
|
2462
|
+
*/
|
|
2463
|
+
declare const downloadWorkspaceItemInput: z.ZodObject<{
|
|
2464
|
+
itemId: z.ZodString;
|
|
2465
|
+
}, z.core.$strip>;
|
|
2466
|
+
type DownloadWorkspaceItemInput = z.input<typeof downloadWorkspaceItemInput>;
|
|
2467
|
+
declare function downloadWorkspaceItem(input: DownloadWorkspaceItemInput, client: ApiV1Client): Promise<Blob>;
|
|
2468
|
+
/**
|
|
2469
|
+
* Update a workspace item
|
|
2470
|
+
*/
|
|
2471
|
+
declare const updateWorkspaceItemInput: z.ZodObject<{
|
|
2472
|
+
itemId: z.ZodString;
|
|
2473
|
+
permission: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>>;
|
|
2474
|
+
path: z.ZodOptional<z.ZodString>;
|
|
2475
|
+
lifecycle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>>;
|
|
2476
|
+
}, z.core.$strip>;
|
|
2477
|
+
type UpdateWorkspaceItemInput = z.input<typeof updateWorkspaceItemInput>;
|
|
2478
|
+
declare function updateWorkspaceItem(input: UpdateWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2479
|
+
workspaceItem: ApiWorkspaceItem;
|
|
2480
|
+
}>;
|
|
2481
|
+
/**
|
|
2482
|
+
* Delete a workspace item
|
|
2483
|
+
*/
|
|
2484
|
+
declare const deleteWorkspaceItemInput: z.ZodObject<{
|
|
2485
|
+
itemId: z.ZodString;
|
|
2486
|
+
}, z.core.$strip>;
|
|
2487
|
+
type DeleteWorkspaceItemInput = z.input<typeof deleteWorkspaceItemInput>;
|
|
2488
|
+
declare function deleteWorkspaceItem(input: DeleteWorkspaceItemInput, client: ApiV1Client): Promise<void>;
|
|
2489
|
+
/**
|
|
2490
|
+
* Create a workspace variable
|
|
2491
|
+
*/
|
|
2492
|
+
declare const createWorkspaceVariableInput: z.ZodObject<{
|
|
2493
|
+
name: z.ZodString;
|
|
2494
|
+
value: z.ZodString;
|
|
2495
|
+
}, z.core.$strip>;
|
|
2496
|
+
type CreateWorkspaceVariableInput = z.input<typeof createWorkspaceVariableInput>;
|
|
2497
|
+
declare function createWorkspaceVariable(input: CreateWorkspaceVariableInput, client: ApiV1Client): Promise<{
|
|
2498
|
+
workspace: ApiWorkspace;
|
|
2499
|
+
}>;
|
|
2500
|
+
/**
|
|
2501
|
+
* Update a workspace variable
|
|
2502
|
+
*/
|
|
2503
|
+
declare const updateWorkspaceVariableInput: z.ZodObject<{
|
|
2504
|
+
name: z.ZodString;
|
|
2505
|
+
value: z.ZodString;
|
|
2506
|
+
}, z.core.$strip>;
|
|
2507
|
+
type UpdateWorkspaceVariableInput = z.input<typeof updateWorkspaceVariableInput>;
|
|
2508
|
+
declare function updateWorkspaceVariable(input: UpdateWorkspaceVariableInput, client: ApiV1Client): Promise<{
|
|
2509
|
+
workspace: ApiWorkspace;
|
|
2510
|
+
}>;
|
|
2511
|
+
/**
|
|
2512
|
+
* Delete a workspace variable
|
|
2513
|
+
*/
|
|
2514
|
+
declare const deleteWorkspaceVariableInput: z.ZodObject<{
|
|
2515
|
+
name: z.ZodString;
|
|
2516
|
+
}, z.core.$strip>;
|
|
2517
|
+
type DeleteWorkspaceVariableInput = z.input<typeof deleteWorkspaceVariableInput>;
|
|
2518
|
+
declare function deleteWorkspaceVariable(input: DeleteWorkspaceVariableInput, client: ApiV1Client): Promise<void>;
|
|
2519
|
+
/**
|
|
2520
|
+
* Create a workspace secret
|
|
2521
|
+
*/
|
|
2522
|
+
declare const createWorkspaceSecretInput: z.ZodObject<{
|
|
2523
|
+
name: z.ZodString;
|
|
2524
|
+
value: z.ZodString;
|
|
2525
|
+
}, z.core.$strip>;
|
|
2526
|
+
type CreateWorkspaceSecretInput = z.input<typeof createWorkspaceSecretInput>;
|
|
2527
|
+
declare function createWorkspaceSecret(input: CreateWorkspaceSecretInput, client: ApiV1Client): Promise<{
|
|
2528
|
+
workspace: ApiWorkspace;
|
|
2529
|
+
}>;
|
|
2530
|
+
/**
|
|
2531
|
+
* Delete a workspace secret
|
|
2532
|
+
*/
|
|
2533
|
+
declare const deleteWorkspaceSecretInput: z.ZodObject<{
|
|
2534
|
+
name: z.ZodString;
|
|
2535
|
+
}, z.core.$strip>;
|
|
2536
|
+
type DeleteWorkspaceSecretInput = z.input<typeof deleteWorkspaceSecretInput>;
|
|
2537
|
+
declare function deleteWorkspaceSecret(input: DeleteWorkspaceSecretInput, client: ApiV1Client): Promise<void>;
|
|
2538
|
+
|
|
2276
2539
|
declare const apiWorkspaceInstanceSchema: z.ZodObject<{
|
|
2277
2540
|
type: z.ZodLiteral<"workspaceInstance">;
|
|
2278
2541
|
id: z.ZodCUID2;
|
|
@@ -2494,70 +2757,6 @@ declare const apiWorkspaceInstanceSchema: z.ZodObject<{
|
|
|
2494
2757
|
}, z.core.$strip>;
|
|
2495
2758
|
type ApiWorkspaceInstance = z.infer<typeof apiWorkspaceInstanceSchema>;
|
|
2496
2759
|
|
|
2497
|
-
declare const apiWorkspaceItemOwnerSchema: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2498
|
-
type ApiWorkspaceItemOwner = z.infer<typeof apiWorkspaceItemOwnerSchema>;
|
|
2499
|
-
declare const apiWorkspaceItemLifecycleSchema: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2500
|
-
type ApiWorkspaceItemLifecycle = z.infer<typeof apiWorkspaceItemLifecycleSchema>;
|
|
2501
|
-
declare const apiWorkspaceItemPermissionSchema: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2502
|
-
type ApiWorkspaceItemPermission = z.infer<typeof apiWorkspaceItemPermissionSchema>;
|
|
2503
|
-
declare const apiBaseWorkspaceItemSchema: z.ZodObject<{
|
|
2504
|
-
id: z.ZodCUID2;
|
|
2505
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2506
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2507
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2508
|
-
path: z.ZodString;
|
|
2509
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2510
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2511
|
-
}, z.core.$strip>;
|
|
2512
|
-
declare const apiWorkspaceItemDirectorySchema: z.ZodObject<{
|
|
2513
|
-
id: z.ZodCUID2;
|
|
2514
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2515
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2516
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2517
|
-
path: z.ZodString;
|
|
2518
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2519
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2520
|
-
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2521
|
-
}, z.core.$strip>;
|
|
2522
|
-
type ApiWorkspaceItemDirectory = z.infer<typeof apiWorkspaceItemDirectorySchema>;
|
|
2523
|
-
declare const apiWorkspaceItemFileSchema: z.ZodObject<{
|
|
2524
|
-
id: z.ZodCUID2;
|
|
2525
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2526
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2527
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2528
|
-
path: z.ZodString;
|
|
2529
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2530
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2531
|
-
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2532
|
-
key: z.ZodString;
|
|
2533
|
-
mimeType: z.ZodString;
|
|
2534
|
-
size: z.ZodNumber;
|
|
2535
|
-
}, z.core.$strip>;
|
|
2536
|
-
type ApiWorkspaceItemFile = z.infer<typeof apiWorkspaceItemFileSchema>;
|
|
2537
|
-
declare const apiWorkspaceItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2538
|
-
id: z.ZodCUID2;
|
|
2539
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2540
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2541
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2542
|
-
path: z.ZodString;
|
|
2543
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2544
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2545
|
-
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2546
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2547
|
-
id: z.ZodCUID2;
|
|
2548
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2549
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2550
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2551
|
-
path: z.ZodString;
|
|
2552
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2553
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2554
|
-
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2555
|
-
key: z.ZodString;
|
|
2556
|
-
mimeType: z.ZodString;
|
|
2557
|
-
size: z.ZodNumber;
|
|
2558
|
-
}, z.core.$strip>], "type">;
|
|
2559
|
-
type ApiWorkspaceItem = z.infer<typeof apiWorkspaceItemSchema>;
|
|
2560
|
-
|
|
2561
2760
|
/**
|
|
2562
2761
|
* Retrieve the workspace instance
|
|
2563
2762
|
*/
|
|
@@ -2646,186 +2845,6 @@ declare const deleteWorkspaceInstanceItemInput: z.ZodObject<{
|
|
|
2646
2845
|
type DeleteWorkspaceInstanceItemInput = z.input<typeof deleteWorkspaceInstanceItemInput>;
|
|
2647
2846
|
declare function deleteWorkspaceInstanceItem(input: DeleteWorkspaceInstanceItemInput, client: ApiV1Client): Promise<void>;
|
|
2648
2847
|
|
|
2649
|
-
declare const apiWorkspaceSchema: z.ZodObject<{
|
|
2650
|
-
type: z.ZodLiteral<"workspace">;
|
|
2651
|
-
id: z.ZodCUID2;
|
|
2652
|
-
applicationId: z.ZodCUID2;
|
|
2653
|
-
application: z.ZodObject<{
|
|
2654
|
-
type: z.ZodLiteral<"application">;
|
|
2655
|
-
id: z.ZodCUID2;
|
|
2656
|
-
organizationId: z.ZodCUID2;
|
|
2657
|
-
organization: z.ZodObject<{
|
|
2658
|
-
type: z.ZodLiteral<"organization">;
|
|
2659
|
-
id: z.ZodCUID2;
|
|
2660
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2661
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2662
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2663
|
-
nameChangedAt: z.ZodOptional<z.ZodDate>;
|
|
2664
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"inactive">, z.ZodLiteral<"deleted">]>;
|
|
2665
|
-
organizationType: z.ZodUnion<readonly [z.ZodLiteral<"personal">, z.ZodLiteral<"personalPlus">, z.ZodLiteral<"team">, z.ZodLiteral<"serviceAdmin">]>;
|
|
2666
|
-
maxApplications: z.ZodNumber;
|
|
2667
|
-
maxApiKeys: z.ZodNumber;
|
|
2668
|
-
maxStudioExperts: z.ZodNumber;
|
|
2669
|
-
}, z.core.$strip>;
|
|
2670
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2671
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2672
|
-
name: z.ZodString;
|
|
2673
|
-
status: z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"inactive">, z.ZodLiteral<"deleted">]>;
|
|
2674
|
-
}, z.core.$strip>;
|
|
2675
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2676
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2677
|
-
items: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2678
|
-
id: z.ZodCUID2;
|
|
2679
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2680
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2681
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2682
|
-
path: z.ZodString;
|
|
2683
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2684
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2685
|
-
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2686
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2687
|
-
id: z.ZodCUID2;
|
|
2688
|
-
owner: z.ZodUnion<readonly [z.ZodLiteral<"user">, z.ZodLiteral<"expert">]>;
|
|
2689
|
-
lifecycle: z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>;
|
|
2690
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2691
|
-
path: z.ZodString;
|
|
2692
|
-
createdAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2693
|
-
updatedAt: z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>;
|
|
2694
|
-
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2695
|
-
key: z.ZodString;
|
|
2696
|
-
mimeType: z.ZodString;
|
|
2697
|
-
size: z.ZodNumber;
|
|
2698
|
-
}, z.core.$strip>], "type">>;
|
|
2699
|
-
countItems: z.ZodNumber;
|
|
2700
|
-
envVariables: z.ZodArray<z.ZodString>;
|
|
2701
|
-
envSecrets: z.ZodArray<z.ZodString>;
|
|
2702
|
-
countWorkspaceInstances: z.ZodNumber;
|
|
2703
|
-
}, z.core.$strip>;
|
|
2704
|
-
type ApiWorkspace = z.infer<typeof apiWorkspaceSchema>;
|
|
2705
|
-
|
|
2706
|
-
declare function getWorkspace(client: ApiV1Client): Promise<{
|
|
2707
|
-
workspace: ApiWorkspace;
|
|
2708
|
-
}>;
|
|
2709
|
-
/**
|
|
2710
|
-
* Create a workspace item
|
|
2711
|
-
*/
|
|
2712
|
-
declare const createWorkspaceItemInput: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2713
|
-
type: z.ZodLiteral<"workspaceItemDirectory">;
|
|
2714
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2715
|
-
path: z.ZodString;
|
|
2716
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2717
|
-
type: z.ZodLiteral<"workspaceItemFile">;
|
|
2718
|
-
permission: z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>;
|
|
2719
|
-
path: z.ZodString;
|
|
2720
|
-
file: z.ZodCustom<buffer.File, buffer.File>;
|
|
2721
|
-
}, z.core.$strip>], "type">;
|
|
2722
|
-
type CreateWorkspaceItemInput = z.input<typeof createWorkspaceItemInput>;
|
|
2723
|
-
declare function createWorkspaceItem(input: CreateWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2724
|
-
workspaceItem: ApiWorkspaceItem;
|
|
2725
|
-
}>;
|
|
2726
|
-
/**
|
|
2727
|
-
* Retrieve a workspace item
|
|
2728
|
-
*/
|
|
2729
|
-
declare const getWorkspaceItemInput: z.ZodObject<{
|
|
2730
|
-
itemId: z.ZodString;
|
|
2731
|
-
}, z.core.$strip>;
|
|
2732
|
-
type GetWorkspaceItemInput = z.input<typeof getWorkspaceItemInput>;
|
|
2733
|
-
declare function getWorkspaceItem(input: GetWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2734
|
-
workspaceItem: ApiWorkspaceItem;
|
|
2735
|
-
}>;
|
|
2736
|
-
/**
|
|
2737
|
-
* Retrieve multiple workspace items
|
|
2738
|
-
*/
|
|
2739
|
-
declare const getWorkspaceItemsInput: z.ZodObject<{
|
|
2740
|
-
take: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>]>>;
|
|
2741
|
-
skip: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>]>>;
|
|
2742
|
-
}, z.core.$strip>;
|
|
2743
|
-
type GetWorkspaceItemsInput = z.input<typeof getWorkspaceItemsInput>;
|
|
2744
|
-
declare function getWorkspaceItems(input: GetWorkspaceItemsInput, client: ApiV1Client): Promise<{
|
|
2745
|
-
workspaceItems: ApiWorkspaceItem[];
|
|
2746
|
-
total: number;
|
|
2747
|
-
take: number;
|
|
2748
|
-
skip: number;
|
|
2749
|
-
}>;
|
|
2750
|
-
/**
|
|
2751
|
-
* Download a workspace file item
|
|
2752
|
-
*/
|
|
2753
|
-
declare const downloadWorkspaceItemInput: z.ZodObject<{
|
|
2754
|
-
itemId: z.ZodString;
|
|
2755
|
-
}, z.core.$strip>;
|
|
2756
|
-
type DownloadWorkspaceItemInput = z.input<typeof downloadWorkspaceItemInput>;
|
|
2757
|
-
declare function downloadWorkspaceItem(input: DownloadWorkspaceItemInput, client: ApiV1Client): Promise<Blob>;
|
|
2758
|
-
/**
|
|
2759
|
-
* Update a workspace item
|
|
2760
|
-
*/
|
|
2761
|
-
declare const updateWorkspaceItemInput: z.ZodObject<{
|
|
2762
|
-
itemId: z.ZodString;
|
|
2763
|
-
permission: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"readOnly">, z.ZodLiteral<"readWrite">]>>;
|
|
2764
|
-
path: z.ZodOptional<z.ZodString>;
|
|
2765
|
-
lifecycle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"application">, z.ZodLiteral<"expertJob">]>>;
|
|
2766
|
-
}, z.core.$strip>;
|
|
2767
|
-
type UpdateWorkspaceItemInput = z.input<typeof updateWorkspaceItemInput>;
|
|
2768
|
-
declare function updateWorkspaceItem(input: UpdateWorkspaceItemInput, client: ApiV1Client): Promise<{
|
|
2769
|
-
workspaceItem: ApiWorkspaceItem;
|
|
2770
|
-
}>;
|
|
2771
|
-
/**
|
|
2772
|
-
* Delete a workspace item
|
|
2773
|
-
*/
|
|
2774
|
-
declare const deleteWorkspaceItemInput: z.ZodObject<{
|
|
2775
|
-
itemId: z.ZodString;
|
|
2776
|
-
}, z.core.$strip>;
|
|
2777
|
-
type DeleteWorkspaceItemInput = z.input<typeof deleteWorkspaceItemInput>;
|
|
2778
|
-
declare function deleteWorkspaceItem(input: DeleteWorkspaceItemInput, client: ApiV1Client): Promise<void>;
|
|
2779
|
-
/**
|
|
2780
|
-
* Create a workspace variable
|
|
2781
|
-
*/
|
|
2782
|
-
declare const createWorkspaceVariableInput: z.ZodObject<{
|
|
2783
|
-
name: z.ZodString;
|
|
2784
|
-
value: z.ZodString;
|
|
2785
|
-
}, z.core.$strip>;
|
|
2786
|
-
type CreateWorkspaceVariableInput = z.input<typeof createWorkspaceVariableInput>;
|
|
2787
|
-
declare function createWorkspaceVariable(input: CreateWorkspaceVariableInput, client: ApiV1Client): Promise<{
|
|
2788
|
-
workspace: ApiWorkspace;
|
|
2789
|
-
}>;
|
|
2790
|
-
/**
|
|
2791
|
-
* Update a workspace variable
|
|
2792
|
-
*/
|
|
2793
|
-
declare const updateWorkspaceVariableInput: z.ZodObject<{
|
|
2794
|
-
name: z.ZodString;
|
|
2795
|
-
value: z.ZodString;
|
|
2796
|
-
}, z.core.$strip>;
|
|
2797
|
-
type UpdateWorkspaceVariableInput = z.input<typeof updateWorkspaceVariableInput>;
|
|
2798
|
-
declare function updateWorkspaceVariable(input: UpdateWorkspaceVariableInput, client: ApiV1Client): Promise<{
|
|
2799
|
-
workspace: ApiWorkspace;
|
|
2800
|
-
}>;
|
|
2801
|
-
/**
|
|
2802
|
-
* Delete a workspace variable
|
|
2803
|
-
*/
|
|
2804
|
-
declare const deleteWorkspaceVariableInput: z.ZodObject<{
|
|
2805
|
-
name: z.ZodString;
|
|
2806
|
-
}, z.core.$strip>;
|
|
2807
|
-
type DeleteWorkspaceVariableInput = z.input<typeof deleteWorkspaceVariableInput>;
|
|
2808
|
-
declare function deleteWorkspaceVariable(input: DeleteWorkspaceVariableInput, client: ApiV1Client): Promise<void>;
|
|
2809
|
-
/**
|
|
2810
|
-
* Create a workspace secret
|
|
2811
|
-
*/
|
|
2812
|
-
declare const createWorkspaceSecretInput: z.ZodObject<{
|
|
2813
|
-
name: z.ZodString;
|
|
2814
|
-
value: z.ZodString;
|
|
2815
|
-
}, z.core.$strip>;
|
|
2816
|
-
type CreateWorkspaceSecretInput = z.input<typeof createWorkspaceSecretInput>;
|
|
2817
|
-
declare function createWorkspaceSecret(input: CreateWorkspaceSecretInput, client: ApiV1Client): Promise<{
|
|
2818
|
-
workspace: ApiWorkspace;
|
|
2819
|
-
}>;
|
|
2820
|
-
/**
|
|
2821
|
-
* Delete a workspace secret
|
|
2822
|
-
*/
|
|
2823
|
-
declare const deleteWorkspaceSecretInput: z.ZodObject<{
|
|
2824
|
-
name: z.ZodString;
|
|
2825
|
-
}, z.core.$strip>;
|
|
2826
|
-
type DeleteWorkspaceSecretInput = z.input<typeof deleteWorkspaceSecretInput>;
|
|
2827
|
-
declare function deleteWorkspaceSecret(input: DeleteWorkspaceSecretInput, client: ApiV1Client): Promise<void>;
|
|
2828
|
-
|
|
2829
2848
|
type ApiV1Config = {
|
|
2830
2849
|
baseUrl?: string;
|
|
2831
2850
|
apiKey?: string;
|
|
@@ -3097,4 +3116,4 @@ declare const apiSkillSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3097
3116
|
}, z.core.$strip>], "type">;
|
|
3098
3117
|
type ApiSkill = z.infer<typeof apiSkillSchema>;
|
|
3099
3118
|
|
|
3100
|
-
export { type ApiApplication, type ApiApplicationStatus, type ApiCheckpoint, type ApiCheckpointAction, type ApiCheckpointStatus, ApiError, type ApiExpert, type ApiExpertDigest, type ApiExpertJob, type ApiExpertJobStatus, type ApiInteractiveSkill, type ApiMcpSseSkill, type ApiMcpStdioSkill, type ApiMcpStdioSkillCommand, type ApiOrganization, type ApiOrganizationStatus, type ApiOrganizationType, type ApiRegistryExpert, type ApiSkill, type ApiSkillName, type ApiStudioExpert, ApiV1Client, type ApiV1Config, type ApiWorkspace, type ApiWorkspaceInstance, type ApiWorkspaceItem, type ApiWorkspaceItemDirectory, type ApiWorkspaceItemFile, type ApiWorkspaceItemLifecycle, type ApiWorkspaceItemOwner, type ApiWorkspaceItemPermission, type ContinueExpertJobInput, type CreateCheckpointInput, type CreateRegistryExpertInput, type CreateStudioExpertInput, type CreateWorkspaceInstanceItemInput, type CreateWorkspaceItemInput, type CreateWorkspaceSecretInput, type CreateWorkspaceVariableInput, type DeleteRegistryExpertInput, type DeleteStudioExpertInput, type DeleteWorkspaceInstanceItemInput, type DeleteWorkspaceItemInput, type DeleteWorkspaceSecretInput, type DeleteWorkspaceVariableInput, type DownloadWorkspaceInstanceItemInput, type DownloadWorkspaceItemInput, type GetCheckpointInput, type GetCheckpointsInput, type GetExpertJobInput, type GetExpertJobsInput, type GetRegistryExpertInput, type GetRegistryExpertVersionsInput, type GetRegistryExpertsInput, type GetStudioExpertInput, type GetStudioExpertsInput, type GetWorkspaceInstanceInput, type GetWorkspaceInstanceItemInput, type GetWorkspaceInstanceItemsInput, type GetWorkspaceItemInput, type GetWorkspaceItemsInput, type ResumeExpertJobFromCheckpointInput, type StartExpertJobInput, type UpdateExpertJobInput, type UpdateStudioExpertInput, type UpdateWorkspaceInstanceItemInput, type UpdateWorkspaceItemInput, type UpdateWorkspaceVariableInput, apiApplicationSchema, apiApplicationStatusSchema, apiBaseExpertSchema, apiBaseWorkspaceItemSchema, apiCheckpointActionAppendTextFileSchema, apiCheckpointActionAttemptCompletionSchema, apiCheckpointActionCreateDirectorySchema, apiCheckpointActionDelegateSchema, apiCheckpointActionDeleteFileSchema, apiCheckpointActionEditTextFileSchema, apiCheckpointActionErrorSchema, apiCheckpointActionGeneralToolSchema, apiCheckpointActionGetFileInfoSchema, apiCheckpointActionListDirectorySchema, apiCheckpointActionMoveFileSchema, apiCheckpointActionReadImageFileSchema, apiCheckpointActionReadPdfFileSchema, apiCheckpointActionReadTextFileSchema, apiCheckpointActionRetrySchema, apiCheckpointActionSchema, apiCheckpointActionTestUrlSchema, apiCheckpointActionThinkSchema, apiCheckpointActionTodoSchema, apiCheckpointActionWriteTextFileSchema, apiCheckpointSchema, apiCheckpointStatusSchema, apiExpertDigestSchema, apiExpertJobSchema, apiExpertJobStatusSchema, apiExpertSchema, apiInteractiveSkillSchema, apiMcpSseSkillSchema, apiMcpStdioSkillCommandSchema, apiMcpStdioSkillSchema, apiOrganizationSchema, apiOrganizationStatusSchema, apiOrganizationTypeSchema, apiRegistryExpertSchema, apiSkillNameSchema, apiSkillSchema, apiStudioExpertSchema, apiWorkspaceInstanceSchema, apiWorkspaceItemDirectorySchema, apiWorkspaceItemFileSchema, apiWorkspaceItemLifecycleSchema, apiWorkspaceItemOwnerSchema, apiWorkspaceItemPermissionSchema, apiWorkspaceItemSchema, apiWorkspaceSchema, continueExpertJob, createCheckpoint, createRegistryExpert, createStudioExpert, createWorkspaceInstanceItem, createWorkspaceItem, createWorkspaceSecret, createWorkspaceVariable, deleteRegistryExpert, deleteStudioExpert, deleteWorkspaceInstanceItem, deleteWorkspaceItem, deleteWorkspaceSecret, deleteWorkspaceVariable, downloadWorkspaceInstanceItem, downloadWorkspaceItem, getCheckpoint, getCheckpoints, getExpertJob, getExpertJobs, getRegistryExpert, getRegistryExpertVersions, getRegistryExperts, getStudioExpert, getStudioExperts, getWorkspace, getWorkspaceInstance, getWorkspaceInstanceItem, getWorkspaceInstanceItems, getWorkspaceItem, getWorkspaceItems, resumeExpertJobFromCheckpoint, startExpertJob, updateExpertJob, updateStudioExpert, updateWorkspaceInstanceItem, updateWorkspaceItem, updateWorkspaceVariable };
|
|
3119
|
+
export { type ApiApplication, type ApiApplicationStatus, type ApiCheckpoint, type ApiCheckpointAction, type ApiCheckpointStatus, ApiError, type ApiExpert, type ApiExpertDigest, type ApiExpertJob, type ApiExpertJobStatus, type ApiInteractiveSkill, type ApiMcpSseSkill, type ApiMcpStdioSkill, type ApiMcpStdioSkillCommand, type ApiOrganization, type ApiOrganizationStatus, type ApiOrganizationType, type ApiRegistryExpert, type ApiSkill, type ApiSkillName, type ApiStudioExpert, ApiV1Client, type ApiV1Config, type ApiWorkspace, type ApiWorkspaceInstance, type ApiWorkspaceItem, type ApiWorkspaceItemDirectory, type ApiWorkspaceItemFile, type ApiWorkspaceItemLifecycle, type ApiWorkspaceItemOwner, type ApiWorkspaceItemPermission, type ContinueExpertJobInput, type CreateCheckpointInput, type CreateRegistryExpertInput, type CreateStudioExpertInput, type CreateWorkspaceInstanceItemInput, type CreateWorkspaceItemInput, type CreateWorkspaceSecretInput, type CreateWorkspaceVariableInput, type DeleteRegistryExpertInput, type DeleteStudioExpertInput, type DeleteWorkspaceInstanceItemInput, type DeleteWorkspaceItemInput, type DeleteWorkspaceSecretInput, type DeleteWorkspaceVariableInput, type DownloadWorkspaceInstanceItemInput, type DownloadWorkspaceItemInput, type GetCheckpointInput, type GetCheckpointsInput, type GetExpertJobInput, type GetExpertJobsInput, type GetRegistryExpertInput, type GetRegistryExpertVersionsInput, type GetRegistryExpertsInput, type GetStudioExpertInput, type GetStudioExpertsInput, type GetWorkspaceInstanceInput, type GetWorkspaceInstanceItemInput, type GetWorkspaceInstanceItemsInput, type GetWorkspaceItemInput, type GetWorkspaceItemsInput, type ResumeExpertJobFromCheckpointInput, type StartExpertJobInput, type UpdateExpertJobInput, type UpdateStudioExpertInput, type UpdateWorkspaceInstanceItemInput, type UpdateWorkspaceItemInput, type UpdateWorkspaceVariableInput, apiApplicationSchema, apiApplicationStatusSchema, apiBaseExpertSchema, apiBaseWorkspaceItemSchema, apiCheckpointActionAppendTextFileSchema, apiCheckpointActionAttemptCompletionSchema, apiCheckpointActionCreateDirectorySchema, apiCheckpointActionDelegateSchema, apiCheckpointActionDeleteFileSchema, apiCheckpointActionEditTextFileSchema, apiCheckpointActionErrorSchema, apiCheckpointActionGeneralToolSchema, apiCheckpointActionGetFileInfoSchema, apiCheckpointActionInteractiveTool, apiCheckpointActionListDirectorySchema, apiCheckpointActionMoveFileSchema, apiCheckpointActionReadImageFileSchema, apiCheckpointActionReadPdfFileSchema, apiCheckpointActionReadTextFileSchema, apiCheckpointActionRetrySchema, apiCheckpointActionSchema, apiCheckpointActionTestUrlSchema, apiCheckpointActionThinkSchema, apiCheckpointActionTodoSchema, apiCheckpointActionWriteTextFileSchema, apiCheckpointSchema, apiCheckpointStatusSchema, apiExpertDigestSchema, apiExpertJobSchema, apiExpertJobStatusSchema, apiExpertSchema, apiInteractiveSkillSchema, apiMcpSseSkillSchema, apiMcpStdioSkillCommandSchema, apiMcpStdioSkillSchema, apiOrganizationSchema, apiOrganizationStatusSchema, apiOrganizationTypeSchema, apiRegistryExpertSchema, apiSkillNameSchema, apiSkillSchema, apiStudioExpertSchema, apiWorkspaceInstanceSchema, apiWorkspaceItemDirectorySchema, apiWorkspaceItemFileSchema, apiWorkspaceItemLifecycleSchema, apiWorkspaceItemOwnerSchema, apiWorkspaceItemPermissionSchema, apiWorkspaceItemSchema, apiWorkspaceSchema, continueExpertJob, createCheckpoint, createRegistryExpert, createStudioExpert, createWorkspaceInstanceItem, createWorkspaceItem, createWorkspaceSecret, createWorkspaceVariable, deleteRegistryExpert, deleteStudioExpert, deleteWorkspaceInstanceItem, deleteWorkspaceItem, deleteWorkspaceSecret, deleteWorkspaceVariable, downloadWorkspaceInstanceItem, downloadWorkspaceItem, getCheckpoint, getCheckpoints, getExpertJob, getExpertJobs, getRegistryExpert, getRegistryExpertVersions, getRegistryExperts, getStudioExpert, getStudioExperts, getWorkspace, getWorkspaceInstance, getWorkspaceInstanceItem, getWorkspaceInstanceItems, getWorkspaceItem, getWorkspaceItems, resumeExpertJobFromCheckpoint, startExpertJob, updateExpertJob, updateStudioExpert, updateWorkspaceInstanceItem, updateWorkspaceItem, updateWorkspaceVariable };
|