@opengeni/contracts 2.7.0 → 2.9.2-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-authored-durable-text.d.ts +3 -0
- package/dist/atlassian.js +2 -1
- package/dist/chunk-4IVHBXRI.js +221 -0
- package/dist/chunk-4IVHBXRI.js.map +1 -0
- package/dist/{chunk-ILB4IYNN.js → chunk-UGGTRQNU.js} +273 -249
- package/dist/chunk-UGGTRQNU.js.map +1 -0
- package/dist/company-profile.d.ts +275 -1
- package/dist/connection-authority.js +2 -1
- package/dist/connection-authority.js.map +1 -1
- package/dist/google-drive.js +2 -1
- package/dist/google-drive.js.map +1 -1
- package/dist/index.d.ts +282 -3
- package/dist/index.js +71 -5
- package/dist/managed-auth-session-sets.d.ts +19 -0
- package/dist/managed-auth-session-sets.js +12 -1
- package/dist/managed-auth-session-sets.js.map +1 -1
- package/dist/model-picker-order.d.ts +23 -0
- package/dist/model-picker-order.js +31 -0
- package/dist/model-picker-order.js.map +1 -0
- package/dist/organization-membership-lifecycle.d.ts +3 -0
- package/dist/permissions.d.ts +1 -0
- package/dist/personal-github.js +2 -1
- package/dist/personal-github.js.map +1 -1
- package/dist/session-titles.d.ts +9 -0
- package/dist/session-titles.js +17 -0
- package/dist/session-titles.js.map +1 -0
- package/package.json +9 -1
- package/src/agent-authored-durable-text.ts +13 -6
- package/src/company-profile.ts +46 -1
- package/src/index.ts +472 -180
- package/src/managed-auth-session-sets.ts +18 -0
- package/src/model-picker-order.ts +75 -0
- package/src/permissions.ts +1 -0
- package/src/session-titles.ts +12 -5
- package/dist/chunk-ILB4IYNN.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -2315,6 +2315,69 @@ export declare const UpdateWorkspaceModelPolicyRequest: z.ZodObject<{
|
|
|
2315
2315
|
allowedModels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2316
2316
|
}, z.core.$strip>;
|
|
2317
2317
|
export type UpdateWorkspaceModelPolicyRequest = z.infer<typeof UpdateWorkspaceModelPolicyRequest>;
|
|
2318
|
+
export declare const WORKSPACE_GATEWAY_CUSTOM_MODEL_UPSTREAM_ID_MAX_LENGTH = 238;
|
|
2319
|
+
export declare const CreateWorkspaceGatewayCustomModelRequest: z.ZodObject<{
|
|
2320
|
+
operationId: z.ZodString;
|
|
2321
|
+
upstreamModelId: z.ZodString;
|
|
2322
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2323
|
+
}, z.core.$strict>;
|
|
2324
|
+
export type CreateWorkspaceGatewayCustomModelRequest = z.infer<typeof CreateWorkspaceGatewayCustomModelRequest>;
|
|
2325
|
+
export declare const DeleteWorkspaceGatewayCustomModelRequest: z.ZodObject<{
|
|
2326
|
+
expectedVersion: z.ZodNumber;
|
|
2327
|
+
operationId: z.ZodString;
|
|
2328
|
+
}, z.core.$strict>;
|
|
2329
|
+
export type DeleteWorkspaceGatewayCustomModelRequest = z.infer<typeof DeleteWorkspaceGatewayCustomModelRequest>;
|
|
2330
|
+
export declare const WorkspaceGatewayCustomModel: z.ZodObject<{
|
|
2331
|
+
id: z.ZodString;
|
|
2332
|
+
upstreamModelId: z.ZodString;
|
|
2333
|
+
label: z.ZodNullable<z.ZodString>;
|
|
2334
|
+
version: z.ZodNumber;
|
|
2335
|
+
createdAt: z.ZodString;
|
|
2336
|
+
updatedAt: z.ZodString;
|
|
2337
|
+
}, z.core.$strip>;
|
|
2338
|
+
export type WorkspaceGatewayCustomModel = z.infer<typeof WorkspaceGatewayCustomModel>;
|
|
2339
|
+
export declare const WorkspaceGatewayCustomModelsResponse: z.ZodObject<{
|
|
2340
|
+
models: z.ZodArray<z.ZodObject<{
|
|
2341
|
+
id: z.ZodString;
|
|
2342
|
+
upstreamModelId: z.ZodString;
|
|
2343
|
+
label: z.ZodNullable<z.ZodString>;
|
|
2344
|
+
version: z.ZodNumber;
|
|
2345
|
+
createdAt: z.ZodString;
|
|
2346
|
+
updatedAt: z.ZodString;
|
|
2347
|
+
}, z.core.$strip>>;
|
|
2348
|
+
}, z.core.$strip>;
|
|
2349
|
+
export type WorkspaceGatewayCustomModelsResponse = z.infer<typeof WorkspaceGatewayCustomModelsResponse>;
|
|
2350
|
+
export declare const CreateWorkspaceOpenRouterCustomModelRequest: z.ZodObject<{
|
|
2351
|
+
operationId: z.ZodString;
|
|
2352
|
+
upstreamModelId: z.ZodString;
|
|
2353
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2354
|
+
}, z.core.$strict>;
|
|
2355
|
+
export type CreateWorkspaceOpenRouterCustomModelRequest = z.infer<typeof CreateWorkspaceOpenRouterCustomModelRequest>;
|
|
2356
|
+
export declare const DeleteWorkspaceOpenRouterCustomModelRequest: z.ZodObject<{
|
|
2357
|
+
expectedVersion: z.ZodNumber;
|
|
2358
|
+
operationId: z.ZodString;
|
|
2359
|
+
}, z.core.$strict>;
|
|
2360
|
+
export type DeleteWorkspaceOpenRouterCustomModelRequest = z.infer<typeof DeleteWorkspaceOpenRouterCustomModelRequest>;
|
|
2361
|
+
export declare const WorkspaceOpenRouterCustomModel: z.ZodObject<{
|
|
2362
|
+
id: z.ZodString;
|
|
2363
|
+
upstreamModelId: z.ZodString;
|
|
2364
|
+
label: z.ZodNullable<z.ZodString>;
|
|
2365
|
+
version: z.ZodNumber;
|
|
2366
|
+
createdAt: z.ZodString;
|
|
2367
|
+
updatedAt: z.ZodString;
|
|
2368
|
+
}, z.core.$strip>;
|
|
2369
|
+
export type WorkspaceOpenRouterCustomModel = z.infer<typeof WorkspaceOpenRouterCustomModel>;
|
|
2370
|
+
export declare const WorkspaceOpenRouterCustomModelsResponse: z.ZodObject<{
|
|
2371
|
+
models: z.ZodArray<z.ZodObject<{
|
|
2372
|
+
id: z.ZodString;
|
|
2373
|
+
upstreamModelId: z.ZodString;
|
|
2374
|
+
label: z.ZodNullable<z.ZodString>;
|
|
2375
|
+
version: z.ZodNumber;
|
|
2376
|
+
createdAt: z.ZodString;
|
|
2377
|
+
updatedAt: z.ZodString;
|
|
2378
|
+
}, z.core.$strip>>;
|
|
2379
|
+
}, z.core.$strip>;
|
|
2380
|
+
export type WorkspaceOpenRouterCustomModelsResponse = z.infer<typeof WorkspaceOpenRouterCustomModelsResponse>;
|
|
2318
2381
|
/** Reserved creator/initiator id used only by legacy-row migration defaults. */
|
|
2319
2382
|
export declare const UNATTRIBUTED_LEGACY_INITIATOR_SUBJECT_ID: "unattributed-legacy";
|
|
2320
2383
|
/**
|
|
@@ -2370,6 +2433,7 @@ export declare const AccountGrant: z.ZodObject<{
|
|
|
2370
2433
|
"artifacts:read": "artifacts:read";
|
|
2371
2434
|
"billing:manage": "billing:manage";
|
|
2372
2435
|
"billing:read": "billing:read";
|
|
2436
|
+
"capabilities:manage": "capabilities:manage";
|
|
2373
2437
|
"codemode:call": "codemode:call";
|
|
2374
2438
|
"connections:read": "connections:read";
|
|
2375
2439
|
"connections:write": "connections:write";
|
|
@@ -2427,6 +2491,7 @@ export declare const AccessGrant: z.ZodObject<{
|
|
|
2427
2491
|
"artifacts:read": "artifacts:read";
|
|
2428
2492
|
"billing:manage": "billing:manage";
|
|
2429
2493
|
"billing:read": "billing:read";
|
|
2494
|
+
"capabilities:manage": "capabilities:manage";
|
|
2430
2495
|
"codemode:call": "codemode:call";
|
|
2431
2496
|
"connections:read": "connections:read";
|
|
2432
2497
|
"connections:write": "connections:write";
|
|
@@ -2509,6 +2574,7 @@ export declare const AccessContext: z.ZodObject<{
|
|
|
2509
2574
|
"artifacts:read": "artifacts:read";
|
|
2510
2575
|
"billing:manage": "billing:manage";
|
|
2511
2576
|
"billing:read": "billing:read";
|
|
2577
|
+
"capabilities:manage": "capabilities:manage";
|
|
2512
2578
|
"codemode:call": "codemode:call";
|
|
2513
2579
|
"connections:read": "connections:read";
|
|
2514
2580
|
"connections:write": "connections:write";
|
|
@@ -2565,6 +2631,7 @@ export declare const AccessContext: z.ZodObject<{
|
|
|
2565
2631
|
"artifacts:read": "artifacts:read";
|
|
2566
2632
|
"billing:manage": "billing:manage";
|
|
2567
2633
|
"billing:read": "billing:read";
|
|
2634
|
+
"capabilities:manage": "capabilities:manage";
|
|
2568
2635
|
"codemode:call": "codemode:call";
|
|
2569
2636
|
"connections:read": "connections:read";
|
|
2570
2637
|
"connections:write": "connections:write";
|
|
@@ -2638,6 +2705,7 @@ export declare const DelegatedAccessTokenPayload: z.ZodObject<{
|
|
|
2638
2705
|
"artifacts:read": "artifacts:read";
|
|
2639
2706
|
"billing:manage": "billing:manage";
|
|
2640
2707
|
"billing:read": "billing:read";
|
|
2708
|
+
"capabilities:manage": "capabilities:manage";
|
|
2641
2709
|
"codemode:call": "codemode:call";
|
|
2642
2710
|
"connections:read": "connections:read";
|
|
2643
2711
|
"connections:write": "connections:write";
|
|
@@ -2930,6 +2998,46 @@ export declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
|
2930
2998
|
agentInstructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2931
2999
|
}, z.core.$strip>;
|
|
2932
3000
|
export type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
3001
|
+
export declare const EnsureWorkspaceRequest: z.ZodObject<{
|
|
3002
|
+
accountId: z.ZodString;
|
|
3003
|
+
externalSource: z.ZodString;
|
|
3004
|
+
externalId: z.ZodString;
|
|
3005
|
+
name: z.ZodString;
|
|
3006
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
3007
|
+
agentInstructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3008
|
+
}, z.core.$strict>;
|
|
3009
|
+
export type EnsureWorkspaceRequest = z.infer<typeof EnsureWorkspaceRequest>;
|
|
3010
|
+
export declare const EnsureWorkspaceResponse: z.ZodObject<{
|
|
3011
|
+
workspace: z.ZodObject<{
|
|
3012
|
+
id: z.ZodString;
|
|
3013
|
+
accountId: z.ZodString;
|
|
3014
|
+
kind: z.ZodEnum<{
|
|
3015
|
+
personal: "personal";
|
|
3016
|
+
shared: "shared";
|
|
3017
|
+
}>;
|
|
3018
|
+
name: z.ZodString;
|
|
3019
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
3020
|
+
externalSource: z.ZodNullable<z.ZodString>;
|
|
3021
|
+
externalId: z.ZodNullable<z.ZodString>;
|
|
3022
|
+
agentInstructions: z.ZodNullable<z.ZodString>;
|
|
3023
|
+
settings: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3024
|
+
inferenceControl: z.ZodObject<{
|
|
3025
|
+
state: z.ZodEnum<{
|
|
3026
|
+
active: "active";
|
|
3027
|
+
paused: "paused";
|
|
3028
|
+
}>;
|
|
3029
|
+
revision: z.ZodNumber;
|
|
3030
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
3031
|
+
changedBy: z.ZodNullable<z.ZodString>;
|
|
3032
|
+
changedAt: z.ZodNullable<z.ZodString>;
|
|
3033
|
+
}, z.core.$strip>;
|
|
3034
|
+
defaultRigId: z.ZodNullable<z.ZodString>;
|
|
3035
|
+
createdAt: z.ZodString;
|
|
3036
|
+
updatedAt: z.ZodString;
|
|
3037
|
+
}, z.core.$strip>;
|
|
3038
|
+
created: z.ZodBoolean;
|
|
3039
|
+
}, z.core.$strict>;
|
|
3040
|
+
export type EnsureWorkspaceResponse = z.infer<typeof EnsureWorkspaceResponse>;
|
|
2933
3041
|
export declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
2934
3042
|
name: z.ZodOptional<z.ZodString>;
|
|
2935
3043
|
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2951,6 +3059,7 @@ export declare const ApiKey: z.ZodObject<{
|
|
|
2951
3059
|
"artifacts:read": "artifacts:read";
|
|
2952
3060
|
"billing:manage": "billing:manage";
|
|
2953
3061
|
"billing:read": "billing:read";
|
|
3062
|
+
"capabilities:manage": "capabilities:manage";
|
|
2954
3063
|
"codemode:call": "codemode:call";
|
|
2955
3064
|
"connections:read": "connections:read";
|
|
2956
3065
|
"connections:write": "connections:write";
|
|
@@ -3011,6 +3120,7 @@ export declare const CreateApiKeyRequest: z.ZodObject<{
|
|
|
3011
3120
|
"artifacts:read": "artifacts:read";
|
|
3012
3121
|
"billing:manage": "billing:manage";
|
|
3013
3122
|
"billing:read": "billing:read";
|
|
3123
|
+
"capabilities:manage": "capabilities:manage";
|
|
3014
3124
|
"codemode:call": "codemode:call";
|
|
3015
3125
|
"connections:read": "connections:read";
|
|
3016
3126
|
"connections:write": "connections:write";
|
|
@@ -3071,6 +3181,7 @@ export declare const CreateApiKeyResponse: z.ZodObject<{
|
|
|
3071
3181
|
"artifacts:read": "artifacts:read";
|
|
3072
3182
|
"billing:manage": "billing:manage";
|
|
3073
3183
|
"billing:read": "billing:read";
|
|
3184
|
+
"capabilities:manage": "capabilities:manage";
|
|
3074
3185
|
"codemode:call": "codemode:call";
|
|
3075
3186
|
"connections:read": "connections:read";
|
|
3076
3187
|
"connections:write": "connections:write";
|
|
@@ -3121,6 +3232,12 @@ export declare const CreateApiKeyResponse: z.ZodObject<{
|
|
|
3121
3232
|
token: z.ZodString;
|
|
3122
3233
|
}, z.core.$strip>;
|
|
3123
3234
|
export type CreateApiKeyResponse = z.infer<typeof CreateApiKeyResponse>;
|
|
3235
|
+
export declare const CreateOrganizationApiKeyRequest: z.ZodObject<{
|
|
3236
|
+
name: z.ZodString;
|
|
3237
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3238
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
3239
|
+
}, z.core.$strict>;
|
|
3240
|
+
export type CreateOrganizationApiKeyRequest = z.infer<typeof CreateOrganizationApiKeyRequest>;
|
|
3124
3241
|
export declare const WorkspaceMember: z.ZodObject<{
|
|
3125
3242
|
subjectId: z.ZodString;
|
|
3126
3243
|
subjectLabel: z.ZodNullable<z.ZodString>;
|
|
@@ -3133,6 +3250,7 @@ export declare const WorkspaceMember: z.ZodObject<{
|
|
|
3133
3250
|
"artifacts:read": "artifacts:read";
|
|
3134
3251
|
"billing:manage": "billing:manage";
|
|
3135
3252
|
"billing:read": "billing:read";
|
|
3253
|
+
"capabilities:manage": "capabilities:manage";
|
|
3136
3254
|
"codemode:call": "codemode:call";
|
|
3137
3255
|
"connections:read": "connections:read";
|
|
3138
3256
|
"connections:write": "connections:write";
|
|
@@ -3190,6 +3308,7 @@ export declare const ListWorkspaceMembersResponse: z.ZodObject<{
|
|
|
3190
3308
|
"artifacts:read": "artifacts:read";
|
|
3191
3309
|
"billing:manage": "billing:manage";
|
|
3192
3310
|
"billing:read": "billing:read";
|
|
3311
|
+
"capabilities:manage": "capabilities:manage";
|
|
3193
3312
|
"codemode:call": "codemode:call";
|
|
3194
3313
|
"connections:read": "connections:read";
|
|
3195
3314
|
"connections:write": "connections:write";
|
|
@@ -3235,8 +3354,34 @@ export declare const ListWorkspaceMembersResponse: z.ZodObject<{
|
|
|
3235
3354
|
}, z.core.$strip>>;
|
|
3236
3355
|
}, z.core.$strip>;
|
|
3237
3356
|
export type ListWorkspaceMembersResponse = z.infer<typeof ListWorkspaceMembersResponse>;
|
|
3357
|
+
export declare const WorkspaceMemberCandidate: z.ZodObject<{
|
|
3358
|
+
organizationMembershipId: z.ZodString;
|
|
3359
|
+
subjectId: z.ZodString;
|
|
3360
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3361
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3362
|
+
organizationRole: z.ZodEnum<{
|
|
3363
|
+
admin: "admin";
|
|
3364
|
+
member: "member";
|
|
3365
|
+
owner: "owner";
|
|
3366
|
+
}>;
|
|
3367
|
+
}, z.core.$strip>;
|
|
3368
|
+
export type WorkspaceMemberCandidate = z.infer<typeof WorkspaceMemberCandidate>;
|
|
3369
|
+
export declare const ListWorkspaceMemberCandidatesResponse: z.ZodObject<{
|
|
3370
|
+
members: z.ZodArray<z.ZodObject<{
|
|
3371
|
+
organizationMembershipId: z.ZodString;
|
|
3372
|
+
subjectId: z.ZodString;
|
|
3373
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3374
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3375
|
+
organizationRole: z.ZodEnum<{
|
|
3376
|
+
admin: "admin";
|
|
3377
|
+
member: "member";
|
|
3378
|
+
owner: "owner";
|
|
3379
|
+
}>;
|
|
3380
|
+
}, z.core.$strip>>;
|
|
3381
|
+
}, z.core.$strip>;
|
|
3382
|
+
export type ListWorkspaceMemberCandidatesResponse = z.infer<typeof ListWorkspaceMemberCandidatesResponse>;
|
|
3238
3383
|
export declare const AddWorkspaceMemberRequest: z.ZodObject<{
|
|
3239
|
-
|
|
3384
|
+
organizationMembershipId: z.ZodString;
|
|
3240
3385
|
role: z.ZodOptional<z.ZodString>;
|
|
3241
3386
|
permissions: z.ZodArray<z.ZodEnum<{
|
|
3242
3387
|
"account:admin": "account:admin";
|
|
@@ -3246,6 +3391,7 @@ export declare const AddWorkspaceMemberRequest: z.ZodObject<{
|
|
|
3246
3391
|
"artifacts:read": "artifacts:read";
|
|
3247
3392
|
"billing:manage": "billing:manage";
|
|
3248
3393
|
"billing:read": "billing:read";
|
|
3394
|
+
"capabilities:manage": "capabilities:manage";
|
|
3249
3395
|
"codemode:call": "codemode:call";
|
|
3250
3396
|
"connections:read": "connections:read";
|
|
3251
3397
|
"connections:write": "connections:write";
|
|
@@ -3299,6 +3445,7 @@ export declare const UpdateWorkspaceMemberRequest: z.ZodObject<{
|
|
|
3299
3445
|
"artifacts:read": "artifacts:read";
|
|
3300
3446
|
"billing:manage": "billing:manage";
|
|
3301
3447
|
"billing:read": "billing:read";
|
|
3448
|
+
"capabilities:manage": "capabilities:manage";
|
|
3302
3449
|
"codemode:call": "codemode:call";
|
|
3303
3450
|
"connections:read": "connections:read";
|
|
3304
3451
|
"connections:write": "connections:write";
|
|
@@ -3399,6 +3546,7 @@ export declare const ApproveSlackUserLinkAccessRequest: z.ZodObject<{
|
|
|
3399
3546
|
"artifacts:read": "artifacts:read";
|
|
3400
3547
|
"billing:manage": "billing:manage";
|
|
3401
3548
|
"billing:read": "billing:read";
|
|
3549
|
+
"capabilities:manage": "capabilities:manage";
|
|
3402
3550
|
"codemode:call": "codemode:call";
|
|
3403
3551
|
"connections:read": "connections:read";
|
|
3404
3552
|
"connections:write": "connections:write";
|
|
@@ -8488,6 +8636,7 @@ export declare const NewSessionDraftOptions: z.ZodPreprocess<z.ZodObject<{
|
|
|
8488
8636
|
"artifacts:read": "artifacts:read";
|
|
8489
8637
|
"billing:manage": "billing:manage";
|
|
8490
8638
|
"billing:read": "billing:read";
|
|
8639
|
+
"capabilities:manage": "capabilities:manage";
|
|
8491
8640
|
"codemode:call": "codemode:call";
|
|
8492
8641
|
"connections:read": "connections:read";
|
|
8493
8642
|
"connections:write": "connections:write";
|
|
@@ -8791,6 +8940,7 @@ export declare const NewSessionDraft: z.ZodObject<{
|
|
|
8791
8940
|
"artifacts:read": "artifacts:read";
|
|
8792
8941
|
"billing:manage": "billing:manage";
|
|
8793
8942
|
"billing:read": "billing:read";
|
|
8943
|
+
"capabilities:manage": "capabilities:manage";
|
|
8794
8944
|
"codemode:call": "codemode:call";
|
|
8795
8945
|
"connections:read": "connections:read";
|
|
8796
8946
|
"connections:write": "connections:write";
|
|
@@ -9088,6 +9238,7 @@ export declare const SaveNewSessionDraftRequest: z.ZodObject<{
|
|
|
9088
9238
|
"artifacts:read": "artifacts:read";
|
|
9089
9239
|
"billing:manage": "billing:manage";
|
|
9090
9240
|
"billing:read": "billing:read";
|
|
9241
|
+
"capabilities:manage": "capabilities:manage";
|
|
9091
9242
|
"codemode:call": "codemode:call";
|
|
9092
9243
|
"connections:read": "connections:read";
|
|
9093
9244
|
"connections:write": "connections:write";
|
|
@@ -10321,13 +10472,22 @@ export type SessionQueueSnapshot = z.infer<typeof SessionQueueSnapshot>;
|
|
|
10321
10472
|
* every later turn; callers must not synthesize an equivalent transient copy.
|
|
10322
10473
|
*/
|
|
10323
10474
|
export declare function renderSessionSystemUpdateBatch(updates: ReadonlyArray<Pick<SessionSystemUpdate, "id" | "kind" | "classification" | "sourceId" | "summary" | "payload" | "lineage">>): string;
|
|
10324
|
-
export declare
|
|
10475
|
+
export declare const SCHEDULED_OCCURRENCE_TASK_LABEL: "[OpenGeni scheduled task occurrence]";
|
|
10476
|
+
export declare function sessionSystemUpdateBatchHistoryItem(updates: Parameters<typeof renderSessionSystemUpdateBatch>[0], goalSnapshot?: SessionGoalSnapshot, options?: {
|
|
10477
|
+
promoteScheduledOccurrenceToUser?: boolean;
|
|
10478
|
+
}): {
|
|
10325
10479
|
type: "message";
|
|
10326
|
-
role: "system";
|
|
10480
|
+
role: "system" | "user";
|
|
10327
10481
|
content: string;
|
|
10328
10482
|
};
|
|
10329
10483
|
export declare const VariableSetVariableName: z.ZodString;
|
|
10330
10484
|
export type VariableSetVariableName = z.infer<typeof VariableSetVariableName>;
|
|
10485
|
+
export declare const VARIABLE_SET_RESERVED_EXACT_NAMES: readonly ["HOME", "PATH", "SHELL", "USER", "LOGNAME", "TMPDIR", "IFS", "ENV", "BASH_ENV", "NODE_OPTIONS", "PYTHONPATH", "PYTHONSTARTUP", "PERL5OPT", "PERL5LIB", "GH_TOKEN", "GITHUB_TOKEN", "GITLAB_TOKEN", "AZURE_DEVOPS_EXT_PAT", "GIT_ASKPASS", "GIT_TERMINAL_PROMPT"];
|
|
10486
|
+
export declare const VARIABLE_SET_RESERVED_PREFIXES: readonly ["OPENGENI_", "GIT_CONFIG_", "GIT_AUTHOR_", "GIT_COMMITTER_", "LD_", "DYLD_"];
|
|
10487
|
+
export declare function variableSetVariableNameReservation(name: string): {
|
|
10488
|
+
kind: "exact" | "prefix";
|
|
10489
|
+
value: string;
|
|
10490
|
+
} | null;
|
|
10331
10491
|
export declare const VariableSetVariableMetadata: z.ZodObject<{
|
|
10332
10492
|
name: z.ZodString;
|
|
10333
10493
|
version: z.ZodNumber;
|
|
@@ -11532,6 +11692,7 @@ export declare const IncidentTelemetryPreflight: z.ZodObject<{
|
|
|
11532
11692
|
"artifacts:read": "artifacts:read";
|
|
11533
11693
|
"billing:manage": "billing:manage";
|
|
11534
11694
|
"billing:read": "billing:read";
|
|
11695
|
+
"capabilities:manage": "capabilities:manage";
|
|
11535
11696
|
"codemode:call": "codemode:call";
|
|
11536
11697
|
"connections:read": "connections:read";
|
|
11537
11698
|
"connections:write": "connections:write";
|
|
@@ -11862,6 +12023,10 @@ export declare const ScheduledTaskAgentConfig: z.ZodObject<{
|
|
|
11862
12023
|
selfhosted: "selfhosted";
|
|
11863
12024
|
vercel: "vercel";
|
|
11864
12025
|
}>>;
|
|
12026
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
12027
|
+
targetSandboxId: z.ZodString;
|
|
12028
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
12029
|
+
}, z.core.$strict>>;
|
|
11865
12030
|
goal: z.ZodOptional<z.ZodObject<{
|
|
11866
12031
|
text: z.ZodString;
|
|
11867
12032
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -12059,6 +12224,7 @@ export declare const ScheduledTaskAgentConfig: z.ZodObject<{
|
|
|
12059
12224
|
"artifacts:read": "artifacts:read";
|
|
12060
12225
|
"billing:manage": "billing:manage";
|
|
12061
12226
|
"billing:read": "billing:read";
|
|
12227
|
+
"capabilities:manage": "capabilities:manage";
|
|
12062
12228
|
"codemode:call": "codemode:call";
|
|
12063
12229
|
"connections:read": "connections:read";
|
|
12064
12230
|
"connections:write": "connections:write";
|
|
@@ -12350,6 +12516,10 @@ export declare const ScheduledTaskAgentConfigInput: z.ZodObject<{
|
|
|
12350
12516
|
selfhosted: "selfhosted";
|
|
12351
12517
|
vercel: "vercel";
|
|
12352
12518
|
}>>;
|
|
12519
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
12520
|
+
targetSandboxId: z.ZodString;
|
|
12521
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
12522
|
+
}, z.core.$strict>>;
|
|
12353
12523
|
goal: z.ZodOptional<z.ZodObject<{
|
|
12354
12524
|
text: z.ZodString;
|
|
12355
12525
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -12547,6 +12717,7 @@ export declare const ScheduledTaskAgentConfigInput: z.ZodObject<{
|
|
|
12547
12717
|
"artifacts:read": "artifacts:read";
|
|
12548
12718
|
"billing:manage": "billing:manage";
|
|
12549
12719
|
"billing:read": "billing:read";
|
|
12720
|
+
"capabilities:manage": "capabilities:manage";
|
|
12550
12721
|
"codemode:call": "codemode:call";
|
|
12551
12722
|
"connections:read": "connections:read";
|
|
12552
12723
|
"connections:write": "connections:write";
|
|
@@ -12930,6 +13101,10 @@ export declare const ScheduledTask: z.ZodObject<{
|
|
|
12930
13101
|
selfhosted: "selfhosted";
|
|
12931
13102
|
vercel: "vercel";
|
|
12932
13103
|
}>>;
|
|
13104
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
13105
|
+
targetSandboxId: z.ZodString;
|
|
13106
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
13107
|
+
}, z.core.$strict>>;
|
|
12933
13108
|
goal: z.ZodOptional<z.ZodObject<{
|
|
12934
13109
|
text: z.ZodString;
|
|
12935
13110
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -13127,6 +13302,7 @@ export declare const ScheduledTask: z.ZodObject<{
|
|
|
13127
13302
|
"artifacts:read": "artifacts:read";
|
|
13128
13303
|
"billing:manage": "billing:manage";
|
|
13129
13304
|
"billing:read": "billing:read";
|
|
13305
|
+
"capabilities:manage": "capabilities:manage";
|
|
13130
13306
|
"codemode:call": "codemode:call";
|
|
13131
13307
|
"connections:read": "connections:read";
|
|
13132
13308
|
"connections:write": "connections:write";
|
|
@@ -13541,6 +13717,10 @@ export declare const ScheduledTaskRunAcceptedExecution: z.ZodObject<{
|
|
|
13541
13717
|
selfhosted: "selfhosted";
|
|
13542
13718
|
vercel: "vercel";
|
|
13543
13719
|
}>>;
|
|
13720
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
13721
|
+
targetSandboxId: z.ZodString;
|
|
13722
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
13723
|
+
}, z.core.$strict>>;
|
|
13544
13724
|
goal: z.ZodOptional<z.ZodObject<{
|
|
13545
13725
|
text: z.ZodString;
|
|
13546
13726
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -13738,6 +13918,7 @@ export declare const ScheduledTaskRunAcceptedExecution: z.ZodObject<{
|
|
|
13738
13918
|
"artifacts:read": "artifacts:read";
|
|
13739
13919
|
"billing:manage": "billing:manage";
|
|
13740
13920
|
"billing:read": "billing:read";
|
|
13921
|
+
"capabilities:manage": "capabilities:manage";
|
|
13741
13922
|
"codemode:call": "codemode:call";
|
|
13742
13923
|
"connections:read": "connections:read";
|
|
13743
13924
|
"connections:write": "connections:write";
|
|
@@ -14003,6 +14184,7 @@ export declare const ScheduledTaskRunAcceptedExecution: z.ZodObject<{
|
|
|
14003
14184
|
priority: "priority";
|
|
14004
14185
|
standard: "standard";
|
|
14005
14186
|
}>;
|
|
14187
|
+
turnExecutionPolicy: z.ZodOptional<z.ZodUnknown>;
|
|
14006
14188
|
resolvedSandboxBackend: z.ZodEnum<{
|
|
14007
14189
|
blaxel: "blaxel";
|
|
14008
14190
|
cloudflare: "cloudflare";
|
|
@@ -14182,6 +14364,7 @@ export declare const ScheduledTaskRunAcceptedExecution: z.ZodObject<{
|
|
|
14182
14364
|
"artifacts:read": "artifacts:read";
|
|
14183
14365
|
"billing:manage": "billing:manage";
|
|
14184
14366
|
"billing:read": "billing:read";
|
|
14367
|
+
"capabilities:manage": "capabilities:manage";
|
|
14185
14368
|
"codemode:call": "codemode:call";
|
|
14186
14369
|
"connections:read": "connections:read";
|
|
14187
14370
|
"connections:write": "connections:write";
|
|
@@ -14454,6 +14637,7 @@ export declare const ScheduledTaskRunAcceptedExecution: z.ZodObject<{
|
|
|
14454
14637
|
"artifacts:read": "artifacts:read";
|
|
14455
14638
|
"billing:manage": "billing:manage";
|
|
14456
14639
|
"billing:read": "billing:read";
|
|
14640
|
+
"capabilities:manage": "capabilities:manage";
|
|
14457
14641
|
"codemode:call": "codemode:call";
|
|
14458
14642
|
"connections:read": "connections:read";
|
|
14459
14643
|
"connections:write": "connections:write";
|
|
@@ -15136,6 +15320,10 @@ export declare const CreateScheduledTaskRequest: z.ZodUnion<readonly [z.ZodPipe<
|
|
|
15136
15320
|
selfhosted: "selfhosted";
|
|
15137
15321
|
vercel: "vercel";
|
|
15138
15322
|
}>>;
|
|
15323
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
15324
|
+
targetSandboxId: z.ZodString;
|
|
15325
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
15326
|
+
}, z.core.$strict>>;
|
|
15139
15327
|
goal: z.ZodOptional<z.ZodObject<{
|
|
15140
15328
|
text: z.ZodString;
|
|
15141
15329
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -15333,6 +15521,7 @@ export declare const CreateScheduledTaskRequest: z.ZodUnion<readonly [z.ZodPipe<
|
|
|
15333
15521
|
"artifacts:read": "artifacts:read";
|
|
15334
15522
|
"billing:manage": "billing:manage";
|
|
15335
15523
|
"billing:read": "billing:read";
|
|
15524
|
+
"capabilities:manage": "capabilities:manage";
|
|
15336
15525
|
"codemode:call": "codemode:call";
|
|
15337
15526
|
"connections:read": "connections:read";
|
|
15338
15527
|
"connections:write": "connections:write";
|
|
@@ -15743,6 +15932,10 @@ export declare const UpdateScheduledTaskRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
15743
15932
|
selfhosted: "selfhosted";
|
|
15744
15933
|
vercel: "vercel";
|
|
15745
15934
|
}>>;
|
|
15935
|
+
machineTarget: z.ZodOptional<z.ZodObject<{
|
|
15936
|
+
targetSandboxId: z.ZodString;
|
|
15937
|
+
workingDir: z.ZodOptional<z.ZodString>;
|
|
15938
|
+
}, z.core.$strict>>;
|
|
15746
15939
|
goal: z.ZodOptional<z.ZodObject<{
|
|
15747
15940
|
text: z.ZodString;
|
|
15748
15941
|
successCriteria: z.ZodOptional<z.ZodString>;
|
|
@@ -15940,6 +16133,7 @@ export declare const UpdateScheduledTaskRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
15940
16133
|
"artifacts:read": "artifacts:read";
|
|
15941
16134
|
"billing:manage": "billing:manage";
|
|
15942
16135
|
"billing:read": "billing:read";
|
|
16136
|
+
"capabilities:manage": "capabilities:manage";
|
|
15943
16137
|
"codemode:call": "codemode:call";
|
|
15944
16138
|
"connections:read": "connections:read";
|
|
15945
16139
|
"connections:write": "connections:write";
|
|
@@ -16426,6 +16620,7 @@ export declare const AutomationSessionTemplate: z.ZodObject<{
|
|
|
16426
16620
|
"artifacts:read": "artifacts:read";
|
|
16427
16621
|
"billing:manage": "billing:manage";
|
|
16428
16622
|
"billing:read": "billing:read";
|
|
16623
|
+
"capabilities:manage": "capabilities:manage";
|
|
16429
16624
|
"codemode:call": "codemode:call";
|
|
16430
16625
|
"connections:read": "connections:read";
|
|
16431
16626
|
"connections:write": "connections:write";
|
|
@@ -16717,6 +16912,7 @@ export declare const AutomationAcceptedExecution: z.ZodObject<{
|
|
|
16717
16912
|
"artifacts:read": "artifacts:read";
|
|
16718
16913
|
"billing:manage": "billing:manage";
|
|
16719
16914
|
"billing:read": "billing:read";
|
|
16915
|
+
"capabilities:manage": "capabilities:manage";
|
|
16720
16916
|
"codemode:call": "codemode:call";
|
|
16721
16917
|
"connections:read": "connections:read";
|
|
16722
16918
|
"connections:write": "connections:write";
|
|
@@ -17034,6 +17230,7 @@ export declare const CreateAutomationTriggerRequest: z.ZodObject<{
|
|
|
17034
17230
|
"artifacts:read": "artifacts:read";
|
|
17035
17231
|
"billing:manage": "billing:manage";
|
|
17036
17232
|
"billing:read": "billing:read";
|
|
17233
|
+
"capabilities:manage": "capabilities:manage";
|
|
17037
17234
|
"codemode:call": "codemode:call";
|
|
17038
17235
|
"connections:read": "connections:read";
|
|
17039
17236
|
"connections:write": "connections:write";
|
|
@@ -17317,6 +17514,7 @@ export declare const UpdateAutomationTriggerRequest: z.ZodObject<{
|
|
|
17317
17514
|
"artifacts:read": "artifacts:read";
|
|
17318
17515
|
"billing:manage": "billing:manage";
|
|
17319
17516
|
"billing:read": "billing:read";
|
|
17517
|
+
"capabilities:manage": "capabilities:manage";
|
|
17320
17518
|
"codemode:call": "codemode:call";
|
|
17321
17519
|
"connections:read": "connections:read";
|
|
17322
17520
|
"connections:write": "connections:write";
|
|
@@ -17602,6 +17800,7 @@ export declare const AutomationTrigger: z.ZodObject<{
|
|
|
17602
17800
|
"artifacts:read": "artifacts:read";
|
|
17603
17801
|
"billing:manage": "billing:manage";
|
|
17604
17802
|
"billing:read": "billing:read";
|
|
17803
|
+
"capabilities:manage": "capabilities:manage";
|
|
17605
17804
|
"codemode:call": "codemode:call";
|
|
17606
17805
|
"connections:read": "connections:read";
|
|
17607
17806
|
"connections:write": "connections:write";
|
|
@@ -17929,6 +18128,7 @@ export declare const CapabilityPackAutomationTemplate: z.ZodObject<{
|
|
|
17929
18128
|
"artifacts:read": "artifacts:read";
|
|
17930
18129
|
"billing:manage": "billing:manage";
|
|
17931
18130
|
"billing:read": "billing:read";
|
|
18131
|
+
"capabilities:manage": "capabilities:manage";
|
|
17932
18132
|
"codemode:call": "codemode:call";
|
|
17933
18133
|
"connections:read": "connections:read";
|
|
17934
18134
|
"connections:write": "connections:write";
|
|
@@ -18498,6 +18698,7 @@ export declare const CapabilityPack: z.ZodPreprocess<z.ZodObject<{
|
|
|
18498
18698
|
"artifacts:read": "artifacts:read";
|
|
18499
18699
|
"billing:manage": "billing:manage";
|
|
18500
18700
|
"billing:read": "billing:read";
|
|
18701
|
+
"capabilities:manage": "capabilities:manage";
|
|
18501
18702
|
"codemode:call": "codemode:call";
|
|
18502
18703
|
"connections:read": "connections:read";
|
|
18503
18704
|
"connections:write": "connections:write";
|
|
@@ -18911,6 +19112,7 @@ export declare const RegisterCapabilityPackRequest: z.ZodPreprocess<z.ZodObject<
|
|
|
18911
19112
|
"artifacts:read": "artifacts:read";
|
|
18912
19113
|
"billing:manage": "billing:manage";
|
|
18913
19114
|
"billing:read": "billing:read";
|
|
19115
|
+
"capabilities:manage": "capabilities:manage";
|
|
18914
19116
|
"codemode:call": "codemode:call";
|
|
18915
19117
|
"connections:read": "connections:read";
|
|
18916
19118
|
"connections:write": "connections:write";
|
|
@@ -19327,6 +19529,7 @@ export declare const WorkspaceRegisteredPack: z.ZodObject<{
|
|
|
19327
19529
|
"artifacts:read": "artifacts:read";
|
|
19328
19530
|
"billing:manage": "billing:manage";
|
|
19329
19531
|
"billing:read": "billing:read";
|
|
19532
|
+
"capabilities:manage": "capabilities:manage";
|
|
19330
19533
|
"codemode:call": "codemode:call";
|
|
19331
19534
|
"connections:read": "connections:read";
|
|
19332
19535
|
"connections:write": "connections:write";
|
|
@@ -19762,6 +19965,7 @@ export declare const PackInstallation: z.ZodObject<{
|
|
|
19762
19965
|
"artifacts:read": "artifacts:read";
|
|
19763
19966
|
"billing:manage": "billing:manage";
|
|
19764
19967
|
"billing:read": "billing:read";
|
|
19968
|
+
"capabilities:manage": "capabilities:manage";
|
|
19765
19969
|
"codemode:call": "codemode:call";
|
|
19766
19970
|
"connections:read": "connections:read";
|
|
19767
19971
|
"connections:write": "connections:write";
|
|
@@ -20425,6 +20629,10 @@ export declare function comparePersonalSlackCanonicalConnections(left: PersonalS
|
|
|
20425
20629
|
export declare function selectCanonicalPersonalSlackConnection<T extends PersonalSlackCanonicalConnection>(connections: readonly T[]): T | null;
|
|
20426
20630
|
export declare const ConnectionCredentialBundle: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
20427
20631
|
export type ConnectionCredentialBundle = z.infer<typeof ConnectionCredentialBundle>;
|
|
20632
|
+
export declare const VERCEL_AI_GATEWAY_CREDENTIAL_OPERATION_ID_METADATA_KEY: "vercelAiGatewayCredentialOperationId";
|
|
20633
|
+
export declare const VERCEL_AI_GATEWAY_CREDENTIAL_OPERATION_DIGEST_METADATA_KEY: "vercelAiGatewayCredentialOperationDigest";
|
|
20634
|
+
export declare const OPENROUTER_CREDENTIAL_OPERATION_ID_METADATA_KEY: "openRouterCredentialOperationId";
|
|
20635
|
+
export declare const OPENROUTER_CREDENTIAL_OPERATION_DIGEST_METADATA_KEY: "openRouterCredentialOperationDigest";
|
|
20428
20636
|
export declare const CreateConnectionRequest: z.ZodObject<{
|
|
20429
20637
|
providerDomain: z.ZodString;
|
|
20430
20638
|
kind: z.ZodEnum<{
|
|
@@ -20442,6 +20650,7 @@ export declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
20442
20650
|
grantedScopes: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
20443
20651
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20444
20652
|
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20653
|
+
operationId: z.ZodOptional<z.ZodString>;
|
|
20445
20654
|
}, z.core.$strip>;
|
|
20446
20655
|
export type CreateConnectionRequest = z.infer<typeof CreateConnectionRequest>;
|
|
20447
20656
|
export declare const OpenGeniSlackBotInstallRequest: z.ZodObject<{
|
|
@@ -20543,6 +20752,8 @@ export declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
20543
20752
|
grantedScopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
20544
20753
|
expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20545
20754
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20755
|
+
expectedVersion: z.ZodOptional<z.ZodNumber>;
|
|
20756
|
+
operationId: z.ZodOptional<z.ZodString>;
|
|
20546
20757
|
}, z.core.$strip>;
|
|
20547
20758
|
export type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
20548
20759
|
export declare const ConnectionResponse: z.ZodObject<{
|
|
@@ -22773,6 +22984,7 @@ export declare const Session: z.ZodObject<{
|
|
|
22773
22984
|
"artifacts:read": "artifacts:read";
|
|
22774
22985
|
"billing:manage": "billing:manage";
|
|
22775
22986
|
"billing:read": "billing:read";
|
|
22987
|
+
"capabilities:manage": "capabilities:manage";
|
|
22776
22988
|
"codemode:call": "codemode:call";
|
|
22777
22989
|
"connections:read": "connections:read";
|
|
22778
22990
|
"connections:write": "connections:write";
|
|
@@ -23109,6 +23321,7 @@ export declare const Session: z.ZodObject<{
|
|
|
23109
23321
|
pausedDescendants: z.ZodNumber;
|
|
23110
23322
|
failedDescendants: z.ZodNumber;
|
|
23111
23323
|
unreadDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23324
|
+
unreadFailedDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23112
23325
|
activelyWorkingDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23113
23326
|
attentionSince: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23114
23327
|
truncated: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -23325,6 +23538,7 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
23325
23538
|
"artifacts:read": "artifacts:read";
|
|
23326
23539
|
"billing:manage": "billing:manage";
|
|
23327
23540
|
"billing:read": "billing:read";
|
|
23541
|
+
"capabilities:manage": "capabilities:manage";
|
|
23328
23542
|
"codemode:call": "codemode:call";
|
|
23329
23543
|
"connections:read": "connections:read";
|
|
23330
23544
|
"connections:write": "connections:write";
|
|
@@ -23661,6 +23875,7 @@ export declare const CreateSessionResponse: z.ZodObject<{
|
|
|
23661
23875
|
pausedDescendants: z.ZodNumber;
|
|
23662
23876
|
failedDescendants: z.ZodNumber;
|
|
23663
23877
|
unreadDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23878
|
+
unreadFailedDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23664
23879
|
activelyWorkingDescendants: z.ZodOptional<z.ZodNumber>;
|
|
23665
23880
|
attentionSince: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23666
23881
|
truncated: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -23883,6 +24098,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
23883
24098
|
"artifacts:read": "artifacts:read";
|
|
23884
24099
|
"billing:manage": "billing:manage";
|
|
23885
24100
|
"billing:read": "billing:read";
|
|
24101
|
+
"capabilities:manage": "capabilities:manage";
|
|
23886
24102
|
"codemode:call": "codemode:call";
|
|
23887
24103
|
"connections:read": "connections:read";
|
|
23888
24104
|
"connections:write": "connections:write";
|
|
@@ -24219,6 +24435,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
24219
24435
|
pausedDescendants: z.ZodNumber;
|
|
24220
24436
|
failedDescendants: z.ZodNumber;
|
|
24221
24437
|
unreadDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24438
|
+
unreadFailedDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24222
24439
|
activelyWorkingDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24223
24440
|
attentionSince: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24224
24441
|
truncated: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -24430,6 +24647,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
24430
24647
|
"artifacts:read": "artifacts:read";
|
|
24431
24648
|
"billing:manage": "billing:manage";
|
|
24432
24649
|
"billing:read": "billing:read";
|
|
24650
|
+
"capabilities:manage": "capabilities:manage";
|
|
24433
24651
|
"codemode:call": "codemode:call";
|
|
24434
24652
|
"connections:read": "connections:read";
|
|
24435
24653
|
"connections:write": "connections:write";
|
|
@@ -24766,6 +24984,7 @@ export declare const SessionListResponse: z.ZodObject<{
|
|
|
24766
24984
|
pausedDescendants: z.ZodNumber;
|
|
24767
24985
|
failedDescendants: z.ZodNumber;
|
|
24768
24986
|
unreadDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24987
|
+
unreadFailedDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24769
24988
|
activelyWorkingDescendants: z.ZodOptional<z.ZodNumber>;
|
|
24770
24989
|
attentionSince: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24771
24990
|
truncated: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -24985,6 +25204,7 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
24985
25204
|
"artifacts:read": "artifacts:read";
|
|
24986
25205
|
"billing:manage": "billing:manage";
|
|
24987
25206
|
"billing:read": "billing:read";
|
|
25207
|
+
"capabilities:manage": "capabilities:manage";
|
|
24988
25208
|
"codemode:call": "codemode:call";
|
|
24989
25209
|
"connections:read": "connections:read";
|
|
24990
25210
|
"connections:write": "connections:write";
|
|
@@ -25321,6 +25541,7 @@ export declare const SessionLineageResponse: z.ZodObject<{
|
|
|
25321
25541
|
pausedDescendants: z.ZodNumber;
|
|
25322
25542
|
failedDescendants: z.ZodNumber;
|
|
25323
25543
|
unreadDescendants: z.ZodOptional<z.ZodNumber>;
|
|
25544
|
+
unreadFailedDescendants: z.ZodOptional<z.ZodNumber>;
|
|
25324
25545
|
activelyWorkingDescendants: z.ZodOptional<z.ZodNumber>;
|
|
25325
25546
|
attentionSince: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25326
25547
|
truncated: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -28161,6 +28382,7 @@ export declare const CreateSessionRequest: z.ZodPreprocess<z.ZodObject<{
|
|
|
28161
28382
|
"artifacts:read": "artifacts:read";
|
|
28162
28383
|
"billing:manage": "billing:manage";
|
|
28163
28384
|
"billing:read": "billing:read";
|
|
28385
|
+
"capabilities:manage": "capabilities:manage";
|
|
28164
28386
|
"codemode:call": "codemode:call";
|
|
28165
28387
|
"connections:read": "connections:read";
|
|
28166
28388
|
"connections:write": "connections:write";
|
|
@@ -29966,6 +30188,10 @@ export declare const ClientAuthConfig: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
29966
30188
|
mode: z.ZodLiteral<"managedSession">;
|
|
29967
30189
|
session: z.ZodLiteral<"cookie">;
|
|
29968
30190
|
emailVerificationRequired: z.ZodDefault<z.ZodBoolean>;
|
|
30191
|
+
socialProviders: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
30192
|
+
github: "github";
|
|
30193
|
+
google: "google";
|
|
30194
|
+
}>>>;
|
|
29969
30195
|
}, z.core.$strip>], "mode">;
|
|
29970
30196
|
export type ClientAuthConfig = z.infer<typeof ClientAuthConfig>;
|
|
29971
30197
|
export declare const CapabilityUnavailableReason: z.ZodEnum<{
|
|
@@ -31192,6 +31418,13 @@ export declare const ModelBillingAttributionV1: z.ZodObject<{
|
|
|
31192
31418
|
}>;
|
|
31193
31419
|
}, z.core.$strict>;
|
|
31194
31420
|
export type ModelBillingAttributionV1 = z.infer<typeof ModelBillingAttributionV1>;
|
|
31421
|
+
export declare const ModelCostClassV1: z.ZodEnum<{
|
|
31422
|
+
credits: "credits";
|
|
31423
|
+
free: "free";
|
|
31424
|
+
subscription: "subscription";
|
|
31425
|
+
workspace: "workspace";
|
|
31426
|
+
}>;
|
|
31427
|
+
export type ModelCostClassV1 = z.infer<typeof ModelCostClassV1>;
|
|
31195
31428
|
export declare const TURN_EXECUTION_POLICY_METADATA_KEY: "turnExecutionPolicyV1";
|
|
31196
31429
|
export declare const TurnExecutionModelSourceV1: z.ZodEnum<{
|
|
31197
31430
|
continuation: "continuation";
|
|
@@ -31366,6 +31599,7 @@ export declare const ClientModel: z.ZodObject<{
|
|
|
31366
31599
|
source: z.ZodOptional<z.ZodEnum<{
|
|
31367
31600
|
codex: "codex";
|
|
31368
31601
|
opengeni: "opengeni";
|
|
31602
|
+
openrouter: "openrouter";
|
|
31369
31603
|
supergrok: "supergrok";
|
|
31370
31604
|
workspace_gateway: "workspace_gateway";
|
|
31371
31605
|
}>>;
|
|
@@ -31412,6 +31646,12 @@ export declare const ClientModel: z.ZodObject<{
|
|
|
31412
31646
|
opengeni_credits: "opengeni_credits";
|
|
31413
31647
|
}>;
|
|
31414
31648
|
}, z.core.$strict>>;
|
|
31649
|
+
cost: z.ZodOptional<z.ZodEnum<{
|
|
31650
|
+
credits: "credits";
|
|
31651
|
+
free: "free";
|
|
31652
|
+
subscription: "subscription";
|
|
31653
|
+
workspace: "workspace";
|
|
31654
|
+
}>>;
|
|
31415
31655
|
capabilities: z.ZodOptional<z.ZodObject<{
|
|
31416
31656
|
reasoning: z.ZodObject<{
|
|
31417
31657
|
upstream: z.ZodEnum<{
|
|
@@ -31621,6 +31861,7 @@ export declare const WorkspaceModelCatalogModel: z.ZodObject<{
|
|
|
31621
31861
|
source: z.ZodOptional<z.ZodEnum<{
|
|
31622
31862
|
codex: "codex";
|
|
31623
31863
|
opengeni: "opengeni";
|
|
31864
|
+
openrouter: "openrouter";
|
|
31624
31865
|
supergrok: "supergrok";
|
|
31625
31866
|
workspace_gateway: "workspace_gateway";
|
|
31626
31867
|
}>>;
|
|
@@ -31667,6 +31908,12 @@ export declare const WorkspaceModelCatalogModel: z.ZodObject<{
|
|
|
31667
31908
|
opengeni_credits: "opengeni_credits";
|
|
31668
31909
|
}>;
|
|
31669
31910
|
}, z.core.$strict>>;
|
|
31911
|
+
cost: z.ZodOptional<z.ZodEnum<{
|
|
31912
|
+
credits: "credits";
|
|
31913
|
+
free: "free";
|
|
31914
|
+
subscription: "subscription";
|
|
31915
|
+
workspace: "workspace";
|
|
31916
|
+
}>>;
|
|
31670
31917
|
capabilities: z.ZodOptional<z.ZodObject<{
|
|
31671
31918
|
reasoning: z.ZodObject<{
|
|
31672
31919
|
upstream: z.ZodEnum<{
|
|
@@ -31876,6 +32123,7 @@ export declare const WorkspaceModelCatalogResponse: z.ZodObject<{
|
|
|
31876
32123
|
source: z.ZodOptional<z.ZodEnum<{
|
|
31877
32124
|
codex: "codex";
|
|
31878
32125
|
opengeni: "opengeni";
|
|
32126
|
+
openrouter: "openrouter";
|
|
31879
32127
|
supergrok: "supergrok";
|
|
31880
32128
|
workspace_gateway: "workspace_gateway";
|
|
31881
32129
|
}>>;
|
|
@@ -31922,6 +32170,12 @@ export declare const WorkspaceModelCatalogResponse: z.ZodObject<{
|
|
|
31922
32170
|
opengeni_credits: "opengeni_credits";
|
|
31923
32171
|
}>;
|
|
31924
32172
|
}, z.core.$strict>>;
|
|
32173
|
+
cost: z.ZodOptional<z.ZodEnum<{
|
|
32174
|
+
credits: "credits";
|
|
32175
|
+
free: "free";
|
|
32176
|
+
subscription: "subscription";
|
|
32177
|
+
workspace: "workspace";
|
|
32178
|
+
}>>;
|
|
31925
32179
|
capabilities: z.ZodOptional<z.ZodObject<{
|
|
31926
32180
|
reasoning: z.ZodObject<{
|
|
31927
32181
|
upstream: z.ZodEnum<{
|
|
@@ -32149,6 +32403,7 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
32149
32403
|
source: z.ZodOptional<z.ZodEnum<{
|
|
32150
32404
|
codex: "codex";
|
|
32151
32405
|
opengeni: "opengeni";
|
|
32406
|
+
openrouter: "openrouter";
|
|
32152
32407
|
supergrok: "supergrok";
|
|
32153
32408
|
workspace_gateway: "workspace_gateway";
|
|
32154
32409
|
}>>;
|
|
@@ -32195,6 +32450,12 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
32195
32450
|
opengeni_credits: "opengeni_credits";
|
|
32196
32451
|
}>;
|
|
32197
32452
|
}, z.core.$strict>>;
|
|
32453
|
+
cost: z.ZodOptional<z.ZodEnum<{
|
|
32454
|
+
credits: "credits";
|
|
32455
|
+
free: "free";
|
|
32456
|
+
subscription: "subscription";
|
|
32457
|
+
workspace: "workspace";
|
|
32458
|
+
}>>;
|
|
32198
32459
|
capabilities: z.ZodOptional<z.ZodObject<{
|
|
32199
32460
|
reasoning: z.ZodObject<{
|
|
32200
32461
|
upstream: z.ZodEnum<{
|
|
@@ -32367,6 +32628,20 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
32367
32628
|
none: "none";
|
|
32368
32629
|
xhigh: "xhigh";
|
|
32369
32630
|
}>>;
|
|
32631
|
+
defaultSandboxBackend: z.ZodDefault<z.ZodEnum<{
|
|
32632
|
+
blaxel: "blaxel";
|
|
32633
|
+
cloudflare: "cloudflare";
|
|
32634
|
+
daytona: "daytona";
|
|
32635
|
+
docker: "docker";
|
|
32636
|
+
e2b: "e2b";
|
|
32637
|
+
local: "local";
|
|
32638
|
+
modal: "modal";
|
|
32639
|
+
none: "none";
|
|
32640
|
+
opensandbox: "opensandbox";
|
|
32641
|
+
runloop: "runloop";
|
|
32642
|
+
selfhosted: "selfhosted";
|
|
32643
|
+
vercel: "vercel";
|
|
32644
|
+
}>>;
|
|
32370
32645
|
mcpServers: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
32371
32646
|
id: z.ZodString;
|
|
32372
32647
|
name: z.ZodString;
|
|
@@ -32704,6 +32979,10 @@ export declare const ClientConfig: z.ZodObject<{
|
|
|
32704
32979
|
mode: z.ZodLiteral<"managedSession">;
|
|
32705
32980
|
session: z.ZodLiteral<"cookie">;
|
|
32706
32981
|
emailVerificationRequired: z.ZodDefault<z.ZodBoolean>;
|
|
32982
|
+
socialProviders: z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
32983
|
+
github: "github";
|
|
32984
|
+
google: "google";
|
|
32985
|
+
}>>>;
|
|
32707
32986
|
}, z.core.$strip>], "mode">>;
|
|
32708
32987
|
analytics: z.ZodDefault<z.ZodObject<{
|
|
32709
32988
|
consentRequired: z.ZodBoolean;
|