@opengeni/db 4.3.2 → 4.3.3-canary.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/dist/canonical-human-identities.js +3 -3
- package/dist/{chunk-UVBPOGA7.js → chunk-232VC2LW.js} +2 -2
- package/dist/{chunk-DVSLOUEI.js → chunk-2ZMTQVTR.js} +2 -2
- package/dist/{chunk-AI4NC6XW.js → chunk-6TKL3GQO.js} +47 -1
- package/dist/chunk-6TKL3GQO.js.map +1 -0
- package/dist/{chunk-F4BIHJ7J.js → chunk-EYF6MH6C.js} +4 -4
- package/dist/{chunk-I4ITNMX2.js → chunk-GVZJ7XSR.js} +16 -4
- package/dist/{chunk-I4ITNMX2.js.map → chunk-GVZJ7XSR.js.map} +1 -1
- package/dist/{chunk-XBXANJQS.js → chunk-M7PSMVFF.js} +2 -2
- package/dist/{chunk-PFBUHOI5.js → chunk-QLA3UQNX.js} +3 -3
- package/dist/{chunk-YVYBAWBU.js → chunk-THJGMEK5.js} +53 -1
- package/dist/chunk-THJGMEK5.js.map +1 -0
- package/dist/{chunk-UUPY6IGP.js → chunk-UK57QA2H.js} +2 -2
- package/dist/connection-token-resolver.d.ts +2 -0
- package/dist/database.d.ts +7 -2
- package/dist/editable-artifact-durable-export.js +2 -2
- package/dist/editable-artifacts.js +3 -3
- package/dist/host-mcp-bindings.d.ts +3 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +85 -26
- package/dist/index.js.map +1 -1
- package/dist/managed-auth-session-sets.js +3 -3
- package/dist/mcp-operations.d.ts +95 -0
- package/dist/mcp-operations.js +95 -0
- package/dist/mcp-operations.js.map +1 -0
- package/dist/provision-roles.js +1 -1
- package/dist/retained-provider-commands.js +2 -2
- package/dist/runtime-posture.d.ts +3 -3
- package/dist/schema.d.ts +517 -0
- package/dist/schema.js +3 -1
- package/dist/session-background-commands.js +4 -4
- package/dist/session-command-output.js +4 -4
- package/dist/session-event-slices.js +2 -2
- package/dist/session-tenancy.js +3 -3
- package/dist/video-generation.js +3 -3
- package/dist/workspace-tool-defaults.js +4 -4
- package/drizzle/0459_mcp_operations.sql +396 -0
- package/package.json +10 -6
- package/src/connection-token-resolver.ts +2 -0
- package/src/database.ts +23 -2
- package/src/host-mcp-bindings.ts +14 -1
- package/src/index.ts +84 -4
- package/src/mcp-operations.ts +189 -0
- package/src/provision-roles.ts +6 -0
- package/src/runtime-posture.ts +50 -0
- package/src/schema.ts +46 -0
- package/dist/chunk-AI4NC6XW.js.map +0 -1
- package/dist/chunk-YVYBAWBU.js.map +0 -1
- /package/dist/{chunk-UVBPOGA7.js.map → chunk-232VC2LW.js.map} +0 -0
- /package/dist/{chunk-DVSLOUEI.js.map → chunk-2ZMTQVTR.js.map} +0 -0
- /package/dist/{chunk-F4BIHJ7J.js.map → chunk-EYF6MH6C.js.map} +0 -0
- /package/dist/{chunk-XBXANJQS.js.map → chunk-M7PSMVFF.js.map} +0 -0
- /package/dist/{chunk-PFBUHOI5.js.map → chunk-QLA3UQNX.js.map} +0 -0
- /package/dist/{chunk-UUPY6IGP.js.map → chunk-UK57QA2H.js.map} +0 -0
package/dist/schema.d.ts
CHANGED
|
@@ -30310,6 +30310,523 @@ export declare const sessionRealtimeContextProjections: import("drizzle-orm/pg-c
|
|
|
30310
30310
|
};
|
|
30311
30311
|
dialect: 'pg';
|
|
30312
30312
|
}>;
|
|
30313
|
+
export declare const mcpOperations: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
30314
|
+
name: "mcp_operations";
|
|
30315
|
+
schema: undefined;
|
|
30316
|
+
columns: {
|
|
30317
|
+
operationId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30318
|
+
name: "operation_id";
|
|
30319
|
+
tableName: "mcp_operations";
|
|
30320
|
+
dataType: "string";
|
|
30321
|
+
columnType: "PgUUID";
|
|
30322
|
+
data: string;
|
|
30323
|
+
driverParam: string;
|
|
30324
|
+
notNull: true;
|
|
30325
|
+
hasDefault: false;
|
|
30326
|
+
isPrimaryKey: true;
|
|
30327
|
+
isAutoincrement: false;
|
|
30328
|
+
hasRuntimeDefault: false;
|
|
30329
|
+
enumValues: undefined;
|
|
30330
|
+
baseColumn: never;
|
|
30331
|
+
identity: undefined;
|
|
30332
|
+
generated: undefined;
|
|
30333
|
+
}, {}, {}>;
|
|
30334
|
+
accountId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30335
|
+
name: "account_id";
|
|
30336
|
+
tableName: "mcp_operations";
|
|
30337
|
+
dataType: "string";
|
|
30338
|
+
columnType: "PgUUID";
|
|
30339
|
+
data: string;
|
|
30340
|
+
driverParam: string;
|
|
30341
|
+
notNull: true;
|
|
30342
|
+
hasDefault: false;
|
|
30343
|
+
isPrimaryKey: false;
|
|
30344
|
+
isAutoincrement: false;
|
|
30345
|
+
hasRuntimeDefault: false;
|
|
30346
|
+
enumValues: undefined;
|
|
30347
|
+
baseColumn: never;
|
|
30348
|
+
identity: undefined;
|
|
30349
|
+
generated: undefined;
|
|
30350
|
+
}, {}, {}>;
|
|
30351
|
+
workspaceId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30352
|
+
name: "workspace_id";
|
|
30353
|
+
tableName: "mcp_operations";
|
|
30354
|
+
dataType: "string";
|
|
30355
|
+
columnType: "PgUUID";
|
|
30356
|
+
data: string;
|
|
30357
|
+
driverParam: string;
|
|
30358
|
+
notNull: true;
|
|
30359
|
+
hasDefault: false;
|
|
30360
|
+
isPrimaryKey: false;
|
|
30361
|
+
isAutoincrement: false;
|
|
30362
|
+
hasRuntimeDefault: false;
|
|
30363
|
+
enumValues: undefined;
|
|
30364
|
+
baseColumn: never;
|
|
30365
|
+
identity: undefined;
|
|
30366
|
+
generated: undefined;
|
|
30367
|
+
}, {}, {}>;
|
|
30368
|
+
sessionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30369
|
+
name: "session_id";
|
|
30370
|
+
tableName: "mcp_operations";
|
|
30371
|
+
dataType: "string";
|
|
30372
|
+
columnType: "PgUUID";
|
|
30373
|
+
data: string;
|
|
30374
|
+
driverParam: string;
|
|
30375
|
+
notNull: true;
|
|
30376
|
+
hasDefault: false;
|
|
30377
|
+
isPrimaryKey: false;
|
|
30378
|
+
isAutoincrement: false;
|
|
30379
|
+
hasRuntimeDefault: false;
|
|
30380
|
+
enumValues: undefined;
|
|
30381
|
+
baseColumn: never;
|
|
30382
|
+
identity: undefined;
|
|
30383
|
+
generated: undefined;
|
|
30384
|
+
}, {}, {}>;
|
|
30385
|
+
sourceTurnId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30386
|
+
name: "source_turn_id";
|
|
30387
|
+
tableName: "mcp_operations";
|
|
30388
|
+
dataType: "string";
|
|
30389
|
+
columnType: "PgUUID";
|
|
30390
|
+
data: string;
|
|
30391
|
+
driverParam: string;
|
|
30392
|
+
notNull: true;
|
|
30393
|
+
hasDefault: false;
|
|
30394
|
+
isPrimaryKey: false;
|
|
30395
|
+
isAutoincrement: false;
|
|
30396
|
+
hasRuntimeDefault: false;
|
|
30397
|
+
enumValues: undefined;
|
|
30398
|
+
baseColumn: never;
|
|
30399
|
+
identity: undefined;
|
|
30400
|
+
generated: undefined;
|
|
30401
|
+
}, {}, {}>;
|
|
30402
|
+
sourceAttemptId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30403
|
+
name: "source_attempt_id";
|
|
30404
|
+
tableName: "mcp_operations";
|
|
30405
|
+
dataType: "string";
|
|
30406
|
+
columnType: "PgUUID";
|
|
30407
|
+
data: string;
|
|
30408
|
+
driverParam: string;
|
|
30409
|
+
notNull: true;
|
|
30410
|
+
hasDefault: false;
|
|
30411
|
+
isPrimaryKey: false;
|
|
30412
|
+
isAutoincrement: false;
|
|
30413
|
+
hasRuntimeDefault: false;
|
|
30414
|
+
enumValues: undefined;
|
|
30415
|
+
baseColumn: never;
|
|
30416
|
+
identity: undefined;
|
|
30417
|
+
generated: undefined;
|
|
30418
|
+
}, {}, {}>;
|
|
30419
|
+
sourceExecutionGeneration: import("drizzle-orm/pg-core").PgColumn<{
|
|
30420
|
+
name: "source_execution_generation";
|
|
30421
|
+
tableName: "mcp_operations";
|
|
30422
|
+
dataType: "number";
|
|
30423
|
+
columnType: "PgInteger";
|
|
30424
|
+
data: number;
|
|
30425
|
+
driverParam: string | number;
|
|
30426
|
+
notNull: true;
|
|
30427
|
+
hasDefault: false;
|
|
30428
|
+
isPrimaryKey: false;
|
|
30429
|
+
isAutoincrement: false;
|
|
30430
|
+
hasRuntimeDefault: false;
|
|
30431
|
+
enumValues: undefined;
|
|
30432
|
+
baseColumn: never;
|
|
30433
|
+
identity: undefined;
|
|
30434
|
+
generated: undefined;
|
|
30435
|
+
}, {}, {}>;
|
|
30436
|
+
sourceCallId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30437
|
+
name: "source_call_id";
|
|
30438
|
+
tableName: "mcp_operations";
|
|
30439
|
+
dataType: "string";
|
|
30440
|
+
columnType: "PgText";
|
|
30441
|
+
data: string;
|
|
30442
|
+
driverParam: string;
|
|
30443
|
+
notNull: false;
|
|
30444
|
+
hasDefault: false;
|
|
30445
|
+
isPrimaryKey: false;
|
|
30446
|
+
isAutoincrement: false;
|
|
30447
|
+
hasRuntimeDefault: false;
|
|
30448
|
+
enumValues: [string, ...string[]];
|
|
30449
|
+
baseColumn: never;
|
|
30450
|
+
identity: undefined;
|
|
30451
|
+
generated: undefined;
|
|
30452
|
+
}, {}, {}>;
|
|
30453
|
+
principalKind: import("drizzle-orm/pg-core").PgColumn<{
|
|
30454
|
+
name: "principal_kind";
|
|
30455
|
+
tableName: "mcp_operations";
|
|
30456
|
+
dataType: "string";
|
|
30457
|
+
columnType: "PgText";
|
|
30458
|
+
data: string;
|
|
30459
|
+
driverParam: string;
|
|
30460
|
+
notNull: true;
|
|
30461
|
+
hasDefault: false;
|
|
30462
|
+
isPrimaryKey: false;
|
|
30463
|
+
isAutoincrement: false;
|
|
30464
|
+
hasRuntimeDefault: false;
|
|
30465
|
+
enumValues: [string, ...string[]];
|
|
30466
|
+
baseColumn: never;
|
|
30467
|
+
identity: undefined;
|
|
30468
|
+
generated: undefined;
|
|
30469
|
+
}, {}, {}>;
|
|
30470
|
+
principalId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30471
|
+
name: "principal_id";
|
|
30472
|
+
tableName: "mcp_operations";
|
|
30473
|
+
dataType: "string";
|
|
30474
|
+
columnType: "PgText";
|
|
30475
|
+
data: string;
|
|
30476
|
+
driverParam: string;
|
|
30477
|
+
notNull: true;
|
|
30478
|
+
hasDefault: false;
|
|
30479
|
+
isPrimaryKey: false;
|
|
30480
|
+
isAutoincrement: false;
|
|
30481
|
+
hasRuntimeDefault: false;
|
|
30482
|
+
enumValues: [string, ...string[]];
|
|
30483
|
+
baseColumn: never;
|
|
30484
|
+
identity: undefined;
|
|
30485
|
+
generated: undefined;
|
|
30486
|
+
}, {}, {}>;
|
|
30487
|
+
principalMembershipId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30488
|
+
name: "principal_membership_id";
|
|
30489
|
+
tableName: "mcp_operations";
|
|
30490
|
+
dataType: "string";
|
|
30491
|
+
columnType: "PgUUID";
|
|
30492
|
+
data: string;
|
|
30493
|
+
driverParam: string;
|
|
30494
|
+
notNull: false;
|
|
30495
|
+
hasDefault: false;
|
|
30496
|
+
isPrimaryKey: false;
|
|
30497
|
+
isAutoincrement: false;
|
|
30498
|
+
hasRuntimeDefault: false;
|
|
30499
|
+
enumValues: undefined;
|
|
30500
|
+
baseColumn: never;
|
|
30501
|
+
identity: undefined;
|
|
30502
|
+
generated: undefined;
|
|
30503
|
+
}, {}, {}>;
|
|
30504
|
+
principalMembershipRevision: import("drizzle-orm/pg-core").PgColumn<{
|
|
30505
|
+
name: "principal_membership_revision";
|
|
30506
|
+
tableName: "mcp_operations";
|
|
30507
|
+
dataType: "number";
|
|
30508
|
+
columnType: "PgBigInt53";
|
|
30509
|
+
data: number;
|
|
30510
|
+
driverParam: string | number;
|
|
30511
|
+
notNull: false;
|
|
30512
|
+
hasDefault: false;
|
|
30513
|
+
isPrimaryKey: false;
|
|
30514
|
+
isAutoincrement: false;
|
|
30515
|
+
hasRuntimeDefault: false;
|
|
30516
|
+
enumValues: undefined;
|
|
30517
|
+
baseColumn: never;
|
|
30518
|
+
identity: undefined;
|
|
30519
|
+
generated: undefined;
|
|
30520
|
+
}, {}, {}>;
|
|
30521
|
+
serverId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30522
|
+
name: "server_id";
|
|
30523
|
+
tableName: "mcp_operations";
|
|
30524
|
+
dataType: "string";
|
|
30525
|
+
columnType: "PgText";
|
|
30526
|
+
data: string;
|
|
30527
|
+
driverParam: string;
|
|
30528
|
+
notNull: true;
|
|
30529
|
+
hasDefault: false;
|
|
30530
|
+
isPrimaryKey: false;
|
|
30531
|
+
isAutoincrement: false;
|
|
30532
|
+
hasRuntimeDefault: false;
|
|
30533
|
+
enumValues: [string, ...string[]];
|
|
30534
|
+
baseColumn: never;
|
|
30535
|
+
identity: undefined;
|
|
30536
|
+
generated: undefined;
|
|
30537
|
+
}, {}, {}>;
|
|
30538
|
+
originalTool: import("drizzle-orm/pg-core").PgColumn<{
|
|
30539
|
+
name: "original_tool";
|
|
30540
|
+
tableName: "mcp_operations";
|
|
30541
|
+
dataType: "string";
|
|
30542
|
+
columnType: "PgText";
|
|
30543
|
+
data: string;
|
|
30544
|
+
driverParam: string;
|
|
30545
|
+
notNull: true;
|
|
30546
|
+
hasDefault: false;
|
|
30547
|
+
isPrimaryKey: false;
|
|
30548
|
+
isAutoincrement: false;
|
|
30549
|
+
hasRuntimeDefault: false;
|
|
30550
|
+
enumValues: [string, ...string[]];
|
|
30551
|
+
baseColumn: never;
|
|
30552
|
+
identity: undefined;
|
|
30553
|
+
generated: undefined;
|
|
30554
|
+
}, {}, {}>;
|
|
30555
|
+
observerTool: import("drizzle-orm/pg-core").PgColumn<{
|
|
30556
|
+
name: "observer_tool";
|
|
30557
|
+
tableName: "mcp_operations";
|
|
30558
|
+
dataType: "string";
|
|
30559
|
+
columnType: "PgText";
|
|
30560
|
+
data: string;
|
|
30561
|
+
driverParam: string;
|
|
30562
|
+
notNull: true;
|
|
30563
|
+
hasDefault: false;
|
|
30564
|
+
isPrimaryKey: false;
|
|
30565
|
+
isAutoincrement: false;
|
|
30566
|
+
hasRuntimeDefault: false;
|
|
30567
|
+
enumValues: [string, ...string[]];
|
|
30568
|
+
baseColumn: never;
|
|
30569
|
+
identity: undefined;
|
|
30570
|
+
generated: undefined;
|
|
30571
|
+
}, {}, {}>;
|
|
30572
|
+
argumentDigest: import("drizzle-orm/pg-core").PgColumn<{
|
|
30573
|
+
name: "argument_digest";
|
|
30574
|
+
tableName: "mcp_operations";
|
|
30575
|
+
dataType: "string";
|
|
30576
|
+
columnType: "PgText";
|
|
30577
|
+
data: string;
|
|
30578
|
+
driverParam: string;
|
|
30579
|
+
notNull: true;
|
|
30580
|
+
hasDefault: false;
|
|
30581
|
+
isPrimaryKey: false;
|
|
30582
|
+
isAutoincrement: false;
|
|
30583
|
+
hasRuntimeDefault: false;
|
|
30584
|
+
enumValues: [string, ...string[]];
|
|
30585
|
+
baseColumn: never;
|
|
30586
|
+
identity: undefined;
|
|
30587
|
+
generated: undefined;
|
|
30588
|
+
}, {}, {}>;
|
|
30589
|
+
destinationDigest: import("drizzle-orm/pg-core").PgColumn<{
|
|
30590
|
+
name: "destination_digest";
|
|
30591
|
+
tableName: "mcp_operations";
|
|
30592
|
+
dataType: "string";
|
|
30593
|
+
columnType: "PgText";
|
|
30594
|
+
data: string;
|
|
30595
|
+
driverParam: string;
|
|
30596
|
+
notNull: true;
|
|
30597
|
+
hasDefault: false;
|
|
30598
|
+
isPrimaryKey: false;
|
|
30599
|
+
isAutoincrement: false;
|
|
30600
|
+
hasRuntimeDefault: false;
|
|
30601
|
+
enumValues: [string, ...string[]];
|
|
30602
|
+
baseColumn: never;
|
|
30603
|
+
identity: undefined;
|
|
30604
|
+
generated: undefined;
|
|
30605
|
+
}, {}, {}>;
|
|
30606
|
+
authorityDigest: import("drizzle-orm/pg-core").PgColumn<{
|
|
30607
|
+
name: "authority_digest";
|
|
30608
|
+
tableName: "mcp_operations";
|
|
30609
|
+
dataType: "string";
|
|
30610
|
+
columnType: "PgText";
|
|
30611
|
+
data: string;
|
|
30612
|
+
driverParam: string;
|
|
30613
|
+
notNull: true;
|
|
30614
|
+
hasDefault: false;
|
|
30615
|
+
isPrimaryKey: false;
|
|
30616
|
+
isAutoincrement: false;
|
|
30617
|
+
hasRuntimeDefault: false;
|
|
30618
|
+
enumValues: [string, ...string[]];
|
|
30619
|
+
baseColumn: never;
|
|
30620
|
+
identity: undefined;
|
|
30621
|
+
generated: undefined;
|
|
30622
|
+
}, {}, {}>;
|
|
30623
|
+
originalOutcome: import("drizzle-orm/pg-core").PgColumn<{
|
|
30624
|
+
name: "original_outcome";
|
|
30625
|
+
tableName: "mcp_operations";
|
|
30626
|
+
dataType: "string";
|
|
30627
|
+
columnType: "PgText";
|
|
30628
|
+
data: string;
|
|
30629
|
+
driverParam: string;
|
|
30630
|
+
notNull: true;
|
|
30631
|
+
hasDefault: true;
|
|
30632
|
+
isPrimaryKey: false;
|
|
30633
|
+
isAutoincrement: false;
|
|
30634
|
+
hasRuntimeDefault: false;
|
|
30635
|
+
enumValues: [string, ...string[]];
|
|
30636
|
+
baseColumn: never;
|
|
30637
|
+
identity: undefined;
|
|
30638
|
+
generated: undefined;
|
|
30639
|
+
}, {}, {}>;
|
|
30640
|
+
originalResult: import("drizzle-orm/pg-core").PgColumn<{
|
|
30641
|
+
name: "original_result";
|
|
30642
|
+
tableName: "mcp_operations";
|
|
30643
|
+
dataType: "json";
|
|
30644
|
+
columnType: "PgJsonb";
|
|
30645
|
+
data: unknown;
|
|
30646
|
+
driverParam: unknown;
|
|
30647
|
+
notNull: false;
|
|
30648
|
+
hasDefault: false;
|
|
30649
|
+
isPrimaryKey: false;
|
|
30650
|
+
isAutoincrement: false;
|
|
30651
|
+
hasRuntimeDefault: false;
|
|
30652
|
+
enumValues: undefined;
|
|
30653
|
+
baseColumn: never;
|
|
30654
|
+
identity: undefined;
|
|
30655
|
+
generated: undefined;
|
|
30656
|
+
}, {}, {}>;
|
|
30657
|
+
originalResultCodecVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
30658
|
+
name: "original_result_codec_version";
|
|
30659
|
+
tableName: "mcp_operations";
|
|
30660
|
+
dataType: "number";
|
|
30661
|
+
columnType: "PgInteger";
|
|
30662
|
+
data: number;
|
|
30663
|
+
driverParam: string | number;
|
|
30664
|
+
notNull: false;
|
|
30665
|
+
hasDefault: false;
|
|
30666
|
+
isPrimaryKey: false;
|
|
30667
|
+
isAutoincrement: false;
|
|
30668
|
+
hasRuntimeDefault: false;
|
|
30669
|
+
enumValues: undefined;
|
|
30670
|
+
baseColumn: never;
|
|
30671
|
+
identity: undefined;
|
|
30672
|
+
generated: undefined;
|
|
30673
|
+
}, {}, {}>;
|
|
30674
|
+
observationResult: import("drizzle-orm/pg-core").PgColumn<{
|
|
30675
|
+
name: "observation_result";
|
|
30676
|
+
tableName: "mcp_operations";
|
|
30677
|
+
dataType: "json";
|
|
30678
|
+
columnType: "PgJsonb";
|
|
30679
|
+
data: unknown;
|
|
30680
|
+
driverParam: unknown;
|
|
30681
|
+
notNull: false;
|
|
30682
|
+
hasDefault: false;
|
|
30683
|
+
isPrimaryKey: false;
|
|
30684
|
+
isAutoincrement: false;
|
|
30685
|
+
hasRuntimeDefault: false;
|
|
30686
|
+
enumValues: undefined;
|
|
30687
|
+
baseColumn: never;
|
|
30688
|
+
identity: undefined;
|
|
30689
|
+
generated: undefined;
|
|
30690
|
+
}, {}, {}>;
|
|
30691
|
+
observationResultCodecVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
30692
|
+
name: "observation_result_codec_version";
|
|
30693
|
+
tableName: "mcp_operations";
|
|
30694
|
+
dataType: "number";
|
|
30695
|
+
columnType: "PgInteger";
|
|
30696
|
+
data: number;
|
|
30697
|
+
driverParam: string | number;
|
|
30698
|
+
notNull: false;
|
|
30699
|
+
hasDefault: false;
|
|
30700
|
+
isPrimaryKey: false;
|
|
30701
|
+
isAutoincrement: false;
|
|
30702
|
+
hasRuntimeDefault: false;
|
|
30703
|
+
enumValues: undefined;
|
|
30704
|
+
baseColumn: never;
|
|
30705
|
+
identity: undefined;
|
|
30706
|
+
generated: undefined;
|
|
30707
|
+
}, {}, {}>;
|
|
30708
|
+
receiptRevision: import("drizzle-orm/pg-core").PgColumn<{
|
|
30709
|
+
name: "receipt_revision";
|
|
30710
|
+
tableName: "mcp_operations";
|
|
30711
|
+
dataType: "string";
|
|
30712
|
+
columnType: "PgText";
|
|
30713
|
+
data: string;
|
|
30714
|
+
driverParam: string;
|
|
30715
|
+
notNull: false;
|
|
30716
|
+
hasDefault: false;
|
|
30717
|
+
isPrimaryKey: false;
|
|
30718
|
+
isAutoincrement: false;
|
|
30719
|
+
hasRuntimeDefault: false;
|
|
30720
|
+
enumValues: [string, ...string[]];
|
|
30721
|
+
baseColumn: never;
|
|
30722
|
+
identity: undefined;
|
|
30723
|
+
generated: undefined;
|
|
30724
|
+
}, {}, {}>;
|
|
30725
|
+
receiptDigest: import("drizzle-orm/pg-core").PgColumn<{
|
|
30726
|
+
name: "receipt_digest";
|
|
30727
|
+
tableName: "mcp_operations";
|
|
30728
|
+
dataType: "string";
|
|
30729
|
+
columnType: "PgText";
|
|
30730
|
+
data: string;
|
|
30731
|
+
driverParam: string;
|
|
30732
|
+
notNull: false;
|
|
30733
|
+
hasDefault: false;
|
|
30734
|
+
isPrimaryKey: false;
|
|
30735
|
+
isAutoincrement: false;
|
|
30736
|
+
hasRuntimeDefault: false;
|
|
30737
|
+
enumValues: [string, ...string[]];
|
|
30738
|
+
baseColumn: never;
|
|
30739
|
+
identity: undefined;
|
|
30740
|
+
generated: undefined;
|
|
30741
|
+
}, {}, {}>;
|
|
30742
|
+
observationClaimId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30743
|
+
name: "observation_claim_id";
|
|
30744
|
+
tableName: "mcp_operations";
|
|
30745
|
+
dataType: "string";
|
|
30746
|
+
columnType: "PgUUID";
|
|
30747
|
+
data: string;
|
|
30748
|
+
driverParam: string;
|
|
30749
|
+
notNull: false;
|
|
30750
|
+
hasDefault: false;
|
|
30751
|
+
isPrimaryKey: false;
|
|
30752
|
+
isAutoincrement: false;
|
|
30753
|
+
hasRuntimeDefault: false;
|
|
30754
|
+
enumValues: undefined;
|
|
30755
|
+
baseColumn: never;
|
|
30756
|
+
identity: undefined;
|
|
30757
|
+
generated: undefined;
|
|
30758
|
+
}, {}, {}>;
|
|
30759
|
+
observationClaimAttemptId: import("drizzle-orm/pg-core").PgColumn<{
|
|
30760
|
+
name: "observation_claim_attempt_id";
|
|
30761
|
+
tableName: "mcp_operations";
|
|
30762
|
+
dataType: "string";
|
|
30763
|
+
columnType: "PgUUID";
|
|
30764
|
+
data: string;
|
|
30765
|
+
driverParam: string;
|
|
30766
|
+
notNull: false;
|
|
30767
|
+
hasDefault: false;
|
|
30768
|
+
isPrimaryKey: false;
|
|
30769
|
+
isAutoincrement: false;
|
|
30770
|
+
hasRuntimeDefault: false;
|
|
30771
|
+
enumValues: undefined;
|
|
30772
|
+
baseColumn: never;
|
|
30773
|
+
identity: undefined;
|
|
30774
|
+
generated: undefined;
|
|
30775
|
+
}, {}, {}>;
|
|
30776
|
+
observationClaimExpiresAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
30777
|
+
name: "observation_claim_expires_at";
|
|
30778
|
+
tableName: "mcp_operations";
|
|
30779
|
+
dataType: "date";
|
|
30780
|
+
columnType: "PgTimestamp";
|
|
30781
|
+
data: Date;
|
|
30782
|
+
driverParam: string;
|
|
30783
|
+
notNull: false;
|
|
30784
|
+
hasDefault: false;
|
|
30785
|
+
isPrimaryKey: false;
|
|
30786
|
+
isAutoincrement: false;
|
|
30787
|
+
hasRuntimeDefault: false;
|
|
30788
|
+
enumValues: undefined;
|
|
30789
|
+
baseColumn: never;
|
|
30790
|
+
identity: undefined;
|
|
30791
|
+
generated: undefined;
|
|
30792
|
+
}, {}, {}>;
|
|
30793
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
30794
|
+
name: "created_at";
|
|
30795
|
+
tableName: "mcp_operations";
|
|
30796
|
+
dataType: "date";
|
|
30797
|
+
columnType: "PgTimestamp";
|
|
30798
|
+
data: Date;
|
|
30799
|
+
driverParam: string;
|
|
30800
|
+
notNull: true;
|
|
30801
|
+
hasDefault: true;
|
|
30802
|
+
isPrimaryKey: false;
|
|
30803
|
+
isAutoincrement: false;
|
|
30804
|
+
hasRuntimeDefault: false;
|
|
30805
|
+
enumValues: undefined;
|
|
30806
|
+
baseColumn: never;
|
|
30807
|
+
identity: undefined;
|
|
30808
|
+
generated: undefined;
|
|
30809
|
+
}, {}, {}>;
|
|
30810
|
+
observedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
30811
|
+
name: "observed_at";
|
|
30812
|
+
tableName: "mcp_operations";
|
|
30813
|
+
dataType: "date";
|
|
30814
|
+
columnType: "PgTimestamp";
|
|
30815
|
+
data: Date;
|
|
30816
|
+
driverParam: string;
|
|
30817
|
+
notNull: false;
|
|
30818
|
+
hasDefault: false;
|
|
30819
|
+
isPrimaryKey: false;
|
|
30820
|
+
isAutoincrement: false;
|
|
30821
|
+
hasRuntimeDefault: false;
|
|
30822
|
+
enumValues: undefined;
|
|
30823
|
+
baseColumn: never;
|
|
30824
|
+
identity: undefined;
|
|
30825
|
+
generated: undefined;
|
|
30826
|
+
}, {}, {}>;
|
|
30827
|
+
};
|
|
30828
|
+
dialect: 'pg';
|
|
30829
|
+
}>;
|
|
30313
30830
|
export declare const sessionTurnAttempts: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
30314
30831
|
name: "session_turn_attempts";
|
|
30315
30832
|
schema: undefined;
|
package/dist/schema.js
CHANGED
|
@@ -166,6 +166,7 @@ import {
|
|
|
166
166
|
mcpOauthAuthorizationRequests,
|
|
167
167
|
mcpOauthClients,
|
|
168
168
|
mcpOauthRefreshTokens,
|
|
169
|
+
mcpOperations,
|
|
169
170
|
memorySlackPublicationConfigurations,
|
|
170
171
|
memorySlackPublicationReceipts,
|
|
171
172
|
memorySlackPublications,
|
|
@@ -359,7 +360,7 @@ import {
|
|
|
359
360
|
xaiRotationSettings,
|
|
360
361
|
xaiSessionAccountPins,
|
|
361
362
|
xaiSubscriptionCredentials
|
|
362
|
-
} from "./chunk-
|
|
363
|
+
} from "./chunk-6TKL3GQO.js";
|
|
363
364
|
import "./chunk-PZ5AY32C.js";
|
|
364
365
|
export {
|
|
365
366
|
agentRunStates,
|
|
@@ -529,6 +530,7 @@ export {
|
|
|
529
530
|
mcpOauthAuthorizationRequests,
|
|
530
531
|
mcpOauthClients,
|
|
531
532
|
mcpOauthRefreshTokens,
|
|
533
|
+
mcpOperations,
|
|
532
534
|
memorySlackPublicationConfigurations,
|
|
533
535
|
memorySlackPublicationReceipts,
|
|
534
536
|
memorySlackPublications,
|
|
@@ -22,10 +22,10 @@ import {
|
|
|
22
22
|
settleClaimedConnectedMachineBackgroundCommandWithMutation,
|
|
23
23
|
settleConnectedMachineSessionBackgroundCommandWithMutation,
|
|
24
24
|
settleSessionBackgroundCommandForRetainedProcessInTransaction
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import "./chunk-
|
|
27
|
-
import "./chunk-
|
|
28
|
-
import "./chunk-
|
|
25
|
+
} from "./chunk-EYF6MH6C.js";
|
|
26
|
+
import "./chunk-QLA3UQNX.js";
|
|
27
|
+
import "./chunk-GVZJ7XSR.js";
|
|
28
|
+
import "./chunk-6TKL3GQO.js";
|
|
29
29
|
import "./chunk-PZ5AY32C.js";
|
|
30
30
|
export {
|
|
31
31
|
COMMAND_OUTPUT_DEFAULT_BYTES,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
lockSessionEventWriteRows
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-EYF6MH6C.js";
|
|
4
|
+
import "./chunk-QLA3UQNX.js";
|
|
5
5
|
import {
|
|
6
6
|
withSessionActivityRlsContext
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-GVZJ7XSR.js";
|
|
8
8
|
import {
|
|
9
9
|
fromPostgresLosslessJson,
|
|
10
10
|
sandboxRetainedProcesses,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
sessionEvents,
|
|
13
13
|
sessions,
|
|
14
14
|
withLosslessContentWriteVersion
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-6TKL3GQO.js";
|
|
16
16
|
import "./chunk-PZ5AY32C.js";
|
|
17
17
|
|
|
18
18
|
// src/session-command-output.ts
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
rawRows,
|
|
3
3
|
withWorkspaceRls
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-GVZJ7XSR.js";
|
|
5
5
|
import {
|
|
6
6
|
LOSSLESS_JSON_STRING_PREFIX,
|
|
7
7
|
fromPostgresLosslessJson,
|
|
8
8
|
sessionEvents,
|
|
9
9
|
sessionTurns
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-6TKL3GQO.js";
|
|
11
11
|
import "./chunk-PZ5AY32C.js";
|
|
12
12
|
|
|
13
13
|
// src/session-event-slices.ts
|
package/dist/session-tenancy.js
CHANGED
|
@@ -14,9 +14,9 @@ import {
|
|
|
14
14
|
replayAppliedSessionFork,
|
|
15
15
|
sessionTenancyProductActivated,
|
|
16
16
|
transitionSessionVisibility
|
|
17
|
-
} from "./chunk-
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
17
|
+
} from "./chunk-M7PSMVFF.js";
|
|
18
|
+
import "./chunk-GVZJ7XSR.js";
|
|
19
|
+
import "./chunk-6TKL3GQO.js";
|
|
20
20
|
import "./chunk-PZ5AY32C.js";
|
|
21
21
|
export {
|
|
22
22
|
SessionTenancyAccessError,
|
package/dist/video-generation.js
CHANGED
|
@@ -29,9 +29,9 @@ import {
|
|
|
29
29
|
settleVideoGenerationFailure,
|
|
30
30
|
settleVideoGenerationReady,
|
|
31
31
|
updateWorkspaceVideoGenerationPolicy
|
|
32
|
-
} from "./chunk-
|
|
33
|
-
import "./chunk-
|
|
34
|
-
import "./chunk-
|
|
32
|
+
} from "./chunk-QLA3UQNX.js";
|
|
33
|
+
import "./chunk-GVZJ7XSR.js";
|
|
34
|
+
import "./chunk-6TKL3GQO.js";
|
|
35
35
|
import "./chunk-PZ5AY32C.js";
|
|
36
36
|
export {
|
|
37
37
|
ACTIVE_VIDEO_GENERATION_STATUSES,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
lockWorkspaceInferenceControl
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-EYF6MH6C.js";
|
|
4
|
+
import "./chunk-QLA3UQNX.js";
|
|
5
5
|
import {
|
|
6
6
|
withWorkspaceRls
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-GVZJ7XSR.js";
|
|
8
|
+
import "./chunk-6TKL3GQO.js";
|
|
9
9
|
import "./chunk-PZ5AY32C.js";
|
|
10
10
|
|
|
11
11
|
// src/workspace-tool-defaults.ts
|