@opengeni/db 3.6.0 → 3.7.4
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-744DFC65.js → chunk-4NAR7FBA.js} +92 -6
- package/dist/chunk-4NAR7FBA.js.map +1 -0
- package/dist/{chunk-IW6O6G7R.js → chunk-5NNCGFQY.js} +2 -2
- package/dist/{chunk-G3732M3T.js → chunk-DZCYW2WT.js} +2 -2
- package/dist/{chunk-WW7AJ5IC.js → chunk-F6PBS6WE.js} +5 -7
- package/dist/chunk-F6PBS6WE.js.map +1 -0
- package/dist/{chunk-UJ2EW3QI.js → chunk-O56DM5GZ.js} +340 -85
- package/dist/chunk-O56DM5GZ.js.map +1 -0
- package/dist/{chunk-CDMMSUWJ.js → chunk-S3TDDCS2.js} +3 -3
- package/dist/{chunk-Q5YUGQVK.js → chunk-SZAWDXQC.js} +3 -3
- package/dist/{chunk-UGDVSQ6U.js → chunk-U4WPPEBH.js} +2 -2
- package/dist/{chunk-2NT476HD.js → chunk-US4IS6IV.js} +2 -2
- package/dist/codex-token-resolver.d.ts +12 -1
- package/dist/company-profile-agent-admin.d.ts +4 -2
- package/dist/company-profile-agent-policy.d.ts +20 -0
- package/dist/company-profile-schema.d.ts +573 -0
- package/dist/editable-artifact-durable-export.js +2 -2
- package/dist/editable-artifacts.js +3 -3
- package/dist/index.d.ts +382 -18
- package/dist/index.js +4513 -2065
- package/dist/index.js.map +1 -1
- package/dist/managed-auth-session-sets.js +3 -3
- package/dist/managed-human-provisioning.d.ts +3 -3
- package/dist/memory-domain.d.ts +5 -3
- package/dist/provision-roles.js +1 -1
- package/dist/runtime-posture.d.ts +5 -5
- package/dist/schema.d.ts +725 -4
- package/dist/schema.js +13 -1
- package/dist/session-background-commands.js +3 -3
- package/dist/session-control.d.ts +40 -5
- package/dist/session-queue-commands.d.ts +2 -0
- package/dist/session-tenancy.js +3 -3
- package/dist/user-resource-authority.d.ts +8 -0
- package/dist/video-generation.js +3 -3
- package/drizzle/0369_local_human_personal_authority.sql +350 -0
- package/drizzle/0370_workspace_member_management_scope.sql +98 -0
- package/drizzle/0371_workspace_member_candidate_inventory.sql +128 -0
- package/drizzle/0372_ordered_variable_set_runtime_authority.sql +287 -0
- package/drizzle/0373_sandbox_shared_preparation.sql +59 -0
- package/drizzle/0374_session_event_cursors.sql +315 -0
- package/drizzle/0375_session_recovery_observability.sql +73 -0
- package/drizzle/0376_organization_workspace_inventory.sql +88 -0
- package/drizzle/0377_scoped_rig_health_projection.sql +80 -0
- package/drizzle/0378_scoped_rig_health_audit_timestamp.sql +77 -0
- package/drizzle/0379_session_event_raw_lane_activation.sql +518 -0
- package/drizzle/0380_autonomous_company_profile_agent_policy.sql +829 -0
- package/drizzle/0381_organization_codex_subscription_inheritance.sql +720 -0
- package/drizzle/0382_organization_api_key_provenance.sql +91 -0
- package/drizzle/0383_codex_cooldown_reconciliation.sql +51 -0
- package/drizzle/0384_codex_cooldown_revision_guard_privileges.sql +6 -0
- package/drizzle/0385_connected_machine_legacy_tilde_workdirs.sql +25 -0
- package/drizzle/0386_local_organization_administration.sql +157 -0
- package/package.json +5 -5
- package/src/codex-token-resolver.ts +26 -1
- package/src/company-brain-governed-writes.ts +30 -1
- package/src/company-profile-agent-admin.ts +68 -1
- package/src/company-profile-agent-policy.ts +126 -0
- package/src/company-profile-schema.ts +115 -1
- package/src/database.ts +3 -5
- package/src/index.ts +3626 -456
- package/src/managed-human-provisioning.ts +3 -3
- package/src/memory-domain.ts +9 -4
- package/src/organization-membership-lifecycle.ts +0 -1
- package/src/provision-roles.ts +83 -4
- package/src/runtime-posture.ts +22 -0
- package/src/schema.ts +161 -8
- package/src/session-control.ts +177 -59
- package/src/session-queue-commands.ts +146 -40
- package/src/session-tool-call-settlement.ts +34 -7
- package/src/user-resource-authority.ts +56 -0
- package/dist/chunk-744DFC65.js.map +0 -1
- package/dist/chunk-UJ2EW3QI.js.map +0 -1
- package/dist/chunk-WW7AJ5IC.js.map +0 -1
- /package/dist/{chunk-IW6O6G7R.js.map → chunk-5NNCGFQY.js.map} +0 -0
- /package/dist/{chunk-G3732M3T.js.map → chunk-DZCYW2WT.js.map} +0 -0
- /package/dist/{chunk-CDMMSUWJ.js.map → chunk-S3TDDCS2.js.map} +0 -0
- /package/dist/{chunk-Q5YUGQVK.js.map → chunk-SZAWDXQC.js.map} +0 -0
- /package/dist/{chunk-UGDVSQ6U.js.map → chunk-U4WPPEBH.js.map} +0 -0
- /package/dist/{chunk-2NT476HD.js.map → chunk-US4IS6IV.js.map} +0 -0
|
@@ -597,6 +597,264 @@ export declare const companyProfileActivationEvents: import("drizzle-orm/pg-core
|
|
|
597
597
|
};
|
|
598
598
|
dialect: 'pg';
|
|
599
599
|
}>;
|
|
600
|
+
export declare const organizationCompanyProfileAgentPolicies: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
601
|
+
name: "organization_company_profile_agent_policies";
|
|
602
|
+
schema: undefined;
|
|
603
|
+
columns: {
|
|
604
|
+
accountId: import("drizzle-orm/pg-core").PgColumn<{
|
|
605
|
+
name: "account_id";
|
|
606
|
+
tableName: "organization_company_profile_agent_policies";
|
|
607
|
+
dataType: "string";
|
|
608
|
+
columnType: "PgUUID";
|
|
609
|
+
data: string;
|
|
610
|
+
driverParam: string;
|
|
611
|
+
notNull: true;
|
|
612
|
+
hasDefault: false;
|
|
613
|
+
isPrimaryKey: true;
|
|
614
|
+
isAutoincrement: false;
|
|
615
|
+
hasRuntimeDefault: false;
|
|
616
|
+
enumValues: undefined;
|
|
617
|
+
baseColumn: never;
|
|
618
|
+
identity: undefined;
|
|
619
|
+
generated: undefined;
|
|
620
|
+
}, {}, {}>;
|
|
621
|
+
mode: import("drizzle-orm/pg-core").PgColumn<{
|
|
622
|
+
name: "mode";
|
|
623
|
+
tableName: "organization_company_profile_agent_policies";
|
|
624
|
+
dataType: "string";
|
|
625
|
+
columnType: "PgText";
|
|
626
|
+
data: "automatic" | "off" | "suggest";
|
|
627
|
+
driverParam: string;
|
|
628
|
+
notNull: true;
|
|
629
|
+
hasDefault: true;
|
|
630
|
+
isPrimaryKey: false;
|
|
631
|
+
isAutoincrement: false;
|
|
632
|
+
hasRuntimeDefault: false;
|
|
633
|
+
enumValues: [string, ...string[]];
|
|
634
|
+
baseColumn: never;
|
|
635
|
+
identity: undefined;
|
|
636
|
+
generated: undefined;
|
|
637
|
+
}, {}, {
|
|
638
|
+
$type: "automatic" | "off" | "suggest";
|
|
639
|
+
}>;
|
|
640
|
+
version: import("drizzle-orm/pg-core").PgColumn<{
|
|
641
|
+
name: "version";
|
|
642
|
+
tableName: "organization_company_profile_agent_policies";
|
|
643
|
+
dataType: "number";
|
|
644
|
+
columnType: "PgBigInt53";
|
|
645
|
+
data: number;
|
|
646
|
+
driverParam: string | number;
|
|
647
|
+
notNull: true;
|
|
648
|
+
hasDefault: true;
|
|
649
|
+
isPrimaryKey: false;
|
|
650
|
+
isAutoincrement: false;
|
|
651
|
+
hasRuntimeDefault: false;
|
|
652
|
+
enumValues: undefined;
|
|
653
|
+
baseColumn: never;
|
|
654
|
+
identity: undefined;
|
|
655
|
+
generated: undefined;
|
|
656
|
+
}, {}, {}>;
|
|
657
|
+
updatedByMembershipId: import("drizzle-orm/pg-core").PgColumn<{
|
|
658
|
+
name: "updated_by_membership_id";
|
|
659
|
+
tableName: "organization_company_profile_agent_policies";
|
|
660
|
+
dataType: "string";
|
|
661
|
+
columnType: "PgUUID";
|
|
662
|
+
data: string;
|
|
663
|
+
driverParam: string;
|
|
664
|
+
notNull: false;
|
|
665
|
+
hasDefault: false;
|
|
666
|
+
isPrimaryKey: false;
|
|
667
|
+
isAutoincrement: false;
|
|
668
|
+
hasRuntimeDefault: false;
|
|
669
|
+
enumValues: undefined;
|
|
670
|
+
baseColumn: never;
|
|
671
|
+
identity: undefined;
|
|
672
|
+
generated: undefined;
|
|
673
|
+
}, {}, {}>;
|
|
674
|
+
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
675
|
+
name: "updated_at";
|
|
676
|
+
tableName: "organization_company_profile_agent_policies";
|
|
677
|
+
dataType: "date";
|
|
678
|
+
columnType: "PgTimestamp";
|
|
679
|
+
data: Date;
|
|
680
|
+
driverParam: string;
|
|
681
|
+
notNull: true;
|
|
682
|
+
hasDefault: true;
|
|
683
|
+
isPrimaryKey: false;
|
|
684
|
+
isAutoincrement: false;
|
|
685
|
+
hasRuntimeDefault: false;
|
|
686
|
+
enumValues: undefined;
|
|
687
|
+
baseColumn: never;
|
|
688
|
+
identity: undefined;
|
|
689
|
+
generated: undefined;
|
|
690
|
+
}, {}, {}>;
|
|
691
|
+
};
|
|
692
|
+
dialect: 'pg';
|
|
693
|
+
}>;
|
|
694
|
+
export declare const organizationCompanyProfileAgentPolicyEvents: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
695
|
+
name: "organization_company_profile_agent_policy_events";
|
|
696
|
+
schema: undefined;
|
|
697
|
+
columns: {
|
|
698
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
699
|
+
name: "id";
|
|
700
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
701
|
+
dataType: "string";
|
|
702
|
+
columnType: "PgUUID";
|
|
703
|
+
data: string;
|
|
704
|
+
driverParam: string;
|
|
705
|
+
notNull: true;
|
|
706
|
+
hasDefault: false;
|
|
707
|
+
isPrimaryKey: true;
|
|
708
|
+
isAutoincrement: false;
|
|
709
|
+
hasRuntimeDefault: false;
|
|
710
|
+
enumValues: undefined;
|
|
711
|
+
baseColumn: never;
|
|
712
|
+
identity: undefined;
|
|
713
|
+
generated: undefined;
|
|
714
|
+
}, {}, {}>;
|
|
715
|
+
accountId: import("drizzle-orm/pg-core").PgColumn<{
|
|
716
|
+
name: "account_id";
|
|
717
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
718
|
+
dataType: "string";
|
|
719
|
+
columnType: "PgUUID";
|
|
720
|
+
data: string;
|
|
721
|
+
driverParam: string;
|
|
722
|
+
notNull: true;
|
|
723
|
+
hasDefault: false;
|
|
724
|
+
isPrimaryKey: false;
|
|
725
|
+
isAutoincrement: false;
|
|
726
|
+
hasRuntimeDefault: false;
|
|
727
|
+
enumValues: undefined;
|
|
728
|
+
baseColumn: never;
|
|
729
|
+
identity: undefined;
|
|
730
|
+
generated: undefined;
|
|
731
|
+
}, {}, {}>;
|
|
732
|
+
actorMembershipId: import("drizzle-orm/pg-core").PgColumn<{
|
|
733
|
+
name: "actor_membership_id";
|
|
734
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
735
|
+
dataType: "string";
|
|
736
|
+
columnType: "PgUUID";
|
|
737
|
+
data: string;
|
|
738
|
+
driverParam: string;
|
|
739
|
+
notNull: true;
|
|
740
|
+
hasDefault: false;
|
|
741
|
+
isPrimaryKey: false;
|
|
742
|
+
isAutoincrement: false;
|
|
743
|
+
hasRuntimeDefault: false;
|
|
744
|
+
enumValues: undefined;
|
|
745
|
+
baseColumn: never;
|
|
746
|
+
identity: undefined;
|
|
747
|
+
generated: undefined;
|
|
748
|
+
}, {}, {}>;
|
|
749
|
+
requestedMode: import("drizzle-orm/pg-core").PgColumn<{
|
|
750
|
+
name: "requested_mode";
|
|
751
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
752
|
+
dataType: "string";
|
|
753
|
+
columnType: "PgText";
|
|
754
|
+
data: "automatic" | "off" | "suggest";
|
|
755
|
+
driverParam: string;
|
|
756
|
+
notNull: true;
|
|
757
|
+
hasDefault: false;
|
|
758
|
+
isPrimaryKey: false;
|
|
759
|
+
isAutoincrement: false;
|
|
760
|
+
hasRuntimeDefault: false;
|
|
761
|
+
enumValues: [string, ...string[]];
|
|
762
|
+
baseColumn: never;
|
|
763
|
+
identity: undefined;
|
|
764
|
+
generated: undefined;
|
|
765
|
+
}, {}, {
|
|
766
|
+
$type: "automatic" | "off" | "suggest";
|
|
767
|
+
}>;
|
|
768
|
+
expectedVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
769
|
+
name: "expected_version";
|
|
770
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
771
|
+
dataType: "number";
|
|
772
|
+
columnType: "PgBigInt53";
|
|
773
|
+
data: number;
|
|
774
|
+
driverParam: string | number;
|
|
775
|
+
notNull: true;
|
|
776
|
+
hasDefault: false;
|
|
777
|
+
isPrimaryKey: false;
|
|
778
|
+
isAutoincrement: false;
|
|
779
|
+
hasRuntimeDefault: false;
|
|
780
|
+
enumValues: undefined;
|
|
781
|
+
baseColumn: never;
|
|
782
|
+
identity: undefined;
|
|
783
|
+
generated: undefined;
|
|
784
|
+
}, {}, {}>;
|
|
785
|
+
resultMode: import("drizzle-orm/pg-core").PgColumn<{
|
|
786
|
+
name: "result_mode";
|
|
787
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
788
|
+
dataType: "string";
|
|
789
|
+
columnType: "PgText";
|
|
790
|
+
data: "automatic" | "off" | "suggest";
|
|
791
|
+
driverParam: string;
|
|
792
|
+
notNull: true;
|
|
793
|
+
hasDefault: false;
|
|
794
|
+
isPrimaryKey: false;
|
|
795
|
+
isAutoincrement: false;
|
|
796
|
+
hasRuntimeDefault: false;
|
|
797
|
+
enumValues: [string, ...string[]];
|
|
798
|
+
baseColumn: never;
|
|
799
|
+
identity: undefined;
|
|
800
|
+
generated: undefined;
|
|
801
|
+
}, {}, {
|
|
802
|
+
$type: "automatic" | "off" | "suggest";
|
|
803
|
+
}>;
|
|
804
|
+
resultVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
805
|
+
name: "result_version";
|
|
806
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
807
|
+
dataType: "number";
|
|
808
|
+
columnType: "PgBigInt53";
|
|
809
|
+
data: number;
|
|
810
|
+
driverParam: string | number;
|
|
811
|
+
notNull: true;
|
|
812
|
+
hasDefault: false;
|
|
813
|
+
isPrimaryKey: false;
|
|
814
|
+
isAutoincrement: false;
|
|
815
|
+
hasRuntimeDefault: false;
|
|
816
|
+
enumValues: undefined;
|
|
817
|
+
baseColumn: never;
|
|
818
|
+
identity: undefined;
|
|
819
|
+
generated: undefined;
|
|
820
|
+
}, {}, {}>;
|
|
821
|
+
resultUpdatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
822
|
+
name: "result_updated_at";
|
|
823
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
824
|
+
dataType: "date";
|
|
825
|
+
columnType: "PgTimestamp";
|
|
826
|
+
data: Date;
|
|
827
|
+
driverParam: string;
|
|
828
|
+
notNull: true;
|
|
829
|
+
hasDefault: false;
|
|
830
|
+
isPrimaryKey: false;
|
|
831
|
+
isAutoincrement: false;
|
|
832
|
+
hasRuntimeDefault: false;
|
|
833
|
+
enumValues: undefined;
|
|
834
|
+
baseColumn: never;
|
|
835
|
+
identity: undefined;
|
|
836
|
+
generated: undefined;
|
|
837
|
+
}, {}, {}>;
|
|
838
|
+
changed: import("drizzle-orm/pg-core").PgColumn<{
|
|
839
|
+
name: "changed";
|
|
840
|
+
tableName: "organization_company_profile_agent_policy_events";
|
|
841
|
+
dataType: "boolean";
|
|
842
|
+
columnType: "PgBoolean";
|
|
843
|
+
data: boolean;
|
|
844
|
+
driverParam: boolean;
|
|
845
|
+
notNull: true;
|
|
846
|
+
hasDefault: false;
|
|
847
|
+
isPrimaryKey: false;
|
|
848
|
+
isAutoincrement: false;
|
|
849
|
+
hasRuntimeDefault: false;
|
|
850
|
+
enumValues: undefined;
|
|
851
|
+
baseColumn: never;
|
|
852
|
+
identity: undefined;
|
|
853
|
+
generated: undefined;
|
|
854
|
+
}, {}, {}>;
|
|
855
|
+
};
|
|
856
|
+
dialect: 'pg';
|
|
857
|
+
}>;
|
|
600
858
|
export declare const companyProfileSnapshots: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
601
859
|
name: "company_profile_snapshots";
|
|
602
860
|
schema: undefined;
|
|
@@ -1038,6 +1296,42 @@ export declare const companyProfileAgentProposalReceipts: import("drizzle-orm/pg
|
|
|
1038
1296
|
identity: undefined;
|
|
1039
1297
|
generated: undefined;
|
|
1040
1298
|
}, {}, {}>;
|
|
1299
|
+
policyMode: import("drizzle-orm/pg-core").PgColumn<{
|
|
1300
|
+
name: "policy_mode";
|
|
1301
|
+
tableName: "company_profile_agent_proposal_receipts";
|
|
1302
|
+
dataType: "string";
|
|
1303
|
+
columnType: "PgText";
|
|
1304
|
+
data: "automatic" | "off" | "suggest";
|
|
1305
|
+
driverParam: string;
|
|
1306
|
+
notNull: true;
|
|
1307
|
+
hasDefault: false;
|
|
1308
|
+
isPrimaryKey: false;
|
|
1309
|
+
isAutoincrement: false;
|
|
1310
|
+
hasRuntimeDefault: false;
|
|
1311
|
+
enumValues: [string, ...string[]];
|
|
1312
|
+
baseColumn: never;
|
|
1313
|
+
identity: undefined;
|
|
1314
|
+
generated: undefined;
|
|
1315
|
+
}, {}, {
|
|
1316
|
+
$type: "automatic" | "off" | "suggest";
|
|
1317
|
+
}>;
|
|
1318
|
+
policyVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
1319
|
+
name: "policy_version";
|
|
1320
|
+
tableName: "company_profile_agent_proposal_receipts";
|
|
1321
|
+
dataType: "number";
|
|
1322
|
+
columnType: "PgBigInt53";
|
|
1323
|
+
data: number;
|
|
1324
|
+
driverParam: string | number;
|
|
1325
|
+
notNull: true;
|
|
1326
|
+
hasDefault: false;
|
|
1327
|
+
isPrimaryKey: false;
|
|
1328
|
+
isAutoincrement: false;
|
|
1329
|
+
hasRuntimeDefault: false;
|
|
1330
|
+
enumValues: undefined;
|
|
1331
|
+
baseColumn: never;
|
|
1332
|
+
identity: undefined;
|
|
1333
|
+
generated: undefined;
|
|
1334
|
+
}, {}, {}>;
|
|
1041
1335
|
reason: import("drizzle-orm/pg-core").PgColumn<{
|
|
1042
1336
|
name: "reason";
|
|
1043
1337
|
tableName: "company_profile_agent_proposal_receipts";
|
|
@@ -1413,3 +1707,282 @@ export declare const companyProfileAgentConfirmationReceipts: import("drizzle-or
|
|
|
1413
1707
|
};
|
|
1414
1708
|
dialect: 'pg';
|
|
1415
1709
|
}>;
|
|
1710
|
+
export declare const companyProfileAgentAutomaticActivationReceipts: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
1711
|
+
name: "company_profile_agent_automatic_activation_receipts";
|
|
1712
|
+
schema: undefined;
|
|
1713
|
+
columns: {
|
|
1714
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
1715
|
+
name: "id";
|
|
1716
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1717
|
+
dataType: "string";
|
|
1718
|
+
columnType: "PgUUID";
|
|
1719
|
+
data: string;
|
|
1720
|
+
driverParam: string;
|
|
1721
|
+
notNull: true;
|
|
1722
|
+
hasDefault: true;
|
|
1723
|
+
isPrimaryKey: true;
|
|
1724
|
+
isAutoincrement: false;
|
|
1725
|
+
hasRuntimeDefault: false;
|
|
1726
|
+
enumValues: undefined;
|
|
1727
|
+
baseColumn: never;
|
|
1728
|
+
identity: undefined;
|
|
1729
|
+
generated: undefined;
|
|
1730
|
+
}, {}, {}>;
|
|
1731
|
+
operationId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1732
|
+
name: "operation_id";
|
|
1733
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1734
|
+
dataType: "string";
|
|
1735
|
+
columnType: "PgUUID";
|
|
1736
|
+
data: string;
|
|
1737
|
+
driverParam: string;
|
|
1738
|
+
notNull: true;
|
|
1739
|
+
hasDefault: false;
|
|
1740
|
+
isPrimaryKey: false;
|
|
1741
|
+
isAutoincrement: false;
|
|
1742
|
+
hasRuntimeDefault: false;
|
|
1743
|
+
enumValues: undefined;
|
|
1744
|
+
baseColumn: never;
|
|
1745
|
+
identity: undefined;
|
|
1746
|
+
generated: undefined;
|
|
1747
|
+
}, {}, {}>;
|
|
1748
|
+
inputHash: import("drizzle-orm/pg-core").PgColumn<{
|
|
1749
|
+
name: "input_hash";
|
|
1750
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1751
|
+
dataType: "string";
|
|
1752
|
+
columnType: "PgText";
|
|
1753
|
+
data: string;
|
|
1754
|
+
driverParam: string;
|
|
1755
|
+
notNull: true;
|
|
1756
|
+
hasDefault: false;
|
|
1757
|
+
isPrimaryKey: false;
|
|
1758
|
+
isAutoincrement: false;
|
|
1759
|
+
hasRuntimeDefault: false;
|
|
1760
|
+
enumValues: [string, ...string[]];
|
|
1761
|
+
baseColumn: never;
|
|
1762
|
+
identity: undefined;
|
|
1763
|
+
generated: undefined;
|
|
1764
|
+
}, {}, {}>;
|
|
1765
|
+
accountId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1766
|
+
name: "account_id";
|
|
1767
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1768
|
+
dataType: "string";
|
|
1769
|
+
columnType: "PgUUID";
|
|
1770
|
+
data: string;
|
|
1771
|
+
driverParam: string;
|
|
1772
|
+
notNull: true;
|
|
1773
|
+
hasDefault: false;
|
|
1774
|
+
isPrimaryKey: false;
|
|
1775
|
+
isAutoincrement: false;
|
|
1776
|
+
hasRuntimeDefault: false;
|
|
1777
|
+
enumValues: undefined;
|
|
1778
|
+
baseColumn: never;
|
|
1779
|
+
identity: undefined;
|
|
1780
|
+
generated: undefined;
|
|
1781
|
+
}, {}, {}>;
|
|
1782
|
+
workspaceId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1783
|
+
name: "workspace_id";
|
|
1784
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1785
|
+
dataType: "string";
|
|
1786
|
+
columnType: "PgUUID";
|
|
1787
|
+
data: string;
|
|
1788
|
+
driverParam: string;
|
|
1789
|
+
notNull: true;
|
|
1790
|
+
hasDefault: false;
|
|
1791
|
+
isPrimaryKey: false;
|
|
1792
|
+
isAutoincrement: false;
|
|
1793
|
+
hasRuntimeDefault: false;
|
|
1794
|
+
enumValues: undefined;
|
|
1795
|
+
baseColumn: never;
|
|
1796
|
+
identity: undefined;
|
|
1797
|
+
generated: undefined;
|
|
1798
|
+
}, {}, {}>;
|
|
1799
|
+
sessionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1800
|
+
name: "session_id";
|
|
1801
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1802
|
+
dataType: "string";
|
|
1803
|
+
columnType: "PgUUID";
|
|
1804
|
+
data: string;
|
|
1805
|
+
driverParam: string;
|
|
1806
|
+
notNull: true;
|
|
1807
|
+
hasDefault: false;
|
|
1808
|
+
isPrimaryKey: false;
|
|
1809
|
+
isAutoincrement: false;
|
|
1810
|
+
hasRuntimeDefault: false;
|
|
1811
|
+
enumValues: undefined;
|
|
1812
|
+
baseColumn: never;
|
|
1813
|
+
identity: undefined;
|
|
1814
|
+
generated: undefined;
|
|
1815
|
+
}, {}, {}>;
|
|
1816
|
+
turnId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1817
|
+
name: "turn_id";
|
|
1818
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1819
|
+
dataType: "string";
|
|
1820
|
+
columnType: "PgUUID";
|
|
1821
|
+
data: string;
|
|
1822
|
+
driverParam: string;
|
|
1823
|
+
notNull: true;
|
|
1824
|
+
hasDefault: false;
|
|
1825
|
+
isPrimaryKey: false;
|
|
1826
|
+
isAutoincrement: false;
|
|
1827
|
+
hasRuntimeDefault: false;
|
|
1828
|
+
enumValues: undefined;
|
|
1829
|
+
baseColumn: never;
|
|
1830
|
+
identity: undefined;
|
|
1831
|
+
generated: undefined;
|
|
1832
|
+
}, {}, {}>;
|
|
1833
|
+
activationAttemptId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1834
|
+
name: "activation_attempt_id";
|
|
1835
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1836
|
+
dataType: "string";
|
|
1837
|
+
columnType: "PgUUID";
|
|
1838
|
+
data: string;
|
|
1839
|
+
driverParam: string;
|
|
1840
|
+
notNull: true;
|
|
1841
|
+
hasDefault: false;
|
|
1842
|
+
isPrimaryKey: false;
|
|
1843
|
+
isAutoincrement: false;
|
|
1844
|
+
hasRuntimeDefault: false;
|
|
1845
|
+
enumValues: undefined;
|
|
1846
|
+
baseColumn: never;
|
|
1847
|
+
identity: undefined;
|
|
1848
|
+
generated: undefined;
|
|
1849
|
+
}, {}, {}>;
|
|
1850
|
+
executionGeneration: import("drizzle-orm/pg-core").PgColumn<{
|
|
1851
|
+
name: "execution_generation";
|
|
1852
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1853
|
+
dataType: "number";
|
|
1854
|
+
columnType: "PgInteger";
|
|
1855
|
+
data: number;
|
|
1856
|
+
driverParam: string | number;
|
|
1857
|
+
notNull: true;
|
|
1858
|
+
hasDefault: false;
|
|
1859
|
+
isPrimaryKey: false;
|
|
1860
|
+
isAutoincrement: false;
|
|
1861
|
+
hasRuntimeDefault: false;
|
|
1862
|
+
enumValues: undefined;
|
|
1863
|
+
baseColumn: never;
|
|
1864
|
+
identity: undefined;
|
|
1865
|
+
generated: undefined;
|
|
1866
|
+
}, {}, {}>;
|
|
1867
|
+
proposalReceiptId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1868
|
+
name: "proposal_receipt_id";
|
|
1869
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1870
|
+
dataType: "string";
|
|
1871
|
+
columnType: "PgUUID";
|
|
1872
|
+
data: string;
|
|
1873
|
+
driverParam: string;
|
|
1874
|
+
notNull: true;
|
|
1875
|
+
hasDefault: false;
|
|
1876
|
+
isPrimaryKey: false;
|
|
1877
|
+
isAutoincrement: false;
|
|
1878
|
+
hasRuntimeDefault: false;
|
|
1879
|
+
enumValues: undefined;
|
|
1880
|
+
baseColumn: never;
|
|
1881
|
+
identity: undefined;
|
|
1882
|
+
generated: undefined;
|
|
1883
|
+
}, {}, {}>;
|
|
1884
|
+
proposalRevisionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1885
|
+
name: "proposal_revision_id";
|
|
1886
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1887
|
+
dataType: "string";
|
|
1888
|
+
columnType: "PgUUID";
|
|
1889
|
+
data: string;
|
|
1890
|
+
driverParam: string;
|
|
1891
|
+
notNull: true;
|
|
1892
|
+
hasDefault: false;
|
|
1893
|
+
isPrimaryKey: false;
|
|
1894
|
+
isAutoincrement: false;
|
|
1895
|
+
hasRuntimeDefault: false;
|
|
1896
|
+
enumValues: undefined;
|
|
1897
|
+
baseColumn: never;
|
|
1898
|
+
identity: undefined;
|
|
1899
|
+
generated: undefined;
|
|
1900
|
+
}, {}, {}>;
|
|
1901
|
+
initiatingHumanSubjectId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1902
|
+
name: "initiating_human_subject_id";
|
|
1903
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1904
|
+
dataType: "string";
|
|
1905
|
+
columnType: "PgText";
|
|
1906
|
+
data: string;
|
|
1907
|
+
driverParam: string;
|
|
1908
|
+
notNull: true;
|
|
1909
|
+
hasDefault: false;
|
|
1910
|
+
isPrimaryKey: false;
|
|
1911
|
+
isAutoincrement: false;
|
|
1912
|
+
hasRuntimeDefault: false;
|
|
1913
|
+
enumValues: [string, ...string[]];
|
|
1914
|
+
baseColumn: never;
|
|
1915
|
+
identity: undefined;
|
|
1916
|
+
generated: undefined;
|
|
1917
|
+
}, {}, {}>;
|
|
1918
|
+
initiatingMembershipId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1919
|
+
name: "initiating_membership_id";
|
|
1920
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1921
|
+
dataType: "string";
|
|
1922
|
+
columnType: "PgUUID";
|
|
1923
|
+
data: string;
|
|
1924
|
+
driverParam: string;
|
|
1925
|
+
notNull: true;
|
|
1926
|
+
hasDefault: false;
|
|
1927
|
+
isPrimaryKey: false;
|
|
1928
|
+
isAutoincrement: false;
|
|
1929
|
+
hasRuntimeDefault: false;
|
|
1930
|
+
enumValues: undefined;
|
|
1931
|
+
baseColumn: never;
|
|
1932
|
+
identity: undefined;
|
|
1933
|
+
generated: undefined;
|
|
1934
|
+
}, {}, {}>;
|
|
1935
|
+
policyVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
1936
|
+
name: "policy_version";
|
|
1937
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1938
|
+
dataType: "number";
|
|
1939
|
+
columnType: "PgBigInt53";
|
|
1940
|
+
data: number;
|
|
1941
|
+
driverParam: string | number;
|
|
1942
|
+
notNull: true;
|
|
1943
|
+
hasDefault: false;
|
|
1944
|
+
isPrimaryKey: false;
|
|
1945
|
+
isAutoincrement: false;
|
|
1946
|
+
hasRuntimeDefault: false;
|
|
1947
|
+
enumValues: undefined;
|
|
1948
|
+
baseColumn: never;
|
|
1949
|
+
identity: undefined;
|
|
1950
|
+
generated: undefined;
|
|
1951
|
+
}, {}, {}>;
|
|
1952
|
+
activationEventId: import("drizzle-orm/pg-core").PgColumn<{
|
|
1953
|
+
name: "activation_event_id";
|
|
1954
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1955
|
+
dataType: "string";
|
|
1956
|
+
columnType: "PgUUID";
|
|
1957
|
+
data: string;
|
|
1958
|
+
driverParam: string;
|
|
1959
|
+
notNull: true;
|
|
1960
|
+
hasDefault: false;
|
|
1961
|
+
isPrimaryKey: false;
|
|
1962
|
+
isAutoincrement: false;
|
|
1963
|
+
hasRuntimeDefault: false;
|
|
1964
|
+
enumValues: undefined;
|
|
1965
|
+
baseColumn: never;
|
|
1966
|
+
identity: undefined;
|
|
1967
|
+
generated: undefined;
|
|
1968
|
+
}, {}, {}>;
|
|
1969
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
1970
|
+
name: "created_at";
|
|
1971
|
+
tableName: "company_profile_agent_automatic_activation_receipts";
|
|
1972
|
+
dataType: "date";
|
|
1973
|
+
columnType: "PgTimestamp";
|
|
1974
|
+
data: Date;
|
|
1975
|
+
driverParam: string;
|
|
1976
|
+
notNull: true;
|
|
1977
|
+
hasDefault: true;
|
|
1978
|
+
isPrimaryKey: false;
|
|
1979
|
+
isAutoincrement: false;
|
|
1980
|
+
hasRuntimeDefault: false;
|
|
1981
|
+
enumValues: undefined;
|
|
1982
|
+
baseColumn: never;
|
|
1983
|
+
identity: undefined;
|
|
1984
|
+
generated: undefined;
|
|
1985
|
+
}, {}, {}>;
|
|
1986
|
+
};
|
|
1987
|
+
dialect: 'pg';
|
|
1988
|
+
}>;
|
|
@@ -8,9 +8,9 @@ import {
|
|
|
8
8
|
PostgresEditableArtifactStore,
|
|
9
9
|
listEditableArtifactIdsForSession,
|
|
10
10
|
touchEditableArtifactSessionLink
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-US4IS6IV.js";
|
|
12
|
+
import "./chunk-F6PBS6WE.js";
|
|
13
|
+
import "./chunk-O56DM5GZ.js";
|
|
14
14
|
import "./chunk-PZ5AY32C.js";
|
|
15
15
|
export {
|
|
16
16
|
EDITABLE_ARTIFACT_INTENT_MAX_BYTES,
|