@lunora/shard-engine 1.0.0-alpha.49 → 1.0.0-alpha.50
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/conformance/index.mjs +1 -1
- package/dist/index.d.mts +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.mjs +1 -1
- package/dist/packem_shared/CURSOR_PREFIX-D4DUGY5z.mjs +1 -0
- package/dist/packem_shared/{DEFAULT_MAX_RELATION_KEYS-Bl7H97aj.mjs → DEFAULT_MAX_RELATION_KEYS-B3krmwZL.mjs} +1 -1
- package/dist/packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-DSA6mzyx.mjs +7 -0
- package/dist/packem_shared/NotUniqueError-Cxbfyre8.mjs +1 -0
- package/dist/packem_shared/{applyOnDelete-82J3ehcF.mjs → applyOnDelete-9f4D4g1z.mjs} +1 -1
- package/dist/packem_shared/{backfillAggregateIndexes-BtC-XM_S.mjs → backfillAggregateIndexes-BCLXdiIS.mjs} +1 -1
- package/dist/packem_shared/{buildShapeDiff-Bmn0jPTM.mjs → buildShapeDiff-Ds5Q0GJ_.mjs} +1 -1
- package/dist/packem_shared/{compileWhereSql-DMH7Qtzd.mjs → compileWhereSql-CCvDjnfy.mjs} +1 -1
- package/dist/packem_shared/{computeRankPage-kpaDsuAs.mjs → computeRankPage-BxtyiLn9.mjs} +1 -1
- package/dist/packem_shared/{createCompanionSync-Bi6IG6fu.mjs → createCompanionSync-CJo2Uiq7.mjs} +1 -1
- package/dist/packem_shared/createSystemReader-DcDLFfC-.mjs +1 -0
- package/dist/packem_shared/{ctx-db-companions-DKBBb0u8.mjs → ctx-db-companions-CN8hWTF_.mjs} +1 -1
- package/dist/packem_shared/{defineEngineContractSuite-DzZCsNfm.mjs → defineEngineContractSuite-zN1RA5V-.mjs} +1 -1
- package/dist/packem_shared/{isSoftDeleted-BhchsmqX.mjs → isSoftDeleted-D6x6VWds.mjs} +1 -1
- package/dist/packem_shared/{materializeExternalRows-DZnPHEJw.mjs → materializeExternalRows-DGjC_8Hc.mjs} +1 -1
- package/dist/packem_shared/{runShardMigrations-PZnc7KFE.mjs → runShardMigrations-D6rTX7Bn.mjs} +1 -1
- package/dist/packem_shared/{selectShapeMembers-CKQv8nwD.mjs → selectShapeMembers-Dva-Z9VQ.mjs} +1 -1
- package/dist/packem_shared/where-sql-D6MSVjdL.mjs +1 -0
- package/package.json +1 -1
- package/dist/packem_shared/CURSOR_PREFIX-C0HEpLAN.mjs +0 -1
- package/dist/packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-BicDuO0a.mjs +0 -7
- package/dist/packem_shared/NotUniqueError-Dwab63fS.mjs +0 -1
- package/dist/packem_shared/createSystemReader-BtYeSMDb.mjs +0 -1
- package/dist/packem_shared/where-sql-DxCbgqDJ.mjs +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
import{defineEngineContractSuite as t}from"../packem_shared/defineEngineContractSuite-
|
|
1
|
+
import{defineEngineContractSuite as t}from"../packem_shared/defineEngineContractSuite-zN1RA5V-.mjs";export{t as defineEngineContractSuite};
|
package/dist/index.d.mts
CHANGED
|
@@ -27,10 +27,12 @@ interface ScheduledFunctionDoc {
|
|
|
27
27
|
args: Record<string, unknown>;
|
|
28
28
|
attempts?: number;
|
|
29
29
|
enqueuedAt: number;
|
|
30
|
-
functionPath
|
|
30
|
+
functionPath?: string;
|
|
31
31
|
id: string;
|
|
32
|
+
pool?: string;
|
|
32
33
|
scheduledFor: number;
|
|
33
34
|
shardKey?: string;
|
|
35
|
+
workflow?: string;
|
|
34
36
|
}
|
|
35
37
|
interface StorageMetadata {
|
|
36
38
|
contentType?: string;
|
|
@@ -276,6 +278,7 @@ interface QueryPage {
|
|
|
276
278
|
interface OrderKey {
|
|
277
279
|
direction: SortDirection;
|
|
278
280
|
field: string;
|
|
281
|
+
nullable: boolean;
|
|
279
282
|
}
|
|
280
283
|
interface RestrictableQueryOptions {
|
|
281
284
|
baseWhere?: WhereInput;
|
|
@@ -729,7 +732,7 @@ declare const readClientWatermark: (sql: SqlExec, identity: string, clientId: st
|
|
|
729
732
|
declare const advanceClientWatermark: (sql: SqlExec, identity: string, clientId: string, mutationId: number) => void;
|
|
730
733
|
declare const GLOBAL_SHAPE_SNAPSHOT_TABLE = "__global_shape_snapshot";
|
|
731
734
|
declare const migrateGlobalShapeSnapshot: (sql: SqlExec) => void;
|
|
732
|
-
declare const readGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => Map<string, string
|
|
735
|
+
declare const readGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => Map<string, string> | undefined;
|
|
733
736
|
declare const writeGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string, snapshot: Map<string, string>) => void;
|
|
734
737
|
declare const deleteGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => void;
|
|
735
738
|
declare const deleteGlobalShapeSnapshotsForConnection: (sql: SqlExec, connectionId: string) => void;
|
|
@@ -1760,7 +1763,7 @@ declare const armRestore: (storage: PitrStorage, args: PitrRestoreArgs) => Promi
|
|
|
1760
1763
|
declare const tiebreakDirectionFor: (keys: ReadonlyArray<{
|
|
1761
1764
|
direction?: string;
|
|
1762
1765
|
}>) => SortDirection;
|
|
1763
|
-
declare const normalizeOrderKeys: (orderBy: OrderByInput[] | undefined) => OrderKey[];
|
|
1766
|
+
declare const normalizeOrderKeys: (orderBy: OrderByInput[] | undefined, shape?: Record<string, ValidatorLike>) => OrderKey[];
|
|
1764
1767
|
declare const CURSOR_PREFIX = "~2";
|
|
1765
1768
|
declare const encodeCursor: (record: Record<string, unknown>, keys: OrderKey[]) => string;
|
|
1766
1769
|
declare const decodeCursor: (cursor: string) => unknown[];
|
package/dist/index.d.ts
CHANGED
|
@@ -27,10 +27,12 @@ interface ScheduledFunctionDoc {
|
|
|
27
27
|
args: Record<string, unknown>;
|
|
28
28
|
attempts?: number;
|
|
29
29
|
enqueuedAt: number;
|
|
30
|
-
functionPath
|
|
30
|
+
functionPath?: string;
|
|
31
31
|
id: string;
|
|
32
|
+
pool?: string;
|
|
32
33
|
scheduledFor: number;
|
|
33
34
|
shardKey?: string;
|
|
35
|
+
workflow?: string;
|
|
34
36
|
}
|
|
35
37
|
interface StorageMetadata {
|
|
36
38
|
contentType?: string;
|
|
@@ -276,6 +278,7 @@ interface QueryPage {
|
|
|
276
278
|
interface OrderKey {
|
|
277
279
|
direction: SortDirection;
|
|
278
280
|
field: string;
|
|
281
|
+
nullable: boolean;
|
|
279
282
|
}
|
|
280
283
|
interface RestrictableQueryOptions {
|
|
281
284
|
baseWhere?: WhereInput;
|
|
@@ -729,7 +732,7 @@ declare const readClientWatermark: (sql: SqlExec, identity: string, clientId: st
|
|
|
729
732
|
declare const advanceClientWatermark: (sql: SqlExec, identity: string, clientId: string, mutationId: number) => void;
|
|
730
733
|
declare const GLOBAL_SHAPE_SNAPSHOT_TABLE = "__global_shape_snapshot";
|
|
731
734
|
declare const migrateGlobalShapeSnapshot: (sql: SqlExec) => void;
|
|
732
|
-
declare const readGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => Map<string, string
|
|
735
|
+
declare const readGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => Map<string, string> | undefined;
|
|
733
736
|
declare const writeGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string, snapshot: Map<string, string>) => void;
|
|
734
737
|
declare const deleteGlobalShapeSnapshot: (sql: SqlExec, connectionId: string, subId: string) => void;
|
|
735
738
|
declare const deleteGlobalShapeSnapshotsForConnection: (sql: SqlExec, connectionId: string) => void;
|
|
@@ -1760,7 +1763,7 @@ declare const armRestore: (storage: PitrStorage, args: PitrRestoreArgs) => Promi
|
|
|
1760
1763
|
declare const tiebreakDirectionFor: (keys: ReadonlyArray<{
|
|
1761
1764
|
direction?: string;
|
|
1762
1765
|
}>) => SortDirection;
|
|
1763
|
-
declare const normalizeOrderKeys: (orderBy: OrderByInput[] | undefined) => OrderKey[];
|
|
1766
|
+
declare const normalizeOrderKeys: (orderBy: OrderByInput[] | undefined, shape?: Record<string, ValidatorLike>) => OrderKey[];
|
|
1764
1767
|
declare const CURSOR_PREFIX = "~2";
|
|
1765
1768
|
declare const encodeCursor: (record: Record<string, unknown>, keys: OrderKey[]) => string;
|
|
1766
1769
|
declare const decodeCursor: (cursor: string) => unknown[];
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{exportShardRows as o,importShardRows as a,parseExportShardArgs as t,parseImportShardArgs as n,selectExportTables as i,validateImportRow as s}from"./packem_shared/exportShardRows-CegEECNc.mjs";import{AGGREGATE_SQL_FUNCTION as c,aggregateSqlFunction as m,matchesStaticWhere as p,normalizeCountArgument as d,throwingScheduler as S}from"./packem_shared/AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as f,coerceAggregateNumber as h,encodeAggregateKey as x,foldAggregateTally as C,readAggregateValue as T}from"./packem_shared/aggregateTableName-CGi8gxeK.mjs";import{CountRlsUnsupportedError as R,mergeWhere as A,planAggregateLookup as g,selectIndexForAggregate as _,selectIndexForCount as I,selectIndexForGroupBy as b}from"./packem_shared/CountRlsUnsupportedError-Bdfupt3g.mjs";import{AUDIT_LOG_TABLE as P,appendAuditEntry as M,ensureAuditTable as D,readAuditLog as N}from"./packem_shared/AUDIT_LOG_TABLE-ONxmEAIz.mjs";import{NotUniqueError as k,assertNoExplicitUndefined as y,assertValidClientId as F,createShardCtxDb as B,normalizeIdStructurally as G}from"./packem_shared/NotUniqueError-Dwab63fS.mjs";import{backfillAggregateIndexes as w,backfillRankIndexes as q,backfillSearchIndexes as v,backfillSearchIndexesForTable as K}from"./packem_shared/backfillAggregateIndexes-BtC-XM_S.mjs";import{CDC_LOG_TABLE as X,CDC_LOG_TABLE_SEQ_INDEX as H,CDC_META_TABLE as z,appendCdcChange as V,applyCdcChanges as Q,bumpCdcEpoch as j,cdcCanVouchFor as Y,cdcSeqLeavingRows as J,cdcTouchesTables as Z,cdcTrimmedError as $,compactCdcDocs as ee,cursorBelowRetainedFloor as re,migrateCdcLog as oe,migrateCdcMeta as ae,minCdcReplayableSeq as te,minCdcSeq as ne,readCdcChangeKeys as ie,readCdcChanges as se,readCdcCursor as le,readCdcEpoch as ce,trimCdcChanges as me}from"./packem_shared/CDC_LOG_TABLE-gl0FuepJ.mjs";import{archiveCdcSegment as de,readArchivedCdcChanges as Se,readCdcArchivedThrough as ue,writeCdcArchivedThrough as fe}from"./packem_shared/archiveCdcSegment-DU4uzDFQ.mjs";import{CLIENT_WATERMARK_TABLE as xe,advanceClientWatermark as Ce,migrateClientWatermark as Te,readClientWatermark as Ee}from"./packem_shared/CLIENT_WATERMARK_TABLE-CRnrAnJ2.mjs";import{COMMIT_SEQ_FIELD as Ae,COMMIT_SEQ_TABLE as ge,allocateCommitSeq as _e,migrateCommitSeq as Ie,readCommitSeq as be}from"./packem_shared/COMMIT_SEQ_FIELD-BUdOMG5y.mjs";import{c as Pe}from"./packem_shared/ctx-db-companions-DKBBb0u8.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as De,deleteGlobalShapeSnapshot as Ne,deleteGlobalShapeSnapshotsForConnection as Oe,migrateGlobalShapeSnapshot as ke,readGlobalShapeSnapshot as ye,writeGlobalShapeSnapshot as Fe}from"./packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-BicDuO0a.mjs";import{IDEMPOTENCY_TABLE as Ge,migrateIdempotency as Ue,readIdempotent as we,trimIdempotent as qe,writeIdempotent as ve}from"./packem_shared/IDEMPOTENCY_TABLE-DOpm_oMF.mjs";import{clearMemoryTables as We,isMemoryTable as Xe,memoryTableNames as He}from"./packem_shared/clearMemoryTables-BGbmag2i.mjs";import{computeRankPage as Ve,resolveRankSeekTuple as Qe}from"./packem_shared/computeRankPage-kpaDsuAs.mjs";import{SEARCH_STATE_TABLE as Ye,migrateSearchState as Je,readSearchBackfillState as Ze,writeSearchBackfillState as $e}from"./packem_shared/SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{SHAPE_POKE_CURSOR_TABLE as rr,deleteShapePokeCursor as or,deleteShapePokeCursorsForConnection as ar,migrateShapePokeCursor as tr,minShapePokeCursor as nr,readShapePokeCursor as ir,writeShapePokeCursor as sr,writeShapePokeCursors as lr}from"./packem_shared/SHAPE_POKE_CURSOR_TABLE-ByJVDHds.mjs";import{selectShapeMembers as mr,selectShapeRows as pr}from"./packem_shared/selectShapeMembers-CKQv8nwD.mjs";import{DATA_MIGRATION_STATE_TABLE as Sr,readMigrationStatus as ur,runDataMigration as fr}from"./packem_shared/DATA_MIGRATION_STATE_TABLE-Cp6pbyAp.mjs";import{SCAN_DEP as xr,createDependencyTracker as Cr,depKey as Tr,tableFromDepKey as Er}from"./packem_shared/SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as Ar,runSql as gr}from"./packem_shared/runDrizzle-2ULFQR_k.mjs";import{A as Ir,a as br,b as Lr,D as Pr,c as Mr,d as Dr,g as Nr,i as Or,j as kr,e as yr,q as Fr,f as Br,r as Gr,t as Ur,h as wr}from"./packem_shared/do-sql-bkXQEBl8.mjs";import{param as vr,renderSql as Kr,sqliteInList as Wr,unionAll as Xr}from"./packem_shared/param-DlozcSQu.mjs";import{appendStreamChunk as zr,claimStreamRun as Vr,deleteStreamRun as Qr,finishStreamRun as jr,migrateDurableStreams as Yr,readStreamChunks as Jr,readStreamRun as Zr,trimStreamRuns as $r}from"./packem_shared/appendStreamChunk-8eH4HB1Q.mjs";import{DurableStreamRunner as ro,MAX_DURABLE_STREAM_BYTES as oo,MAX_DURABLE_STREAM_CHUNKS as ao,decideDurableAttach as to}from"./packem_shared/DurableStreamRunner-CWqdczw1.mjs";import{envOptionalPositiveInt as io,envPositiveInt as so}from"./packem_shared/envOptionalPositiveInt-D2pY-c64.mjs";import{diffExternalSource as co}from"./packem_shared/diffExternalSource-DgDJhslq.mjs";import{liftSourceId as po,normalizeSourceDocument as So,normalizeSourceValue as uo}from"./packem_shared/liftSourceId-CA3ENhXj.mjs";import{materializeExternalRows as ho,materializeExternalRowsIncremental as xo,readExternalSourceBaseline as Co,runExternalSourceTick as To}from"./packem_shared/materializeExternalRows-DZnPHEJw.mjs";import{isSoftDeleted as Ro,isSourceDue as Ao,pullExternalSourceIncrementalTick as go,pullExternalSourceTick as _o}from"./packem_shared/isSoftDeleted-BhchsmqX.mjs";import{GEO_DEFAULT_PRECISION as bo,boundingBoxCenter as Lo,boundingBoxGeohashes as Po,coveringGeohashes as Mo,encodeGeohash as Do,haversineMeters as No,pointInBoundingBox as Oo}from"./packem_shared/GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{default as yo}from"./packem_shared/GlobalPollTick-BNK4o-XT.mjs";import{ADMIN_FUNCTIONS as Bo,ADMIN_FUNCTION_PREFIX as Go,DEFAULT_FANOUT_TOPIC_LIMIT as Uo,FLAGS_FUNCTION_PREFIX as wo,MAX_PAGE_SIZE as qo,RELATION_FUNCTION_PREFIX as vo,createFanoutCounters as Ko,createGlobalPollCounters as Wo,createShapeProbeCounters as Xo,facetColumn as Ho,findStorageReferences as zo,listTables as Vo,readTablePage as Qo,recordFanoutPass as jo,recordGlobalPollPass as Yo,recordShapeProbePass as Jo,selectMatchingIds as Zo,summarizeFanoutTopics as $o,summarizeSubscriptions as ea}from"./packem_shared/ADMIN_FUNCTIONS-oJ7IyZP6.mjs";import{MAIL_RETENTION as oa,MAIL_TABLE as aa,clearCapturedMail as ta,ensureMailTable as na,readCapturedMail as ia,recordCapturedMail as sa}from"./packem_shared/MAIL_RETENTION-DGAQTHHs.mjs";import{NotFoundError as ca}from"./packem_shared/NotFoundError-BhF7FeFr.mjs";import{armRestore as pa,readBookmark as da}from"./packem_shared/armRestore-Bu1_8SUa.mjs";import{CURSOR_PREFIX as ua,applySelect as fa,buildSeekBeforeWhere as ha,buildSeekWhere as xa,decodeCursor as Ca,encodeCursor as Ta,normalizeOrderKeys as Ea,softDeleteScope as Ra,tiebreakDirectionFor as Aa}from"./packem_shared/CURSOR_PREFIX-C0HEpLAN.mjs";import{QUEUE_TABLE as _a,clearQueueMessages as Ia,isLossyBody as ba,readQueueMessageById as La,readQueueMessages as Pa,recordQueueMessages as Ma}from"./packem_shared/QUEUE_TABLE-s7QJZvBz.mjs";import{RANK_TIEBREAK as Na,encodePartitionKey as Oa,matchesRankStaticWhere as ka,rankKeyFromDoc as ya,rankTableName as Fa,resolveRankPartition as Ba,sortColumnName as Ga}from"./packem_shared/RANK_TIEBREAK-D157XEqw.mjs";import{ReactiveCache as wa,reactiveCacheKey as qa}from"./packem_shared/ReactiveCache-BngdZxr9.mjs";import{REACTOR_STATE_TABLE as Ka,listReactorStates as Wa,migrateReactorState as Xa,reactorNeedsRun as Ha,readReactorState as za,writeReactorState as Va}from"./packem_shared/REACTOR_STATE_TABLE-QPRFyxMS.mjs";import{UNVOUCHABLE_DEP as ja,createReadFootprint as Ya,markUnvouchableReads as Ja}from"./packem_shared/UNVOUCHABLE_DEP-C68htACn.mjs";import{buildIndexRange as $a,indexKeysForRow as et,keysTouchRanges as rt}from"./packem_shared/buildIndexRange-CBKQmHSS.mjs";import{DEFAULT_MAX_RELATION_KEYS as at,assertFlatPredicate as tt,assertShapeShardable as nt,containsRelationPredicate as it,isRelationPredicate as st,resolveRelationPredicates as lt}from"./packem_shared/DEFAULT_MAX_RELATION_KEYS-Bl7H97aj.mjs";import{applyOnDelete as mt,distinctValues as pt,fanOutScalarCounts as dt,relationHooks as St,resolveWith as ut,runRowValidators as ft}from"./packem_shared/applyOnDelete-82J3ehcF.mjs";import{DEFAULT_PROMOTION_THRESHOLDS as xt,clampPromotionThresholds as Ct,nextPromotionState as Tt,relayCountFor as Et,shapeRoutingKey as Rt}from"./packem_shared/DEFAULT_PROMOTION_THRESHOLDS-DpUu_mpH.mjs";import{DEFAULT_MAX_RELAYS as gt,OwnerRelay as _t,RelayMember as It,createRelayLink as bt}from"./packem_shared/DEFAULT_MAX_RELAYS-Bjx0HDbs.mjs";import{createReplicaLink as Pt,gateReplicaDispatch as Mt,handleReplicaControl as Dt}from"./packem_shared/createReplicaLink-DujqFlHs.mjs";import{buildReprojectionMigration as Ot,countLegacyRows as kt,reprojectableFields as yt,reprojectionTables as Ft}from"./packem_shared/buildReprojectionMigration-CR2RSgJd.mjs";import{RLS_UNWRAP_SYMBOL as Gt,RlsRequiredError as Ut,guardWriter as wt}from"./packem_shared/RLS_UNWRAP_SYMBOL-BWloGsd3.mjs";import{SCHEMA_HISTORY_MAX_VERSIONS as vt,readSchemaHistory as Kt,readSchemaVersion as Wt,recordSchemaVersion as Xt}from"./packem_shared/SCHEMA_HISTORY_MAX_VERSIONS-BluIj2s-.mjs";import{serializeSqlValue as zt}from"./packem_shared/serializeSqlValue-DbI1VQYM.mjs";import{buildSettings as Qt,isDevEnvironment as jt}from"./packem_shared/buildSettings-B4igo4rJ.mjs";import{buildShapeDiff as Jt}from"./packem_shared/buildShapeDiff-Bmn0jPTM.mjs";import{ShapeDiffCache as $t,createShapeDiffCache as en,globalShapeReadKey as rn}from"./packem_shared/ShapeDiffCache-CLm5XXd1.mjs";import{buildPokeFrames as an,diffGlobalMembership as tn,encodeRowsPatch as nn,projectColumns as sn}from"./packem_shared/buildPokeFrames-C8km3IhJ.mjs";import{ShardRunner as cn}from"./packem_shared/ShardRunner-C9p5DVOx.mjs";import{runSocketPool as pn}from"./packem_shared/runSocketPool-CZJ2X9cF.mjs";import{MAX_SQL_ROWS as Sn,assertReadonly as un,lintReadonlySql as fn,runReadonlySql as hn}from"./packem_shared/MAX_SQL_ROWS-gsiUV0Eo.mjs";import{awaitWsDrain as Cn,subscriptionFrames as Tn,subscriptionListDeltas as En,trySendFrame as Rn}from"./packem_shared/awaitWsDrain-CjWMVZOG.mjs";import{mergeChangedKeys as gn,recordChangedKeys as _n,writeTouchesMemo as In}from"./packem_shared/mergeChangedKeys-D1T-TPUb.mjs";import{createSystemReader as Ln}from"./packem_shared/createSystemReader-BtYeSMDb.mjs";import{ConflictError as Mn}from"./packem_shared/ConflictError-C8GtJmjS.mjs";import{DEFAULT_TRANSACTION_LIMITS as Nn,TransactionHeadroomTracker as On}from"./packem_shared/DEFAULT_TRANSACTION_LIMITS-Bcoi7Bvf.mjs";import{hasTrigger as yn,runTriggers as Fn}from"./packem_shared/hasTrigger-CjlwI4le.mjs";import{selectExpiredIds as Gn}from"./packem_shared/selectExpiredIds-D784Mqvh.mjs";import{c as wn,l as qn}from"./packem_shared/where-sql-DxCbgqDJ.mjs";import{RELATION_EXISTS_KEY as Kn}from"./packem_shared/RELATION_EXISTS_KEY-CFUhnZSZ.mjs";import{REPROJECTION_MIGRATION_PREFIX as Xn,reprojectionMigrationId as Hn}from"./packem_shared/REPROJECTION_MIGRATION_PREFIX-Czcb6_mO.mjs";import{quoteIdentifier as Vn}from"./packem_shared/quoteIdentifier-CObIFRhb.mjs";import{runShardMigrations as jn}from"./packem_shared/runShardMigrations-PZnc7KFE.mjs";import{stableStringify as Jn}from"./packem_shared/stableStringify-DibjylKD.mjs";import{stableWireKey as $n}from"./packem_shared/stableWireKey-9bjKL5Gy.mjs";export{Bo as ADMIN_FUNCTIONS,Go as ADMIN_FUNCTION_PREFIX,c as AGGREGATE_SQL_FUNCTION,Ir as AGG_COUNT,br as AGG_KEY,Lr as AGG_VALUE,P as AUDIT_LOG_TABLE,X as CDC_LOG_TABLE,H as CDC_LOG_TABLE_SEQ_INDEX,z as CDC_META_TABLE,xe as CLIENT_WATERMARK_TABLE,Ae as COMMIT_SEQ_FIELD,ge as COMMIT_SEQ_TABLE,ua as CURSOR_PREFIX,Mn as ConflictError,R as CountRlsUnsupportedError,Sr as DATA_MIGRATION_STATE_TABLE,Uo as DEFAULT_FANOUT_TOPIC_LIMIT,at as DEFAULT_MAX_RELATION_KEYS,gt as DEFAULT_MAX_RELAYS,xt as DEFAULT_PROMOTION_THRESHOLDS,Nn as DEFAULT_TRANSACTION_LIMITS,Pr as DOC_COLUMN,ro as DurableStreamRunner,wo as FLAGS_FUNCTION_PREFIX,bo as GEO_DEFAULT_PRECISION,De as GLOBAL_SHAPE_SNAPSHOT_TABLE,yo as GlobalPollTick,Ge as IDEMPOTENCY_TABLE,oa as MAIL_RETENTION,aa as MAIL_TABLE,oo as MAX_DURABLE_STREAM_BYTES,ao as MAX_DURABLE_STREAM_CHUNKS,qo as MAX_PAGE_SIZE,Sn as MAX_SQL_ROWS,ca as NotFoundError,k as NotUniqueError,_t as OwnerRelay,_a as QUEUE_TABLE,Na as RANK_TIEBREAK,Ka as REACTOR_STATE_TABLE,Kn as RELATION_EXISTS_KEY,vo as RELATION_FUNCTION_PREFIX,Xn as REPROJECTION_MIGRATION_PREFIX,Gt as RLS_UNWRAP_SYMBOL,wa as ReactiveCache,It as RelayMember,Ut as RlsRequiredError,xr as SCAN_DEP,vt as SCHEMA_HISTORY_MAX_VERSIONS,Ye as SEARCH_STATE_TABLE,rr as SHAPE_POKE_CURSOR_TABLE,$t as ShapeDiffCache,cn as ShardRunner,On as TransactionHeadroomTracker,ja as UNVOUCHABLE_DEP,Ce as advanceClientWatermark,Mr as aggUpsertSql,m as aggregateSqlFunction,f as aggregateTableName,_e as allocateCommitSeq,M as appendAuditEntry,V as appendCdcChange,zr as appendStreamChunk,Q as applyCdcChanges,mt as applyOnDelete,fa as applySelect,de as archiveCdcSegment,pa as armRestore,tt as assertFlatPredicate,y as assertNoExplicitUndefined,un as assertReadonly,nt as assertShapeShardable,F as assertValidClientId,Cn as awaitWsDrain,w as backfillAggregateIndexes,q as backfillRankIndexes,v as backfillSearchIndexes,K as backfillSearchIndexesForTable,Lo as boundingBoxCenter,Po as boundingBoxGeohashes,$a as buildIndexRange,an as buildPokeFrames,Ot as buildReprojectionMigration,ha as buildSeekBeforeWhere,xa as buildSeekWhere,Qt as buildSettings,Jt as buildShapeDiff,j as bumpCdcEpoch,Y as cdcCanVouchFor,J as cdcSeqLeavingRows,Z as cdcTouchesTables,$ as cdcTrimmedError,Vr as claimStreamRun,Ct as clampPromotionThresholds,ta as clearCapturedMail,We as clearMemoryTables,Ia as clearQueueMessages,h as coerceAggregateNumber,ee as compactCdcDocs,wn as compileWhereSql,Ve as computeRankPage,it as containsRelationPredicate,kt as countLegacyRows,Mo as coveringGeohashes,Pe as createCompanionSync,Cr as createDependencyTracker,Ko as createFanoutCounters,Wo as createGlobalPollCounters,Dr as createIndexSql,Ya as createReadFootprint,bt as createRelayLink,Pt as createReplicaLink,en as createShapeDiffCache,Xo as createShapeProbeCounters,B as createShardCtxDb,Ln as createSystemReader,re as cursorBelowRetainedFloor,to as decideDurableAttach,Ca as decodeCursor,Ne as deleteGlobalShapeSnapshot,Oe as deleteGlobalShapeSnapshotsForConnection,or as deleteShapePokeCursor,ar as deleteShapePokeCursorsForConnection,Qr as deleteStreamRun,Tr as depKey,co as diffExternalSource,tn as diffGlobalMembership,pt as distinctValues,x as encodeAggregateKey,Ta as encodeCursor,Do as encodeGeohash,Oa as encodePartitionKey,nn as encodeRowsPatch,D as ensureAuditTable,na as ensureMailTable,io as envOptionalPositiveInt,so as envPositiveInt,o as exportShardRows,Ho as facetColumn,dt as fanOutScalarCounts,zo as findStorageReferences,jr as finishStreamRun,C as foldAggregateTally,Mt as gateReplicaDispatch,Nr as geoTableName,rn as globalShapeReadKey,wt as guardWriter,Dt as handleReplicaControl,yn as hasTrigger,No as haversineMeters,a as importShardRows,et as indexKeysForRow,jt as isDevEnvironment,Or as isFtsAvailable,ba as isLossyBody,Xe as isMemoryTable,st as isRelationPredicate,Ro as isSoftDeleted,Ao as isSourceDue,kr as jsonPath,yr as jsonPathSql,rt as keysTouchRanges,po as liftSourceId,fn as lintReadonlySql,Wa as listReactorStates,Vo as listTables,qn as literalInList,Ja as markUnvouchableReads,ka as matchesRankStaticWhere,p as matchesStaticWhere,ho as materializeExternalRows,xo as materializeExternalRowsIncremental,He as memoryTableNames,gn as mergeChangedKeys,A as mergeWhere,oe as migrateCdcLog,ae as migrateCdcMeta,Te as migrateClientWatermark,Ie as migrateCommitSeq,Yr as migrateDurableStreams,ke as migrateGlobalShapeSnapshot,Ue as migrateIdempotency,Xa as migrateReactorState,Je as migrateSearchState,tr as migrateShapePokeCursor,te as minCdcReplayableSeq,ne as minCdcSeq,nr as minShapePokeCursor,Tt as nextPromotionState,d as normalizeCountArgument,G as normalizeIdStructurally,Ea as normalizeOrderKeys,So as normalizeSourceDocument,uo as normalizeSourceValue,vr as param,t as parseExportShardArgs,n as parseImportShardArgs,g as planAggregateLookup,Oo as pointInBoundingBox,sn as projectColumns,go as pullExternalSourceIncrementalTick,_o as pullExternalSourceTick,Fr as qualifiedJsonPath,Br as qualifiedJsonPathSql,Vn as quoteIdentifier,ya as rankKeyFromDoc,Fa as rankTableName,qa as reactiveCacheKey,Ha as reactorNeedsRun,T as readAggregateValue,Se as readArchivedCdcChanges,N as readAuditLog,da as readBookmark,ia as readCapturedMail,ue as readCdcArchivedThrough,ie as readCdcChangeKeys,se as readCdcChanges,le as readCdcCursor,ce as readCdcEpoch,Ee as readClientWatermark,be as readCommitSeq,Co as readExternalSourceBaseline,ye as readGlobalShapeSnapshot,we as readIdempotent,ur as readMigrationStatus,La as readQueueMessageById,Pa as readQueueMessages,za as readReactorState,Kt as readSchemaHistory,Wt as readSchemaVersion,Ze as readSearchBackfillState,ir as readShapePokeCursor,Jr as readStreamChunks,Zr as readStreamRun,Qo as readTablePage,sa as recordCapturedMail,_n as recordChangedKeys,jo as recordFanoutPass,Yo as recordGlobalPollPass,Ma as recordQueueMessages,Xt as recordSchemaVersion,Jo as recordShapeProbePass,St as relationHooks,Et as relayCountFor,Kr as renderSql,yt as reprojectableFields,Hn as reprojectionMigrationId,Ft as reprojectionTables,Ba as resolveRankPartition,Qe as resolveRankSeekTuple,lt as resolveRelationPredicates,ut as resolveWith,Gr as rowToDocument,fr as runDataMigration,Ar as runDrizzle,To as runExternalSourceTick,hn as runReadonlySql,ft as runRowValidators,jn as runShardMigrations,pn as runSocketPool,gr as runSql,Fn as runTriggers,Gn as selectExpiredIds,i as selectExportTables,_ as selectIndexForAggregate,I as selectIndexForCount,b as selectIndexForGroupBy,Zo as selectMatchingIds,mr as selectShapeMembers,pr as selectShapeRows,zt as serializeSqlValue,Rt as shapeRoutingKey,Ra as softDeleteScope,Ga as sortColumnName,Wr as sqliteInList,Jn as stableStringify,$n as stableWireKey,Tn as subscriptionFrames,En as subscriptionListDeltas,$o as summarizeFanoutTopics,ea as summarizeSubscriptions,Ur as tableColumns,Er as tableFromDepKey,S as throwingScheduler,Aa as tiebreakDirectionFor,me as trimCdcChanges,qe as trimIdempotent,$r as trimStreamRuns,wr as tryRowToDocument,Rn as trySendFrame,Xr as unionAll,s as validateImportRow,fe as writeCdcArchivedThrough,Fe as writeGlobalShapeSnapshot,ve as writeIdempotent,Va as writeReactorState,$e as writeSearchBackfillState,sr as writeShapePokeCursor,lr as writeShapePokeCursors,In as writeTouchesMemo};
|
|
1
|
+
import{exportShardRows as o,importShardRows as a,parseExportShardArgs as t,parseImportShardArgs as n,selectExportTables as i,validateImportRow as s}from"./packem_shared/exportShardRows-CegEECNc.mjs";import{AGGREGATE_SQL_FUNCTION as c,aggregateSqlFunction as m,matchesStaticWhere as p,normalizeCountArgument as d,throwingScheduler as S}from"./packem_shared/AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as f,coerceAggregateNumber as h,encodeAggregateKey as x,foldAggregateTally as C,readAggregateValue as T}from"./packem_shared/aggregateTableName-CGi8gxeK.mjs";import{CountRlsUnsupportedError as R,mergeWhere as A,planAggregateLookup as g,selectIndexForAggregate as _,selectIndexForCount as I,selectIndexForGroupBy as b}from"./packem_shared/CountRlsUnsupportedError-Bdfupt3g.mjs";import{AUDIT_LOG_TABLE as P,appendAuditEntry as M,ensureAuditTable as D,readAuditLog as N}from"./packem_shared/AUDIT_LOG_TABLE-ONxmEAIz.mjs";import{NotUniqueError as k,assertNoExplicitUndefined as y,assertValidClientId as F,createShardCtxDb as B,normalizeIdStructurally as G}from"./packem_shared/NotUniqueError-Cxbfyre8.mjs";import{backfillAggregateIndexes as w,backfillRankIndexes as q,backfillSearchIndexes as v,backfillSearchIndexesForTable as K}from"./packem_shared/backfillAggregateIndexes-BCLXdiIS.mjs";import{CDC_LOG_TABLE as X,CDC_LOG_TABLE_SEQ_INDEX as H,CDC_META_TABLE as z,appendCdcChange as V,applyCdcChanges as Q,bumpCdcEpoch as j,cdcCanVouchFor as Y,cdcSeqLeavingRows as J,cdcTouchesTables as Z,cdcTrimmedError as $,compactCdcDocs as ee,cursorBelowRetainedFloor as re,migrateCdcLog as oe,migrateCdcMeta as ae,minCdcReplayableSeq as te,minCdcSeq as ne,readCdcChangeKeys as ie,readCdcChanges as se,readCdcCursor as le,readCdcEpoch as ce,trimCdcChanges as me}from"./packem_shared/CDC_LOG_TABLE-gl0FuepJ.mjs";import{archiveCdcSegment as de,readArchivedCdcChanges as Se,readCdcArchivedThrough as ue,writeCdcArchivedThrough as fe}from"./packem_shared/archiveCdcSegment-DU4uzDFQ.mjs";import{CLIENT_WATERMARK_TABLE as xe,advanceClientWatermark as Ce,migrateClientWatermark as Te,readClientWatermark as Ee}from"./packem_shared/CLIENT_WATERMARK_TABLE-CRnrAnJ2.mjs";import{COMMIT_SEQ_FIELD as Ae,COMMIT_SEQ_TABLE as ge,allocateCommitSeq as _e,migrateCommitSeq as Ie,readCommitSeq as be}from"./packem_shared/COMMIT_SEQ_FIELD-BUdOMG5y.mjs";import{c as Pe}from"./packem_shared/ctx-db-companions-CN8hWTF_.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as De,deleteGlobalShapeSnapshot as Ne,deleteGlobalShapeSnapshotsForConnection as Oe,migrateGlobalShapeSnapshot as ke,readGlobalShapeSnapshot as ye,writeGlobalShapeSnapshot as Fe}from"./packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-DSA6mzyx.mjs";import{IDEMPOTENCY_TABLE as Ge,migrateIdempotency as Ue,readIdempotent as we,trimIdempotent as qe,writeIdempotent as ve}from"./packem_shared/IDEMPOTENCY_TABLE-DOpm_oMF.mjs";import{clearMemoryTables as We,isMemoryTable as Xe,memoryTableNames as He}from"./packem_shared/clearMemoryTables-BGbmag2i.mjs";import{computeRankPage as Ve,resolveRankSeekTuple as Qe}from"./packem_shared/computeRankPage-BxtyiLn9.mjs";import{SEARCH_STATE_TABLE as Ye,migrateSearchState as Je,readSearchBackfillState as Ze,writeSearchBackfillState as $e}from"./packem_shared/SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{SHAPE_POKE_CURSOR_TABLE as rr,deleteShapePokeCursor as or,deleteShapePokeCursorsForConnection as ar,migrateShapePokeCursor as tr,minShapePokeCursor as nr,readShapePokeCursor as ir,writeShapePokeCursor as sr,writeShapePokeCursors as lr}from"./packem_shared/SHAPE_POKE_CURSOR_TABLE-ByJVDHds.mjs";import{selectShapeMembers as mr,selectShapeRows as pr}from"./packem_shared/selectShapeMembers-Dva-Z9VQ.mjs";import{DATA_MIGRATION_STATE_TABLE as Sr,readMigrationStatus as ur,runDataMigration as fr}from"./packem_shared/DATA_MIGRATION_STATE_TABLE-Cp6pbyAp.mjs";import{SCAN_DEP as xr,createDependencyTracker as Cr,depKey as Tr,tableFromDepKey as Er}from"./packem_shared/SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as Ar,runSql as gr}from"./packem_shared/runDrizzle-2ULFQR_k.mjs";import{A as Ir,a as br,b as Lr,D as Pr,c as Mr,d as Dr,g as Nr,i as Or,j as kr,e as yr,q as Fr,f as Br,r as Gr,t as Ur,h as wr}from"./packem_shared/do-sql-bkXQEBl8.mjs";import{param as vr,renderSql as Kr,sqliteInList as Wr,unionAll as Xr}from"./packem_shared/param-DlozcSQu.mjs";import{appendStreamChunk as zr,claimStreamRun as Vr,deleteStreamRun as Qr,finishStreamRun as jr,migrateDurableStreams as Yr,readStreamChunks as Jr,readStreamRun as Zr,trimStreamRuns as $r}from"./packem_shared/appendStreamChunk-8eH4HB1Q.mjs";import{DurableStreamRunner as ro,MAX_DURABLE_STREAM_BYTES as oo,MAX_DURABLE_STREAM_CHUNKS as ao,decideDurableAttach as to}from"./packem_shared/DurableStreamRunner-CWqdczw1.mjs";import{envOptionalPositiveInt as io,envPositiveInt as so}from"./packem_shared/envOptionalPositiveInt-D2pY-c64.mjs";import{diffExternalSource as co}from"./packem_shared/diffExternalSource-DgDJhslq.mjs";import{liftSourceId as po,normalizeSourceDocument as So,normalizeSourceValue as uo}from"./packem_shared/liftSourceId-CA3ENhXj.mjs";import{materializeExternalRows as ho,materializeExternalRowsIncremental as xo,readExternalSourceBaseline as Co,runExternalSourceTick as To}from"./packem_shared/materializeExternalRows-DGjC_8Hc.mjs";import{isSoftDeleted as Ro,isSourceDue as Ao,pullExternalSourceIncrementalTick as go,pullExternalSourceTick as _o}from"./packem_shared/isSoftDeleted-D6x6VWds.mjs";import{GEO_DEFAULT_PRECISION as bo,boundingBoxCenter as Lo,boundingBoxGeohashes as Po,coveringGeohashes as Mo,encodeGeohash as Do,haversineMeters as No,pointInBoundingBox as Oo}from"./packem_shared/GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{default as yo}from"./packem_shared/GlobalPollTick-BNK4o-XT.mjs";import{ADMIN_FUNCTIONS as Bo,ADMIN_FUNCTION_PREFIX as Go,DEFAULT_FANOUT_TOPIC_LIMIT as Uo,FLAGS_FUNCTION_PREFIX as wo,MAX_PAGE_SIZE as qo,RELATION_FUNCTION_PREFIX as vo,createFanoutCounters as Ko,createGlobalPollCounters as Wo,createShapeProbeCounters as Xo,facetColumn as Ho,findStorageReferences as zo,listTables as Vo,readTablePage as Qo,recordFanoutPass as jo,recordGlobalPollPass as Yo,recordShapeProbePass as Jo,selectMatchingIds as Zo,summarizeFanoutTopics as $o,summarizeSubscriptions as ea}from"./packem_shared/ADMIN_FUNCTIONS-oJ7IyZP6.mjs";import{MAIL_RETENTION as oa,MAIL_TABLE as aa,clearCapturedMail as ta,ensureMailTable as na,readCapturedMail as ia,recordCapturedMail as sa}from"./packem_shared/MAIL_RETENTION-DGAQTHHs.mjs";import{NotFoundError as ca}from"./packem_shared/NotFoundError-BhF7FeFr.mjs";import{armRestore as pa,readBookmark as da}from"./packem_shared/armRestore-Bu1_8SUa.mjs";import{CURSOR_PREFIX as ua,applySelect as fa,buildSeekBeforeWhere as ha,buildSeekWhere as xa,decodeCursor as Ca,encodeCursor as Ta,normalizeOrderKeys as Ea,softDeleteScope as Ra,tiebreakDirectionFor as Aa}from"./packem_shared/CURSOR_PREFIX-D4DUGY5z.mjs";import{QUEUE_TABLE as _a,clearQueueMessages as Ia,isLossyBody as ba,readQueueMessageById as La,readQueueMessages as Pa,recordQueueMessages as Ma}from"./packem_shared/QUEUE_TABLE-s7QJZvBz.mjs";import{RANK_TIEBREAK as Na,encodePartitionKey as Oa,matchesRankStaticWhere as ka,rankKeyFromDoc as ya,rankTableName as Fa,resolveRankPartition as Ba,sortColumnName as Ga}from"./packem_shared/RANK_TIEBREAK-D157XEqw.mjs";import{ReactiveCache as wa,reactiveCacheKey as qa}from"./packem_shared/ReactiveCache-BngdZxr9.mjs";import{REACTOR_STATE_TABLE as Ka,listReactorStates as Wa,migrateReactorState as Xa,reactorNeedsRun as Ha,readReactorState as za,writeReactorState as Va}from"./packem_shared/REACTOR_STATE_TABLE-QPRFyxMS.mjs";import{UNVOUCHABLE_DEP as ja,createReadFootprint as Ya,markUnvouchableReads as Ja}from"./packem_shared/UNVOUCHABLE_DEP-C68htACn.mjs";import{buildIndexRange as $a,indexKeysForRow as et,keysTouchRanges as rt}from"./packem_shared/buildIndexRange-CBKQmHSS.mjs";import{DEFAULT_MAX_RELATION_KEYS as at,assertFlatPredicate as tt,assertShapeShardable as nt,containsRelationPredicate as it,isRelationPredicate as st,resolveRelationPredicates as lt}from"./packem_shared/DEFAULT_MAX_RELATION_KEYS-B3krmwZL.mjs";import{applyOnDelete as mt,distinctValues as pt,fanOutScalarCounts as dt,relationHooks as St,resolveWith as ut,runRowValidators as ft}from"./packem_shared/applyOnDelete-9f4D4g1z.mjs";import{DEFAULT_PROMOTION_THRESHOLDS as xt,clampPromotionThresholds as Ct,nextPromotionState as Tt,relayCountFor as Et,shapeRoutingKey as Rt}from"./packem_shared/DEFAULT_PROMOTION_THRESHOLDS-DpUu_mpH.mjs";import{DEFAULT_MAX_RELAYS as gt,OwnerRelay as _t,RelayMember as It,createRelayLink as bt}from"./packem_shared/DEFAULT_MAX_RELAYS-Bjx0HDbs.mjs";import{createReplicaLink as Pt,gateReplicaDispatch as Mt,handleReplicaControl as Dt}from"./packem_shared/createReplicaLink-DujqFlHs.mjs";import{buildReprojectionMigration as Ot,countLegacyRows as kt,reprojectableFields as yt,reprojectionTables as Ft}from"./packem_shared/buildReprojectionMigration-CR2RSgJd.mjs";import{RLS_UNWRAP_SYMBOL as Gt,RlsRequiredError as Ut,guardWriter as wt}from"./packem_shared/RLS_UNWRAP_SYMBOL-BWloGsd3.mjs";import{SCHEMA_HISTORY_MAX_VERSIONS as vt,readSchemaHistory as Kt,readSchemaVersion as Wt,recordSchemaVersion as Xt}from"./packem_shared/SCHEMA_HISTORY_MAX_VERSIONS-BluIj2s-.mjs";import{serializeSqlValue as zt}from"./packem_shared/serializeSqlValue-DbI1VQYM.mjs";import{buildSettings as Qt,isDevEnvironment as jt}from"./packem_shared/buildSettings-B4igo4rJ.mjs";import{buildShapeDiff as Jt}from"./packem_shared/buildShapeDiff-Ds5Q0GJ_.mjs";import{ShapeDiffCache as $t,createShapeDiffCache as en,globalShapeReadKey as rn}from"./packem_shared/ShapeDiffCache-CLm5XXd1.mjs";import{buildPokeFrames as an,diffGlobalMembership as tn,encodeRowsPatch as nn,projectColumns as sn}from"./packem_shared/buildPokeFrames-C8km3IhJ.mjs";import{ShardRunner as cn}from"./packem_shared/ShardRunner-C9p5DVOx.mjs";import{runSocketPool as pn}from"./packem_shared/runSocketPool-CZJ2X9cF.mjs";import{MAX_SQL_ROWS as Sn,assertReadonly as un,lintReadonlySql as fn,runReadonlySql as hn}from"./packem_shared/MAX_SQL_ROWS-gsiUV0Eo.mjs";import{awaitWsDrain as Cn,subscriptionFrames as Tn,subscriptionListDeltas as En,trySendFrame as Rn}from"./packem_shared/awaitWsDrain-CjWMVZOG.mjs";import{mergeChangedKeys as gn,recordChangedKeys as _n,writeTouchesMemo as In}from"./packem_shared/mergeChangedKeys-D1T-TPUb.mjs";import{createSystemReader as Ln}from"./packem_shared/createSystemReader-DcDLFfC-.mjs";import{ConflictError as Mn}from"./packem_shared/ConflictError-C8GtJmjS.mjs";import{DEFAULT_TRANSACTION_LIMITS as Nn,TransactionHeadroomTracker as On}from"./packem_shared/DEFAULT_TRANSACTION_LIMITS-Bcoi7Bvf.mjs";import{hasTrigger as yn,runTriggers as Fn}from"./packem_shared/hasTrigger-CjlwI4le.mjs";import{selectExpiredIds as Gn}from"./packem_shared/selectExpiredIds-D784Mqvh.mjs";import{c as wn,l as qn}from"./packem_shared/where-sql-D6MSVjdL.mjs";import{RELATION_EXISTS_KEY as Kn}from"./packem_shared/RELATION_EXISTS_KEY-CFUhnZSZ.mjs";import{REPROJECTION_MIGRATION_PREFIX as Xn,reprojectionMigrationId as Hn}from"./packem_shared/REPROJECTION_MIGRATION_PREFIX-Czcb6_mO.mjs";import{quoteIdentifier as Vn}from"./packem_shared/quoteIdentifier-CObIFRhb.mjs";import{runShardMigrations as jn}from"./packem_shared/runShardMigrations-D6rTX7Bn.mjs";import{stableStringify as Jn}from"./packem_shared/stableStringify-DibjylKD.mjs";import{stableWireKey as $n}from"./packem_shared/stableWireKey-9bjKL5Gy.mjs";export{Bo as ADMIN_FUNCTIONS,Go as ADMIN_FUNCTION_PREFIX,c as AGGREGATE_SQL_FUNCTION,Ir as AGG_COUNT,br as AGG_KEY,Lr as AGG_VALUE,P as AUDIT_LOG_TABLE,X as CDC_LOG_TABLE,H as CDC_LOG_TABLE_SEQ_INDEX,z as CDC_META_TABLE,xe as CLIENT_WATERMARK_TABLE,Ae as COMMIT_SEQ_FIELD,ge as COMMIT_SEQ_TABLE,ua as CURSOR_PREFIX,Mn as ConflictError,R as CountRlsUnsupportedError,Sr as DATA_MIGRATION_STATE_TABLE,Uo as DEFAULT_FANOUT_TOPIC_LIMIT,at as DEFAULT_MAX_RELATION_KEYS,gt as DEFAULT_MAX_RELAYS,xt as DEFAULT_PROMOTION_THRESHOLDS,Nn as DEFAULT_TRANSACTION_LIMITS,Pr as DOC_COLUMN,ro as DurableStreamRunner,wo as FLAGS_FUNCTION_PREFIX,bo as GEO_DEFAULT_PRECISION,De as GLOBAL_SHAPE_SNAPSHOT_TABLE,yo as GlobalPollTick,Ge as IDEMPOTENCY_TABLE,oa as MAIL_RETENTION,aa as MAIL_TABLE,oo as MAX_DURABLE_STREAM_BYTES,ao as MAX_DURABLE_STREAM_CHUNKS,qo as MAX_PAGE_SIZE,Sn as MAX_SQL_ROWS,ca as NotFoundError,k as NotUniqueError,_t as OwnerRelay,_a as QUEUE_TABLE,Na as RANK_TIEBREAK,Ka as REACTOR_STATE_TABLE,Kn as RELATION_EXISTS_KEY,vo as RELATION_FUNCTION_PREFIX,Xn as REPROJECTION_MIGRATION_PREFIX,Gt as RLS_UNWRAP_SYMBOL,wa as ReactiveCache,It as RelayMember,Ut as RlsRequiredError,xr as SCAN_DEP,vt as SCHEMA_HISTORY_MAX_VERSIONS,Ye as SEARCH_STATE_TABLE,rr as SHAPE_POKE_CURSOR_TABLE,$t as ShapeDiffCache,cn as ShardRunner,On as TransactionHeadroomTracker,ja as UNVOUCHABLE_DEP,Ce as advanceClientWatermark,Mr as aggUpsertSql,m as aggregateSqlFunction,f as aggregateTableName,_e as allocateCommitSeq,M as appendAuditEntry,V as appendCdcChange,zr as appendStreamChunk,Q as applyCdcChanges,mt as applyOnDelete,fa as applySelect,de as archiveCdcSegment,pa as armRestore,tt as assertFlatPredicate,y as assertNoExplicitUndefined,un as assertReadonly,nt as assertShapeShardable,F as assertValidClientId,Cn as awaitWsDrain,w as backfillAggregateIndexes,q as backfillRankIndexes,v as backfillSearchIndexes,K as backfillSearchIndexesForTable,Lo as boundingBoxCenter,Po as boundingBoxGeohashes,$a as buildIndexRange,an as buildPokeFrames,Ot as buildReprojectionMigration,ha as buildSeekBeforeWhere,xa as buildSeekWhere,Qt as buildSettings,Jt as buildShapeDiff,j as bumpCdcEpoch,Y as cdcCanVouchFor,J as cdcSeqLeavingRows,Z as cdcTouchesTables,$ as cdcTrimmedError,Vr as claimStreamRun,Ct as clampPromotionThresholds,ta as clearCapturedMail,We as clearMemoryTables,Ia as clearQueueMessages,h as coerceAggregateNumber,ee as compactCdcDocs,wn as compileWhereSql,Ve as computeRankPage,it as containsRelationPredicate,kt as countLegacyRows,Mo as coveringGeohashes,Pe as createCompanionSync,Cr as createDependencyTracker,Ko as createFanoutCounters,Wo as createGlobalPollCounters,Dr as createIndexSql,Ya as createReadFootprint,bt as createRelayLink,Pt as createReplicaLink,en as createShapeDiffCache,Xo as createShapeProbeCounters,B as createShardCtxDb,Ln as createSystemReader,re as cursorBelowRetainedFloor,to as decideDurableAttach,Ca as decodeCursor,Ne as deleteGlobalShapeSnapshot,Oe as deleteGlobalShapeSnapshotsForConnection,or as deleteShapePokeCursor,ar as deleteShapePokeCursorsForConnection,Qr as deleteStreamRun,Tr as depKey,co as diffExternalSource,tn as diffGlobalMembership,pt as distinctValues,x as encodeAggregateKey,Ta as encodeCursor,Do as encodeGeohash,Oa as encodePartitionKey,nn as encodeRowsPatch,D as ensureAuditTable,na as ensureMailTable,io as envOptionalPositiveInt,so as envPositiveInt,o as exportShardRows,Ho as facetColumn,dt as fanOutScalarCounts,zo as findStorageReferences,jr as finishStreamRun,C as foldAggregateTally,Mt as gateReplicaDispatch,Nr as geoTableName,rn as globalShapeReadKey,wt as guardWriter,Dt as handleReplicaControl,yn as hasTrigger,No as haversineMeters,a as importShardRows,et as indexKeysForRow,jt as isDevEnvironment,Or as isFtsAvailable,ba as isLossyBody,Xe as isMemoryTable,st as isRelationPredicate,Ro as isSoftDeleted,Ao as isSourceDue,kr as jsonPath,yr as jsonPathSql,rt as keysTouchRanges,po as liftSourceId,fn as lintReadonlySql,Wa as listReactorStates,Vo as listTables,qn as literalInList,Ja as markUnvouchableReads,ka as matchesRankStaticWhere,p as matchesStaticWhere,ho as materializeExternalRows,xo as materializeExternalRowsIncremental,He as memoryTableNames,gn as mergeChangedKeys,A as mergeWhere,oe as migrateCdcLog,ae as migrateCdcMeta,Te as migrateClientWatermark,Ie as migrateCommitSeq,Yr as migrateDurableStreams,ke as migrateGlobalShapeSnapshot,Ue as migrateIdempotency,Xa as migrateReactorState,Je as migrateSearchState,tr as migrateShapePokeCursor,te as minCdcReplayableSeq,ne as minCdcSeq,nr as minShapePokeCursor,Tt as nextPromotionState,d as normalizeCountArgument,G as normalizeIdStructurally,Ea as normalizeOrderKeys,So as normalizeSourceDocument,uo as normalizeSourceValue,vr as param,t as parseExportShardArgs,n as parseImportShardArgs,g as planAggregateLookup,Oo as pointInBoundingBox,sn as projectColumns,go as pullExternalSourceIncrementalTick,_o as pullExternalSourceTick,Fr as qualifiedJsonPath,Br as qualifiedJsonPathSql,Vn as quoteIdentifier,ya as rankKeyFromDoc,Fa as rankTableName,qa as reactiveCacheKey,Ha as reactorNeedsRun,T as readAggregateValue,Se as readArchivedCdcChanges,N as readAuditLog,da as readBookmark,ia as readCapturedMail,ue as readCdcArchivedThrough,ie as readCdcChangeKeys,se as readCdcChanges,le as readCdcCursor,ce as readCdcEpoch,Ee as readClientWatermark,be as readCommitSeq,Co as readExternalSourceBaseline,ye as readGlobalShapeSnapshot,we as readIdempotent,ur as readMigrationStatus,La as readQueueMessageById,Pa as readQueueMessages,za as readReactorState,Kt as readSchemaHistory,Wt as readSchemaVersion,Ze as readSearchBackfillState,ir as readShapePokeCursor,Jr as readStreamChunks,Zr as readStreamRun,Qo as readTablePage,sa as recordCapturedMail,_n as recordChangedKeys,jo as recordFanoutPass,Yo as recordGlobalPollPass,Ma as recordQueueMessages,Xt as recordSchemaVersion,Jo as recordShapeProbePass,St as relationHooks,Et as relayCountFor,Kr as renderSql,yt as reprojectableFields,Hn as reprojectionMigrationId,Ft as reprojectionTables,Ba as resolveRankPartition,Qe as resolveRankSeekTuple,lt as resolveRelationPredicates,ut as resolveWith,Gr as rowToDocument,fr as runDataMigration,Ar as runDrizzle,To as runExternalSourceTick,hn as runReadonlySql,ft as runRowValidators,jn as runShardMigrations,pn as runSocketPool,gr as runSql,Fn as runTriggers,Gn as selectExpiredIds,i as selectExportTables,_ as selectIndexForAggregate,I as selectIndexForCount,b as selectIndexForGroupBy,Zo as selectMatchingIds,mr as selectShapeMembers,pr as selectShapeRows,zt as serializeSqlValue,Rt as shapeRoutingKey,Ra as softDeleteScope,Ga as sortColumnName,Wr as sqliteInList,Jn as stableStringify,$n as stableWireKey,Tn as subscriptionFrames,En as subscriptionListDeltas,$o as summarizeFanoutTopics,ea as summarizeSubscriptions,Ur as tableColumns,Er as tableFromDepKey,S as throwingScheduler,Aa as tiebreakDirectionFor,me as trimCdcChanges,qe as trimIdempotent,$r as trimStreamRuns,wr as tryRowToDocument,Rn as trySendFrame,Xr as unionAll,s as validateImportRow,fe as writeCdcArchivedThrough,Fe as writeGlobalShapeSnapshot,ve as writeIdempotent,Va as writeReactorState,$e as writeSearchBackfillState,sr as writeShapePokeCursor,lr as writeShapePokeCursors,In as writeTouchesMemo};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{LunoraError as b}from"@lunora/errors";import{d as S,e as m}from"./wire-codec-COhOSEe4.mjs";const _="id",E=e=>e.at(-1)?.direction==="desc"?"desc":"asc",N=new Set(["_id","id"]),y=new Set(["_creationTime","_id","id"]),C=(e,t)=>{if(y.has(e))return!1;const o=t?.[e];return o===void 0?!0:o.kind==="optional"||o._meta?.column?.notNull===!1},I=(e,t)=>{const o=[];for(const r of e??[])for(const[n,i]of Object.entries(r))o.push({direction:i,field:n,nullable:C(n,t)});return o.length===0?[{direction:"asc",field:"_creationTime",nullable:!1}]:o},F=/[\u0080-\u{10FFFF}]/u,O=e=>{if(!F.test(e))return btoa(e);const t=new TextEncoder().encode(e);let o="";for(const r of t)o+=String.fromCodePoint(r);return btoa(o)},v=e=>{const t=atob(e),o=Uint8Array.from(t,r=>r.codePointAt(0)??0);return new TextDecoder().decode(o)},a="~2",L=(e,t)=>{const o=t.map(r=>e[r.field]??null);return o.push(e._id),a+O(JSON.stringify(m(o)))},u=()=>new b("BAD_REQUEST","invalid cursor"),T=e=>{if(!e.startsWith(a))throw u();let t;try{t=S(JSON.parse(v(e.slice(a.length))))}catch{throw u()}if(!Array.isArray(t))throw u();return t.map(o=>o??null)},R=(e,t,o,r)=>{const{field:n}=e,i=e.direction!=="desc"===o;if(t===null)return i?r?{OR:[{[n]:{isNull:!1}},{[n]:{isNull:!0}}]}:{[n]:{isNull:!1}}:r?{[n]:{isNull:!0}}:{OR:[]};let s=i?"gt":"lt";r&&(s=i?"gte":"lte");const c={[n]:{[s]:t}};return i||!e.nullable?c:{OR:[c,{[n]:{isNull:!0}}]}},f=(e,t,o,r)=>{const n=e.some(s=>N.has(s.field))?e:[...e,{direction:E(e),field:_,nullable:!1}];if(t.length<n.length)throw u();const i=[];for(const[s,c]of n.entries()){const l=[];for(const[p,h]of n.slice(0,s).entries())l.push({[h.field]:{eq:t[p]}});l.push(R(c,t[s],o,r&&s===n.length-1));const[d]=l;i.push(l.length===1&&d!==void 0?d:{AND:l})}return{OR:i}},A=(e,t)=>f(e,t,!0,!1),k=(e,t)=>f(e,t,!1,!0),g=["_id","_creationTime"],W=(e,t,o)=>{if(!t)return e;const r=new Set([...t,...g,...o?Object.keys(o):[]]);return e.map(n=>{const i={};for(const s of r)s in n&&(i[s]=n[s]);return i})},B=(e,t)=>e&&t!==!0?{[e.field]:{isNull:!0}}:void 0,U=(e,t)=>t===void 0||e[t]===null||e[t]===void 0;export{a as CURSOR_PREFIX,W as applySelect,k as buildSeekBeforeWhere,A as buildSeekWhere,T as decodeCursor,L as encodeCursor,v as fromBase64,u as invalidCursor,U as isLiveForCompanion,I as normalizeOrderKeys,B as softDeleteScope,E as tiebreakDirectionFor,O as toBase64};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{LunoraError as h}from"@lunora/errors";import{distinctValues as w}from"./applyOnDelete-
|
|
1
|
+
import{LunoraError as h}from"@lunora/errors";import{distinctValues as w}from"./applyOnDelete-9f4D4g1z.mjs";import{RELATION_EXISTS_KEY as N}from"./RELATION_EXISTS_KEY-CFUhnZSZ.mjs";const g={every:{kind:"many",negateChild:!0,negated:!0},is:{kind:"one",negated:!1},isNot:{kind:"one",negated:!0,nullDisjunct:!0},none:{kind:"many",negated:!0},some:{kind:"many",negated:!1}},T=new Set(Object.keys(g)),p=e=>{const t=g[e];if(!t)throw new h("INTERNAL",`unknown relation operator "${e}"`);return t},j=e=>e.kind==="one"?{clause:e.field,project:e.references}:{clause:e.references,project:e.field},S=5e3,l=Symbol("relation-key-overflow"),b=e=>Array.isArray(e)?e.map(t=>t??{}):[],R=e=>{if(e.length===1){const[t]=e;return t??{}}return e.length===0?{}:{AND:e}},y=e=>{if(e===null||typeof e!="object"||Array.isArray(e))return!1;const t=Object.keys(e);return t.length>0&&t.every(n=>T.has(n))},u=(e,t,n)=>{const r=t.tables[n]?.relationMap??{};return Object.keys(e).some(s=>{const a=e[s];return s==="AND"||s==="OR"?b(a).some(o=>u(o,t,n)):s==="NOT"?u(a??{},t,n):!!r[s]&&y(a)})},K=(e,t,n,r)=>{if(e&&u(e,t,n))throw new h("INTERNAL",`relation-crossing predicates are not supported in ${r}() — use them in findMany/findFirst or an RLS read policy`)},P=async(e,t,n,r,s)=>{const a=await d(t,e.table,r),{page:o}=await r.fetcher(e.table,{baseWhere:r.relationBaseWhere?.(e.table),relationBaseWhere:r.relationBaseWhere,where:a}),i=w(o,n);if(i.length>r.maxRelationKeys){if(s)return l;throw new h("INTERNAL",`relation predicate on "${e.table}" matched ${String(i.length)} rows, exceeding the ${String(r.maxRelationKeys)}-key limit; narrow the predicate (a same-shard EXISTS push-down lifts this cap)`)}return i},$=async(e,t,n,r,s)=>{const a=p(e),{clause:o,project:i}=j(t),c=await P(t,a.negateChild?{NOT:n}:n,i,r,s);return c===l?l:a.negated?a.nullDisjunct?{OR:[{[o]:{notIn:c}},{[o]:{isNull:!0}}]}:{[o]:{notIn:c}}:{[o]:{in:c}}},m=async(e,t,n,r,s)=>{const a=p(e),o=s.relationBaseWhere?.(t.table),i=a.negateChild?{NOT:n}:n,A={childWhere:await d(o?{AND:[o,i]}:i,t.table,s),negated:a.negated,parentTable:r,relation:t};return{[N]:A}},k=(e,t,n)=>{const r=g[e];if(r&&r.kind!==n.kind)throw new h("INTERNAL",`relation operator "${e}" requires a to-${r.kind} relation, but "${t}" is to-${n.kind}`)},I=async(e,t,n,r,s)=>{const a=[];for(const o of Object.keys(n)){k(o,e,t);const i=n[o]??{},c=s.canPushExists?.(t)??!1;if(c&&s.existsPushMode==="always"){a.push(await m(o,t,i,r,s));continue}const f=await $(o,t,i,s,c);f===l?a.push(await m(o,t,i,r,s)):a.push(f)}return R(a)},L=async(e,t,n,r)=>{if(e==="AND"||e==="OR"){const a=[];for(const o of b(t))a.push(await d(o,n,r));return{[e]:a}}if(e==="NOT")return{NOT:await d(t??{},n,r)};const s=r.schema.tables[n]?.relationMap?.[e];return s&&y(t)?I(e,s,t,n,r):{[e]:t}},d=async(e,t,n)=>{const r=[];for(const s of Object.keys(e))r.push(await L(s,e[s],t,n));return R(r)},v=async(e,t)=>!e||!u(e,t.schema,t.tableName)?e:d(e,t.tableName,{canPushExists:t.canPushExists,existsPushMode:t.existsPushMode??"auto",fetcher:t.fetcher,maxRelationKeys:t.maxRelationKeys??S,relationBaseWhere:t.relationBaseWhere,schema:t.schema}),O=(e,t,n)=>{for(const r of e){const s=E(r,t,n);if(s)return s}},M=(e,t,n,r)=>{if(e==="AND"||e==="OR")return O(b(t),n,r);if(e==="NOT")return O([t??{}],n,r);const s=n.tables[r]?.relationMap?.[e];if(!(!s||!y(t)))return n.tables[s.table]?.shardMode?.kind==="shardBy"?{relation:e,target:s.table}:O(Object.values(t),n,s.table)},E=(e,t,n)=>{for(const r of Object.keys(e)){const s=M(r,e[r],t,n);if(s)return s}},B=(e,t,n)=>{if(!e)return;const r=E(e,t,n);if(r)throw Object.assign(new Error(`shape on "${n}" joins the sharded table "${r.target}" via relation "${r.relation}" — a live shape cannot replicate rows that live in another shard's Durable Object. Fix it by (a) denormalizing the joined columns into "${n}", or (b) moving "${r.target}" to .global() so it is served through the latency-tiered D1 shape tier.`),{code:"SHAPE_CROSS_SHARD_JOIN",name:"LunoraError",status:400})};export{S as DEFAULT_MAX_RELATION_KEYS,K as assertFlatPredicate,B as assertShapeShardable,u as containsRelationPredicate,y as isRelationPredicate,v as resolveRelationPredicates};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import{LunoraError as p}from"@lunora/errors";import{sql as e}from"drizzle-orm";import{runDrizzle as i}from"./runDrizzle-2ULFQR_k.mjs";const s="__global_shape_snapshot",E=1e6,T=n=>{i(n,e`CREATE TABLE IF NOT EXISTS ${e.identifier(s)} (
|
|
2
|
+
connection_id TEXT NOT NULL,
|
|
3
|
+
sub_id TEXT NOT NULL,
|
|
4
|
+
members TEXT NOT NULL,
|
|
5
|
+
PRIMARY KEY (connection_id, sub_id)
|
|
6
|
+
)`)},b=(n,o,r)=>{const t=i(n,e`SELECT members FROM ${e.identifier(s)} WHERE connection_id = ${o} AND sub_id = ${r} LIMIT 1`).toArray()[0]?.members;if(t!==void 0)try{const a=JSON.parse(t);return a===null||typeof a!="object"?new Map:new Map(Object.entries(a))}catch{return new Map}},_=(n,o,r,c)=>{const t=JSON.stringify(Object.fromEntries(c));if(t.length>E)throw new p("BAD_REQUEST",`global shape snapshot for subscription "${r}" is ${String(t.length)} characters, past the ${String(E)}-character cap for one durable baseline row; narrow the shape with a predicate or an RLS read policy`);i(n,e`INSERT INTO ${e.identifier(s)} (connection_id, sub_id, members) VALUES (${o}, ${r}, ${t})
|
|
7
|
+
ON CONFLICT(connection_id, sub_id) DO UPDATE SET members = excluded.members`)},h=(n,o,r)=>{i(n,e`DELETE FROM ${e.identifier(s)} WHERE connection_id = ${o} AND sub_id = ${r}`)},m=(n,o)=>{i(n,e`DELETE FROM ${e.identifier(s)} WHERE connection_id = ${o}`)};export{E as GLOBAL_SHAPE_SNAPSHOT_MAX_CHARS,s as GLOBAL_SHAPE_SNAPSHOT_TABLE,h as deleteGlobalShapeSnapshot,m as deleteGlobalShapeSnapshotsForConnection,T as migrateGlobalShapeSnapshot,b as readGlobalShapeSnapshot,_ as writeGlobalShapeSnapshot};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{LunoraError as $}from"@lunora/errors";import{c as on,q as ot,S as rn,l as Me,a as sn}from"./ctx-db-companions-CN8hWTF_.mjs";import{sql as i}from"drizzle-orm";import{d as cn}from"./wire-codec-COhOSEe4.mjs";import{throwingScheduler as an,aggregateSqlFunction as De,normalizeCountArgument as dn}from"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as je,encodeAggregateKey as Ke,readAggregateValue as Qe}from"./aggregateTableName-CGi8gxeK.mjs";import{mergeWhere as Q,CountRlsUnsupportedError as ze,selectIndexForGroupBy as ln,selectIndexForCount as un,selectIndexForAggregate as fn}from"./CountRlsUnsupportedError-Bdfupt3g.mjs";import{backfillSearchIndexesForTable as hn}from"./backfillAggregateIndexes-BCLXdiIS.mjs";import{backfillAggregateIndexes as ur,backfillRankIndexes as fr,backfillSearchIndexes as hr}from"./backfillAggregateIndexes-BCLXdiIS.mjs";import{appendCdcChange as wn}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{CDC_LOG_TABLE as pr,applyCdcChanges as gr,bumpCdcEpoch as $r,cdcCanVouchFor as yr,cdcSeqLeavingRows as Er,cdcTouchesTables as mr,cdcTrimmedError as Sr,compactCdcDocs as _r,cursorBelowRetainedFloor as Tr,minCdcReplayableSeq as Rr,minCdcSeq as vr,readCdcChangeKeys as Ar,readCdcChanges as Ir,readCdcCursor as Cr,readCdcEpoch as xr,trimCdcChanges as br}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{allocateCommitSeq as pn,COMMIT_SEQ_FIELD as gn}from"./COMMIT_SEQ_FIELD-BUdOMG5y.mjs";import{isMemoryTable as $n}from"./clearMemoryTables-BGbmag2i.mjs";import{computeRankPage as Et}from"./computeRankPage-BxtyiLn9.mjs";import{SCAN_DEP as G}from"./SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as O,runSql as me}from"./runDrizzle-2ULFQR_k.mjs";import{D as ne,k as se,r as de,b as ke,A as Je,a as Le,e as Y,t as Pt,j as We,q as mt,i as yn,h as Gt,g as En}from"./do-sql-bkXQEBl8.mjs";import{renderSql as Ht,unionAll as rt,WORKERD_SQLITE_LIMITS as Nt,sqliteInList as mn}from"./param-DlozcSQu.mjs";import{coveringGeohashes as Sn,boundingBoxGeohashes as _n,haversineMeters as Tn,pointInBoundingBox as Rn}from"./GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{NotFoundError as vn}from"./NotFoundError-BhF7FeFr.mjs";import{softDeleteScope as ae,normalizeOrderKeys as Ze,buildSeekWhere as Ot,decodeCursor as et,applySelect as St,encodeCursor as tt,tiebreakDirectionFor as An,buildSeekBeforeWhere as In}from"./CURSOR_PREFIX-D4DUGY5z.mjs";import{rankTableName as _t,sortColumnName as Tt,resolveRankPartition as Cn,encodePartitionKey as xn,RANK_TIEBREAK as bn}from"./RANK_TIEBREAK-D157XEqw.mjs";import{indexKeysForRow as Mn,buildIndexRange as Dn}from"./buildIndexRange-CBKQmHSS.mjs";import{assertFlatPredicate as Ve,resolveRelationPredicates as Rt}from"./DEFAULT_MAX_RELATION_KEYS-B3krmwZL.mjs";import{runRowValidators as Ye,resolveWith as vt,relationHooks as At,applyOnDelete as kn,fanOutScalarCounts as Ln}from"./applyOnDelete-9f4D4g1z.mjs";import{guardWriter as Fn}from"./RLS_UNWRAP_SYMBOL-BWloGsd3.mjs";import{quoteIdentifier as Se}from"./quoteIdentifier-CObIFRhb.mjs";import{i as qn}from"./sql-projection-BqmxFxQU.mjs";import{createSystemReader as Wn}from"./createSystemReader-DcDLFfC-.mjs";import{ConflictError as ye}from"./ConflictError-C8GtJmjS.mjs";import{runTriggers as Bn}from"./hasTrigger-CjlwI4le.mjs";import{c as te,t as Ue,r as Be,j as Ee,i as It}from"./where-sql-D6MSVjdL.mjs";import{CLIENT_WATERMARK_TABLE as Dr,advanceClientWatermark as kr,migrateClientWatermark as Lr,readClientWatermark as Fr}from"./CLIENT_WATERMARK_TABLE-CRnrAnJ2.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as Wr,deleteGlobalShapeSnapshot as Br,deleteGlobalShapeSnapshotsForConnection as Ur,migrateGlobalShapeSnapshot as Pr,readGlobalShapeSnapshot as Gr,writeGlobalShapeSnapshot as Hr}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-DSA6mzyx.mjs";import{IDEMPOTENCY_TABLE as Or,readIdempotent as jr,trimIdempotent as Kr,writeIdempotent as Qr}from"./IDEMPOTENCY_TABLE-DOpm_oMF.mjs";import{runShardMigrations as Jr}from"./runShardMigrations-D6rTX7Bn.mjs";import{SEARCH_STATE_TABLE as Yr}from"./SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{selectShapeMembers as Zr,selectShapeRows as ei}from"./selectShapeMembers-Dva-Z9VQ.mjs";import{serializeSqlValue as oe}from"./serializeSqlValue-DbI1VQYM.mjs";const Un=o=>{const r=atob(o),t=Uint8Array.from(r,a=>a.codePointAt(0)??0);return new TextDecoder().decode(t)},Pn=()=>new $("BAD_REQUEST","invalid cursor"),Ct=16,xt=8,X=1024,it=(o,r)=>r.query(o),Gn=(o,r)=>{if(o.length===0)return 0;let t=0;for(const[a,l]of r.entries()){const p=a===r.length-1;let E=0;for(const S of o)(p?S.startsWith(l):S===l)&&(E+=1);if(E===0)return 0;t+=E}return t},Hn=(o,r)=>{if(!r)return{exact:!0,lower:o,upper:o};const t=[...o].at(-1)??"",a=(t.codePointAt(0)??0)+1;if(a>=55296&&a<=57343||a>1114111)return{exact:!0,lower:o,upper:o};const l=o.slice(0,o.length-t.length);return{exact:!1,lower:o,upper:l+String.fromCodePoint(a)}},Nn=(o,r,t)=>{const a={eq:(l,p)=>{if(!o.definition.filterFields?.includes(l))throw new $("INTERNAL",`field "${l}" is not a filter field of search index "${o.indexName}" on table "${r}"`);if(o.filters.length>=xt)throw new $("BAD_REQUEST",`search index "${o.indexName}" on table "${r}": at most ${String(xt)} .eq() filters are supported per search query`);return o.filters.push({field:l,value:p}),a},search:(l,p)=>{const E=o;if(l!==E.definition.field)throw new $("INTERNAL",`search index "${E.indexName}" on table "${r}" indexes "${E.definition.field}", not "${l}"`);const S=it(p,t).length;if(S>Ct)throw new $("BAD_REQUEST",`search index "${E.indexName}" on table "${r}": at most ${String(Ct)} search terms are supported (got ${String(S)})`);return E.field=l,E.query=p,E.hasQuery=!0,a}};return a},On=o=>{if(o.length>X)throw new $("BAD_REQUEST",`more than ${String(X)} documents match this search — narrow it with filters or read it a page at a time with .paginate()`)},jn=o=>Math.min(o.offset+o.numItems+1,X),Kn=o=>btoa(`search:${String(o)}`),Qn=o=>{let r;try{r=Un(o)}catch{return}if(!r.startsWith("search:"))return;const t=Number(r.slice(7));return Number.isInteger(t)&&t>=0?t:void 0},zn=o=>{if(typeof o.endCursor=="string")throw new $("BAD_REQUEST","bounded (endCursor) pagination is not supported on search queries — relevance order has no stable range boundary");if(!Number.isFinite(o.numItems))throw new $("BAD_REQUEST",`search pagination needs a finite numItems, got ${String(o.numItems)}`);const r=Math.max(0,Math.floor(o.numItems)),t=o.cursor?Qn(o.cursor):0;if(t===void 0)throw Pn();if(t+r>=X)throw new $("BAD_REQUEST",`search pagination reaches the ${String(X)}-document limit (offset ${String(t)} + ${String(r)} requested) — a page must end below the cap so the probe row that answers \`hasMore\` still fits: retry with numItems ${String(Math.max(1,X-t-1))} or fewer, or narrow the query or the filters instead`);return{numItems:r,offset:t}},Jn=(o,r)=>{const t=r.offset+r.numItems,a=r.numItems>0&&o.length>t;return{continueCursor:a?Kn(t):null,isDone:!a,page:o.slice(r.offset,t)}},Vn=o=>{if(o===void 0)return X+1;if(!Number.isFinite(o))return X;const r=Math.max(0,Math.floor(o));if(r>X)throw new $("BAD_REQUEST",`search returns at most ${String(X)} documents (asked for ${String(r)}) — narrow the query or paginate instead`);return r},Pe=o=>{const r=new Map;return t=>{const a=r.get(t);if(a!==void 0)return a;const l=o(Se(t));return r.set(t,l),l}},le=Se(ne),Yn=Pe(o=>`INSERT INTO ${o} (id, _creationTime, ${le}) VALUES (?, ?, ?)`),bt=Pe(o=>`UPDATE ${o} SET ${le} = ? WHERE id = ? AND ${le} = ?`),Xn=Pe(o=>`UPDATE ${o} SET _creationTime = ?, ${le} = ? WHERE id = ? AND ${le} = ?`),Zn=Pe(o=>`DELETE FROM ${o} WHERE id = ? AND ${le} = ?`),eo="SELECT changes() AS changed",Mt=new Map,to="",no=o=>{const r=JSON.stringify(o),t=Mt.get(r);if(t!==void 0)return t;const a=o.map(p=>i`SELECT ${i.raw(`'${p.replaceAll("'","''")}'`)} AS __t__, id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(p)} WHERE id = ${to}`),{sql:l}=Ht("sqlite",i`${rt(a)} LIMIT 1`);return Mt.set(r,l),l},oo=(o,r)=>r.map(()=>o),ro=/^[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/iu,io=o=>{if(!ro.test(o))throw new $("INTERNAL",`invalid clientId ${JSON.stringify(o)}: a client-supplied row id must be a UUID`)},Dt=50,jt=500,Fe=Math.floor(Nt.boundParams/3),ge=Nt.boundParams,so=128,ce=(o,r,t)=>{const a=r??jt;if(o>a)throw new $("BATCH_LIMIT_EXCEEDED",`${t}: batch of ${String(o)} exceeds the limit of ${String(a)} (raise options.limit or chunk the call)`,{status:400})},co=o=>{const r={eq:(t,a)=>(o.sqlConditions.push({comparator:"=",field:t,value:a}),r),gt:(t,a)=>(o.sqlConditions.push({comparator:">",field:t,value:a}),r),gte:(t,a)=>(o.sqlConditions.push({comparator:">=",field:t,value:a}),r),lt:(t,a)=>(o.sqlConditions.push({comparator:"<",field:t,value:a}),r),lte:(t,a)=>(o.sqlConditions.push({comparator:"<=",field:t,value:a}),r)};return r},ao=o=>Math.max(o,X),Kt=(o,r)=>{const t=o.filters.map(a=>i`${Y(a.field)} = ${oe(a.value)}`);return r&&t.push(r),t},lo=(o,r,t,a,l)=>{const p=it(t.query,ot(t.definition.language));if(p.length===0)return[];const E=rn(r,t.indexName),S=`${E}__vocab`,T=p.length-1,L=p.map((F,M)=>{const q=Hn(F,M===T),z=q.exact?i`${i.identifier("term")} = ${q.lower}`:i`${i.identifier("term")} >= ${q.lower} AND ${i.identifier("term")} < ${q.upper}`;return i`SELECT ${i.identifier("doc")}, ${i.raw(String(M))} AS ${i.identifier("__term__")}, COUNT(*) AS ${i.identifier("__n__")} FROM ${i.identifier(S)} WHERE ${z} GROUP BY ${i.identifier("doc")}`}),y=p.map((F,M)=>i`SUM(CASE WHEN u.${i.identifier("__term__")} = ${i.raw(String(M))} THEN u.${i.identifier("__n__")} ELSE 0 END)`),A=i`SELECT f.${i.identifier(Me)} AS ${i.identifier(Me)}, ${i.join(y,i` + `)} AS ${i.identifier("__score__")} FROM (${rt(L)}) u JOIN ${i.identifier(E)} f ON f.rowid = u.${i.identifier("doc")} GROUP BY f.${i.identifier(Me)} HAVING ${i.join(y.map(F=>i`${F} > 0`),i` AND `)}`,v=Kt(t,l);let _=i`SELECT m.id, m._creationTime, m.${i.identifier(ne)}, s.${i.identifier("__score__")} AS ${i.identifier("__score__")} FROM (${A}) s JOIN ${i.identifier(r)} m ON m.id = s.${i.identifier(Me)}`;v.length>0&&(_=i`${_} WHERE ${i.join(v,i` AND `)}`),_=i`${_} ORDER BY s.${i.identifier("__score__")} DESC, m._creationTime DESC, m.id ASC LIMIT ${i.raw(String(a))}`;const H=[];for(const F of O(o,_)){const M=Gt(F);if(M){const q=F.__score__;H.push({document:M,score:typeof q=="number"?q:Number(q??0)})}}return H},uo=(o,r,t,a,l)=>{const p=ot(t.definition.language),E=it(t.query,p);if(E.length===0)return[];const S=Kt(t,l);let T=i`SELECT id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(r)}`;S.length>0&&(T=i`${T} WHERE ${i.join(S,i` AND `)}`),T=i`${T} ORDER BY _creationTime DESC, id ASC LIMIT ${i.raw(String(ao(a)))}`;const L=O(o,T).toArray(),y=[];for(const A of L){const v=Gt(A);if(!v)continue;const _=Gn(sn(v,t.definition),E);_>0&&y.push({creationTime:typeof v._creationTime=="number"?v._creationTime:0,doc:v,id:typeof v._id=="string"?v._id:"",score:_})}return y.sort((A,v)=>v.score-A.score||v.creationTime-A.creationTime||A.id.localeCompare(v.id)),y.slice(0,a).map(A=>({document:A.doc,score:A.score}))},Xe=(o,r,t,a)=>{if(!Number.isFinite(o.lat)||o.lat<-90||o.lat>90||!Number.isFinite(o.lng)||o.lng<-180||o.lng>180)throw new $("BAD_REQUEST",`geo index "${a}" on table "${t}": ${r} must have a finite lat in [-90, 90] and lng in [-180, 180]`)},fo=(o,r)=>{const t=o,a={near:(l,p)=>{if(t.within)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near() or .within(), not both`);if(Xe(l,".near() point",r,t.indexName),!Number.isFinite(p)||p<=0)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .near() radiusMeters must be a finite number > 0, got ${String(p)}`);return t.near={point:{lat:l.lat,lng:l.lng},radiusMeters:p},a},within:l=>{if(t.near)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near() or .within(), not both`);if(Xe(l.sw,".within() sw corner",r,t.indexName),Xe(l.ne,".within() ne corner",r,t.indexName),l.sw.lat>l.ne.lat)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .within() corners are transposed (sw.lat > ne.lat)`);if(l.sw.lng>l.ne.lng)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .within() box crosses the antimeridian (sw.lng > ne.lng), which is not supported — split it into two boxes at ±180 and union the results`);return t.within={ne:{lat:l.ne.lat,lng:l.ne.lng},sw:{lat:l.sw.lat,lng:l.sw.lng}},a}};return a},ho=(o,r)=>{const t=o[r];if(t===null||typeof t!="object")return;const{lat:a,lng:l}=t;return typeof a=="number"&&typeof l=="number"?{lat:a,lng:l}:void 0},wo=(o,r)=>{const t=ho(o,r.definition.field);if(!t)return;const a=typeof o._creationTime=="number"?o._creationTime:0;if(r.near){const l=Tn(r.near.point,t);return l<=r.near.radiusMeters?{creationTime:a,distance:l}:void 0}return Rn(t,r.within)?{creationTime:a,distance:0}:void 0},po=(o,r,t,a)=>{if(!t.near&&!t.within)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near(point, radius) or .within(box)`);const l=t.near?Sn(t.near.point,t.near.radiusMeters):_n(t.within),p=En(r,t.indexName),E=l.map(A=>i`(g.${i.identifier("__geohash__")} >= ${A} AND g.${i.identifier("__geohash__")} < ${`${A}{`})`),S=[i`(${i.join(E,i` OR `)})`];a&&S.push(a);const T=i`SELECT m.id, m._creationTime, m.${i.identifier(ne)} FROM ${i.identifier(p)} g JOIN ${i.identifier(r)} m ON m.id = g.${i.identifier("__id__")} WHERE ${i.join(S,i` AND `)}`,L=O(o,T).toArray(),y=[];for(const A of L){const v=de(A),_=v?wo(v,t):void 0;v&&_&&y.push({creationTime:_.creationTime,distance:_.distance,doc:v})}return y.sort((A,v)=>A.distance-v.distance||v.creationTime-A.creationTime),y},Qt=(o,r,t,a)=>{const l=[];for(const p of o)if(r.every(E=>E(a(p)))&&(l.push(p),typeof t=="number"&&l.length>=t))break;return l},go=(o,r,t,a,l,p=()=>{})=>{const E=t.within!==void 0,S=po(o,r,t,l).map(T=>({distanceMeters:E?null:T.distance,document:T.doc}));return p(S.length),typeof a=="number"?S.slice(0,Math.max(0,Math.floor(a))):S},zt=(o,r,t,a,l,p=()=>{})=>{const{geo:E}=t;if(!E)throw new $("INTERNAL","runGeoTerminalScored called without a staged geo query");const S=t.inMemoryFilters.length>0,T=go(o,r,E,S?void 0:l,a,p);return S?Qt(T,t.inMemoryFilters,l,L=>L.document):T},Jt=(o,r,t,a)=>{const l=`SELECT id, _creationTime, ${Se(ne)} FROM ${Se(o)}`,p=`ORDER BY ${t}${a===void 0?"":` LIMIT ${String(a)}`}`;return r===void 0?Be(`${l} ${p}`):Ee(`${l} WHERE `,r,` ${p}`)},$o=(o,r,t,a,l,p=()=>{})=>zt(o,r,t,a,l,p).map(E=>E.document),yo=(o,r,t,a,l,p,E=()=>{})=>{const S=[];for(const A of t.sqlConditions)S.push(i`${Y(A.field)} ${i.raw(A.comparator)} ${oe(A.value)}`);a&&S.push(a);let T=i`SELECT id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(r)}`;S.length>0&&(T=i`${T} WHERE ${i.join(S,i` AND `)}`),T=i`${T} ORDER BY ${l}`,typeof p=="number"&&t.inMemoryFilters.length===0&&(T=i`${T} LIMIT ${i.raw(String(Math.max(0,Math.floor(p))))}`);const L=O(o,T).toArray();E(L.length);const y=[];for(const A of L){const v=de(A);if(v&&t.inMemoryFilters.every(_=>_(v))&&(y.push(v),typeof p=="number"&&y.length>=p))break}return y},$e={fieldRef:Y,serialize:oe},Vt=(o,r)=>{const t=r===void 0?void 0:o.shape[r];return t!==void 0&&qn(t)},kt=(o,r)=>r.some(t=>Vt(o,t)),Lt=(o,r,t)=>{if(Vt(o,r))throw new $("BAD_REQUEST",`${t}: "${r}" is stored as an order-preserving key, which SQL cannot reduce or group — declare an aggregateIndex covering this (by, field, op) so the maintained companion answers it`)},st={fieldRef:o=>Be(We(o)),serialize:oe},Eo=o=>{let r=0;const t=[],a={fieldRef:l=>Be(We(l)),relationExists:l=>{const{childWhere:p,negated:E,parentTable:S,relation:T}=l,L=`__rel_${String(r)}`,y=t.at(-1)??S;r+=1,o(T.table,G);const A=T.kind==="one"?T.field:T.references,v=T.kind==="one"?T.references:T.field,_=Be(`${mt(L,v)} = ${mt(y,A)}`);t.push(L);const H=te(p,a,Ue);t.pop();const F=H===void 0?_:Ee(_," AND ",H),M=Ee("EXISTS (SELECT 1 FROM ",It(T.table)," AS ",It(L)," WHERE ",F,")");return E?Ee("NOT ",M):M},serialize:oe};return a},Yt=o=>{const r=o.map(t=>`${We(t.field)} ${t.direction==="desc"?"DESC":"ASC"}`);return o.some(t=>t.field==="_id"||t.field==="id")||r.push(`${We("id")} ${An(o)==="desc"?"DESC":"ASC"}`),r.join(", ")},mo={"<":"lt","<=":"lte","=":"eq",">":"gt",">=":"gte"},So=(o,r)=>{const t=o.order;return o.indexFields.length>0?Ze(o.indexFields.map(a=>({[a]:t})),r):Ze([{_creationTime:t}],r)},_o=(o,r,t,a)=>{const l=o.sqlConditions.map(p=>({[p.field]:{[mo[p.comparator]??"eq"]:p.value}}));if(t&&l.push(Ot(r,et(t))),a&&l.push(In(r,et(a))),l.length!==0)return l.length===1?l[0]:{AND:l}},To=(o,r,t)=>{const a=[];for(const l of o){const p=de(l);if(p&&r.every(E=>E(p))&&(a.push(p),t!==void 0&&a.length>t))break}return a},Ro=(o,r,t,a,l,p,E=()=>{})=>{const S=Math.max(0,Math.floor(l.numItems)),T=So(a,t),L=typeof l.endCursor=="string",y=te(_o(a,T,l.cursor,l.endCursor),st,Ue),A=p&&y?Ee(y," AND ",p):p??y,v=a.inMemoryFilters.length>0,_=Jt(r,A,Yt(T),v||L?void 0:S+1),H=me(o,_.text,..._.params).toArray();E(H.length);const F=To(H,a.inMemoryFilters,v||L?void 0:S);if(L){const N=F.length>=2?F[Math.floor(F.length/2)-1]:void 0;return{continueCursor:l.endCursor??null,isDone:!0,page:F,splitCursor:N?tt(N,T):null}}const M=F.length>S,q=M?F.slice(0,S):F,z=q.at(-1);return{continueCursor:M&&z?tt(z,T):null,isDone:!M,page:q}};class vo extends ${constructor(r="unique() found more than one matching document"){super("NOT_UNIQUE",r,{name:"NotUniqueError"})}}const Ao=/\s/u,Io=String.fromCodePoint(0),Ft=(o,r,t)=>{if(!o.tables[r])throw new $("INTERNAL",`unknown table: ${r}`);return typeof t!="string"||t.length===0||Ao.test(t)||t.includes(Io)?null:t},Co=(o,r,t,a=()=>{},l=()=>{},p=()=>{})=>{const E=r.tables[t];if(!E)throw new $("INTERNAL",`unknown table: ${t}`);const S=ae(E.softDeleteMode,void 0),T=S?te(S,$e):void 0,L=S?te(S,st,Ue):void 0,y={indexFields:[],indexName:void 0,inMemoryFilters:[],order:"asc",sqlConditions:[]};let A=0;const v=m=>{const{search:b}=y;if(!b)throw new $("INTERNAL","runSearchFetch called without a staged search");hn(o,t,E);const I=y.inMemoryFilters.length>0,x=Vn(I?void 0:m),J=yn(o)?lo(o,t,b,x,T):uo(o,t,b,x,T);return I?(A=J.length,Qt(J,y.inMemoryFilters,m,ue=>ue.document)):(m===void 0&&On(J),J)},_=m=>v(m).map(b=>b.document),H=m=>{const b=zn(m);return Jn(_(jn(b)),b)},F=()=>{const m=y.indexFields.length>0?y.indexFields:["_creationTime"],b=y.order==="desc"?"DESC":"ASC",I=m.map(x=>i`${Y(x)} ${i.raw(b)}`);return m.includes("_creationTime")||I.push(i`${Y("_creationTime")} ${i.raw(b)}`),m.some(x=>x==="_id"||x==="id")||I.push(i`${Y("id")} ${i.raw(b)}`),i.join(I,i`, `)},M=()=>{if(y.search||y.geo||y.indexName===void 0){l(void 0);return}l(Dn(t,y.indexName,y.indexFields,y.sqlConditions,oe))},q=m=>{M();let b=0;const I=(()=>{if(y.search){const x=_(m);return b=A,x}return y.geo?$o(o,t,y,T,m,x=>{b=x}):yo(o,t,y,T,F(),m,x=>{b=x})})();return p(Math.max(b,I.length)),I},z=()=>{if(!y.search&&!y.geo)throw new $("INTERNAL",`ctx.db.query("${t}").collectWithScores() requires a staged .withSearchIndex(...) or .withGeoIndex(...)`);M();let m=0;const b=(()=>{if(y.search){const I=v(void 0);return m=A,I}return zt(o,t,y,T,void 0,I=>{m=I})})();return p(Math.max(m,b.length)),b},N={async*[Symbol.asyncIterator](){if(y.search){yield*q(void 0);return}const m=[...y.inMemoryFilters];let b;y.inMemoryFilters=[];try{for(;;){const I=await N.paginate({cursor:b??null,numItems:so});for(const x of I.page)m.every(J=>J(x))&&(yield x);if(I.isDone||I.continueCursor===null)return;b=I.continueCursor}}finally{y.inMemoryFilters=m}},async collect(){return q(void 0)},async collectWithScores(){return z()},filter(m){return y.inMemoryFilters.push(m),N},async first(){return q(y.inMemoryFilters.length>0?void 0:1)[0]??null},order(m){return y.order=m==="desc"?"desc":"asc",N},async paginate(m){let b=0;if(M(),y.search){const x=H(m);return p(x.page.length),x}if(y.geo)throw new $("INTERNAL","pagination is not supported on geo queries; use .take(n) or .collect()");const I=Ro(o,t,E.shape,y,m,L,x=>{b=x});return p(Math.max(b,I.page.length)),I},async take(m){return q(m)},async unique(){const m=q(y.inMemoryFilters.length>0?void 0:2);if(m.length>1)throw new vo(`unique() on table "${t}" matched ${String(m.length)} documents; expected at most one`);return m[0]??null},withGeoIndex(m,b){const I=(E.geoIndexes??[]).find(J=>J.name===m);if(!I)throw new $("INTERNAL",`unknown geo index "${m}" on table "${t}"`);a(t,m,"geo");const x={definition:I,indexName:m};if(y.geo=x,b(fo(x,t)),!x.near&&!x.within)throw new $("INTERNAL",`geo index "${m}" on table "${t}" requires a .near(point, radius) or .within(box) call`);return N},withIndex(m,b){const I=E.indexes.find(x=>x.name===m);if(!I)throw new $("INTERNAL",`unknown index "${m}" on table "${t}"`);return a(t,m,"index"),y.indexName=m,y.indexFields=I.fields,b&&b(co(y)),N},withSearchIndex(m,b){const I=(E.searchIndexes??[]).find(J=>J.name===m);if(!I)throw new $("INTERNAL",`unknown search index "${m}" on table "${t}"`);a(t,m,"search");const x={definition:I,field:I.field,filters:[],hasQuery:!1,indexName:m,query:""};if(y.search=x,b(Nn(x,t,ot(I.language))),!x.hasQuery)throw new $("INTERNAL",`search index "${m}" on table "${t}" requires a .search(field, query) call`);return N}};return N},qt=(o,r,t)=>{const a={...r};for(const[l,p]of Pt(o)){if(p.serverDefault){a[l]=p.serverDefault({auth:t});continue}a[l]===void 0&&(p.defaultFn?a[l]=p.defaultFn():"defaultValue"in p&&(a[l]=p.defaultValue))}return a},Wt=(o,r,t,a)=>{const l=t;for(const[p,E]of Pt(o)){if(E.serverDefault){p in r&&(l[p]=E.serverDefault({auth:a}));continue}E.onUpdateFn&&!(p in r)&&(l[p]=E.onUpdateFn())}},Bt=(o,r)=>{for(const t of Object.keys(r))if(r[t]===void 0)throw new $("INTERNAL",`Cannot ${o} field '${t}' to undefined — use null to clear a nullable field, or omit the key to leave it unchanged.`)},xo=/unique constraint failed/i,bo=o=>o instanceof Error&&xo.test(o.message),nt=(o,r,t,a)=>{try{me(o,t,...a)}catch(l){throw bo(l)?new ye(`unique constraint violation on "${r}"`,"unique"):l}},qe=(o,r,t,a)=>{if(nt(o,r,t,a),me(o,eo).one().changed===0)throw new ye(`optimistic concurrency conflict on "${r}" — the row changed during this mutation; refetch and retry`,"occ")},Ut=(o,r,t,a,l,p,E)=>{const S=[];for(let A=0;A<t.length+1;A+=1){const v=[];for(let M=0;M<A;M+=1)v.push(i`${i.identifier(t[M])} IS ${p[M]}`);const _=t[A],H=a[A];if(_!==void 0&&H!==void 0){const M=H.direction==="desc"?">":"<";v.push(i`${i.identifier(_)} ${i.raw(M)} ${p[A]}`)}else v.push(i`${i.identifier(bn)} < ${E}`);const[F]=v;S.push(v.length===1&&F!==void 0?F:i`(${i.join(v,i` AND `)})`)}const T=i.join(S,i` OR `),L=O(o,i`SELECT COUNT(*) AS c FROM ${i.identifier(r)} WHERE ${i.identifier("__partition__")} = ${l} AND (${T})`).one(),y=O(o,i`SELECT COUNT(*) AS c FROM ${i.identifier(r)} WHERE ${i.identifier("__partition__")} = ${l}`).one();return{before:L.c,total:y.c}},ar=o=>{const{sql:r}=o,{schema:t}=o,a=o.broadcast??(()=>{});let l;const p=()=>o.inTransaction?.()===!0,E=e=>t.tables[e]?.commitOrderedMode!==!0?{}:((l===void 0||!p())&&(l=pn(r)),{[gn]:l}),S=(e,...n)=>{const s=t.tables[e]?.indexes;if(!s||s.length===0)return;const f=[];for(const h of n)h&&f.push(...Mn(s,h,oe));return f.length>0?f:void 0},{headroom:T}=o;let L=!1;const y=async e=>{const n=L;L=!0;try{return await e()}finally{L=n}},A=o.onRead??(()=>{}),v=o.onReadRange??(e=>{A(e.table,G)}),_=(e,n)=>{n!==void 0&&n!==G&&!L&&T?.recordRead(1),A(e,n)},H=o.onIndexUse??(()=>{}),F=o.onWrite??(()=>{}),M=e=>{L||T?.recordWrite(e)},q=async e=>{M(e.doc),await F(e)},{cache:z}=o,N=o.clock??(()=>Date.now()),m=o.idGenerator??(()=>crypto.randomUUID()),b=o.scheduler??an,{globalDb:I}=o,x=o.auth??{identity:null,userId:null},J=o.cdc??!1,ue=b,Xt=Wn({scheduler:typeof ue.list=="function"&&typeof ue.get=="function"?ue:void 0,storage:o.storage}),fe=(e,n,s,f)=>{J&&!$n(t.tables[e])&&wn(r,N(),e,n,s,f)},ie=e=>t.tables[e]?.shardMode?.kind==="global",ct=(e,n)=>{if(ie(e)){if(!I)throw new $("INTERNAL",`cross-backend ${n} for global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return I}return B},Ge=e=>ct(e,"cascade"),K=(e,n)=>{if(ie(e)){if(!I)throw new $("INTERNAL",`${n} on global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return I}},at=async(e,n,s,f,h)=>{h&&M(s);const u=await e.insert(n,s,f);return a({key:u,op:"insert",row:{...s,_id:u},table:n}),u},He=(e,n)=>ct(e,"relation load").findMany(e,n),dt=(e,n)=>(ie(e)&&_(e,G),He(e,n)),Zt=e=>!ie(e.table),lt=o.relationExistsPushDown??"auto",ut=lt!=="never",{maxRelationKeys:ft}=o,_e=(e,n,s)=>Rt(e,{fetcher:dt,maxRelationKeys:ft,relationBaseWhere:s,schema:t,tableName:n}),ht=async(e,n,s,f)=>{const h=K(e,"relation grouped count");if(h)return _(e,G),Ln((W,C)=>h.count(W,C),e,n,s,f);const u=t.tables[e];if(!u)throw new $("INTERNAL",`unknown table: ${e}`);_(e,G);const c=ae(u.softDeleteMode,void 0),d={[n]:{in:s}},w=Q(Q(d,f),c),R=await _e(w,e,void 0),g=te(R,$e),k=Y(n);let D=i`SELECT ${k} AS __fk__, COUNT(*) AS count FROM ${i.identifier(e)}`;g&&(D=i`${D} WHERE ${g}`),D=i`${D} GROUP BY ${k}`;const U=O(r,D).toArray();return new Map(U.map(W=>[W.__fk__,W.count]))};let Te=0;const wt=new Set;for(const[e,n]of Object.entries(t.tables))for(const s of Object.values(n.triggerMap??{}))wt.add(`${e} ${s.timing} ${s.op}`);const Z=(e,n,s)=>wt.has(`${e} ${n} ${s}`),ee=async(e,n,s)=>{if(Te+=1,Te>Dt)throw Te-=1,new ye(`trigger recursion exceeded ${String(Dt)} levels on "${s.table}" — check for a self-triggering write`,"trigger");try{await Bn({ctx:tn,event:s,op:n,schema:t,tableName:s.table,timing:e})}finally{Te-=1}},{ensureBackfilledForTable:he,ensureBackfilledIndex:Ne,ensureRankBackfilled:Oe,ensureRankBackfilledForTable:we,syncAggregates:Re,syncCompanionsForInsert:pt,syncGeo:ve,syncRanks:pe,syncSearch:Ae}=on({broadcast:a,indexKeysFor:(e,n)=>S(e,n),invalidateCache:(e,n,s)=>z?.invalidate(e,n,S(e,s)),recordCdc:fe,schema:t,sql:r}),gt=(e,n,s)=>{const{shardMode:f}=n;if(f?.kind==="shardBy"&&!(f.field!==void 0&&(s.partitionBy??[]).includes(f.field)))throw Object.assign(new Error(`rank index "${s.name}" on "${e}" partitions across shards (shard key "${f.field??"?"}" is not in partitionBy) — a shard-local rank()/rankPage() would be wrong; roll it up through the Query Coordinator instead`),{code:"CROSS_SHARD_RANK_UNSUPPORTED",name:"LunoraError",status:400})},$t=e=>Object.entries(t.tables).filter(([,n])=>n.shardMode?.kind!=="global").map(([n])=>n).filter(n=>e===void 0||n===e),re=(e,n)=>{const s=$t(n);for(let f=0;f<s.length;f+=ge){const h=s.slice(f,f+ge),[u]=me(r,no(h),...oo(e,h)).toArray();if(!u)continue;const c=u.__t__,d=de(u);if(typeof c!="string"||!d)return;const w=u[ne];return{docJson:typeof w=="string"?w:se(w??{}),row:d,tableName:c}}},en=(e,n)=>{const s=[...new Set(e)],f=new Map;if(s.length===0)return f;const h=$t(n);for(let u=0;u<h.length;u+=ge){const c=h.slice(u,u+ge),d=Math.floor(ge/c.length),w=mn(i`${i.identifier("id")}`,s,!1,d),R=c.map(g=>i`SELECT ${i.raw(`'${g.replaceAll("'","''")}'`)} AS __t__, id FROM ${i.identifier(g)} WHERE ${w}`);for(const g of O(r,rt(R))){const{id:k,__t__:D}=g;typeof D=="string"&&typeof k=="string"&&f.set(k,D)}}return f},yt={assertRankPartitionLocal:gt,ensureRankBackfilled:Oe,onRead:_,rowToDocument:de,schema:t,sql:r},B={system:Xt,async aggregate(e,n){const s=K(e,"aggregate");if(s)return _(e,G),s.aggregate(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);if(De(n.op),n.op==="count")return B.count(e,{baseWhere:n.baseWhere,relationBaseWhere:n.relationBaseWhere,restrictsCounts:n.restrictsCounts,where:n.where});if(!n.field)throw new $("INTERNAL",`aggregate(${e}, { op: "${n.op}" }): "field" is required for non-count reducers`);_(e,G);const h=ae(f.softDeleteMode,void 0),u=Q(Q(n.baseWhere,n.where),h),c=await _e(u,e,n.relationBaseWhere),d=c!==u;if(f.aggregateIndexes&&!n.baseWhere&&!d&&(!h||kt(f,[n.field]))){const W=fn(f.aggregateIndexes,n.op,n.field,n.where);if(W){Ne(e,W.index);const C=Ke(W.index.by??[],W.key),j=je(e,W.index.name),V=O(r,i`SELECT ${ke} AS value, ${Je} AS count FROM ${i.identifier(j)} WHERE ${Le} = ${C}`).toArray()[0];return Qe(n.op,V)}}Lt(f,n.field,`aggregate(${e}, { op: "${n.op}", field: "${n.field}" })`);const w=te(c,$e),R=De(n.op),g=Y(n.field);let k=i`SELECT ${i.raw(R)}(${g}) AS value FROM ${i.identifier(e)}`;w&&(k=i`${k} WHERE ${w}`);const U=O(r,k).toArray()[0]?.value;return U??null},asId(e,n){const s=Ft(t,e,n);if(s===null)throw new $("BAD_REQUEST",`asId("${e}", …): "${n}" is not a valid id for table "${e}"`,{status:400});return s},async count(e,n){const s=K(e,"count");if(s)return _(e,G),s.count(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=dn(n);if(h.restrictsCounts)throw new ze(e);_(e,G);const u=ae(f.softDeleteMode,void 0),c=Q(Q(h.baseWhere,h.where),u),d=await _e(c,e,h.relationBaseWhere),w=d!==c;if(f.aggregateIndexes&&!h.baseWhere&&!w&&!u){const D=un(f.aggregateIndexes,h.where);if(D){Ne(e,D.index);const U=Ke(D.index.by??[],D.key),W=je(e,D.index.name),C=O(r,i`SELECT ${ke} AS value FROM ${i.identifier(W)} WHERE ${Le} = ${U}`).toArray();return C[0]===void 0?0:C[0].value??0}}const R=te(d,$e);let g=i`SELECT COUNT(*) AS count FROM ${i.identifier(e)}`;return R&&(g=i`${g} WHERE ${R}`),O(r,g).one().count},async delete(e,n,s){const f=re(e,n);if(!f){const g=n===void 0?I:void 0;g&&(M(void 0),await g.delete(e,void 0,s));return}const{docJson:h,row:u,tableName:c}=f,d=t.tables[c],w=s?.hard===!0,R=!w&&d?.softDeleteMode?d.softDeleteMode.field:void 0;if(!(R&&u[R]!==null&&u[R]!==void 0)){if(Z(c,"before","delete")&&await ee("before","delete",{id:e,op:"delete",previous:u,table:c}),await kn({deletedId:e,deletedReference:g=>u[g],findHolders:async(g,k,D)=>(await Ge(g).findMany(g,{includeDeleted:w,where:{[k]:D}})).page,onCascade:(g,k)=>Ge(g).delete(k,void 0,s),onRestrict:g=>{throw new ye(g,"restrict")},onSetNull:(g,k,D)=>Ge(g).patch(k,{[D]:null}),schema:t,tableName:c}),he(c),we(c),R){const g={...u,...E(c),[R]:N(),_id:e};qe(r,c,bt(c),[se(g),e,h]),Ae(c,e,g,u),ve(c,e,void 0),Re(c,u,g),pe(c,e,u,void 0),z?.invalidate(c,e,S(c,u,g)),fe(c,e,"update",g),a({indexKeys:S(c,u,g),key:e,op:"update",row:g,table:c}),Z(c,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:u,table:c}),await q({id:e,op:"delete",table:c});return}qe(r,c,Zn(c),[e,h]),Ae(c,e,void 0),ve(c,e,void 0),Re(c,u,void 0),pe(c,e,u,void 0),z?.invalidate(c,e,S(c,u)),fe(c,e,"delete"),a({indexKeys:S(c,u),key:e,op:"delete",table:c}),Z(c,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:u,table:c}),await q({id:e,op:"delete",table:c})}},async deleteAll(e,n){if(!t.tables[e])throw new $("INTERNAL",`unknown table: ${e}`);const s=Math.max(1,n?.chunkSize??jt),f=n?.hard===void 0?void 0:{hard:n.hard},h=ie(e)?void 0:e;let u=0;return await y(async()=>{for(;;){const d=(await B.findMany(e,{limit:s})).page.map(w=>String(w._id));if(d.length===0)break;for(const w of d)await B.delete(w,h,f),u+=1;if(d.length<s)break}}),{deleted:u}},async deleteMany(e,n,s){ce(e.length,n?.limit,"deleteMany");for(const f of e)await B.delete(f,s);return{deleted:e.length}},async deleteWhere(e,n,s){const u=(await(K(e,"deleteWhere")??B).findMany(e,{where:n})).page.map(c=>String(c._id));if(ce(u.length,s?.limit,"deleteWhere"),B.deleteMany===void 0)throw new $("INTERNAL",`ctx.db.${e}.deleteMany is unavailable: this writer has no batch delete`);return B.deleteMany(u,s)},async findFirst(e,n={}){return(await B.findMany(e,{...n,limit:1,omitContinueCursor:!0})).page[0]??null},async findFirstOrThrow(e,n={}){const s=await B.findFirst(e,n);if(s===null)throw new vn(`findFirstOrThrow: no "${e}" document matched`);return s},async findMany(e,n={}){const s=K(e,"findMany");if(s)return _(e,G),s.findMany(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=!n.where&&!n.baseWhere;h?_(e,G):_(e);const u=Ze(n.orderBy,f.shape),c=n.cursor?Ot(u,et(n.cursor)):void 0;let d=Q(n.baseWhere,n.where);d=Q(d,ae(f.softDeleteMode,n.includeDeleted)),d=await Rt(d,{canPushExists:ut?Zt:void 0,existsPushMode:lt==="always"?"always":"auto",fetcher:dt,maxRelationKeys:ft,relationBaseWhere:n.relationBaseWhere,schema:t,tableName:e}),c&&(d=d?{AND:[d,c]}:c);const w=ut?Eo(_):st,R=te(d,w,Ue),g=typeof n.limit=="number"?Math.max(0,Math.floor(n.limit)):void 0,k=Jt(e,R,Yt(u),g===void 0?void 0:g+1),D=me(r,k.text,...k.params).toArray();h&&!L&&T?.recordRead(D.length);const U=[];for(const V of D){const P=de(V);P&&(U.push(P),!h&&typeof P._id=="string"&&_(e,P._id))}if(g===void 0)return n.with&&await vt({groupedCounter:ht,fetcher:He,parents:U,...At(n),schema:t,tableName:e,with:n.with}),{continueCursor:null,isDone:!0,page:St(U,n.select,n.with)};const W=U.length>g,C=W?U.slice(0,g):U,j=C.at(-1);return n.with&&await vt({fetcher:He,groupedCounter:ht,parents:C,...At(n),schema:t,tableName:e,with:n.with}),{continueCursor:W&&j&&n.omitContinueCursor!==!0?tt(j,u):null,isDone:!W,page:St(C,n.select,n.with)}},async get(e,n){const s=re(e,n);if(!s){const f=n===void 0?I:void 0;return f?f.get(e):null}return _(s.tableName,e),s.row},async lookupById(e,n){const s=re(e,n);return s?(_(s.tableName,e),{row:s.row,tableName:s.tableName}):null},async groupBy(e,n){const s=K(e,"groupBy");if(s)return _(e,G),s.groupBy(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);_(e,G);const h=n.agg??{op:"count"};if(De(h.op),h.op!=="count"&&!h.field)throw new $("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);const u=ae(f.softDeleteMode,void 0),c=Q(Q(n.baseWhere,n.where),u),d=await _e(c,e,n.relationBaseWhere),w=d!==c,R=[...n.by,h.field];if(f.aggregateIndexes&&!n.baseWhere&&!w&&(!u||kt(f,R))){const C=ln(f.aggregateIndexes,h.op,h.field,n.by,n.where),j=C===void 0?0:Object.keys(C.partial).length,V=C?.index.by?.length??0;if(C&&(j===0||j===V)){Ne(e,C.index);const P=je(e,C.index.name),Ie=Object.keys(C.partial),Ce=[];if(Ie.length===(C.index.by??[]).length&&Ie.length>0){const xe=Ke(C.index.by??[],C.partial),be=O(r,i`SELECT ${ke} AS value, ${Je} AS count FROM ${i.identifier(P)} WHERE ${Le} = ${xe}`).toArray();return be.length>0&&Ce.push({key:{...C.partial},value:Qe(h.op,be[0])}),Ce}const nn=O(r,i`SELECT ${Le} AS key, ${ke} AS value, ${Je} AS count FROM ${i.identifier(P)}`).toArray();for(const xe of nn){const be=cn(JSON.parse(xe.key));Ce.push({key:be,value:Qe(h.op,xe)})}return Ce}}for(const C of R){if(C===void 0)continue;const j=C===h.field?`groupBy(${e}, { agg: { op: "${h.op}", field: "${C}" } })`:`groupBy(${e}, { by: [..."${C}"] })`;Lt(f,C,j)}const g=te(d,$e),k=n.by.map(C=>i`${Y(C)} AS ${i.identifier(C)}`);if(h.op==="count")k.push(i`COUNT(*) AS value`);else{const{field:C}=h;if(C===void 0)throw new $("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);k.push(i`${i.raw(De(h.op))}(${Y(C)}) AS value`)}let D=i`SELECT ${i.join(k,i`, `)} FROM ${i.identifier(e)}`;g&&(D=i`${D} WHERE ${g}`),D=i`${D} GROUP BY ${i.join(n.by.map(C=>Y(C)),i`, `)}`;const U=O(r,D).toArray(),W=[];for(const C of U){const j={};for(const P of n.by)j[P]=C[P]??null;const{value:V}=C;W.push({key:j,value:V==null?null:Number(V)})}return W},async insert(e,n,s){const f=K(e,"insert");if(f)return at(f,e,n,s,!0);const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);const u=qt(h,n,x);Ye(h,u);let c;s?.clientId!==void 0?(io(s.clientId),c=s.clientId):s?.allowExplicitId&&typeof u._id=="string"?c=u._id:c=m();const d=s?.allowExplicitId&&typeof u._creationTime=="number"?u._creationTime:N(),w={...u,...E(e),_creationTime:d,_id:c};return Z(e,"before","insert")&&await ee("before","insert",{doc:{...w},id:c,op:"insert",table:e}),he(e),we(e),nt(r,e,Yn(e),[c,d,se(w)]),pt(e,c,w),Z(e,"after","insert")&&await ee("after","insert",{doc:w,id:c,op:"insert",table:e}),await q({doc:w,id:c,op:"insert",table:e}),c},async insertManyUnsafe(e,n,s){if(ce(n.length,s?.limit,"insertManyUnsafe"),n.length===0)return[];const f=K(e,"insert");if(f){const d=[];for(const w of n)M(w);for(const w of n){const R=await f.insert(e,w,{allowExplicitId:s?.allowExplicitId});a({key:R,op:"insert",row:{...w,_id:R},table:e}),d.push(R)}return d}const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);he(e),we(e);const u=[];for(let d=0;d<n.length;d+=Fe)u.push(E(e));const c=n.map((d,w)=>{const R=qt(h,d,x),g=s?.allowExplicitId===!0&&typeof R._id=="string"?R._id:m(),k=s?.allowExplicitId===!0&&typeof R._creationTime=="number"?R._creationTime:N(),D={...R,...u[Math.floor(w/Fe)],_creationTime:k,_id:g};return{creationTime:k,document:D,id:g}});for(const d of c)M(d.document);for(let d=0;d<c.length;d+=Fe){const w=i.join(c.slice(d,d+Fe).map(g=>i`(${g.id}, ${g.creationTime}, ${se(g.document)})`),i`, `),R=Ht("sqlite",i`INSERT INTO ${i.identifier(e)} (id, _creationTime, ${i.identifier(ne)}) VALUES ${w}`);nt(r,e,R.sql,R.params)}for(const{document:d,id:w}of c)pt(e,w,d),await F({doc:d,id:w,op:"insert",table:e});return c.map(d=>d.id)},async insertMany(e,n,s){ce(n.length,s?.limit,"insertMany");const f=s?.skipDuplicates===!0,h=[],u=K(e,"insert");if(u)for(const d of n)M(d);const c=async d=>u?at(u,e,d,void 0,!1):B.insert(e,d);for(const d of n)try{h.push(await c(d))}catch(w){if(f&&w instanceof ye&&w.kind==="unique")h.push(null);else throw w}return h},normalizeId(e,n){return Ft(t,e,n)},async patch(e,n,s){const f=re(e,s);if(!f){const R=s===void 0?I:void 0;if(R){M(n),await R.patch(e,n);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const{docJson:h,row:u,tableName:c}=f,d=t.tables[c];if(!d)throw new $("INTERNAL",`unknown table: ${c}`);_(c,e),Bt("patch",n);const w={...u,...n,...E(c),_id:e};Wt(d,n,w,x),Ye(d,w,!0),Z(c,"before","update")&&await ee("before","update",{doc:{...w},id:e,op:"update",previous:u,table:c}),he(c),we(c),qe(r,c,bt(c),[se(w),e,h]),Ae(c,e,w,u),ve(c,e,w),Re(c,u,w),pe(c,e,u,w),z?.invalidate(c,e,S(c,u,w)),fe(c,e,"update",w),a({indexKeys:S(c,u,w),key:e,op:"update",row:w,table:c}),Z(c,"after","update")&&await ee("after","update",{doc:w,id:e,op:"update",previous:u,table:c}),await q({doc:w,id:e,op:"update",table:c})},async patchMany(e,n,s){ce(e.length,n?.limit,"patchMany");for(const f of e)await B.patch(f.id,f.patch,s);return{patched:e.length}},async patchWhere(e,n,s){const u=(await(K(e,"patchWhere")??B).findMany(e,{where:n.where})).page.map(c=>({id:String(c._id),patch:n.patch}));if(ce(u.length,s?.limit,"patchWhere"),B.patchMany===void 0)throw new $("INTERNAL",`ctx.db.${e}.patchMany is unavailable: this writer has no batch patch`);return await B.patchMany(u,s),{patched:u.length}},query(e){const n=K(e,"query");return n?(_(e,G),n.query(e)):Co(r,t,e,H,s=>{s?v(s):_(e,G)},s=>{L||T?.recordRead(s)})},async rank(e,n,s){const f=K(e,"rank");if(f)return _(e,G),f.rank(e,n,s);H(e,n,"rank");const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);const u=h.rankIndexes?.find(P=>P.name===n);if(!u)throw new $("INTERNAL",`unknown rankIndex "${n}" on table "${e}"`);if(gt(e,h,u),s.restrictsCounts)throw new ze(e);_(e,G),Oe(e,u);const c=typeof s.row=="string"?s.row:s.row._id;if(!c)return null;const d=_t(e,u.name),w=u.sortBy.map((P,Ie)=>Tt(Ie)),R=w.map(P=>Se(P)).join(", "),g=O(r,i`SELECT ${i.identifier("__partition__")}, ${i.raw(R)} FROM ${i.identifier(d)} WHERE ${i.identifier("__id__")} = ${c}`).toArray(),[k]=g;if(k===void 0)return null;let D=k.__partition__;const U=Q(s.baseWhere,s.where);Ve(U,t,e,"rank");const W=Cn(u,U);if(W){const P=xn(u.partitionBy??[],W);if(P!==D)return null;D=P}const C=w.map(P=>k[P]),{before:j,total:V}=Ut(r,d,w,u.sortBy,D,C,c);return{position:j+1,total:V}},async rankBefore(e,n,s){if(ie(e))throw new $("INTERNAL",`rankBefore is not supported on the global (.global()) table '${e}' — cross-shard rank cursors apply only to sharded tables`);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=f.rankIndexes?.find(w=>w.name===n);if(!h)throw new $("INTERNAL",`unknown rankIndex "${n}" on table "${e}"`);if(s.restrictsCounts)throw new ze(e);_(e,G),Oe(e,h);const u=_t(e,h.name),c=h.sortBy.map((w,R)=>Tt(R)),d=h.sortBy.map((w,R)=>oe(s.sortValues[R]??null));return Ut(r,u,c,h.sortBy,s.partitionKey,d,s.rowId)},async rankPage(e,n,s={}){Ve(Q(s.baseWhere,s.where),t,e,"rankPage");const f=K(e,"rankPage");if(f)return _(e,G),f.rankPage(e,n,s);H(e,n,"rank");const{continueCursor:h,hasMore:u,rows:c}=Et(yt,e,n,s);return{continueCursor:h,isDone:!u,page:c.map(d=>d.doc)}},async rankPageRows(e,n,s={}){Ve(Q(s.baseWhere,s.where),t,e,"rankPage"),H(e,n,"rank");const{directions:f,hasMore:h,rows:u}=Et(yt,e,n,s);return{directions:f,hasMore:h,rows:u}},async restore(e,n){const s=re(e,n);if(!s){const u=n===void 0?I:void 0;if(u?.restore){await u.restore(e);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const f=t.tables[s.tableName]?.softDeleteMode?.field;if(!f)throw new $("INTERNAL",`ctx.db.restore: table "${s.tableName}" is not a .softDelete() table`);const h=s.row[f]!==null&&s.row[f]!==void 0;await B.patch(e,{[f]:null},n),h&&pe(s.tableName,e,void 0,s.row)},async replace(e,n,s,f){const h=re(e,s);if(!h){const k=s===void 0?I:void 0;if(k){M(n),await k.replace(e,n,void 0,f);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const{docJson:u,row:c,tableName:d}=h,w=t.tables[d];if(!w)throw new $("INTERNAL",`unknown table: ${d}`);Bt("replace",n);const R=f?.allowExplicitId&&typeof n._creationTime=="number"?n._creationTime:N(),g={...n,...E(d),_creationTime:R,_id:e};Wt(w,n,g,x),Ye(w,g),Z(d,"before","update")&&await ee("before","update",{doc:{...g},id:e,op:"update",previous:c,table:d}),he(d),we(d),qe(r,d,Xn(d),[R,se(g),e,u]),Ae(d,e,g,c),ve(d,e,g),Re(d,c,g),pe(d,e,c,g),z?.invalidate(d,e,S(d,c,g)),fe(d,e,"update",g),a({indexKeys:S(d,c,g),key:e,op:"update",row:g,table:d}),Z(d,"after","update")&&await ee("after","update",{doc:g,id:e,op:"update",previous:c,table:d}),await q({doc:g,id:e,op:"update",table:d})},async wipeShard(e){const n=new Set(e?.exclude),s=e?.tables,f=Object.entries(t.tables).filter(([d,w])=>n.has(d)||s!==void 0&&!s.includes(d)?!1:w.shardMode?.kind!=="global").map(([d])=>d);if(s!==void 0){for(const d of s)if(!t.tables[d])throw new $("INTERNAL",`wipeShard: unknown table: ${d}`)}const h={};let u=0;const{deleteAll:c}=B;if(c===void 0)throw new $("INTERNAL","wipeShard: this writer has no deleteAll");for(const d of f){const w=await c(d,{...e?.chunkSize===void 0?{}:{chunkSize:e.chunkSize},hard:!0});h[d]=w.deleted,u+=w.deleted}return{deleted:u,tables:h}}},tn={db:B,scheduler:b};return o.enforceRls===!0?Fn(B,t,(e,n)=>re(e,n)?.tableName,(e,n)=>en(e,n)):B};export{pr as CDC_LOG_TABLE,Dr as CLIENT_WATERMARK_TABLE,Wr as GLOBAL_SHAPE_SNAPSHOT_TABLE,Or as IDEMPOTENCY_TABLE,vo as NotUniqueError,Yr as SEARCH_STATE_TABLE,kr as advanceClientWatermark,gr as applyCdcChanges,Bt as assertNoExplicitUndefined,io as assertValidClientId,ur as backfillAggregateIndexes,fr as backfillRankIndexes,hr as backfillSearchIndexes,$r as bumpCdcEpoch,yr as cdcCanVouchFor,Er as cdcSeqLeavingRows,mr as cdcTouchesTables,Sr as cdcTrimmedError,_r as compactCdcDocs,ar as createShardCtxDb,Tr as cursorBelowRetainedFloor,Br as deleteGlobalShapeSnapshot,Ur as deleteGlobalShapeSnapshotsForConnection,Lr as migrateClientWatermark,Pr as migrateGlobalShapeSnapshot,Rr as minCdcReplayableSeq,vr as minCdcSeq,Ft as normalizeIdStructurally,Ar as readCdcChangeKeys,Ir as readCdcChanges,Cr as readCdcCursor,xr as readCdcEpoch,Fr as readClientWatermark,Gr as readGlobalShapeSnapshot,jr as readIdempotent,Jr as runShardMigrations,Zr as selectShapeMembers,ei as selectShapeRows,br as trimCdcChanges,Kr as trimIdempotent,Hr as writeGlobalShapeSnapshot,Qr as writeIdempotent};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{LunoraError as R}from"@lunora/errors";import{applySelect as B}from"./CURSOR_PREFIX-
|
|
1
|
+
import{LunoraError as R}from"@lunora/errors";import{applySelect as B}from"./CURSOR_PREFIX-D4DUGY5z.mjs";const _=c=>({relationBaseWhere:c.relationBaseWhere,relationMask:c.relationMask}),W=(c,o)=>o.select?B(c,o.select,o.with):c,E=async(c,o,t,r,s)=>{const u=await Promise.all(r.map(async i=>{const w=s?{AND:[{[t]:i},s]}:{[t]:i};return[i,await c(o,w)]}));return new Map(u)},O=(c,o)=>{const t=new Set;for(const r of c){const s=r[o];s!=null&&t.add(s)}return[...t]},L=async c=>{const{groupedCounter:o,fetcher:t,parents:r,relationBaseWhere:s,relationMask:u,schema:i,tableName:w,with:D}=c,M=(a,e)=>u?.(a,e)??e;if(r.length===0)return;const y=i.tables[w];if(!y)throw new R("INTERNAL",`unknown table: ${w}`);const N=y.relationMap??{},v=a=>{const e=N[a];if(!e)throw new R("INTERNAL",`unknown relation "${a}" on table "${w}"`);return e},m=async(a,e,n)=>{const p=O(r,e.field);if(p.length===0){for(const l of r)l[a]=null;return}const{page:b}=await t(e.table,{baseWhere:s?.(e.table),relationBaseWhere:s,relationMask:u,where:{[e.references]:{in:p}},with:n.with}),k=new Map;for(const l of M(e.table,b))k.set(l[e.references],l);for(const l of r){const h=k.get(l[e.field]);l[a]=h?W([h],n)[0]??null:null}},$=async(a,e,n)=>{const p=O(r,e.references);if(p.length===0){for(const f of r)f[a]=[];return}const b={[e.field]:{in:p}},k=n.where?{AND:[n.where,b]}:b,{page:l}=await t(e.table,{baseWhere:s?.(e.table),orderBy:n.orderBy,relationBaseWhere:s,relationMask:u,where:k,with:n.with}),h=new Map;for(const f of M(e.table,l)){const d=f[e.field],V=h.get(d);V?V.push(f):h.set(d,[f])}const g=typeof n.limit=="number"?Math.max(0,Math.floor(n.limit)):void 0;for(const f of r){const d=h.get(f[e.references])??[];f[a]=W(g===void 0?d:d.slice(0,g),n)}},j=async a=>{for(const e of Object.keys(a)){const n=v(e),[p,b]=n.kind==="many"?[n.field,n.references]:[n.references,n.field],k=s?.(n.table),l=O(r,b),h=l.length===0?new Map:await o(n.table,p,l,k);for(const g of r){const f=g._count??{},d=g[b];f[e]=d==null?0:h.get(d)??0,g._count=f}}};for(const[a,e]of Object.entries(D)){if(e===void 0||e===!1)continue;if(a==="_count"){await j(e);continue}const n=v(a),p=e===!0?{}:e;await(n.kind==="one"?m(a,n,p):$(a,n,p))}},I=async(c,o,t)=>{const{deletedId:r,deletedReference:s,findHolders:u,onCascade:i,onRestrict:w,onSetNull:D,tableName:M}=c,y=t.references==="_id"?r:s(t.references);if(y==null)return;const N=await u(o,t.field,y);if(N.length!==0){t.onDelete==="restrict"&&w(`cannot delete "${M}" row: "${o}.${t.field}" still references it`);for(const v of N){const m=v._id;typeof m=="string"&&await(t.onDelete==="cascade"?i(o,m):D(o,m,t.field))}}},S=async c=>{const{schema:o,tableName:t}=c;if(!o.tables[t])throw new R("INTERNAL",`unknown table: ${t}`);for(const[r,s]of Object.entries(o.tables)){const u=s.relationMap;if(u)for(const i of Object.values(u))i.kind!=="one"||i.table!==t||!i.onDelete||await I(c,r,i)}},x=(c,o,t=!1)=>{for(const[r,s]of Object.entries(c.shape))r in o&&typeof s.parse=="function"&&(t&&o[r]===null&&s.kind==="optional"||s.parse(o[r]))};export{S as applyOnDelete,O as distinctValues,E as fanOutScalarCounts,_ as relationHooks,L as resolveWith,x as runRowValidators};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as R,i as k,S as A,q as O,l as h,y as $,d as C}from"./ctx-db-companions-
|
|
1
|
+
import{r as R,i as k,S as A,q as O,l as h,y as $,d as C}from"./ctx-db-companions-CN8hWTF_.mjs";import{sql as t}from"drizzle-orm";import{matchesStaticWhere as L}from"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as M,encodeAggregateKey as x,foldAggregateTally as N}from"./aggregateTableName-CGi8gxeK.mjs";import{migrateSearchState as _,readSearchBackfillState as F,writeSearchBackfillState as y}from"./SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{runDrizzle as l}from"./runDrizzle-2ULFQR_k.mjs";import{i as E,r as T,a as D,b as v,A as B,D as S,h as G}from"./do-sql-bkXQEBl8.mjs";import{isLiveForCompanion as U}from"./CURSOR_PREFIX-D4DUGY5z.mjs";import{rankTableName as P,matchesRankStaticWhere as W}from"./RANK_TIEBREAK-D157XEqw.mjs";const H=(e,n)=>e.profile!==n?{cursor:void 0,finished:!1,wipe:e.cursor!==void 0||e.done}:{cursor:e.cursor,finished:e.done,wipe:!1},b=(e,n)=>l(e,t`SELECT COUNT(*) AS count FROM ${t.identifier(n)}`).one().count>0,p=(e,n)=>l(e,t`SELECT id, _creationTime, ${t.identifier(S)} FROM ${t.identifier(n)}`).toArray(),V=(e,n,r,o)=>{const i=M(n,r.name);if(b(e,i))return;const a=r.by??[],s=new Map,c=p(e,n);for(const d of c){const f=T(d);if(!f||!U(f,o)||r.where&&!L(f,r.where))continue;const g=x(a,f);N(s,g,r,f)}for(const[d,f]of s)l(e,t`INSERT INTO ${t.identifier(i)} (${D}, ${v}, ${B}) VALUES (${d}, ${f.value}, ${f.count})`)},ne=(e,n)=>{for(const[r,o]of Object.entries(n.tables))if(!(o.shardMode?.kind==="global"||!o.aggregateIndexes))for(const i of o.aggregateIndexes)V(e,r,i,o.softDeleteMode?.field)},Y=(e,n,r)=>{const o=P(n,r.name);if(b(e,o))return;const i=R(r),a=p(e,n);for(const s of a){const c=T(s);!c||r.where&&!W(c,r.where)||k(e,o,r,i,c._id,c)}},re=(e,n)=>{for(const[r,o]of Object.entries(n.tables))if(!(o.shardMode?.kind==="global"||!o.rankIndexes))for(const i of o.rankIndexes)Y(e,r,i)},m=500,w=(e,n,r)=>{const o=A(n,r.name),{profile:i}=O(r.language),a=H(F(e,o),i);if(a.finished)return{done:!0,rows:0};a.wipe&&l(e,t`DELETE FROM ${t.identifier(o)}`);const{cursor:s}=a,c=l(e,s===void 0?t`SELECT id, _creationTime, ${t.identifier(S)} FROM ${t.identifier(n)} ORDER BY id ASC LIMIT ${t.raw(String(m))}`:t`SELECT id, _creationTime, ${t.identifier(S)} FROM ${t.identifier(n)} WHERE id > ${s} ORDER BY id ASC LIMIT ${t.raw(String(m))}`).toArray();let d=s;for(const g of c){const{id:u}=g;if(typeof u!="string")continue;d=u,l(e,t`DELETE FROM ${t.identifier(o)} WHERE ${t.identifier(h)} = ${u}`);const I=G(g);I&&l(e,t`INSERT INTO ${t.identifier(o)} (${t.identifier($)}, ${t.identifier(h)}) VALUES (${C(I,r)}, ${u})`)}const f=c.length<m;return y(e,o,d,f,i),{done:f,rows:c.length}},te=(e,n,r)=>{if(E(e))for(const o of r.searchIndexes??[])o.staged||w(e,n,o)},j=(e,n,r,o)=>{let i=0;for(;;){if(i>=o)return{done:!1,pages:i};const a=w(e,n,r);if(a.rows>0&&(i+=1),a.done)return{done:!0,pages:i}}},ie=(e,n,r={})=>{if(!E(e))return{done:!0,pages:0};_(e);const o=r.maxPages??Number.POSITIVE_INFINITY;let i=0;for(const[a,s]of Object.entries(n.tables))if(!(s.shardMode?.kind==="global"||!s.searchIndexes))for(const c of s.searchIndexes){const d=j(e,a,c,o-i);if(i+=d.pages,!d.done)return{done:!1,pages:i}}return{done:!0,pages:i}};export{ne as backfillAggregateIndexes,re as backfillRankIndexes,ie as backfillSearchIndexes,te as backfillSearchIndexesForTable};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{readCdcChangeKeys as s}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{selectShapeMembers as h}from"./selectShapeMembers-
|
|
1
|
+
import{readCdcChangeKeys as s}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{selectShapeMembers as h}from"./selectShapeMembers-Dva-Z9VQ.mjs";import{shapeRangeKey as u}from"./ShapeDiffCache-CLm5XXd1.mjs";import{projectColumns as g}from"./buildPokeFrames-C8km3IhJ.mjs";const C=(m,e,a,i,p,f=s)=>{const r=u(e.table,a,i),n=p.changedKeys(r,()=>f(m,e.table,a,i));if(n.length===0)return[];const b=p.members(e,r,()=>h(m,e.table,e.effectiveWhere,n.map(t=>t.id))),o=[];for(const t of n){const c=b.get(t.id);if(c===void 0){t.op!=="insert"&&o.push({key:t.id,op:"delete",table:e.table});continue}o.push({key:t.id,op:t.op,table:e.table,value:g(c,e.columns)})}return o};export{C as buildShapeDiff};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import"./param-DlozcSQu.mjs";import{c as o,l as t}from"./where-sql-
|
|
1
|
+
import"./param-DlozcSQu.mjs";import{c as o,l as t}from"./where-sql-D6MSVjdL.mjs";import"./RELATION_EXISTS_KEY-CFUhnZSZ.mjs";export{o as compileWhereSql,t as literalInList};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{LunoraError as g}from"@lunora/errors";import{sql as o}from"drizzle-orm";import{mergeWhere as j}from"./CountRlsUnsupportedError-Bdfupt3g.mjs";import{SCAN_DEP as q}from"./SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as A}from"./runDrizzle-2ULFQR_k.mjs";import{sqliteInList as O}from"./param-DlozcSQu.mjs";import{decodeCursor as F,CURSOR_PREFIX as U,toBase64 as V}from"./CURSOR_PREFIX-
|
|
1
|
+
import{LunoraError as g}from"@lunora/errors";import{sql as o}from"drizzle-orm";import{mergeWhere as j}from"./CountRlsUnsupportedError-Bdfupt3g.mjs";import{SCAN_DEP as q}from"./SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as A}from"./runDrizzle-2ULFQR_k.mjs";import{sqliteInList as O}from"./param-DlozcSQu.mjs";import{decodeCursor as F,CURSOR_PREFIX as U,toBase64 as V}from"./CURSOR_PREFIX-D4DUGY5z.mjs";import{rankTableName as z,sortColumnName as H,resolveRankPartition as P,RANK_TIEBREAK as _,encodePartitionKey as J}from"./RANK_TIEBREAK-D157XEqw.mjs";const X="__doc__",Y=n=>U+V(JSON.stringify(n)),G=n=>n.after?[n.after.partitionKey,...n.after.sortValues,n.after.rowId]:n.cursor?F(n.cursor):void 0,Q=(n,r,a)=>{if(n?.length!==1+r.length+1)return;const t=[{column:"__partition__",direction:"asc"}];for(const[s,c]of r.entries())t.push({column:c,direction:a[s]?.direction??"asc"});t.push({column:_,direction:"asc"});const e=[];for(const[s,c]of t.entries()){const u=[];for(const[i,p]of t.slice(0,s).entries())u.push(o`${o.identifier(p.column)} IS ${n[i]}`);u.push(o`${o.identifier(c.column)} ${o.raw(c.direction==="desc"?"<":">")} ${n[s]}`);const[f]=u;e.push(u.length===1&&f!==void 0?f:o`(${o.join(u,o` AND `)})`)}return o`(${o.join(e,o` OR `)})`},T=null,Z=(n,r)=>{if(n===void 0)return T;const a=[n.__partition__,...r.map(t=>n[t]),n[_]];return Y(a)},oo=(n,r,a)=>{const t=[];for(const e of n){const s=e[_];if(typeof s!="string")continue;const c=r.get(s);if(!c)continue;const u=typeof e.__partition__=="string"?e.__partition__:"",f=a.map(i=>e[i]??null);t.push({doc:c,key:{partitionKey:u,rowId:s,sortValues:f}})}return t},no=o`${o.identifier("id")}`,to=(n,r,a)=>{const{rowToDocument:t}=n,e=new Map;if(a.length===0)return e;const s=A(n.sql,o`SELECT id, _creationTime, ${o.identifier(X)} FROM ${o.identifier(r)} WHERE ${O(no,a,!1)}`).toArray();for(const c of s){const u=t(c),f=c.id;u&&typeof f=="string"&&e.set(f,u)}return e},lo=(n,r,a,t)=>{const{assertRankPartitionLocal:e,ensureRankBackfilled:s,onRead:c,schema:u}=n,f=u.tables[r];if(!f)throw new g("INTERNAL",`unknown table: ${r}`);const i=f.rankIndexes?.find(d=>d.name===a);if(!i)throw new g("INTERNAL",`unknown rankIndex "${a}" on table "${r}"`);e(r,f,i),c(r,q),s(r,i);const p=z(r,i.name),l=i.sortBy.map((d,w)=>H(w)),h=Math.max(1,Math.min(1e3,Math.floor(t.take??100))),B=j(t.baseWhere,t.where),k=P(i,B),$=[o`${o.identifier("__partition__")} ASC`];for(const[d,w]of l.entries()){const b=i.sortBy[d]?.direction;$.push(o`${o.identifier(w)} ${o.raw(b==="desc"?"DESC":"ASC")}`)}$.push(o`${o.identifier(_)} ASC`);const m=[];typeof t.partitionKey=="string"?m.push(o`${o.identifier("__partition__")} = ${t.partitionKey}`):k&&m.push(o`${o.identifier("__partition__")} = ${J(i.partitionBy??[],k)}`);const D=G(t),E=Q(D,l,i.sortBy);E&&m.push(E);const I=o.identifier(_),S=o.identifier("__partition__"),L=m.length>0?o` WHERE ${o.join(m,o` AND `)}`:o``,M=l.length>0?o`${I}, ${S}, ${o.join(l.map(d=>o.identifier(d)),o`, `)}`:o`${I}, ${S}`,v=o`SELECT ${M} FROM ${o.identifier(p)}${L} ORDER BY ${o.join($,o`, `)} LIMIT ${o.raw(String(h+1))}`,R=A(n.sql,v).toArray(),C=R.length>h,y=C?R.slice(0,h):R,K=y.map(d=>d[_]),x=oo(y,to(n,r,K),l),N=C?Z(y.at(-1),l):T,W=i.sortBy.map(d=>d.direction==="desc"?"desc":"asc");return{continueCursor:N,directions:W,hasMore:C,rows:x}};export{lo as computeRankPage,G as resolveRankSeekTuple};
|
package/dist/packem_shared/{createCompanionSync-Bi6IG6fu.mjs → createCompanionSync-CJo2Uiq7.mjs}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{c as l,i as C,r as R}from"./ctx-db-companions-
|
|
1
|
+
import{c as l,i as C,r as R}from"./ctx-db-companions-CN8hWTF_.mjs";import"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import"./aggregateTableName-CGi8gxeK.mjs";import"./runDrizzle-2ULFQR_k.mjs";import"./do-sql-bkXQEBl8.mjs";import"./param-DlozcSQu.mjs";import"./GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import"./CURSOR_PREFIX-D4DUGY5z.mjs";import"./RANK_TIEBREAK-D157XEqw.mjs";import"./sql-projection-BqmxFxQU.mjs";import"./serializeSqlValue-DbI1VQYM.mjs";export{l as createCompanionSync,C as insertRankRow,R as rankColumnsSql};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{LunoraError as i}from"@lunora/errors";const c=t=>{const e={args:t.args??{},enqueuedAt:typeof t.enqueuedAt=="number"?t.enqueuedAt:0,id:typeof t.id=="string"?t.id:"",scheduledFor:typeof t.scheduledFor=="number"?t.scheduledFor:0};return typeof t.attempts=="number"&&(e.attempts=t.attempts),typeof t.functionPath=="string"&&(e.functionPath=t.functionPath),typeof t.pool=="string"&&(e.pool=t.pool),typeof t.shardKey=="string"&&(e.shardKey=t.shardKey),typeof t.workflow=="string"&&(e.workflow=t.workflow),e},f=t=>{const e={key:typeof t.key=="string"?t.key:"",size:typeof t.size=="number"?t.size:0},o=t.httpMetadata?.contentType??t.contentType;typeof o=="string"&&(e.contentType=o),t.customMetadata&&typeof t.customMetadata=="object"&&(e.customMetadata=t.customMetadata),typeof t.sha256=="string"&&(e.sha256=t.sha256);const{uploaded:n}=t;return typeof n=="number"?e.uploaded=n:n instanceof Date&&(e.uploaded=n.getTime()),e},p=(t={})=>{const e=()=>{if(!t.scheduler)throw new i("INTERNAL",'ctx.db.system.query("_scheduled_functions"): no scheduler configured. Pass `scheduler` to createShardDO().');return t.scheduler},o=()=>{if(!t.storage)throw new i("INTERNAL",'ctx.db.system.query("_storage"): no storage configured. Pass `storage` to createShardDO().');return t.storage},n=async()=>(await e().list()).map(a=>c(a)),d=async()=>{const{objects:s}=await o().list();return s.map(a=>f(a))};return{get:(async(s,a)=>{if(s==="_scheduled_functions"){const u=await e().get(a);return u?c(u):null}const r=await o().getMetadata(a);return r?f(r):null}),query:(s=>s==="_scheduled_functions"?{collect:n}:{collect:d})}};export{p as createSystemReader};
|
package/dist/packem_shared/{ctx-db-companions-DKBBb0u8.mjs → ctx-db-companions-CN8hWTF_.mjs}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{sql as e}from"drizzle-orm";import{matchesStaticWhere as P,aggregateSqlFunction as le}from"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as N,encodeAggregateKey as I,foldAggregateTally as J,coerceAggregateNumber as C}from"./aggregateTableName-CGi8gxeK.mjs";import{runDrizzle as $}from"./runDrizzle-2ULFQR_k.mjs";import{i as fe,g as ue,D,r as M,a as q,b as S,A as g,c as j,e as z}from"./do-sql-bkXQEBl8.mjs";import{param as de,WORKERD_SQLITE_LIMITS as $e}from"./param-DlozcSQu.mjs";import{encodeGeohash as me,GEO_DEFAULT_PRECISION as Ee}from"./GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{isLiveForCompanion as Q}from"./CURSOR_PREFIX-
|
|
1
|
+
import{sql as e}from"drizzle-orm";import{matchesStaticWhere as P,aggregateSqlFunction as le}from"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as N,encodeAggregateKey as I,foldAggregateTally as J,coerceAggregateNumber as C}from"./aggregateTableName-CGi8gxeK.mjs";import{runDrizzle as $}from"./runDrizzle-2ULFQR_k.mjs";import{i as fe,g as ue,D,r as M,a as q,b as S,A as g,c as j,e as z}from"./do-sql-bkXQEBl8.mjs";import{param as de,WORKERD_SQLITE_LIMITS as $e}from"./param-DlozcSQu.mjs";import{encodeGeohash as me,GEO_DEFAULT_PRECISION as Ee}from"./GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{isLiveForCompanion as Q}from"./CURSOR_PREFIX-D4DUGY5z.mjs";import{encodePartitionKey as pe,sortColumnName as he,rankTableName as Z,matchesRankStaticWhere as x}from"./RANK_TIEBREAK-D157XEqw.mjs";import{m as ge}from"./sql-projection-BqmxFxQU.mjs";import{serializeSqlValue as ee}from"./serializeSqlValue-DbI1VQYM.mjs";const ye=["de","en","es","fr","it","nl","none","pt"],_e=n=>ye.includes(n),Se="a an and are as at be but by for if in into is it no not of on or such that the their then there these they this to was will with",we="aber als am an auch auf aus bei bin bis bist da dass der den des dem die das denn dir du ein eine für hat ich im in ist mit nicht noch nur oder sich sie sind über und von vor war wie wir zu zum zur",Te="a al como con de del el en es la las lo los mas no o para pero por que se su sus un una uno y ya",ve="au aux avec ce ces dans de des du elle en et eux il je la le les leur lui ma mais me même mes moi mon ne nos notre nous on ou par pas pour qu que qui sa se ses son sur ta te tes toi ton tu un une vos votre vous y",Re="a ai al alla anche che chi ci coi col come con da dal degli dei del della di do e ed gli ha hai hanno i il in la le lo ma mi ne nei nel non o per più quale quanto se si sono su sul tra un una uno vi",Ae="aan al als bij dan dat de der deze die dit door een en er het hij ij in is je kan me men met mij na naar niet nog nu of om ons ook op over te tot uit van voor was wat we wij zij zijn zo",Fe="a ao aos as até com como da das de do dos e em entre era essa esse esta este eu foi há isso já mais mas me mesmo meu na nas no nos num numa o os ou para pela pelo por qual que quem se sem seu só sua também te tem um uma você",be=/[\u0300-\u036F]/gu,Oe=/[\u0080-\u{10FFFF}]/u,Le=/[\p{L}\p{N}]+/gu,oe=n=>Oe.test(n)?n.normalize("NFD").replaceAll(be,"").normalize("NFC").toLowerCase():n.toLowerCase(),k=n=>new Set(oe(n).split(" ")),Ie={de:k(we),en:k(Se),es:k(Te),fr:k(ve),it:k(Re),nl:k(Ae),none:new Set,pt:k(Fe)},ke=2,qe=256,X=new Map,Ce=n=>{const s=n!==void 0&&_e(n)?n:"none",c=X.get(s);if(c)return c;const w=Ie[s],y=r=>{const A=(oe(r).match(Le)??[]).filter(T=>T.length<=qe);return w.size===0?A:A.filter(T=>!w.has(T))},E={document:y,profile:`${s}-v${String(ke)}`,query:r=>{const A=y(r);return A.filter((T,b)=>A.lastIndexOf(T)===b)}};return X.set(s,E),E},je=(n,s)=>{if(!s.includes("."))return n[s];let c=n;for(const w of s.split(".")){if(c===null||typeof c!="object"||Array.isArray(c))return;c=c[w]}return c},De=(n,s)=>`${n}__fts_${s}`,Me="__text__",Y="__id__",ze=1e3,Ue=(n,s)=>s.document(n),U=(n,s)=>je(n,s),We=n=>typeof n=="string"?n:n==null?"":typeof n=="number"||typeof n=="bigint"||typeof n=="boolean"?String(n):JSON.stringify(n)??"",He=(n,s,c)=>n!==void 0&&s!==void 0&&U(n,c.field)===U(s,c.field),Be=(n,s)=>Ue(We(U(n,s.field)),Ce(s.language)).slice(0,ze),Ke=(n,s)=>Be(n,s).join(" "),Ve=(n,s,c)=>[...n.partitionBy??[],...n.sortBy.map(y=>y.field),...n.where?Object.keys(n.where):[]].every(y=>s[y]===c[y]),ne=n=>e.join(["__id__","__partition__",...n.sortBy.map((s,c)=>he(c))].map(s=>e.identifier(s)),e`, `),te=(n,s,c,w,y,E)=>{const r=pe(c.partitionBy??[],E),A=c.sortBy.map(b=>ee(E[b.field]??null)),T=e.join([y,r,...A].map(b=>de(b)),e`, `);$(n,e`INSERT INTO ${e.identifier(s)} (${w}) VALUES (${T})`)},Ge=(n,s,c,w,y,E)=>{if(y&&E&&Ve(c,y,E))return;const r=Z(s,c.name);y&&$(n,e`DELETE FROM ${e.identifier(r)} WHERE ${e.identifier("__id__")} = ${w}`),!(!E||c.where&&!x(E,c.where))&&te(n,r,c,ne(c),w,E)},so=n=>{const{broadcast:s,indexKeysFor:c,invalidateCache:w,recordCdc:y,schema:E,sql:r}=n,A=new Set,T=t=>E.tables[t]?.softDeleteMode?.field,b=new Set,W=(t,o)=>{const a=`${t}::${o.name}`;if(A.has(a))return;const f=N(t,o.name),u=o.by??[],d=T(t),p=new Map,_=$(r,e`SELECT id, _creationTime, ${e.identifier(D)} FROM ${e.identifier(t)}`).toArray();for(const v of _){const m=M(v);if(!m||!Q(m,d)||o.where&&!P(m,o.where))continue;const R=I(u,m);J(p,R,o,m)}$(r,e`DELETE FROM ${e.identifier(f)}`);const F=Math.floor($e.boundParams/3),O=[...p];for(let v=0;v<O.length;v+=F){const m=O.slice(v,v+F),R=e.join(m.map(([i,l])=>e`(${i}, ${l.value}, ${l.count})`),e`, `);$(r,e`INSERT INTO ${e.identifier(f)} (${q}, ${S}, ${g}) VALUES ${R}`)}A.add(a)},se=(t,o,a)=>{const f=o.by??[],u=o.field??"",d=[],p=(i,l)=>{const h=ee(l);h===null?d.push(e`${z(i)} IS NULL`):d.push(e`${z(i)} = ${h}`)};for(const i of f)p(i,a[i]??null);const _=T(t);_!==void 0&&p(_,null);for(const[i,l]of Object.entries(o.where??{}))p(i,l!==null&&typeof l=="object"&&!Array.isArray(l)?l.eq:l);const F=d.length>0?e` WHERE ${e.join(d,e` AND `)}`:e``,O=E.tables[t]?.shape[u];if(O&&ge(O)){const i=$(r,e`SELECT id, _creationTime, ${e.identifier(D)} FROM ${e.identifier(t)}${F}`).toArray(),l=new Map;for(const h of i){const L=M(h);L&&J(l,"",o,L)}return{value:l.get("")?.value??null}}const v=le(o.op),m=z(u);return{value:$(r,e`SELECT ${e.raw(v)}(${m}) AS value FROM ${e.identifier(t)}${F}`).one().value??null}},ie=(t,o,a,f)=>{const u=N(t,o.name),{op:d}=o,p=o.field??"",_=i=>{$(r,e`DELETE FROM ${e.identifier(u)} WHERE ${q} = ${i} AND ${g} <= 0`)},F=T(t),O=i=>!o.where||P(i,o.where),v=i=>Q(i,F)&&O(i);f!==void 0&&d!=="count"&&O(f)&&C(f[p]);const m=a&&v(a)?a:void 0,R=f&&v(f)?f:void 0;if(!(!m&&!R)){if(d==="count"){for(const[i,l]of[[m,-1],[R,1]]){if(!i)continue;const h=I(o.by??[],i);$(r,j(u,h,l,l,e`${S} = ${S} + excluded.${S}, ${g} = ${g} + excluded.${g}`))}m&&_(I(o.by??[],m));return}if(d==="sum"||d==="avg"){for(const[i,l]of[[m,-1],[R,1]]){if(!i)continue;const h=C(i[p]);if(h===void 0)continue;const L=I(o.by??[],i);$(r,j(u,L,l*h,l,e`${S} = COALESCE(${S}, 0) + excluded.${S}, ${g} = ${g} + excluded.${g}`))}m&&_(I(o.by??[],m));return}if(m){const i=I(o.by??[],m),l=C(m[p]),h=$(r,e`SELECT ${S} AS value, ${g} AS count FROM ${e.identifier(u)} WHERE ${q} = ${i}`).toArray()[0],L=(h?.count??0)-1;if(L<=0)$(r,e`DELETE FROM ${e.identifier(u)} WHERE ${q} = ${i}`);else if(h&&l!==void 0&&h.value!==null&&l===h.value){const ce=se(t,o,m);$(r,e`UPDATE ${e.identifier(u)} SET ${S} = ${ce.value}, ${g} = ${L} WHERE ${q} = ${i}`)}else $(r,e`UPDATE ${e.identifier(u)} SET ${g} = ${g} - 1 WHERE ${q} = ${i}`)}if(R){const i=I(o.by??[],R),l=C(R[p]);if(l===void 0)$(r,j(u,i,null,1,e`${g} = ${g} + 1`));else{const h=d==="min"?"MIN":"MAX";$(r,j(u,i,l,1,e`${S} = ${e.raw(h)}(COALESCE(${S}, excluded.${S}), excluded.${S}), ${g} = ${g} + 1`))}}}},re=t=>{for(const o of E.tables[t]?.aggregateIndexes??[])W(t,o)},H=(t,o,a)=>{for(const f of E.tables[t]?.aggregateIndexes??[])ie(t,f,o,a)},B=(t,o)=>{const a=`${t}::rank::${o.name}`;if(b.has(a))return;const f=Z(t,o.name),u=$(r,e`SELECT id, _creationTime, ${e.identifier(D)} FROM ${e.identifier(t)}`).toArray();$(r,e`DELETE FROM ${e.identifier(f)}`);const d=ne(o);for(const p of u){const _=M(p);!_||o.where&&!x(_,o.where)||te(r,f,o,d,_._id,_)}b.add(a)},ae=t=>{for(const o of E.tables[t]?.rankIndexes??[])B(t,o)},K=(t,o,a,f)=>{for(const u of E.tables[t]?.rankIndexes??[])Ge(r,t,u,o,a,f)},V=(t,o,a,f)=>{const u=E.tables[t]?.searchIndexes??[];if(!(u.length===0||!fe(r)))for(const d of u){if(He(f,a,d))continue;const p=De(t,d.name);$(r,e`DELETE FROM ${e.identifier(p)} WHERE ${e.identifier(Y)} = ${o}`),a&&$(r,e`INSERT INTO ${e.identifier(p)} (${e.identifier(Me)}, ${e.identifier(Y)}) VALUES (${Ke(a,d)}, ${o})`)}},G=(t,o,a)=>{for(const f of E.tables[t]?.geoIndexes??[]){const u=ue(t,f.name);$(r,e`DELETE FROM ${e.identifier(u)} WHERE ${e.identifier("__id__")} = ${o}`);const d=a?.[f.field];if(d!==null&&typeof d=="object"&&typeof d.lat=="number"&&typeof d.lng=="number"){const{lat:p,lng:_}=d,F=me({lat:p,lng:_},f.precision??Ee);$(r,e`INSERT INTO ${e.identifier(u)} (${e.identifier("__id__")}, ${e.identifier("__geohash__")}, ${e.identifier("__lat__")}, ${e.identifier("__lng__")}) VALUES (${o}, ${F}, ${p}, ${_})`)}}};return{ensureBackfilledForTable:re,ensureBackfilledIndex:W,ensureRankBackfilled:B,ensureRankBackfilledForTable:ae,syncAggregates:H,syncCompanionsForInsert:(t,o,a)=>{V(t,o,a),G(t,o,a),H(t,void 0,a),K(t,o,void 0,a),w(t,o,a),y(t,o,"insert",a),s({indexKeys:c(t,a),key:o,op:"insert",row:a,table:t})},syncGeo:G,syncRanks:K,syncSearch:V}};export{De as S,Be as a,so as c,Ke as d,te as i,Y as l,Ce as q,ne as r,Me as y};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{createShardCtxDb as S}from"./NotUniqueError-
|
|
1
|
+
import{createShardCtxDb as S}from"./NotUniqueError-Cxbfyre8.mjs";import{createRelayLink as B}from"./DEFAULT_MAX_RELAYS-Bjx0HDbs.mjs";import{ConflictError as I}from"./ConflictError-C8GtJmjS.mjs";import{runShardMigrations as v}from"./runShardMigrations-D6rTX7Bn.mjs";import{relayName as F}from"./DEFAULT_PROMOTION_THRESHOLDS-DpUu_mpH.mjs";const _=(E,u={})=>({_meta:{column:{notNull:!0,...u}},kind:E}),D=(E,u,N)=>{const{describe:k,expect:i,it:m}=N;k(`engine contract: ${E}`,()=>{k("optimistic concurrency",()=>{const b=h=>({tables:{items:{indexes:[],shape:{title:_("string"),version:_("number",{notNull:!1})},triggerMap:{clobber:{handler:()=>{h.exec(`UPDATE "items" SET "__doc__" = json_set("__doc__", '$.version', 99) WHERE "id" = 'i1'`)},op:"update",timing:"before"}}}}});m("raises a CONFLICT of kind `occ` when a write's snapshot is clobbered",async()=>{const{close:h,host:d}=u();try{const c=d.sql,l=b(c);v(c,l);const s=S({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0}),await i(s.patch("i1",{title:"second"})).rejects.toBeInstanceOf(I)}finally{h?.()}}),m("reports the conflict as CONFLICT/409 rather than retrying it away",async()=>{const{close:h,host:d}=u();try{const c=d.sql,l=b(c);v(c,l);const s=S({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let a;try{await s.patch("i1",{title:"second"})}catch(t){a=t}const e=a;i(e.code).toBe("CONFLICT"),i(e.kind).toBe("occ")}finally{h?.()}}),m("leaves the row readable and unchanged after a conflict",async()=>{const{close:h,host:d}=u();try{const c=d.sql,l=b(c);v(c,l);const s=S({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});try{await s.patch("i1",{title:"second"})}catch{}const a=await s.get("i1");i(a?.title).toBe("first"),i(a?.version).toBe(99)}finally{h?.()}}),m("raises a CONFLICT of kind `trigger` when a trigger writes its own row through the db",async()=>{const{close:h,host:d}=u();try{const c=d.sql,l={tables:{items:{indexes:[],shape:{title:_("string"),version:_("number",{notNull:!1})},triggerMap:{recurse:{handler:async(t,o)=>{await t.db.patch(o.doc._id,{version:99})},op:"update",timing:"before"}}}}};v(c,l);const s=S({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let a;try{await s.patch("i1",{title:"second"})}catch(t){a=t}const e=a;i(e).toBeInstanceOf(I),i(e.code).toBe("CONFLICT"),i(e.kind).toBe("trigger")}finally{h?.()}})}),k("shape-poke ordering",()=>{const b="shard-a",h={args:{},name:"messages"},d=(e,t,o,n)=>e.accept(t?.()??{},{connectionId:o,shapes:{[n]:h}}),c=(e,t)=>{let o=0,n=0;const r=g=>()=>{throw new Error(`the relay poke path must not reach RelayHost.${g}`)},p={fetch:(g,O)=>{if(JSON.parse(O?.body??"{}").type!=="relay_shape_subscribe")return Promise.resolve(new Response(void 0,{status:204}));const C=t[n];if(n+=1,C===void 0)throw new Error("the relay asked for more seeds than this fixture supplies");return Promise.resolve(Response.json(C))}},y={get:()=>p,getByName:()=>p,idFromName:g=>g},w={buildShapeDiff:r("buildShapeDiff"),computeOpLogShapeSeed:r("computeOpLogShapeSeed"),currentCdcEpoch:r("currentCdcEpoch"),deliverWhisperLocal:r("deliverWhisperLocal"),doName:()=>F(b,0),env:()=>({SHARD:y}),getWebSockets:()=>e.getSockets(),maskMetadata:r("maskMetadata"),nextPokeId:()=>(o+=1,`poke-${String(o)}`),readAttachment:g=>g.deserializeAttachment?.(),recordShapePokeFanout:()=>{},resolveShape:r("resolveShape"),rlsMetadata:r("rlsMetadata"),shardBinding:()=>"SHARD",sql:r("sql")},f=B(w);if(f===void 0)throw new Error("expected a relay link for a `…::relay::N` name");return f},l=e=>new Request("https://relay.internal/_lunora/relay",{body:JSON.stringify(e),headers:{"content-type":"application/json"},method:"POST"}),s=async(e,t,o)=>{const n=await e.seedRelayShape(t,o,h,{identity:void 0,userId:void 0});if(n!=="ok")throw new Error(`seed failed: ${JSON.stringify(n)}`)},a=(e={})=>l({...h,checkpoint:20,epoch:"e1",fromCursor:10,rowsPatch:[{id:"r1",op:"upsert",value:{title:"hello"}}],type:"relay_shape_poke",...e});m("frames a poke as pokeStart → pokePart per shape → pokeEnd, under one poke id",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:n}=u();try{const r=c(n,[{cursor:10,epoch:"e1",frames:[]}]),p=d(n,t,"c-alice","s1");await s(r,p,"s1"),await r.handleControl(a());const w=(await o(p)).map(f=>JSON.parse(f));i(w.map(f=>f.type)).toStrictEqual(["pokeStart","pokePart","pokeEnd"]),i(new Set(w.map(f=>f.pokeId)).size).toBe(1),i(w[1]?.shapeId).toBe("s1"),i(w[2]?.checkpoint).toBe(20)}finally{e?.()}}),m("delivers a poke only to sockets whose cursor matches, and advances them past it",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:n}=u();try{const r=c(n,[{cursor:10,epoch:"e1",frames:[]},{cursor:7,epoch:"e1",frames:[]}]),p=d(n,t,"c-alice","s1"),y=d(n,t,"c-bob","s2");await s(r,p,"s1"),await s(r,y,"s2"),await r.handleControl(a());const w=await o(p);i(w.length).toBe(3);const f=await o(y);i(f.length).toBe(0),await r.handleControl(a());const g=await o(p);i(g.length).toBe(3)}finally{e?.()}}),m("skips a socket whose cursor matches under a different CDC epoch",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:n}=u();try{const r=c(n,[{cursor:10,epoch:"e1",frames:[]}]),p=d(n,t,"c-alice","s1");await s(r,p,"s1"),await r.handleControl(a({epoch:"e2"}));const y=await o(p);i(y.length).toBe(0),await r.handleControl(a());const w=await o(p);i(w.length).toBe(3)}finally{e?.()}})}),k("RLS identity under live subscription",()=>{const b="shard-a",h={args:{},name:"lobby-messages"},d={args:{},name:"my-orders"},c=s=>{const a=[],e=[],t={fetch:(r,p)=>(a.push(JSON.parse(p?.body??"{}")),Promise.resolve(new Response(void 0,{status:204})))},n=B({buildShapeDiff:()=>[{id:"r1",op:"upsert",value:{}}],computeOpLogShapeSeed:()=>({baseCheckpoint:void 0,cursor:10,epoch:"e1",reset:!0,rowsPatch:[]}),currentCdcEpoch:()=>"e1",deliverWhisperLocal:()=>0,doName:()=>b,env:()=>({SHARD:{get:()=>t,getByName:()=>t,idFromName:r=>r}}),getWebSockets:()=>[],maskMetadata:()=>({columns:[]}),nextPokeId:()=>"poke-1",readAttachment:()=>({}),recordShapePokeFanout:()=>{},resolveShape:(r,p,y)=>(e.push(y),r===d.name?{columns:["id"],effectiveWhere:{org:y?.identity?.org??"anonymous"},global:!1,table:"orders"}:{columns:["id"],effectiveWhere:{room:"lobby"},global:!1,table:"messages"}),rlsMetadata:()=>({policies:[]}),shardBinding:()=>"SHARD",sql:()=>s});if(n===void 0)throw new Error("expected an owner link for an un-suffixed DO name");return{owner:n,posts:a,resolvedUnder:e}},l=async(s,a)=>{await s.handleControl(new Request("https://owner.internal/_lunora/relay",{body:JSON.stringify({...a,connectionId:"c-alice",identity:{org:"acme"},relayIndex:0,subId:"s1",type:"relay_shape_subscribe",userId:"u1"}),headers:{"content-type":"application/json"},method:"POST"}))};m("seeds a subscriber under its own forwarded identity, never the anonymous one",async()=>{const{close:s,host:a}=u();try{const{owner:e,resolvedUnder:t}=c(a.sql);await l(e,d),i(t.some(o=>o?.userId==="u1"&&o.identity?.org==="acme")).toBe(!0)}finally{s?.()}}),m("routes an identity-scoped shape to a per-socket poke, not the cohort multicast",async()=>{const{close:s,host:a}=u();try{const{owner:e,posts:t}=c(a.sql);await l(e,d),t.length=0,await e.onFlush(new Set(["orders"]),20);const o=t.filter(n=>n.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBe("c-alice")}finally{s?.()}}),m("still multicasts an identity-blind shape to the whole cohort",async()=>{const{close:s,host:a}=u();try{const{owner:e,posts:t}=c(a.sql);await l(e,h),t.length=0,await e.onFlush(new Set(["messages"]),20);const o=t.filter(n=>n.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBeUndefined()}finally{s?.()}})})})};export{D as defineEngineContractSuite};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{LunoraError as T}from"@lunora/errors";import{sql as m}from"drizzle-orm";import{runDrizzle as S}from"./runDrizzle-2ULFQR_k.mjs";import{liftSourceId as A}from"./liftSourceId-CA3ENhXj.mjs";import{normalizeSourceValue as W}from"./liftSourceId-CA3ENhXj.mjs";import{runExternalSourceTick as C,materializeExternalRowsIncremental as D}from"./materializeExternalRows-
|
|
1
|
+
import{LunoraError as T}from"@lunora/errors";import{sql as m}from"drizzle-orm";import{runDrizzle as S}from"./runDrizzle-2ULFQR_k.mjs";import{liftSourceId as A}from"./liftSourceId-CA3ENhXj.mjs";import{normalizeSourceValue as W}from"./liftSourceId-CA3ENhXj.mjs";import{runExternalSourceTick as C,materializeExternalRowsIncremental as D}from"./materializeExternalRows-DGjC_8Hc.mjs";const p="__lunora_source_cursor",M=e=>e instanceof Date?`d:${e.toISOString()}`:typeof e=="bigint"?`b:${e.toString()}`:typeof e=="number"?`n:${e.toString()}`:`s:${e}`,v=e=>{const t=e.slice(2);switch(e[0]){case"b":return BigInt(t);case"d":return new Date(t);case"n":return Number(t);default:return t}},h=/^-?\d+$/,N=/^-?\d+(?:\.\d+)?$/,x=(e,t)=>e instanceof Date&&t instanceof Date?e.getTime()>t.getTime():typeof e=="bigint"&&typeof t=="bigint"||typeof e=="number"&&typeof t=="number"?e>t:typeof e=="string"&&typeof t=="string"&&N.test(e)&&N.test(t)?h.test(e)&&h.test(t)?BigInt(e)>BigInt(t):Number(e)>Number(t):String(e)>String(t),O=(e,t,o)=>{let n=o===null?void 0:v(o);for(const r of e){const c=r[t];if(c==null)continue;const a=c;(n===void 0||x(a,n))&&(n=a)}return n===void 0?null:M(n)},B=e=>{S(e,m`CREATE TABLE IF NOT EXISTS ${m.identifier(p)} (
|
|
2
2
|
table_name TEXT NOT NULL,
|
|
3
3
|
shard_key TEXT NOT NULL,
|
|
4
4
|
watermark TEXT,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{applyCdcChanges as p}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{selectShapeRows as m}from"./selectShapeMembers-
|
|
1
|
+
import{applyCdcChanges as p}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{selectShapeRows as m}from"./selectShapeMembers-Dva-Z9VQ.mjs";import{diffExternalSource as g,projectExternalSourceRow as l}from"./diffExternalSource-DgDJhslq.mjs";import{stableStringify as d}from"./stableStringify-DibjylKD.mjs";const x=async(t,s,a,e)=>{const{changes:o,nextBaseline:n}=g(s,a,e);return await p(t,o),{applied:o.length,nextBaseline:n}},R=async(t,s,a)=>{const{columns:e,deletedIds:o,table:n}=a,r=[];for(const f of s){const i=l(f,e),c=String(i._id);if(o?.has(c)){await t.get(c,n)&&r.push({id:c,op:"delete",seq:0,table:n,ts:0});continue}const u=await t.get(c,n);u&&d(l({...u,_id:c},e))===d(i)||r.push({doc:i,id:c,op:"insert",seq:0,table:n,ts:0})}return await p(t,r),{applied:r.length}},h=(t,s,a)=>{const e=new Map;for(const{doc:o,id:n}of m(t,s,void 0))e.set(n,d(l({...o,_id:n},a)));return e},_=async(t,s,a,e)=>{const o=h(t,e.table,e.columns);return x(s,a,o,e)};export{x as materializeExternalRows,R as materializeExternalRowsIncremental,h as readExternalSourceBaseline,_ as runExternalSourceTick};
|
package/dist/packem_shared/{runShardMigrations-PZnc7KFE.mjs → runShardMigrations-D6rTX7Bn.mjs}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{S as A,y as u,l as L}from"./ctx-db-companions-
|
|
1
|
+
import{S as A,y as u,l as L}from"./ctx-db-companions-CN8hWTF_.mjs";import{sql as e}from"drizzle-orm";import{aggregateTableName as p}from"./aggregateTableName-CGi8gxeK.mjs";import{backfillSearchIndexesForTable as N}from"./backfillAggregateIndexes-BCLXdiIS.mjs";import{migrateCdcLog as h,migrateCdcMeta as R}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{migrateClientWatermark as x}from"./CLIENT_WATERMARK_TABLE-CRnrAnJ2.mjs";import{migrateCommitSeq as l}from"./COMMIT_SEQ_FIELD-BUdOMG5y.mjs";import{migrateGlobalShapeSnapshot as O}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-DSA6mzyx.mjs";import{migrateIdempotency as C}from"./IDEMPOTENCY_TABLE-DOpm_oMF.mjs";import{m as b}from"./ctx-db-relay-shapes-CakvRIFx.mjs";import{migrateSearchState as U}from"./SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{migrateShapePokeCursor as $}from"./SHAPE_POKE_CURSOR_TABLE-ByJVDHds.mjs";import{runDrizzle as a}from"./runDrizzle-2ULFQR_k.mjs";import{D,e as g,d as T,t as X,i as G,g as F,a as M,b as B,A as I}from"./do-sql-bkXQEBl8.mjs";import{renderSql as k}from"./param-DlozcSQu.mjs";import{migrateDurableStreams as Y}from"./appendStreamChunk-8eH4HB1Q.mjs";import{rankTableName as v,sortColumnName as y}from"./RANK_TIEBREAK-D157XEqw.mjs";import{migrateReactorState as P}from"./REACTOR_STATE_TABLE-QPRFyxMS.mjs";import{recordSchemaVersion as j}from"./SCHEMA_HISTORY_MAX_VERSIONS-BluIj2s-.mjs";const K=e`_creationTime, id`,V=(r,o,n,i,t)=>{const m=a(r,e`SELECT sql FROM sqlite_master WHERE type = 'index' AND name = ${o} AND tbl_name = ${n}`).toArray()[0]?.sql;if(m==null)return;const f=c=>{const _=c.indexOf("(");return _===-1?void 0:c.slice(_,c.lastIndexOf(")")+1)},d=f(k("sqlite",T(o,n,i,t)).sql),E=f(m);d===void 0||E===void 0||d===E||a(r,e`DROP INDEX IF EXISTS ${e.identifier(o)}`)},w=(r,o,n)=>{for(const i of n.indexes){const t=`${o}_${i.name}`,s=i.unique??!1,m=e.join(i.fields.map(d=>g(d)),e`, `),f=s?m:e`${m}, ${K}`;V(r,t,o,f,s),a(r,T(t,o,f,s))}for(const[i,t]of X(n)){if(!t.unique)continue;const s=`${o}_unique_${i}`;a(r,T(s,o,g(i),!0))}},z=(r,o,n)=>{if(!(!n.searchIndexes||n.searchIndexes.length===0||!G(r))){for(const i of n.searchIndexes){const t=A(o,i.name);a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(t)} USING fts5(${e.identifier(u)}, ${e.identifier(L)} UNINDEXED)`),a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(`${t}__vocab`)} USING fts5vocab(${e.identifier(t)}, ${e.raw("instance")})`)}N(r,o,n)}},W=(r,o,n)=>{if(n.geoIndexes)for(const i of n.geoIndexes){const t=F(o,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(t)} (${e.identifier("__id__")} TEXT PRIMARY KEY, ${e.identifier("__geohash__")} TEXT NOT NULL, ${e.identifier("__lat__")} REAL NOT NULL, ${e.identifier("__lng__")} REAL NOT NULL)`);const s=`${o}__geo_${i.name}__btree`;a(r,T(s,t,e`${e.identifier("__geohash__")} ASC, ${e.identifier("__id__")} ASC`,!1))}},H=(r,o,n)=>{if(n.aggregateIndexes)for(const i of n.aggregateIndexes){const t=p(o,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(t)} (${M} TEXT PRIMARY KEY, ${B} REAL, ${I} INTEGER NOT NULL DEFAULT 0)`),a(r,e`PRAGMA table_info(${e.identifier(t)})`).toArray().some(m=>m.name==="__count__")||a(r,e`ALTER TABLE ${e.identifier(t)} ADD COLUMN ${I} INTEGER NOT NULL DEFAULT 0`)}},J=(r,o,n)=>{if(n.rankIndexes)for(const i of n.rankIndexes){const t=v(o,i.name),s=i.sortBy.map((c,_)=>y(_)),m=s.map(c=>e`${e.identifier(c)} BLOB`),f=m.length>0?e`, ${e.join(m,e`, `)}`:e``;a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(t)} (${e.identifier("__id__")} TEXT PRIMARY KEY, ${e.identifier("__partition__")} TEXT NOT NULL${f})`);const d=[e`${e.identifier("__partition__")} ASC`];for(const[c,_]of s.entries()){const S=i.sortBy[c]?.direction;d.push(e`${e.identifier(_)} ${e.raw(S==="desc"?"DESC":"ASC")}`)}d.push(e`${e.identifier("__id__")} ASC`);const E=`${o}__rank_${i.name}__btree`;a(r,T(E,t,e.join(d,e`, `),!1))}},Ie=(r,o,n={})=>{n.schemaSnapshot!==void 0&&j(r,n.schemaSnapshot.hash,n.schemaSnapshot.json),U(r);for(const[i,t]of Object.entries(o.tables))t.shardMode?.kind!=="global"&&(a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(i)} (
|
|
2
2
|
id TEXT PRIMARY KEY,
|
|
3
3
|
_creationTime REAL NOT NULL,
|
|
4
4
|
${e.identifier(D)} TEXT NOT NULL
|
package/dist/packem_shared/{selectShapeMembers-CKQv8nwD.mjs → selectShapeMembers-Dva-Z9VQ.mjs}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{sql as e}from"drizzle-orm";import{runDrizzle as m}from"./runDrizzle-2ULFQR_k.mjs";import{D as p,r as d,e as h}from"./do-sql-bkXQEBl8.mjs";import{sqliteInList as w}from"./param-DlozcSQu.mjs";import{c as S}from"./where-sql-
|
|
1
|
+
import{sql as e}from"drizzle-orm";import{runDrizzle as m}from"./runDrizzle-2ULFQR_k.mjs";import{D as p,r as d,e as h}from"./do-sql-bkXQEBl8.mjs";import{sqliteInList as w}from"./param-DlozcSQu.mjs";import{c as S}from"./where-sql-D6MSVjdL.mjs";import{serializeSqlValue as $}from"./serializeSqlValue-DbI1VQYM.mjs";const C={fieldRef:h,serialize:$},g=o=>{if(o.length!==0)return w(e`${e.identifier("id")}`,o,!1)},u=(o,i)=>{const r=[];i&&r.push(i);const t=S(o,C);return t&&r.push(t),r.length===0?e``:e` WHERE ${e.join(r,e` AND `)}`},v=(o,i,r)=>{const t=u(r,void 0),s=m(o,e`SELECT id, _creationTime, ${e.identifier(p)} FROM ${e.identifier(i)}${t}`).toArray(),f=[];for(const l of s){const n=d(l),{id:c}=l;n!==void 0&&typeof c=="string"&&f.push({doc:n,id:c})}return f},z=(o,i,r,t)=>{const s=new Map;if(t.length===0)return s;const f=u(r,g(t)),l=m(o,e`SELECT id, _creationTime, ${e.identifier(p)} FROM ${e.identifier(i)}${f}`).toArray();for(const n of l){const c=d(n),{id:a}=n;c!==void 0&&typeof a=="string"&&s.set(a,c)}return s};export{z as selectShapeMembers,v as selectShapeRows};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{LunoraError as O}from"@lunora/errors";import{sql as l}from"drizzle-orm";import{sqliteInList as A,isJsonSafe as R,WORKERD_SQLITE_LIMITS as T}from"./param-DlozcSQu.mjs";import{quoteIdentifier as b}from"./quoteIdentifier-CObIFRhb.mjs";import{RELATION_EXISTS_KEY as L}from"./RELATION_EXISTS_KEY-CFUhnZSZ.mjs";const $={binary:(n,t,o)=>l`${n} ${l.raw(t)} ${o}`,constant:n=>n?l`1 = 1`:l`0 = 1`,connect:(n,t,o)=>l`(${n}) ${l.raw(o)} (${t})`,contains:(n,t)=>l`instr(lower(${n}), lower(${t})) > 0`,inList:(n,t,o,i)=>A(n,t,o,i),negate:n=>l`NOT (${n})`,nullCheck:(n,t)=>t?l`${n} IS NOT NULL`:l`${n} IS NULL`,value:n=>l`${n}`},u=(...n)=>{let t="";const o=[];for(const i of n)typeof i=="string"?t+=i:(t+=i.text,o.push(...i.params));return{params:o,text:t}},p=n=>({params:[n],text:"?"}),S=n=>({params:[],text:n}),Y=n=>S(b(n)),B={binary:(n,t,o)=>u(n," ".concat(t," "),p(o)),constant:n=>S(n?"1 = 1":"0 = 1"),connect:(n,t,o)=>u("(",n,") ".concat(o," ("),t,")"),contains:(n,t)=>u("instr(lower(",n,"), lower(",t,")) > 0"),inList:(n,t,o,i)=>{const r=o?" NOT IN ":" IN ";if(t.length>i&&!t.every(s=>R(s)))throw new O("BAD_REQUEST",`an "in" list of ${String(t.length)} values holds a value JSON cannot carry (bytes, a non-finite number, or malformed text), so it cannot be bound as one parameter — and ${String(t.length)} placeholders exceed SQLite's per-statement cap of 100 on Durable Objects and D1. Narrow the list to ${String(i)} values or fewer.`);if(t.length<=i){const s=[n,r,"("];for(const[e,c]of t.entries())e>0&&s.push(", "),s.push(p(c));return s.push(")"),u(...s)}return u(n,r,'(SELECT "value" FROM json_each(',p(JSON.stringify(t)),"))")},negate:n=>u("NOT (",n,")"),nullCheck:(n,t)=>u(n,t?" IS NOT NULL":" IS NULL"),value:p},m=T.boundParams/2,I=["eq","ne","lt","lte","gt","gte","in","notIn","isNull","contains"],x=new Set(I),_={eq:"=",gt:">",gte:">=",lt:"<",lte:"<=",ne:"<>"},E=n=>{if(n===null||typeof n!="object"||Array.isArray(n))return!1;const t=Object.keys(n);return t.length>0&&t.every(o=>x.has(o))},j=(n,t,o,i)=>{const r=i.value(o.serialize(t));return o.containsExpr?o.containsExpr(n,r):i.contains(n,r)},w=(n,t,o,i,r,s)=>i===null?t==="eq"||t==="ne"?s.nullCheck(n,t==="ne"):s.constant(!1):s.binary(n,o,r.serialize(i)),C=(n,t,o,i,r)=>{const s=Array.isArray(o)?o:[];if(s.length===0)return r.constant(t==="NOT IN");const e=s.map(a=>i.serialize(a)),c=t==="NOT IN";return i.inList?i.inList(n,e,c):r.inList(n,e,c,m)},G=(n,t,o)=>{const i=l.join(t.map(r=>l`${r}`),l`, `);return o?l`${n} NOT IN (${i})`:l`${n} IN (${i})`},y=(n,t,o,i)=>{const r=t,s=[];for(const e of I){if(!(e in r))continue;const c=r[e],a=_[e];a?s.push(w(n,e,a,c,o,i)):e==="isNull"?s.push(i.nullCheck(n,!c)):e==="contains"?s.push(j(n,c,o,i)):s.push(C(n,e==="in"?"IN":"NOT IN",c,o,i))}return s},k=(n,t,o,i)=>{const r=o.fieldRef(n);return E(t)?y(r,t,o,i):t===null?[i.nullCheck(r,!1)]:[i.binary(r,"=",o.serialize(t))]},h=(n,t,o)=>{if(n.length<=1)return n[0];const i=Math.floor(n.length/2);return o.connect(h(n.slice(0,i),t,o),h(n.slice(i),t,o),t)},D=(n,t,o,i)=>{const r=Array.isArray(n)?n:[],s=[];for(const e of r){const c=N(e??{},o,i);c!==void 0&&s.push(c)}return s.length===0?t==="OR"?i.constant(!1):void 0:h(s,t,i)},U=new Set(["AND","NOT","OR",L]),q=(n,t,o,i)=>{if(n===L){if(!o.relationExists)throw new O("INTERNAL","encountered a relation EXISTS marker without a relationExists strategy hook");return o.relationExists(t)}if(n==="NOT"){const r=N(t??{},o,i);return r===void 0?void 0:i.negate(r)}return D(t,n,o,i)},N=(n,t,o)=>{const i=[];for(const[r,s]of Object.entries(n))if(U.has(r)){const e=q(r,s,t,o);e!==void 0&&i.push(e)}else i.push(...k(r,s,t,o));return h(i,"AND",o)},v=T.boundParams/2,f=n=>{if(Array.isArray(n))return n.reduce((o,i)=>o+f(i),0);if(n===null||typeof n!="object")return 0;let t=0;for(const[o,i]of Object.entries(n))o==="in"||o==="notIn"?t+=1:(o==="AND"||o==="NOT"||o==="OR"||E(i))&&(t+=f(i));return t},J=(n,t,o=$)=>{if(!n||Object.keys(n).length===0)return;const i=f(n);if(i===0)return N(n,t,o);const r=Math.max(1,Math.floor(v/i)),s=t.inList??((e,c,a,d)=>o.inList(e,c,a,d??r));return N(n,{...t,inList:(e,c,a)=>s(e,c,a,r)},o)};export{J as c,Y as i,u as j,G as l,S as r,B as t};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunora/shard-engine",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.50",
|
|
4
4
|
"description": "Host-neutral reactive engine for Lunora: per-shard state, OCC, CDC, reactive subscriptions, and the poke protocol. Consumes @lunora/platform host contracts and can be mounted on any platform host.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{LunoraError as h}from"@lunora/errors";import{d as b,e as m}from"./wire-codec-COhOSEe4.mjs";const y="id",E=e=>e.at(-1)?.direction==="desc"?"desc":"asc",_=new Set(["_id","id"]),T=e=>{const o=[];for(const t of e??[])for(const[r,i]of Object.entries(t))o.push({direction:i,field:r});return o.length===0?[{direction:"asc",field:"_creationTime"}]:o},v=/[\u0080-\u{10FFFF}]/u,C=e=>{if(!v.test(e))return btoa(e);const o=new TextEncoder().encode(e);let t="";for(const r of o)t+=String.fromCodePoint(r);return btoa(t)},F=e=>{const o=atob(e),t=Uint8Array.from(o,r=>r.codePointAt(0)??0);return new TextDecoder().decode(t)},f="~2",w=(e,o)=>{const t=o.map(r=>e[r.field]);return t.push(e._id),f+C(JSON.stringify(m(t)))},d=()=>new h("BAD_REQUEST","invalid cursor"),I=e=>{if(!e.startsWith(f))throw d();let o;try{o=b(JSON.parse(F(e.slice(f.length))))}catch{throw d()}if(!Array.isArray(o))throw d();return o},u=(e,o,t)=>{const r=e.some(n=>_.has(n.field))?e:[...e,{direction:E(e),field:y}],i=[];for(const[n,s]of r.entries()){const c=[];for(const[p,S]of r.slice(0,n).entries())c.push({[S.field]:{eq:o[p]}});const l=t(s.direction,n===r.length-1);c.push({[s.field]:{[l]:o[n]}});const[a]=c;i.push(c.length===1&&a!==void 0?a:{AND:c})}return{OR:i}},k=(e,o)=>u(e,o,t=>t==="desc"?"lt":"gt"),O=(e,o)=>e==="desc"?o?"gte":"gt":o?"lte":"lt",B=(e,o)=>u(e,o,O),g=["_id","_creationTime"],L=(e,o,t)=>{if(!o)return e;const r=new Set([...o,...g,...t?Object.keys(t):[]]);return e.map(i=>{const n={};for(const s of r)s in i&&(n[s]=i[s]);return n})},N=(e,o)=>e&&o!==!0?{[e.field]:{isNull:!0}}:void 0,R=(e,o)=>o===void 0||e[o]===null||e[o]===void 0;export{f as CURSOR_PREFIX,L as applySelect,B as buildSeekBeforeWhere,k as buildSeekWhere,I as decodeCursor,w as encodeCursor,F as fromBase64,d as invalidCursor,R as isLiveForCompanion,T as normalizeOrderKeys,N as softDeleteScope,E as tiebreakDirectionFor,C as toBase64};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import{sql as e}from"drizzle-orm";import{runDrizzle as i}from"./runDrizzle-2ULFQR_k.mjs";const r="__global_shape_snapshot",T=n=>{i(n,e`CREATE TABLE IF NOT EXISTS ${e.identifier(r)} (
|
|
2
|
-
connection_id TEXT NOT NULL,
|
|
3
|
-
sub_id TEXT NOT NULL,
|
|
4
|
-
members TEXT NOT NULL,
|
|
5
|
-
PRIMARY KEY (connection_id, sub_id)
|
|
6
|
-
)`)},b=(n,o,t)=>{const s=i(n,e`SELECT members FROM ${e.identifier(r)} WHERE connection_id = ${o} AND sub_id = ${t} LIMIT 1`).toArray()[0]?.members;if(s===void 0)return new Map;try{const c=JSON.parse(s);return c===null||typeof c!="object"?new Map:new Map(Object.entries(c))}catch{return new Map}},p=(n,o,t,a)=>{const s=JSON.stringify(Object.fromEntries(a));i(n,e`INSERT INTO ${e.identifier(r)} (connection_id, sub_id, members) VALUES (${o}, ${t}, ${s})
|
|
7
|
-
ON CONFLICT(connection_id, sub_id) DO UPDATE SET members = excluded.members`)},S=(n,o,t)=>{i(n,e`DELETE FROM ${e.identifier(r)} WHERE connection_id = ${o} AND sub_id = ${t}`)},m=(n,o)=>{i(n,e`DELETE FROM ${e.identifier(r)} WHERE connection_id = ${o}`)};export{r as GLOBAL_SHAPE_SNAPSHOT_TABLE,S as deleteGlobalShapeSnapshot,m as deleteGlobalShapeSnapshotsForConnection,T as migrateGlobalShapeSnapshot,b as readGlobalShapeSnapshot,p as writeGlobalShapeSnapshot};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{LunoraError as $}from"@lunora/errors";import{c as nn,q as nt,S as on,l as Me,a as rn}from"./ctx-db-companions-DKBBb0u8.mjs";import{sql as i}from"drizzle-orm";import{d as sn}from"./wire-codec-COhOSEe4.mjs";import{throwingScheduler as cn,aggregateSqlFunction as De,normalizeCountArgument as an}from"./AGGREGATE_SQL_FUNCTION-m1iUU1rv.mjs";import{aggregateTableName as je,encodeAggregateKey as Ke,readAggregateValue as Qe}from"./aggregateTableName-CGi8gxeK.mjs";import{mergeWhere as Q,CountRlsUnsupportedError as ze,selectIndexForGroupBy as dn,selectIndexForCount as ln,selectIndexForAggregate as un}from"./CountRlsUnsupportedError-Bdfupt3g.mjs";import{backfillSearchIndexesForTable as fn}from"./backfillAggregateIndexes-BtC-XM_S.mjs";import{backfillAggregateIndexes as ur,backfillRankIndexes as fr,backfillSearchIndexes as hr}from"./backfillAggregateIndexes-BtC-XM_S.mjs";import{appendCdcChange as hn}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{CDC_LOG_TABLE as pr,applyCdcChanges as gr,bumpCdcEpoch as $r,cdcCanVouchFor as yr,cdcSeqLeavingRows as Er,cdcTouchesTables as mr,cdcTrimmedError as Sr,compactCdcDocs as _r,cursorBelowRetainedFloor as Tr,minCdcReplayableSeq as Rr,minCdcSeq as vr,readCdcChangeKeys as Ar,readCdcChanges as Ir,readCdcCursor as Cr,readCdcEpoch as xr,trimCdcChanges as br}from"./CDC_LOG_TABLE-gl0FuepJ.mjs";import{allocateCommitSeq as wn,COMMIT_SEQ_FIELD as pn}from"./COMMIT_SEQ_FIELD-BUdOMG5y.mjs";import{isMemoryTable as gn}from"./clearMemoryTables-BGbmag2i.mjs";import{computeRankPage as yt}from"./computeRankPage-kpaDsuAs.mjs";import{SCAN_DEP as H}from"./SCAN_DEP-D7qE3iUe.mjs";import{runDrizzle as N,runSql as me}from"./runDrizzle-2ULFQR_k.mjs";import{D as ne,k as se,r as de,b as ke,A as Je,a as Le,e as Y,t as Ut,j as We,q as Et,i as $n,h as Pt,g as yn}from"./do-sql-bkXQEBl8.mjs";import{renderSql as Gt,unionAll as ot,WORKERD_SQLITE_LIMITS as Ht,sqliteInList as En}from"./param-DlozcSQu.mjs";import{coveringGeohashes as mn,boundingBoxGeohashes as Sn,haversineMeters as _n,pointInBoundingBox as Tn}from"./GEO_DEFAULT_PRECISION-CqpQZ-J_.mjs";import{NotFoundError as Rn}from"./NotFoundError-BhF7FeFr.mjs";import{softDeleteScope as ae,normalizeOrderKeys as vn,buildSeekWhere as Nt,decodeCursor as Ze,applySelect as mt,encodeCursor as et,tiebreakDirectionFor as An,buildSeekBeforeWhere as In}from"./CURSOR_PREFIX-C0HEpLAN.mjs";import{rankTableName as St,sortColumnName as _t,resolveRankPartition as Cn,encodePartitionKey as xn,RANK_TIEBREAK as bn}from"./RANK_TIEBREAK-D157XEqw.mjs";import{indexKeysForRow as Mn,buildIndexRange as Dn}from"./buildIndexRange-CBKQmHSS.mjs";import{assertFlatPredicate as Ve,resolveRelationPredicates as Tt}from"./DEFAULT_MAX_RELATION_KEYS-Bl7H97aj.mjs";import{runRowValidators as Ye,resolveWith as Rt,relationHooks as vt,applyOnDelete as kn,fanOutScalarCounts as Ln}from"./applyOnDelete-82J3ehcF.mjs";import{guardWriter as Fn}from"./RLS_UNWRAP_SYMBOL-BWloGsd3.mjs";import{quoteIdentifier as Se}from"./quoteIdentifier-CObIFRhb.mjs";import{i as qn}from"./sql-projection-BqmxFxQU.mjs";import{createSystemReader as Wn}from"./createSystemReader-BtYeSMDb.mjs";import{ConflictError as ye}from"./ConflictError-C8GtJmjS.mjs";import{runTriggers as Bn}from"./hasTrigger-CjlwI4le.mjs";import{c as te,t as Ue,r as Be,j as Ee,i as At}from"./where-sql-DxCbgqDJ.mjs";import{CLIENT_WATERMARK_TABLE as Dr,advanceClientWatermark as kr,migrateClientWatermark as Lr,readClientWatermark as Fr}from"./CLIENT_WATERMARK_TABLE-CRnrAnJ2.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as Wr,deleteGlobalShapeSnapshot as Br,deleteGlobalShapeSnapshotsForConnection as Ur,migrateGlobalShapeSnapshot as Pr,readGlobalShapeSnapshot as Gr,writeGlobalShapeSnapshot as Hr}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-BicDuO0a.mjs";import{IDEMPOTENCY_TABLE as Or,readIdempotent as jr,trimIdempotent as Kr,writeIdempotent as Qr}from"./IDEMPOTENCY_TABLE-DOpm_oMF.mjs";import{runShardMigrations as Jr}from"./runShardMigrations-PZnc7KFE.mjs";import{SEARCH_STATE_TABLE as Yr}from"./SEARCH_STATE_TABLE-BCqn5ksa.mjs";import{selectShapeMembers as Zr,selectShapeRows as ei}from"./selectShapeMembers-CKQv8nwD.mjs";import{serializeSqlValue as oe}from"./serializeSqlValue-DbI1VQYM.mjs";const Un=o=>{const r=atob(o),t=Uint8Array.from(r,a=>a.codePointAt(0)??0);return new TextDecoder().decode(t)},Pn=()=>new $("BAD_REQUEST","invalid cursor"),It=16,Ct=8,X=1024,rt=(o,r)=>r.query(o),Gn=(o,r)=>{if(o.length===0)return 0;let t=0;for(const[a,u]of r.entries()){const p=a===r.length-1;let y=0;for(const S of o)(p?S.startsWith(u):S===u)&&(y+=1);if(y===0)return 0;t+=y}return t},Hn=(o,r)=>{if(!r)return{exact:!0,lower:o,upper:o};const t=[...o].at(-1)??"",a=(t.codePointAt(0)??0)+1;if(a>=55296&&a<=57343||a>1114111)return{exact:!0,lower:o,upper:o};const u=o.slice(0,o.length-t.length);return{exact:!1,lower:o,upper:u+String.fromCodePoint(a)}},Nn=(o,r,t)=>{const a={eq:(u,p)=>{if(!o.definition.filterFields?.includes(u))throw new $("INTERNAL",`field "${u}" is not a filter field of search index "${o.indexName}" on table "${r}"`);if(o.filters.length>=Ct)throw new $("BAD_REQUEST",`search index "${o.indexName}" on table "${r}": at most ${String(Ct)} .eq() filters are supported per search query`);return o.filters.push({field:u,value:p}),a},search:(u,p)=>{const y=o;if(u!==y.definition.field)throw new $("INTERNAL",`search index "${y.indexName}" on table "${r}" indexes "${y.definition.field}", not "${u}"`);const S=rt(p,t).length;if(S>It)throw new $("BAD_REQUEST",`search index "${y.indexName}" on table "${r}": at most ${String(It)} search terms are supported (got ${String(S)})`);return y.field=u,y.query=p,y.hasQuery=!0,a}};return a},On=o=>{if(o.length>X)throw new $("BAD_REQUEST",`more than ${String(X)} documents match this search — narrow it with filters or read it a page at a time with .paginate()`)},jn=o=>Math.min(o.offset+o.numItems+1,X),Kn=o=>btoa(`search:${String(o)}`),Qn=o=>{let r;try{r=Un(o)}catch{return}if(!r.startsWith("search:"))return;const t=Number(r.slice(7));return Number.isInteger(t)&&t>=0?t:void 0},zn=o=>{if(typeof o.endCursor=="string")throw new $("BAD_REQUEST","bounded (endCursor) pagination is not supported on search queries — relevance order has no stable range boundary");if(!Number.isFinite(o.numItems))throw new $("BAD_REQUEST",`search pagination needs a finite numItems, got ${String(o.numItems)}`);const r=Math.max(0,Math.floor(o.numItems)),t=o.cursor?Qn(o.cursor):0;if(t===void 0)throw Pn();if(t+r>=X)throw new $("BAD_REQUEST",`search pagination reaches the ${String(X)}-document limit (offset ${String(t)} + ${String(r)} requested) — a page must end below the cap so the probe row that answers \`hasMore\` still fits: retry with numItems ${String(Math.max(1,X-t-1))} or fewer, or narrow the query or the filters instead`);return{numItems:r,offset:t}},Jn=(o,r)=>{const t=r.offset+r.numItems,a=r.numItems>0&&o.length>t;return{continueCursor:a?Kn(t):null,isDone:!a,page:o.slice(r.offset,t)}},Vn=o=>{if(o===void 0)return X+1;if(!Number.isFinite(o))return X;const r=Math.max(0,Math.floor(o));if(r>X)throw new $("BAD_REQUEST",`search returns at most ${String(X)} documents (asked for ${String(r)}) — narrow the query or paginate instead`);return r},Pe=o=>{const r=new Map;return t=>{const a=r.get(t);if(a!==void 0)return a;const u=o(Se(t));return r.set(t,u),u}},le=Se(ne),Yn=Pe(o=>`INSERT INTO ${o} (id, _creationTime, ${le}) VALUES (?, ?, ?)`),xt=Pe(o=>`UPDATE ${o} SET ${le} = ? WHERE id = ? AND ${le} = ?`),Xn=Pe(o=>`UPDATE ${o} SET _creationTime = ?, ${le} = ? WHERE id = ? AND ${le} = ?`),Zn=Pe(o=>`DELETE FROM ${o} WHERE id = ? AND ${le} = ?`),eo="SELECT changes() AS changed",bt=new Map,to="",no=o=>{const r=JSON.stringify(o),t=bt.get(r);if(t!==void 0)return t;const a=o.map(p=>i`SELECT ${i.raw(`'${p.replaceAll("'","''")}'`)} AS __t__, id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(p)} WHERE id = ${to}`),{sql:u}=Gt("sqlite",i`${ot(a)} LIMIT 1`);return bt.set(r,u),u},oo=(o,r)=>r.map(()=>o),ro=/^[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/iu,io=o=>{if(!ro.test(o))throw new $("INTERNAL",`invalid clientId ${JSON.stringify(o)}: a client-supplied row id must be a UUID`)},Mt=50,Ot=500,Fe=Math.floor(Ht.boundParams/3),ge=Ht.boundParams,so=128,ce=(o,r,t)=>{const a=r??Ot;if(o>a)throw new $("BATCH_LIMIT_EXCEEDED",`${t}: batch of ${String(o)} exceeds the limit of ${String(a)} (raise options.limit or chunk the call)`,{status:400})},co=o=>{const r={eq:(t,a)=>(o.sqlConditions.push({comparator:"=",field:t,value:a}),r),gt:(t,a)=>(o.sqlConditions.push({comparator:">",field:t,value:a}),r),gte:(t,a)=>(o.sqlConditions.push({comparator:">=",field:t,value:a}),r),lt:(t,a)=>(o.sqlConditions.push({comparator:"<",field:t,value:a}),r),lte:(t,a)=>(o.sqlConditions.push({comparator:"<=",field:t,value:a}),r)};return r},ao=o=>Math.max(o,X),jt=(o,r)=>{const t=o.filters.map(a=>i`${Y(a.field)} = ${oe(a.value)}`);return r&&t.push(r),t},lo=(o,r,t,a,u)=>{const p=rt(t.query,nt(t.definition.language));if(p.length===0)return[];const y=on(r,t.indexName),S=`${y}__vocab`,T=p.length-1,L=p.map((B,D)=>{const q=Hn(B,D===T),z=q.exact?i`${i.identifier("term")} = ${q.lower}`:i`${i.identifier("term")} >= ${q.lower} AND ${i.identifier("term")} < ${q.upper}`;return i`SELECT ${i.identifier("doc")}, ${i.raw(String(D))} AS ${i.identifier("__term__")}, COUNT(*) AS ${i.identifier("__n__")} FROM ${i.identifier(S)} WHERE ${z} GROUP BY ${i.identifier("doc")}`}),E=p.map((B,D)=>i`SUM(CASE WHEN u.${i.identifier("__term__")} = ${i.raw(String(D))} THEN u.${i.identifier("__n__")} ELSE 0 END)`),v=i`SELECT f.${i.identifier(Me)} AS ${i.identifier(Me)}, ${i.join(E,i` + `)} AS ${i.identifier("__score__")} FROM (${ot(L)}) u JOIN ${i.identifier(y)} f ON f.rowid = u.${i.identifier("doc")} GROUP BY f.${i.identifier(Me)} HAVING ${i.join(E.map(B=>i`${B} > 0`),i` AND `)}`,A=jt(t,u);let _=i`SELECT m.id, m._creationTime, m.${i.identifier(ne)}, s.${i.identifier("__score__")} AS ${i.identifier("__score__")} FROM (${v}) s JOIN ${i.identifier(r)} m ON m.id = s.${i.identifier(Me)}`;A.length>0&&(_=i`${_} WHERE ${i.join(A,i` AND `)}`),_=i`${_} ORDER BY s.${i.identifier("__score__")} DESC, m._creationTime DESC, m.id ASC LIMIT ${i.raw(String(a))}`;const F=[];for(const B of N(o,_)){const D=Pt(B);if(D){const q=B.__score__;F.push({document:D,score:typeof q=="number"?q:Number(q??0)})}}return F},uo=(o,r,t,a,u)=>{const p=nt(t.definition.language),y=rt(t.query,p);if(y.length===0)return[];const S=jt(t,u);let T=i`SELECT id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(r)}`;S.length>0&&(T=i`${T} WHERE ${i.join(S,i` AND `)}`),T=i`${T} ORDER BY _creationTime DESC, id ASC LIMIT ${i.raw(String(ao(a)))}`;const L=N(o,T).toArray(),E=[];for(const v of L){const A=Pt(v);if(!A)continue;const _=Gn(rn(A,t.definition),y);_>0&&E.push({creationTime:typeof A._creationTime=="number"?A._creationTime:0,doc:A,id:typeof A._id=="string"?A._id:"",score:_})}return E.sort((v,A)=>A.score-v.score||A.creationTime-v.creationTime||v.id.localeCompare(A.id)),E.slice(0,a).map(v=>({document:v.doc,score:v.score}))},Xe=(o,r,t,a)=>{if(!Number.isFinite(o.lat)||o.lat<-90||o.lat>90||!Number.isFinite(o.lng)||o.lng<-180||o.lng>180)throw new $("BAD_REQUEST",`geo index "${a}" on table "${t}": ${r} must have a finite lat in [-90, 90] and lng in [-180, 180]`)},fo=(o,r)=>{const t=o,a={near:(u,p)=>{if(t.within)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near() or .within(), not both`);if(Xe(u,".near() point",r,t.indexName),!Number.isFinite(p)||p<=0)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .near() radiusMeters must be a finite number > 0, got ${String(p)}`);return t.near={point:{lat:u.lat,lng:u.lng},radiusMeters:p},a},within:u=>{if(t.near)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near() or .within(), not both`);if(Xe(u.sw,".within() sw corner",r,t.indexName),Xe(u.ne,".within() ne corner",r,t.indexName),u.sw.lat>u.ne.lat)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .within() corners are transposed (sw.lat > ne.lat)`);if(u.sw.lng>u.ne.lng)throw new $("BAD_REQUEST",`geo index "${t.indexName}" on table "${r}": .within() box crosses the antimeridian (sw.lng > ne.lng), which is not supported — split it into two boxes at ±180 and union the results`);return t.within={ne:{lat:u.ne.lat,lng:u.ne.lng},sw:{lat:u.sw.lat,lng:u.sw.lng}},a}};return a},ho=(o,r)=>{const t=o[r];if(t===null||typeof t!="object")return;const{lat:a,lng:u}=t;return typeof a=="number"&&typeof u=="number"?{lat:a,lng:u}:void 0},wo=(o,r)=>{const t=ho(o,r.definition.field);if(!t)return;const a=typeof o._creationTime=="number"?o._creationTime:0;if(r.near){const u=_n(r.near.point,t);return u<=r.near.radiusMeters?{creationTime:a,distance:u}:void 0}return Tn(t,r.within)?{creationTime:a,distance:0}:void 0},po=(o,r,t,a)=>{if(!t.near&&!t.within)throw new $("INTERNAL",`geo index "${t.indexName}" on table "${r}": call .near(point, radius) or .within(box)`);const u=t.near?mn(t.near.point,t.near.radiusMeters):Sn(t.within),p=yn(r,t.indexName),y=u.map(v=>i`(g.${i.identifier("__geohash__")} >= ${v} AND g.${i.identifier("__geohash__")} < ${`${v}{`})`),S=[i`(${i.join(y,i` OR `)})`];a&&S.push(a);const T=i`SELECT m.id, m._creationTime, m.${i.identifier(ne)} FROM ${i.identifier(p)} g JOIN ${i.identifier(r)} m ON m.id = g.${i.identifier("__id__")} WHERE ${i.join(S,i` AND `)}`,L=N(o,T).toArray(),E=[];for(const v of L){const A=de(v),_=A?wo(A,t):void 0;A&&_&&E.push({creationTime:_.creationTime,distance:_.distance,doc:A})}return E.sort((v,A)=>v.distance-A.distance||A.creationTime-v.creationTime),E},Kt=(o,r,t,a)=>{const u=[];for(const p of o)if(r.every(y=>y(a(p)))&&(u.push(p),typeof t=="number"&&u.length>=t))break;return u},go=(o,r,t,a,u,p=()=>{})=>{const y=t.within!==void 0,S=po(o,r,t,u).map(T=>({distanceMeters:y?null:T.distance,document:T.doc}));return p(S.length),typeof a=="number"?S.slice(0,Math.max(0,Math.floor(a))):S},Qt=(o,r,t,a,u,p=()=>{})=>{const{geo:y}=t;if(!y)throw new $("INTERNAL","runGeoTerminalScored called without a staged geo query");const S=t.inMemoryFilters.length>0,T=go(o,r,y,S?void 0:u,a,p);return S?Kt(T,t.inMemoryFilters,u,L=>L.document):T},zt=(o,r,t,a)=>{const u=`SELECT id, _creationTime, ${Se(ne)} FROM ${Se(o)}`,p=`ORDER BY ${t}${a===void 0?"":` LIMIT ${String(a)}`}`;return r===void 0?Be(`${u} ${p}`):Ee(`${u} WHERE `,r,` ${p}`)},$o=(o,r,t,a,u,p=()=>{})=>Qt(o,r,t,a,u,p).map(y=>y.document),yo=(o,r,t,a,u,p,y=()=>{})=>{const S=[];for(const v of t.sqlConditions)S.push(i`${Y(v.field)} ${i.raw(v.comparator)} ${oe(v.value)}`);a&&S.push(a);let T=i`SELECT id, _creationTime, ${i.identifier(ne)} FROM ${i.identifier(r)}`;S.length>0&&(T=i`${T} WHERE ${i.join(S,i` AND `)}`),T=i`${T} ORDER BY ${u}`,typeof p=="number"&&t.inMemoryFilters.length===0&&(T=i`${T} LIMIT ${i.raw(String(Math.max(0,Math.floor(p))))}`);const L=N(o,T).toArray();y(L.length);const E=[];for(const v of L){const A=de(v);if(A&&t.inMemoryFilters.every(_=>_(A))&&(E.push(A),typeof p=="number"&&E.length>=p))break}return E},$e={fieldRef:Y,serialize:oe},Jt=(o,r)=>{const t=r===void 0?void 0:o.shape[r];return t!==void 0&&qn(t)},Dt=(o,r)=>r.some(t=>Jt(o,t)),kt=(o,r,t)=>{if(Jt(o,r))throw new $("BAD_REQUEST",`${t}: "${r}" is stored as an order-preserving key, which SQL cannot reduce or group — declare an aggregateIndex covering this (by, field, op) so the maintained companion answers it`)},it={fieldRef:o=>Be(We(o)),serialize:oe},Eo=o=>{let r=0;const t=[],a={fieldRef:u=>Be(We(u)),relationExists:u=>{const{childWhere:p,negated:y,parentTable:S,relation:T}=u,L=`__rel_${String(r)}`,E=t.at(-1)??S;r+=1,o(T.table,H);const v=T.kind==="one"?T.field:T.references,A=T.kind==="one"?T.references:T.field,_=Be(`${Et(L,A)} = ${Et(E,v)}`);t.push(L);const F=te(p,a,Ue);t.pop();const B=F===void 0?_:Ee(_," AND ",F),D=Ee("EXISTS (SELECT 1 FROM ",At(T.table)," AS ",At(L)," WHERE ",B,")");return y?Ee("NOT ",D):D},serialize:oe};return a},Vt=o=>{const r=o.map(t=>`${We(t.field)} ${t.direction==="desc"?"DESC":"ASC"}`);return o.some(t=>t.field==="_id"||t.field==="id")||r.push(`${We("id")} ${An(o)==="desc"?"DESC":"ASC"}`),r.join(", ")},mo={"<":"lt","<=":"lte","=":"eq",">":"gt",">=":"gte"},So=o=>{const r=o.order;return o.indexFields.length>0?o.indexFields.map(t=>({direction:r,field:t})):[{direction:r,field:"_creationTime"}]},_o=(o,r,t,a)=>{const u=o.sqlConditions.map(p=>({[p.field]:{[mo[p.comparator]??"eq"]:p.value}}));if(t&&u.push(Nt(r,Ze(t))),a&&u.push(In(r,Ze(a))),u.length!==0)return u.length===1?u[0]:{AND:u}},To=(o,r,t)=>{const a=[];for(const u of o){const p=de(u);if(p&&r.every(y=>y(p))&&(a.push(p),t!==void 0&&a.length>t))break}return a},Ro=(o,r,t,a,u,p=()=>{})=>{const y=Math.max(0,Math.floor(a.numItems)),S=So(t),T=typeof a.endCursor=="string",L=te(_o(t,S,a.cursor,a.endCursor),it,Ue),E=u&&L?Ee(L," AND ",u):u??L,v=t.inMemoryFilters.length>0,A=zt(r,E,Vt(S),v||T?void 0:y+1),_=me(o,A.text,...A.params).toArray();p(_.length);const F=To(_,t.inMemoryFilters,v||T?void 0:y);if(T){const z=F.length>=2?F[Math.floor(F.length/2)-1]:void 0;return{continueCursor:a.endCursor??null,isDone:!0,page:F,splitCursor:z?et(z,S):null}}const B=F.length>y,D=B?F.slice(0,y):F,q=D.at(-1);return{continueCursor:B&&q?et(q,S):null,isDone:!B,page:D}};class vo extends ${constructor(r="unique() found more than one matching document"){super("NOT_UNIQUE",r,{name:"NotUniqueError"})}}const Ao=/\s/u,Io=String.fromCodePoint(0),Lt=(o,r,t)=>{if(!o.tables[r])throw new $("INTERNAL",`unknown table: ${r}`);return typeof t!="string"||t.length===0||Ao.test(t)||t.includes(Io)?null:t},Co=(o,r,t,a=()=>{},u=()=>{},p=()=>{})=>{const y=r.tables[t];if(!y)throw new $("INTERNAL",`unknown table: ${t}`);const S=ae(y.softDeleteMode,void 0),T=S?te(S,$e):void 0,L=S?te(S,it,Ue):void 0,E={indexFields:[],indexName:void 0,inMemoryFilters:[],order:"asc",sqlConditions:[]};let v=0;const A=m=>{const{search:b}=E;if(!b)throw new $("INTERNAL","runSearchFetch called without a staged search");fn(o,t,y);const I=E.inMemoryFilters.length>0,x=Vn(I?void 0:m),J=$n(o)?lo(o,t,b,x,T):uo(o,t,b,x,T);return I?(v=J.length,Kt(J,E.inMemoryFilters,m,ue=>ue.document)):(m===void 0&&On(J),J)},_=m=>A(m).map(b=>b.document),F=m=>{const b=zn(m);return Jn(_(jn(b)),b)},B=()=>{const m=E.indexFields.length>0?E.indexFields:["_creationTime"],b=E.order==="desc"?"DESC":"ASC",I=m.map(x=>i`${Y(x)} ${i.raw(b)}`);return m.includes("_creationTime")||I.push(i`${Y("_creationTime")} ${i.raw(b)}`),m.some(x=>x==="_id"||x==="id")||I.push(i`${Y("id")} ${i.raw(b)}`),i.join(I,i`, `)},D=()=>{if(E.search||E.geo||E.indexName===void 0){u(void 0);return}u(Dn(t,E.indexName,E.indexFields,E.sqlConditions,oe))},q=m=>{D();let b=0;const I=(()=>{if(E.search){const x=_(m);return b=v,x}return E.geo?$o(o,t,E,T,m,x=>{b=x}):yo(o,t,E,T,B(),m,x=>{b=x})})();return p(Math.max(b,I.length)),I},z=()=>{if(!E.search&&!E.geo)throw new $("INTERNAL",`ctx.db.query("${t}").collectWithScores() requires a staged .withSearchIndex(...) or .withGeoIndex(...)`);D();let m=0;const b=(()=>{if(E.search){const I=A(void 0);return m=v,I}return Qt(o,t,E,T,void 0,I=>{m=I})})();return p(Math.max(m,b.length)),b},j={async*[Symbol.asyncIterator](){if(E.search){yield*q(void 0);return}const m=[...E.inMemoryFilters];let b;E.inMemoryFilters=[];try{for(;;){const I=await j.paginate({cursor:b??null,numItems:so});for(const x of I.page)m.every(J=>J(x))&&(yield x);if(I.isDone||I.continueCursor===null)return;b=I.continueCursor}}finally{E.inMemoryFilters=m}},async collect(){return q(void 0)},async collectWithScores(){return z()},filter(m){return E.inMemoryFilters.push(m),j},async first(){return q(E.inMemoryFilters.length>0?void 0:1)[0]??null},order(m){return E.order=m==="desc"?"desc":"asc",j},async paginate(m){let b=0;if(D(),E.search){const x=F(m);return p(x.page.length),x}if(E.geo)throw new $("INTERNAL","pagination is not supported on geo queries; use .take(n) or .collect()");const I=Ro(o,t,E,m,L,x=>{b=x});return p(Math.max(b,I.page.length)),I},async take(m){return q(m)},async unique(){const m=q(E.inMemoryFilters.length>0?void 0:2);if(m.length>1)throw new vo(`unique() on table "${t}" matched ${String(m.length)} documents; expected at most one`);return m[0]??null},withGeoIndex(m,b){const I=(y.geoIndexes??[]).find(J=>J.name===m);if(!I)throw new $("INTERNAL",`unknown geo index "${m}" on table "${t}"`);a(t,m,"geo");const x={definition:I,indexName:m};if(E.geo=x,b(fo(x,t)),!x.near&&!x.within)throw new $("INTERNAL",`geo index "${m}" on table "${t}" requires a .near(point, radius) or .within(box) call`);return j},withIndex(m,b){const I=y.indexes.find(x=>x.name===m);if(!I)throw new $("INTERNAL",`unknown index "${m}" on table "${t}"`);return a(t,m,"index"),E.indexName=m,E.indexFields=I.fields,b&&b(co(E)),j},withSearchIndex(m,b){const I=(y.searchIndexes??[]).find(J=>J.name===m);if(!I)throw new $("INTERNAL",`unknown search index "${m}" on table "${t}"`);a(t,m,"search");const x={definition:I,field:I.field,filters:[],hasQuery:!1,indexName:m,query:""};if(E.search=x,b(Nn(x,t,nt(I.language))),!x.hasQuery)throw new $("INTERNAL",`search index "${m}" on table "${t}" requires a .search(field, query) call`);return j}};return j},Ft=(o,r,t)=>{const a={...r};for(const[u,p]of Ut(o)){if(p.serverDefault){a[u]=p.serverDefault({auth:t});continue}a[u]===void 0&&(p.defaultFn?a[u]=p.defaultFn():"defaultValue"in p&&(a[u]=p.defaultValue))}return a},qt=(o,r,t,a)=>{const u=t;for(const[p,y]of Ut(o)){if(y.serverDefault){p in r&&(u[p]=y.serverDefault({auth:a}));continue}y.onUpdateFn&&!(p in r)&&(u[p]=y.onUpdateFn())}},Wt=(o,r)=>{for(const t of Object.keys(r))if(r[t]===void 0)throw new $("INTERNAL",`Cannot ${o} field '${t}' to undefined — use null to clear a nullable field, or omit the key to leave it unchanged.`)},xo=/unique constraint failed/i,bo=o=>o instanceof Error&&xo.test(o.message),tt=(o,r,t,a)=>{try{me(o,t,...a)}catch(u){throw bo(u)?new ye(`unique constraint violation on "${r}"`,"unique"):u}},qe=(o,r,t,a)=>{if(tt(o,r,t,a),me(o,eo).one().changed===0)throw new ye(`optimistic concurrency conflict on "${r}" — the row changed during this mutation; refetch and retry`,"occ")},Bt=(o,r,t,a,u,p,y)=>{const S=[];for(let v=0;v<t.length+1;v+=1){const A=[];for(let D=0;D<v;D+=1)A.push(i`${i.identifier(t[D])} IS ${p[D]}`);const _=t[v],F=a[v];if(_!==void 0&&F!==void 0){const D=F.direction==="desc"?">":"<";A.push(i`${i.identifier(_)} ${i.raw(D)} ${p[v]}`)}else A.push(i`${i.identifier(bn)} < ${y}`);const[B]=A;S.push(A.length===1&&B!==void 0?B:i`(${i.join(A,i` AND `)})`)}const T=i.join(S,i` OR `),L=N(o,i`SELECT COUNT(*) AS c FROM ${i.identifier(r)} WHERE ${i.identifier("__partition__")} = ${u} AND (${T})`).one(),E=N(o,i`SELECT COUNT(*) AS c FROM ${i.identifier(r)} WHERE ${i.identifier("__partition__")} = ${u}`).one();return{before:L.c,total:E.c}},ar=o=>{const{sql:r}=o,{schema:t}=o,a=o.broadcast??(()=>{});let u;const p=()=>o.inTransaction?.()===!0,y=e=>t.tables[e]?.commitOrderedMode!==!0?{}:((u===void 0||!p())&&(u=wn(r)),{[pn]:u}),S=(e,...n)=>{const s=t.tables[e]?.indexes;if(!s||s.length===0)return;const f=[];for(const h of n)h&&f.push(...Mn(s,h,oe));return f.length>0?f:void 0},{headroom:T}=o;let L=!1;const E=async e=>{const n=L;L=!0;try{return await e()}finally{L=n}},v=o.onRead??(()=>{}),A=o.onReadRange??(e=>{v(e.table,H)}),_=(e,n)=>{n!==void 0&&n!==H&&!L&&T?.recordRead(1),v(e,n)},F=o.onIndexUse??(()=>{}),B=o.onWrite??(()=>{}),D=e=>{L||T?.recordWrite(e)},q=async e=>{D(e.doc),await B(e)},{cache:z}=o,j=o.clock??(()=>Date.now()),m=o.idGenerator??(()=>crypto.randomUUID()),b=o.scheduler??cn,{globalDb:I}=o,x=o.auth??{identity:null,userId:null},J=o.cdc??!1,ue=b,Yt=Wn({scheduler:typeof ue.list=="function"&&typeof ue.get=="function"?ue:void 0,storage:o.storage}),fe=(e,n,s,f)=>{J&&!gn(t.tables[e])&&hn(r,j(),e,n,s,f)},ie=e=>t.tables[e]?.shardMode?.kind==="global",st=(e,n)=>{if(ie(e)){if(!I)throw new $("INTERNAL",`cross-backend ${n} for global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return I}return U},Ge=e=>st(e,"cascade"),K=(e,n)=>{if(ie(e)){if(!I)throw new $("INTERNAL",`${n} on global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return I}},ct=async(e,n,s,f,h)=>{h&&D(s);const l=await e.insert(n,s,f);return a({key:l,op:"insert",row:{...s,_id:l},table:n}),l},He=(e,n)=>st(e,"relation load").findMany(e,n),at=(e,n)=>(ie(e)&&_(e,H),He(e,n)),Xt=e=>!ie(e.table),dt=o.relationExistsPushDown??"auto",lt=dt!=="never",{maxRelationKeys:ut}=o,_e=(e,n,s)=>Tt(e,{fetcher:at,maxRelationKeys:ut,relationBaseWhere:s,schema:t,tableName:n}),ft=async(e,n,s,f)=>{const h=K(e,"relation grouped count");if(h)return _(e,H),Ln((W,C)=>h.count(W,C),e,n,s,f);const l=t.tables[e];if(!l)throw new $("INTERNAL",`unknown table: ${e}`);_(e,H);const c=ae(l.softDeleteMode,void 0),d={[n]:{in:s}},w=Q(Q(d,f),c),R=await _e(w,e,void 0),g=te(R,$e),k=Y(n);let M=i`SELECT ${k} AS __fk__, COUNT(*) AS count FROM ${i.identifier(e)}`;g&&(M=i`${M} WHERE ${g}`),M=i`${M} GROUP BY ${k}`;const P=N(r,M).toArray();return new Map(P.map(W=>[W.__fk__,W.count]))};let Te=0;const ht=new Set;for(const[e,n]of Object.entries(t.tables))for(const s of Object.values(n.triggerMap??{}))ht.add(`${e} ${s.timing} ${s.op}`);const Z=(e,n,s)=>ht.has(`${e} ${n} ${s}`),ee=async(e,n,s)=>{if(Te+=1,Te>Mt)throw Te-=1,new ye(`trigger recursion exceeded ${String(Mt)} levels on "${s.table}" — check for a self-triggering write`,"trigger");try{await Bn({ctx:en,event:s,op:n,schema:t,tableName:s.table,timing:e})}finally{Te-=1}},{ensureBackfilledForTable:he,ensureBackfilledIndex:Ne,ensureRankBackfilled:Oe,ensureRankBackfilledForTable:we,syncAggregates:Re,syncCompanionsForInsert:wt,syncGeo:ve,syncRanks:pe,syncSearch:Ae}=nn({broadcast:a,indexKeysFor:(e,n)=>S(e,n),invalidateCache:(e,n,s)=>z?.invalidate(e,n,S(e,s)),recordCdc:fe,schema:t,sql:r}),pt=(e,n,s)=>{const{shardMode:f}=n;if(f?.kind==="shardBy"&&!(f.field!==void 0&&(s.partitionBy??[]).includes(f.field)))throw Object.assign(new Error(`rank index "${s.name}" on "${e}" partitions across shards (shard key "${f.field??"?"}" is not in partitionBy) — a shard-local rank()/rankPage() would be wrong; roll it up through the Query Coordinator instead`),{code:"CROSS_SHARD_RANK_UNSUPPORTED",name:"LunoraError",status:400})},gt=e=>Object.entries(t.tables).filter(([,n])=>n.shardMode?.kind!=="global").map(([n])=>n).filter(n=>e===void 0||n===e),re=(e,n)=>{const s=gt(n);for(let f=0;f<s.length;f+=ge){const h=s.slice(f,f+ge),[l]=me(r,no(h),...oo(e,h)).toArray();if(!l)continue;const c=l.__t__,d=de(l);if(typeof c!="string"||!d)return;const w=l[ne];return{docJson:typeof w=="string"?w:se(w??{}),row:d,tableName:c}}},Zt=(e,n)=>{const s=[...new Set(e)],f=new Map;if(s.length===0)return f;const h=gt(n);for(let l=0;l<h.length;l+=ge){const c=h.slice(l,l+ge),d=Math.floor(ge/c.length),w=En(i`${i.identifier("id")}`,s,!1,d),R=c.map(g=>i`SELECT ${i.raw(`'${g.replaceAll("'","''")}'`)} AS __t__, id FROM ${i.identifier(g)} WHERE ${w}`);for(const g of N(r,ot(R))){const{id:k,__t__:M}=g;typeof M=="string"&&typeof k=="string"&&f.set(k,M)}}return f},$t={assertRankPartitionLocal:pt,ensureRankBackfilled:Oe,onRead:_,rowToDocument:de,schema:t,sql:r},U={system:Yt,async aggregate(e,n){const s=K(e,"aggregate");if(s)return _(e,H),s.aggregate(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);if(De(n.op),n.op==="count")return U.count(e,{baseWhere:n.baseWhere,relationBaseWhere:n.relationBaseWhere,restrictsCounts:n.restrictsCounts,where:n.where});if(!n.field)throw new $("INTERNAL",`aggregate(${e}, { op: "${n.op}" }): "field" is required for non-count reducers`);_(e,H);const h=ae(f.softDeleteMode,void 0),l=Q(Q(n.baseWhere,n.where),h),c=await _e(l,e,n.relationBaseWhere),d=c!==l;if(f.aggregateIndexes&&!n.baseWhere&&!d&&(!h||Dt(f,[n.field]))){const W=un(f.aggregateIndexes,n.op,n.field,n.where);if(W){Ne(e,W.index);const C=Ke(W.index.by??[],W.key),O=je(e,W.index.name),V=N(r,i`SELECT ${ke} AS value, ${Je} AS count FROM ${i.identifier(O)} WHERE ${Le} = ${C}`).toArray()[0];return Qe(n.op,V)}}kt(f,n.field,`aggregate(${e}, { op: "${n.op}", field: "${n.field}" })`);const w=te(c,$e),R=De(n.op),g=Y(n.field);let k=i`SELECT ${i.raw(R)}(${g}) AS value FROM ${i.identifier(e)}`;w&&(k=i`${k} WHERE ${w}`);const P=N(r,k).toArray()[0]?.value;return P??null},asId(e,n){const s=Lt(t,e,n);if(s===null)throw new $("BAD_REQUEST",`asId("${e}", …): "${n}" is not a valid id for table "${e}"`,{status:400});return s},async count(e,n){const s=K(e,"count");if(s)return _(e,H),s.count(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=an(n);if(h.restrictsCounts)throw new ze(e);_(e,H);const l=ae(f.softDeleteMode,void 0),c=Q(Q(h.baseWhere,h.where),l),d=await _e(c,e,h.relationBaseWhere),w=d!==c;if(f.aggregateIndexes&&!h.baseWhere&&!w&&!l){const M=ln(f.aggregateIndexes,h.where);if(M){Ne(e,M.index);const P=Ke(M.index.by??[],M.key),W=je(e,M.index.name),C=N(r,i`SELECT ${ke} AS value FROM ${i.identifier(W)} WHERE ${Le} = ${P}`).toArray();return C[0]===void 0?0:C[0].value??0}}const R=te(d,$e);let g=i`SELECT COUNT(*) AS count FROM ${i.identifier(e)}`;return R&&(g=i`${g} WHERE ${R}`),N(r,g).one().count},async delete(e,n,s){const f=re(e,n);if(!f){const g=n===void 0?I:void 0;g&&(D(void 0),await g.delete(e,void 0,s));return}const{docJson:h,row:l,tableName:c}=f,d=t.tables[c],w=s?.hard===!0,R=!w&&d?.softDeleteMode?d.softDeleteMode.field:void 0;if(!(R&&l[R]!==null&&l[R]!==void 0)){if(Z(c,"before","delete")&&await ee("before","delete",{id:e,op:"delete",previous:l,table:c}),await kn({deletedId:e,deletedReference:g=>l[g],findHolders:async(g,k,M)=>(await Ge(g).findMany(g,{includeDeleted:w,where:{[k]:M}})).page,onCascade:(g,k)=>Ge(g).delete(k,void 0,s),onRestrict:g=>{throw new ye(g,"restrict")},onSetNull:(g,k,M)=>Ge(g).patch(k,{[M]:null}),schema:t,tableName:c}),he(c),we(c),R){const g={...l,...y(c),[R]:j(),_id:e};qe(r,c,xt(c),[se(g),e,h]),Ae(c,e,g,l),ve(c,e,void 0),Re(c,l,g),pe(c,e,l,void 0),z?.invalidate(c,e,S(c,l,g)),fe(c,e,"update",g),a({indexKeys:S(c,l,g),key:e,op:"update",row:g,table:c}),Z(c,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:l,table:c}),await q({id:e,op:"delete",table:c});return}qe(r,c,Zn(c),[e,h]),Ae(c,e,void 0),ve(c,e,void 0),Re(c,l,void 0),pe(c,e,l,void 0),z?.invalidate(c,e,S(c,l)),fe(c,e,"delete"),a({indexKeys:S(c,l),key:e,op:"delete",table:c}),Z(c,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:l,table:c}),await q({id:e,op:"delete",table:c})}},async deleteAll(e,n){if(!t.tables[e])throw new $("INTERNAL",`unknown table: ${e}`);const s=Math.max(1,n?.chunkSize??Ot),f=n?.hard===void 0?void 0:{hard:n.hard},h=ie(e)?void 0:e;let l=0;return await E(async()=>{for(;;){const d=(await U.findMany(e,{limit:s})).page.map(w=>String(w._id));if(d.length===0)break;for(const w of d)await U.delete(w,h,f),l+=1;if(d.length<s)break}}),{deleted:l}},async deleteMany(e,n,s){ce(e.length,n?.limit,"deleteMany");for(const f of e)await U.delete(f,s);return{deleted:e.length}},async deleteWhere(e,n,s){const l=(await(K(e,"deleteWhere")??U).findMany(e,{where:n})).page.map(c=>String(c._id));if(ce(l.length,s?.limit,"deleteWhere"),U.deleteMany===void 0)throw new $("INTERNAL",`ctx.db.${e}.deleteMany is unavailable: this writer has no batch delete`);return U.deleteMany(l,s)},async findFirst(e,n={}){return(await U.findMany(e,{...n,limit:1,omitContinueCursor:!0})).page[0]??null},async findFirstOrThrow(e,n={}){const s=await U.findFirst(e,n);if(s===null)throw new Rn(`findFirstOrThrow: no "${e}" document matched`);return s},async findMany(e,n={}){const s=K(e,"findMany");if(s)return _(e,H),s.findMany(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=!n.where&&!n.baseWhere;h?_(e,H):_(e);const l=vn(n.orderBy),c=n.cursor?Nt(l,Ze(n.cursor)):void 0;let d=Q(n.baseWhere,n.where);d=Q(d,ae(f.softDeleteMode,n.includeDeleted)),d=await Tt(d,{canPushExists:lt?Xt:void 0,existsPushMode:dt==="always"?"always":"auto",fetcher:at,maxRelationKeys:ut,relationBaseWhere:n.relationBaseWhere,schema:t,tableName:e}),c&&(d=d?{AND:[d,c]}:c);const w=lt?Eo(_):it,R=te(d,w,Ue),g=typeof n.limit=="number"?Math.max(0,Math.floor(n.limit)):void 0,k=zt(e,R,Vt(l),g===void 0?void 0:g+1),M=me(r,k.text,...k.params).toArray();h&&!L&&T?.recordRead(M.length);const P=[];for(const V of M){const G=de(V);G&&(P.push(G),!h&&typeof G._id=="string"&&_(e,G._id))}if(g===void 0)return n.with&&await Rt({groupedCounter:ft,fetcher:He,parents:P,...vt(n),schema:t,tableName:e,with:n.with}),{continueCursor:null,isDone:!0,page:mt(P,n.select,n.with)};const W=P.length>g,C=W?P.slice(0,g):P,O=C.at(-1);return n.with&&await Rt({fetcher:He,groupedCounter:ft,parents:C,...vt(n),schema:t,tableName:e,with:n.with}),{continueCursor:W&&O&&n.omitContinueCursor!==!0?et(O,l):null,isDone:!W,page:mt(C,n.select,n.with)}},async get(e,n){const s=re(e,n);if(!s){const f=n===void 0?I:void 0;return f?f.get(e):null}return _(s.tableName,e),s.row},async lookupById(e,n){const s=re(e,n);return s?(_(s.tableName,e),{row:s.row,tableName:s.tableName}):null},async groupBy(e,n){const s=K(e,"groupBy");if(s)return _(e,H),s.groupBy(e,n);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);_(e,H);const h=n.agg??{op:"count"};if(De(h.op),h.op!=="count"&&!h.field)throw new $("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);const l=ae(f.softDeleteMode,void 0),c=Q(Q(n.baseWhere,n.where),l),d=await _e(c,e,n.relationBaseWhere),w=d!==c,R=[...n.by,h.field];if(f.aggregateIndexes&&!n.baseWhere&&!w&&(!l||Dt(f,R))){const C=dn(f.aggregateIndexes,h.op,h.field,n.by,n.where),O=C===void 0?0:Object.keys(C.partial).length,V=C?.index.by?.length??0;if(C&&(O===0||O===V)){Ne(e,C.index);const G=je(e,C.index.name),Ie=Object.keys(C.partial),Ce=[];if(Ie.length===(C.index.by??[]).length&&Ie.length>0){const xe=Ke(C.index.by??[],C.partial),be=N(r,i`SELECT ${ke} AS value, ${Je} AS count FROM ${i.identifier(G)} WHERE ${Le} = ${xe}`).toArray();return be.length>0&&Ce.push({key:{...C.partial},value:Qe(h.op,be[0])}),Ce}const tn=N(r,i`SELECT ${Le} AS key, ${ke} AS value, ${Je} AS count FROM ${i.identifier(G)}`).toArray();for(const xe of tn){const be=sn(JSON.parse(xe.key));Ce.push({key:be,value:Qe(h.op,xe)})}return Ce}}for(const C of R){if(C===void 0)continue;const O=C===h.field?`groupBy(${e}, { agg: { op: "${h.op}", field: "${C}" } })`:`groupBy(${e}, { by: [..."${C}"] })`;kt(f,C,O)}const g=te(d,$e),k=n.by.map(C=>i`${Y(C)} AS ${i.identifier(C)}`);if(h.op==="count")k.push(i`COUNT(*) AS value`);else{const{field:C}=h;if(C===void 0)throw new $("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);k.push(i`${i.raw(De(h.op))}(${Y(C)}) AS value`)}let M=i`SELECT ${i.join(k,i`, `)} FROM ${i.identifier(e)}`;g&&(M=i`${M} WHERE ${g}`),M=i`${M} GROUP BY ${i.join(n.by.map(C=>Y(C)),i`, `)}`;const P=N(r,M).toArray(),W=[];for(const C of P){const O={};for(const G of n.by)O[G]=C[G]??null;const{value:V}=C;W.push({key:O,value:V==null?null:Number(V)})}return W},async insert(e,n,s){const f=K(e,"insert");if(f)return ct(f,e,n,s,!0);const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);const l=Ft(h,n,x);Ye(h,l);let c;s?.clientId!==void 0?(io(s.clientId),c=s.clientId):s?.allowExplicitId&&typeof l._id=="string"?c=l._id:c=m();const d=s?.allowExplicitId&&typeof l._creationTime=="number"?l._creationTime:j(),w={...l,...y(e),_creationTime:d,_id:c};return Z(e,"before","insert")&&await ee("before","insert",{doc:{...w},id:c,op:"insert",table:e}),he(e),we(e),tt(r,e,Yn(e),[c,d,se(w)]),wt(e,c,w),Z(e,"after","insert")&&await ee("after","insert",{doc:w,id:c,op:"insert",table:e}),await q({doc:w,id:c,op:"insert",table:e}),c},async insertManyUnsafe(e,n,s){if(ce(n.length,s?.limit,"insertManyUnsafe"),n.length===0)return[];const f=K(e,"insert");if(f){const d=[];for(const w of n)D(w);for(const w of n){const R=await f.insert(e,w,{allowExplicitId:s?.allowExplicitId});a({key:R,op:"insert",row:{...w,_id:R},table:e}),d.push(R)}return d}const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);he(e),we(e);const l=[];for(let d=0;d<n.length;d+=Fe)l.push(y(e));const c=n.map((d,w)=>{const R=Ft(h,d,x),g=s?.allowExplicitId===!0&&typeof R._id=="string"?R._id:m(),k=s?.allowExplicitId===!0&&typeof R._creationTime=="number"?R._creationTime:j(),M={...R,...l[Math.floor(w/Fe)],_creationTime:k,_id:g};return{creationTime:k,document:M,id:g}});for(const d of c)D(d.document);for(let d=0;d<c.length;d+=Fe){const w=i.join(c.slice(d,d+Fe).map(g=>i`(${g.id}, ${g.creationTime}, ${se(g.document)})`),i`, `),R=Gt("sqlite",i`INSERT INTO ${i.identifier(e)} (id, _creationTime, ${i.identifier(ne)}) VALUES ${w}`);tt(r,e,R.sql,R.params)}for(const{document:d,id:w}of c)wt(e,w,d),await B({doc:d,id:w,op:"insert",table:e});return c.map(d=>d.id)},async insertMany(e,n,s){ce(n.length,s?.limit,"insertMany");const f=s?.skipDuplicates===!0,h=[],l=K(e,"insert");if(l)for(const d of n)D(d);const c=async d=>l?ct(l,e,d,void 0,!1):U.insert(e,d);for(const d of n)try{h.push(await c(d))}catch(w){if(f&&w instanceof ye&&w.kind==="unique")h.push(null);else throw w}return h},normalizeId(e,n){return Lt(t,e,n)},async patch(e,n,s){const f=re(e,s);if(!f){const R=s===void 0?I:void 0;if(R){D(n),await R.patch(e,n);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const{docJson:h,row:l,tableName:c}=f,d=t.tables[c];if(!d)throw new $("INTERNAL",`unknown table: ${c}`);_(c,e),Wt("patch",n);const w={...l,...n,...y(c),_id:e};qt(d,n,w,x),Ye(d,w,!0),Z(c,"before","update")&&await ee("before","update",{doc:{...w},id:e,op:"update",previous:l,table:c}),he(c),we(c),qe(r,c,xt(c),[se(w),e,h]),Ae(c,e,w,l),ve(c,e,w),Re(c,l,w),pe(c,e,l,w),z?.invalidate(c,e,S(c,l,w)),fe(c,e,"update",w),a({indexKeys:S(c,l,w),key:e,op:"update",row:w,table:c}),Z(c,"after","update")&&await ee("after","update",{doc:w,id:e,op:"update",previous:l,table:c}),await q({doc:w,id:e,op:"update",table:c})},async patchMany(e,n,s){ce(e.length,n?.limit,"patchMany");for(const f of e)await U.patch(f.id,f.patch,s);return{patched:e.length}},async patchWhere(e,n,s){const l=(await(K(e,"patchWhere")??U).findMany(e,{where:n.where})).page.map(c=>({id:String(c._id),patch:n.patch}));if(ce(l.length,s?.limit,"patchWhere"),U.patchMany===void 0)throw new $("INTERNAL",`ctx.db.${e}.patchMany is unavailable: this writer has no batch patch`);return await U.patchMany(l,s),{patched:l.length}},query(e){const n=K(e,"query");return n?(_(e,H),n.query(e)):Co(r,t,e,F,s=>{s?A(s):_(e,H)},s=>{L||T?.recordRead(s)})},async rank(e,n,s){const f=K(e,"rank");if(f)return _(e,H),f.rank(e,n,s);F(e,n,"rank");const h=t.tables[e];if(!h)throw new $("INTERNAL",`unknown table: ${e}`);const l=h.rankIndexes?.find(G=>G.name===n);if(!l)throw new $("INTERNAL",`unknown rankIndex "${n}" on table "${e}"`);if(pt(e,h,l),s.restrictsCounts)throw new ze(e);_(e,H),Oe(e,l);const c=typeof s.row=="string"?s.row:s.row._id;if(!c)return null;const d=St(e,l.name),w=l.sortBy.map((G,Ie)=>_t(Ie)),R=w.map(G=>Se(G)).join(", "),g=N(r,i`SELECT ${i.identifier("__partition__")}, ${i.raw(R)} FROM ${i.identifier(d)} WHERE ${i.identifier("__id__")} = ${c}`).toArray(),[k]=g;if(k===void 0)return null;let M=k.__partition__;const P=Q(s.baseWhere,s.where);Ve(P,t,e,"rank");const W=Cn(l,P);if(W){const G=xn(l.partitionBy??[],W);if(G!==M)return null;M=G}const C=w.map(G=>k[G]),{before:O,total:V}=Bt(r,d,w,l.sortBy,M,C,c);return{position:O+1,total:V}},async rankBefore(e,n,s){if(ie(e))throw new $("INTERNAL",`rankBefore is not supported on the global (.global()) table '${e}' — cross-shard rank cursors apply only to sharded tables`);const f=t.tables[e];if(!f)throw new $("INTERNAL",`unknown table: ${e}`);const h=f.rankIndexes?.find(w=>w.name===n);if(!h)throw new $("INTERNAL",`unknown rankIndex "${n}" on table "${e}"`);if(s.restrictsCounts)throw new ze(e);_(e,H),Oe(e,h);const l=St(e,h.name),c=h.sortBy.map((w,R)=>_t(R)),d=h.sortBy.map((w,R)=>oe(s.sortValues[R]??null));return Bt(r,l,c,h.sortBy,s.partitionKey,d,s.rowId)},async rankPage(e,n,s={}){Ve(Q(s.baseWhere,s.where),t,e,"rankPage");const f=K(e,"rankPage");if(f)return _(e,H),f.rankPage(e,n,s);F(e,n,"rank");const{continueCursor:h,hasMore:l,rows:c}=yt($t,e,n,s);return{continueCursor:h,isDone:!l,page:c.map(d=>d.doc)}},async rankPageRows(e,n,s={}){Ve(Q(s.baseWhere,s.where),t,e,"rankPage"),F(e,n,"rank");const{directions:f,hasMore:h,rows:l}=yt($t,e,n,s);return{directions:f,hasMore:h,rows:l}},async restore(e,n){const s=re(e,n);if(!s){const l=n===void 0?I:void 0;if(l?.restore){await l.restore(e);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const f=t.tables[s.tableName]?.softDeleteMode?.field;if(!f)throw new $("INTERNAL",`ctx.db.restore: table "${s.tableName}" is not a .softDelete() table`);const h=s.row[f]!==null&&s.row[f]!==void 0;await U.patch(e,{[f]:null},n),h&&pe(s.tableName,e,void 0,s.row)},async replace(e,n,s,f){const h=re(e,s);if(!h){const k=s===void 0?I:void 0;if(k){D(n),await k.replace(e,n,void 0,f);return}throw new $("NOT_FOUND",`document not found: ${e}`)}const{docJson:l,row:c,tableName:d}=h,w=t.tables[d];if(!w)throw new $("INTERNAL",`unknown table: ${d}`);Wt("replace",n);const R=f?.allowExplicitId&&typeof n._creationTime=="number"?n._creationTime:j(),g={...n,...y(d),_creationTime:R,_id:e};qt(w,n,g,x),Ye(w,g),Z(d,"before","update")&&await ee("before","update",{doc:{...g},id:e,op:"update",previous:c,table:d}),he(d),we(d),qe(r,d,Xn(d),[R,se(g),e,l]),Ae(d,e,g,c),ve(d,e,g),Re(d,c,g),pe(d,e,c,g),z?.invalidate(d,e,S(d,c,g)),fe(d,e,"update",g),a({indexKeys:S(d,c,g),key:e,op:"update",row:g,table:d}),Z(d,"after","update")&&await ee("after","update",{doc:g,id:e,op:"update",previous:c,table:d}),await q({doc:g,id:e,op:"update",table:d})},async wipeShard(e){const n=new Set(e?.exclude),s=e?.tables,f=Object.entries(t.tables).filter(([d,w])=>n.has(d)||s!==void 0&&!s.includes(d)?!1:w.shardMode?.kind!=="global").map(([d])=>d);if(s!==void 0){for(const d of s)if(!t.tables[d])throw new $("INTERNAL",`wipeShard: unknown table: ${d}`)}const h={};let l=0;const{deleteAll:c}=U;if(c===void 0)throw new $("INTERNAL","wipeShard: this writer has no deleteAll");for(const d of f){const w=await c(d,{...e?.chunkSize===void 0?{}:{chunkSize:e.chunkSize},hard:!0});h[d]=w.deleted,l+=w.deleted}return{deleted:l,tables:h}}},en={db:U,scheduler:b};return o.enforceRls===!0?Fn(U,t,(e,n)=>re(e,n)?.tableName,(e,n)=>Zt(e,n)):U};export{pr as CDC_LOG_TABLE,Dr as CLIENT_WATERMARK_TABLE,Wr as GLOBAL_SHAPE_SNAPSHOT_TABLE,Or as IDEMPOTENCY_TABLE,vo as NotUniqueError,Yr as SEARCH_STATE_TABLE,kr as advanceClientWatermark,gr as applyCdcChanges,Wt as assertNoExplicitUndefined,io as assertValidClientId,ur as backfillAggregateIndexes,fr as backfillRankIndexes,hr as backfillSearchIndexes,$r as bumpCdcEpoch,yr as cdcCanVouchFor,Er as cdcSeqLeavingRows,mr as cdcTouchesTables,Sr as cdcTrimmedError,_r as compactCdcDocs,ar as createShardCtxDb,Tr as cursorBelowRetainedFloor,Br as deleteGlobalShapeSnapshot,Ur as deleteGlobalShapeSnapshotsForConnection,Lr as migrateClientWatermark,Pr as migrateGlobalShapeSnapshot,Rr as minCdcReplayableSeq,vr as minCdcSeq,Lt as normalizeIdStructurally,Ar as readCdcChangeKeys,Ir as readCdcChanges,Cr as readCdcCursor,xr as readCdcEpoch,Fr as readClientWatermark,Gr as readGlobalShapeSnapshot,jr as readIdempotent,Jr as runShardMigrations,Zr as selectShapeMembers,ei as selectShapeRows,br as trimCdcChanges,Kr as trimIdempotent,Hr as writeGlobalShapeSnapshot,Qr as writeIdempotent};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{LunoraError as c}from"@lunora/errors";const d=e=>{const t={args:e.args??{},enqueuedAt:typeof e.enqueuedAt=="number"?e.enqueuedAt:0,functionPath:typeof e.functionPath=="string"?e.functionPath:"",id:typeof e.id=="string"?e.id:"",scheduledFor:typeof e.scheduledFor=="number"?e.scheduledFor:0};return typeof e.attempts=="number"&&(t.attempts=e.attempts),typeof e.shardKey=="string"&&(t.shardKey=e.shardKey),t},i=e=>{const t={key:typeof e.key=="string"?e.key:"",size:typeof e.size=="number"?e.size:0},r=e.httpMetadata?.contentType??e.contentType;typeof r=="string"&&(t.contentType=r),e.customMetadata&&typeof e.customMetadata=="object"&&(t.customMetadata=e.customMetadata),typeof e.sha256=="string"&&(t.sha256=e.sha256);const{uploaded:a}=e;return typeof a=="number"?t.uploaded=a:a instanceof Date&&(t.uploaded=a.getTime()),t},h=(e={})=>{const t=()=>{if(!e.scheduler)throw new c("INTERNAL",'ctx.db.system.query("_scheduled_functions"): no scheduler configured. Pass `scheduler` to createShardDO().');return e.scheduler},r=()=>{if(!e.storage)throw new c("INTERNAL",'ctx.db.system.query("_storage"): no storage configured. Pass `storage` to createShardDO().');return e.storage},a=async()=>(await t().list()).map(s=>d(s)),f=async()=>{const{objects:n}=await r().list();return n.map(s=>i(s))};return{get:(async(n,s)=>{if(n==="_scheduled_functions"){const o=await t().get(s);return o?d(o):null}const u=await r().getMetadata(s);return u?i(u):null}),query:(n=>n==="_scheduled_functions"?{collect:a}:{collect:f})}};export{h as createSystemReader};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{LunoraError as O}from"@lunora/errors";import{sql as l}from"drizzle-orm";import{sqliteInList as A,isJsonSafe as R,WORKERD_SQLITE_LIMITS as T}from"./param-DlozcSQu.mjs";import{quoteIdentifier as b}from"./quoteIdentifier-CObIFRhb.mjs";import{RELATION_EXISTS_KEY as L}from"./RELATION_EXISTS_KEY-CFUhnZSZ.mjs";const m={binary:(t,n,o)=>l`${t} ${l.raw(n)} ${o}`,constant:t=>t?l`1 = 1`:l`0 = 1`,connect:(t,n,o)=>l`(${t}) ${l.raw(o)} (${n})`,contains:(t,n)=>l`instr(lower(${t}), lower(${n})) > 0`,inList:(t,n,o,i)=>A(t,n,o,i),negate:t=>l`NOT (${t})`,nullCheck:(t,n)=>n?l`${t} IS NOT NULL`:l`${t} IS NULL`,value:t=>l`${t}`},u=(...t)=>{let n="";const o=[];for(const i of t)typeof i=="string"?n+=i:(n+=i.text,o.push(...i.params));return{params:o,text:n}},p=t=>({params:[t],text:"?"}),S=t=>({params:[],text:t}),Y=t=>S(b(t)),B={binary:(t,n,o)=>u(t," ".concat(n," "),p(o)),constant:t=>S(t?"1 = 1":"0 = 1"),connect:(t,n,o)=>u("(",t,") ".concat(o," ("),n,")"),contains:(t,n)=>u("instr(lower(",t,"), lower(",n,")) > 0"),inList:(t,n,o,i)=>{const r=o?" NOT IN ":" IN ";if(n.length>i&&!n.every(s=>R(s)))throw new O("BAD_REQUEST",`an "in" list of ${String(n.length)} values holds a value JSON cannot carry (bytes, a non-finite number, or malformed text), so it cannot be bound as one parameter — and ${String(n.length)} placeholders exceed SQLite's per-statement cap of 100 on Durable Objects and D1. Narrow the list to ${String(i)} values or fewer.`);if(n.length<=i){const s=[t,r,"("];for(const[e,c]of n.entries())e>0&&s.push(", "),s.push(p(c));return s.push(")"),u(...s)}return u(t,r,'(SELECT "value" FROM json_each(',p(JSON.stringify(n)),"))")},negate:t=>u("NOT (",t,")"),nullCheck:(t,n)=>u(t,n?" IS NOT NULL":" IS NULL"),value:p},$=T.boundParams/2,I=["eq","ne","lt","lte","gt","gte","in","notIn","isNull","contains"],x=new Set(I),_={eq:"=",gt:">",gte:">=",lt:"<",lte:"<=",ne:"<>"},E=t=>{if(t===null||typeof t!="object"||Array.isArray(t))return!1;const n=Object.keys(t);return n.length>0&&n.every(o=>x.has(o))},j=(t,n,o,i)=>{const r=i.value(o.serialize(n));return o.containsExpr?o.containsExpr(t,r):i.contains(t,r)},w=(t,n,o,i,r,s)=>i===null?s.nullCheck(t,n==="ne"):s.binary(t,o,r.serialize(i)),C=(t,n,o,i,r)=>{const s=Array.isArray(o)?o:[];if(s.length===0)return r.constant(n==="NOT IN");const e=s.map(a=>i.serialize(a)),c=n==="NOT IN";return i.inList?i.inList(t,e,c):r.inList(t,e,c,$)},G=(t,n,o)=>{const i=l.join(n.map(r=>l`${r}`),l`, `);return o?l`${t} NOT IN (${i})`:l`${t} IN (${i})`},y=(t,n,o,i)=>{const r=n,s=[];for(const e of I){if(!(e in r))continue;const c=r[e],a=_[e];a?s.push(w(t,e,a,c,o,i)):e==="isNull"?s.push(i.nullCheck(t,!c)):e==="contains"?s.push(j(t,c,o,i)):s.push(C(t,e==="in"?"IN":"NOT IN",c,o,i))}return s},k=(t,n,o,i)=>{const r=o.fieldRef(t);return E(n)?y(r,n,o,i):n===null?[i.nullCheck(r,!1)]:[i.binary(r,"=",o.serialize(n))]},h=(t,n,o)=>{if(t.length<=1)return t[0];const i=Math.floor(t.length/2);return o.connect(h(t.slice(0,i),n,o),h(t.slice(i),n,o),n)},D=(t,n,o,i)=>{const r=Array.isArray(t)?t:[],s=[];for(const e of r){const c=N(e??{},o,i);c!==void 0&&s.push(c)}return s.length===0?n==="OR"?i.constant(!1):void 0:h(s,n,i)},U=new Set(["AND","NOT","OR",L]),v=(t,n,o,i)=>{if(t===L){if(!o.relationExists)throw new O("INTERNAL","encountered a relation EXISTS marker without a relationExists strategy hook");return o.relationExists(n)}if(t==="NOT"){const r=N(n??{},o,i);return r===void 0?void 0:i.negate(r)}return D(n,t,o,i)},N=(t,n,o)=>{const i=[];for(const[r,s]of Object.entries(t))if(U.has(r)){const e=v(r,s,n,o);e!==void 0&&i.push(e)}else i.push(...k(r,s,n,o));return h(i,"AND",o)},z=T.boundParams/2,f=t=>{if(Array.isArray(t))return t.reduce((o,i)=>o+f(i),0);if(t===null||typeof t!="object")return 0;let n=0;for(const[o,i]of Object.entries(t))o==="in"||o==="notIn"?n+=1:(o==="AND"||o==="NOT"||o==="OR"||E(i))&&(n+=f(i));return n},J=(t,n,o=m)=>{if(!t||Object.keys(t).length===0)return;const i=f(t);if(i===0)return N(t,n,o);const r=Math.max(1,Math.floor(z/i)),s=n.inList??((e,c,a,d)=>o.inList(e,c,a,d??r));return N(t,{...n,inList:(e,c,a)=>s(e,c,a,r)},o)};export{J as c,Y as i,u as j,G as l,S as r,B as t};
|