@lunora/shard-engine 1.0.0-alpha.20 → 1.0.0-alpha.21

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.
Files changed (27) hide show
  1. package/dist/conformance/index.mjs +1 -1
  2. package/dist/index.d.mts +53 -9
  3. package/dist/index.d.ts +53 -9
  4. package/dist/index.mjs +1 -1
  5. package/dist/packem_shared/{DEFAULT_MAX_RELATION_KEYS-sPcXaWFW.mjs → DEFAULT_MAX_RELATION_KEYS-DjKka36Z.mjs} +1 -1
  6. package/dist/packem_shared/DEFAULT_MAX_RELAYS-B19vrJxP.mjs +1 -0
  7. package/dist/packem_shared/NotUniqueError-CVHdtVw6.mjs +1 -0
  8. package/dist/packem_shared/{RANK_TIEBREAK-DYDRmLKH.mjs → RANK_TIEBREAK-DDtST3gN.mjs} +1 -1
  9. package/dist/packem_shared/aggregateTableName-DgYMC5tr.mjs +1 -0
  10. package/dist/packem_shared/{applyOnDelete-BB6tr2G0.mjs → applyOnDelete-By23GK-k.mjs} +1 -1
  11. package/dist/packem_shared/applySelect-UY-o13Ia.mjs +1 -0
  12. package/dist/packem_shared/backfillAggregateIndexes-DmqOHg0U.mjs +1 -0
  13. package/dist/packem_shared/{computeRankPage-CRFgJbuz.mjs → computeRankPage-QK8SeTZ-.mjs} +1 -1
  14. package/dist/packem_shared/createCompanionSync-COw1Uy6a.mjs +1 -0
  15. package/dist/packem_shared/createReplicaLink-BMNW0SX6.mjs +7 -0
  16. package/dist/packem_shared/ctx-db-companions-BTi8DLUl.mjs +1 -0
  17. package/dist/packem_shared/{defineEngineContractSuite-CZccUN4c.mjs → defineEngineContractSuite-B6nrsKSE.mjs} +1 -1
  18. package/dist/packem_shared/{runShardMigrations-n2dKcH5E.mjs → runShardMigrations-BqO6HPtX.mjs} +2 -2
  19. package/dist/packem_shared/sibling-channel-bg9FBL5s.mjs +1 -0
  20. package/package.json +3 -3
  21. package/dist/packem_shared/DEFAULT_MAX_RELAYS-CPBmX1FO.mjs +0 -1
  22. package/dist/packem_shared/NotUniqueError-BItFDsAw.mjs +0 -1
  23. package/dist/packem_shared/aggregateTableName-DV-K7ft2.mjs +0 -1
  24. package/dist/packem_shared/applySelect-i17LYhIU.mjs +0 -1
  25. package/dist/packem_shared/backfillAggregateIndexes-tK0jrl43.mjs +0 -1
  26. package/dist/packem_shared/createCompanionSync-Gp-AesYj.mjs +0 -1
  27. package/dist/packem_shared/ctx-db-companions-CAJOSdN-.mjs +0 -1
@@ -1 +1 @@
1
- import{defineEngineContractSuite as t}from"../packem_shared/defineEngineContractSuite-CZccUN4c.mjs";export{t as defineEngineContractSuite};
1
+ import{defineEngineContractSuite as t}from"../packem_shared/defineEngineContractSuite-B6nrsKSE.mjs";export{t as defineEngineContractSuite};
package/dist/index.d.mts CHANGED
@@ -1773,15 +1773,10 @@ interface RelayShapePoke {
1773
1773
  type: "relay_shape_poke";
1774
1774
  }
1775
1775
  type OwnerRelayFrame = RelayAttach | RelayDetach | RelayFrame | RelayShapePoke | RelayShapeSubscribe;
1776
- declare const DEFAULT_MAX_RELAYS = 8;
1777
- interface RelayStub {
1776
+ interface SiblingStub {
1778
1777
  fetch: (url: string, init?: RequestInit) => Promise<Response>;
1779
1778
  }
1780
- interface RelayNamespaceLike {
1781
- get: (id: unknown) => RelayStub;
1782
- getByName?: (name: string) => RelayStub;
1783
- idFromName: (name: string) => unknown;
1784
- }
1779
+ declare const DEFAULT_MAX_RELAYS = 8;
1785
1780
  interface RelayHost {
1786
1781
  buildShapeDiff: (resolved: ResolvedShape, fromCursor: number, toCursor: number) => ShapeRowOp[];
1787
1782
  computeOpLogShapeSeed: (shape: ShapeSubscriptionQuery, resolved: ResolvedShape) => {
@@ -1817,7 +1812,7 @@ declare abstract class RelayLink {
1817
1812
  handleControl(request: Request): Promise<Response>;
1818
1813
  maxRelays(): number;
1819
1814
  protected canAddressSiblings(): boolean;
1820
- protected relayNamespace(): RelayNamespaceLike | undefined;
1815
+ protected siblingStub(targetName: string): SiblingStub | undefined;
1821
1816
  protected postRelayMessage(targetName: string, message: OwnerRelayFrame): Promise<void>;
1822
1817
  protected requestRelayMessage(targetName: string, message: OwnerRelayFrame): Promise<Response | undefined>;
1823
1818
  abstract forwardWhisper(topic: string, frame: string): Promise<void>;
@@ -1892,6 +1887,55 @@ declare class RelayMember extends RelayLink {
1892
1887
  private deliverShapePoke;
1893
1888
  }
1894
1889
  declare const createRelayLink: (host: RelayHost) => OwnerRelay | RelayMember | undefined;
1890
+ declare const REGION_HINTS: readonly ["wnam", "enam", "sam", "weur", "eeur", "apac", "apac-ne", "apac-se", "oc", "afr", "me"];
1891
+ type RegionHint = (typeof REGION_HINTS)[number];
1892
+ type ReplicaReadiness = "fresh" | "stale" | "unavailable";
1893
+ interface ShardSiblingHost {
1894
+ doName: () => string | undefined;
1895
+ env: () => unknown;
1896
+ shardBinding: () => string | undefined;
1897
+ sql: () => SqlExec;
1898
+ }
1899
+ interface ReplicaOwnerHost extends ShardSiblingHost {
1900
+ exportRows: () => Promise<ExportRow[]>;
1901
+ ownerCursor: () => number | undefined;
1902
+ ownerEpoch: () => string | undefined;
1903
+ ownerFloor: () => number | undefined;
1904
+ readChanges: (sinceSeq: number, limit: number) => {
1905
+ changes: CdcChange[];
1906
+ cursor: number;
1907
+ };
1908
+ rowCount: () => number;
1909
+ }
1910
+ interface ReplicaFollowerHost extends ShardSiblingHost {
1911
+ applyChanges: (changes: ReadonlyArray<CdcChange>) => Promise<number>;
1912
+ importRows: (rows: ReadonlyArray<ExportRow>) => Promise<{
1913
+ errors: ReadonlyArray<unknown>;
1914
+ }>;
1915
+ }
1916
+ declare const handleReplicaControl: (host: ReplicaOwnerHost, request: Request) => Promise<Response>;
1917
+ declare class ShardReplica {
1918
+ private readonly host;
1919
+ readonly ownerKey: string;
1920
+ readonly region: RegionHint;
1921
+ private divergent;
1922
+ private inFlight;
1923
+ constructor(host: ReplicaFollowerHost, ownerKey: string, region: RegionHint);
1924
+ ensureFresh(minSeq?: number): Promise<ReplicaReadiness>;
1925
+ appliedSeq(): number;
1926
+ isDivergent(): boolean;
1927
+ private advance;
1928
+ private isCaughtUp;
1929
+ private catchUp;
1930
+ private applyPage;
1931
+ private hasDiverged;
1932
+ private bootstrap;
1933
+ private isFreshEnough;
1934
+ private pull;
1935
+ private request;
1936
+ }
1937
+ declare const createReplicaLink: (host: ReplicaFollowerHost) => ShardReplica | undefined;
1938
+ declare const gateReplicaDispatch: (replica: ShardReplica, request: Request, functionPath: string) => Promise<Response | undefined>;
1895
1939
  declare const REPROJECTION_MIGRATION_PREFIX = "__lunora_reproject__";
1896
1940
  declare const reprojectionMigrationId: (table: string) => string;
1897
1941
  declare const reprojectableFields: (definition: TableDefinitionLike) => string[];
@@ -2013,4 +2057,4 @@ interface WhereSqlStrategy {
2013
2057
  serialize: SerializeValue;
2014
2058
  }
2015
2059
  declare const compileWhereSql: (where: WhereInput | undefined, strategy: WhereSqlStrategy) => SQL | undefined;
2016
- export { ADMIN_FUNCTIONS, ADMIN_FUNCTION_PREFIX, AGGREGATE_SQL_FUNCTION, AGG_COUNT, AGG_KEY, AGG_VALUE, AUDIT_LOG_TABLE, type AdvisorProcedure, type AdvisorProceduresResult, type AdvisoriesResult, type AdvisoryFinding, type AggregateIndexDefinitionLike, type AggregateOp, type AggregateOptions, type AggregateResult, type AggregateTally, type AppendAuditEntry, type ApplyOnDeleteOptions$1 as ApplyOnDeleteOptions, type AuditEntry, type AuditLogResult, type BroadcastDelta, CDC_LOG_TABLE, CDC_META_TABLE, CLIENT_WATERMARK_TABLE, type CacheEntry, type CapturedMailRow, type CdcChange, type ChangedKeys, type Clock, type ColumnMeta, type ColumnMetaLike, type CompanionSync, type CompanionSyncDeps, ConflictError, type ConflictKind, type CountArgs, CountRlsUnsupportedError, type CreateWorkflowInstanceResult, type CrossShardReadArgs, type CtxDbOptions, DATA_MIGRATION_STATE_TABLE, DEFAULT_FANOUT_TOPIC_LIMIT, DEFAULT_MAX_RELATION_KEYS, DEFAULT_MAX_RELAYS, DEFAULT_PROMOTION_THRESHOLDS, DEFAULT_TRANSACTION_LIMITS, DOC_COLUMN, type DataMigrationDocument, type DataMigrationLike, type DataMigrationTransform, type DatabaseWriterLike, type DependencyTracker, type DeployInfo, type ExportRow, type ExportShardAdminArgs, type ExportShardArgs, type ExternalSourceDiffResult, type ExternalSourceLike, FLAGS_FUNCTION_PREFIX, type FacetColumnOptions, type FacetColumnResult, type FacetValue, type FanoutMetricsResult, type FanoutPathCounters, type FanoutTopicStat, type FieldOperators, type FilterClause, type FilterOperator, type FlagEvaluation, type FlagsResult, type FunctionCallStat, type FunctionScanAttribution, type FunctionStatsResult, GEO_DEFAULT_PRECISION, GLOBAL_SHAPE_SNAPSHOT_TABLE, type GeoBoundingBox, type GeoFilterBuilderLike, type GeoIndexDefinitionLike, type GeoPoint, type GeoScoredDocument, type GroupByEntry, type GroupByOptions, type GuardableSchema$1 as GuardableSchema, IDEMPOTENCY_TABLE, type IdGenerator, type IdempotentRecord, type ImportError, type ImportShardAdminArgs, type ImportShardArgs, type ImportShardResult, type IncrementalMaterializeResult, type IndexDefinitionLike, type IndexKeyEntry, type IndexRangeBuilderLike, type KeyRange, type LifecycleDispatchInfo, type LifecycleEvent, MAIL_RETENTION, MAIL_TABLE, MAX_PAGE_SIZE, MAX_SQL_ROWS, type MaskColumnMetadata, type MaskPoliciesResult, type MaterializeResult, type MigrationDirection, type MigrationRunResult, type MigrationStatus, type MigrationStatusRow, type MutationDelta, type NestedWith, NotFoundError, NotUniqueError, type OnDeleteActionLike, type OrderByClause, type OrderByInput, type OrderKey, OwnerRelay, type OwnerRelayFrame, type PaginationOptions, type PitrBookmarkResult, type PitrRestoreArgs, type PitrRestoreResult, type PitrStorage, type PokeFrameMeta, type PromotionState, type PromotionThresholds, QUEUE_TABLE, type QueryArgs, type QueryPage, type QueueMessageOutcome, type QueueMessageRow, type QueueMetadata, type QueuesResult, RANK_TIEBREAK, RELATION_EXISTS_KEY, RELATION_FUNCTION_PREFIX, REPROJECTION_MIGRATION_PREFIX, RLS_UNWRAP_SYMBOL, type RankBeforeOptions, type RankBeforeResult, type RankDirection, type RankIndexDefinitionLike, type RankOptions, type RankPage, type RankPageComputation, type RankPageDeps, type RankPageOptions, type RankPageRow, type RankPageRowKey, type RankResult, type RankSortKeyLike, ReactiveCache, type ReactiveCacheOptions, type ReadFootprint, type ReadHook, type ReadTablePageOptions, type RecordMailInput, type RecordQueueMessageInput, type RelationDefinitionLike, type RelationExistsMarker, type RelayAttach, type RelayDetach, type RelayFrame, type RelayHost, RelayMember, type RelayShapePoke, type RelayShapeSeed, type RelayShapeSubscribe, type RenderedSql, type ResolveRelationPredicatesOptions, type ResolveWithOptions, type ResolveWithResult, type ResolvedShape, type RestrictableQueryOptions, type RlsPoliciesResult, type RlsPolicyMetadata, RlsRequiredError, type RlsRoleMetadata, type RpcRequest, type RunDataMigrationOptions, type RunTriggersOptions, SCAN_DEP, SCHEMA_HISTORY_MAX_VERSIONS, SEARCH_STATE_TABLE, type SchedulableWorkflowReferenceLike, type ScheduledFunctionDoc, type SchedulerLike, type SchemaLike, type ScoredDocument, type SearchFilterBuilderLike, type SearchIndexDefinitionLike, type SearchScoredDocument, type SelectMatchingIdsOptions, type ServerDefaultContextLike, type SettingEntry, type SettingKind, type SettingsResult, type ShapePokePart, type ShapeRow, type ShapeRowOp, type ShapeSubscriptionQuery, type ShardRankPageResult, ShardRunner, type ShardRunnerOptions, type ShardSocketLike, type SocketAttachment, type SortDirection, type SourceClientLike, type SourceCursorLike, type SourceRefresh, type SqlConsoleResult, type SqlCursor, type SqlEngine, type SqlExec, type SqlLintResult, type StorageMetadata, type StorageReference, type StorageReferenceResult, type StorageRuleMetadata, type StorageRulesResult, type StudioFeaturesResult, type SubscriptionConnection, type SubscriptionEnvelope, type SubscriptionIdentity, type SubscriptionInfo, type SubscriptionQuery, type SubscriptionReadFootprint, type SubscriptionsResult, type SystemDatabaseReader, type SystemDoc, type SystemQuery, type SystemReaderOptions, type SystemReaderSchedulerLike, type SystemReaderStorageLike, type SystemTableName, type TableColumnsResult, type TableDefinitionLike, type TableIndexInfo, type TableIndexesResult, type TableInfo, type TablePage, type TableReaderLike, type TablesColumnsResult, type TablesIndexesResult, type TransactionHeadroom, TransactionHeadroomTracker, type TransactionLimits, type TransactionSqlLike, type TriggerContextLike, type TriggerDefinitionLike, type TriggerEventLike, type TriggerOpLike, type TriggerTimingLike, type TtlSweepSpec, type ValidatorLike, type WhereInput, type WhereSqlStrategy, type WithInput, type WorkflowInstanceState, type WorkflowInstanceStatusResult, type WorkflowMetadata, type WorkflowsResult, type WriteEvent, type WriteHook, advanceClientWatermark, aggUpsertSql, aggregateSqlFunction, aggregateTableName, appendAuditEntry, appendCdcChange, applyCdcChanges, applyOnDelete, applySelect, armRestore, assertFlatPredicate, assertReadonly, assertShapeShardable, assertValidClientId, awaitWsDrain, backfillAggregateIndexes, backfillRankIndexes, backfillSearchIndexes, backfillSearchIndexesForTable, boundingBoxCenter, boundingBoxGeohashes, buildIndexRange, buildPokeFrames, buildReprojectionMigration, buildSeekBeforeWhere, buildSeekWhere, buildSettings, bumpCdcEpoch, clampPromotionThresholds, clearCapturedMail, clearQueueMessages, coerceAggregateNumber, compileWhereSql, computeRankPage, containsRelationPredicate, countLegacyRows, coveringGeohashes, createCompanionSync, createDependencyTracker, createFanoutCounters, createIndexSql, createReadFootprint, createRelayLink, createShardCtxDb, createSystemReader, decodeCursor, deleteGlobalShapeSnapshot, deleteGlobalShapeSnapshotsForConnection, depKey, diffExternalSource, diffGlobalMembership, distinctValues, encodeAggregateKey, encodeCursor, encodeGeohash, encodePartitionKey, encodeRowsPatch, ensureAuditTable, ensureMailTable, exportShardRows, exportShardTable, facetColumn, fanOutScalarCounts, findStorageReferences, foldAggregateTally, geoTableName, guardWriter, hasTrigger, haversineMeters, hydrateDocsById, importShardRows, indexKeysForRow, isDevEnvironment, isFtsAvailable, isLossyBody, isRelationPredicate, isSoftDeleted, isSourceDue, jsonPath, jsonPathSql, keysTouchRanges, liftSourceId, lintReadonlySql, listTables, matchesRankStaticWhere, matchesStaticWhere, materializeExternalRows, materializeExternalRowsIncremental, mergeChangedKeys, mergeWhere, migrateCdcLog, migrateCdcMeta, migrateClientWatermark, migrateGlobalShapeSnapshot, migrateIdempotency, migrateSearchState, minCdcSeq, nextPromotionState, normalizeCountArgument, normalizeIdStructurally, normalizeOrderKeys, normalizeSourceDocument, normalizeSourceValue, param, parseExportShardArgs, parseImportShardArgs, planAggregateLookup, pointInBoundingBox, projectColumns, pullExternalSourceIncrementalTick, pullExternalSourceTick, qualifiedJsonPath, qualifiedJsonPathSql, quoteIdentifier, rankKeyFromDocument as rankKeyFromDoc, rankTableName, reactiveCacheKey, readAggregateValue, readAuditLog, readBookmark, readCapturedMail, readCdcChanges, readCdcCursor, readCdcEpoch, readClientWatermark, readExternalSourceBaseline, readGlobalShapeSnapshot, readIdempotent, readMigrationStatus, readQueueMessageById, readQueueMessages, readSchemaHistory, readSchemaVersion, readSearchBackfillState, readTablePage, recordCapturedMail, recordChangedKeys, recordFanoutPass, recordQueueMessages, recordSchemaVersion, relationHooks, relayCountFor, renderSql, reprojectableFields, reprojectionMigrationId, reprojectionTables, resolveRankPartition, resolveRelationPredicates, resolveWith, rowToDocument, runDataMigration, runDrizzle, runExternalSourceTick, runReadonlySql, runRowValidators, runShardMigrations, runSocketPool, runSql, runTriggers, selectExpiredIds, selectExportTables, selectIndexForAggregate, selectIndexForCount, selectIndexForGroupBy, selectMatchingIds, selectShapeMemberIds, selectShapeRows, sendDeltaFrames, serializeSqlValue, shapeRoutingKey, softDeleteScope, sortColumnName, stableStringify, stableWireKey, subscriptionListDeltas, summarizeFanoutTopics, summarizeSubscriptions, tableColumns, tableFromDepKey, throwingScheduler, trimCdcChanges, trimIdempotent, tryRowToDocument, trySendFrame, validateImportRow, writeGlobalShapeSnapshot, writeIdempotent, writeSearchBackfillState, writeTouchesMemo };
2060
+ export { ADMIN_FUNCTIONS, ADMIN_FUNCTION_PREFIX, AGGREGATE_SQL_FUNCTION, AGG_COUNT, AGG_KEY, AGG_VALUE, AUDIT_LOG_TABLE, type AdvisorProcedure, type AdvisorProceduresResult, type AdvisoriesResult, type AdvisoryFinding, type AggregateIndexDefinitionLike, type AggregateOp, type AggregateOptions, type AggregateResult, type AggregateTally, type AppendAuditEntry, type ApplyOnDeleteOptions$1 as ApplyOnDeleteOptions, type AuditEntry, type AuditLogResult, type BroadcastDelta, CDC_LOG_TABLE, CDC_META_TABLE, CLIENT_WATERMARK_TABLE, type CacheEntry, type CapturedMailRow, type CdcChange, type ChangedKeys, type Clock, type ColumnMeta, type ColumnMetaLike, type CompanionSync, type CompanionSyncDeps, ConflictError, type ConflictKind, type CountArgs, CountRlsUnsupportedError, type CreateWorkflowInstanceResult, type CrossShardReadArgs, type CtxDbOptions, DATA_MIGRATION_STATE_TABLE, DEFAULT_FANOUT_TOPIC_LIMIT, DEFAULT_MAX_RELATION_KEYS, DEFAULT_MAX_RELAYS, DEFAULT_PROMOTION_THRESHOLDS, DEFAULT_TRANSACTION_LIMITS, DOC_COLUMN, type DataMigrationDocument, type DataMigrationLike, type DataMigrationTransform, type DatabaseWriterLike, type DependencyTracker, type DeployInfo, type ExportRow, type ExportShardAdminArgs, type ExportShardArgs, type ExternalSourceDiffResult, type ExternalSourceLike, FLAGS_FUNCTION_PREFIX, type FacetColumnOptions, type FacetColumnResult, type FacetValue, type FanoutMetricsResult, type FanoutPathCounters, type FanoutTopicStat, type FieldOperators, type FilterClause, type FilterOperator, type FlagEvaluation, type FlagsResult, type FunctionCallStat, type FunctionScanAttribution, type FunctionStatsResult, GEO_DEFAULT_PRECISION, GLOBAL_SHAPE_SNAPSHOT_TABLE, type GeoBoundingBox, type GeoFilterBuilderLike, type GeoIndexDefinitionLike, type GeoPoint, type GeoScoredDocument, type GroupByEntry, type GroupByOptions, type GuardableSchema$1 as GuardableSchema, IDEMPOTENCY_TABLE, type IdGenerator, type IdempotentRecord, type ImportError, type ImportShardAdminArgs, type ImportShardArgs, type ImportShardResult, type IncrementalMaterializeResult, type IndexDefinitionLike, type IndexKeyEntry, type IndexRangeBuilderLike, type KeyRange, type LifecycleDispatchInfo, type LifecycleEvent, MAIL_RETENTION, MAIL_TABLE, MAX_PAGE_SIZE, MAX_SQL_ROWS, type MaskColumnMetadata, type MaskPoliciesResult, type MaterializeResult, type MigrationDirection, type MigrationRunResult, type MigrationStatus, type MigrationStatusRow, type MutationDelta, type NestedWith, NotFoundError, NotUniqueError, type OnDeleteActionLike, type OrderByClause, type OrderByInput, type OrderKey, OwnerRelay, type OwnerRelayFrame, type PaginationOptions, type PitrBookmarkResult, type PitrRestoreArgs, type PitrRestoreResult, type PitrStorage, type PokeFrameMeta, type PromotionState, type PromotionThresholds, QUEUE_TABLE, type QueryArgs, type QueryPage, type QueueMessageOutcome, type QueueMessageRow, type QueueMetadata, type QueuesResult, RANK_TIEBREAK, RELATION_EXISTS_KEY, RELATION_FUNCTION_PREFIX, REPROJECTION_MIGRATION_PREFIX, RLS_UNWRAP_SYMBOL, type RankBeforeOptions, type RankBeforeResult, type RankDirection, type RankIndexDefinitionLike, type RankOptions, type RankPage, type RankPageComputation, type RankPageDeps, type RankPageOptions, type RankPageRow, type RankPageRowKey, type RankResult, type RankSortKeyLike, ReactiveCache, type ReactiveCacheOptions, type ReadFootprint, type ReadHook, type ReadTablePageOptions, type RecordMailInput, type RecordQueueMessageInput, type RelationDefinitionLike, type RelationExistsMarker, type RelayAttach, type RelayDetach, type RelayFrame, type RelayHost, RelayMember, type RelayShapePoke, type RelayShapeSeed, type RelayShapeSubscribe, type RenderedSql, type ReplicaFollowerHost, type ReplicaOwnerHost, type ReplicaReadiness, type ResolveRelationPredicatesOptions, type ResolveWithOptions, type ResolveWithResult, type ResolvedShape, type RestrictableQueryOptions, type RlsPoliciesResult, type RlsPolicyMetadata, RlsRequiredError, type RlsRoleMetadata, type RpcRequest, type RunDataMigrationOptions, type RunTriggersOptions, SCAN_DEP, SCHEMA_HISTORY_MAX_VERSIONS, SEARCH_STATE_TABLE, type SchedulableWorkflowReferenceLike, type ScheduledFunctionDoc, type SchedulerLike, type SchemaLike, type ScoredDocument, type SearchFilterBuilderLike, type SearchIndexDefinitionLike, type SearchScoredDocument, type SelectMatchingIdsOptions, type ServerDefaultContextLike, type SettingEntry, type SettingKind, type SettingsResult, type ShapePokePart, type ShapeRow, type ShapeRowOp, type ShapeSubscriptionQuery, type ShardRankPageResult, ShardRunner, type ShardRunnerOptions, type ShardSiblingHost, type ShardSocketLike, type SocketAttachment, type SortDirection, type SourceClientLike, type SourceCursorLike, type SourceRefresh, type SqlConsoleResult, type SqlCursor, type SqlEngine, type SqlExec, type SqlLintResult, type StorageMetadata, type StorageReference, type StorageReferenceResult, type StorageRuleMetadata, type StorageRulesResult, type StudioFeaturesResult, type SubscriptionConnection, type SubscriptionEnvelope, type SubscriptionIdentity, type SubscriptionInfo, type SubscriptionQuery, type SubscriptionReadFootprint, type SubscriptionsResult, type SystemDatabaseReader, type SystemDoc, type SystemQuery, type SystemReaderOptions, type SystemReaderSchedulerLike, type SystemReaderStorageLike, type SystemTableName, type TableColumnsResult, type TableDefinitionLike, type TableIndexInfo, type TableIndexesResult, type TableInfo, type TablePage, type TableReaderLike, type TablesColumnsResult, type TablesIndexesResult, type TransactionHeadroom, TransactionHeadroomTracker, type TransactionLimits, type TransactionSqlLike, type TriggerContextLike, type TriggerDefinitionLike, type TriggerEventLike, type TriggerOpLike, type TriggerTimingLike, type TtlSweepSpec, type ValidatorLike, type WhereInput, type WhereSqlStrategy, type WithInput, type WorkflowInstanceState, type WorkflowInstanceStatusResult, type WorkflowMetadata, type WorkflowsResult, type WriteEvent, type WriteHook, advanceClientWatermark, aggUpsertSql, aggregateSqlFunction, aggregateTableName, appendAuditEntry, appendCdcChange, applyCdcChanges, applyOnDelete, applySelect, armRestore, assertFlatPredicate, assertReadonly, assertShapeShardable, assertValidClientId, awaitWsDrain, backfillAggregateIndexes, backfillRankIndexes, backfillSearchIndexes, backfillSearchIndexesForTable, boundingBoxCenter, boundingBoxGeohashes, buildIndexRange, buildPokeFrames, buildReprojectionMigration, buildSeekBeforeWhere, buildSeekWhere, buildSettings, bumpCdcEpoch, clampPromotionThresholds, clearCapturedMail, clearQueueMessages, coerceAggregateNumber, compileWhereSql, computeRankPage, containsRelationPredicate, countLegacyRows, coveringGeohashes, createCompanionSync, createDependencyTracker, createFanoutCounters, createIndexSql, createReadFootprint, createRelayLink, createReplicaLink, createShardCtxDb, createSystemReader, decodeCursor, deleteGlobalShapeSnapshot, deleteGlobalShapeSnapshotsForConnection, depKey, diffExternalSource, diffGlobalMembership, distinctValues, encodeAggregateKey, encodeCursor, encodeGeohash, encodePartitionKey, encodeRowsPatch, ensureAuditTable, ensureMailTable, exportShardRows, exportShardTable, facetColumn, fanOutScalarCounts, findStorageReferences, foldAggregateTally, gateReplicaDispatch, geoTableName, guardWriter, handleReplicaControl, hasTrigger, haversineMeters, hydrateDocsById, importShardRows, indexKeysForRow, isDevEnvironment, isFtsAvailable, isLossyBody, isRelationPredicate, isSoftDeleted, isSourceDue, jsonPath, jsonPathSql, keysTouchRanges, liftSourceId, lintReadonlySql, listTables, matchesRankStaticWhere, matchesStaticWhere, materializeExternalRows, materializeExternalRowsIncremental, mergeChangedKeys, mergeWhere, migrateCdcLog, migrateCdcMeta, migrateClientWatermark, migrateGlobalShapeSnapshot, migrateIdempotency, migrateSearchState, minCdcSeq, nextPromotionState, normalizeCountArgument, normalizeIdStructurally, normalizeOrderKeys, normalizeSourceDocument, normalizeSourceValue, param, parseExportShardArgs, parseImportShardArgs, planAggregateLookup, pointInBoundingBox, projectColumns, pullExternalSourceIncrementalTick, pullExternalSourceTick, qualifiedJsonPath, qualifiedJsonPathSql, quoteIdentifier, rankKeyFromDocument as rankKeyFromDoc, rankTableName, reactiveCacheKey, readAggregateValue, readAuditLog, readBookmark, readCapturedMail, readCdcChanges, readCdcCursor, readCdcEpoch, readClientWatermark, readExternalSourceBaseline, readGlobalShapeSnapshot, readIdempotent, readMigrationStatus, readQueueMessageById, readQueueMessages, readSchemaHistory, readSchemaVersion, readSearchBackfillState, readTablePage, recordCapturedMail, recordChangedKeys, recordFanoutPass, recordQueueMessages, recordSchemaVersion, relationHooks, relayCountFor, renderSql, reprojectableFields, reprojectionMigrationId, reprojectionTables, resolveRankPartition, resolveRelationPredicates, resolveWith, rowToDocument, runDataMigration, runDrizzle, runExternalSourceTick, runReadonlySql, runRowValidators, runShardMigrations, runSocketPool, runSql, runTriggers, selectExpiredIds, selectExportTables, selectIndexForAggregate, selectIndexForCount, selectIndexForGroupBy, selectMatchingIds, selectShapeMemberIds, selectShapeRows, sendDeltaFrames, serializeSqlValue, shapeRoutingKey, softDeleteScope, sortColumnName, stableStringify, stableWireKey, subscriptionListDeltas, summarizeFanoutTopics, summarizeSubscriptions, tableColumns, tableFromDepKey, throwingScheduler, trimCdcChanges, trimIdempotent, tryRowToDocument, trySendFrame, validateImportRow, writeGlobalShapeSnapshot, writeIdempotent, writeSearchBackfillState, writeTouchesMemo };
package/dist/index.d.ts CHANGED
@@ -1773,15 +1773,10 @@ interface RelayShapePoke {
1773
1773
  type: "relay_shape_poke";
1774
1774
  }
1775
1775
  type OwnerRelayFrame = RelayAttach | RelayDetach | RelayFrame | RelayShapePoke | RelayShapeSubscribe;
1776
- declare const DEFAULT_MAX_RELAYS = 8;
1777
- interface RelayStub {
1776
+ interface SiblingStub {
1778
1777
  fetch: (url: string, init?: RequestInit) => Promise<Response>;
1779
1778
  }
1780
- interface RelayNamespaceLike {
1781
- get: (id: unknown) => RelayStub;
1782
- getByName?: (name: string) => RelayStub;
1783
- idFromName: (name: string) => unknown;
1784
- }
1779
+ declare const DEFAULT_MAX_RELAYS = 8;
1785
1780
  interface RelayHost {
1786
1781
  buildShapeDiff: (resolved: ResolvedShape, fromCursor: number, toCursor: number) => ShapeRowOp[];
1787
1782
  computeOpLogShapeSeed: (shape: ShapeSubscriptionQuery, resolved: ResolvedShape) => {
@@ -1817,7 +1812,7 @@ declare abstract class RelayLink {
1817
1812
  handleControl(request: Request): Promise<Response>;
1818
1813
  maxRelays(): number;
1819
1814
  protected canAddressSiblings(): boolean;
1820
- protected relayNamespace(): RelayNamespaceLike | undefined;
1815
+ protected siblingStub(targetName: string): SiblingStub | undefined;
1821
1816
  protected postRelayMessage(targetName: string, message: OwnerRelayFrame): Promise<void>;
1822
1817
  protected requestRelayMessage(targetName: string, message: OwnerRelayFrame): Promise<Response | undefined>;
1823
1818
  abstract forwardWhisper(topic: string, frame: string): Promise<void>;
@@ -1892,6 +1887,55 @@ declare class RelayMember extends RelayLink {
1892
1887
  private deliverShapePoke;
1893
1888
  }
1894
1889
  declare const createRelayLink: (host: RelayHost) => OwnerRelay | RelayMember | undefined;
1890
+ declare const REGION_HINTS: readonly ["wnam", "enam", "sam", "weur", "eeur", "apac", "apac-ne", "apac-se", "oc", "afr", "me"];
1891
+ type RegionHint = (typeof REGION_HINTS)[number];
1892
+ type ReplicaReadiness = "fresh" | "stale" | "unavailable";
1893
+ interface ShardSiblingHost {
1894
+ doName: () => string | undefined;
1895
+ env: () => unknown;
1896
+ shardBinding: () => string | undefined;
1897
+ sql: () => SqlExec;
1898
+ }
1899
+ interface ReplicaOwnerHost extends ShardSiblingHost {
1900
+ exportRows: () => Promise<ExportRow[]>;
1901
+ ownerCursor: () => number | undefined;
1902
+ ownerEpoch: () => string | undefined;
1903
+ ownerFloor: () => number | undefined;
1904
+ readChanges: (sinceSeq: number, limit: number) => {
1905
+ changes: CdcChange[];
1906
+ cursor: number;
1907
+ };
1908
+ rowCount: () => number;
1909
+ }
1910
+ interface ReplicaFollowerHost extends ShardSiblingHost {
1911
+ applyChanges: (changes: ReadonlyArray<CdcChange>) => Promise<number>;
1912
+ importRows: (rows: ReadonlyArray<ExportRow>) => Promise<{
1913
+ errors: ReadonlyArray<unknown>;
1914
+ }>;
1915
+ }
1916
+ declare const handleReplicaControl: (host: ReplicaOwnerHost, request: Request) => Promise<Response>;
1917
+ declare class ShardReplica {
1918
+ private readonly host;
1919
+ readonly ownerKey: string;
1920
+ readonly region: RegionHint;
1921
+ private divergent;
1922
+ private inFlight;
1923
+ constructor(host: ReplicaFollowerHost, ownerKey: string, region: RegionHint);
1924
+ ensureFresh(minSeq?: number): Promise<ReplicaReadiness>;
1925
+ appliedSeq(): number;
1926
+ isDivergent(): boolean;
1927
+ private advance;
1928
+ private isCaughtUp;
1929
+ private catchUp;
1930
+ private applyPage;
1931
+ private hasDiverged;
1932
+ private bootstrap;
1933
+ private isFreshEnough;
1934
+ private pull;
1935
+ private request;
1936
+ }
1937
+ declare const createReplicaLink: (host: ReplicaFollowerHost) => ShardReplica | undefined;
1938
+ declare const gateReplicaDispatch: (replica: ShardReplica, request: Request, functionPath: string) => Promise<Response | undefined>;
1895
1939
  declare const REPROJECTION_MIGRATION_PREFIX = "__lunora_reproject__";
1896
1940
  declare const reprojectionMigrationId: (table: string) => string;
1897
1941
  declare const reprojectableFields: (definition: TableDefinitionLike) => string[];
@@ -2013,4 +2057,4 @@ interface WhereSqlStrategy {
2013
2057
  serialize: SerializeValue;
2014
2058
  }
2015
2059
  declare const compileWhereSql: (where: WhereInput | undefined, strategy: WhereSqlStrategy) => SQL | undefined;
2016
- export { ADMIN_FUNCTIONS, ADMIN_FUNCTION_PREFIX, AGGREGATE_SQL_FUNCTION, AGG_COUNT, AGG_KEY, AGG_VALUE, AUDIT_LOG_TABLE, type AdvisorProcedure, type AdvisorProceduresResult, type AdvisoriesResult, type AdvisoryFinding, type AggregateIndexDefinitionLike, type AggregateOp, type AggregateOptions, type AggregateResult, type AggregateTally, type AppendAuditEntry, type ApplyOnDeleteOptions$1 as ApplyOnDeleteOptions, type AuditEntry, type AuditLogResult, type BroadcastDelta, CDC_LOG_TABLE, CDC_META_TABLE, CLIENT_WATERMARK_TABLE, type CacheEntry, type CapturedMailRow, type CdcChange, type ChangedKeys, type Clock, type ColumnMeta, type ColumnMetaLike, type CompanionSync, type CompanionSyncDeps, ConflictError, type ConflictKind, type CountArgs, CountRlsUnsupportedError, type CreateWorkflowInstanceResult, type CrossShardReadArgs, type CtxDbOptions, DATA_MIGRATION_STATE_TABLE, DEFAULT_FANOUT_TOPIC_LIMIT, DEFAULT_MAX_RELATION_KEYS, DEFAULT_MAX_RELAYS, DEFAULT_PROMOTION_THRESHOLDS, DEFAULT_TRANSACTION_LIMITS, DOC_COLUMN, type DataMigrationDocument, type DataMigrationLike, type DataMigrationTransform, type DatabaseWriterLike, type DependencyTracker, type DeployInfo, type ExportRow, type ExportShardAdminArgs, type ExportShardArgs, type ExternalSourceDiffResult, type ExternalSourceLike, FLAGS_FUNCTION_PREFIX, type FacetColumnOptions, type FacetColumnResult, type FacetValue, type FanoutMetricsResult, type FanoutPathCounters, type FanoutTopicStat, type FieldOperators, type FilterClause, type FilterOperator, type FlagEvaluation, type FlagsResult, type FunctionCallStat, type FunctionScanAttribution, type FunctionStatsResult, GEO_DEFAULT_PRECISION, GLOBAL_SHAPE_SNAPSHOT_TABLE, type GeoBoundingBox, type GeoFilterBuilderLike, type GeoIndexDefinitionLike, type GeoPoint, type GeoScoredDocument, type GroupByEntry, type GroupByOptions, type GuardableSchema$1 as GuardableSchema, IDEMPOTENCY_TABLE, type IdGenerator, type IdempotentRecord, type ImportError, type ImportShardAdminArgs, type ImportShardArgs, type ImportShardResult, type IncrementalMaterializeResult, type IndexDefinitionLike, type IndexKeyEntry, type IndexRangeBuilderLike, type KeyRange, type LifecycleDispatchInfo, type LifecycleEvent, MAIL_RETENTION, MAIL_TABLE, MAX_PAGE_SIZE, MAX_SQL_ROWS, type MaskColumnMetadata, type MaskPoliciesResult, type MaterializeResult, type MigrationDirection, type MigrationRunResult, type MigrationStatus, type MigrationStatusRow, type MutationDelta, type NestedWith, NotFoundError, NotUniqueError, type OnDeleteActionLike, type OrderByClause, type OrderByInput, type OrderKey, OwnerRelay, type OwnerRelayFrame, type PaginationOptions, type PitrBookmarkResult, type PitrRestoreArgs, type PitrRestoreResult, type PitrStorage, type PokeFrameMeta, type PromotionState, type PromotionThresholds, QUEUE_TABLE, type QueryArgs, type QueryPage, type QueueMessageOutcome, type QueueMessageRow, type QueueMetadata, type QueuesResult, RANK_TIEBREAK, RELATION_EXISTS_KEY, RELATION_FUNCTION_PREFIX, REPROJECTION_MIGRATION_PREFIX, RLS_UNWRAP_SYMBOL, type RankBeforeOptions, type RankBeforeResult, type RankDirection, type RankIndexDefinitionLike, type RankOptions, type RankPage, type RankPageComputation, type RankPageDeps, type RankPageOptions, type RankPageRow, type RankPageRowKey, type RankResult, type RankSortKeyLike, ReactiveCache, type ReactiveCacheOptions, type ReadFootprint, type ReadHook, type ReadTablePageOptions, type RecordMailInput, type RecordQueueMessageInput, type RelationDefinitionLike, type RelationExistsMarker, type RelayAttach, type RelayDetach, type RelayFrame, type RelayHost, RelayMember, type RelayShapePoke, type RelayShapeSeed, type RelayShapeSubscribe, type RenderedSql, type ResolveRelationPredicatesOptions, type ResolveWithOptions, type ResolveWithResult, type ResolvedShape, type RestrictableQueryOptions, type RlsPoliciesResult, type RlsPolicyMetadata, RlsRequiredError, type RlsRoleMetadata, type RpcRequest, type RunDataMigrationOptions, type RunTriggersOptions, SCAN_DEP, SCHEMA_HISTORY_MAX_VERSIONS, SEARCH_STATE_TABLE, type SchedulableWorkflowReferenceLike, type ScheduledFunctionDoc, type SchedulerLike, type SchemaLike, type ScoredDocument, type SearchFilterBuilderLike, type SearchIndexDefinitionLike, type SearchScoredDocument, type SelectMatchingIdsOptions, type ServerDefaultContextLike, type SettingEntry, type SettingKind, type SettingsResult, type ShapePokePart, type ShapeRow, type ShapeRowOp, type ShapeSubscriptionQuery, type ShardRankPageResult, ShardRunner, type ShardRunnerOptions, type ShardSocketLike, type SocketAttachment, type SortDirection, type SourceClientLike, type SourceCursorLike, type SourceRefresh, type SqlConsoleResult, type SqlCursor, type SqlEngine, type SqlExec, type SqlLintResult, type StorageMetadata, type StorageReference, type StorageReferenceResult, type StorageRuleMetadata, type StorageRulesResult, type StudioFeaturesResult, type SubscriptionConnection, type SubscriptionEnvelope, type SubscriptionIdentity, type SubscriptionInfo, type SubscriptionQuery, type SubscriptionReadFootprint, type SubscriptionsResult, type SystemDatabaseReader, type SystemDoc, type SystemQuery, type SystemReaderOptions, type SystemReaderSchedulerLike, type SystemReaderStorageLike, type SystemTableName, type TableColumnsResult, type TableDefinitionLike, type TableIndexInfo, type TableIndexesResult, type TableInfo, type TablePage, type TableReaderLike, type TablesColumnsResult, type TablesIndexesResult, type TransactionHeadroom, TransactionHeadroomTracker, type TransactionLimits, type TransactionSqlLike, type TriggerContextLike, type TriggerDefinitionLike, type TriggerEventLike, type TriggerOpLike, type TriggerTimingLike, type TtlSweepSpec, type ValidatorLike, type WhereInput, type WhereSqlStrategy, type WithInput, type WorkflowInstanceState, type WorkflowInstanceStatusResult, type WorkflowMetadata, type WorkflowsResult, type WriteEvent, type WriteHook, advanceClientWatermark, aggUpsertSql, aggregateSqlFunction, aggregateTableName, appendAuditEntry, appendCdcChange, applyCdcChanges, applyOnDelete, applySelect, armRestore, assertFlatPredicate, assertReadonly, assertShapeShardable, assertValidClientId, awaitWsDrain, backfillAggregateIndexes, backfillRankIndexes, backfillSearchIndexes, backfillSearchIndexesForTable, boundingBoxCenter, boundingBoxGeohashes, buildIndexRange, buildPokeFrames, buildReprojectionMigration, buildSeekBeforeWhere, buildSeekWhere, buildSettings, bumpCdcEpoch, clampPromotionThresholds, clearCapturedMail, clearQueueMessages, coerceAggregateNumber, compileWhereSql, computeRankPage, containsRelationPredicate, countLegacyRows, coveringGeohashes, createCompanionSync, createDependencyTracker, createFanoutCounters, createIndexSql, createReadFootprint, createRelayLink, createShardCtxDb, createSystemReader, decodeCursor, deleteGlobalShapeSnapshot, deleteGlobalShapeSnapshotsForConnection, depKey, diffExternalSource, diffGlobalMembership, distinctValues, encodeAggregateKey, encodeCursor, encodeGeohash, encodePartitionKey, encodeRowsPatch, ensureAuditTable, ensureMailTable, exportShardRows, exportShardTable, facetColumn, fanOutScalarCounts, findStorageReferences, foldAggregateTally, geoTableName, guardWriter, hasTrigger, haversineMeters, hydrateDocsById, importShardRows, indexKeysForRow, isDevEnvironment, isFtsAvailable, isLossyBody, isRelationPredicate, isSoftDeleted, isSourceDue, jsonPath, jsonPathSql, keysTouchRanges, liftSourceId, lintReadonlySql, listTables, matchesRankStaticWhere, matchesStaticWhere, materializeExternalRows, materializeExternalRowsIncremental, mergeChangedKeys, mergeWhere, migrateCdcLog, migrateCdcMeta, migrateClientWatermark, migrateGlobalShapeSnapshot, migrateIdempotency, migrateSearchState, minCdcSeq, nextPromotionState, normalizeCountArgument, normalizeIdStructurally, normalizeOrderKeys, normalizeSourceDocument, normalizeSourceValue, param, parseExportShardArgs, parseImportShardArgs, planAggregateLookup, pointInBoundingBox, projectColumns, pullExternalSourceIncrementalTick, pullExternalSourceTick, qualifiedJsonPath, qualifiedJsonPathSql, quoteIdentifier, rankKeyFromDocument as rankKeyFromDoc, rankTableName, reactiveCacheKey, readAggregateValue, readAuditLog, readBookmark, readCapturedMail, readCdcChanges, readCdcCursor, readCdcEpoch, readClientWatermark, readExternalSourceBaseline, readGlobalShapeSnapshot, readIdempotent, readMigrationStatus, readQueueMessageById, readQueueMessages, readSchemaHistory, readSchemaVersion, readSearchBackfillState, readTablePage, recordCapturedMail, recordChangedKeys, recordFanoutPass, recordQueueMessages, recordSchemaVersion, relationHooks, relayCountFor, renderSql, reprojectableFields, reprojectionMigrationId, reprojectionTables, resolveRankPartition, resolveRelationPredicates, resolveWith, rowToDocument, runDataMigration, runDrizzle, runExternalSourceTick, runReadonlySql, runRowValidators, runShardMigrations, runSocketPool, runSql, runTriggers, selectExpiredIds, selectExportTables, selectIndexForAggregate, selectIndexForCount, selectIndexForGroupBy, selectMatchingIds, selectShapeMemberIds, selectShapeRows, sendDeltaFrames, serializeSqlValue, shapeRoutingKey, softDeleteScope, sortColumnName, stableStringify, stableWireKey, subscriptionListDeltas, summarizeFanoutTopics, summarizeSubscriptions, tableColumns, tableFromDepKey, throwingScheduler, trimCdcChanges, trimIdempotent, tryRowToDocument, trySendFrame, validateImportRow, writeGlobalShapeSnapshot, writeIdempotent, writeSearchBackfillState, writeTouchesMemo };
2060
+ export { ADMIN_FUNCTIONS, ADMIN_FUNCTION_PREFIX, AGGREGATE_SQL_FUNCTION, AGG_COUNT, AGG_KEY, AGG_VALUE, AUDIT_LOG_TABLE, type AdvisorProcedure, type AdvisorProceduresResult, type AdvisoriesResult, type AdvisoryFinding, type AggregateIndexDefinitionLike, type AggregateOp, type AggregateOptions, type AggregateResult, type AggregateTally, type AppendAuditEntry, type ApplyOnDeleteOptions$1 as ApplyOnDeleteOptions, type AuditEntry, type AuditLogResult, type BroadcastDelta, CDC_LOG_TABLE, CDC_META_TABLE, CLIENT_WATERMARK_TABLE, type CacheEntry, type CapturedMailRow, type CdcChange, type ChangedKeys, type Clock, type ColumnMeta, type ColumnMetaLike, type CompanionSync, type CompanionSyncDeps, ConflictError, type ConflictKind, type CountArgs, CountRlsUnsupportedError, type CreateWorkflowInstanceResult, type CrossShardReadArgs, type CtxDbOptions, DATA_MIGRATION_STATE_TABLE, DEFAULT_FANOUT_TOPIC_LIMIT, DEFAULT_MAX_RELATION_KEYS, DEFAULT_MAX_RELAYS, DEFAULT_PROMOTION_THRESHOLDS, DEFAULT_TRANSACTION_LIMITS, DOC_COLUMN, type DataMigrationDocument, type DataMigrationLike, type DataMigrationTransform, type DatabaseWriterLike, type DependencyTracker, type DeployInfo, type ExportRow, type ExportShardAdminArgs, type ExportShardArgs, type ExternalSourceDiffResult, type ExternalSourceLike, FLAGS_FUNCTION_PREFIX, type FacetColumnOptions, type FacetColumnResult, type FacetValue, type FanoutMetricsResult, type FanoutPathCounters, type FanoutTopicStat, type FieldOperators, type FilterClause, type FilterOperator, type FlagEvaluation, type FlagsResult, type FunctionCallStat, type FunctionScanAttribution, type FunctionStatsResult, GEO_DEFAULT_PRECISION, GLOBAL_SHAPE_SNAPSHOT_TABLE, type GeoBoundingBox, type GeoFilterBuilderLike, type GeoIndexDefinitionLike, type GeoPoint, type GeoScoredDocument, type GroupByEntry, type GroupByOptions, type GuardableSchema$1 as GuardableSchema, IDEMPOTENCY_TABLE, type IdGenerator, type IdempotentRecord, type ImportError, type ImportShardAdminArgs, type ImportShardArgs, type ImportShardResult, type IncrementalMaterializeResult, type IndexDefinitionLike, type IndexKeyEntry, type IndexRangeBuilderLike, type KeyRange, type LifecycleDispatchInfo, type LifecycleEvent, MAIL_RETENTION, MAIL_TABLE, MAX_PAGE_SIZE, MAX_SQL_ROWS, type MaskColumnMetadata, type MaskPoliciesResult, type MaterializeResult, type MigrationDirection, type MigrationRunResult, type MigrationStatus, type MigrationStatusRow, type MutationDelta, type NestedWith, NotFoundError, NotUniqueError, type OnDeleteActionLike, type OrderByClause, type OrderByInput, type OrderKey, OwnerRelay, type OwnerRelayFrame, type PaginationOptions, type PitrBookmarkResult, type PitrRestoreArgs, type PitrRestoreResult, type PitrStorage, type PokeFrameMeta, type PromotionState, type PromotionThresholds, QUEUE_TABLE, type QueryArgs, type QueryPage, type QueueMessageOutcome, type QueueMessageRow, type QueueMetadata, type QueuesResult, RANK_TIEBREAK, RELATION_EXISTS_KEY, RELATION_FUNCTION_PREFIX, REPROJECTION_MIGRATION_PREFIX, RLS_UNWRAP_SYMBOL, type RankBeforeOptions, type RankBeforeResult, type RankDirection, type RankIndexDefinitionLike, type RankOptions, type RankPage, type RankPageComputation, type RankPageDeps, type RankPageOptions, type RankPageRow, type RankPageRowKey, type RankResult, type RankSortKeyLike, ReactiveCache, type ReactiveCacheOptions, type ReadFootprint, type ReadHook, type ReadTablePageOptions, type RecordMailInput, type RecordQueueMessageInput, type RelationDefinitionLike, type RelationExistsMarker, type RelayAttach, type RelayDetach, type RelayFrame, type RelayHost, RelayMember, type RelayShapePoke, type RelayShapeSeed, type RelayShapeSubscribe, type RenderedSql, type ReplicaFollowerHost, type ReplicaOwnerHost, type ReplicaReadiness, type ResolveRelationPredicatesOptions, type ResolveWithOptions, type ResolveWithResult, type ResolvedShape, type RestrictableQueryOptions, type RlsPoliciesResult, type RlsPolicyMetadata, RlsRequiredError, type RlsRoleMetadata, type RpcRequest, type RunDataMigrationOptions, type RunTriggersOptions, SCAN_DEP, SCHEMA_HISTORY_MAX_VERSIONS, SEARCH_STATE_TABLE, type SchedulableWorkflowReferenceLike, type ScheduledFunctionDoc, type SchedulerLike, type SchemaLike, type ScoredDocument, type SearchFilterBuilderLike, type SearchIndexDefinitionLike, type SearchScoredDocument, type SelectMatchingIdsOptions, type ServerDefaultContextLike, type SettingEntry, type SettingKind, type SettingsResult, type ShapePokePart, type ShapeRow, type ShapeRowOp, type ShapeSubscriptionQuery, type ShardRankPageResult, ShardRunner, type ShardRunnerOptions, type ShardSiblingHost, type ShardSocketLike, type SocketAttachment, type SortDirection, type SourceClientLike, type SourceCursorLike, type SourceRefresh, type SqlConsoleResult, type SqlCursor, type SqlEngine, type SqlExec, type SqlLintResult, type StorageMetadata, type StorageReference, type StorageReferenceResult, type StorageRuleMetadata, type StorageRulesResult, type StudioFeaturesResult, type SubscriptionConnection, type SubscriptionEnvelope, type SubscriptionIdentity, type SubscriptionInfo, type SubscriptionQuery, type SubscriptionReadFootprint, type SubscriptionsResult, type SystemDatabaseReader, type SystemDoc, type SystemQuery, type SystemReaderOptions, type SystemReaderSchedulerLike, type SystemReaderStorageLike, type SystemTableName, type TableColumnsResult, type TableDefinitionLike, type TableIndexInfo, type TableIndexesResult, type TableInfo, type TablePage, type TableReaderLike, type TablesColumnsResult, type TablesIndexesResult, type TransactionHeadroom, TransactionHeadroomTracker, type TransactionLimits, type TransactionSqlLike, type TriggerContextLike, type TriggerDefinitionLike, type TriggerEventLike, type TriggerOpLike, type TriggerTimingLike, type TtlSweepSpec, type ValidatorLike, type WhereInput, type WhereSqlStrategy, type WithInput, type WorkflowInstanceState, type WorkflowInstanceStatusResult, type WorkflowMetadata, type WorkflowsResult, type WriteEvent, type WriteHook, advanceClientWatermark, aggUpsertSql, aggregateSqlFunction, aggregateTableName, appendAuditEntry, appendCdcChange, applyCdcChanges, applyOnDelete, applySelect, armRestore, assertFlatPredicate, assertReadonly, assertShapeShardable, assertValidClientId, awaitWsDrain, backfillAggregateIndexes, backfillRankIndexes, backfillSearchIndexes, backfillSearchIndexesForTable, boundingBoxCenter, boundingBoxGeohashes, buildIndexRange, buildPokeFrames, buildReprojectionMigration, buildSeekBeforeWhere, buildSeekWhere, buildSettings, bumpCdcEpoch, clampPromotionThresholds, clearCapturedMail, clearQueueMessages, coerceAggregateNumber, compileWhereSql, computeRankPage, containsRelationPredicate, countLegacyRows, coveringGeohashes, createCompanionSync, createDependencyTracker, createFanoutCounters, createIndexSql, createReadFootprint, createRelayLink, createReplicaLink, createShardCtxDb, createSystemReader, decodeCursor, deleteGlobalShapeSnapshot, deleteGlobalShapeSnapshotsForConnection, depKey, diffExternalSource, diffGlobalMembership, distinctValues, encodeAggregateKey, encodeCursor, encodeGeohash, encodePartitionKey, encodeRowsPatch, ensureAuditTable, ensureMailTable, exportShardRows, exportShardTable, facetColumn, fanOutScalarCounts, findStorageReferences, foldAggregateTally, gateReplicaDispatch, geoTableName, guardWriter, handleReplicaControl, hasTrigger, haversineMeters, hydrateDocsById, importShardRows, indexKeysForRow, isDevEnvironment, isFtsAvailable, isLossyBody, isRelationPredicate, isSoftDeleted, isSourceDue, jsonPath, jsonPathSql, keysTouchRanges, liftSourceId, lintReadonlySql, listTables, matchesRankStaticWhere, matchesStaticWhere, materializeExternalRows, materializeExternalRowsIncremental, mergeChangedKeys, mergeWhere, migrateCdcLog, migrateCdcMeta, migrateClientWatermark, migrateGlobalShapeSnapshot, migrateIdempotency, migrateSearchState, minCdcSeq, nextPromotionState, normalizeCountArgument, normalizeIdStructurally, normalizeOrderKeys, normalizeSourceDocument, normalizeSourceValue, param, parseExportShardArgs, parseImportShardArgs, planAggregateLookup, pointInBoundingBox, projectColumns, pullExternalSourceIncrementalTick, pullExternalSourceTick, qualifiedJsonPath, qualifiedJsonPathSql, quoteIdentifier, rankKeyFromDocument as rankKeyFromDoc, rankTableName, reactiveCacheKey, readAggregateValue, readAuditLog, readBookmark, readCapturedMail, readCdcChanges, readCdcCursor, readCdcEpoch, readClientWatermark, readExternalSourceBaseline, readGlobalShapeSnapshot, readIdempotent, readMigrationStatus, readQueueMessageById, readQueueMessages, readSchemaHistory, readSchemaVersion, readSearchBackfillState, readTablePage, recordCapturedMail, recordChangedKeys, recordFanoutPass, recordQueueMessages, recordSchemaVersion, relationHooks, relayCountFor, renderSql, reprojectableFields, reprojectionMigrationId, reprojectionTables, resolveRankPartition, resolveRelationPredicates, resolveWith, rowToDocument, runDataMigration, runDrizzle, runExternalSourceTick, runReadonlySql, runRowValidators, runShardMigrations, runSocketPool, runSql, runTriggers, selectExpiredIds, selectExportTables, selectIndexForAggregate, selectIndexForCount, selectIndexForGroupBy, selectMatchingIds, selectShapeMemberIds, selectShapeRows, sendDeltaFrames, serializeSqlValue, shapeRoutingKey, softDeleteScope, sortColumnName, stableStringify, stableWireKey, subscriptionListDeltas, summarizeFanoutTopics, summarizeSubscriptions, tableColumns, tableFromDepKey, throwingScheduler, trimCdcChanges, trimIdempotent, tryRowToDocument, trySendFrame, validateImportRow, writeGlobalShapeSnapshot, writeIdempotent, writeSearchBackfillState, writeTouchesMemo };
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- import{exportShardRows as o,exportShardTable as a,importShardRows as t,parseExportShardArgs as n,parseImportShardArgs as s,selectExportTables as l,validateImportRow as i}from"./packem_shared/exportShardRows-Bbi_JGfn.mjs";import{AGGREGATE_SQL_FUNCTION as p,aggregateSqlFunction as d,matchesStaticWhere as c,normalizeCountArgument as S,throwingScheduler as u}from"./packem_shared/AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{aggregateTableName as f,coerceAggregateNumber as T,encodeAggregateKey as g,foldAggregateTally as E,readAggregateValue as A}from"./packem_shared/aggregateTableName-DV-K7ft2.mjs";import{CountRlsUnsupportedError as I,mergeWhere as C,planAggregateLookup as R,selectIndexForAggregate as _,selectIndexForCount as b,selectIndexForGroupBy as L}from"./packem_shared/CountRlsUnsupportedError-8BqPYQoP.mjs";import{AUDIT_LOG_TABLE as N,appendAuditEntry as M,ensureAuditTable as O,readAuditLog as F}from"./packem_shared/AUDIT_LOG_TABLE-C6nwXFPd.mjs";import{NotUniqueError as P,assertValidClientId as k,createShardCtxDb as G,normalizeIdStructurally as B}from"./packem_shared/NotUniqueError-BItFDsAw.mjs";import{backfillAggregateIndexes as w,backfillRankIndexes as K,backfillSearchIndexes as q,backfillSearchIndexesForTable as W}from"./packem_shared/backfillAggregateIndexes-tK0jrl43.mjs";import{CDC_LOG_TABLE as z,CDC_META_TABLE as H,appendCdcChange as V,applyCdcChanges as X,bumpCdcEpoch as j,migrateCdcLog as Q,migrateCdcMeta as Y,minCdcSeq as J,readCdcChanges as Z,readCdcCursor as $,readCdcEpoch as ee,trimCdcChanges as re}from"./packem_shared/CDC_LOG_TABLE-ZqcflEen.mjs";import{CLIENT_WATERMARK_TABLE as ae,advanceClientWatermark as te,migrateClientWatermark as ne,readClientWatermark as se}from"./packem_shared/CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{k as ie}from"./packem_shared/ctx-db-companions-CAJOSdN-.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as pe,deleteGlobalShapeSnapshot as de,deleteGlobalShapeSnapshotsForConnection as ce,migrateGlobalShapeSnapshot as Se,readGlobalShapeSnapshot as ue,writeGlobalShapeSnapshot as xe}from"./packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{IDEMPOTENCY_TABLE as Te,migrateIdempotency as ge,readIdempotent as Ee,trimIdempotent as Ae,writeIdempotent as he}from"./packem_shared/IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{computeRankPage as Ce,hydrateDocsById as Re}from"./packem_shared/computeRankPage-CRFgJbuz.mjs";import{SEARCH_STATE_TABLE as be,migrateSearchState as Le,readSearchBackfillState as ye,writeSearchBackfillState as Ne}from"./packem_shared/SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{selectShapeMemberIds as Oe,selectShapeRows as Fe}from"./packem_shared/selectShapeMemberIds-BdBcbrUP.mjs";import{DATA_MIGRATION_STATE_TABLE as Pe,readMigrationStatus as ke,runDataMigration as Ge}from"./packem_shared/DATA_MIGRATION_STATE_TABLE-BrpAGtXf.mjs";import{SCAN_DEP as Ue,createDependencyTracker as we,depKey as Ke,tableFromDepKey as qe}from"./packem_shared/SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as ve,runSql as ze}from"./packem_shared/runDrizzle-B6rnz3so.mjs";import{T as Ve,c as Xe,p as je,a as Qe,A as Ye,y as Je,h as Ze,C as $e,_ as er,N as rr,S as or,O as ar,E as tr,I as nr,D as sr}from"./packem_shared/do-sql-1Yi1_Yq0.mjs";import{param as ir,renderSql as mr}from"./packem_shared/param-B5lF5Jd9.mjs";import{diffExternalSource as dr}from"./packem_shared/diffExternalSource-DMpkJta1.mjs";import{liftSourceId as Sr,normalizeSourceDocument as ur,normalizeSourceValue as xr}from"./packem_shared/liftSourceId-DApAbu7Q.mjs";import{materializeExternalRows as Tr,materializeExternalRowsIncremental as gr,readExternalSourceBaseline as Er,runExternalSourceTick as Ar}from"./packem_shared/materializeExternalRows-DcCENzpV.mjs";import{isSoftDeleted as Ir,isSourceDue as Cr,pullExternalSourceIncrementalTick as Rr,pullExternalSourceTick as _r}from"./packem_shared/isSoftDeleted-Bo-y3DOe.mjs";import{GEO_DEFAULT_PRECISION as Lr,boundingBoxCenter as yr,boundingBoxGeohashes as Nr,coveringGeohashes as Mr,encodeGeohash as Or,haversineMeters as Fr,pointInBoundingBox as Dr}from"./packem_shared/GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{ADMIN_FUNCTIONS as kr,ADMIN_FUNCTION_PREFIX as Gr,DEFAULT_FANOUT_TOPIC_LIMIT as Br,FLAGS_FUNCTION_PREFIX as Ur,MAX_PAGE_SIZE as wr,RELATION_FUNCTION_PREFIX as Kr,createFanoutCounters as qr,facetColumn as Wr,findStorageReferences as vr,listTables as zr,readTablePage as Hr,recordFanoutPass as Vr,selectMatchingIds as Xr,summarizeFanoutTopics as jr,summarizeSubscriptions as Qr}from"./packem_shared/ADMIN_FUNCTIONS-OnYxyTXW.mjs";import{MAIL_RETENTION as Jr,MAIL_TABLE as Zr,clearCapturedMail as $r,ensureMailTable as eo,readCapturedMail as ro,recordCapturedMail as oo}from"./packem_shared/MAIL_RETENTION-BefR9Sei.mjs";import{NotFoundError as to}from"./packem_shared/NotFoundError-BhF7FeFr.mjs";import{armRestore as so,readBookmark as lo}from"./packem_shared/armRestore-BNzdvQ_o.mjs";import{applySelect as mo,buildSeekBeforeWhere as po,buildSeekWhere as co,decodeCursor as So,encodeCursor as uo,normalizeOrderKeys as xo,softDeleteScope as fo}from"./packem_shared/applySelect-i17LYhIU.mjs";import{QUEUE_TABLE as go,clearQueueMessages as Eo,isLossyBody as Ao,readQueueMessageById as ho,readQueueMessages as Io,recordQueueMessages as Co}from"./packem_shared/QUEUE_TABLE-DgBqWrXX.mjs";import{RANK_TIEBREAK as _o,encodePartitionKey as bo,matchesRankStaticWhere as Lo,rankKeyFromDoc as yo,rankTableName as No,resolveRankPartition as Mo,sortColumnName as Oo}from"./packem_shared/RANK_TIEBREAK-DYDRmLKH.mjs";import{ReactiveCache as Do,reactiveCacheKey as Po}from"./packem_shared/ReactiveCache-Cu8IfE1M.mjs";import{createReadFootprint as Go}from"./packem_shared/createReadFootprint-DIrrxRTE.mjs";import{buildIndexRange as Uo,indexKeysForRow as wo,keysTouchRanges as Ko}from"./packem_shared/buildIndexRange-DFsdtPjD.mjs";import{DEFAULT_MAX_RELATION_KEYS as Wo,assertFlatPredicate as vo,assertShapeShardable as zo,containsRelationPredicate as Ho,isRelationPredicate as Vo,resolveRelationPredicates as Xo}from"./packem_shared/DEFAULT_MAX_RELATION_KEYS-sPcXaWFW.mjs";import{applyOnDelete as Qo,distinctValues as Yo,fanOutScalarCounts as Jo,relationHooks as Zo,resolveWith as $o,runRowValidators as ea}from"./packem_shared/applyOnDelete-BB6tr2G0.mjs";import{DEFAULT_PROMOTION_THRESHOLDS as oa,clampPromotionThresholds as aa,nextPromotionState as ta,relayCountFor as na,shapeRoutingKey as sa}from"./packem_shared/DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";import{DEFAULT_MAX_RELAYS as ia,OwnerRelay as ma,RelayMember as pa,createRelayLink as da}from"./packem_shared/DEFAULT_MAX_RELAYS-CPBmX1FO.mjs";import{buildReprojectionMigration as Sa,countLegacyRows as ua,reprojectableFields as xa,reprojectionTables as fa}from"./packem_shared/buildReprojectionMigration-Ctl4r84d.mjs";import{RLS_UNWRAP_SYMBOL as ga,RlsRequiredError as Ea,guardWriter as Aa}from"./packem_shared/RLS_UNWRAP_SYMBOL-DcqORh2s.mjs";import{SCHEMA_HISTORY_MAX_VERSIONS as Ia,readSchemaHistory as Ca,readSchemaVersion as Ra,recordSchemaVersion as _a}from"./packem_shared/SCHEMA_HISTORY_MAX_VERSIONS-BEU0CuW5.mjs";import{serializeSqlValue as La}from"./packem_shared/serializeSqlValue-BR4UOWoP.mjs";import{buildSettings as Na,isDevEnvironment as Ma}from"./packem_shared/buildSettings-COIJsw7a.mjs";import{buildPokeFrames as Fa,diffGlobalMembership as Da,encodeRowsPatch as Pa,projectColumns as ka}from"./packem_shared/buildPokeFrames-CqxaN8_H.mjs";import{ShardRunner as Ba}from"./packem_shared/ShardRunner-DIqVdWtk.mjs";import{runSocketPool as wa}from"./packem_shared/runSocketPool-DPQLVyWF.mjs";import{MAX_SQL_ROWS as qa,assertReadonly as Wa,lintReadonlySql as va,runReadonlySql as za}from"./packem_shared/MAX_SQL_ROWS-nMwkxv5f.mjs";import{awaitWsDrain as Va,sendDeltaFrames as Xa,subscriptionListDeltas as ja,trySendFrame as Qa}from"./packem_shared/awaitWsDrain-Bp2jKzIb.mjs";import{mergeChangedKeys as Ja,recordChangedKeys as Za,writeTouchesMemo as $a}from"./packem_shared/mergeChangedKeys-BXtUgIPW.mjs";import{createSystemReader as rt}from"./packem_shared/createSystemReader-DcDcrtM3.mjs";import{ConflictError as at}from"./packem_shared/ConflictError-C8GtJmjS.mjs";import{DEFAULT_TRANSACTION_LIMITS as nt,TransactionHeadroomTracker as st}from"./packem_shared/DEFAULT_TRANSACTION_LIMITS-q7ouI3i0.mjs";import{hasTrigger as it,runTriggers as mt}from"./packem_shared/hasTrigger-CbkOHExZ.mjs";import{selectExpiredIds as dt}from"./packem_shared/selectExpiredIds-C6nQK7E2.mjs";import{compileWhereSql as St}from"./packem_shared/compileWhereSql-B4rPariq.mjs";import{RELATION_EXISTS_KEY as xt}from"./packem_shared/RELATION_EXISTS_KEY-BaqSIFU1.mjs";import{REPROJECTION_MIGRATION_PREFIX as Tt,reprojectionMigrationId as gt}from"./packem_shared/REPROJECTION_MIGRATION_PREFIX-D2dltRFC.mjs";import{quoteIdentifier as At}from"./packem_shared/quoteIdentifier-CObIFRhb.mjs";import{runShardMigrations as It}from"./packem_shared/runShardMigrations-n2dKcH5E.mjs";import{stableStringify as Rt}from"./packem_shared/stableStringify-BjLh4gvA.mjs";import{stableWireKey as bt}from"./packem_shared/stableWireKey-l3cjIt-9.mjs";export{kr as ADMIN_FUNCTIONS,Gr as ADMIN_FUNCTION_PREFIX,p as AGGREGATE_SQL_FUNCTION,Ve as AGG_COUNT,Xe as AGG_KEY,je as AGG_VALUE,N as AUDIT_LOG_TABLE,z as CDC_LOG_TABLE,H as CDC_META_TABLE,ae as CLIENT_WATERMARK_TABLE,at as ConflictError,I as CountRlsUnsupportedError,Pe as DATA_MIGRATION_STATE_TABLE,Br as DEFAULT_FANOUT_TOPIC_LIMIT,Wo as DEFAULT_MAX_RELATION_KEYS,ia as DEFAULT_MAX_RELAYS,oa as DEFAULT_PROMOTION_THRESHOLDS,nt as DEFAULT_TRANSACTION_LIMITS,Qe as DOC_COLUMN,Ur as FLAGS_FUNCTION_PREFIX,Lr as GEO_DEFAULT_PRECISION,pe as GLOBAL_SHAPE_SNAPSHOT_TABLE,Te as IDEMPOTENCY_TABLE,Jr as MAIL_RETENTION,Zr as MAIL_TABLE,wr as MAX_PAGE_SIZE,qa as MAX_SQL_ROWS,to as NotFoundError,P as NotUniqueError,ma as OwnerRelay,go as QUEUE_TABLE,_o as RANK_TIEBREAK,xt as RELATION_EXISTS_KEY,Kr as RELATION_FUNCTION_PREFIX,Tt as REPROJECTION_MIGRATION_PREFIX,ga as RLS_UNWRAP_SYMBOL,Do as ReactiveCache,pa as RelayMember,Ea as RlsRequiredError,Ue as SCAN_DEP,Ia as SCHEMA_HISTORY_MAX_VERSIONS,be as SEARCH_STATE_TABLE,Ba as ShardRunner,st as TransactionHeadroomTracker,te as advanceClientWatermark,Ye as aggUpsertSql,d as aggregateSqlFunction,f as aggregateTableName,M as appendAuditEntry,V as appendCdcChange,X as applyCdcChanges,Qo as applyOnDelete,mo as applySelect,so as armRestore,vo as assertFlatPredicate,Wa as assertReadonly,zo as assertShapeShardable,k as assertValidClientId,Va as awaitWsDrain,w as backfillAggregateIndexes,K as backfillRankIndexes,q as backfillSearchIndexes,W as backfillSearchIndexesForTable,yr as boundingBoxCenter,Nr as boundingBoxGeohashes,Uo as buildIndexRange,Fa as buildPokeFrames,Sa as buildReprojectionMigration,po as buildSeekBeforeWhere,co as buildSeekWhere,Na as buildSettings,j as bumpCdcEpoch,aa as clampPromotionThresholds,$r as clearCapturedMail,Eo as clearQueueMessages,T as coerceAggregateNumber,St as compileWhereSql,Ce as computeRankPage,Ho as containsRelationPredicate,ua as countLegacyRows,Mr as coveringGeohashes,ie as createCompanionSync,we as createDependencyTracker,qr as createFanoutCounters,Je as createIndexSql,Go as createReadFootprint,da as createRelayLink,G as createShardCtxDb,rt as createSystemReader,So as decodeCursor,de as deleteGlobalShapeSnapshot,ce as deleteGlobalShapeSnapshotsForConnection,Ke as depKey,dr as diffExternalSource,Da as diffGlobalMembership,Yo as distinctValues,g as encodeAggregateKey,uo as encodeCursor,Or as encodeGeohash,bo as encodePartitionKey,Pa as encodeRowsPatch,O as ensureAuditTable,eo as ensureMailTable,o as exportShardRows,a as exportShardTable,Wr as facetColumn,Jo as fanOutScalarCounts,vr as findStorageReferences,E as foldAggregateTally,Ze as geoTableName,Aa as guardWriter,it as hasTrigger,Fr as haversineMeters,Re as hydrateDocsById,t as importShardRows,wo as indexKeysForRow,Ma as isDevEnvironment,$e as isFtsAvailable,Ao as isLossyBody,Vo as isRelationPredicate,Ir as isSoftDeleted,Cr as isSourceDue,er as jsonPath,rr as jsonPathSql,Ko as keysTouchRanges,Sr as liftSourceId,va as lintReadonlySql,zr as listTables,Lo as matchesRankStaticWhere,c as matchesStaticWhere,Tr as materializeExternalRows,gr as materializeExternalRowsIncremental,Ja as mergeChangedKeys,C as mergeWhere,Q as migrateCdcLog,Y as migrateCdcMeta,ne as migrateClientWatermark,Se as migrateGlobalShapeSnapshot,ge as migrateIdempotency,Le as migrateSearchState,J as minCdcSeq,ta as nextPromotionState,S as normalizeCountArgument,B as normalizeIdStructurally,xo as normalizeOrderKeys,ur as normalizeSourceDocument,xr as normalizeSourceValue,ir as param,n as parseExportShardArgs,s as parseImportShardArgs,R as planAggregateLookup,Dr as pointInBoundingBox,ka as projectColumns,Rr as pullExternalSourceIncrementalTick,_r as pullExternalSourceTick,or as qualifiedJsonPath,ar as qualifiedJsonPathSql,At as quoteIdentifier,yo as rankKeyFromDoc,No as rankTableName,Po as reactiveCacheKey,A as readAggregateValue,F as readAuditLog,lo as readBookmark,ro as readCapturedMail,Z as readCdcChanges,$ as readCdcCursor,ee as readCdcEpoch,se as readClientWatermark,Er as readExternalSourceBaseline,ue as readGlobalShapeSnapshot,Ee as readIdempotent,ke as readMigrationStatus,ho as readQueueMessageById,Io as readQueueMessages,Ca as readSchemaHistory,Ra as readSchemaVersion,ye as readSearchBackfillState,Hr as readTablePage,oo as recordCapturedMail,Za as recordChangedKeys,Vr as recordFanoutPass,Co as recordQueueMessages,_a as recordSchemaVersion,Zo as relationHooks,na as relayCountFor,mr as renderSql,xa as reprojectableFields,gt as reprojectionMigrationId,fa as reprojectionTables,Mo as resolveRankPartition,Xo as resolveRelationPredicates,$o as resolveWith,tr as rowToDocument,Ge as runDataMigration,ve as runDrizzle,Ar as runExternalSourceTick,za as runReadonlySql,ea as runRowValidators,It as runShardMigrations,wa as runSocketPool,ze as runSql,mt as runTriggers,dt as selectExpiredIds,l as selectExportTables,_ as selectIndexForAggregate,b as selectIndexForCount,L as selectIndexForGroupBy,Xr as selectMatchingIds,Oe as selectShapeMemberIds,Fe as selectShapeRows,Xa as sendDeltaFrames,La as serializeSqlValue,sa as shapeRoutingKey,fo as softDeleteScope,Oo as sortColumnName,Rt as stableStringify,bt as stableWireKey,ja as subscriptionListDeltas,jr as summarizeFanoutTopics,Qr as summarizeSubscriptions,nr as tableColumns,qe as tableFromDepKey,u as throwingScheduler,re as trimCdcChanges,Ae as trimIdempotent,sr as tryRowToDocument,Qa as trySendFrame,i as validateImportRow,xe as writeGlobalShapeSnapshot,he as writeIdempotent,Ne as writeSearchBackfillState,$a as writeTouchesMemo};
1
+ import{exportShardRows as o,exportShardTable as a,importShardRows as t,parseExportShardArgs as n,parseImportShardArgs as s,selectExportTables as l,validateImportRow as i}from"./packem_shared/exportShardRows-Bbi_JGfn.mjs";import{AGGREGATE_SQL_FUNCTION as m,aggregateSqlFunction as d,matchesStaticWhere as c,normalizeCountArgument as S,throwingScheduler as u}from"./packem_shared/AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{aggregateTableName as f,coerceAggregateNumber as T,encodeAggregateKey as g,foldAggregateTally as E,readAggregateValue as h}from"./packem_shared/aggregateTableName-DgYMC5tr.mjs";import{CountRlsUnsupportedError as I,mergeWhere as R,planAggregateLookup as C,selectIndexForAggregate as _,selectIndexForCount as L,selectIndexForGroupBy as b}from"./packem_shared/CountRlsUnsupportedError-8BqPYQoP.mjs";import{AUDIT_LOG_TABLE as N,appendAuditEntry as M,ensureAuditTable as O,readAuditLog as F}from"./packem_shared/AUDIT_LOG_TABLE-C6nwXFPd.mjs";import{NotUniqueError as P,assertValidClientId as k,createShardCtxDb as G,normalizeIdStructurally as B}from"./packem_shared/NotUniqueError-CVHdtVw6.mjs";import{backfillAggregateIndexes as w,backfillRankIndexes as K,backfillSearchIndexes as q,backfillSearchIndexesForTable as W}from"./packem_shared/backfillAggregateIndexes-DmqOHg0U.mjs";import{CDC_LOG_TABLE as z,CDC_META_TABLE as H,appendCdcChange as V,applyCdcChanges as X,bumpCdcEpoch as j,migrateCdcLog as Q,migrateCdcMeta as Y,minCdcSeq as J,readCdcChanges as Z,readCdcCursor as $,readCdcEpoch as ee,trimCdcChanges as re}from"./packem_shared/CDC_LOG_TABLE-ZqcflEen.mjs";import{CLIENT_WATERMARK_TABLE as ae,advanceClientWatermark as te,migrateClientWatermark as ne,readClientWatermark as se}from"./packem_shared/CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{w as ie}from"./packem_shared/ctx-db-companions-BTi8DLUl.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as me,deleteGlobalShapeSnapshot as de,deleteGlobalShapeSnapshotsForConnection as ce,migrateGlobalShapeSnapshot as Se,readGlobalShapeSnapshot as ue,writeGlobalShapeSnapshot as xe}from"./packem_shared/GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{IDEMPOTENCY_TABLE as Te,migrateIdempotency as ge,readIdempotent as Ee,trimIdempotent as he,writeIdempotent as Ae}from"./packem_shared/IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{computeRankPage as Re,hydrateDocsById as Ce}from"./packem_shared/computeRankPage-QK8SeTZ-.mjs";import{SEARCH_STATE_TABLE as Le,migrateSearchState as be,readSearchBackfillState as ye,writeSearchBackfillState as Ne}from"./packem_shared/SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{selectShapeMemberIds as Oe,selectShapeRows as Fe}from"./packem_shared/selectShapeMemberIds-BdBcbrUP.mjs";import{DATA_MIGRATION_STATE_TABLE as Pe,readMigrationStatus as ke,runDataMigration as Ge}from"./packem_shared/DATA_MIGRATION_STATE_TABLE-BrpAGtXf.mjs";import{SCAN_DEP as Ue,createDependencyTracker as we,depKey as Ke,tableFromDepKey as qe}from"./packem_shared/SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as ve,runSql as ze}from"./packem_shared/runDrizzle-B6rnz3so.mjs";import{T as Ve,c as Xe,p as je,a as Qe,A as Ye,y as Je,h as Ze,C as $e,_ as er,N as rr,S as or,O as ar,E as tr,I as nr,D as sr}from"./packem_shared/do-sql-1Yi1_Yq0.mjs";import{param as ir,renderSql as pr}from"./packem_shared/param-B5lF5Jd9.mjs";import{diffExternalSource as dr}from"./packem_shared/diffExternalSource-DMpkJta1.mjs";import{liftSourceId as Sr,normalizeSourceDocument as ur,normalizeSourceValue as xr}from"./packem_shared/liftSourceId-DApAbu7Q.mjs";import{materializeExternalRows as Tr,materializeExternalRowsIncremental as gr,readExternalSourceBaseline as Er,runExternalSourceTick as hr}from"./packem_shared/materializeExternalRows-DcCENzpV.mjs";import{isSoftDeleted as Ir,isSourceDue as Rr,pullExternalSourceIncrementalTick as Cr,pullExternalSourceTick as _r}from"./packem_shared/isSoftDeleted-Bo-y3DOe.mjs";import{GEO_DEFAULT_PRECISION as br,boundingBoxCenter as yr,boundingBoxGeohashes as Nr,coveringGeohashes as Mr,encodeGeohash as Or,haversineMeters as Fr,pointInBoundingBox as Dr}from"./packem_shared/GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{ADMIN_FUNCTIONS as kr,ADMIN_FUNCTION_PREFIX as Gr,DEFAULT_FANOUT_TOPIC_LIMIT as Br,FLAGS_FUNCTION_PREFIX as Ur,MAX_PAGE_SIZE as wr,RELATION_FUNCTION_PREFIX as Kr,createFanoutCounters as qr,facetColumn as Wr,findStorageReferences as vr,listTables as zr,readTablePage as Hr,recordFanoutPass as Vr,selectMatchingIds as Xr,summarizeFanoutTopics as jr,summarizeSubscriptions as Qr}from"./packem_shared/ADMIN_FUNCTIONS-OnYxyTXW.mjs";import{MAIL_RETENTION as Jr,MAIL_TABLE as Zr,clearCapturedMail as $r,ensureMailTable as eo,readCapturedMail as ro,recordCapturedMail as oo}from"./packem_shared/MAIL_RETENTION-BefR9Sei.mjs";import{NotFoundError as to}from"./packem_shared/NotFoundError-BhF7FeFr.mjs";import{armRestore as so,readBookmark as lo}from"./packem_shared/armRestore-BNzdvQ_o.mjs";import{applySelect as po,buildSeekBeforeWhere as mo,buildSeekWhere as co,decodeCursor as So,encodeCursor as uo,normalizeOrderKeys as xo,softDeleteScope as fo}from"./packem_shared/applySelect-UY-o13Ia.mjs";import{QUEUE_TABLE as go,clearQueueMessages as Eo,isLossyBody as ho,readQueueMessageById as Ao,readQueueMessages as Io,recordQueueMessages as Ro}from"./packem_shared/QUEUE_TABLE-DgBqWrXX.mjs";import{RANK_TIEBREAK as _o,encodePartitionKey as Lo,matchesRankStaticWhere as bo,rankKeyFromDoc as yo,rankTableName as No,resolveRankPartition as Mo,sortColumnName as Oo}from"./packem_shared/RANK_TIEBREAK-DDtST3gN.mjs";import{ReactiveCache as Do,reactiveCacheKey as Po}from"./packem_shared/ReactiveCache-Cu8IfE1M.mjs";import{createReadFootprint as Go}from"./packem_shared/createReadFootprint-DIrrxRTE.mjs";import{buildIndexRange as Uo,indexKeysForRow as wo,keysTouchRanges as Ko}from"./packem_shared/buildIndexRange-DFsdtPjD.mjs";import{DEFAULT_MAX_RELATION_KEYS as Wo,assertFlatPredicate as vo,assertShapeShardable as zo,containsRelationPredicate as Ho,isRelationPredicate as Vo,resolveRelationPredicates as Xo}from"./packem_shared/DEFAULT_MAX_RELATION_KEYS-DjKka36Z.mjs";import{applyOnDelete as Qo,distinctValues as Yo,fanOutScalarCounts as Jo,relationHooks as Zo,resolveWith as $o,runRowValidators as ea}from"./packem_shared/applyOnDelete-By23GK-k.mjs";import{DEFAULT_PROMOTION_THRESHOLDS as oa,clampPromotionThresholds as aa,nextPromotionState as ta,relayCountFor as na,shapeRoutingKey as sa}from"./packem_shared/DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";import{DEFAULT_MAX_RELAYS as ia,OwnerRelay as pa,RelayMember as ma,createRelayLink as da}from"./packem_shared/DEFAULT_MAX_RELAYS-B19vrJxP.mjs";import{createReplicaLink as Sa,gateReplicaDispatch as ua,handleReplicaControl as xa}from"./packem_shared/createReplicaLink-BMNW0SX6.mjs";import{buildReprojectionMigration as Ta,countLegacyRows as ga,reprojectableFields as Ea,reprojectionTables as ha}from"./packem_shared/buildReprojectionMigration-Ctl4r84d.mjs";import{RLS_UNWRAP_SYMBOL as Ia,RlsRequiredError as Ra,guardWriter as Ca}from"./packem_shared/RLS_UNWRAP_SYMBOL-DcqORh2s.mjs";import{SCHEMA_HISTORY_MAX_VERSIONS as La,readSchemaHistory as ba,readSchemaVersion as ya,recordSchemaVersion as Na}from"./packem_shared/SCHEMA_HISTORY_MAX_VERSIONS-BEU0CuW5.mjs";import{serializeSqlValue as Oa}from"./packem_shared/serializeSqlValue-BR4UOWoP.mjs";import{buildSettings as Da,isDevEnvironment as Pa}from"./packem_shared/buildSettings-COIJsw7a.mjs";import{buildPokeFrames as Ga,diffGlobalMembership as Ba,encodeRowsPatch as Ua,projectColumns as wa}from"./packem_shared/buildPokeFrames-CqxaN8_H.mjs";import{ShardRunner as qa}from"./packem_shared/ShardRunner-DIqVdWtk.mjs";import{runSocketPool as va}from"./packem_shared/runSocketPool-DPQLVyWF.mjs";import{MAX_SQL_ROWS as Ha,assertReadonly as Va,lintReadonlySql as Xa,runReadonlySql as ja}from"./packem_shared/MAX_SQL_ROWS-nMwkxv5f.mjs";import{awaitWsDrain as Ya,sendDeltaFrames as Ja,subscriptionListDeltas as Za,trySendFrame as $a}from"./packem_shared/awaitWsDrain-Bp2jKzIb.mjs";import{mergeChangedKeys as rt,recordChangedKeys as ot,writeTouchesMemo as at}from"./packem_shared/mergeChangedKeys-BXtUgIPW.mjs";import{createSystemReader as nt}from"./packem_shared/createSystemReader-DcDcrtM3.mjs";import{ConflictError as lt}from"./packem_shared/ConflictError-C8GtJmjS.mjs";import{DEFAULT_TRANSACTION_LIMITS as pt,TransactionHeadroomTracker as mt}from"./packem_shared/DEFAULT_TRANSACTION_LIMITS-q7ouI3i0.mjs";import{hasTrigger as ct,runTriggers as St}from"./packem_shared/hasTrigger-CbkOHExZ.mjs";import{selectExpiredIds as xt}from"./packem_shared/selectExpiredIds-C6nQK7E2.mjs";import{compileWhereSql as Tt}from"./packem_shared/compileWhereSql-B4rPariq.mjs";import{RELATION_EXISTS_KEY as Et}from"./packem_shared/RELATION_EXISTS_KEY-BaqSIFU1.mjs";import{REPROJECTION_MIGRATION_PREFIX as At,reprojectionMigrationId as It}from"./packem_shared/REPROJECTION_MIGRATION_PREFIX-D2dltRFC.mjs";import{quoteIdentifier as Ct}from"./packem_shared/quoteIdentifier-CObIFRhb.mjs";import{runShardMigrations as Lt}from"./packem_shared/runShardMigrations-BqO6HPtX.mjs";import{stableStringify as yt}from"./packem_shared/stableStringify-BjLh4gvA.mjs";import{stableWireKey as Mt}from"./packem_shared/stableWireKey-l3cjIt-9.mjs";export{kr as ADMIN_FUNCTIONS,Gr as ADMIN_FUNCTION_PREFIX,m as AGGREGATE_SQL_FUNCTION,Ve as AGG_COUNT,Xe as AGG_KEY,je as AGG_VALUE,N as AUDIT_LOG_TABLE,z as CDC_LOG_TABLE,H as CDC_META_TABLE,ae as CLIENT_WATERMARK_TABLE,lt as ConflictError,I as CountRlsUnsupportedError,Pe as DATA_MIGRATION_STATE_TABLE,Br as DEFAULT_FANOUT_TOPIC_LIMIT,Wo as DEFAULT_MAX_RELATION_KEYS,ia as DEFAULT_MAX_RELAYS,oa as DEFAULT_PROMOTION_THRESHOLDS,pt as DEFAULT_TRANSACTION_LIMITS,Qe as DOC_COLUMN,Ur as FLAGS_FUNCTION_PREFIX,br as GEO_DEFAULT_PRECISION,me as GLOBAL_SHAPE_SNAPSHOT_TABLE,Te as IDEMPOTENCY_TABLE,Jr as MAIL_RETENTION,Zr as MAIL_TABLE,wr as MAX_PAGE_SIZE,Ha as MAX_SQL_ROWS,to as NotFoundError,P as NotUniqueError,pa as OwnerRelay,go as QUEUE_TABLE,_o as RANK_TIEBREAK,Et as RELATION_EXISTS_KEY,Kr as RELATION_FUNCTION_PREFIX,At as REPROJECTION_MIGRATION_PREFIX,Ia as RLS_UNWRAP_SYMBOL,Do as ReactiveCache,ma as RelayMember,Ra as RlsRequiredError,Ue as SCAN_DEP,La as SCHEMA_HISTORY_MAX_VERSIONS,Le as SEARCH_STATE_TABLE,qa as ShardRunner,mt as TransactionHeadroomTracker,te as advanceClientWatermark,Ye as aggUpsertSql,d as aggregateSqlFunction,f as aggregateTableName,M as appendAuditEntry,V as appendCdcChange,X as applyCdcChanges,Qo as applyOnDelete,po as applySelect,so as armRestore,vo as assertFlatPredicate,Va as assertReadonly,zo as assertShapeShardable,k as assertValidClientId,Ya as awaitWsDrain,w as backfillAggregateIndexes,K as backfillRankIndexes,q as backfillSearchIndexes,W as backfillSearchIndexesForTable,yr as boundingBoxCenter,Nr as boundingBoxGeohashes,Uo as buildIndexRange,Ga as buildPokeFrames,Ta as buildReprojectionMigration,mo as buildSeekBeforeWhere,co as buildSeekWhere,Da as buildSettings,j as bumpCdcEpoch,aa as clampPromotionThresholds,$r as clearCapturedMail,Eo as clearQueueMessages,T as coerceAggregateNumber,Tt as compileWhereSql,Re as computeRankPage,Ho as containsRelationPredicate,ga as countLegacyRows,Mr as coveringGeohashes,ie as createCompanionSync,we as createDependencyTracker,qr as createFanoutCounters,Je as createIndexSql,Go as createReadFootprint,da as createRelayLink,Sa as createReplicaLink,G as createShardCtxDb,nt as createSystemReader,So as decodeCursor,de as deleteGlobalShapeSnapshot,ce as deleteGlobalShapeSnapshotsForConnection,Ke as depKey,dr as diffExternalSource,Ba as diffGlobalMembership,Yo as distinctValues,g as encodeAggregateKey,uo as encodeCursor,Or as encodeGeohash,Lo as encodePartitionKey,Ua as encodeRowsPatch,O as ensureAuditTable,eo as ensureMailTable,o as exportShardRows,a as exportShardTable,Wr as facetColumn,Jo as fanOutScalarCounts,vr as findStorageReferences,E as foldAggregateTally,ua as gateReplicaDispatch,Ze as geoTableName,Ca as guardWriter,xa as handleReplicaControl,ct as hasTrigger,Fr as haversineMeters,Ce as hydrateDocsById,t as importShardRows,wo as indexKeysForRow,Pa as isDevEnvironment,$e as isFtsAvailable,ho as isLossyBody,Vo as isRelationPredicate,Ir as isSoftDeleted,Rr as isSourceDue,er as jsonPath,rr as jsonPathSql,Ko as keysTouchRanges,Sr as liftSourceId,Xa as lintReadonlySql,zr as listTables,bo as matchesRankStaticWhere,c as matchesStaticWhere,Tr as materializeExternalRows,gr as materializeExternalRowsIncremental,rt as mergeChangedKeys,R as mergeWhere,Q as migrateCdcLog,Y as migrateCdcMeta,ne as migrateClientWatermark,Se as migrateGlobalShapeSnapshot,ge as migrateIdempotency,be as migrateSearchState,J as minCdcSeq,ta as nextPromotionState,S as normalizeCountArgument,B as normalizeIdStructurally,xo as normalizeOrderKeys,ur as normalizeSourceDocument,xr as normalizeSourceValue,ir as param,n as parseExportShardArgs,s as parseImportShardArgs,C as planAggregateLookup,Dr as pointInBoundingBox,wa as projectColumns,Cr as pullExternalSourceIncrementalTick,_r as pullExternalSourceTick,or as qualifiedJsonPath,ar as qualifiedJsonPathSql,Ct as quoteIdentifier,yo as rankKeyFromDoc,No as rankTableName,Po as reactiveCacheKey,h as readAggregateValue,F as readAuditLog,lo as readBookmark,ro as readCapturedMail,Z as readCdcChanges,$ as readCdcCursor,ee as readCdcEpoch,se as readClientWatermark,Er as readExternalSourceBaseline,ue as readGlobalShapeSnapshot,Ee as readIdempotent,ke as readMigrationStatus,Ao as readQueueMessageById,Io as readQueueMessages,ba as readSchemaHistory,ya as readSchemaVersion,ye as readSearchBackfillState,Hr as readTablePage,oo as recordCapturedMail,ot as recordChangedKeys,Vr as recordFanoutPass,Ro as recordQueueMessages,Na as recordSchemaVersion,Zo as relationHooks,na as relayCountFor,pr as renderSql,Ea as reprojectableFields,It as reprojectionMigrationId,ha as reprojectionTables,Mo as resolveRankPartition,Xo as resolveRelationPredicates,$o as resolveWith,tr as rowToDocument,Ge as runDataMigration,ve as runDrizzle,hr as runExternalSourceTick,ja as runReadonlySql,ea as runRowValidators,Lt as runShardMigrations,va as runSocketPool,ze as runSql,St as runTriggers,xt as selectExpiredIds,l as selectExportTables,_ as selectIndexForAggregate,L as selectIndexForCount,b as selectIndexForGroupBy,Xr as selectMatchingIds,Oe as selectShapeMemberIds,Fe as selectShapeRows,Ja as sendDeltaFrames,Oa as serializeSqlValue,sa as shapeRoutingKey,fo as softDeleteScope,Oo as sortColumnName,yt as stableStringify,Mt as stableWireKey,Za as subscriptionListDeltas,jr as summarizeFanoutTopics,Qr as summarizeSubscriptions,nr as tableColumns,qe as tableFromDepKey,u as throwingScheduler,re as trimCdcChanges,he as trimIdempotent,sr as tryRowToDocument,$a as trySendFrame,i as validateImportRow,xe as writeGlobalShapeSnapshot,Ae as writeIdempotent,Ne as writeSearchBackfillState,at as writeTouchesMemo};
@@ -1 +1 @@
1
- import{LunoraError as d}from"@lunora/errors";import{distinctValues as R}from"./applyOnDelete-BB6tr2G0.mjs";import{RELATION_EXISTS_KEY as k}from"./RELATION_EXISTS_KEY-BaqSIFU1.mjs";const y={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}},A=new Set(Object.keys(y)),w=e=>{const t=y[e];if(!t)throw new d("INTERNAL",`unknown relation operator "${e}"`);return t},E=e=>e.kind==="one"?{clause:e.field,project:e.references}:{clause:e.references,project:e.field},j=5e3,h=Symbol("relation-key-overflow"),b=e=>Array.isArray(e)?e.map(t=>t??{}):[],N=e=>{if(e.length===1){const[t]=e;return t??{}}return e.length===0?{}:{AND:e}},p=e=>{if(e===null||typeof e!="object"||Array.isArray(e))return!1;const t=Object.keys(e);return t.length>0&&t.every(n=>A.has(n))},u=(e,t,n)=>{const a=t.tables[n]?.relationMap??{};return Object.keys(e).some(r=>{const s=e[r];return r==="AND"||r==="OR"?b(s).some(o=>u(o,t,n)):r==="NOT"?u(s??{},t,n):!!a[r]&&p(s)})},M=(e,t,n,a)=>{if(e&&u(e,t,n))throw new d("INTERNAL",`relation-crossing predicates are not supported in ${a}() — use them in findMany/findFirst or an RLS read policy`)},S=async(e,t,n,a,r)=>{const s=await c(t,e.table,a),{page:o}=await a.fetcher(e.table,{baseWhere:a.relationBaseWhere?.(e.table),relationBaseWhere:a.relationBaseWhere,where:s}),i=R(o,n);if(i.length>a.maxRelationKeys){if(r)return h;throw new d("INTERNAL",`relation predicate on "${e.table}" matched ${String(i.length)} rows, exceeding the ${String(a.maxRelationKeys)}-key limit; narrow the predicate (a same-shard EXISTS push-down lifts this cap)`)}return i},T=async(e,t,n,a,r)=>{const s=w(e),{clause:o,project:i}=E(t),l=await S(t,s.negateChild?{NOT:n}:n,i,a,r);return l===h?h:s.negated?s.nullDisjunct?{OR:[{[o]:{notIn:l}},{[o]:{isNull:!0}}]}:{[o]:{notIn:l}}:{[o]:{in:l}}},g=async(e,t,n,a,r)=>{const s=w(e),o=r.relationBaseWhere?.(t.table),i=s.negateChild?{NOT:n}:n,l={childWhere:await c(o?{AND:[o,i]}:i,t.table,r),negated:s.negated,parentTable:a,relation:t};return{[k]:l}},$=(e,t,n)=>{const a=y[e];if(a&&a.kind!==n.kind)throw new d("INTERNAL",`relation operator "${e}" requires a to-${a.kind} relation, but "${t}" is to-${n.kind}`)},x=async(e,t,n,a,r)=>{const s=[];for(const o of Object.keys(n)){$(o,e,t);const i=n[o]??{},l=r.canPushExists?.(t)??!1;if(l&&r.existsPushMode==="always"){s.push(await g(o,t,i,a,r));continue}const m=await T(o,t,i,r,l);m===h?s.push(await g(o,t,i,a,r)):s.push(m)}return N(s)},D=async(e,t,n,a)=>{if(e==="AND"||e==="OR"){const s=[];for(const o of b(t))s.push(await c(o,n,a));return{[e]:s}}if(e==="NOT")return{NOT:await c(t??{},n,a)};const r=a.schema.tables[n]?.relationMap?.[e];return r&&p(t)?x(e,r,t,n,a):{[e]:t}},c=async(e,t,n)=>{const a=[];for(const r of Object.keys(e))a.push(await D(r,e[r],t,n));return N(a)},W=async(e,t)=>!e||!u(e,t.schema,t.tableName)?e:c(e,t.tableName,{canPushExists:t.canPushExists,existsPushMode:t.existsPushMode??"auto",fetcher:t.fetcher,maxRelationKeys:t.maxRelationKeys??j,relationBaseWhere:t.relationBaseWhere,schema:t.schema}),f=(e,t,n)=>{for(const a of e){const r=O(a,t,n);if(r)return r}},I=(e,t,n,a)=>{if(e==="AND"||e==="OR")return f(b(t),n,a);if(e==="NOT")return f([t??{}],n,a);const r=n.tables[a]?.relationMap?.[e];if(!(!r||!p(t)))return n.tables[r.table]?.shardMode?.kind==="shardBy"?{relation:e,target:r.table}:f(Object.values(t),n,r.table)},O=(e,t,n)=>{for(const a of Object.keys(e)){const r=I(a,e[a],t,n);if(r)return r}},_=(e,t,n)=>{if(!e)return;const a=O(e,t,n);if(a)throw Object.assign(new Error(`shape on "${n}" joins the sharded table "${a.target}" via relation "${a.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 "${a.target}" to .global() so it is served through the latency-tiered D1 shape tier.`),{code:"SHAPE_CROSS_SHARD_JOIN",name:"LunoraError",status:400})};export{j as DEFAULT_MAX_RELATION_KEYS,M as assertFlatPredicate,_ as assertShapeShardable,u as containsRelationPredicate,p as isRelationPredicate,W as resolveRelationPredicates};
1
+ import{LunoraError as d}from"@lunora/errors";import{distinctValues as R}from"./applyOnDelete-By23GK-k.mjs";import{RELATION_EXISTS_KEY as k}from"./RELATION_EXISTS_KEY-BaqSIFU1.mjs";const y={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}},A=new Set(Object.keys(y)),w=e=>{const t=y[e];if(!t)throw new d("INTERNAL",`unknown relation operator "${e}"`);return t},E=e=>e.kind==="one"?{clause:e.field,project:e.references}:{clause:e.references,project:e.field},j=5e3,h=Symbol("relation-key-overflow"),b=e=>Array.isArray(e)?e.map(t=>t??{}):[],N=e=>{if(e.length===1){const[t]=e;return t??{}}return e.length===0?{}:{AND:e}},p=e=>{if(e===null||typeof e!="object"||Array.isArray(e))return!1;const t=Object.keys(e);return t.length>0&&t.every(n=>A.has(n))},u=(e,t,n)=>{const a=t.tables[n]?.relationMap??{};return Object.keys(e).some(r=>{const s=e[r];return r==="AND"||r==="OR"?b(s).some(o=>u(o,t,n)):r==="NOT"?u(s??{},t,n):!!a[r]&&p(s)})},M=(e,t,n,a)=>{if(e&&u(e,t,n))throw new d("INTERNAL",`relation-crossing predicates are not supported in ${a}() — use them in findMany/findFirst or an RLS read policy`)},S=async(e,t,n,a,r)=>{const s=await c(t,e.table,a),{page:o}=await a.fetcher(e.table,{baseWhere:a.relationBaseWhere?.(e.table),relationBaseWhere:a.relationBaseWhere,where:s}),i=R(o,n);if(i.length>a.maxRelationKeys){if(r)return h;throw new d("INTERNAL",`relation predicate on "${e.table}" matched ${String(i.length)} rows, exceeding the ${String(a.maxRelationKeys)}-key limit; narrow the predicate (a same-shard EXISTS push-down lifts this cap)`)}return i},T=async(e,t,n,a,r)=>{const s=w(e),{clause:o,project:i}=E(t),l=await S(t,s.negateChild?{NOT:n}:n,i,a,r);return l===h?h:s.negated?s.nullDisjunct?{OR:[{[o]:{notIn:l}},{[o]:{isNull:!0}}]}:{[o]:{notIn:l}}:{[o]:{in:l}}},g=async(e,t,n,a,r)=>{const s=w(e),o=r.relationBaseWhere?.(t.table),i=s.negateChild?{NOT:n}:n,l={childWhere:await c(o?{AND:[o,i]}:i,t.table,r),negated:s.negated,parentTable:a,relation:t};return{[k]:l}},$=(e,t,n)=>{const a=y[e];if(a&&a.kind!==n.kind)throw new d("INTERNAL",`relation operator "${e}" requires a to-${a.kind} relation, but "${t}" is to-${n.kind}`)},x=async(e,t,n,a,r)=>{const s=[];for(const o of Object.keys(n)){$(o,e,t);const i=n[o]??{},l=r.canPushExists?.(t)??!1;if(l&&r.existsPushMode==="always"){s.push(await g(o,t,i,a,r));continue}const m=await T(o,t,i,r,l);m===h?s.push(await g(o,t,i,a,r)):s.push(m)}return N(s)},D=async(e,t,n,a)=>{if(e==="AND"||e==="OR"){const s=[];for(const o of b(t))s.push(await c(o,n,a));return{[e]:s}}if(e==="NOT")return{NOT:await c(t??{},n,a)};const r=a.schema.tables[n]?.relationMap?.[e];return r&&p(t)?x(e,r,t,n,a):{[e]:t}},c=async(e,t,n)=>{const a=[];for(const r of Object.keys(e))a.push(await D(r,e[r],t,n));return N(a)},W=async(e,t)=>!e||!u(e,t.schema,t.tableName)?e:c(e,t.tableName,{canPushExists:t.canPushExists,existsPushMode:t.existsPushMode??"auto",fetcher:t.fetcher,maxRelationKeys:t.maxRelationKeys??j,relationBaseWhere:t.relationBaseWhere,schema:t.schema}),f=(e,t,n)=>{for(const a of e){const r=O(a,t,n);if(r)return r}},I=(e,t,n,a)=>{if(e==="AND"||e==="OR")return f(b(t),n,a);if(e==="NOT")return f([t??{}],n,a);const r=n.tables[a]?.relationMap?.[e];if(!(!r||!p(t)))return n.tables[r.table]?.shardMode?.kind==="shardBy"?{relation:e,target:r.table}:f(Object.values(t),n,r.table)},O=(e,t,n)=>{for(const a of Object.keys(e)){const r=I(a,e[a],t,n);if(r)return r}},_=(e,t,n)=>{if(!e)return;const a=O(e,t,n);if(a)throw Object.assign(new Error(`shape on "${n}" joins the sharded table "${a.target}" via relation "${a.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 "${a.target}" to .global() so it is served through the latency-tiered D1 shape tier.`),{code:"SHAPE_CROSS_SHARD_JOIN",name:"LunoraError",status:400})};export{j as DEFAULT_MAX_RELATION_KEYS,M as assertFlatPredicate,_ as assertShapeShardable,u as containsRelationPredicate,p as isRelationPredicate,W as resolveRelationPredicates};
@@ -0,0 +1 @@
1
+ import{toErrorBody as A,LunoraError as x}from"@lunora/errors";import{a as w,s as g}from"./wire-codec-Dsy70M3Q.mjs";import{u as m,f as P,g as R,l as k,s as M,o as L}from"./sibling-channel-bg9FBL5s.mjs";import{relayName as y,nextPromotionState as O,shapeRoutingKey as S,parseRelayName as D,clampPromotionThresholds as C,DEFAULT_PROMOTION_THRESHOLDS as b}from"./DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";import{encodeRowsPatch as T,buildPokeFrames as _}from"./buildPokeFrames-CqxaN8_H.mjs";import{awaitWsDrain as N,trySendFrame as I}from"./awaitWsDrain-Bp2jKzIb.mjs";import{stableWireKey as p}from"./stableWireKey-l3cjIt-9.mjs";const $=2,F=8,f={},U=d=>{throw new x("INTERNAL",`unhandled relay frame: ${JSON.stringify(d)}`)},K=d=>Response.json(d,{headers:{"content-type":"application/json"}}),u=()=>new Response(null,{status:204});class E{constructor(e,s){this.host=e,this.roleId=s}host;roleId;async handleControl(e){let s;try{s=await e.text()}catch{return new Response("bad request",{status:400})}if(!await P(this.host.env(),e.headers.get(R),s))return new Response("forbidden",{status:403});let t;try{t=JSON.parse(s)}catch{return new Response("bad request",{status:400})}switch(t.type){case"relay_attach":return this.onAttach(t.relayIndex),u();case"relay_detach":return this.onDetach(t.relayIndex),u();case"relay_frame":return this.host.deliverWhisperLocal(t.topic,t.frame,void 0),await this.onWhisperFrame(t),u();case"relay_shape_poke":{const r=this.host.getWebSockets().length,a=Date.now(),o=this.onShapePoke({...t,args:g(t.args)});return this.host.recordShapePokeFanout(r,o,Date.now()-a),u()}case"relay_shape_subscribe":return K(this.onShapeSubscribe({...t,args:g(t.args)}));default:return U(t)}}maxRelays(){return m(this.host.env(),"LUNORA_MAX_RELAYS",F)}canAddressSiblings(){return this.siblingStub(this.roleId.ownerKey)!==void 0}siblingStub(e){return k(this.host.env(),this.host.shardBinding(),e)}async postRelayMessage(e,s){await this.requestRelayMessage(e,s)}async requestRelayMessage(e,s){const t=this.siblingStub(e);if(t===void 0)return;const r=JSON.stringify(s),a={"content-type":"application/json","x-lunora-shard-binding":this.host.shardBinding()??""},o=M(this.host.env());o!==void 0&&(a[R]=await L(o,r));try{return await t.fetch("https://relay.internal/_lunora/relay",{body:r,headers:a,method:"POST"})}catch{return}}}class W extends E{shapeUniformCache=new Map;relaySetCache;relayShapeRegistry=new Map;relayShapeProxies=new Map;promotionState="owned";constructor(e,s){super(e,{ownerKey:s})}async forwardWhisper(e,s){if(!this.canAddressSiblings())return;const t=this.ownerRelaySet();t.size!==0&&await Promise.all([...t].map(r=>this.postRelayMessage(y(this.roleId.ownerKey,r),{frame:s,topic:e,type:"relay_frame"})))}async onFlush(e,s){await Promise.all([this.multicastShapePokes(e,s),this.proxyShapePokes(e,s)])}seedRelayShape(){return Promise.resolve(void 0)}announce(){return Promise.resolve()}announceDrain(){return Promise.resolve()}relayCount(){const e=this.host.getWebSockets().length,s=m(this.host.env(),"LUNORA_RELAY_THRESHOLD",b.tUp),t=m(this.host.env(),"LUNORA_RELAY_COLLAPSE_THRESHOLD",b.tDown);if(this.promotionState=O(this.promotionState,e,C(s,t)),this.promotionState==="owned")return 0;const r=m(this.host.env(),"LUNORA_RELAY_FAN",$);return Math.min(this.maxRelays(),Math.max(1,r))}isShapeRelayUniform(e,s){const t=S(e,s),r=this.shapeUniformCache.get(t);if(r!==void 0)return r;const a=this.probeShapeRelayUniform(e,s);return this.shapeUniformCache.set(t,a),a}onAttach(e){this.addRelayToSet(e)}onDetach(e){this.removeRelayFromSet(e)}async onWhisperFrame(e){await Promise.all([...this.ownerRelaySet()].filter(s=>s!==e.originRelay).map(s=>this.postRelayMessage(y(this.roleId.ownerKey,s),{frame:e.frame,topic:e.topic,type:"relay_frame"})))}onShapeSubscribe(e){return this.buildShapeSeedFrames(e)}onShapePoke(){return 0}buildShapePoke(e,s,t,r,a){let o;try{o=this.host.resolveShape(e.name,e.args,s)}catch{return}if(o===void 0||o.global===!0||!t.has(o.table))return;const i=e,n=i.cursor,l=this.host.buildShapeDiff(o,n,r);if(l.length!==0)return i.cursor=r,{args:w(e.args),checkpoint:r,epoch:a,fromCursor:n,name:e.name,rowsPatch:T(l),type:"relay_shape_poke"}}async multicastShapePokes(e,s){if(this.relayShapeRegistry.size===0)return;const t=this.ownerRelaySet();if(t.size===0)return;const r=this.host.currentCdcEpoch(),a=[];for(const o of this.relayShapeRegistry.values()){const i=this.buildShapePoke(o,f,e,s,r);if(i)for(const n of t)a.push(this.postRelayMessage(y(this.roleId.ownerKey,n),i))}await Promise.all(a)}async proxyShapePokes(e,s){if(this.relayShapeProxies.size===0)return;const t=this.host.currentCdcEpoch(),r=[];for(const a of this.relayShapeProxies.values()){const o=this.buildShapePoke(a,a.identity,e,s,t);o&&r.push(this.postRelayMessage(y(this.roleId.ownerKey,a.relayIndex),{...o,targetConnectionId:a.connectionId}))}await Promise.all(r)}buildShapeSeedFrames(e){const s={identity:e.identity,userId:e.userId};let t;try{t=this.host.resolveShape(e.name,e.args,s)}catch(c){const{body:h}=A(c,{fallbackCode:"SHAPE_RESOLVE_FAILED",redactedMessage:"shape resolution failed"});return{error:{code:h.code,message:h.message}}}if(t===void 0||t.global===!0)return{error:{code:"SHAPE_NOT_FOUND",message:`shape not relayable: ${e.name}`}};e.relayIndex!==void 0&&this.addRelayToSet(e.relayIndex);const{baseCheckpoint:r,cursor:a,epoch:o,rowsPatch:i}=this.host.computeOpLogShapeSeed({args:e.args,name:e.name,sinceEpoch:e.sinceEpoch,sinceSeq:e.sinceSeq},t);let n=a;if(this.isShapeRelayUniform(e.name,e.args)){const c=S(e.name,e.args);let h=this.relayShapeRegistry.get(c);h===void 0&&(h={args:e.args,cursor:a,name:e.name},this.relayShapeRegistry.set(c,h)),n=h.cursor}else e.relayIndex!==void 0&&e.connectionId!==void 0&&this.relayShapeProxies.set(`${String(e.relayIndex)}:${e.connectionId}:${e.subId}`,{args:e.args,connectionId:e.connectionId,cursor:a,epoch:o,identity:s,name:e.name,relayIndex:e.relayIndex,subId:e.subId});const l=_([{rowsPatch:i,shapeId:e.subId}],{baseCheckpoint:r,checkpoint:a,epoch:o,lastMutationId:void 0,pokeId:this.host.nextPokeId()});return{cursor:n,epoch:o,frames:l}}ensureRelayTable(){this.host.sql().exec("CREATE TABLE IF NOT EXISTS __lunora_relays (idx INTEGER PRIMARY KEY)")}ownerRelaySet(){if(this.relaySetCache===void 0){this.ensureRelayTable();const e=this.host.sql().exec("SELECT idx FROM __lunora_relays").toArray();this.relaySetCache=new Set(e.map(s=>Number(s.idx)))}return this.relaySetCache}addRelayToSet(e){this.ensureRelayTable(),this.host.sql().exec("INSERT OR IGNORE INTO __lunora_relays (idx) VALUES (?)",e),this.ownerRelaySet().add(e)}removeRelayFromSet(e){this.ensureRelayTable(),this.host.sql().exec("DELETE FROM __lunora_relays WHERE idx = ?",e);const s=this.ownerRelaySet();s.delete(e);for(const[t,r]of this.relayShapeProxies)r.relayIndex===e&&this.relayShapeProxies.delete(t);s.size===0&&(this.relayShapeRegistry.clear(),this.shapeUniformCache.clear())}probeShapeRelayUniform(e,s){let t;try{t=this.host.resolveShape(e,s,f)}catch{return!1}if(t===void 0||t.global===!0||this.host.rlsMetadata().policies.some(n=>n.on==="read"&&n.table===t.table)||this.tableHasAnyMask(t.table))return!1;const r=p(t.effectiveWhere),a=p(t.columns);let o=!1;const i=n=>{const l={groups:[`grp_${n}`],roles:[n],sub:`__lunora_probe_${n}__`};return{identity:new Proxy(l,{get:(c,h)=>typeof h=="symbol"||h in c?Reflect.get(c,h):`${n}:${h}`,getOwnPropertyDescriptor:(c,h)=>(o=!0,Reflect.getOwnPropertyDescriptor(c,h)),has:(c,h)=>typeof h=="symbol"?Reflect.has(c,h):!0,ownKeys:c=>(o=!0,Reflect.ownKeys(c))}),userId:`__lunora_probe_${n}__`}};return[f,i("a"),i("b")].every(n=>{let l;try{l=this.host.resolveShape(e,s,n)}catch{return!1}return l!==void 0&&l.global!==!0&&l.table===t.table&&p(l.effectiveWhere)===r&&p(l.columns)===a})&&!o}tableHasAnyMask(e){return this.host.maskMetadata().columns.some(s=>s.table===e)}}class q extends E{relayAnnounced=!1;shapeRelayMemos=new WeakMap;constructor(e,s,t){super(e,{ownerKey:s,relayIndex:t})}async forwardWhisper(e,s){this.canAddressSiblings()&&await this.postRelayMessage(this.roleId.ownerKey,{frame:s,originRelay:this.roleId.relayIndex,topic:e,type:"relay_frame"})}onFlush(){return Promise.resolve()}async seedRelayShape(e,s,t,r){if(!this.canAddressSiblings())return{code:"RELAY_MISCONFIGURED",message:"relay cannot address its owner"};await this.announce();const a={args:w(t.args??{}),connectionId:this.host.readAttachment(e).connectionId,identity:r.identity,name:t.name,relayIndex:this.roleId.relayIndex,sinceEpoch:t.sinceEpoch,sinceSeq:t.sinceSeq,subId:s,type:"relay_shape_subscribe",userId:r.userId},o=await this.requestRelayMessage(this.roleId.ownerKey,a);if(o===void 0)return{code:"RELAY_SEED_FAILED",message:"owner did not answer the shape seed"};let i;try{i=await o.json()}catch{return{code:"RELAY_SEED_FAILED",message:"malformed shape seed from owner"}}if(i.error!==void 0)return i.error;if(i.frames===void 0)return{code:"RELAY_SEED_FAILED",message:"owner returned no shape frames"};await N(e);for(const n of i.frames)I(e,n);return this.recordRelayShapeMemo(e,s,i.cursor??0,i.epoch),"ok"}async announce(){this.relayAnnounced||!this.canAddressSiblings()||(this.relayAnnounced=!0,(await this.requestRelayMessage(this.roleId.ownerKey,{relayIndex:this.roleId.relayIndex,type:"relay_attach"}))?.ok||(this.relayAnnounced=!1))}async announceDrain(e){this.canAddressSiblings()&&(this.host.getWebSockets().some(s=>s!==e)||(this.relayAnnounced=!1,await this.postRelayMessage(this.roleId.ownerKey,{relayIndex:this.roleId.relayIndex,type:"relay_detach"})))}relayCount(){return 0}isShapeRelayUniform(){return!1}onAttach(){}onDetach(){}onWhisperFrame(){return Promise.resolve()}onShapeSubscribe(){return{error:{code:"RELAY_CANNOT_SEED",message:"a relay has no op-log to seed from"}}}onShapePoke(e){return this.deliverShapePoke(e)}recordRelayShapeMemo(e,s,t,r){let a=this.shapeRelayMemos.get(e);a===void 0&&(a=new Map,this.shapeRelayMemos.set(e,a)),a.set(s,{cursor:t,epoch:r})}deliverShapePoke(e){const s=S(e.name,e.args);let t=0;for(const r of this.host.getWebSockets()){const a=this.host.readAttachment(r),{shapes:o}=a,i=this.shapeRelayMemos.get(r);if(!(o===void 0||i===void 0)&&!(e.targetConnectionId!==void 0&&a.connectionId!==e.targetConnectionId))for(const[n,l]of Object.entries(o)){const c=i.get(n);if(c?.cursor!==e.fromCursor||c.epoch!==e.epoch||S(l.name,l.args)!==s)continue;const h=_([{rowsPatch:e.rowsPatch,shapeId:n}],{baseCheckpoint:void 0,checkpoint:e.checkpoint,epoch:e.epoch,lastMutationId:void 0,pokeId:this.host.nextPokeId()},{preEncoded:!0});for(const v of h)I(r,v);i.set(n,{cursor:e.checkpoint,epoch:e.epoch}),t+=1}}return t}}const X=d=>{const e=d.doName();if(e===void 0)return;const s=D(e);return s===void 0?new W(d,e):new q(d,s.ownerKey,s.relayIndex)};export{F as DEFAULT_MAX_RELAYS,W as OwnerRelay,q as RelayMember,X as createRelayLink};
@@ -0,0 +1 @@
1
+ import{LunoraError as b}from"@lunora/errors";import{n as kt,w as Lt,x as je,T as Te,y as Dt,c as Ot}from"./ctx-db-companions-BTi8DLUl.mjs";import{sql as n}from"drizzle-orm";import{s as Ft}from"./wire-codec-Dsy70M3Q.mjs";import{aggregateSqlFunction as Se,normalizeCountArgument as Wt,throwingScheduler as Bt}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as Me,readAggregateValue as ke,aggregateTableName as Le}from"./aggregateTableName-DgYMC5tr.mjs";import{mergeWhere as Y,CountRlsUnsupportedError as De,selectIndexForGroupBy as qt,selectIndexForCount as Ut,selectIndexForAggregate as Pt}from"./CountRlsUnsupportedError-8BqPYQoP.mjs";import{backfillSearchIndexesForTable as jt}from"./backfillAggregateIndexes-DmqOHg0U.mjs";import{backfillAggregateIndexes as Ir,backfillRankIndexes as vr,backfillSearchIndexes as Cr}from"./backfillAggregateIndexes-DmqOHg0U.mjs";import{appendCdcChange as Ht}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{CDC_LOG_TABLE as kr,applyCdcChanges as Lr,bumpCdcEpoch as Dr,minCdcSeq as Or,readCdcChanges as Fr,readCdcCursor as Wr,readCdcEpoch as Br,trimCdcChanges as qr}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{computeRankPage as nt}from"./computeRankPage-QK8SeTZ-.mjs";import{SCAN_DEP as P}from"./SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as B}from"./runDrizzle-B6rnz3so.mjs";import{a as H,L as ae,p as _e,T as Oe,c as Re,N as V,E as le,I as Et,C as Qt,D as yt,h as Gt,O as rt}from"./do-sql-1Yi1_Yq0.mjs";import{coveringGeohashes as Kt,boundingBoxGeohashes as Yt,pointInBoundingBox as zt,haversineMeters as Vt}from"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{NotFoundError as Jt}from"./NotFoundError-BhF7FeFr.mjs";import{normalizeOrderKeys as Xt,buildSeekWhere as Nt,decodeCursor as qe,applySelect as it,encodeCursor as Ue,softDeleteScope as de,buildSeekBeforeWhere as Zt}from"./applySelect-UY-o13Ia.mjs";import{sortColumnName as ot,resolveRankPartition as en,encodePartitionKey as tn,RANK_TIEBREAK as nn,rankTableName as at}from"./RANK_TIEBREAK-DDtST3gN.mjs";import{indexKeysForRow as rn,buildIndexRange as on}from"./buildIndexRange-DFsdtPjD.mjs";import{assertFlatPredicate as Fe,resolveRelationPredicates as st}from"./DEFAULT_MAX_RELATION_KEYS-DjKka36Z.mjs";import{runRowValidators as We,resolveWith as dt,relationHooks as lt,applyOnDelete as an,fanOutScalarCounts as sn}from"./applyOnDelete-By23GK-k.mjs";import{guardWriter as dn}from"./RLS_UNWRAP_SYMBOL-DcqORh2s.mjs";import{f as ln}from"./sql-projection-jfoe331H.mjs";import{createSystemReader as cn}from"./createSystemReader-DcDcrtM3.mjs";import{ConflictError as he}from"./ConflictError-C8GtJmjS.mjs";import{runTriggers as un}from"./hasTrigger-CbkOHExZ.mjs";import{compileWhereSql as ne}from"./compileWhereSql-B4rPariq.mjs";import{CLIENT_WATERMARK_TABLE as Pr,advanceClientWatermark as jr,migrateClientWatermark as Hr,readClientWatermark as Qr}from"./CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as Kr,deleteGlobalShapeSnapshot as Yr,deleteGlobalShapeSnapshotsForConnection as zr,migrateGlobalShapeSnapshot as Vr,readGlobalShapeSnapshot as Jr,writeGlobalShapeSnapshot as Xr}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{IDEMPOTENCY_TABLE as ei,readIdempotent as ti,trimIdempotent as ni,writeIdempotent as ri}from"./IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{runShardMigrations as oi}from"./runShardMigrations-BqO6HPtX.mjs";import{SEARCH_STATE_TABLE as si}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{selectShapeMemberIds as li,selectShapeRows as ci}from"./selectShapeMemberIds-BdBcbrUP.mjs";import{serializeSqlValue as oe}from"./serializeSqlValue-BR4UOWoP.mjs";import{quoteIdentifier as fn}from"./quoteIdentifier-CObIFRhb.mjs";const hn=i=>{const o=new TextEncoder().encode(i);let t="";for(const d of o)t+=String.fromCodePoint(d);return btoa(t)},pn=i=>{const o=atob(i),t=Uint8Array.from(o,d=>d.codePointAt(0)??0);return new TextDecoder().decode(t)},mn=()=>new b("BAD_REQUEST","invalid cursor"),ct=16,ut=8,J=1024,He=(i,o)=>o.query(i),$n=(i,o,t)=>{const d=kt(i,t);if(d.length===0)return 0;let c=0;for(const[p,$]of o.entries()){const A=p===o.length-1;let y=0;for(const g of d)(A?g.startsWith($):g===$)&&(y+=1);if(y===0)return 0;c+=y}return c},wn=(i,o)=>{if(!o)return{exact:!0,lower:i,upper:i};const t=[...i].at(-1)??"",d=(t.codePointAt(0)??0)+1;if(d>=55296&&d<=57343||d>1114111)return{exact:!0,lower:i,upper:i};const c=i.slice(0,i.length-t.length);return{exact:!1,lower:i,upper:c+String.fromCodePoint(d)}},gn=(i,o,t)=>{const d={eq:(c,p)=>{if(!i.definition.filterFields?.includes(c))throw new b("INTERNAL",`field "${c}" is not a filter field of search index "${i.indexName}" on table "${o}"`);if(i.filters.length>=ut)throw new b("BAD_REQUEST",`search index "${i.indexName}" on table "${o}": at most ${String(ut)} .eq() filters are supported per search query`);return i.filters.push({field:c,value:p}),d},search:(c,p)=>{const $=i;if(c!==$.definition.field)throw new b("INTERNAL",`search index "${$.indexName}" on table "${o}" indexes "${$.definition.field}", not "${c}"`);const A=He(p,t).length;if(A>ct)throw new b("BAD_REQUEST",`search index "${$.indexName}" on table "${o}": at most ${String(ct)} search terms are supported (got ${String(A)})`);return $.field=c,$.query=p,$.hasQuery=!0,d}};return d},bn=i=>{if(i.length>J)throw new b("BAD_REQUEST",`more than ${String(J)} documents match this search — narrow it with filters or read it a page at a time with .paginate()`)},En=i=>Math.min(i.offset+i.numItems+1,J),yn=i=>hn(`search:${String(i)}`),Nn=i=>{let o;try{o=pn(i)}catch{return}if(!o.startsWith("search:"))return;const t=Number(o.slice(7));return Number.isInteger(t)&&t>=0?t:void 0},Tn=i=>{if(typeof i.endCursor=="string")throw new b("BAD_REQUEST","bounded (endCursor) pagination is not supported on search queries — relevance order has no stable range boundary");const o=Math.max(0,Math.floor(i.numItems)),t=i.cursor?Nn(i.cursor):0;if(t===void 0)throw mn();if(t+o>J)throw new b("BAD_REQUEST",`search pagination reaches past the ${String(J)}-document limit (offset ${String(t)} + ${String(o)} requested) — narrow the query or the filters instead`);return{numItems:o,offset:t}},Sn=(i,o)=>{const t=o.offset+o.numItems,d=o.numItems>0&&i.length>t;return{continueCursor:d?yn(t):null,isDone:!d,page:i.slice(o.offset,t)}},_n=i=>{if(i===void 0)return J+1;if(!Number.isFinite(i))return J;const o=Math.max(0,Math.floor(i));if(o>J)throw new b("BAD_REQUEST",`search returns at most ${String(J)} documents (asked for ${String(o)}) — narrow the query or paginate instead`);return o},Rn=/^[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/iu,An=i=>{if(!Rn.test(i))throw new b("INTERNAL",`invalid clientId ${JSON.stringify(i)}: a client-supplied row id must be a UUID`)},ft=50,Tt=500,xn=128,se=(i,o,t)=>{const d=o??Tt;if(i>d)throw new b("BATCH_LIMIT_EXCEEDED",`${t}: batch of ${String(i)} exceeds the limit of ${String(d)} (raise options.limit or chunk the call)`,{status:400})},In=i=>{const o={eq:(t,d)=>(i.sqlConditions.push({comparator:"=",field:t,value:d}),o),gt:(t,d)=>(i.sqlConditions.push({comparator:">",field:t,value:d}),o),gte:(t,d)=>(i.sqlConditions.push({comparator:">=",field:t,value:d}),o),lt:(t,d)=>(i.sqlConditions.push({comparator:"<",field:t,value:d}),o),lte:(t,d)=>(i.sqlConditions.push({comparator:"<=",field:t,value:d}),o)};return o},vn=i=>Math.max(i,J),St=(i,o)=>{const t=i.filters.map(d=>n`${V(d.field)} = ${oe(d.value)}`);return o&&t.push(o),t},Cn=(i,o,t,d,c)=>{const p=He(t.query,je(t.definition.language));if(p.length===0)return[];const $=Ot(o,t.indexName),A=`${$}__vocab`,y=p.length-1,g=p.map((D,k)=>{const Q=wn(D,k===y),W=Q.exact?n`${n.identifier("term")} = ${Q.lower}`:n`${n.identifier("term")} >= ${Q.lower} AND ${n.identifier("term")} < ${Q.upper}`;return n`SELECT ${n.identifier("doc")}, ${n.raw(String(k))} AS ${n.identifier("__term__")}, COUNT(*) AS ${n.identifier("__n__")} FROM ${n.identifier(A)} WHERE ${W} GROUP BY ${n.identifier("doc")}`}),N=p.map((D,k)=>n`SUM(CASE WHEN u.${n.identifier("__term__")} = ${n.raw(String(k))} THEN u.${n.identifier("__n__")} ELSE 0 END)`),T=n`SELECT f.${n.identifier(Te)} AS ${n.identifier(Te)}, ${n.join(N,n` + `)} AS ${n.identifier("__score__")} FROM (${n.join(g,n` UNION ALL `)}) u JOIN ${n.identifier($)} f ON f.rowid = u.${n.identifier("doc")} GROUP BY f.${n.identifier(Te)} HAVING ${n.join(N.map(D=>n`${D} > 0`),n` AND `)}`,_=St(t,c);let C=n`SELECT m.id, m._creationTime, m.${n.identifier(H)}, s.${n.identifier("__score__")} AS ${n.identifier("__score__")} FROM (${T}) s JOIN ${n.identifier(o)} m ON m.id = s.${n.identifier(Te)}`;_.length>0&&(C=n`${C} WHERE ${n.join(_,n` AND `)}`),C=n`${C} ORDER BY s.${n.identifier("__score__")} DESC, m._creationTime DESC, m.id ASC LIMIT ${n.raw(String(d))}`;const O=[];for(const D of B(i,C)){const k=yt(D);if(k){const Q=D.__score__;O.push({document:k,score:typeof Q=="number"?Q:Number(Q??0)})}}return O},Mn=(i,o,t,d,c)=>{const p=je(t.definition.language),$=He(t.query,p);if($.length===0)return[];const A=St(t,c);let y=n`SELECT id, _creationTime, ${n.identifier(H)} FROM ${n.identifier(o)}`;A.length>0&&(y=n`${y} WHERE ${n.join(A,n` AND `)}`),y=n`${y} ORDER BY _creationTime DESC, id ASC LIMIT ${n.raw(String(vn(d)))}`;const g=B(i,y).toArray(),N=[];for(const T of g){const _=yt(T);if(!_)continue;const C=$n(Dt(_,t.definition),$,p);C>0&&N.push({creationTime:typeof _._creationTime=="number"?_._creationTime:0,doc:_,id:typeof _._id=="string"?_._id:"",score:C})}return N.sort((T,_)=>_.score-T.score||_.creationTime-T.creationTime||T.id.localeCompare(_.id)),N.slice(0,d).map(T=>({document:T.doc,score:T.score}))},Be=(i,o,t,d)=>{if(!Number.isFinite(i.lat)||i.lat<-90||i.lat>90||!Number.isFinite(i.lng)||i.lng<-180||i.lng>180)throw new b("BAD_REQUEST",`geo index "${d}" on table "${t}": ${o} must have a finite lat in [-90, 90] and lng in [-180, 180]`)},kn=(i,o)=>{const t=i,d={near:(c,p)=>{if(t.within)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${o}": call .near() or .within(), not both`);if(Be(c,".near() point",o,t.indexName),!Number.isFinite(p)||p<=0)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${o}": .near() radiusMeters must be a finite number > 0, got ${String(p)}`);return t.near={point:{lat:c.lat,lng:c.lng},radiusMeters:p},d},within:c=>{if(t.near)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${o}": call .near() or .within(), not both`);if(Be(c.sw,".within() sw corner",o,t.indexName),Be(c.ne,".within() ne corner",o,t.indexName),c.sw.lat>c.ne.lat)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${o}": .within() corners are transposed (sw.lat > ne.lat)`);if(c.sw.lng>c.ne.lng)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${o}": .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:c.ne.lat,lng:c.ne.lng},sw:{lat:c.sw.lat,lng:c.sw.lng}},d}};return d},Ln=(i,o)=>{const t=i[o];if(t===null||typeof t!="object")return;const{lat:d,lng:c}=t;return typeof d=="number"&&typeof c=="number"?{lat:d,lng:c}:void 0},Dn=(i,o)=>{const t=Ln(i,o.definition.field);if(!t)return;const d=typeof i._creationTime=="number"?i._creationTime:0;if(o.near){const c=Vt(o.near.point,t);return c<=o.near.radiusMeters?{creationTime:d,distance:c}:void 0}return zt(t,o.within)?{creationTime:d,distance:0}:void 0},On=(i,o,t,d)=>{if(!t.near&&!t.within)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${o}": call .near(point, radius) or .within(box)`);const c=t.near?Kt(t.near.point,t.near.radiusMeters):Yt(t.within),p=Gt(o,t.indexName),$=c.map(T=>n`(g.${n.identifier("__geohash__")} >= ${T} AND g.${n.identifier("__geohash__")} < ${`${T}{`})`),A=[n`(${n.join($,n` OR `)})`];d&&A.push(d);const y=n`SELECT m.id, m._creationTime, m.${n.identifier(H)} FROM ${n.identifier(p)} g JOIN ${n.identifier(o)} m ON m.id = g.${n.identifier("__id__")} WHERE ${n.join(A,n` AND `)}`,g=B(i,y).toArray(),N=[];for(const T of g){const _=le(T),C=_?Dn(_,t):void 0;_&&C&&N.push({creationTime:C.creationTime,distance:C.distance,doc:_})}return N.sort((T,_)=>T.distance-_.distance||_.creationTime-T.creationTime),N},_t=(i,o,t,d)=>{const c=[];for(const p of i)if(o.every($=>$(d(p)))&&(c.push(p),typeof t=="number"&&c.length>=t))break;return c},Fn=(i,o,t,d,c,p=()=>{})=>{const $=t.within!==void 0,A=On(i,o,t,c).map(y=>({distanceMeters:$?null:y.distance,document:y.doc}));return p(A.length),typeof d=="number"?A.slice(0,Math.max(0,Math.floor(d))):A},Rt=(i,o,t,d,c,p=()=>{})=>{const{geo:$}=t;if(!$)throw new b("INTERNAL","runGeoTerminalScored called without a staged geo query");const A=t.inMemoryFilters.length>0,y=Fn(i,o,$,A?void 0:c,d,p);return A?_t(y,t.inMemoryFilters,c,g=>g.document):y},Wn=(i,o,t,d,c,p=()=>{})=>Rt(i,o,t,d,c,p).map($=>$.document),Bn=(i,o,t,d,c,p,$=()=>{})=>{const A=[];for(const T of t.sqlConditions)A.push(n`${V(T.field)} ${n.raw(T.comparator)} ${oe(T.value)}`);d&&A.push(d);let y=n`SELECT id, _creationTime, ${n.identifier(H)} FROM ${n.identifier(o)}`;A.length>0&&(y=n`${y} WHERE ${n.join(A,n` AND `)}`),y=n`${y} ORDER BY ${c}`,typeof p=="number"&&t.inMemoryFilters.length===0&&(y=n`${y} LIMIT ${n.raw(String(Math.max(0,Math.floor(p))))}`);const g=B(i,y).toArray();$(g.length);const N=[];for(const T of g){const _=le(T);if(_&&t.inMemoryFilters.every(C=>C(_))&&(N.push(_),typeof p=="number"&&N.length>=p))break}return N},ie={fieldRef:V,serialize:oe},At=(i,o)=>{const t=o===void 0?void 0:i.shape[o];return t!==void 0&&ln(t)},ht=(i,o)=>o.some(t=>At(i,t)),pt=(i,o,t)=>{if(At(i,o))throw new b("BAD_REQUEST",`${t}: "${o}" 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`)},qn=i=>{let o=0;const t=[],d={fieldRef:V,relationExists:c=>{const{childWhere:p,negated:$,parentTable:A,relation:y}=c,g=`__rel_${String(o)}`,N=t.at(-1)??A;o+=1,i(y.table,P);const T=y.kind==="one"?y.field:y.references,_=y.kind==="one"?y.references:y.field,C=n`${rt(g,_)} = ${rt(N,T)}`;t.push(g);const O=ne(p,d);t.pop();const D=O?n`${C} AND ${O}`:C,k=n`EXISTS (SELECT 1 FROM ${n.identifier(y.table)} AS ${n.identifier(g)} WHERE ${D})`;return $?n`NOT ${k}`:k},serialize:oe};return d},xt=i=>{const o=i.map(t=>n`${V(t.field)} ${n.raw(t.direction==="desc"?"DESC":"ASC")}`);return i.some(t=>t.field==="_id"||t.field==="id")||o.push(n`${V("id")} ASC`),n.join(o,n`, `)},Un={"<":"lt","<=":"lte","=":"eq",">":"gt",">=":"gte"},Pn=i=>{const o=i.order;return i.indexFields.length>0?i.indexFields.map(t=>({direction:o,field:t})):[{direction:o,field:"_creationTime"}]},jn=(i,o,t,d)=>{const c=i.sqlConditions.map(p=>({[p.field]:{[Un[p.comparator]??"eq"]:p.value}}));if(t&&c.push(Nt(o,qe(t))),d&&c.push(Zt(o,qe(d))),c.length!==0)return c.length===1?c[0]:{AND:c}},Hn=(i,o,t)=>{const d=[];for(const c of i){const p=le(c);if(p&&o.every($=>$(p))&&(d.push(p),t!==void 0&&d.length>t))break}return d},Qn=(i,o,t,d,c,p=()=>{})=>{const $=Math.max(0,Math.floor(d.numItems)),A=Pn(t),y=typeof d.endCursor=="string",g=ne(jn(t,A,d.cursor,d.endCursor),ie),N=c&&g?n`${g} AND ${c}`:c??g;let T=n`SELECT id, _creationTime, ${n.identifier(H)} FROM ${n.identifier(o)}`;N&&(T=n`${T} WHERE ${N}`),T=n`${T} ORDER BY ${xt(A)}`;const _=t.inMemoryFilters.length>0;!_&&!y&&(T=n`${T} LIMIT ${n.raw(String($+1))}`);const C=B(i,T).toArray();p(C.length);const O=Hn(C,t.inMemoryFilters,_||y?void 0:$);if(y){const W=O.length>=2?O[Math.floor(O.length/2)-1]:void 0;return{continueCursor:d.endCursor??null,isDone:!0,page:O,splitCursor:W?Ue(W,A):null}}const D=O.length>$,k=D?O.slice(0,$):O,Q=k.at(-1);return{continueCursor:D&&Q?Ue(Q,A):null,isDone:!D,page:k}};class Gn extends b{constructor(o="unique() found more than one matching document"){super("NOT_UNIQUE",o,{name:"NotUniqueError"})}}const Kn=/\s/u,Yn=String.fromCodePoint(0),mt=(i,o,t)=>{if(!i.tables[o])throw new b("INTERNAL",`unknown table: ${o}`);return typeof t!="string"||t.length===0||Kn.test(t)||t.includes(Yn)?null:t},zn=(i,o,t,d=()=>{},c=()=>{},p=()=>{})=>{const $=o.tables[t];if(!$)throw new b("INTERNAL",`unknown table: ${t}`);const A=de($.softDeleteMode,void 0),y=A?ne(A,ie):void 0,g={indexFields:[],indexName:void 0,inMemoryFilters:[],order:"asc",sqlConditions:[]};let N=0;const T=E=>{const{search:v}=g;if(!v)throw new b("INTERNAL","runSearchFetch called without a staged search");jt(i,t,$);const I=g.inMemoryFilters.length>0,M=_n(I?void 0:E),G=Qt(i)?Cn(i,t,v,M,y):Mn(i,t,v,M,y);return I?(N=G.length,_t(G,g.inMemoryFilters,E,ee=>ee.document)):(E===void 0&&bn(G),G)},_=E=>T(E).map(v=>v.document),C=E=>{const v=Tn(E);return Sn(_(En(v)),v)},O=()=>{const E=g.indexFields.length>0?g.indexFields:["_creationTime"],v=g.order==="desc"?"DESC":"ASC";return n.join(E.map(I=>n`${V(I)} ${n.raw(v)}`),n`, `)},D=()=>{if(g.search||g.geo||g.indexName===void 0){c(void 0);return}c(on(t,g.indexName,g.indexFields,g.sqlConditions,oe))},k=E=>{D();let v=0;const I=(()=>{if(g.search){const M=_(E);return v=N,M}return g.geo?Wn(i,t,g,y,E,M=>{v=M}):Bn(i,t,g,y,O(),E,M=>{v=M})})();return p(Math.max(v,I.length)),I},Q=()=>{if(!g.search&&!g.geo)throw new b("INTERNAL",`ctx.db.query("${t}").collectWithScores() requires a staged .withSearchIndex(...) or .withGeoIndex(...)`);D();let E=0;const v=(()=>{if(g.search){const I=T(void 0);return E=N,I}return Rt(i,t,g,y,void 0,I=>{E=I})})();return p(Math.max(E,v.length)),v},W={async*[Symbol.asyncIterator](){const E=[...g.inMemoryFilters];let v;g.inMemoryFilters=[];try{for(;;){const I=await W.paginate({cursor:v??null,numItems:xn});for(const M of I.page)E.every(G=>G(M))&&(yield M);if(I.isDone||I.continueCursor===null)return;v=I.continueCursor}}finally{g.inMemoryFilters=E}},async collect(){return k(void 0)},async collectWithScores(){return Q()},filter(E){return g.inMemoryFilters.push(E),W},async first(){return k(g.inMemoryFilters.length>0?void 0:1)[0]??null},order(E){return g.order=E==="desc"?"desc":"asc",W},async paginate(E){let v=0;if(D(),g.search){const M=C(E);return p(M.page.length),M}if(g.geo)throw new b("INTERNAL","pagination is not supported on geo queries; use .take(n) or .collect()");const I=Qn(i,t,g,E,y,M=>{v=M});return p(Math.max(v,I.page.length)),I},async take(E){return k(E)},async unique(){const E=k(g.inMemoryFilters.length>0?void 0:2);if(E.length>1)throw new Gn(`unique() on table "${t}" matched ${String(E.length)} documents; expected at most one`);return E[0]??null},withGeoIndex(E,v){const I=($.geoIndexes??[]).find(G=>G.name===E);if(!I)throw new b("INTERNAL",`unknown geo index "${E}" on table "${t}"`);d(t,E,"geo");const M={definition:I,indexName:E};if(g.geo=M,v(kn(M,t)),!M.near&&!M.within)throw new b("INTERNAL",`geo index "${E}" on table "${t}" requires a .near(point, radius) or .within(box) call`);return W},withIndex(E,v){const I=$.indexes.find(M=>M.name===E);if(!I)throw new b("INTERNAL",`unknown index "${E}" on table "${t}"`);return d(t,E,"index"),g.indexName=E,g.indexFields=I.fields,v&&v(In(g)),W},withSearchIndex(E,v){const I=($.searchIndexes??[]).find(G=>G.name===E);if(!I)throw new b("INTERNAL",`unknown search index "${E}" on table "${t}"`);d(t,E,"search");const M={definition:I,field:I.field,filters:[],hasQuery:!1,indexName:E,query:""};if(g.search=M,v(gn(M,t,je(I.language))),!M.hasQuery)throw new b("INTERNAL",`search index "${E}" on table "${t}" requires a .search(field, query) call`);return W}};return W},$t=(i,o,t)=>{const d={...o};for(const[c,p]of Et(i)){if(p.serverDefault){d[c]=p.serverDefault({auth:t});continue}d[c]===void 0&&(p.defaultFn?d[c]=p.defaultFn():"defaultValue"in p&&(d[c]=p.defaultValue))}return d},wt=(i,o,t,d)=>{const c=t;for(const[p,$]of Et(i)){if($.serverDefault){p in o&&(c[p]=$.serverDefault({auth:d}));continue}$.onUpdateFn&&!(p in o)&&(c[p]=$.onUpdateFn())}},gt=(i,o)=>{for(const t of Object.keys(o))if(o[t]===void 0)throw new b("INTERNAL",`Cannot ${i} field '${t}' to undefined — use null to clear a nullable field, or omit the key to leave it unchanged.`)},Vn=/unique constraint failed/i,Jn=i=>i instanceof Error&&Vn.test(i.message),Pe=(i,o,t)=>{try{B(i,t)}catch(d){throw Jn(d)?new he(`unique constraint violation on "${o}"`,"unique"):d}},Ae=(i,o,t)=>{if(Pe(i,o,t),B(i,n`SELECT changes() AS changed`).one().changed===0)throw new he(`optimistic concurrency conflict on "${o}" — the row changed during this mutation; refetch and retry`,"occ")},bt=(i,o,t,d,c,p,$)=>{const A=[];for(let T=0;T<t.length+1;T+=1){const _=[];for(let k=0;k<T;k+=1)_.push(n`${n.identifier(t[k])} IS ${p[k]}`);const C=t[T],O=d[T];if(C!==void 0&&O!==void 0){const k=O.direction==="desc"?">":"<";_.push(n`${n.identifier(C)} ${n.raw(k)} ${p[T]}`)}else _.push(n`${n.identifier(nn)} < ${$}`);const[D]=_;A.push(_.length===1&&D!==void 0?D:n`(${n.join(_,n` AND `)})`)}const y=n.join(A,n` OR `),g=B(i,n`SELECT COUNT(*) AS c FROM ${n.identifier(o)} WHERE ${n.identifier("__partition__")} = ${c} AND (${y})`).one(),N=B(i,n`SELECT COUNT(*) AS c FROM ${n.identifier(o)} WHERE ${n.identifier("__partition__")} = ${c}`).one();return{before:g.c,total:N.c}},Rr=i=>{const{sql:o}=i,{schema:t}=i,d=i.broadcast??(()=>{}),c=(e,...r)=>{const a=t.tables[e]?.indexes;if(!a||a.length===0)return;const l=[];for(const h of r)h&&l.push(...rn(a,h,oe));return l.length>0?l:void 0},{headroom:p}=i;let $=!1;const A=async e=>{const r=$;$=!0;try{return await e()}finally{$=r}},y=i.onRead??(()=>{}),g=i.onReadRange??(e=>{y(e.table,P)}),N=(e,r)=>{r!==void 0&&r!==P&&!$&&p?.recordRead(1),y(e,r)},T=i.onIndexUse??(()=>{}),_=i.onWrite??(()=>{}),C=async e=>{$||p?.recordWrite(e.doc),await _(e)},{cache:O}=i,D=i.clock??(()=>Date.now()),k=i.idGenerator??(()=>crypto.randomUUID()),Q=i.scheduler??Bt,{globalDb:W}=i,E=i.auth??{identity:null,userId:null},v=i.cdc??!1,I=Q,M=cn({scheduler:typeof I.list=="function"&&typeof I.get=="function"?I:void 0,storage:i.storage}),G=(e,r,a,l)=>{v&&Ht(o,D(),e,r,a,l)},ee=e=>t.tables[e]?.shardMode?.kind==="global",Qe=(e,r)=>{if(ee(e)){if(!W)throw new b("INTERNAL",`cross-backend ${r} for global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return W}return q},xe=e=>Qe(e,"cascade"),z=(e,r)=>{if(ee(e)){if(!W)throw new b("INTERNAL",`${r} on global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return W}},Ie=(e,r)=>Qe(e,"relation load").findMany(e,r),Ge=(e,r)=>(ee(e)&&N(e,P),Ie(e,r)),It=e=>!ee(e.table),Ke=i.relationExistsPushDown??"auto",Ye=Ke!=="never",{maxRelationKeys:ze}=i,pe=(e,r,a)=>st(e,{fetcher:Ge,maxRelationKeys:ze,relationBaseWhere:a,schema:t,tableName:r}),Ve=async(e,r,a,l)=>{const h=z(e,"relation grouped count");if(h)return N(e,P),sn((j,x)=>h.count(j,x),e,r,a,l);const f=t.tables[e];if(!f)throw new b("INTERNAL",`unknown table: ${e}`);N(e,P);const s=de(f.softDeleteMode,void 0),u={[r]:{in:a}},m=Y(Y(u,l),s),S=await pe(m,e,void 0),w=ne(S,ie),R=V(r);let L=n`SELECT ${R} AS __fk__, COUNT(*) AS count FROM ${n.identifier(e)}`;w&&(L=n`${L} WHERE ${w}`),L=n`${L} GROUP BY ${R}`;const F=B(o,L).toArray();return new Map(F.map(j=>[j.__fk__,j.count]))};let me=0;const Je=new Set;for(const[e,r]of Object.entries(t.tables))for(const a of Object.values(r.triggerMap??{}))Je.add(`${e} ${a.timing} ${a.op}`);const X=(e,r,a)=>Je.has(`${e} ${r} ${a}`),Z=async(e,r,a)=>{if(me+=1,me>ft)throw me-=1,new he(`trigger recursion exceeded ${String(ft)} levels on "${a.table}" — check for a self-triggering write`,"trigger");try{await un({ctx:Ct,event:a,op:r,schema:t,tableName:a.table,timing:e})}finally{me-=1}},{ensureBackfilledForTable:ce,ensureBackfilledIndex:ve,ensureRankBackfilled:Ce,ensureRankBackfilledForTable:ue,syncAggregates:$e,syncCompanionsForInsert:Xe,syncGeo:we,syncRanks:fe,syncSearch:ge}=Lt({broadcast:d,indexKeysFor:(e,r)=>c(e,r),invalidateCache:(e,r,a)=>O?.invalidate(e,r,c(e,a)),recordCdc:G,schema:t,sql:o}),Ze=(e,r,a)=>{const{shardMode:l}=r;if(l?.kind==="shardBy"&&!(l.field!==void 0&&(a.partitionBy??[]).includes(l.field)))throw Object.assign(new Error(`rank index "${a.name}" on "${e}" partitions across shards (shard key "${l.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})},et=e=>Object.entries(t.tables).filter(([,r])=>r.shardMode?.kind!=="global").map(([r])=>r).filter(r=>e===void 0||r===e),re=(e,r)=>{const a=et(r);if(a.length===0)return;const l=a.map(S=>n`SELECT ${n.raw(`'${S.replaceAll("'","''")}'`)} AS __t__, id, _creationTime, ${n.identifier(H)} FROM ${n.identifier(S)} WHERE id = ${e}`),h=n`${n.join(l,n` UNION ALL `)} LIMIT 1`,[f]=B(o,h).toArray();if(!f)return;const s=f.__t__,u=le(f);if(typeof s!="string"||!u)return;const m=f[H];return{docJson:typeof m=="string"?m:ae(m??{}),row:u,tableName:s}},vt=(e,r)=>{const a=[...new Set(e)],l=new Map;if(a.length===0)return l;const h=et(r);if(h.length===0)return l;const f=Math.max(1,Math.floor(900/h.length));for(let s=0;s<a.length;s+=f){const u=a.slice(s,s+f),m=n.join(u.map(R=>n`${R}`),n`, `),S=h.map(R=>n`SELECT ${n.raw(`'${R.replaceAll("'","''")}'`)} AS __t__, id FROM ${n.identifier(R)} WHERE id IN (${m})`),w=n.join(S,n` UNION ALL `);for(const R of B(o,w)){const{id:L,__t__:F}=R;typeof F=="string"&&typeof L=="string"&&l.set(L,F)}}return l},tt={assertRankPartitionLocal:Ze,ensureRankBackfilled:Ce,onRead:N,rowToDocument:le,schema:t,sql:o},q={system:M,async aggregate(e,r){const a=z(e,"aggregate");if(a)return N(e,P),a.aggregate(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);if(Se(r.op),r.op==="count")return q.count(e,{baseWhere:r.baseWhere,relationBaseWhere:r.relationBaseWhere,restrictsCounts:r.restrictsCounts,where:r.where});if(!r.field)throw new b("INTERNAL",`aggregate(${e}, { op: "${r.op}" }): "field" is required for non-count reducers`);N(e,P);const h=de(l.softDeleteMode,void 0),f=Y(Y(r.baseWhere,r.where),h),s=await pe(f,e,r.relationBaseWhere),u=s!==f;if(l.aggregateIndexes&&!r.baseWhere&&!u&&(!h||ht(l,[r.field]))){const F=Pt(l.aggregateIndexes,r.op,r.field,r.where);if(F){ve(e,F.index);const j=Me(F.index.by??[],F.key),x=Le(e,F.index.name),K=B(o,n`SELECT ${_e} AS value, ${Oe} AS count FROM ${n.identifier(x)} WHERE ${Re} = ${j}`).toArray()[0];return ke(r.op,K)}}pt(l,r.field,`aggregate(${e}, { op: "${r.op}", field: "${r.field}" })`);const m=ne(s,ie),S=Se(r.op),w=V(r.field);let R=n`SELECT ${n.raw(S)}(${w}) AS value FROM ${n.identifier(e)}`;return m&&(R=n`${R} WHERE ${m}`),B(o,R).toArray()[0]?.value??null},asId(e,r){const a=mt(t,e,r);if(a===null)throw new b("BAD_REQUEST",`asId("${e}", …): "${r}" is not a valid id for table "${e}"`,{status:400});return a},async count(e,r){const a=z(e,"count");if(a)return N(e,P),a.count(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=Wt(r);if(h.restrictsCounts)throw new De(e);N(e,P);const f=de(l.softDeleteMode,void 0),s=Y(Y(h.baseWhere,h.where),f),u=await pe(s,e,h.relationBaseWhere),m=u!==s;if(l.aggregateIndexes&&!h.baseWhere&&!m&&!f){const R=Ut(l.aggregateIndexes,h.where);if(R){ve(e,R.index);const L=Me(R.index.by??[],R.key),F=Le(e,R.index.name),j=B(o,n`SELECT ${_e} AS value FROM ${n.identifier(F)} WHERE ${Re} = ${L}`).toArray();return j[0]===void 0?0:j[0].value??0}}const S=ne(u,ie);let w=n`SELECT COUNT(*) AS count FROM ${n.identifier(e)}`;return S&&(w=n`${w} WHERE ${S}`),B(o,w).one().count},async delete(e,r,a){const l=re(e,r);if(!l){const w=r===void 0?W:void 0;w&&await w.delete(e,void 0,a);return}const{docJson:h,row:f,tableName:s}=l,u=t.tables[s],m=a?.hard===!0,S=!m&&u?.softDeleteMode?u.softDeleteMode.field:void 0;if(!(S&&f[S]!==null&&f[S]!==void 0)){if(X(s,"before","delete")&&await Z("before","delete",{id:e,op:"delete",previous:f,table:s}),await an({deletedId:e,deletedReference:w=>f[w],findHolders:async(w,R,L)=>(await xe(w).findMany(w,{includeDeleted:m,where:{[R]:L}})).page,onCascade:(w,R)=>xe(w).delete(R,void 0,a),onRestrict:w=>{throw new he(w,"restrict")},onSetNull:(w,R,L)=>xe(w).patch(R,{[L]:null}),schema:t,tableName:s}),ce(s),ue(s),S){const w={...f,[S]:D(),_id:e};Ae(o,s,n`UPDATE ${n.identifier(s)} SET ${n.identifier(H)} = ${ae(w)} WHERE id = ${e} AND ${n.identifier(H)} = ${h}`),ge(s,e,w,f),we(s,e,void 0),$e(s,f,w),fe(s,e,f,void 0),O?.invalidate(s,e,c(s,f,w)),G(s,e,"update",w),d({indexKeys:c(s,f,w),key:e,op:"update",row:w,table:s}),X(s,"after","delete")&&await Z("after","delete",{id:e,op:"delete",previous:f,table:s}),await C({id:e,op:"delete",table:s});return}Ae(o,s,n`DELETE FROM ${n.identifier(s)} WHERE id = ${e} AND ${n.identifier(H)} = ${h}`),ge(s,e,void 0),we(s,e,void 0),$e(s,f,void 0),fe(s,e,f,void 0),O?.invalidate(s,e,c(s,f)),G(s,e,"delete"),d({indexKeys:c(s,f),key:e,op:"delete",table:s}),X(s,"after","delete")&&await Z("after","delete",{id:e,op:"delete",previous:f,table:s}),await C({id:e,op:"delete",table:s})}},async deleteAll(e,r){if(!t.tables[e])throw new b("INTERNAL",`unknown table: ${e}`);const a=Math.max(1,r?.chunkSize??Tt),l=r?.hard===void 0?void 0:{hard:r.hard},h=ee(e)?void 0:e;let f=0;return await A(async()=>{for(;;){const s=(await q.findMany(e,{limit:a})).page.map(u=>String(u._id));if(s.length===0)break;for(const u of s)await q.delete(u,h,l),f+=1;if(s.length<a)break}}),{deleted:f}},async deleteMany(e,r,a){se(e.length,r?.limit,"deleteMany");for(const l of e)await q.delete(l,a);return{deleted:e.length}},async deleteWhere(e,r,a){const l=(await(z(e,"deleteWhere")??q).findMany(e,{where:r})).page.map(h=>String(h._id));if(se(l.length,a?.limit,"deleteWhere"),q.deleteMany===void 0)throw new b("INTERNAL",`ctx.db.${e}.deleteMany is unavailable: this writer has no batch delete`);return q.deleteMany(l,a)},async findFirst(e,r={}){return(await q.findMany(e,{...r,limit:1})).page[0]??null},async findFirstOrThrow(e,r={}){const a=await q.findFirst(e,r);if(a===null)throw new Jt(`findFirstOrThrow: no "${e}" document matched`);return a},async findMany(e,r={}){const a=z(e,"findMany");if(a)return N(e,P),a.findMany(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=!r.where&&!r.baseWhere;h?N(e,P):N(e);const f=Xt(r.orderBy),s=r.cursor?Nt(f,qe(r.cursor)):void 0;let u=Y(r.baseWhere,r.where);u=Y(u,de(l.softDeleteMode,r.includeDeleted)),u=await st(u,{canPushExists:Ye?It:void 0,existsPushMode:Ke==="always"?"always":"auto",fetcher:Ge,maxRelationKeys:ze,relationBaseWhere:r.relationBaseWhere,schema:t,tableName:e}),s&&(u=u?{AND:[u,s]}:s);const m=Ye?qn(N):ie,S=ne(u,m);let w=n`SELECT id, _creationTime, ${n.identifier(H)} FROM ${n.identifier(e)}`;S&&(w=n`${w} WHERE ${S}`),w=n`${w} ORDER BY ${xt(f)}`;const R=typeof r.limit=="number"?Math.max(0,Math.floor(r.limit)):void 0;R!==void 0&&(w=n`${w} LIMIT ${n.raw(String(R+1))}`);const L=B(o,w).toArray();h&&!$&&p?.recordRead(L.length);const F=[];for(const te of L){const U=le(te);U&&(F.push(U),!h&&typeof U._id=="string"&&N(e,U._id))}if(R===void 0)return r.with&&await dt({groupedCounter:Ve,fetcher:Ie,parents:F,...lt(r),schema:t,tableName:e,with:r.with}),{continueCursor:null,isDone:!0,page:it(F,r.select,r.with)};const j=F.length>R,x=j?F.slice(0,R):F,K=x.at(-1);return r.with&&await dt({fetcher:Ie,groupedCounter:Ve,parents:x,...lt(r),schema:t,tableName:e,with:r.with}),{continueCursor:j&&K?Ue(K,f):null,isDone:!j,page:it(x,r.select,r.with)}},async get(e,r){const a=re(e,r);if(!a){const l=r===void 0?W:void 0;return l?l.get(e):null}return N(a.tableName,e),a.row},async lookupById(e,r){const a=re(e,r);return a?(N(a.tableName,e),{row:a.row,tableName:a.tableName}):null},async groupBy(e,r){const a=z(e,"groupBy");if(a)return N(e,P),a.groupBy(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);N(e,P);const h=r.agg??{op:"count"};if(Se(h.op),h.op!=="count"&&!h.field)throw new b("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);const f=de(l.softDeleteMode,void 0),s=Y(Y(r.baseWhere,r.where),f),u=await pe(s,e,r.relationBaseWhere),m=u!==s,S=[...r.by,h.field];if(l.aggregateIndexes&&!r.baseWhere&&!m&&(!f||ht(l,S))){const x=qt(l.aggregateIndexes,h.op,h.field,r.by,r.where),K=x===void 0?0:Object.keys(x.partial).length,te=x?.index.by?.length??0;if(x&&(K===0||K===te)){ve(e,x.index);const U=Le(e,x.index.name),be=Object.keys(x.partial),Ee=[];if(be.length===(x.index.by??[]).length&&be.length>0){const ye=Me(x.index.by??[],x.partial),Ne=B(o,n`SELECT ${_e} AS value, ${Oe} AS count FROM ${n.identifier(U)} WHERE ${Re} = ${ye}`).toArray();return Ne.length>0&&Ee.push({key:{...x.partial},value:ke(h.op,Ne[0])}),Ee}const Mt=B(o,n`SELECT ${Re} AS key, ${_e} AS value, ${Oe} AS count FROM ${n.identifier(U)}`).toArray();for(const ye of Mt){const Ne=Ft(JSON.parse(ye.key));Ee.push({key:Ne,value:ke(h.op,ye)})}return Ee}}for(const x of S){if(x===void 0)continue;const K=x===h.field?`groupBy(${e}, { agg: { op: "${h.op}", field: "${x}" } })`:`groupBy(${e}, { by: [..."${x}"] })`;pt(l,x,K)}const w=ne(u,ie),R=r.by.map(x=>n`${V(x)} AS ${n.identifier(x)}`);if(h.op==="count")R.push(n`COUNT(*) AS value`);else{const{field:x}=h;if(x===void 0)throw new b("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);R.push(n`${n.raw(Se(h.op))}(${V(x)}) AS value`)}let L=n`SELECT ${n.join(R,n`, `)} FROM ${n.identifier(e)}`;w&&(L=n`${L} WHERE ${w}`),L=n`${L} GROUP BY ${n.join(r.by.map(x=>V(x)),n`, `)}`;const F=B(o,L).toArray(),j=[];for(const x of F){const K={};for(const U of r.by)K[U]=x[U]??null;const{value:te}=x;j.push({key:K,value:te==null?null:Number(te)})}return j},async insert(e,r,a){const l=z(e,"insert");if(l){const S=await l.insert(e,r,a);return $||p?.recordWrite(r),d({key:S,op:"insert",row:{...r,_id:S},table:e}),S}const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);const f=$t(h,r,E);We(h,f);let s;a?.clientId!==void 0?(An(a.clientId),s=a.clientId):a?.allowExplicitId&&typeof f._id=="string"?s=f._id:s=k();const u=a?.allowExplicitId&&typeof f._creationTime=="number"?f._creationTime:D(),m={...f,_creationTime:u,_id:s};return X(e,"before","insert")&&await Z("before","insert",{doc:{...m},id:s,op:"insert",table:e}),ce(e),ue(e),Pe(o,e,n`INSERT INTO ${n.identifier(e)} (id, _creationTime, ${n.identifier(H)}) VALUES (${s}, ${u}, ${ae(m)})`),Xe(e,s,m),X(e,"after","insert")&&await Z("after","insert",{doc:m,id:s,op:"insert",table:e}),await C({doc:m,id:s,op:"insert",table:e}),s},async insertManyUnsafe(e,r,a){if(se(r.length,a?.limit,"insertManyUnsafe"),r.length===0)return[];const l=z(e,"insert");if(l){const u=[];for(const m of r){const S=await l.insert(e,m,{allowExplicitId:a?.allowExplicitId});$||p?.recordWrite(m),d({key:S,op:"insert",row:{...m,_id:S},table:e}),u.push(S)}return u}const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);ce(e),ue(e);const f=r.map(u=>{const m=$t(h,u,E),S=a?.allowExplicitId===!0&&typeof m._id=="string"?m._id:k(),w=a?.allowExplicitId===!0&&typeof m._creationTime=="number"?m._creationTime:D();return{creationTime:w,document:{...m,_creationTime:w,_id:S},id:S}});if(!$)for(const u of f)p?.recordWrite(u.document);const s=n.join(f.map(u=>n`(${u.id}, ${u.creationTime}, ${ae(u.document)})`),n`, `);Pe(o,e,n`INSERT INTO ${n.identifier(e)} (id, _creationTime, ${n.identifier(H)}) VALUES ${s}`);for(const{document:u,id:m}of f)Xe(e,m,u),await _({doc:u,id:m,op:"insert",table:e});return f.map(u=>u.id)},async insertMany(e,r,a){se(r.length,a?.limit,"insertMany");const l=a?.skipDuplicates===!0,h=[];for(const f of r)try{h.push(await q.insert(e,f))}catch(s){if(l&&s instanceof he&&s.kind==="unique")h.push(null);else throw s}return h},normalizeId(e,r){return mt(t,e,r)},async patch(e,r,a){const l=re(e,a);if(!l){const S=a===void 0?W:void 0;if(S){await S.patch(e,r);return}throw new b("INTERNAL",`document not found: ${e}`)}const{docJson:h,row:f,tableName:s}=l,u=t.tables[s];if(!u)throw new b("INTERNAL",`unknown table: ${s}`);N(s,e),gt("patch",r);const m={...f,...r,_id:e};wt(u,r,m,E),We(u,m,!0),X(s,"before","update")&&await Z("before","update",{doc:{...m},id:e,op:"update",previous:f,table:s}),ce(s),ue(s),Ae(o,s,n`UPDATE ${n.identifier(s)} SET ${n.identifier(H)} = ${ae(m)} WHERE id = ${e} AND ${n.identifier(H)} = ${h}`),ge(s,e,m,f),we(s,e,m),$e(s,f,m),fe(s,e,f,m),O?.invalidate(s,e,c(s,f,m)),G(s,e,"update",m),d({indexKeys:c(s,f,m),key:e,op:"update",row:m,table:s}),X(s,"after","update")&&await Z("after","update",{doc:m,id:e,op:"update",previous:f,table:s}),await C({doc:m,id:e,op:"update",table:s})},async patchMany(e,r,a){se(e.length,r?.limit,"patchMany");for(const l of e)await q.patch(l.id,l.patch,a);return{patched:e.length}},async patchWhere(e,r,a){const l=(await(z(e,"patchWhere")??q).findMany(e,{where:r.where})).page.map(h=>({id:String(h._id),patch:r.patch}));if(se(l.length,a?.limit,"patchWhere"),q.patchMany===void 0)throw new b("INTERNAL",`ctx.db.${e}.patchMany is unavailable: this writer has no batch patch`);return await q.patchMany(l,a),{patched:l.length}},query(e){const r=z(e,"query");return r?(N(e,P),r.query(e)):zn(o,t,e,T,a=>{a?g(a):N(e,P)},a=>{$||p?.recordRead(a)})},async rank(e,r,a){const l=z(e,"rank");if(l)return N(e,P),l.rank(e,r,a);T(e,r,"rank");const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);const f=h.rankIndexes?.find(U=>U.name===r);if(!f)throw new b("INTERNAL",`unknown rankIndex "${r}" on table "${e}"`);if(Ze(e,h,f),a.restrictsCounts)throw new De(e);N(e,P),Ce(e,f);const s=typeof a.row=="string"?a.row:a.row._id;if(!s)return null;const u=at(e,f.name),m=f.sortBy.map((U,be)=>ot(be)),S=m.map(U=>fn(U)).join(", "),w=B(o,n`SELECT ${n.identifier("__partition__")}, ${n.raw(S)} FROM ${n.identifier(u)} WHERE ${n.identifier("__id__")} = ${s}`).toArray(),[R]=w;if(R===void 0)return null;let L=R.__partition__;const F=Y(a.baseWhere,a.where);Fe(F,t,e,"rank");const j=en(f,F);if(j){const U=tn(f.partitionBy??[],j);if(U!==L)return null;L=U}const x=m.map(U=>R[U]),{before:K,total:te}=bt(o,u,m,f.sortBy,L,x,s);return{position:K+1,total:te}},async rankBefore(e,r,a){if(ee(e))throw new b("INTERNAL",`rankBefore is not supported on the global (.global()) table '${e}' — cross-shard rank cursors apply only to sharded tables`);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=l.rankIndexes?.find(m=>m.name===r);if(!h)throw new b("INTERNAL",`unknown rankIndex "${r}" on table "${e}"`);if(a.restrictsCounts)throw new De(e);N(e,P),Ce(e,h);const f=at(e,h.name),s=h.sortBy.map((m,S)=>ot(S)),u=h.sortBy.map((m,S)=>oe(a.sortValues[S]??null));return bt(o,f,s,h.sortBy,a.partitionKey,u,a.rowId)},async rankPage(e,r,a={}){Fe(Y(a.baseWhere,a.where),t,e,"rankPage");const l=z(e,"rankPage");if(l)return N(e,P),l.rankPage(e,r,a);T(e,r,"rank");const{continueCursor:h,hasMore:f,rows:s}=nt(tt,e,r,a);return{continueCursor:h,isDone:!f,page:s.map(u=>u.doc)}},async rankPageRows(e,r,a={}){Fe(Y(a.baseWhere,a.where),t,e,"rankPage"),T(e,r,"rank");const{directions:l,hasMore:h,rows:f}=nt(tt,e,r,a);return{directions:l,hasMore:h,rows:f}},async restore(e,r){const a=re(e,r);if(!a){const f=r===void 0?W:void 0;if(f?.restore){await f.restore(e);return}throw new b("INTERNAL",`document not found: ${e}`)}const l=t.tables[a.tableName]?.softDeleteMode?.field;if(!l)throw new b("INTERNAL",`ctx.db.restore: table "${a.tableName}" is not a .softDelete() table`);const h=a.row[l]!==null&&a.row[l]!==void 0;await q.patch(e,{[l]:null},r),h&&fe(a.tableName,e,void 0,a.row)},async replace(e,r,a,l){const h=re(e,a);if(!h){const R=a===void 0?W:void 0;if(R){await R.replace(e,r,void 0,l);return}throw new b("INTERNAL",`document not found: ${e}`)}const{docJson:f,row:s,tableName:u}=h,m=t.tables[u];if(!m)throw new b("INTERNAL",`unknown table: ${u}`);gt("replace",r);const S=l?.allowExplicitId&&typeof r._creationTime=="number"?r._creationTime:D(),w={...r,_creationTime:S,_id:e};wt(m,r,w,E),We(m,w),X(u,"before","update")&&await Z("before","update",{doc:{...w},id:e,op:"update",previous:s,table:u}),ce(u),ue(u),Ae(o,u,n`UPDATE ${n.identifier(u)} SET _creationTime = ${S}, ${n.identifier(H)} = ${ae(w)} WHERE id = ${e} AND ${n.identifier(H)} = ${f}`),ge(u,e,w,s),we(u,e,w),$e(u,s,w),fe(u,e,s,w),O?.invalidate(u,e,c(u,s,w)),G(u,e,"update",w),d({indexKeys:c(u,s,w),key:e,op:"update",row:w,table:u}),X(u,"after","update")&&await Z("after","update",{doc:w,id:e,op:"update",previous:s,table:u}),await C({doc:w,id:e,op:"update",table:u})},async wipeShard(e){const r=new Set(e?.exclude),a=e?.tables,l=Object.entries(t.tables).filter(([u,m])=>r.has(u)||a!==void 0&&!a.includes(u)?!1:m.shardMode?.kind!=="global").map(([u])=>u);if(a!==void 0){for(const u of a)if(!t.tables[u])throw new b("INTERNAL",`wipeShard: unknown table: ${u}`)}const h={};let f=0;const{deleteAll:s}=q;if(s===void 0)throw new b("INTERNAL","wipeShard: this writer has no deleteAll");for(const u of l){const m=await s(u,{...e?.chunkSize===void 0?{}:{chunkSize:e.chunkSize},hard:!0});h[u]=m.deleted,f+=m.deleted}return{deleted:f,tables:h}}},Ct={db:q,scheduler:Q};return i.enforceRls===!0?dn(q,t,(e,r)=>re(e,r)?.tableName,(e,r)=>vt(e,r)):q};export{kr as CDC_LOG_TABLE,Pr as CLIENT_WATERMARK_TABLE,Kr as GLOBAL_SHAPE_SNAPSHOT_TABLE,ei as IDEMPOTENCY_TABLE,Gn as NotUniqueError,si as SEARCH_STATE_TABLE,jr as advanceClientWatermark,Lr as applyCdcChanges,An as assertValidClientId,Ir as backfillAggregateIndexes,vr as backfillRankIndexes,Cr as backfillSearchIndexes,Dr as bumpCdcEpoch,Rr as createShardCtxDb,Yr as deleteGlobalShapeSnapshot,zr as deleteGlobalShapeSnapshotsForConnection,Hr as migrateClientWatermark,Vr as migrateGlobalShapeSnapshot,Or as minCdcSeq,mt as normalizeIdStructurally,Fr as readCdcChanges,Wr as readCdcCursor,Br as readCdcEpoch,Qr as readClientWatermark,Jr as readGlobalShapeSnapshot,ti as readIdempotent,oi as runShardMigrations,li as selectShapeMemberIds,ci as selectShapeRows,qr as trimCdcChanges,ni as trimIdempotent,Xr as writeGlobalShapeSnapshot,ri as writeIdempotent};
@@ -1 +1 @@
1
- import{matchesStaticWhere as l}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{compareStrings as c}from"./aggregateTableName-DV-K7ft2.mjs";import{serializeSqlValue as f}from"./serializeSqlValue-BR4UOWoP.mjs";const n=Symbol("not-resolvable"),m=r=>{if(r!==null&&typeof r=="object"&&!Array.isArray(r)){const t=Object.keys(r);return t.length===1&&t[0]==="eq"?r.eq:n}return r},u=(r,t)=>{if(r.length===0)return"";const o={};for(const s of r.toSorted(c))o[s]=t[s]??null;return JSON.stringify(o)},h="__id__",k=r=>`__sort_k${String(r)}__`,S=(r,t)=>{const o=r.partitionBy??[],s=t??{};for(const e of Object.keys(s))if(e==="AND"||e==="OR"||e==="NOT")return;const i={};for(const e of o)if(e in s){const a=m(s[e]);if(a===n)return;i[e]=a}else if(r.where&&e in r.where)i[e]=r.where[e];else return;return i},d=(r,t)=>`${r}__rank_${t}`,b=(r,t)=>({partitionKey:u(r.partitionBy??[],t),rowId:t._id,sortValues:r.sortBy.map(o=>f(t[o.field]??null))}),g=l;export{h as RANK_TIEBREAK,u as encodePartitionKey,g as matchesRankStaticWhere,b as rankKeyFromDoc,d as rankTableName,S as resolveRankPartition,k as sortColumnName};
1
+ import{matchesStaticWhere as l}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{compareStrings as c}from"./aggregateTableName-DgYMC5tr.mjs";import{serializeSqlValue as f}from"./serializeSqlValue-BR4UOWoP.mjs";const n=Symbol("not-resolvable"),m=r=>{if(r!==null&&typeof r=="object"&&!Array.isArray(r)){const t=Object.keys(r);return t.length===1&&t[0]==="eq"?r.eq:n}return r},u=(r,t)=>{if(r.length===0)return"";const o={};for(const s of r.toSorted(c))o[s]=t[s]??null;return JSON.stringify(o)},h="__id__",k=r=>`__sort_k${String(r)}__`,S=(r,t)=>{const o=r.partitionBy??[],s=t??{};for(const e of Object.keys(s))if(e==="AND"||e==="OR"||e==="NOT")return;const i={};for(const e of o)if(e in s){const a=m(s[e]);if(a===n)return;i[e]=a}else if(r.where&&e in r.where)i[e]=r.where[e];else return;return i},d=(r,t)=>`${r}__rank_${t}`,b=(r,t)=>({partitionKey:u(r.partitionBy??[],t),rowId:t._id,sortValues:r.sortBy.map(o=>f(t[o.field]??null))}),g=l;export{h as RANK_TIEBREAK,u as encodePartitionKey,g as matchesRankStaticWhere,b as rankKeyFromDoc,d as rankTableName,S as resolveRankPartition,k as sortColumnName};
@@ -0,0 +1 @@
1
+ import{LunoraError as l}from"@lunora/errors";import{a as g}from"./wire-codec-Dsy70M3Q.mjs";const n=BigInt(Number.MAX_SAFE_INTEGER),i=(e,t)=>e<t?-1:e>t?1:0,s=(e,t)=>`${e}__agg_${t}`,c=e=>{if(typeof e=="bigint"){if(e>n||e<-n)throw new l("BAD_REQUEST",`bigint ${e.toString()} exceeds Number.MAX_SAFE_INTEGER, so an aggregateIndex declared over this column cannot tally it exactly (the companion's value column is a REAL) — drop the aggregateIndex, aggregate a narrower column, or read the rows and reduce them in the handler`);return Number(e)}if(typeof e=="number")return Number.isFinite(e)?e:void 0},d=(e,t,o,u)=>{const r=e.get(t)??{count:0,value:null};if(o.op==="count"){r.count+=1,r.value=r.count,e.set(t,r);return}const a=c(u[o.field??""]);if(o.op==="sum"||o.op==="avg"){a!==void 0&&(r.value=(r.value??0)+a,r.count+=1),e.set(t,r);return}r.count+=1,a!==void 0&&(r.value===null?r.value=a:r.value=o.op==="min"?Math.min(r.value,a):Math.max(r.value,a)),e.set(t,r)},f=(e,t)=>e==="count"?t?.value??0:!t||t.count===0?null:e==="avg"?t.value===null?null:t.value/t.count:t.value,p=(e,t)=>{if(e.length===0)return"";const o={};for(const u of e.toSorted(i))o[u]=t[u]??null;return JSON.stringify(g(o))};export{s as aggregateTableName,c as coerceAggregateNumber,i as compareStrings,p as encodeAggregateKey,d as foldAggregateTally,f as readAggregateValue};
@@ -1 +1 @@
1
- import{LunoraError as D}from"@lunora/errors";import{applySelect as v}from"./applySelect-i17LYhIU.mjs";const C=s=>({relationBaseWhere:s.relationBaseWhere,relationMask:s.relationMask}),$=(s,o)=>o.select?v(s,o.select,o.with):s,E=async(s,o,t,a,r)=>{const u=await Promise.all(a.map(async i=>{const p=r?{AND:[{[t]:i},r]}:{[t]:i};return[i,await s(o,p)]}));return new Map(u)},B=(s,o)=>{const t=new Set;for(const a of s){const r=a[o];r!=null&&t.add(r)}return[...t]},S=async s=>{const{groupedCounter:o,fetcher:t,parents:a,relationBaseWhere:r,relationMask:u,schema:i,tableName:p,with:O}=s,M=(l,e)=>u?.(l,e)??e;if(a.length===0)return;const g=i.tables[p];if(!g)throw new D("INTERNAL",`unknown table: ${p}`);const N=g.relationMap??{},W=l=>{const e=N[l];if(!e)throw new D("INTERNAL",`unknown relation "${l}" on table "${p}"`);return e},k=async(l,e,n)=>{const d=B(a,e.field);if(d.length===0){for(const c of a)c[l]=null;return}const{page:b}=await t(e.table,{baseWhere:r?.(e.table),relationBaseWhere:r,relationMask:u,where:{[e.references]:{in:d}},with:n.with}),y=new Map;for(const c of M(e.table,b))y.set(c[e.references],c);for(const c of a){const w=y.get(c[e.field]);c[l]=w?$([w],n)[0]??null:null}},j=async(l,e,n)=>{const d=B(a,e.references);if(d.length===0){for(const f of a)f[l]=[];return}const b={[e.field]:{in:d}},y=n.where?{AND:[n.where,b]}:b,{page:c}=await t(e.table,{baseWhere:r?.(e.table),orderBy:n.orderBy,relationBaseWhere:r,relationMask:u,where:y,with:n.with}),w=new Map;for(const f of M(e.table,c)){const h=f[e.field],R=w.get(h);R?R.push(f):w.set(h,[f])}const m=typeof n.limit=="number"?Math.max(0,Math.floor(n.limit)):void 0;for(const f of a){const h=w.get(f[e.references])??[];f[l]=$(m===void 0?h:h.slice(0,m),n)}},_=async l=>{for(const e of Object.keys(l)){const n=W(e),[d,b]=n.kind==="many"?[n.field,n.references]:[n.references,n.field],y=r?.(n.table),c=B(a,b),w=c.length===0?new Map:await o(n.table,d,c,y);for(const m of a){const f=m._count??{},h=m[b];f[e]=h==null?0:w.get(h)??0,m._count=f}}};for(const[l,e]of Object.entries(O)){if(e===void 0||e===!1)continue;if(l==="_count"){await _(e);continue}const n=W(l),d=e===!0?{}:e;await(n.kind==="one"?k(l,n,d):j(l,n,d))}},A=async(s,o,t)=>{const{deletedId:a,deletedReference:r,findHolders:u,onCascade:i,onRestrict:p,onSetNull:O,tableName:M}=s,g=t.references==="_id"?a:r(t.references);if(g==null)return;const N=await u(o,t.field,g);if(N.length!==0){t.onDelete==="restrict"&&p(`cannot delete "${M}" row: "${o}.${t.field}" still references it`);for(const W of N){const k=W._id;typeof k=="string"&&await(t.onDelete==="cascade"?i(o,k):O(o,k,t.field))}}},T=async s=>{const{schema:o,tableName:t}=s;if(!o.tables[t])throw new D("INTERNAL",`unknown table: ${t}`);for(const[a,r]of Object.entries(o.tables)){const u=r.relationMap;if(u)for(const i of Object.values(u))i.kind!=="one"||i.table!==t||!i.onDelete||await A(s,a,i)}},V=(s,o,t=!1)=>{for(const[a,r]of Object.entries(s.shape))a in o&&typeof r.parse=="function"&&(t&&o[a]===null&&r.kind==="optional"||r.parse(o[a]))};export{T as applyOnDelete,B as distinctValues,E as fanOutScalarCounts,C as relationHooks,S as resolveWith,V as runRowValidators};
1
+ import{LunoraError as B}from"@lunora/errors";import{applySelect as A}from"./applySelect-UY-o13Ia.mjs";const C=s=>({relationBaseWhere:s.relationBaseWhere,relationMask:s.relationMask}),$=(s,o)=>o.select?A(s,o.select,o.with):s,E=async(s,o,t,a,r)=>{const u=await Promise.all(a.map(async i=>{const p=r?{AND:[{[t]:i},r]}:{[t]:i};return[i,await s(o,p)]}));return new Map(u)},R=(s,o)=>{const t=new Set;for(const a of s){const r=a[o];r!=null&&t.add(r)}return[...t]},S=async s=>{const{groupedCounter:o,fetcher:t,parents:a,relationBaseWhere:r,relationMask:u,schema:i,tableName:p,with:O}=s,M=(l,e)=>u?.(l,e)??e;if(a.length===0)return;const g=i.tables[p];if(!g)throw new B("INTERNAL",`unknown table: ${p}`);const N=g.relationMap??{},W=l=>{const e=N[l];if(!e)throw new B("INTERNAL",`unknown relation "${l}" on table "${p}"`);return e},k=async(l,e,n)=>{const d=R(a,e.field);if(d.length===0){for(const c of a)c[l]=null;return}const{page:b}=await t(e.table,{baseWhere:r?.(e.table),relationBaseWhere:r,relationMask:u,where:{[e.references]:{in:d}},with:n.with}),y=new Map;for(const c of M(e.table,b))y.set(c[e.references],c);for(const c of a){const w=y.get(c[e.field]);c[l]=w?$([w],n)[0]??null:null}},j=async(l,e,n)=>{const d=R(a,e.references);if(d.length===0){for(const f of a)f[l]=[];return}const b={[e.field]:{in:d}},y=n.where?{AND:[n.where,b]}:b,{page:c}=await t(e.table,{baseWhere:r?.(e.table),orderBy:n.orderBy,relationBaseWhere:r,relationMask:u,where:y,with:n.with}),w=new Map;for(const f of M(e.table,c)){const h=f[e.field],D=w.get(h);D?D.push(f):w.set(h,[f])}const m=typeof n.limit=="number"?Math.max(0,Math.floor(n.limit)):void 0;for(const f of a){const h=w.get(f[e.references])??[];f[l]=$(m===void 0?h:h.slice(0,m),n)}},v=async l=>{for(const e of Object.keys(l)){const n=W(e),[d,b]=n.kind==="many"?[n.field,n.references]:[n.references,n.field],y=r?.(n.table),c=R(a,b),w=c.length===0?new Map:await o(n.table,d,c,y);for(const m of a){const f=m._count??{},h=m[b];f[e]=h==null?0:w.get(h)??0,m._count=f}}};for(const[l,e]of Object.entries(O)){if(e===void 0||e===!1)continue;if(l==="_count"){await v(e);continue}const n=W(l),d=e===!0?{}:e;await(n.kind==="one"?k(l,n,d):j(l,n,d))}},I=async(s,o,t)=>{const{deletedId:a,deletedReference:r,findHolders:u,onCascade:i,onRestrict:p,onSetNull:O,tableName:M}=s,g=t.references==="_id"?a:r(t.references);if(g==null)return;const N=await u(o,t.field,g);if(N.length!==0){t.onDelete==="restrict"&&p(`cannot delete "${M}" row: "${o}.${t.field}" still references it`);for(const W of N){const k=W._id;typeof k=="string"&&await(t.onDelete==="cascade"?i(o,k):O(o,k,t.field))}}},T=async s=>{const{schema:o,tableName:t}=s;if(!o.tables[t])throw new B("INTERNAL",`unknown table: ${t}`);for(const[a,r]of Object.entries(o.tables)){const u=r.relationMap;if(u)for(const i of Object.values(u))i.kind!=="one"||i.table!==t||!i.onDelete||await I(s,a,i)}},V=(s,o,t=!1)=>{for(const[a,r]of Object.entries(s.shape))a in o&&typeof r.parse=="function"&&(t&&o[a]===null&&r.kind==="optional"||r.parse(o[a]))};export{T as applyOnDelete,R as distinctValues,E as fanOutScalarCounts,C as relationHooks,S as resolveWith,V as runRowValidators};
@@ -0,0 +1 @@
1
+ import{LunoraError as h}from"@lunora/errors";import{s as m,a as S}from"./wire-codec-Dsy70M3Q.mjs";const g="id",y=new Set(["_id","id"]),C=r=>{const e=[];for(const o of r??[])for(const[t,i]of Object.entries(o))e.push({direction:i,field:t});return e.length===0?[{direction:"asc",field:"_creationTime"}]:e},w=r=>{const e=new TextEncoder().encode(r);let o="";for(const t of e)o+=String.fromCodePoint(t);return btoa(o)},b=r=>{const e=atob(r),o=Uint8Array.from(e,t=>t.codePointAt(0)??0);return new TextDecoder().decode(o)},D=(r,e)=>{const o=e.map(t=>r[t.field]);return o.push(r._id),w(JSON.stringify(S(o)))},a=()=>new h("BAD_REQUEST","invalid cursor"),E=r=>{let e;try{e=m(JSON.parse(b(r)))}catch{throw a()}if(!Array.isArray(e))throw a();return e},f=(r,e,o)=>{const t=r.some(s=>y.has(s.field))?r:[...r,{direction:"asc",field:g}],i=[];for(const[s,n]of t.entries()){const c=[];for(const[u,p]of t.slice(0,s).entries())c.push({[p.field]:{eq:e[u]}});const l=o(n.direction,s===t.length-1);c.push({[n.field]:{[l]:e[s]}});const[d]=c;i.push(c.length===1&&d!==void 0?d:{AND:c})}return{OR:i}},T=(r,e)=>f(r,e,o=>o==="desc"?"lt":"gt"),v=(r,e)=>r==="desc"?e?"gte":"gt":e?"lte":"lt",k=(r,e)=>f(r,e,v),A=["_id","_creationTime"],B=(r,e,o)=>{if(!e)return r;const t=new Set([...e,...A,...o?Object.keys(o):[]]);return r.map(i=>{const s={};for(const n of t)n in i&&(s[n]=i[n]);return s})},N=(r,e)=>r&&e!==!0?{[r.field]:{isNull:!0}}:void 0,x=(r,e)=>e===void 0||r[e]===null||r[e]===void 0;export{B as applySelect,k as buildSeekBeforeWhere,T as buildSeekWhere,E as decodeCursor,D as encodeCursor,b as fromBase64,a as invalidCursor,x as isLiveForCompanion,C as normalizeOrderKeys,N as softDeleteScope,w as toBase64};
@@ -0,0 +1 @@
1
+ import{B as R,W as x,x as k,T as S,l as O,y as M,c as w}from"./ctx-db-companions-BTi8DLUl.mjs";import"@lunora/errors";import{sql as r}from"drizzle-orm";import{matchesStaticWhere as A}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as L,foldAggregateTally as C,aggregateTableName as F}from"./aggregateTableName-DgYMC5tr.mjs";import{migrateSearchState as y,readSearchBackfillState as D,writeSearchBackfillState as N}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{runDrizzle as d}from"./runDrizzle-B6rnz3so.mjs";import{C as T,E as p,c as v,p as B,T as W,a as E,D as j}from"./do-sql-1Yi1_Yq0.mjs";import{isLiveForCompanion as _}from"./applySelect-UY-o13Ia.mjs";import{matchesRankStaticWhere as U,rankTableName as V}from"./RANK_TIEBREAK-DDtST3gN.mjs";const Y=(e,o)=>e.profile!==o?{cursor:void 0,finished:!1,wipe:e.cursor!==void 0||e.done}:{cursor:e.cursor,finished:e.done,wipe:!1},u=(e,o)=>d(e,r`SELECT COUNT(*) AS count FROM ${r.identifier(o)}`).one().count>0,I=(e,o)=>d(e,r`SELECT id, _creationTime, ${r.identifier(E)} FROM ${r.identifier(o)}`).toArray(),q=(e,o,n,i)=>{const t=F(o,n.name);if(u(e,t))return;const s=n.by??[],c=new Map,f=I(e,o);for(const l of f){const a=p(l);if(!a||!_(a,i)||n.where&&!A(a,n.where))continue;const $=L(s,a);C(c,$,n,a)}for(const[l,a]of c)d(e,r`INSERT INTO ${r.identifier(t)} (${v}, ${B}, ${W}) VALUES (${l}, ${a.value}, ${a.count})`)},re=(e,o)=>{for(const[n,i]of Object.entries(o.tables))if(!(i.shardMode?.kind==="global"||!i.aggregateIndexes))for(const t of i.aggregateIndexes)q(e,n,t,i.softDeleteMode?.field)},z=(e,o,n)=>{const i=V(o,n.name);if(u(e,i))return;const t=R(n),s=I(e,o);for(const c of s){const f=p(c);!f||n.where&&!U(f,n.where)||x(e,i,n,t,f._id,f)}},oe=(e,o)=>{for(const[n,i]of Object.entries(o.tables))if(!(i.shardMode?.kind==="global"||!i.rankIndexes))for(const t of i.rankIndexes)z(e,n,t)},g=500,b=(e,o,n)=>{const i=w(o,n.name),{profile:t}=k(n.language),s=Y(D(e,i),t);if(s.finished)return!0;s.wipe&&d(e,r`DELETE FROM ${r.identifier(i)}`);const{cursor:c}=s,f=d(e,c===void 0?r`SELECT id, _creationTime, ${r.identifier(E)} FROM ${r.identifier(o)} ORDER BY id ASC LIMIT ${r.raw(String(g))}`:r`SELECT id, _creationTime, ${r.identifier(E)} FROM ${r.identifier(o)} WHERE id > ${c} ORDER BY id ASC LIMIT ${r.raw(String(g))}`).toArray();let l=c;for(const $ of f){const{id:m}=$;if(typeof m!="string")continue;l=m,d(e,r`DELETE FROM ${r.identifier(i)} WHERE ${r.identifier(S)} = ${m}`);const h=j($);h&&d(e,r`INSERT INTO ${r.identifier(i)} (${r.identifier(O)}, ${r.identifier(S)}) VALUES (${M(h,n)}, ${m})`)}const a=f.length<g;return N(e,i,l,a,t),a},ne=(e,o,n)=>{if(T(e))for(const i of n.searchIndexes??[])i.staged||b(e,o,i)},te=(e,o)=>{if(T(e)){y(e);for(const[n,i]of Object.entries(o.tables))if(!(i.shardMode?.kind==="global"||!i.searchIndexes))for(const t of i.searchIndexes){let s=!1;for(;!s;)s=b(e,n,t)}}};export{re as backfillAggregateIndexes,oe as backfillRankIndexes,te as backfillSearchIndexes,ne as backfillSearchIndexesForTable};
@@ -1 +1 @@
1
- import{LunoraError as A}from"@lunora/errors";import{sql as t}from"drizzle-orm";import{mergeWhere as x}from"./CountRlsUnsupportedError-8BqPYQoP.mjs";import{SCAN_DEP as O}from"./SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as B}from"./runDrizzle-B6rnz3so.mjs";import{param as q}from"./param-B5lF5Jd9.mjs";import{decodeCursor as W,toBase64 as z}from"./applySelect-i17LYhIU.mjs";import{sortColumnName as F,resolveRankPartition as H,RANK_TIEBREAK as m,encodePartitionKey as J,rankTableName as V}from"./RANK_TIEBREAK-DYDRmLKH.mjs";const Y="__doc__",G=n=>z(JSON.stringify(n)),X=n=>n.after?[n.after.partitionKey,...n.after.sortValues,n.after.rowId]:n.cursor?W(n.cursor):void 0,Z=(n,o,c)=>{if(n?.length!==1+o.length+1)return;const i=[{column:"__partition__",direction:"asc"}];for(const[a,f]of o.entries())i.push({column:f,direction:c[a]?.direction??"asc"});i.push({column:m,direction:"asc"});const s=[];for(const[a,f]of i.entries()){const e=[];for(const[r,$]of i.slice(0,a).entries())e.push(t`${t.identifier($.column)} IS ${n[r]}`);e.push(t`${t.identifier(f.column)} ${t.raw(f.direction==="desc"?"<":">")} ${n[a]}`);const[d]=e;s.push(e.length===1&&d!==void 0?d:t`(${t.join(e,t` AND `)})`)}return t`(${t.join(s,t` OR `)})`},C=null,Q=(n,o)=>{if(n===void 0)return C;const c=[n.__partition__,...o.map(i=>n[i]),n[m]];return G(c)},U=(n,o,c)=>{const i=[];for(const s of n){const a=s[m];if(typeof a!="string")continue;const f=o.get(a);if(!f)continue;const e=typeof s.__partition__=="string"?s.__partition__:"",d=c.map(r=>s[r]??null);i.push({doc:f,key:{partitionKey:e,rowId:a,sortValues:d}})}return i},tt=(n,o,c)=>{const{rowToDocument:i}=n,s=new Map;if(c.length===0)return s;const a=t.join(c.map(e=>q(e)),t`, `),f=B(n.sql,t`SELECT id, _creationTime, ${t.identifier(Y)} FROM ${t.identifier(o)} WHERE id IN (${a})`).toArray();for(const e of f){const d=i(e),r=e.id;d&&typeof r=="string"&&s.set(r,d)}return s},ft=(n,o,c,i)=>{const{assertRankPartitionLocal:s,ensureRankBackfilled:a,onRead:f,schema:e}=n,d=e.tables[o];if(!d)throw new A("INTERNAL",`unknown table: ${o}`);const r=d.rankIndexes?.find(p=>p.name===c);if(!r)throw new A("INTERNAL",`unknown rankIndex "${c}" on table "${o}"`);s(o,d,r),f(o,O),a(o,r);const $=V(o,r.name),u=r.sortBy.map((p,w)=>F(w)),l=Math.max(1,Math.min(1e3,Math.floor(i.take??100))),S=x(i.baseWhere,i.where),R=H(r,S),h=[t`${t.identifier("__partition__")} ASC`];for(const[p,w]of u.entries()){const v=r.sortBy[p]?.direction;h.push(t`${t.identifier(w)} ${t.raw(v==="desc"?"DESC":"ASC")}`)}h.push(t`${t.identifier(m)} ASC`);const _=[];typeof i.partitionKey=="string"?_.push(t`${t.identifier("__partition__")} = ${i.partitionKey}`):R&&_.push(t`${t.identifier("__partition__")} = ${J(r.partitionBy??[],R)}`);const T=X(i),k=Z(T,u,r.sortBy);k&&_.push(k);const I=t.identifier(m),N=t.identifier("__partition__"),M=_.length>0?t` WHERE ${t.join(_,t` AND `)}`:t``,D=u.length>0?t`${I}, ${N}, ${t.join(u.map(p=>t.identifier(p)),t`, `)}`:t`${I}, ${N}`,K=t`SELECT ${D} FROM ${t.identifier($)}${M} ORDER BY ${t.join(h,t`, `)} LIMIT ${t.raw(String(l+1))}`,y=B(n.sql,K).toArray(),g=y.length>l,E=g?y.slice(0,l):y,L=E.map(p=>p[m]),b=U(E,tt(n,o,L),u),j=g?Q(E.at(-1),u):C,P=r.sortBy.map(p=>p.direction==="desc"?"desc":"asc");return{continueCursor:j,directions:P,hasMore:g,rows:b}};export{ft as computeRankPage,tt as hydrateDocsById};
1
+ import{LunoraError as A}from"@lunora/errors";import{sql as t}from"drizzle-orm";import{mergeWhere as x}from"./CountRlsUnsupportedError-8BqPYQoP.mjs";import{SCAN_DEP as O}from"./SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as B}from"./runDrizzle-B6rnz3so.mjs";import{param as q}from"./param-B5lF5Jd9.mjs";import{decodeCursor as W,toBase64 as z}from"./applySelect-UY-o13Ia.mjs";import{sortColumnName as F,resolveRankPartition as H,RANK_TIEBREAK as m,encodePartitionKey as J,rankTableName as V}from"./RANK_TIEBREAK-DDtST3gN.mjs";const Y="__doc__",G=n=>z(JSON.stringify(n)),X=n=>n.after?[n.after.partitionKey,...n.after.sortValues,n.after.rowId]:n.cursor?W(n.cursor):void 0,Z=(n,o,c)=>{if(n?.length!==1+o.length+1)return;const i=[{column:"__partition__",direction:"asc"}];for(const[a,f]of o.entries())i.push({column:f,direction:c[a]?.direction??"asc"});i.push({column:m,direction:"asc"});const s=[];for(const[a,f]of i.entries()){const e=[];for(const[r,$]of i.slice(0,a).entries())e.push(t`${t.identifier($.column)} IS ${n[r]}`);e.push(t`${t.identifier(f.column)} ${t.raw(f.direction==="desc"?"<":">")} ${n[a]}`);const[d]=e;s.push(e.length===1&&d!==void 0?d:t`(${t.join(e,t` AND `)})`)}return t`(${t.join(s,t` OR `)})`},C=null,Q=(n,o)=>{if(n===void 0)return C;const c=[n.__partition__,...o.map(i=>n[i]),n[m]];return G(c)},U=(n,o,c)=>{const i=[];for(const s of n){const a=s[m];if(typeof a!="string")continue;const f=o.get(a);if(!f)continue;const e=typeof s.__partition__=="string"?s.__partition__:"",d=c.map(r=>s[r]??null);i.push({doc:f,key:{partitionKey:e,rowId:a,sortValues:d}})}return i},tt=(n,o,c)=>{const{rowToDocument:i}=n,s=new Map;if(c.length===0)return s;const a=t.join(c.map(e=>q(e)),t`, `),f=B(n.sql,t`SELECT id, _creationTime, ${t.identifier(Y)} FROM ${t.identifier(o)} WHERE id IN (${a})`).toArray();for(const e of f){const d=i(e),r=e.id;d&&typeof r=="string"&&s.set(r,d)}return s},ft=(n,o,c,i)=>{const{assertRankPartitionLocal:s,ensureRankBackfilled:a,onRead:f,schema:e}=n,d=e.tables[o];if(!d)throw new A("INTERNAL",`unknown table: ${o}`);const r=d.rankIndexes?.find(p=>p.name===c);if(!r)throw new A("INTERNAL",`unknown rankIndex "${c}" on table "${o}"`);s(o,d,r),f(o,O),a(o,r);const $=V(o,r.name),u=r.sortBy.map((p,w)=>F(w)),l=Math.max(1,Math.min(1e3,Math.floor(i.take??100))),S=x(i.baseWhere,i.where),R=H(r,S),h=[t`${t.identifier("__partition__")} ASC`];for(const[p,w]of u.entries()){const v=r.sortBy[p]?.direction;h.push(t`${t.identifier(w)} ${t.raw(v==="desc"?"DESC":"ASC")}`)}h.push(t`${t.identifier(m)} ASC`);const _=[];typeof i.partitionKey=="string"?_.push(t`${t.identifier("__partition__")} = ${i.partitionKey}`):R&&_.push(t`${t.identifier("__partition__")} = ${J(r.partitionBy??[],R)}`);const T=X(i),k=Z(T,u,r.sortBy);k&&_.push(k);const I=t.identifier(m),N=t.identifier("__partition__"),M=_.length>0?t` WHERE ${t.join(_,t` AND `)}`:t``,D=u.length>0?t`${I}, ${N}, ${t.join(u.map(p=>t.identifier(p)),t`, `)}`:t`${I}, ${N}`,K=t`SELECT ${D} FROM ${t.identifier($)}${M} ORDER BY ${t.join(h,t`, `)} LIMIT ${t.raw(String(l+1))}`,y=B(n.sql,K).toArray(),g=y.length>l,E=g?y.slice(0,l):y,L=E.map(p=>p[m]),b=U(E,tt(n,o,L),u),j=g?Q(E.at(-1),u):C,P=r.sortBy.map(p=>p.direction==="desc"?"desc":"asc");return{continueCursor:j,directions:P,hasMore:g,rows:b}};export{ft as computeRankPage,tt as hydrateDocsById};
@@ -0,0 +1 @@
1
+ import{w as C,W as R,B as S}from"./ctx-db-companions-BTi8DLUl.mjs";import"@lunora/errors";import"drizzle-orm";import"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import"./aggregateTableName-DgYMC5tr.mjs";import"./runDrizzle-B6rnz3so.mjs";import"./do-sql-1Yi1_Yq0.mjs";import"./param-B5lF5Jd9.mjs";import"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import"./applySelect-UY-o13Ia.mjs";import"./RANK_TIEBREAK-DDtST3gN.mjs";import"./sql-projection-jfoe331H.mjs";import"./serializeSqlValue-BR4UOWoP.mjs";export{C as createCompanionSync,R as insertRankRow,S as rankColumnsSql};
@@ -0,0 +1,7 @@
1
+ import{f as S,g,u as f,l as q,s as w,o as _}from"./sibling-channel-bg9FBL5s.mjs";const A=["wnam","enam","sam","weur","eeur","apac","apac-ne","apac-se","oc","afr","me"],N=new Set(A),T=t=>typeof t=="string"&&N.has(t),u="::replica::",v=t=>{const e=t.lastIndexOf(u);if(e===-1)return;const s=t.slice(0,e),r=t.slice(e+u.length);if(!(s.length===0||!T(r)))return{ownerKey:s,region:r}},L=t=>{if(t==null||!/^\d+$/.test(t))return;const e=Number.parseInt(t,10);return Number.isSafeInteger(e)&&e>0?e:void 0},O=1e3,y=1e3,C=10,m=5e4,b=t=>f(t,"LUNORA_REPLICA_MAX_BOOTSTRAP_ROWS",m),h="__replica_state",l=new WeakSet,E=t=>{l.has(t)||(t.exec(`CREATE TABLE IF NOT EXISTS ${h} (
2
+ id INTEGER PRIMARY KEY CHECK (id = 1),
3
+ epoch TEXT NOT NULL,
4
+ applied_seq INTEGER NOT NULL,
5
+ synced_at REAL NOT NULL
6
+ )`),l.add(t))},c=t=>(E(t),t.exec(`SELECT epoch, applied_seq AS appliedSeq, synced_at AS syncedAtMs FROM ${h} WHERE id = 1`).toArray()[0]),d=(t,e)=>{E(t),t.exec(`INSERT INTO ${h} (id, epoch, applied_seq, synced_at) VALUES (1, ?, ?, ?)
7
+ ON CONFLICT(id) DO UPDATE SET epoch = excluded.epoch, applied_seq = excluded.applied_seq, synced_at = excluded.synced_at`,e.epoch,e.appliedSeq,e.syncedAtMs)},F=t=>{const e=t.doName();if(e!==void 0&&v(e)!==void 0)return new Response("replica cannot serve replicas",{status:409});if(t.ownerEpoch()===void 0)return new Response("shard has no changelog to replicate",{status:409});if(w(t.env())===void 0)return new Response("replica control requires LUNORA_RELAY_SECRET",{status:403})},U=async(t,e)=>{const s=F(t);if(s!==void 0)return s;const r=t.ownerEpoch();let i;try{i=await e.text()}catch{return new Response("bad request",{status:400})}if(!await S(t.env(),e.headers.get(g),i))return new Response("forbidden",{status:403});let n;try{n=JSON.parse(i)}catch{return new Response("bad request",{status:400})}if(n.type==="replica_bootstrap"){if(t.rowCount()>b(t.env()))return Response.json({cursor:0,epoch:r,rows:[],truncated:!0});const a=t.ownerCursor()??0,o=await t.exportRows();return Response.json({cursor:a,epoch:r,rows:o})}if(n.type==="replica_pull"){const a=typeof n.sinceSeq=="number"&&Number.isInteger(n.sinceSeq)&&n.sinceSeq>=0?n.sinceSeq:0,{changes:o,cursor:R}=t.readChanges(a,y),p=t.ownerFloor();return Response.json({changes:o,cursor:R,epoch:r,...p===void 0?{}:{floor:p}})}return new Response("unknown replica frame",{status:400})};class I{constructor(e,s,r){this.host=e,this.ownerKey=s,this.region=r}host;ownerKey;region;divergent=!1;inFlight;async ensureFresh(e){if(this.divergent)return"unavailable";if(this.isCaughtUp(e))return"fresh";this.inFlight??=this.advance(e).finally(()=>{this.inFlight=void 0});const s=await this.inFlight;return s==="fresh"&&!this.isCaughtUp(e)?"stale":s}appliedSeq(){return c(this.host.sql())?.appliedSeq??0}isDivergent(){return this.divergent}async advance(e){let s=c(this.host.sql());if(s===void 0){const r=await this.bootstrap();if(r===void 0)return"unavailable";s=r}return this.catchUp(s,e)}isCaughtUp(e){const s=c(this.host.sql());return s!==void 0&&this.isFreshEnough(s,e)}async catchUp(e,s){let r=e;for(let i=0;i<C;i+=1){const n=await this.pull(r.appliedSeq);if(n===void 0)return s===void 0&&this.isFreshEnough(r,void 0)?"fresh":"unavailable";if(this.hasDiverged(r,n))return"unavailable";const a=n.changes.length<y;if(r=await this.applyPage(n),a||this.isFreshEnough(r,s))return this.isFreshEnough(r,s)?"fresh":"stale"}return this.isFreshEnough(r,s)?"fresh":"stale"}async applyPage(e){e.changes.length>0&&await this.host.applyChanges(e.changes);const s={appliedSeq:e.cursor,epoch:e.epoch,syncedAtMs:Date.now()};return d(this.host.sql(),s),s}hasDiverged(e,s){const r=s.changes.length===0&&s.cursor>e.appliedSeq,i=s.floor??(r?s.cursor:0),n=i>0&&i>e.appliedSeq+1;return s.epoch===e.epoch&&!n?!1:(this.divergent=!0,!0)}async bootstrap(){const e=await this.request({type:"replica_bootstrap"});if(e===void 0)return;const s=await e.json();if(s.truncated===!0){this.divergent=!0;return}const{errors:r}=await this.host.importRows(s.rows);if(r.length>0){this.divergent=!0;return}const i={appliedSeq:s.cursor,epoch:s.epoch,syncedAtMs:Date.now()};return d(this.host.sql(),i),i}isFreshEnough(e,s){return s!==void 0?e.appliedSeq>=s:Date.now()-e.syncedAtMs<=f(this.host.env(),"LUNORA_REPLICA_MAX_STALENESS_MS",O)}async pull(e){const s=await this.request({sinceSeq:e,type:"replica_pull"});return s===void 0?void 0:await s.json()}async request(e){const s=this.host.shardBinding(),r=q(this.host.env(),s,this.ownerKey);if(r===void 0)return;const i=JSON.stringify(e),n={"content-type":"application/json","x-lunora-shard-binding":s??""},a=w(this.host.env());a!==void 0&&(n[g]=await _(a,i));try{const o=await r.fetch("https://replica.internal/_lunora/replica",{body:i,headers:n,method:"POST"});return o.ok?o:void 0}catch{return}}}const $=t=>{const e=t.doName();if(e===void 0)return;const s=v(e);return s===void 0?void 0:new I(t,s.ownerKey,s.region)},D=async(t,e,s)=>{if(e.headers.get("x-lunora-replica-read")!=="1")return Response.json({error:{code:"REPLICA_READ_ONLY",message:`"${s}" is a write and cannot run on a read replica`}},{status:421});const r=await t.ensureFresh(L(e.headers.get("x-lunora-min-seq")));if(r!=="fresh")return Response.json({error:{code:"REPLICA_NOT_READY",message:`replica is ${r} for this read`}},{headers:{"x-lunora-replica-fallback":r},status:421})};export{$ as createReplicaLink,D as gateReplicaDispatch,U as handleReplicaControl};
@@ -0,0 +1 @@
1
+ import"@lunora/errors";import{sql as e}from"drizzle-orm";import{matchesStaticWhere as V,aggregateSqlFunction as de}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as O,foldAggregateTally as G,coerceAggregateNumber as I,aggregateTableName as P}from"./aggregateTableName-DgYMC5tr.mjs";import{runDrizzle as $}from"./runDrizzle-B6rnz3so.mjs";import{C as ce,a as M,E as k,c as x,p as v,T as y,h as fe,A as C,N as D}from"./do-sql-1Yi1_Yq0.mjs";import{param as $e}from"./param-B5lF5Jd9.mjs";import{encodeGeohash as ue,GEO_DEFAULT_PRECISION as me}from"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{isLiveForCompanion as J}from"./applySelect-UY-o13Ia.mjs";import{encodePartitionKey as Ee,sortColumnName as he,matchesRankStaticWhere as Y,rankTableName as Z}from"./RANK_TIEBREAK-DDtST3gN.mjs";import{y as pe}from"./sql-projection-jfoe331H.mjs";import{serializeSqlValue as ee}from"./serializeSqlValue-BR4UOWoP.mjs";const ge=["de","en","es","fr","it","nl","none","pt"],ye=o=>ge.includes(o),_e="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",be="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",ve="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",we="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",Te="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",Se="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",Ae="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ê",Re=/[\u0300-\u036F]/gu,ne=o=>o.normalize("NFD").replaceAll(Re,"").normalize("NFC").toLowerCase(),j=o=>new Set(ne(o).split(" ")),Le={de:j(be),en:j(_e),es:j(ve),fr:j(we),it:j(Te),nl:j(Se),none:new Set,pt:j(Ae)},Ne=2,Oe=256,X=new Map,je=o=>{const a=o!==void 0&&ye(o)?o:"none",l=X.get(a);if(l)return l;const g=Le[a],S=r=>{const A=(ne(r).match(/[\p{L}\p{N}]+/gu)??[]).filter(w=>w.length<=Oe);return g.size===0?A:A.filter(w=>!g.has(w))},m={document:S,profile:`${a}-v${String(Ne)}`,query:r=>{const A=S(r);return A.filter((w,L)=>A.lastIndexOf(w)===L)}};return X.set(a,m),m},xe=(o,a)=>{if(!a.includes("."))return o[a];let l=o;for(const g of a.split(".")){if(l===null||typeof l!="object"||Array.isArray(l))return;l=l[g]}return l},Fe=(o,a)=>`${o}__fts_${a}`,Ie="__text__",Q="__id__",Ce=1e3,Me=(o,a)=>a.document(o),q=(o,a)=>xe(o,a),ke=o=>typeof o=="string"?o:o==null?"":typeof o=="number"||typeof o=="bigint"||typeof o=="boolean"?String(o):JSON.stringify(o)??"",De=(o,a,l)=>o!==void 0&&a!==void 0&&q(o,l.field)===q(a,l.field),qe=(o,a)=>Me(ke(q(o,a.field)),je(a.language)).slice(0,Ce).join(" "),ze=(o,a,l)=>[...o.partitionBy??[],...o.sortBy.map(g=>g.field),...o.where?Object.keys(o.where):[]].every(g=>a[g]===l[g]),oe=o=>e.join(["__id__","__partition__",...o.sortBy.map((a,l)=>he(l))].map(a=>e.identifier(a)),e`, `),ie=(o,a,l,g,S,m)=>{const r=Ee(l.partitionBy??[],m),A=l.sortBy.map(L=>ee(m[L.field]??null)),w=e.join([S,r,...A].map(L=>$e(L)),e`, `);$(o,e`INSERT INTO ${e.identifier(a)} (${g}) VALUES (${w})`)},We=(o,a,l,g,S,m)=>{if(S&&m&&ze(l,S,m))return;const r=Z(a,l.name);S&&$(o,e`DELETE FROM ${e.identifier(r)} WHERE ${e.identifier("__id__")} = ${g}`),!(!m||l.where&&!Y(m,l.where))&&ie(o,r,l,oe(l),g,m)},en=o=>{const{broadcast:a,indexKeysFor:l,invalidateCache:g,recordCdc:S,schema:m,sql:r}=o,A=new Set,w=i=>m.tables[i]?.softDeleteMode?.field,L=new Set,z=(i,n)=>{const s=`${i}::${n.name}`;if(A.has(s))return;const d=P(i,n.name),c=n.by??[],f=w(i),h=new Map,_=$(r,e`SELECT id, _creationTime, ${e.identifier(M)} FROM ${e.identifier(i)}`).toArray();for(const T of _){const u=k(T);if(!u||!J(u,f)||n.where&&!V(u,n.where))continue;const E=O(c,u);G(h,E,n,u)}$(r,e`DELETE FROM ${e.identifier(d)}`);const R=32,N=[...h];for(let T=0;T<N.length;T+=R){const u=N.slice(T,T+R),E=e.join(u.map(([t,p])=>e`(${t}, ${p.value}, ${p.count})`),e`, `);$(r,e`INSERT INTO ${e.identifier(d)} (${x}, ${v}, ${y}) VALUES ${E}`)}A.add(s)},te=(i,n,s)=>{const d=n.by??[],c=n.field??"",f=[],h=(E,t)=>{const p=ee(t);p===null?f.push(e`${D(E)} IS NULL`):f.push(e`${D(E)} = ${p}`)};for(const E of d)h(E,s[E]??null);const _=w(i);_!==void 0&&h(_,null);for(const[E,t]of Object.entries(n.where??{}))h(E,t!==null&&typeof t=="object"&&!Array.isArray(t)?t.eq:t);const R=f.length>0?e` WHERE ${e.join(f,e` AND `)}`:e``,N=m.tables[i]?.shape[c];if(N&&pe(N)){const E=$(r,e`SELECT id, _creationTime, ${e.identifier(M)} FROM ${e.identifier(i)}${R}`).toArray(),t=new Map;for(const p of E){const b=k(p);b&&G(t,"",n,b)}return{value:t.get("")?.value??null}}const T=de(n.op),u=D(c);return{value:$(r,e`SELECT ${e.raw(T)}(${u}) AS value FROM ${e.identifier(i)}${R}`).one().value??null}},re=(i,n,s,d)=>{const c=P(i,n.name),{op:f}=n,h=n.field??"",_=t=>{$(r,e`DELETE FROM ${e.identifier(c)} WHERE ${x} = ${t} AND ${y} <= 0`)},R=w(i),N=t=>!n.where||V(t,n.where),T=t=>J(t,R)&&N(t);d!==void 0&&f!=="count"&&N(d)&&I(d[h]);const u=s&&T(s)?s:void 0,E=d&&T(d)?d:void 0;if(!(!u&&!E)){if(f==="count"){for(const[t,p]of[[u,-1],[E,1]]){if(!t)continue;const b=O(n.by??[],t);$(r,C(c,b,p,p,e`${v} = ${v} + excluded.${v}, ${y} = ${y} + excluded.${y}`))}u&&_(O(n.by??[],u));return}if(f==="sum"||f==="avg"){for(const[t,p]of[[u,-1],[E,1]]){if(!t)continue;const b=I(t[h]);if(b===void 0)continue;const F=O(n.by??[],t);$(r,C(c,F,p*b,p,e`${v} = COALESCE(${v}, 0) + excluded.${v}, ${y} = ${y} + excluded.${y}`))}u&&_(O(n.by??[],u));return}if(u){const t=O(n.by??[],u),p=I(u[h]),b=$(r,e`SELECT ${v} AS value, ${y} AS count FROM ${e.identifier(c)} WHERE ${x} = ${t}`).toArray()[0],F=(b?.count??0)-1;if(F<=0)$(r,e`DELETE FROM ${e.identifier(c)} WHERE ${x} = ${t}`);else if(b&&p!==void 0&&b.value!==null&&p===b.value){const le=te(i,n,u);$(r,e`UPDATE ${e.identifier(c)} SET ${v} = ${le.value}, ${y} = ${F} WHERE ${x} = ${t}`)}else $(r,e`UPDATE ${e.identifier(c)} SET ${y} = ${y} - 1 WHERE ${x} = ${t}`)}if(E){const t=O(n.by??[],E),p=I(E[h]);if(p===void 0)$(r,C(c,t,null,1,e`${y} = ${y} + 1`));else{const b=f==="min"?"MIN":"MAX";$(r,C(c,t,p,1,e`${v} = ${e.raw(b)}(COALESCE(${v}, excluded.${v}), excluded.${v}), ${y} = ${y} + 1`))}}}},ae=i=>{for(const n of m.tables[i]?.aggregateIndexes??[])z(i,n)},W=(i,n,s)=>{for(const d of m.tables[i]?.aggregateIndexes??[])re(i,d,n,s)},B=(i,n)=>{const s=`${i}::rank::${n.name}`;if(L.has(s))return;const d=Z(i,n.name),c=$(r,e`SELECT id, _creationTime, ${e.identifier(M)} FROM ${e.identifier(i)}`).toArray();$(r,e`DELETE FROM ${e.identifier(d)}`);const f=oe(n);for(const h of c){const _=k(h);!_||n.where&&!Y(_,n.where)||ie(r,d,n,f,_._id,_)}L.add(s)},se=i=>{for(const n of m.tables[i]?.rankIndexes??[])B(i,n)},H=(i,n,s,d)=>{for(const c of m.tables[i]?.rankIndexes??[])We(r,i,c,n,s,d)},U=(i,n,s,d)=>{const c=m.tables[i]?.searchIndexes??[];if(!(c.length===0||!ce(r)))for(const f of c){if(De(d,s,f))continue;const h=Fe(i,f.name);$(r,e`DELETE FROM ${e.identifier(h)} WHERE ${e.identifier(Q)} = ${n}`),s&&$(r,e`INSERT INTO ${e.identifier(h)} (${e.identifier(Ie)}, ${e.identifier(Q)}) VALUES (${qe(s,f)}, ${n})`)}},K=(i,n,s)=>{for(const d of m.tables[i]?.geoIndexes??[]){const c=fe(i,d.name);$(r,e`DELETE FROM ${e.identifier(c)} WHERE ${e.identifier("__id__")} = ${n}`);const f=s?.[d.field];if(f!==null&&typeof f=="object"&&typeof f.lat=="number"&&typeof f.lng=="number"){const{lat:h,lng:_}=f,R=ue({lat:h,lng:_},d.precision??me);$(r,e`INSERT INTO ${e.identifier(c)} (${e.identifier("__id__")}, ${e.identifier("__geohash__")}, ${e.identifier("__lat__")}, ${e.identifier("__lng__")}) VALUES (${n}, ${R}, ${h}, ${_})`)}}};return{ensureBackfilledForTable:ae,ensureBackfilledIndex:z,ensureRankBackfilled:B,ensureRankBackfilledForTable:se,syncAggregates:W,syncCompanionsForInsert:(i,n,s)=>{U(i,n,s),K(i,n,s),W(i,void 0,s),H(i,n,void 0,s),g(i,n,s),S(i,n,"insert",s),a({indexKeys:l(i,s),key:n,op:"insert",row:s,table:i})},syncGeo:K,syncRanks:H,syncSearch:U}};export{oe as B,Q as T,ie as W,Fe as c,Ie as l,Me as n,en as w,je as x,qe as y};
@@ -1 +1 @@
1
- import{createShardCtxDb as b}from"./NotUniqueError-BItFDsAw.mjs";import{createRelayLink as I}from"./DEFAULT_MAX_RELAYS-CPBmX1FO.mjs";import{ConflictError as N}from"./ConflictError-C8GtJmjS.mjs";import{runShardMigrations as v}from"./runShardMigrations-n2dKcH5E.mjs";import{relayName as q}from"./DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";const C=(_,m={})=>({_meta:{column:{notNull:!0,...m}},kind:_}),D=(_,m,E)=>{const{describe:k,expect:i,it:f}=E;k(`engine contract: ${_}`,()=>{k("optimistic concurrency",()=>{const g=p=>({tables:{items:{indexes:[],shape:{title:C("string"),version:C("number",{notNull:!1})},triggerMap:{clobber:{handler:()=>{p.exec(`UPDATE "items" SET "__doc__" = json_set("__doc__", '$.version', 99) WHERE "id" = 'i1'`)},op:"update",timing:"before"}}}}});f("raises a CONFLICT of kind `occ` when a write's snapshot is clobbered",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({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(N)}finally{p?.()}}),f("reports the conflict as CONFLICT/409 rather than retrying it away",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let r;try{await s.patch("i1",{title:"second"})}catch(t){r=t}const e=r;i(e.code).toBe("CONFLICT"),i(e.kind).toBe("occ")}finally{p?.()}}),f("leaves the row readable and unchanged after a conflict",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({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 r=await s.get("i1");i(r?.title).toBe("first"),i(r?.version).toBe(99)}finally{p?.()}}),f("raises a CONFLICT of kind `trigger` when a trigger writes its own row through the db",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l={tables:{items:{indexes:[],shape:{title:C("string"),version:C("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=b({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let r;try{await s.patch("i1",{title:"second"})}catch(t){r=t}const e=r;i(e).toBeInstanceOf(N),i(e.code).toBe("CONFLICT"),i(e.kind).toBe("trigger")}finally{p?.()}})}),k("shape-poke ordering",()=>{const g="shard-a",p={args:{},name:"messages"},d=(e,t,o,a)=>e.accept(t?.()??{},{connectionId:o,shapes:{[a]:p}}),c=(e,t)=>{let o=0,a=0;const n=u=>()=>{throw new Error(`the relay poke path must not reach RelayHost.${u}`)},h={fetch:(u,O)=>{if(JSON.parse(O?.body??"{}").type!=="relay_shape_subscribe")return Promise.resolve(new Response(void 0,{status:204}));const B=t[a];if(a+=1,B===void 0)throw new Error("the relay asked for more seeds than this fixture supplies");return Promise.resolve(Response.json(B))}},y={get:()=>h,getByName:()=>h,idFromName:u=>u},w={buildShapeDiff:n("buildShapeDiff"),computeOpLogShapeSeed:n("computeOpLogShapeSeed"),currentCdcEpoch:n("currentCdcEpoch"),deliverWhisperLocal:n("deliverWhisperLocal"),doName:()=>q(g,0),env:()=>({SHARD:y}),getWebSockets:()=>e.getSockets(),maskMetadata:n("maskMetadata"),nextPokeId:()=>(o+=1,`poke-${String(o)}`),readAttachment:u=>u.deserializeAttachment?.(),recordShapePokeFanout:()=>{},resolveShape:n("resolveShape"),rlsMetadata:n("rlsMetadata"),shardBinding:()=>"SHARD",sql:n("sql")},S=I(w);if(S===void 0)throw new Error("expected a relay link for a `…::relay::N` name");return S},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 a=await e.seedRelayShape(t,o,p,{identity:void 0,userId:void 0});if(a!=="ok")throw new Error(`seed failed: ${JSON.stringify(a)}`)},r=(e={})=>l({...p,checkpoint:20,epoch:"e1",fromCursor:10,rowsPatch:[{id:"r1",op:"upsert",value:{title:"hello"}}],type:"relay_shape_poke",...e});f("frames a poke as pokeStart → pokePart per shape → pokeEnd, under one poke id",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1");await s(n,h,"s1"),await n.handleControl(r());const y=(await o(h)).map(w=>JSON.parse(w));i(y.map(w=>w.type)).toStrictEqual(["pokeStart","pokePart","pokeEnd"]),i(new Set(y.map(w=>w.pokeId)).size).toBe(1),i(y[1]?.shapeId).toBe("s1"),i(y[2]?.checkpoint).toBe(20)}finally{e?.()}}),f("delivers a poke only to sockets whose cursor matches, and advances them past it",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]},{cursor:7,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1"),y=d(a,t,"c-bob","s2");await s(n,h,"s1"),await s(n,y,"s2"),await n.handleControl(r());const w=await o(h);i(w.length).toBe(3);const S=await o(y);i(S.length).toBe(0),await n.handleControl(r());const u=await o(h);i(u.length).toBe(3)}finally{e?.()}}),f("skips a socket whose cursor matches under a different CDC epoch",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1");await s(n,h,"s1"),await n.handleControl(r({epoch:"e2"}));const y=await o(h);i(y.length).toBe(0),await n.handleControl(r());const w=await o(h);i(w.length).toBe(3)}finally{e?.()}})}),k("RLS identity under live subscription",()=>{const g="shard-a",p={args:{},name:"lobby-messages"},d={args:{},name:"my-orders"},c=s=>{const r=[],e=[],t={fetch:(a,n)=>(r.push(JSON.parse(n?.body??"{}")),Promise.resolve(new Response(void 0,{status:204})))},o=I({buildShapeDiff:()=>[{id:"r1",op:"upsert",value:{}}],computeOpLogShapeSeed:()=>({baseCheckpoint:void 0,cursor:10,epoch:"e1",rowsPatch:[]}),currentCdcEpoch:()=>"e1",deliverWhisperLocal:()=>0,doName:()=>g,env:()=>({SHARD:{get:()=>t,getByName:()=>t,idFromName:a=>a}}),getWebSockets:()=>[],maskMetadata:()=>({columns:[]}),nextPokeId:()=>"poke-1",readAttachment:()=>({}),recordShapePokeFanout:()=>{},resolveShape:(a,n,h)=>(e.push(h),a===d.name?{columns:["id"],effectiveWhere:{org:h?.identity?.org??"anonymous"},global:!1,table:"orders"}:{columns:["id"],effectiveWhere:{room:"lobby"},global:!1,table:"messages"}),rlsMetadata:()=>({policies:[]}),shardBinding:()=>"SHARD",sql:()=>s});if(o===void 0)throw new Error("expected an owner link for an un-suffixed DO name");return{owner:o,posts:r,resolvedUnder:e}},l=async(s,r)=>{await s.handleControl(new Request("https://owner.internal/_lunora/relay",{body:JSON.stringify({...r,connectionId:"c-alice",identity:{org:"acme"},relayIndex:0,subId:"s1",type:"relay_shape_subscribe",userId:"u1"}),headers:{"content-type":"application/json"},method:"POST"}))};f("seeds a subscriber under its own forwarded identity, never the anonymous one",async()=>{const{close:s,host:r}=m();try{const{owner:e,resolvedUnder:t}=c(r.sql);await l(e,d),i(t.some(o=>o?.userId==="u1"&&o.identity?.org==="acme")).toBe(!0)}finally{s?.()}}),f("routes an identity-scoped shape to a per-socket poke, not the cohort multicast",async()=>{const{close:s,host:r}=m();try{const{owner:e,posts:t}=c(r.sql);await l(e,d),t.length=0,await e.onFlush(new Set(["orders"]),20);const o=t.filter(a=>a.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBe("c-alice")}finally{s?.()}}),f("still multicasts an identity-blind shape to the whole cohort",async()=>{const{close:s,host:r}=m();try{const{owner:e,posts:t}=c(r.sql);await l(e,p),t.length=0,await e.onFlush(new Set(["messages"]),20);const o=t.filter(a=>a.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBeUndefined()}finally{s?.()}})})})};export{D as defineEngineContractSuite};
1
+ import{createShardCtxDb as b}from"./NotUniqueError-CVHdtVw6.mjs";import{createRelayLink as I}from"./DEFAULT_MAX_RELAYS-B19vrJxP.mjs";import{ConflictError as N}from"./ConflictError-C8GtJmjS.mjs";import{runShardMigrations as v}from"./runShardMigrations-BqO6HPtX.mjs";import{relayName as q}from"./DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";const C=(_,m={})=>({_meta:{column:{notNull:!0,...m}},kind:_}),D=(_,m,E)=>{const{describe:k,expect:i,it:f}=E;k(`engine contract: ${_}`,()=>{k("optimistic concurrency",()=>{const g=p=>({tables:{items:{indexes:[],shape:{title:C("string"),version:C("number",{notNull:!1})},triggerMap:{clobber:{handler:()=>{p.exec(`UPDATE "items" SET "__doc__" = json_set("__doc__", '$.version', 99) WHERE "id" = 'i1'`)},op:"update",timing:"before"}}}}});f("raises a CONFLICT of kind `occ` when a write's snapshot is clobbered",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({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(N)}finally{p?.()}}),f("reports the conflict as CONFLICT/409 rather than retrying it away",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let r;try{await s.patch("i1",{title:"second"})}catch(t){r=t}const e=r;i(e.code).toBe("CONFLICT"),i(e.kind).toBe("occ")}finally{p?.()}}),f("leaves the row readable and unchanged after a conflict",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l=g(c);v(c,l);const s=b({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 r=await s.get("i1");i(r?.title).toBe("first"),i(r?.version).toBe(99)}finally{p?.()}}),f("raises a CONFLICT of kind `trigger` when a trigger writes its own row through the db",async()=>{const{close:p,host:d}=m();try{const c=d.sql,l={tables:{items:{indexes:[],shape:{title:C("string"),version:C("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=b({schema:l,sql:c});await s.insert("items",{_id:"i1",title:"first",version:1},{allowExplicitId:!0});let r;try{await s.patch("i1",{title:"second"})}catch(t){r=t}const e=r;i(e).toBeInstanceOf(N),i(e.code).toBe("CONFLICT"),i(e.kind).toBe("trigger")}finally{p?.()}})}),k("shape-poke ordering",()=>{const g="shard-a",p={args:{},name:"messages"},d=(e,t,o,a)=>e.accept(t?.()??{},{connectionId:o,shapes:{[a]:p}}),c=(e,t)=>{let o=0,a=0;const n=u=>()=>{throw new Error(`the relay poke path must not reach RelayHost.${u}`)},h={fetch:(u,O)=>{if(JSON.parse(O?.body??"{}").type!=="relay_shape_subscribe")return Promise.resolve(new Response(void 0,{status:204}));const B=t[a];if(a+=1,B===void 0)throw new Error("the relay asked for more seeds than this fixture supplies");return Promise.resolve(Response.json(B))}},y={get:()=>h,getByName:()=>h,idFromName:u=>u},w={buildShapeDiff:n("buildShapeDiff"),computeOpLogShapeSeed:n("computeOpLogShapeSeed"),currentCdcEpoch:n("currentCdcEpoch"),deliverWhisperLocal:n("deliverWhisperLocal"),doName:()=>q(g,0),env:()=>({SHARD:y}),getWebSockets:()=>e.getSockets(),maskMetadata:n("maskMetadata"),nextPokeId:()=>(o+=1,`poke-${String(o)}`),readAttachment:u=>u.deserializeAttachment?.(),recordShapePokeFanout:()=>{},resolveShape:n("resolveShape"),rlsMetadata:n("rlsMetadata"),shardBinding:()=>"SHARD",sql:n("sql")},S=I(w);if(S===void 0)throw new Error("expected a relay link for a `…::relay::N` name");return S},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 a=await e.seedRelayShape(t,o,p,{identity:void 0,userId:void 0});if(a!=="ok")throw new Error(`seed failed: ${JSON.stringify(a)}`)},r=(e={})=>l({...p,checkpoint:20,epoch:"e1",fromCursor:10,rowsPatch:[{id:"r1",op:"upsert",value:{title:"hello"}}],type:"relay_shape_poke",...e});f("frames a poke as pokeStart → pokePart per shape → pokeEnd, under one poke id",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1");await s(n,h,"s1"),await n.handleControl(r());const y=(await o(h)).map(w=>JSON.parse(w));i(y.map(w=>w.type)).toStrictEqual(["pokeStart","pokePart","pokeEnd"]),i(new Set(y.map(w=>w.pokeId)).size).toBe(1),i(y[1]?.shapeId).toBe("s1"),i(y[2]?.checkpoint).toBe(20)}finally{e?.()}}),f("delivers a poke only to sockets whose cursor matches, and advances them past it",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]},{cursor:7,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1"),y=d(a,t,"c-bob","s2");await s(n,h,"s1"),await s(n,y,"s2"),await n.handleControl(r());const w=await o(h);i(w.length).toBe(3);const S=await o(y);i(S.length).toBe(0),await n.handleControl(r());const u=await o(h);i(u.length).toBe(3)}finally{e?.()}}),f("skips a socket whose cursor matches under a different CDC epoch",async()=>{const{close:e,createSocket:t,readFrames:o,sockets:a}=m();try{const n=c(a,[{cursor:10,epoch:"e1",frames:[]}]),h=d(a,t,"c-alice","s1");await s(n,h,"s1"),await n.handleControl(r({epoch:"e2"}));const y=await o(h);i(y.length).toBe(0),await n.handleControl(r());const w=await o(h);i(w.length).toBe(3)}finally{e?.()}})}),k("RLS identity under live subscription",()=>{const g="shard-a",p={args:{},name:"lobby-messages"},d={args:{},name:"my-orders"},c=s=>{const r=[],e=[],t={fetch:(a,n)=>(r.push(JSON.parse(n?.body??"{}")),Promise.resolve(new Response(void 0,{status:204})))},o=I({buildShapeDiff:()=>[{id:"r1",op:"upsert",value:{}}],computeOpLogShapeSeed:()=>({baseCheckpoint:void 0,cursor:10,epoch:"e1",rowsPatch:[]}),currentCdcEpoch:()=>"e1",deliverWhisperLocal:()=>0,doName:()=>g,env:()=>({SHARD:{get:()=>t,getByName:()=>t,idFromName:a=>a}}),getWebSockets:()=>[],maskMetadata:()=>({columns:[]}),nextPokeId:()=>"poke-1",readAttachment:()=>({}),recordShapePokeFanout:()=>{},resolveShape:(a,n,h)=>(e.push(h),a===d.name?{columns:["id"],effectiveWhere:{org:h?.identity?.org??"anonymous"},global:!1,table:"orders"}:{columns:["id"],effectiveWhere:{room:"lobby"},global:!1,table:"messages"}),rlsMetadata:()=>({policies:[]}),shardBinding:()=>"SHARD",sql:()=>s});if(o===void 0)throw new Error("expected an owner link for an un-suffixed DO name");return{owner:o,posts:r,resolvedUnder:e}},l=async(s,r)=>{await s.handleControl(new Request("https://owner.internal/_lunora/relay",{body:JSON.stringify({...r,connectionId:"c-alice",identity:{org:"acme"},relayIndex:0,subId:"s1",type:"relay_shape_subscribe",userId:"u1"}),headers:{"content-type":"application/json"},method:"POST"}))};f("seeds a subscriber under its own forwarded identity, never the anonymous one",async()=>{const{close:s,host:r}=m();try{const{owner:e,resolvedUnder:t}=c(r.sql);await l(e,d),i(t.some(o=>o?.userId==="u1"&&o.identity?.org==="acme")).toBe(!0)}finally{s?.()}}),f("routes an identity-scoped shape to a per-socket poke, not the cohort multicast",async()=>{const{close:s,host:r}=m();try{const{owner:e,posts:t}=c(r.sql);await l(e,d),t.length=0,await e.onFlush(new Set(["orders"]),20);const o=t.filter(a=>a.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBe("c-alice")}finally{s?.()}}),f("still multicasts an identity-blind shape to the whole cohort",async()=>{const{close:s,host:r}=m();try{const{owner:e,posts:t}=c(r.sql);await l(e,p),t.length=0,await e.onFlush(new Set(["messages"]),20);const o=t.filter(a=>a.type==="relay_shape_poke");i(o.length).toBe(1),i(o[0]?.targetConnectionId).toBeUndefined()}finally{s?.()}})})})};export{D as defineEngineContractSuite};
@@ -1,5 +1,5 @@
1
- import{l as I,T as N,c as S}from"./ctx-db-companions-CAJOSdN-.mjs";import"@lunora/errors";import{sql as e}from"drizzle-orm";import{aggregateTableName as p}from"./aggregateTableName-DV-K7ft2.mjs";import{backfillSearchIndexesForTable as g}from"./backfillAggregateIndexes-tK0jrl43.mjs";import{migrateCdcLog as h,migrateCdcMeta as l}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{migrateClientWatermark as R}from"./CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{migrateGlobalShapeSnapshot as C}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{migrateIdempotency as O}from"./IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{migrateSearchState as U}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{runDrizzle as a}from"./runDrizzle-B6rnz3so.mjs";import{a as u,N as E,y as _,I as X,C as b,c as x,p as B,T as c,h as Y}from"./do-sql-1Yi1_Yq0.mjs";import{sortColumnName as F,rankTableName as M}from"./RANK_TIEBREAK-DYDRmLKH.mjs";import{recordSchemaVersion as D}from"./SCHEMA_HISTORY_MAX_VERSIONS-BEU0CuW5.mjs";const k=(r,t,o)=>{for(const i of o.indexes){const n=`${t}_${i.name}`,s=e.join(i.fields.map(f=>E(f)),e`, `);a(r,_(n,t,s,i.unique??!1))}for(const[i,n]of X(o)){if(!n.unique)continue;const s=`${t}_unique_${i}`;a(r,_(s,t,E(i),!0))}},y=(r,t,o)=>{if(!(!o.searchIndexes||o.searchIndexes.length===0||!b(r))){for(const i of o.searchIndexes){const n=S(t,i.name);a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(n)} USING fts5(${e.identifier(I)}, ${e.identifier(N)} UNINDEXED)`),a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(`${n}__vocab`)} USING fts5vocab(${e.identifier(n)}, ${e.raw("instance")})`)}g(r,t,o)}},j=(r,t,o)=>{if(o.geoIndexes)for(const i of o.geoIndexes){const n=Y(t,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${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=`${t}__geo_${i.name}__btree`;a(r,_(s,n,e`${e.identifier("__geohash__")} ASC, ${e.identifier("__id__")} ASC`,!1))}},G=(r,t,o)=>{if(o.aggregateIndexes)for(const i of o.aggregateIndexes){const n=p(t,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${x} TEXT PRIMARY KEY, ${B} REAL, ${c} INTEGER NOT NULL DEFAULT 0)`),a(r,e`PRAGMA table_info(${e.identifier(n)})`).toArray().some(s=>s.name==="__count__")||a(r,e`ALTER TABLE ${e.identifier(n)} ADD COLUMN ${c} INTEGER NOT NULL DEFAULT 0`)}},q=(r,t,o)=>{if(o.rankIndexes)for(const i of o.rankIndexes){const n=M(t,i.name),s=i.sortBy.map((T,d)=>F(d)),f=s.map(T=>e`${e.identifier(T)} BLOB`),$=f.length>0?e`, ${e.join(f,e`, `)}`:e``;a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${e.identifier("__id__")} TEXT PRIMARY KEY, ${e.identifier("__partition__")} TEXT NOT NULL${$})`);const m=[e`${e.identifier("__partition__")} ASC`];for(const[T,d]of s.entries()){const A=i.sortBy[T]?.direction;m.push(e`${e.identifier(d)} ${e.raw(A==="desc"?"DESC":"ASC")}`)}m.push(e`${e.identifier("__id__")} ASC`);const L=`${t}__rank_${i.name}__btree`;a(r,_(L,n,e.join(m,e`, `),!1))}},ne=(r,t,o={})=>{o.schemaSnapshot!==void 0&&D(r,o.schemaSnapshot.hash,o.schemaSnapshot.json),U(r);for(const[i,n]of Object.entries(t.tables))n.shardMode?.kind!=="global"&&(a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(i)} (
1
+ import{l as I,T as N,c as S}from"./ctx-db-companions-BTi8DLUl.mjs";import"@lunora/errors";import{sql as e}from"drizzle-orm";import{aggregateTableName as p}from"./aggregateTableName-DgYMC5tr.mjs";import{backfillSearchIndexesForTable as g}from"./backfillAggregateIndexes-DmqOHg0U.mjs";import{migrateCdcLog as h,migrateCdcMeta as l}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{migrateClientWatermark as R}from"./CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{migrateGlobalShapeSnapshot as C}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{migrateIdempotency as O}from"./IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{migrateSearchState as U}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{runDrizzle as a}from"./runDrizzle-B6rnz3so.mjs";import{a as u,N as E,y as _,I as X,C as b,c as x,p as B,T as c,h as F}from"./do-sql-1Yi1_Yq0.mjs";import{sortColumnName as M,rankTableName as Y}from"./RANK_TIEBREAK-DDtST3gN.mjs";import{recordSchemaVersion as D}from"./SCHEMA_HISTORY_MAX_VERSIONS-BEU0CuW5.mjs";const k=(r,t,o)=>{for(const i of o.indexes){const n=`${t}_${i.name}`,s=e.join(i.fields.map(f=>E(f)),e`, `);a(r,_(n,t,s,i.unique??!1))}for(const[i,n]of X(o)){if(!n.unique)continue;const s=`${t}_unique_${i}`;a(r,_(s,t,E(i),!0))}},y=(r,t,o)=>{if(!(!o.searchIndexes||o.searchIndexes.length===0||!b(r))){for(const i of o.searchIndexes){const n=S(t,i.name);a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(n)} USING fts5(${e.identifier(I)}, ${e.identifier(N)} UNINDEXED)`),a(r,e`CREATE VIRTUAL TABLE IF NOT EXISTS ${e.identifier(`${n}__vocab`)} USING fts5vocab(${e.identifier(n)}, ${e.raw("instance")})`)}g(r,t,o)}},j=(r,t,o)=>{if(o.geoIndexes)for(const i of o.geoIndexes){const n=F(t,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${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=`${t}__geo_${i.name}__btree`;a(r,_(s,n,e`${e.identifier("__geohash__")} ASC, ${e.identifier("__id__")} ASC`,!1))}},q=(r,t,o)=>{if(o.aggregateIndexes)for(const i of o.aggregateIndexes){const n=p(t,i.name);a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${x} TEXT PRIMARY KEY, ${B} REAL, ${c} INTEGER NOT NULL DEFAULT 0)`),a(r,e`PRAGMA table_info(${e.identifier(n)})`).toArray().some(s=>s.name==="__count__")||a(r,e`ALTER TABLE ${e.identifier(n)} ADD COLUMN ${c} INTEGER NOT NULL DEFAULT 0`)}},G=(r,t,o)=>{if(o.rankIndexes)for(const i of o.rankIndexes){const n=Y(t,i.name),s=i.sortBy.map((T,d)=>M(d)),f=s.map(T=>e`${e.identifier(T)} BLOB`),$=f.length>0?e`, ${e.join(f,e`, `)}`:e``;a(r,e`CREATE TABLE IF NOT EXISTS ${e.identifier(n)} (${e.identifier("__id__")} TEXT PRIMARY KEY, ${e.identifier("__partition__")} TEXT NOT NULL${$})`);const m=[e`${e.identifier("__partition__")} ASC`];for(const[T,d]of s.entries()){const A=i.sortBy[T]?.direction;m.push(e`${e.identifier(d)} ${e.raw(A==="desc"?"DESC":"ASC")}`)}m.push(e`${e.identifier("__id__")} ASC`);const L=`${t}__rank_${i.name}__btree`;a(r,_(L,n,e.join(m,e`, `),!1))}},ne=(r,t,o={})=>{o.schemaSnapshot!==void 0&&D(r,o.schemaSnapshot.hash,o.schemaSnapshot.json),U(r);for(const[i,n]of Object.entries(t.tables))n.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(u)} TEXT NOT NULL
5
- )`),k(r,i,n),y(r,i,n),j(r,i,n),G(r,i,n),q(r,i,n));o.cdc&&(h(r),l(r),R(r)),O(r),C(r)};export{ne as runShardMigrations};
5
+ )`),k(r,i,n),y(r,i,n),j(r,i,n),q(r,i,n),G(r,i,n));o.cdc&&(h(r),l(r),R(r)),O(r),C(r)};export{ne as runShardMigrations};
@@ -0,0 +1 @@
1
+ const s=/^\d+$/,m=(n,t,o)=>{const e=n?.[t];let r=Number.NaN;return typeof e=="string"&&s.test(e.trim())?r=Number(e.trim()):typeof e=="number"&&(r=e),Number.isSafeInteger(r)&&r>0?r:o},c=(n,t)=>{const o=Math.max(n.length,t.length);let e=n.length^t.length;for(let r=0;r<o;r+=1){const i=r<n.length?n.charCodeAt(r):0,a=r<t.length?t.charCodeAt(r):0;e|=i^a}return e===0},u="LUNORA_RELAY_SECRET",y="x-lunora-relay-sig",l=n=>{const t=n?.[u];return typeof t=="string"&&t.length>0?t:void 0},g=async(n,t)=>{const o=new TextEncoder,e=await crypto.subtle.importKey("raw",o.encode(n),{hash:"SHA-256",name:"HMAC"},!1,["sign"]),r=await crypto.subtle.sign("HMAC",e,o.encode(t));return[...new Uint8Array(r)].map(i=>i.toString(16).padStart(2,"0")).join("")},d=async(n,t,o)=>{const e=l(n);return e===void 0?!0:t===null?!1:c(t,await g(e,o))},f=n=>{if(n===null||typeof n!="object")return;const t=n;return typeof t.idFromName=="function"&&typeof t.get=="function"?t:void 0},h=(n,t,o)=>{if(t===void 0)return;const e=f(n?.[t]);if(e!==void 0)return typeof e.getByName=="function"?e.getByName(o):e.get(e.idFromName(o))};export{d as f,y as g,h as l,g as o,l as s,m as u};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/shard-engine",
3
- "version": "1.0.0-alpha.20",
3
+ "version": "1.0.0-alpha.21",
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",
@@ -48,8 +48,8 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@lunora/errors": "1.0.0-alpha.18",
52
- "@lunora/platform": "1.0.0-alpha.8",
51
+ "@lunora/errors": "1.0.0-alpha.19",
52
+ "@lunora/platform": "1.0.0-alpha.9",
53
53
  "drizzle-orm": "^0.45.2"
54
54
  },
55
55
  "engines": {
@@ -1 +0,0 @@
1
- import{toErrorBody as P,LunoraError as M}from"@lunora/errors";import{a as E,s as g}from"./wire-codec-Dsy70M3Q.mjs";import{relayName as y,nextPromotionState as k,shapeRoutingKey as f,parseRelayName as L,clampPromotionThresholds as N,DEFAULT_PROMOTION_THRESHOLDS as R}from"./DEFAULT_PROMOTION_THRESHOLDS-B2rUe1bg.mjs";import{encodeRowsPatch as C,buildPokeFrames as A}from"./buildPokeFrames-CqxaN8_H.mjs";import{awaitWsDrain as O,trySendFrame as w}from"./awaitWsDrain-Bp2jKzIb.mjs";import{stableWireKey as p}from"./stableWireKey-l3cjIt-9.mjs";const T=(i,e)=>{const t=Math.max(i.length,e.length);let s=i.length^e.length;for(let r=0;r<t;r+=1){const a=r<i.length?i.charCodeAt(r):0,o=r<e.length?e.charCodeAt(r):0;s|=a^o}return s===0},D=2,F=8,$="LUNORA_RELAY_SECRET",I="x-lunora-relay-sig",b=i=>{const e=i?.[$];return typeof e=="string"&&e.length>0?e:void 0},_=async(i,e)=>{const t=new TextEncoder,s=await crypto.subtle.importKey("raw",t.encode(i),{hash:"SHA-256",name:"HMAC"},!1,["sign"]),r=await crypto.subtle.sign("HMAC",s,t.encode(e));return[...new Uint8Array(r)].map(a=>a.toString(16).padStart(2,"0")).join("")},m=(i,e,t)=>{const s=i?.[e];let r=Number.NaN;return typeof s=="string"?r=Number.parseInt(s,10):typeof s=="number"&&(r=s),Number.isInteger(r)&&r>0?r:t},S={},U=i=>{throw new M("INTERNAL",`unhandled relay frame: ${JSON.stringify(i)}`)},K=i=>{if(i===null||typeof i!="object")return;const e=i;return typeof e.idFromName=="function"&&typeof e.get=="function"?e:void 0},W=i=>Response.json(i,{headers:{"content-type":"application/json"}}),u=()=>new Response(null,{status:204});class v{constructor(e,t){this.host=e,this.roleId=t}host;roleId;async handleControl(e){let t;try{t=await e.text()}catch{return new Response("bad request",{status:400})}const s=b(this.host.env());if(s!==void 0){const a=e.headers.get(I),o=await _(s,t);if(a===null||!T(a,o))return new Response("forbidden",{status:403})}let r;try{r=JSON.parse(t)}catch{return new Response("bad request",{status:400})}switch(r.type){case"relay_attach":return this.onAttach(r.relayIndex),u();case"relay_detach":return this.onDetach(r.relayIndex),u();case"relay_frame":return this.host.deliverWhisperLocal(r.topic,r.frame,void 0),await this.onWhisperFrame(r),u();case"relay_shape_poke":{const a=this.host.getWebSockets().length,o=Date.now(),n=this.onShapePoke({...r,args:g(r.args)});return this.host.recordShapePokeFanout(a,n,Date.now()-o),u()}case"relay_shape_subscribe":return W(this.onShapeSubscribe({...r,args:g(r.args)}));default:return U(r)}}maxRelays(){return m(this.host.env(),"LUNORA_MAX_RELAYS",F)}canAddressSiblings(){return this.relayNamespace()!==void 0}relayNamespace(){const e=this.host.shardBinding();if(e!==void 0)return K(this.host.env()?.[e])}async postRelayMessage(e,t){await this.requestRelayMessage(e,t)}async requestRelayMessage(e,t){const s=this.relayNamespace();if(s===void 0)return;const r=typeof s.getByName=="function"?s.getByName(e):s.get(s.idFromName(e)),a=JSON.stringify(t),o={"content-type":"application/json","x-lunora-shard-binding":this.host.shardBinding()??""},n=b(this.host.env());n!==void 0&&(o[I]=await _(n,a));try{return await r.fetch("https://relay.internal/_lunora/relay",{body:a,headers:o,method:"POST"})}catch{return}}}class q extends v{shapeUniformCache=new Map;relaySetCache;relayShapeRegistry=new Map;relayShapeProxies=new Map;promotionState="owned";constructor(e,t){super(e,{ownerKey:t})}async forwardWhisper(e,t){if(!this.canAddressSiblings())return;const s=this.ownerRelaySet();s.size!==0&&await Promise.all([...s].map(r=>this.postRelayMessage(y(this.roleId.ownerKey,r),{frame:t,topic:e,type:"relay_frame"})))}async onFlush(e,t){await Promise.all([this.multicastShapePokes(e,t),this.proxyShapePokes(e,t)])}seedRelayShape(){return Promise.resolve(void 0)}announce(){return Promise.resolve()}announceDrain(){return Promise.resolve()}relayCount(){const e=this.host.getWebSockets().length,t=m(this.host.env(),"LUNORA_RELAY_THRESHOLD",R.tUp),s=m(this.host.env(),"LUNORA_RELAY_COLLAPSE_THRESHOLD",R.tDown);if(this.promotionState=k(this.promotionState,e,N(t,s)),this.promotionState==="owned")return 0;const r=m(this.host.env(),"LUNORA_RELAY_FAN",D);return Math.min(this.maxRelays(),Math.max(1,r))}isShapeRelayUniform(e,t){const s=f(e,t),r=this.shapeUniformCache.get(s);if(r!==void 0)return r;const a=this.probeShapeRelayUniform(e,t);return this.shapeUniformCache.set(s,a),a}onAttach(e){this.addRelayToSet(e)}onDetach(e){this.removeRelayFromSet(e)}async onWhisperFrame(e){await Promise.all([...this.ownerRelaySet()].filter(t=>t!==e.originRelay).map(t=>this.postRelayMessage(y(this.roleId.ownerKey,t),{frame:e.frame,topic:e.topic,type:"relay_frame"})))}onShapeSubscribe(e){return this.buildShapeSeedFrames(e)}onShapePoke(){return 0}buildShapePoke(e,t,s,r,a){let o;try{o=this.host.resolveShape(e.name,e.args,t)}catch{return}if(o===void 0||o.global===!0||!s.has(o.table))return;const n=e,h=n.cursor,c=this.host.buildShapeDiff(o,h,r);if(c.length!==0)return n.cursor=r,{args:E(e.args),checkpoint:r,epoch:a,fromCursor:h,name:e.name,rowsPatch:C(c),type:"relay_shape_poke"}}async multicastShapePokes(e,t){if(this.relayShapeRegistry.size===0)return;const s=this.ownerRelaySet();if(s.size===0)return;const r=this.host.currentCdcEpoch(),a=[];for(const o of this.relayShapeRegistry.values()){const n=this.buildShapePoke(o,S,e,t,r);if(n)for(const h of s)a.push(this.postRelayMessage(y(this.roleId.ownerKey,h),n))}await Promise.all(a)}async proxyShapePokes(e,t){if(this.relayShapeProxies.size===0)return;const s=this.host.currentCdcEpoch(),r=[];for(const a of this.relayShapeProxies.values()){const o=this.buildShapePoke(a,a.identity,e,t,s);o&&r.push(this.postRelayMessage(y(this.roleId.ownerKey,a.relayIndex),{...o,targetConnectionId:a.connectionId}))}await Promise.all(r)}buildShapeSeedFrames(e){const t={identity:e.identity,userId:e.userId};let s;try{s=this.host.resolveShape(e.name,e.args,t)}catch(d){const{body:l}=P(d,{fallbackCode:"SHAPE_RESOLVE_FAILED",redactedMessage:"shape resolution failed"});return{error:{code:l.code,message:l.message}}}if(s===void 0||s.global===!0)return{error:{code:"SHAPE_NOT_FOUND",message:`shape not relayable: ${e.name}`}};e.relayIndex!==void 0&&this.addRelayToSet(e.relayIndex);const{baseCheckpoint:r,cursor:a,epoch:o,rowsPatch:n}=this.host.computeOpLogShapeSeed({args:e.args,name:e.name,sinceEpoch:e.sinceEpoch,sinceSeq:e.sinceSeq},s);let h=a;if(this.isShapeRelayUniform(e.name,e.args)){const d=f(e.name,e.args);let l=this.relayShapeRegistry.get(d);l===void 0&&(l={args:e.args,cursor:a,name:e.name},this.relayShapeRegistry.set(d,l)),h=l.cursor}else e.relayIndex!==void 0&&e.connectionId!==void 0&&this.relayShapeProxies.set(`${String(e.relayIndex)}:${e.connectionId}:${e.subId}`,{args:e.args,connectionId:e.connectionId,cursor:a,epoch:o,identity:t,name:e.name,relayIndex:e.relayIndex,subId:e.subId});const c=A([{rowsPatch:n,shapeId:e.subId}],{baseCheckpoint:r,checkpoint:a,epoch:o,lastMutationId:void 0,pokeId:this.host.nextPokeId()});return{cursor:h,epoch:o,frames:c}}ensureRelayTable(){this.host.sql().exec("CREATE TABLE IF NOT EXISTS __lunora_relays (idx INTEGER PRIMARY KEY)")}ownerRelaySet(){if(this.relaySetCache===void 0){this.ensureRelayTable();const e=this.host.sql().exec("SELECT idx FROM __lunora_relays").toArray();this.relaySetCache=new Set(e.map(t=>Number(t.idx)))}return this.relaySetCache}addRelayToSet(e){this.ensureRelayTable(),this.host.sql().exec("INSERT OR IGNORE INTO __lunora_relays (idx) VALUES (?)",e),this.ownerRelaySet().add(e)}removeRelayFromSet(e){this.ensureRelayTable(),this.host.sql().exec("DELETE FROM __lunora_relays WHERE idx = ?",e);const t=this.ownerRelaySet();t.delete(e);for(const[s,r]of this.relayShapeProxies)r.relayIndex===e&&this.relayShapeProxies.delete(s);t.size===0&&(this.relayShapeRegistry.clear(),this.shapeUniformCache.clear())}probeShapeRelayUniform(e,t){let s;try{s=this.host.resolveShape(e,t,S)}catch{return!1}if(s===void 0||s.global===!0||this.host.rlsMetadata().policies.some(h=>h.on==="read"&&h.table===s.table)||this.tableHasAnyMask(s.table))return!1;const r=p(s.effectiveWhere),a=p(s.columns);let o=!1;const n=h=>{const c={groups:[`grp_${h}`],roles:[h],sub:`__lunora_probe_${h}__`};return{identity:new Proxy(c,{get:(d,l)=>typeof l=="symbol"||l in d?Reflect.get(d,l):`${h}:${l}`,getOwnPropertyDescriptor:(d,l)=>(o=!0,Reflect.getOwnPropertyDescriptor(d,l)),has:(d,l)=>typeof l=="symbol"?Reflect.has(d,l):!0,ownKeys:d=>(o=!0,Reflect.ownKeys(d))}),userId:`__lunora_probe_${h}__`}};return[S,n("a"),n("b")].every(h=>{let c;try{c=this.host.resolveShape(e,t,h)}catch{return!1}return c!==void 0&&c.global!==!0&&c.table===s.table&&p(c.effectiveWhere)===r&&p(c.columns)===a})&&!o}tableHasAnyMask(e){return this.host.maskMetadata().columns.some(t=>t.table===e)}}class H extends v{relayAnnounced=!1;shapeRelayMemos=new WeakMap;constructor(e,t,s){super(e,{ownerKey:t,relayIndex:s})}async forwardWhisper(e,t){this.canAddressSiblings()&&await this.postRelayMessage(this.roleId.ownerKey,{frame:t,originRelay:this.roleId.relayIndex,topic:e,type:"relay_frame"})}onFlush(){return Promise.resolve()}async seedRelayShape(e,t,s,r){if(!this.canAddressSiblings())return{code:"RELAY_MISCONFIGURED",message:"relay cannot address its owner"};await this.announce();const a={args:E(s.args??{}),connectionId:this.host.readAttachment(e).connectionId,identity:r.identity,name:s.name,relayIndex:this.roleId.relayIndex,sinceEpoch:s.sinceEpoch,sinceSeq:s.sinceSeq,subId:t,type:"relay_shape_subscribe",userId:r.userId},o=await this.requestRelayMessage(this.roleId.ownerKey,a);if(o===void 0)return{code:"RELAY_SEED_FAILED",message:"owner did not answer the shape seed"};let n;try{n=await o.json()}catch{return{code:"RELAY_SEED_FAILED",message:"malformed shape seed from owner"}}if(n.error!==void 0)return n.error;if(n.frames===void 0)return{code:"RELAY_SEED_FAILED",message:"owner returned no shape frames"};await O(e);for(const h of n.frames)w(e,h);return this.recordRelayShapeMemo(e,t,n.cursor??0,n.epoch),"ok"}async announce(){this.relayAnnounced||!this.canAddressSiblings()||(this.relayAnnounced=!0,(await this.requestRelayMessage(this.roleId.ownerKey,{relayIndex:this.roleId.relayIndex,type:"relay_attach"}))?.ok||(this.relayAnnounced=!1))}async announceDrain(e){this.canAddressSiblings()&&(this.host.getWebSockets().some(t=>t!==e)||(this.relayAnnounced=!1,await this.postRelayMessage(this.roleId.ownerKey,{relayIndex:this.roleId.relayIndex,type:"relay_detach"})))}relayCount(){return 0}isShapeRelayUniform(){return!1}onAttach(){}onDetach(){}onWhisperFrame(){return Promise.resolve()}onShapeSubscribe(){return{error:{code:"RELAY_CANNOT_SEED",message:"a relay has no op-log to seed from"}}}onShapePoke(e){return this.deliverShapePoke(e)}recordRelayShapeMemo(e,t,s,r){let a=this.shapeRelayMemos.get(e);a===void 0&&(a=new Map,this.shapeRelayMemos.set(e,a)),a.set(t,{cursor:s,epoch:r})}deliverShapePoke(e){const t=f(e.name,e.args);let s=0;for(const r of this.host.getWebSockets()){const a=this.host.readAttachment(r),{shapes:o}=a,n=this.shapeRelayMemos.get(r);if(!(o===void 0||n===void 0)&&!(e.targetConnectionId!==void 0&&a.connectionId!==e.targetConnectionId))for(const[h,c]of Object.entries(o)){const d=n.get(h);if(d?.cursor!==e.fromCursor||d.epoch!==e.epoch||f(c.name,c.args)!==t)continue;const l=A([{rowsPatch:e.rowsPatch,shapeId:h}],{baseCheckpoint:void 0,checkpoint:e.checkpoint,epoch:e.epoch,lastMutationId:void 0,pokeId:this.host.nextPokeId()},{preEncoded:!0});for(const x of l)w(r,x);n.set(h,{cursor:e.checkpoint,epoch:e.epoch}),s+=1}}return s}}const X=i=>{const e=i.doName();if(e===void 0)return;const t=L(e);return t===void 0?new q(i,e):new H(i,t.ownerKey,t.relayIndex)};export{F as DEFAULT_MAX_RELAYS,q as OwnerRelay,H as RelayMember,X as createRelayLink};
@@ -1 +0,0 @@
1
- import{LunoraError as b}from"@lunora/errors";import{n as xt,k as It,x as Pe,T as ye,y as vt,c as Ct}from"./ctx-db-companions-CAJOSdN-.mjs";import{sql as n}from"drizzle-orm";import{s as kt}from"./wire-codec-Dsy70M3Q.mjs";import{aggregateSqlFunction as Ne,normalizeCountArgument as Mt,throwingScheduler as Lt}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as ve,readAggregateValue as Ce,aggregateTableName as ke}from"./aggregateTableName-DV-K7ft2.mjs";import{mergeWhere as Q,CountRlsUnsupportedError as Me,selectIndexForGroupBy as Dt,selectIndexForCount as Ft,selectIndexForAggregate as Ot}from"./CountRlsUnsupportedError-8BqPYQoP.mjs";import{backfillSearchIndexesForTable as Wt}from"./backfillAggregateIndexes-tK0jrl43.mjs";import{backfillAggregateIndexes as Tr,backfillRankIndexes as _r,backfillSearchIndexes as Rr}from"./backfillAggregateIndexes-tK0jrl43.mjs";import{appendCdcChange as Bt}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{CDC_LOG_TABLE as xr,applyCdcChanges as Ir,bumpCdcEpoch as vr,minCdcSeq as Cr,readCdcChanges as kr,readCdcCursor as Mr,readCdcEpoch as Lr,trimCdcChanges as Dr}from"./CDC_LOG_TABLE-ZqcflEen.mjs";import{computeRankPage as tt}from"./computeRankPage-CRFgJbuz.mjs";import{SCAN_DEP as U}from"./SCAN_DEP-D_yR9EeV.mjs";import{runDrizzle as B}from"./runDrizzle-B6rnz3so.mjs";import{a as P,L as se,p as Se,T as Le,c as Te,N as Y,E as ce,I as wt,C as qt,D as gt,h as Ut,O as nt}from"./do-sql-1Yi1_Yq0.mjs";import{coveringGeohashes as Pt,boundingBoxGeohashes as Ht,pointInBoundingBox as jt,haversineMeters as Kt}from"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{NotFoundError as Gt}from"./NotFoundError-BhF7FeFr.mjs";import{normalizeOrderKeys as Qt,buildSeekWhere as bt,decodeCursor as Be,applySelect as rt,encodeCursor as qe,softDeleteScope as le,buildSeekBeforeWhere as zt}from"./applySelect-i17LYhIU.mjs";import{sortColumnName as ot,resolveRankPartition as Vt,encodePartitionKey as Yt,RANK_TIEBREAK as Jt,rankTableName as it}from"./RANK_TIEBREAK-DYDRmLKH.mjs";import{indexKeysForRow as Xt,buildIndexRange as Zt}from"./buildIndexRange-DFsdtPjD.mjs";import{assertFlatPredicate as De,resolveRelationPredicates as at}from"./DEFAULT_MAX_RELATION_KEYS-sPcXaWFW.mjs";import{runRowValidators as Fe,resolveWith as st,relationHooks as dt,applyOnDelete as en,fanOutScalarCounts as tn}from"./applyOnDelete-BB6tr2G0.mjs";import{guardWriter as nn}from"./RLS_UNWRAP_SYMBOL-DcqORh2s.mjs";import{f as rn}from"./sql-projection-jfoe331H.mjs";import{createSystemReader as on}from"./createSystemReader-DcDcrtM3.mjs";import{ConflictError as pe}from"./ConflictError-C8GtJmjS.mjs";import{runTriggers as an}from"./hasTrigger-CbkOHExZ.mjs";import{compileWhereSql as ne}from"./compileWhereSql-B4rPariq.mjs";import{CLIENT_WATERMARK_TABLE as Or,advanceClientWatermark as Wr,migrateClientWatermark as Br,readClientWatermark as qr}from"./CLIENT_WATERMARK_TABLE-CzApRlyv.mjs";import{GLOBAL_SHAPE_SNAPSHOT_TABLE as Pr,deleteGlobalShapeSnapshot as Hr,deleteGlobalShapeSnapshotsForConnection as jr,migrateGlobalShapeSnapshot as Kr,readGlobalShapeSnapshot as Gr,writeGlobalShapeSnapshot as Qr}from"./GLOBAL_SHAPE_SNAPSHOT_TABLE-soMJDSBs.mjs";import{IDEMPOTENCY_TABLE as Vr,readIdempotent as Yr,trimIdempotent as Jr,writeIdempotent as Xr}from"./IDEMPOTENCY_TABLE-Bvu9JkiL.mjs";import{runShardMigrations as eo}from"./runShardMigrations-n2dKcH5E.mjs";import{SEARCH_STATE_TABLE as no}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{selectShapeMemberIds as oo,selectShapeRows as io}from"./selectShapeMemberIds-BdBcbrUP.mjs";import{serializeSqlValue as ie}from"./serializeSqlValue-BR4UOWoP.mjs";import{quoteIdentifier as sn}from"./quoteIdentifier-CObIFRhb.mjs";const dn=o=>{const i=new TextEncoder().encode(o);let t="";for(const d of i)t+=String.fromCodePoint(d);return btoa(t)},ln=o=>{const i=atob(o),t=Uint8Array.from(i,d=>d.codePointAt(0)??0);return new TextDecoder().decode(t)},cn=()=>new b("BAD_REQUEST","invalid cursor"),lt=16,ct=8,X=1024,He=(o,i)=>i.query(o),un=(o,i,t)=>{const d=xt(o,t);if(d.length===0)return 0;let c=0;for(const[p,w]of i.entries()){const A=p===i.length-1;let y=0;for(const g of d)(A?g.startsWith(w):g===w)&&(y+=1);if(y===0)return 0;c+=y}return c},fn=(o,i)=>{if(!i)return{exact:!0,lower:o,upper:o};const t=[...o].at(-1)??"",d=(t.codePointAt(0)??0)+1;if(d>=55296&&d<=57343||d>1114111)return{exact:!0,lower:o,upper:o};const c=o.slice(0,o.length-t.length);return{exact:!1,lower:o,upper:c+String.fromCodePoint(d)}},hn=(o,i,t)=>{const d={eq:(c,p)=>{if(!o.definition.filterFields?.includes(c))throw new b("INTERNAL",`field "${c}" is not a filter field of search index "${o.indexName}" on table "${i}"`);if(o.filters.length>=ct)throw new b("BAD_REQUEST",`search index "${o.indexName}" on table "${i}": at most ${String(ct)} .eq() filters are supported per search query`);return o.filters.push({field:c,value:p}),d},search:(c,p)=>{const w=o;if(c!==w.definition.field)throw new b("INTERNAL",`search index "${w.indexName}" on table "${i}" indexes "${w.definition.field}", not "${c}"`);const A=He(p,t).length;if(A>lt)throw new b("BAD_REQUEST",`search index "${w.indexName}" on table "${i}": at most ${String(lt)} search terms are supported (got ${String(A)})`);return w.field=c,w.query=p,w.hasQuery=!0,d}};return d},pn=o=>{if(o.length>X)throw new b("BAD_REQUEST",`more than ${String(X)} documents match this search — narrow it with filters or read it a page at a time with .paginate()`)},mn=o=>Math.min(o.offset+o.numItems+1,X),$n=o=>dn(`search:${String(o)}`),wn=o=>{let i;try{i=ln(o)}catch{return}if(!i.startsWith("search:"))return;const t=Number(i.slice(7));return Number.isInteger(t)&&t>=0?t:void 0},gn=o=>{if(typeof o.endCursor=="string")throw new b("BAD_REQUEST","bounded (endCursor) pagination is not supported on search queries — relevance order has no stable range boundary");const i=Math.max(0,Math.floor(o.numItems)),t=o.cursor?wn(o.cursor):0;if(t===void 0)throw cn();if(t+i>X)throw new b("BAD_REQUEST",`search pagination reaches past the ${String(X)}-document limit (offset ${String(t)} + ${String(i)} requested) — narrow the query or the filters instead`);return{numItems:i,offset:t}},bn=(o,i)=>{const t=i.offset+i.numItems,d=i.numItems>0&&o.length>t;return{continueCursor:d?$n(t):null,isDone:!d,page:o.slice(i.offset,t)}},En=o=>{if(o===void 0)return X+1;if(!Number.isFinite(o))return X;const i=Math.max(0,Math.floor(o));if(i>X)throw new b("BAD_REQUEST",`search returns at most ${String(X)} documents (asked for ${String(i)}) — narrow the query or paginate instead`);return i},yn=/^[0-9a-f]{8}-[0-9a-f]{4}-[1-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/iu,Nn=o=>{if(!yn.test(o))throw new b("INTERNAL",`invalid clientId ${JSON.stringify(o)}: a client-supplied row id must be a UUID`)},ut=50,Et=500,Sn=128,de=(o,i,t)=>{const d=i??Et;if(o>d)throw new b("BATCH_LIMIT_EXCEEDED",`${t}: batch of ${String(o)} exceeds the limit of ${String(d)} (raise options.limit or chunk the call)`,{status:400})},Tn=o=>{const i={eq:(t,d)=>(o.sqlConditions.push({comparator:"=",field:t,value:d}),i),gt:(t,d)=>(o.sqlConditions.push({comparator:">",field:t,value:d}),i),gte:(t,d)=>(o.sqlConditions.push({comparator:">=",field:t,value:d}),i),lt:(t,d)=>(o.sqlConditions.push({comparator:"<",field:t,value:d}),i),lte:(t,d)=>(o.sqlConditions.push({comparator:"<=",field:t,value:d}),i)};return i},_n=o=>Math.max(o,X),yt=(o,i)=>{const t=o.filters.map(d=>n`${Y(d.field)} = ${ie(d.value)}`);return i&&t.push(i),t},Rn=(o,i,t,d,c)=>{const p=He(t.query,Pe(t.definition.language));if(p.length===0)return[];const w=Ct(i,t.indexName),A=`${w}__vocab`,y=p.length-1,g=p.map((L,M)=>{const H=fn(L,M===y),W=H.exact?n`${n.identifier("term")} = ${H.lower}`:n`${n.identifier("term")} >= ${H.lower} AND ${n.identifier("term")} < ${H.upper}`;return n`SELECT ${n.identifier("doc")}, ${n.raw(String(M))} AS ${n.identifier("__term__")}, COUNT(*) AS ${n.identifier("__n__")} FROM ${n.identifier(A)} WHERE ${W} GROUP BY ${n.identifier("doc")}`}),N=p.map((L,M)=>n`SUM(CASE WHEN u.${n.identifier("__term__")} = ${n.raw(String(M))} THEN u.${n.identifier("__n__")} ELSE 0 END)`),S=n`SELECT f.${n.identifier(ye)} AS ${n.identifier(ye)}, ${n.join(N,n` + `)} AS ${n.identifier("__score__")} FROM (${n.join(g,n` UNION ALL `)}) u JOIN ${n.identifier(w)} f ON f.rowid = u.${n.identifier("doc")} GROUP BY f.${n.identifier(ye)} HAVING ${n.join(N.map(L=>n`${L} > 0`),n` AND `)}`,_=yt(t,c);let C=n`SELECT m.id, m._creationTime, m.${n.identifier(P)}, s.${n.identifier("__score__")} AS ${n.identifier("__score__")} FROM (${S}) s JOIN ${n.identifier(i)} m ON m.id = s.${n.identifier(ye)}`;_.length>0&&(C=n`${C} WHERE ${n.join(_,n` AND `)}`),C=n`${C} ORDER BY s.${n.identifier("__score__")} DESC, m._creationTime DESC, m.id ASC LIMIT ${n.raw(String(d))}`;const F=[];for(const L of B(o,C)){const M=gt(L);if(M){const H=L.__score__;F.push({document:M,score:typeof H=="number"?H:Number(H??0)})}}return F},An=(o,i,t,d,c)=>{const p=Pe(t.definition.language),w=He(t.query,p);if(w.length===0)return[];const A=yt(t,c);let y=n`SELECT id, _creationTime, ${n.identifier(P)} FROM ${n.identifier(i)}`;A.length>0&&(y=n`${y} WHERE ${n.join(A,n` AND `)}`),y=n`${y} ORDER BY _creationTime DESC, id ASC LIMIT ${n.raw(String(_n(d)))}`;const g=B(o,y).toArray(),N=[];for(const S of g){const _=gt(S);if(!_)continue;const C=un(vt(_,t.definition),w,p);C>0&&N.push({creationTime:typeof _._creationTime=="number"?_._creationTime:0,doc:_,id:typeof _._id=="string"?_._id:"",score:C})}return N.sort((S,_)=>_.score-S.score||_.creationTime-S.creationTime||S.id.localeCompare(_.id)),N.slice(0,d).map(S=>({document:S.doc,score:S.score}))},Oe=(o,i,t,d)=>{if(!Number.isFinite(o.lat)||o.lat<-90||o.lat>90||!Number.isFinite(o.lng)||o.lng<-180||o.lng>180)throw new b("BAD_REQUEST",`geo index "${d}" on table "${t}": ${i} must have a finite lat in [-90, 90] and lng in [-180, 180]`)},xn=(o,i)=>{const t=o,d={near:(c,p)=>{if(t.within)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${i}": call .near() or .within(), not both`);if(Oe(c,".near() point",i,t.indexName),!Number.isFinite(p)||p<=0)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${i}": .near() radiusMeters must be a finite number > 0, got ${String(p)}`);return t.near={point:{lat:c.lat,lng:c.lng},radiusMeters:p},d},within:c=>{if(t.near)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${i}": call .near() or .within(), not both`);if(Oe(c.sw,".within() sw corner",i,t.indexName),Oe(c.ne,".within() ne corner",i,t.indexName),c.sw.lat>c.ne.lat)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${i}": .within() corners are transposed (sw.lat > ne.lat)`);if(c.sw.lng>c.ne.lng)throw new b("BAD_REQUEST",`geo index "${t.indexName}" on table "${i}": .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:c.ne.lat,lng:c.ne.lng},sw:{lat:c.sw.lat,lng:c.sw.lng}},d}};return d},In=(o,i)=>{const t=o[i];if(t===null||typeof t!="object")return;const{lat:d,lng:c}=t;return typeof d=="number"&&typeof c=="number"?{lat:d,lng:c}:void 0},vn=(o,i)=>{const t=In(o,i.definition.field);if(!t)return;const d=typeof o._creationTime=="number"?o._creationTime:0;if(i.near){const c=Kt(i.near.point,t);return c<=i.near.radiusMeters?{creationTime:d,distance:c}:void 0}return jt(t,i.within)?{creationTime:d,distance:0}:void 0},Cn=(o,i,t,d)=>{if(!t.near&&!t.within)throw new b("INTERNAL",`geo index "${t.indexName}" on table "${i}": call .near(point, radius) or .within(box)`);const c=t.near?Pt(t.near.point,t.near.radiusMeters):Ht(t.within),p=Ut(i,t.indexName),w=c.map(S=>n`(g.${n.identifier("__geohash__")} >= ${S} AND g.${n.identifier("__geohash__")} < ${`${S}{`})`),A=[n`(${n.join(w,n` OR `)})`];d&&A.push(d);const y=n`SELECT m.id, m._creationTime, m.${n.identifier(P)} FROM ${n.identifier(p)} g JOIN ${n.identifier(i)} m ON m.id = g.${n.identifier("__id__")} WHERE ${n.join(A,n` AND `)}`,g=B(o,y).toArray(),N=[];for(const S of g){const _=ce(S),C=_?vn(_,t):void 0;_&&C&&N.push({creationTime:C.creationTime,distance:C.distance,doc:_})}return N.sort((S,_)=>S.distance-_.distance||_.creationTime-S.creationTime),N},Nt=(o,i,t,d)=>{const c=[];for(const p of o)if(i.every(w=>w(d(p)))&&(c.push(p),typeof t=="number"&&c.length>=t))break;return c},kn=(o,i,t,d,c,p=()=>{})=>{const w=t.within!==void 0,A=Cn(o,i,t,c).map(y=>({distanceMeters:w?null:y.distance,document:y.doc}));return p(A.length),typeof d=="number"?A.slice(0,Math.max(0,Math.floor(d))):A},St=(o,i,t,d,c,p=()=>{})=>{const{geo:w}=t;if(!w)throw new b("INTERNAL","runGeoTerminalScored called without a staged geo query");const A=t.inMemoryFilters.length>0,y=kn(o,i,w,A?void 0:c,d,p);return A?Nt(y,t.inMemoryFilters,c,g=>g.document):y},Mn=(o,i,t,d,c,p=()=>{})=>St(o,i,t,d,c,p).map(w=>w.document),Ln=(o,i,t,d,c,p,w=()=>{})=>{const A=[];for(const S of t.sqlConditions)A.push(n`${Y(S.field)} ${n.raw(S.comparator)} ${ie(S.value)}`);d&&A.push(d);let y=n`SELECT id, _creationTime, ${n.identifier(P)} FROM ${n.identifier(i)}`;A.length>0&&(y=n`${y} WHERE ${n.join(A,n` AND `)}`),y=n`${y} ORDER BY ${c}`,typeof p=="number"&&t.inMemoryFilters.length===0&&(y=n`${y} LIMIT ${n.raw(String(Math.max(0,Math.floor(p))))}`);const g=B(o,y).toArray();w(g.length);const N=[];for(const S of g){const _=ce(S);if(_&&t.inMemoryFilters.every(C=>C(_))&&(N.push(_),typeof p=="number"&&N.length>=p))break}return N},oe={fieldRef:Y,serialize:ie},We=(o,i,t)=>{const d=o.shape[i];if(d&&rn(d))throw new b("BAD_REQUEST",`${t}: "${i}" 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`)},Dn=o=>{let i=0;const t=[],d={fieldRef:Y,relationExists:c=>{const{childWhere:p,negated:w,parentTable:A,relation:y}=c,g=`__rel_${String(i)}`,N=t.at(-1)??A;i+=1,o(y.table,U);const S=y.kind==="one"?y.field:y.references,_=y.kind==="one"?y.references:y.field,C=n`${nt(g,_)} = ${nt(N,S)}`;t.push(g);const F=ne(p,d);t.pop();const L=F?n`${C} AND ${F}`:C,M=n`EXISTS (SELECT 1 FROM ${n.identifier(y.table)} AS ${n.identifier(g)} WHERE ${L})`;return w?n`NOT ${M}`:M},serialize:ie};return d},Tt=o=>{const i=o.map(t=>n`${Y(t.field)} ${n.raw(t.direction==="desc"?"DESC":"ASC")}`);return o.some(t=>t.field==="_id"||t.field==="id")||i.push(n`${Y("id")} ASC`),n.join(i,n`, `)},Fn={"<":"lt","<=":"lte","=":"eq",">":"gt",">=":"gte"},On=o=>{const i=o.order;return o.indexFields.length>0?o.indexFields.map(t=>({direction:i,field:t})):[{direction:i,field:"_creationTime"}]},Wn=(o,i,t,d)=>{const c=o.sqlConditions.map(p=>({[p.field]:{[Fn[p.comparator]??"eq"]:p.value}}));if(t&&c.push(bt(i,Be(t))),d&&c.push(zt(i,Be(d))),c.length!==0)return c.length===1?c[0]:{AND:c}},Bn=(o,i,t)=>{const d=[];for(const c of o){const p=ce(c);if(p&&i.every(w=>w(p))&&(d.push(p),t!==void 0&&d.length>t))break}return d},qn=(o,i,t,d,c,p=()=>{})=>{const w=Math.max(0,Math.floor(d.numItems)),A=On(t),y=typeof d.endCursor=="string",g=ne(Wn(t,A,d.cursor,d.endCursor),oe),N=c&&g?n`${g} AND ${c}`:c??g;let S=n`SELECT id, _creationTime, ${n.identifier(P)} FROM ${n.identifier(i)}`;N&&(S=n`${S} WHERE ${N}`),S=n`${S} ORDER BY ${Tt(A)}`;const _=t.inMemoryFilters.length>0;!_&&!y&&(S=n`${S} LIMIT ${n.raw(String(w+1))}`);const C=B(o,S).toArray();p(C.length);const F=Bn(C,t.inMemoryFilters,_||y?void 0:w);if(y){const W=F.length>=2?F[Math.floor(F.length/2)-1]:void 0;return{continueCursor:d.endCursor??null,isDone:!0,page:F,splitCursor:W?qe(W,A):null}}const L=F.length>w,M=L?F.slice(0,w):F,H=M.at(-1);return{continueCursor:L&&H?qe(H,A):null,isDone:!L,page:M}};class Un extends b{constructor(i="unique() found more than one matching document"){super("NOT_UNIQUE",i,{name:"NotUniqueError"})}}const Pn=/\s/u,Hn=String.fromCodePoint(0),ft=(o,i,t)=>{if(!o.tables[i])throw new b("INTERNAL",`unknown table: ${i}`);return typeof t!="string"||t.length===0||Pn.test(t)||t.includes(Hn)?null:t},jn=(o,i,t,d=()=>{},c=()=>{},p=()=>{})=>{const w=i.tables[t];if(!w)throw new b("INTERNAL",`unknown table: ${t}`);const A=le(w.softDeleteMode,void 0),y=A?ne(A,oe):void 0,g={indexFields:[],indexName:void 0,inMemoryFilters:[],order:"asc",sqlConditions:[]};let N=0;const S=E=>{const{search:v}=g;if(!v)throw new b("INTERNAL","runSearchFetch called without a staged search");Wt(o,t,w);const I=g.inMemoryFilters.length>0,k=En(I?void 0:E),j=qt(o)?Rn(o,t,v,k,y):An(o,t,v,k,y);return I?(N=j.length,Nt(j,g.inMemoryFilters,E,te=>te.document)):(E===void 0&&pn(j),j)},_=E=>S(E).map(v=>v.document),C=E=>{const v=gn(E);return bn(_(mn(v)),v)},F=()=>{const E=g.indexFields.length>0?g.indexFields:["_creationTime"],v=g.order==="desc"?"DESC":"ASC";return n.join(E.map(I=>n`${Y(I)} ${n.raw(v)}`),n`, `)},L=()=>{if(g.search||g.geo||g.indexName===void 0){c(void 0);return}c(Zt(t,g.indexName,g.indexFields,g.sqlConditions,ie))},M=E=>{L();let v=0;const I=(()=>{if(g.search){const k=_(E);return v=N,k}return g.geo?Mn(o,t,g,y,E,k=>{v=k}):Ln(o,t,g,y,F(),E,k=>{v=k})})();return p(Math.max(v,I.length)),I},H=()=>{if(!g.search&&!g.geo)throw new b("INTERNAL",`ctx.db.query("${t}").collectWithScores() requires a staged .withSearchIndex(...) or .withGeoIndex(...)`);L();let E=0;const v=(()=>{if(g.search){const I=S(void 0);return E=N,I}return St(o,t,g,y,void 0,I=>{E=I})})();return p(Math.max(E,v.length)),v},W={async*[Symbol.asyncIterator](){const E=[...g.inMemoryFilters];let v;g.inMemoryFilters=[];try{for(;;){const I=await W.paginate({cursor:v??null,numItems:Sn});for(const k of I.page)E.every(j=>j(k))&&(yield k);if(I.isDone||I.continueCursor===null)return;v=I.continueCursor}}finally{g.inMemoryFilters=E}},async collect(){return M(void 0)},async collectWithScores(){return H()},filter(E){return g.inMemoryFilters.push(E),W},async first(){return M(g.inMemoryFilters.length>0?void 0:1)[0]??null},order(E){return g.order=E==="desc"?"desc":"asc",W},async paginate(E){let v=0;if(L(),g.search){const k=C(E);return p(k.page.length),k}if(g.geo)throw new b("INTERNAL","pagination is not supported on geo queries; use .take(n) or .collect()");const I=qn(o,t,g,E,y,k=>{v=k});return p(Math.max(v,I.page.length)),I},async take(E){return M(E)},async unique(){const E=M(g.inMemoryFilters.length>0?void 0:2);if(E.length>1)throw new Un(`unique() on table "${t}" matched ${String(E.length)} documents; expected at most one`);return E[0]??null},withGeoIndex(E,v){const I=(w.geoIndexes??[]).find(j=>j.name===E);if(!I)throw new b("INTERNAL",`unknown geo index "${E}" on table "${t}"`);d(t,E,"geo");const k={definition:I,indexName:E};if(g.geo=k,v(xn(k,t)),!k.near&&!k.within)throw new b("INTERNAL",`geo index "${E}" on table "${t}" requires a .near(point, radius) or .within(box) call`);return W},withIndex(E,v){const I=w.indexes.find(k=>k.name===E);if(!I)throw new b("INTERNAL",`unknown index "${E}" on table "${t}"`);return d(t,E,"index"),g.indexName=E,g.indexFields=I.fields,v&&v(Tn(g)),W},withSearchIndex(E,v){const I=(w.searchIndexes??[]).find(j=>j.name===E);if(!I)throw new b("INTERNAL",`unknown search index "${E}" on table "${t}"`);d(t,E,"search");const k={definition:I,field:I.field,filters:[],hasQuery:!1,indexName:E,query:""};if(g.search=k,v(hn(k,t,Pe(I.language))),!k.hasQuery)throw new b("INTERNAL",`search index "${E}" on table "${t}" requires a .search(field, query) call`);return W}};return W},ht=(o,i,t)=>{const d={...i};for(const[c,p]of wt(o)){if(p.serverDefault){d[c]=p.serverDefault({auth:t});continue}d[c]===void 0&&(p.defaultFn?d[c]=p.defaultFn():"defaultValue"in p&&(d[c]=p.defaultValue))}return d},pt=(o,i,t,d)=>{const c=t;for(const[p,w]of wt(o)){if(w.serverDefault){p in i&&(c[p]=w.serverDefault({auth:d}));continue}w.onUpdateFn&&!(p in i)&&(c[p]=w.onUpdateFn())}},mt=(o,i)=>{for(const t of Object.keys(i))if(i[t]===void 0)throw new b("INTERNAL",`Cannot ${o} field '${t}' to undefined — use null to clear a nullable field, or omit the key to leave it unchanged.`)},Kn=/unique constraint failed/i,Gn=o=>o instanceof Error&&Kn.test(o.message),Ue=(o,i,t)=>{try{B(o,t)}catch(d){throw Gn(d)?new pe(`unique constraint violation on "${i}"`,"unique"):d}},_e=(o,i,t)=>{if(Ue(o,i,t),B(o,n`SELECT changes() AS changed`).one().changed===0)throw new pe(`optimistic concurrency conflict on "${i}" — the row changed during this mutation; refetch and retry`,"occ")},$t=(o,i,t,d,c,p,w)=>{const A=[];for(let S=0;S<t.length+1;S+=1){const _=[];for(let M=0;M<S;M+=1)_.push(n`${n.identifier(t[M])} IS ${p[M]}`);const C=t[S],F=d[S];if(C!==void 0&&F!==void 0){const M=F.direction==="desc"?">":"<";_.push(n`${n.identifier(C)} ${n.raw(M)} ${p[S]}`)}else _.push(n`${n.identifier(Jt)} < ${w}`);const[L]=_;A.push(_.length===1&&L!==void 0?L:n`(${n.join(_,n` AND `)})`)}const y=n.join(A,n` OR `),g=B(o,n`SELECT COUNT(*) AS c FROM ${n.identifier(i)} WHERE ${n.identifier("__partition__")} = ${c} AND (${y})`).one(),N=B(o,n`SELECT COUNT(*) AS c FROM ${n.identifier(i)} WHERE ${n.identifier("__partition__")} = ${c}`).one();return{before:g.c,total:N.c}},yr=o=>{const{sql:i}=o,{schema:t}=o,d=o.broadcast??(()=>{}),c=(e,...r)=>{const a=t.tables[e]?.indexes;if(!a||a.length===0)return;const l=[];for(const h of r)h&&l.push(...Xt(a,h,ie));return l.length>0?l:void 0},{headroom:p}=o;let w=!1;const A=async e=>{const r=w;w=!0;try{return await e()}finally{w=r}},y=o.onRead??(()=>{}),g=o.onReadRange??(e=>{y(e.table,U)}),N=(e,r)=>{r!==void 0&&r!==U&&!w&&p?.recordRead(1),y(e,r)},S=o.onIndexUse??(()=>{}),_=o.onWrite??(()=>{}),C=async e=>{w||p?.recordWrite(e.doc),await _(e)},{cache:F}=o,L=o.clock??(()=>Date.now()),M=o.idGenerator??(()=>crypto.randomUUID()),H=o.scheduler??Lt,{globalDb:W}=o,E=o.auth??{identity:null,userId:null},v=o.cdc??!1,I=H,k=on({scheduler:typeof I.list=="function"&&typeof I.get=="function"?I:void 0,storage:o.storage}),j=(e,r,a,l)=>{v&&Bt(i,L(),e,r,a,l)},te=e=>t.tables[e]?.shardMode?.kind==="global",je=(e,r)=>{if(te(e)){if(!W)throw new b("INTERNAL",`cross-backend ${r} for global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return W}return q},Re=e=>je(e,"cascade"),z=(e,r)=>{if(te(e)){if(!W)throw new b("INTERNAL",`${r} on global table '${e}' requires a globalDb writer — pass one to createShardCtxDb({ globalDb })`);return W}},Ae=(e,r)=>je(e,"relation load").findMany(e,r),Ke=(e,r)=>(te(e)&&N(e,U),Ae(e,r)),_t=e=>!te(e.table),Ge=o.relationExistsPushDown??"auto",Qe=Ge!=="never",{maxRelationKeys:ze}=o,me=(e,r,a)=>at(e,{fetcher:Ke,maxRelationKeys:ze,relationBaseWhere:a,schema:t,tableName:r}),Ve=async(e,r,a,l)=>{const h=z(e,"relation grouped count");if(h)return N(e,U),tn((x,G)=>h.count(x,G),e,r,a,l);const f=t.tables[e];if(!f)throw new b("INTERNAL",`unknown table: ${e}`);N(e,U);const s=le(f.softDeleteMode,void 0),u={[r]:{in:a}},m=Q(Q(u,l),s),T=await me(m,e,void 0),$=ne(T,oe),R=Y(r);let O=n`SELECT ${R} AS __fk__, COUNT(*) AS count FROM ${n.identifier(e)}`;$&&(O=n`${O} WHERE ${$}`),O=n`${O} GROUP BY ${R}`;const D=B(i,O).toArray();return new Map(D.map(x=>[x.__fk__,x.count]))};let $e=0;const Ye=new Set;for(const[e,r]of Object.entries(t.tables))for(const a of Object.values(r.triggerMap??{}))Ye.add(`${e} ${a.timing} ${a.op}`);const Z=(e,r,a)=>Ye.has(`${e} ${r} ${a}`),ee=async(e,r,a)=>{if($e+=1,$e>ut)throw $e-=1,new pe(`trigger recursion exceeded ${String(ut)} levels on "${a.table}" — check for a self-triggering write`,"trigger");try{await an({ctx:At,event:a,op:r,schema:t,tableName:a.table,timing:e})}finally{$e-=1}},{ensureBackfilledForTable:ue,ensureBackfilledIndex:xe,ensureRankBackfilled:Ie,ensureRankBackfilledForTable:fe,syncAggregates:we,syncCompanionsForInsert:Je,syncGeo:ge,syncRanks:he,syncSearch:be}=It({broadcast:d,indexKeysFor:(e,r)=>c(e,r),invalidateCache:(e,r,a)=>F?.invalidate(e,r,c(e,a)),recordCdc:j,schema:t,sql:i}),Xe=(e,r,a)=>{const{shardMode:l}=r;if(l?.kind==="shardBy"&&!(l.field!==void 0&&(a.partitionBy??[]).includes(l.field)))throw Object.assign(new Error(`rank index "${a.name}" on "${e}" partitions across shards (shard key "${l.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})},Ze=e=>Object.entries(t.tables).filter(([,r])=>r.shardMode?.kind!=="global").map(([r])=>r).filter(r=>e===void 0||r===e),re=(e,r)=>{const a=Ze(r);if(a.length===0)return;const l=a.map(T=>n`SELECT ${n.raw(`'${T.replaceAll("'","''")}'`)} AS __t__, id, _creationTime, ${n.identifier(P)} FROM ${n.identifier(T)} WHERE id = ${e}`),h=n`${n.join(l,n` UNION ALL `)} LIMIT 1`,[f]=B(i,h).toArray();if(!f)return;const s=f.__t__,u=ce(f);if(typeof s!="string"||!u)return;const m=f[P];return{docJson:typeof m=="string"?m:se(m??{}),row:u,tableName:s}},Rt=(e,r)=>{const a=[...new Set(e)],l=new Map;if(a.length===0)return l;const h=Ze(r);if(h.length===0)return l;const f=Math.max(1,Math.floor(900/h.length));for(let s=0;s<a.length;s+=f){const u=a.slice(s,s+f),m=n.join(u.map(R=>n`${R}`),n`, `),T=h.map(R=>n`SELECT ${n.raw(`'${R.replaceAll("'","''")}'`)} AS __t__, id FROM ${n.identifier(R)} WHERE id IN (${m})`),$=n.join(T,n` UNION ALL `);for(const R of B(i,$)){const{id:O,__t__:D}=R;typeof D=="string"&&typeof O=="string"&&l.set(O,D)}}return l},et={assertRankPartitionLocal:Xe,ensureRankBackfilled:Ie,onRead:N,rowToDocument:ce,schema:t,sql:i},q={system:k,async aggregate(e,r){const a=z(e,"aggregate");if(a)return N(e,U),a.aggregate(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);if(Ne(r.op),r.op==="count")return q.count(e,{baseWhere:r.baseWhere,relationBaseWhere:r.relationBaseWhere,restrictsCounts:r.restrictsCounts,where:r.where});if(!r.field)throw new b("INTERNAL",`aggregate(${e}, { op: "${r.op}" }): "field" is required for non-count reducers`);N(e,U);const h=le(l.softDeleteMode,void 0),f=Q(Q(r.baseWhere,r.where),h),s=await me(f,e,r.relationBaseWhere),u=s!==f;if(l.aggregateIndexes&&!r.baseWhere&&!u&&!h){const D=Ot(l.aggregateIndexes,r.op,r.field,r.where);if(D){xe(e,D.index);const x=ve(D.index.by??[],D.key),G=ke(e,D.index.name),V=B(i,n`SELECT ${Se} AS value, ${Le} AS count FROM ${n.identifier(G)} WHERE ${Te} = ${x}`).toArray()[0];return Ce(r.op,V)}}We(l,r.field,`aggregate(${e}, { op: "${r.op}", field: "${r.field}" })`);const m=ne(s,oe),T=Ne(r.op),$=Y(r.field);let R=n`SELECT ${n.raw(T)}(${$}) AS value FROM ${n.identifier(e)}`;return m&&(R=n`${R} WHERE ${m}`),B(i,R).toArray()[0]?.value??null},asId(e,r){const a=ft(t,e,r);if(a===null)throw new b("BAD_REQUEST",`asId("${e}", …): "${r}" is not a valid id for table "${e}"`,{status:400});return a},async count(e,r){const a=z(e,"count");if(a)return N(e,U),a.count(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=Mt(r);if(h.restrictsCounts)throw new Me(e);N(e,U);const f=le(l.softDeleteMode,void 0),s=Q(Q(h.baseWhere,h.where),f),u=await me(s,e,h.relationBaseWhere),m=u!==s;if(l.aggregateIndexes&&!h.baseWhere&&!m&&!f){const R=Ft(l.aggregateIndexes,h.where);if(R){xe(e,R.index);const O=ve(R.index.by??[],R.key),D=ke(e,R.index.name),x=B(i,n`SELECT ${Se} AS value FROM ${n.identifier(D)} WHERE ${Te} = ${O}`).toArray();return x[0]===void 0?0:x[0].value??0}}const T=ne(u,oe);let $=n`SELECT COUNT(*) AS count FROM ${n.identifier(e)}`;return T&&($=n`${$} WHERE ${T}`),B(i,$).one().count},async delete(e,r,a){const l=re(e,r);if(!l){const $=r===void 0?W:void 0;$&&await $.delete(e,void 0,a);return}const{docJson:h,row:f,tableName:s}=l,u=t.tables[s],m=a?.hard===!0,T=!m&&u?.softDeleteMode?u.softDeleteMode.field:void 0;if(!(T&&f[T]!==null&&f[T]!==void 0)){if(Z(s,"before","delete")&&await ee("before","delete",{id:e,op:"delete",previous:f,table:s}),await en({deletedId:e,deletedReference:$=>f[$],findHolders:async($,R,O)=>(await Re($).findMany($,{includeDeleted:m,where:{[R]:O}})).page,onCascade:($,R)=>Re($).delete(R,void 0,a),onRestrict:$=>{throw new pe($,"restrict")},onSetNull:($,R,O)=>Re($).patch(R,{[O]:null}),schema:t,tableName:s}),ue(s),fe(s),T){const $={...f,[T]:L(),_id:e};_e(i,s,n`UPDATE ${n.identifier(s)} SET ${n.identifier(P)} = ${se($)} WHERE id = ${e} AND ${n.identifier(P)} = ${h}`),be(s,e,$,f),ge(s,e,void 0),we(s,f,$),he(s,e,f,void 0),F?.invalidate(s,e,c(s,f,$)),j(s,e,"update",$),d({indexKeys:c(s,f,$),key:e,op:"update",row:$,table:s}),Z(s,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:f,table:s}),await C({id:e,op:"delete",table:s});return}_e(i,s,n`DELETE FROM ${n.identifier(s)} WHERE id = ${e} AND ${n.identifier(P)} = ${h}`),be(s,e,void 0),ge(s,e,void 0),we(s,f,void 0),he(s,e,f,void 0),F?.invalidate(s,e,c(s,f)),j(s,e,"delete"),d({indexKeys:c(s,f),key:e,op:"delete",table:s}),Z(s,"after","delete")&&await ee("after","delete",{id:e,op:"delete",previous:f,table:s}),await C({id:e,op:"delete",table:s})}},async deleteAll(e,r){if(!t.tables[e])throw new b("INTERNAL",`unknown table: ${e}`);const a=Math.max(1,r?.chunkSize??Et),l=r?.hard===void 0?void 0:{hard:r.hard},h=te(e)?void 0:e;let f=0;return await A(async()=>{for(;;){const s=(await q.findMany(e,{limit:a})).page.map(u=>String(u._id));if(s.length===0)break;for(const u of s)await q.delete(u,h,l),f+=1;if(s.length<a)break}}),{deleted:f}},async deleteMany(e,r,a){de(e.length,r?.limit,"deleteMany");for(const l of e)await q.delete(l,a);return{deleted:e.length}},async deleteWhere(e,r,a){const l=(await(z(e,"deleteWhere")??q).findMany(e,{where:r})).page.map(h=>String(h._id));if(de(l.length,a?.limit,"deleteWhere"),q.deleteMany===void 0)throw new b("INTERNAL",`ctx.db.${e}.deleteMany is unavailable: this writer has no batch delete`);return q.deleteMany(l,a)},async findFirst(e,r={}){return(await q.findMany(e,{...r,limit:1})).page[0]??null},async findFirstOrThrow(e,r={}){const a=await q.findFirst(e,r);if(a===null)throw new Gt(`findFirstOrThrow: no "${e}" document matched`);return a},async findMany(e,r={}){const a=z(e,"findMany");if(a)return N(e,U),a.findMany(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=!r.where&&!r.baseWhere;h?N(e,U):N(e);const f=Qt(r.orderBy),s=r.cursor?bt(f,Be(r.cursor)):void 0;let u=Q(r.baseWhere,r.where);u=Q(u,le(l.softDeleteMode,r.includeDeleted)),u=await at(u,{canPushExists:Qe?_t:void 0,existsPushMode:Ge==="always"?"always":"auto",fetcher:Ke,maxRelationKeys:ze,relationBaseWhere:r.relationBaseWhere,schema:t,tableName:e}),s&&(u=u?{AND:[u,s]}:s);const m=Qe?Dn(N):oe,T=ne(u,m);let $=n`SELECT id, _creationTime, ${n.identifier(P)} FROM ${n.identifier(e)}`;T&&($=n`${$} WHERE ${T}`),$=n`${$} ORDER BY ${Tt(f)}`;const R=typeof r.limit=="number"?Math.max(0,Math.floor(r.limit)):void 0;R!==void 0&&($=n`${$} LIMIT ${n.raw(String(R+1))}`);const O=B(i,$).toArray();h&&!w&&p?.recordRead(O.length);const D=[];for(const J of O){const K=ce(J);K&&(D.push(K),!h&&typeof K._id=="string"&&N(e,K._id))}if(R===void 0)return r.with&&await st({groupedCounter:Ve,fetcher:Ae,parents:D,...dt(r),schema:t,tableName:e,with:r.with}),{continueCursor:null,isDone:!0,page:rt(D,r.select,r.with)};const x=D.length>R,G=x?D.slice(0,R):D,V=G.at(-1);return r.with&&await st({fetcher:Ae,groupedCounter:Ve,parents:G,...dt(r),schema:t,tableName:e,with:r.with}),{continueCursor:x&&V?qe(V,f):null,isDone:!x,page:rt(G,r.select,r.with)}},async get(e,r){const a=re(e,r);if(!a){const l=r===void 0?W:void 0;return l?l.get(e):null}return N(a.tableName,e),a.row},async lookupById(e,r){const a=re(e,r);return a?(N(a.tableName,e),{row:a.row,tableName:a.tableName}):null},async groupBy(e,r){const a=z(e,"groupBy");if(a)return N(e,U),a.groupBy(e,r);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);N(e,U);const h=r.agg??{op:"count"};if(Ne(h.op),h.op!=="count"&&!h.field)throw new b("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);const f=le(l.softDeleteMode,void 0),s=Q(Q(r.baseWhere,r.where),f),u=await me(s,e,r.relationBaseWhere),m=u!==s;if(l.aggregateIndexes&&!r.baseWhere&&!m&&!f){const x=Dt(l.aggregateIndexes,h.op,h.field,r.by,r.where);if(x){xe(e,x.index);const G=ke(e,x.index.name),V=Object.keys(x.partial),J=[];if(V.length===(x.index.by??[]).length&&V.length>0){const ae=ve(x.index.by??[],x.partial),Ee=B(i,n`SELECT ${Se} AS value, ${Le} AS count FROM ${n.identifier(G)} WHERE ${Te} = ${ae}`).toArray();return Ee.length>0&&J.push({key:{...x.partial},value:Ce(h.op,Ee[0])}),J}const K=B(i,n`SELECT ${Te} AS key, ${Se} AS value, ${Le} AS count FROM ${n.identifier(G)}`).toArray();for(const ae of K){const Ee=kt(JSON.parse(ae.key));J.push({key:Ee,value:Ce(h.op,ae)})}return J}}for(const x of r.by)We(l,x,`groupBy(${e}, { by: [..."${x}"] })`);h.field!==void 0&&We(l,h.field,`groupBy(${e}, { agg: { op: "${h.op}", field: "${h.field}" } })`);const T=ne(u,oe),$=r.by.map(x=>n`${Y(x)} AS ${n.identifier(x)}`);if(h.op==="count")$.push(n`COUNT(*) AS value`);else{const{field:x}=h;if(x===void 0)throw new b("INTERNAL",`groupBy(${e}, { agg: { op: "${h.op}" } }): "field" is required for non-count reducers`);$.push(n`${n.raw(Ne(h.op))}(${Y(x)}) AS value`)}let R=n`SELECT ${n.join($,n`, `)} FROM ${n.identifier(e)}`;T&&(R=n`${R} WHERE ${T}`),R=n`${R} GROUP BY ${n.join(r.by.map(x=>Y(x)),n`, `)}`;const O=B(i,R).toArray(),D=[];for(const x of O){const G={};for(const J of r.by)G[J]=x[J]??null;const{value:V}=x;D.push({key:G,value:V==null?null:Number(V)})}return D},async insert(e,r,a){const l=z(e,"insert");if(l){const T=await l.insert(e,r,a);return w||p?.recordWrite(r),d({key:T,op:"insert",row:{...r,_id:T},table:e}),T}const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);const f=ht(h,r,E);Fe(h,f);let s;a?.clientId!==void 0?(Nn(a.clientId),s=a.clientId):a?.allowExplicitId&&typeof f._id=="string"?s=f._id:s=M();const u=a?.allowExplicitId&&typeof f._creationTime=="number"?f._creationTime:L(),m={...f,_creationTime:u,_id:s};return Z(e,"before","insert")&&await ee("before","insert",{doc:{...m},id:s,op:"insert",table:e}),ue(e),fe(e),Ue(i,e,n`INSERT INTO ${n.identifier(e)} (id, _creationTime, ${n.identifier(P)}) VALUES (${s}, ${u}, ${se(m)})`),Je(e,s,m),Z(e,"after","insert")&&await ee("after","insert",{doc:m,id:s,op:"insert",table:e}),await C({doc:m,id:s,op:"insert",table:e}),s},async insertManyUnsafe(e,r,a){if(de(r.length,a?.limit,"insertManyUnsafe"),r.length===0)return[];const l=z(e,"insert");if(l){const u=[];for(const m of r){const T=await l.insert(e,m,{allowExplicitId:a?.allowExplicitId});w||p?.recordWrite(m),d({key:T,op:"insert",row:{...m,_id:T},table:e}),u.push(T)}return u}const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);ue(e),fe(e);const f=r.map(u=>{const m=ht(h,u,E),T=a?.allowExplicitId===!0&&typeof m._id=="string"?m._id:M(),$=a?.allowExplicitId===!0&&typeof m._creationTime=="number"?m._creationTime:L();return{creationTime:$,document:{...m,_creationTime:$,_id:T},id:T}});if(!w)for(const u of f)p?.recordWrite(u.document);const s=n.join(f.map(u=>n`(${u.id}, ${u.creationTime}, ${se(u.document)})`),n`, `);Ue(i,e,n`INSERT INTO ${n.identifier(e)} (id, _creationTime, ${n.identifier(P)}) VALUES ${s}`);for(const{document:u,id:m}of f)Je(e,m,u),await _({doc:u,id:m,op:"insert",table:e});return f.map(u=>u.id)},async insertMany(e,r,a){de(r.length,a?.limit,"insertMany");const l=a?.skipDuplicates===!0,h=[];for(const f of r)try{h.push(await q.insert(e,f))}catch(s){if(l&&s instanceof pe&&s.kind==="unique")h.push(null);else throw s}return h},normalizeId(e,r){return ft(t,e,r)},async patch(e,r,a){const l=re(e,a);if(!l){const T=a===void 0?W:void 0;if(T){await T.patch(e,r);return}throw new b("INTERNAL",`document not found: ${e}`)}const{docJson:h,row:f,tableName:s}=l,u=t.tables[s];if(!u)throw new b("INTERNAL",`unknown table: ${s}`);N(s,e),mt("patch",r);const m={...f,...r,_id:e};pt(u,r,m,E),Fe(u,m,!0),Z(s,"before","update")&&await ee("before","update",{doc:{...m},id:e,op:"update",previous:f,table:s}),ue(s),fe(s),_e(i,s,n`UPDATE ${n.identifier(s)} SET ${n.identifier(P)} = ${se(m)} WHERE id = ${e} AND ${n.identifier(P)} = ${h}`),be(s,e,m,f),ge(s,e,m),we(s,f,m),he(s,e,f,m),F?.invalidate(s,e,c(s,f,m)),j(s,e,"update",m),d({indexKeys:c(s,f,m),key:e,op:"update",row:m,table:s}),Z(s,"after","update")&&await ee("after","update",{doc:m,id:e,op:"update",previous:f,table:s}),await C({doc:m,id:e,op:"update",table:s})},async patchMany(e,r,a){de(e.length,r?.limit,"patchMany");for(const l of e)await q.patch(l.id,l.patch,a);return{patched:e.length}},async patchWhere(e,r,a){const l=(await(z(e,"patchWhere")??q).findMany(e,{where:r.where})).page.map(h=>({id:String(h._id),patch:r.patch}));if(de(l.length,a?.limit,"patchWhere"),q.patchMany===void 0)throw new b("INTERNAL",`ctx.db.${e}.patchMany is unavailable: this writer has no batch patch`);return await q.patchMany(l,a),{patched:l.length}},query(e){const r=z(e,"query");return r?(N(e,U),r.query(e)):jn(i,t,e,S,a=>{a?g(a):N(e,U)},a=>{w||p?.recordRead(a)})},async rank(e,r,a){const l=z(e,"rank");if(l)return N(e,U),l.rank(e,r,a);S(e,r,"rank");const h=t.tables[e];if(!h)throw new b("INTERNAL",`unknown table: ${e}`);const f=h.rankIndexes?.find(K=>K.name===r);if(!f)throw new b("INTERNAL",`unknown rankIndex "${r}" on table "${e}"`);if(Xe(e,h,f),a.restrictsCounts)throw new Me(e);N(e,U),Ie(e,f);const s=typeof a.row=="string"?a.row:a.row._id;if(!s)return null;const u=it(e,f.name),m=f.sortBy.map((K,ae)=>ot(ae)),T=m.map(K=>sn(K)).join(", "),$=B(i,n`SELECT ${n.identifier("__partition__")}, ${n.raw(T)} FROM ${n.identifier(u)} WHERE ${n.identifier("__id__")} = ${s}`).toArray(),[R]=$;if(R===void 0)return null;let O=R.__partition__;const D=Q(a.baseWhere,a.where);De(D,t,e,"rank");const x=Vt(f,D);if(x){const K=Yt(f.partitionBy??[],x);if(K!==O)return null;O=K}const G=m.map(K=>R[K]),{before:V,total:J}=$t(i,u,m,f.sortBy,O,G,s);return{position:V+1,total:J}},async rankBefore(e,r,a){if(te(e))throw new b("INTERNAL",`rankBefore is not supported on the global (.global()) table '${e}' — cross-shard rank cursors apply only to sharded tables`);const l=t.tables[e];if(!l)throw new b("INTERNAL",`unknown table: ${e}`);const h=l.rankIndexes?.find(m=>m.name===r);if(!h)throw new b("INTERNAL",`unknown rankIndex "${r}" on table "${e}"`);if(a.restrictsCounts)throw new Me(e);N(e,U),Ie(e,h);const f=it(e,h.name),s=h.sortBy.map((m,T)=>ot(T)),u=h.sortBy.map((m,T)=>ie(a.sortValues[T]??null));return $t(i,f,s,h.sortBy,a.partitionKey,u,a.rowId)},async rankPage(e,r,a={}){De(Q(a.baseWhere,a.where),t,e,"rankPage");const l=z(e,"rankPage");if(l)return N(e,U),l.rankPage(e,r,a);S(e,r,"rank");const{continueCursor:h,hasMore:f,rows:s}=tt(et,e,r,a);return{continueCursor:h,isDone:!f,page:s.map(u=>u.doc)}},async rankPageRows(e,r,a={}){De(Q(a.baseWhere,a.where),t,e,"rankPage"),S(e,r,"rank");const{directions:l,hasMore:h,rows:f}=tt(et,e,r,a);return{directions:l,hasMore:h,rows:f}},async restore(e,r){const a=re(e,r);if(!a){const f=r===void 0?W:void 0;if(f?.restore){await f.restore(e);return}throw new b("INTERNAL",`document not found: ${e}`)}const l=t.tables[a.tableName]?.softDeleteMode?.field;if(!l)throw new b("INTERNAL",`ctx.db.restore: table "${a.tableName}" is not a .softDelete() table`);const h=a.row[l]!==null&&a.row[l]!==void 0;await q.patch(e,{[l]:null},r),h&&he(a.tableName,e,void 0,a.row)},async replace(e,r,a,l){const h=re(e,a);if(!h){const R=a===void 0?W:void 0;if(R){await R.replace(e,r,void 0,l);return}throw new b("INTERNAL",`document not found: ${e}`)}const{docJson:f,row:s,tableName:u}=h,m=t.tables[u];if(!m)throw new b("INTERNAL",`unknown table: ${u}`);mt("replace",r);const T=l?.allowExplicitId&&typeof r._creationTime=="number"?r._creationTime:L(),$={...r,_creationTime:T,_id:e};pt(m,r,$,E),Fe(m,$),Z(u,"before","update")&&await ee("before","update",{doc:{...$},id:e,op:"update",previous:s,table:u}),ue(u),fe(u),_e(i,u,n`UPDATE ${n.identifier(u)} SET _creationTime = ${T}, ${n.identifier(P)} = ${se($)} WHERE id = ${e} AND ${n.identifier(P)} = ${f}`),be(u,e,$,s),ge(u,e,$),we(u,s,$),he(u,e,s,$),F?.invalidate(u,e,c(u,s,$)),j(u,e,"update",$),d({indexKeys:c(u,s,$),key:e,op:"update",row:$,table:u}),Z(u,"after","update")&&await ee("after","update",{doc:$,id:e,op:"update",previous:s,table:u}),await C({doc:$,id:e,op:"update",table:u})},async wipeShard(e){const r=new Set(e?.exclude),a=e?.tables,l=Object.entries(t.tables).filter(([u,m])=>r.has(u)||a!==void 0&&!a.includes(u)?!1:m.shardMode?.kind!=="global").map(([u])=>u);if(a!==void 0){for(const u of a)if(!t.tables[u])throw new b("INTERNAL",`wipeShard: unknown table: ${u}`)}const h={};let f=0;const{deleteAll:s}=q;if(s===void 0)throw new b("INTERNAL","wipeShard: this writer has no deleteAll");for(const u of l){const m=await s(u,{...e?.chunkSize===void 0?{}:{chunkSize:e.chunkSize},hard:!0});h[u]=m.deleted,f+=m.deleted}return{deleted:f,tables:h}}},At={db:q,scheduler:H};return o.enforceRls===!0?nn(q,t,(e,r)=>re(e,r)?.tableName,(e,r)=>Rt(e,r)):q};export{xr as CDC_LOG_TABLE,Or as CLIENT_WATERMARK_TABLE,Pr as GLOBAL_SHAPE_SNAPSHOT_TABLE,Vr as IDEMPOTENCY_TABLE,Un as NotUniqueError,no as SEARCH_STATE_TABLE,Wr as advanceClientWatermark,Ir as applyCdcChanges,Nn as assertValidClientId,Tr as backfillAggregateIndexes,_r as backfillRankIndexes,Rr as backfillSearchIndexes,vr as bumpCdcEpoch,yr as createShardCtxDb,Hr as deleteGlobalShapeSnapshot,jr as deleteGlobalShapeSnapshotsForConnection,Br as migrateClientWatermark,Kr as migrateGlobalShapeSnapshot,Cr as minCdcSeq,ft as normalizeIdStructurally,kr as readCdcChanges,Mr as readCdcCursor,Lr as readCdcEpoch,qr as readClientWatermark,Gr as readGlobalShapeSnapshot,Yr as readIdempotent,eo as runShardMigrations,oo as selectShapeMemberIds,io as selectShapeRows,Dr as trimCdcChanges,Jr as trimIdempotent,Qr as writeGlobalShapeSnapshot,Xr as writeIdempotent};
@@ -1 +0,0 @@
1
- import{LunoraError as l}from"@lunora/errors";import{a as g}from"./wire-codec-Dsy70M3Q.mjs";const n=BigInt(Number.MAX_SAFE_INTEGER),i=(e,t)=>e<t?-1:e>t?1:0,d=(e,t)=>`${e}__agg_${t}`,c=e=>{if(typeof e=="bigint"){if(e>n||e<-n)throw new l("BAD_REQUEST",`bigint ${e.toString()} exceeds Number.MAX_SAFE_INTEGER and cannot be aggregated exactly — aggregate a narrower column, or read the rows and reduce them in the handler`);return Number(e)}if(typeof e=="number")return Number.isFinite(e)?e:void 0},f=(e,t,o,a)=>{const r=e.get(t)??{count:0,value:null};if(o.op==="count"){r.count+=1,r.value=r.count,e.set(t,r);return}const u=c(a[o.field??""]);if(o.op==="sum"||o.op==="avg"){u!==void 0&&(r.value=(r.value??0)+u,r.count+=1),e.set(t,r);return}r.count+=1,u!==void 0&&(r.value===null?r.value=u:r.value=o.op==="min"?Math.min(r.value,u):Math.max(r.value,u)),e.set(t,r)},s=(e,t)=>e==="count"?t?.value??0:!t||t.count===0?null:e==="avg"?t.value===null?null:t.value/t.count:t.value,b=(e,t)=>{if(e.length===0)return"";const o={};for(const a of e.toSorted(i))o[a]=t[a]??null;return JSON.stringify(g(o))};export{d as aggregateTableName,c as coerceAggregateNumber,i as compareStrings,b as encodeAggregateKey,f as foldAggregateTally,s as readAggregateValue};
@@ -1 +0,0 @@
1
- import{LunoraError as h}from"@lunora/errors";import{s as m,a as S}from"./wire-codec-Dsy70M3Q.mjs";const g="id",y=new Set(["_id","id"]),E=t=>{const e=[];for(const o of t??[])for(const[r,s]of Object.entries(o))e.push({direction:s,field:r});return e.length===0?[{direction:"asc",field:"_creationTime"}]:e},w=t=>{const e=new TextEncoder().encode(t);let o="";for(const r of e)o+=String.fromCodePoint(r);return btoa(o)},b=t=>{const e=atob(t),o=Uint8Array.from(e,r=>r.codePointAt(0)??0);return new TextDecoder().decode(o)},T=(t,e)=>{const o=e.map(r=>t[r.field]);return o.push(t._id),w(JSON.stringify(S(o)))},a=()=>new h("BAD_REQUEST","invalid cursor"),k=t=>{let e;try{e=m(JSON.parse(b(t)))}catch{throw a()}if(!Array.isArray(e))throw a();return e},f=(t,e,o)=>{const r=t.some(n=>y.has(n.field))?t:[...t,{direction:"asc",field:g}],s=[];for(const[n,i]of r.entries()){const c=[];for(const[u,p]of r.slice(0,n).entries())c.push({[p.field]:{eq:e[u]}});const l=o(i.direction,n===r.length-1);c.push({[i.field]:{[l]:e[n]}});const[d]=c;s.push(c.length===1&&d!==void 0?d:{AND:c})}return{OR:s}},v=(t,e)=>f(t,e,o=>o==="desc"?"lt":"gt"),A=(t,e)=>t==="desc"?e?"gte":"gt":e?"lte":"lt",B=(t,e)=>f(t,e,A),O=["_id","_creationTime"],C=(t,e,o)=>{if(!e)return t;const r=new Set([...e,...O,...o?Object.keys(o):[]]);return t.map(s=>{const n={};for(const i of r)i in s&&(n[i]=s[i]);return n})},N=(t,e)=>t&&e!==!0?{[t.field]:{isNull:!0}}:void 0;export{C as applySelect,B as buildSeekBeforeWhere,v as buildSeekWhere,k as decodeCursor,T as encodeCursor,b as fromBase64,a as invalidCursor,E as normalizeOrderKeys,N as softDeleteScope,w as toBase64};
@@ -1 +0,0 @@
1
- import{O as R,q as x,x as O,T as S,l as k,y as M,c as w}from"./ctx-db-companions-CAJOSdN-.mjs";import"@lunora/errors";import{sql as i}from"drizzle-orm";import{matchesStaticWhere as A}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as L,foldAggregateTally as C,aggregateTableName as y}from"./aggregateTableName-DV-K7ft2.mjs";import{migrateSearchState as F,readSearchBackfillState as N,writeSearchBackfillState as D}from"./SEARCH_STATE_TABLE-BZ_fxI5l.mjs";import{runDrizzle as d}from"./runDrizzle-B6rnz3so.mjs";import{C as T,E as u,c as j,p as q,T as v,a as m,D as B}from"./do-sql-1Yi1_Yq0.mjs";import{matchesRankStaticWhere as W,rankTableName as _}from"./RANK_TIEBREAK-DYDRmLKH.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},I=(e,n)=>d(e,i`SELECT COUNT(*) AS count FROM ${i.identifier(n)}`).one().count>0,b=(e,n)=>d(e,i`SELECT id, _creationTime, ${i.identifier(m)} FROM ${i.identifier(n)}`).toArray(),U=(e,n,o)=>{const r=y(n,o.name);if(I(e,r))return;const t=o.by??[],a=new Map,c=b(e,n);for(const s of c){const f=u(s);if(!f||o.where&&!A(f,o.where))continue;const l=L(t,f);C(a,l,o,f)}for(const[s,f]of a)d(e,i`INSERT INTO ${i.identifier(r)} (${j}, ${q}, ${v}) VALUES (${s}, ${f.value}, ${f.count})`)},ee=(e,n)=>{for(const[o,r]of Object.entries(n.tables))if(!(r.shardMode?.kind==="global"||!r.aggregateIndexes))for(const t of r.aggregateIndexes)U(e,o,t)},V=(e,n,o)=>{const r=_(n,o.name);if(I(e,r))return;const t=R(o),a=b(e,n);for(const c of a){const s=u(c);!s||o.where&&!W(s,o.where)||x(e,r,o,t,s._id,s)}},re=(e,n)=>{for(const[o,r]of Object.entries(n.tables))if(!(r.shardMode?.kind==="global"||!r.rankIndexes))for(const t of r.rankIndexes)V(e,o,t)},g=500,p=(e,n,o)=>{const r=w(n,o.name),{profile:t}=O(o.language),a=H(N(e,r),t);if(a.finished)return!0;a.wipe&&d(e,i`DELETE FROM ${i.identifier(r)}`);const{cursor:c}=a,s=d(e,c===void 0?i`SELECT id, _creationTime, ${i.identifier(m)} FROM ${i.identifier(n)} ORDER BY id ASC LIMIT ${i.raw(String(g))}`:i`SELECT id, _creationTime, ${i.identifier(m)} FROM ${i.identifier(n)} WHERE id > ${c} ORDER BY id ASC LIMIT ${i.raw(String(g))}`).toArray();let f=c;for(const E of s){const{id:$}=E;if(typeof $!="string")continue;f=$,d(e,i`DELETE FROM ${i.identifier(r)} WHERE ${i.identifier(S)} = ${$}`);const h=B(E);h&&d(e,i`INSERT INTO ${i.identifier(r)} (${i.identifier(k)}, ${i.identifier(S)}) VALUES (${M(h,o)}, ${$})`)}const l=s.length<g;return D(e,r,f,l,t),l},ie=(e,n,o)=>{if(T(e))for(const r of o.searchIndexes??[])r.staged||p(e,n,r)},ne=(e,n)=>{if(T(e)){F(e);for(const[o,r]of Object.entries(n.tables))if(!(r.shardMode?.kind==="global"||!r.searchIndexes))for(const t of r.searchIndexes){let a=!1;for(;!a;)a=p(e,o,t)}}};export{ee as backfillAggregateIndexes,re as backfillRankIndexes,ne as backfillSearchIndexes,ie as backfillSearchIndexesForTable};
@@ -1 +0,0 @@
1
- import{k as l,q,O as C}from"./ctx-db-companions-CAJOSdN-.mjs";import"@lunora/errors";import"drizzle-orm";import"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import"./aggregateTableName-DV-K7ft2.mjs";import"./runDrizzle-B6rnz3so.mjs";import"./do-sql-1Yi1_Yq0.mjs";import"./param-B5lF5Jd9.mjs";import"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import"./RANK_TIEBREAK-DYDRmLKH.mjs";import"./serializeSqlValue-BR4UOWoP.mjs";export{l as createCompanionSync,q as insertRankRow,C as rankColumnsSql};
@@ -1 +0,0 @@
1
- import"@lunora/errors";import{sql as e}from"drizzle-orm";import{matchesStaticWhere as j,aggregateSqlFunction as ie}from"./AGGREGATE_SQL_FUNCTION-CTo0-9iZ.mjs";import{encodeAggregateKey as N,foldAggregateTally as oe,coerceAggregateNumber as I,aggregateTableName as W}from"./aggregateTableName-DV-K7ft2.mjs";import{runDrizzle as $}from"./runDrizzle-B6rnz3so.mjs";import{C as re,a as B,E as H,c as O,p as v,T as _,h as ae,A as x,N as F}from"./do-sql-1Yi1_Yq0.mjs";import{param as se}from"./param-B5lF5Jd9.mjs";import{encodeGeohash as le,GEO_DEFAULT_PRECISION as de}from"./GEO_DEFAULT_PRECISION-DyI5zggj.mjs";import{encodePartitionKey as ce,sortColumnName as ue,matchesRankStaticWhere as V,rankTableName as K}from"./RANK_TIEBREAK-DYDRmLKH.mjs";import{serializeSqlValue as G}from"./serializeSqlValue-BR4UOWoP.mjs";const fe=["de","en","es","fr","it","nl","none","pt"],$e=t=>fe.includes(t),me="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",he="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",Ee="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",pe="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",ge="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",ye="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",_e="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,J=t=>t.normalize("NFD").replaceAll(be,"").normalize("NFC").toLowerCase(),L=t=>new Set(J(t).split(" ")),ve={de:L(he),en:L(me),es:L(Ee),fr:L(pe),it:L(ge),nl:L(ye),none:new Set,pt:L(_e)},Se=2,Te=256,U=new Map,we=t=>{const o=t!==void 0&&$e(t)?t:"none",l=U.get(o);if(l)return l;const p=ve[o],S=r=>{const T=(J(r).match(/[\p{L}\p{N}]+/gu)??[]).filter(w=>w.length<=Te);return p.size===0?T:T.filter(w=>!p.has(w))},m={document:S,profile:`${o}-v${String(Se)}`,query:r=>{const T=S(r);return T.filter((w,A)=>T.lastIndexOf(w)===A)}};return U.set(o,m),m},Ae=(t,o)=>{if(!o.includes("."))return t[o];let l=t;for(const p of o.split(".")){if(l===null||typeof l!="object"||Array.isArray(l))return;l=l[p]}return l},Re=(t,o)=>`${t}__fts_${o}`,Ne="__text__",P="__id__",Le=1e3,Oe=(t,o)=>o.document(t),k=(t,o)=>Ae(t,o),xe=t=>typeof t=="string"?t:t==null?"":typeof t=="number"||typeof t=="bigint"||typeof t=="boolean"?String(t):JSON.stringify(t)??"",je=(t,o,l)=>t!==void 0&&o!==void 0&&k(t,l.field)===k(o,l.field),Ie=(t,o)=>Oe(xe(k(t,o.field)),we(o.language)).slice(0,Le).join(" "),Fe=(t,o,l)=>[...t.partitionBy??[],...t.sortBy.map(p=>p.field),...t.where?Object.keys(t.where):[]].every(p=>o[p]===l[p]),X=t=>e.join(["__id__","__partition__",...t.sortBy.map((o,l)=>ue(l))].map(o=>e.identifier(o)),e`, `),Q=(t,o,l,p,S,m)=>{const r=ce(l.partitionBy??[],m),T=l.sortBy.map(A=>G(m[A.field]??null)),w=e.join([S,r,...T].map(A=>se(A)),e`, `);$(t,e`INSERT INTO ${e.identifier(o)} (${p}) VALUES (${w})`)},ke=(t,o,l,p,S,m)=>{if(S&&m&&Fe(l,S,m))return;const r=K(o,l.name);S&&$(t,e`DELETE FROM ${e.identifier(r)} WHERE ${e.identifier("__id__")} = ${p}`),!(!m||l.where&&!V(m,l.where))&&Q(t,r,l,X(l),p,m)},Ve=t=>{const{broadcast:o,indexKeysFor:l,invalidateCache:p,recordCdc:S,schema:m,sql:r}=t,T=new Set,w=new Set,A=(i,n)=>{const s=`${i}::${n.name}`;if(T.has(s))return;const u=W(i,n.name),d=n.by??[],f=new Map,h=$(r,e`SELECT id, _creationTime, ${e.identifier(B)} FROM ${e.identifier(i)}`).toArray();for(const b of h){const a=H(b);if(!a||n.where&&!j(a,n.where))continue;const c=N(d,a);oe(f,c,n,a)}$(r,e`DELETE FROM ${e.identifier(u)}`);const g=32,E=[...f];for(let b=0;b<E.length;b+=g){const a=E.slice(b,b+g),c=e.join(a.map(([y,R])=>e`(${y}, ${R.value}, ${R.count})`),e`, `);$(r,e`INSERT INTO ${e.identifier(u)} (${O}, ${v}, ${_}) VALUES ${c}`)}T.add(s)},Y=(i,n,s)=>{const u=n.by??[],d=ie(n.op),f=n.field??"",h=[],g=(a,c)=>{const y=G(c);y===null?h.push(e`${F(a)} IS NULL`):h.push(e`${F(a)} = ${y}`)};for(const a of u)g(a,s[a]??null);for(const[a,c]of Object.entries(n.where??{}))g(a,c!==null&&typeof c=="object"&&!Array.isArray(c)?c.eq:c);const E=h.length>0?e` WHERE ${e.join(h,e` AND `)}`:e``,b=F(f);return{value:$(r,e`SELECT ${e.raw(d)}(${b}) AS value FROM ${e.identifier(i)}${E}`).one().value??null}},Z=(i,n,s,u)=>{const d=W(i,n.name),{op:f}=n,h=n.field??"",g=a=>{$(r,e`DELETE FROM ${e.identifier(d)} WHERE ${O} = ${a} AND ${_} <= 0`)},E=s&&(!n.where||j(s,n.where))?s:void 0,b=u&&(!n.where||j(u,n.where))?u:void 0;if(!(!E&&!b)){if(f==="count"){for(const[a,c]of[[E,-1],[b,1]]){if(!a)continue;const y=N(n.by??[],a);$(r,x(d,y,c,c,e`${v} = ${v} + excluded.${v}, ${_} = ${_} + excluded.${_}`))}E&&g(N(n.by??[],E));return}if(f==="sum"||f==="avg"){for(const[a,c]of[[E,-1],[b,1]]){if(!a)continue;const y=I(a[h]);if(y===void 0)continue;const R=N(n.by??[],a);$(r,x(d,R,c*y,c,e`${v} = COALESCE(${v}, 0) + excluded.${v}, ${_} = ${_} + excluded.${_}`))}E&&g(N(n.by??[],E));return}if(E){const a=N(n.by??[],E),c=I(E[h]),y=$(r,e`SELECT ${v} AS value, ${_} AS count FROM ${e.identifier(d)} WHERE ${O} = ${a}`).toArray()[0],R=(y?.count??0)-1;if(R<=0)$(r,e`DELETE FROM ${e.identifier(d)} WHERE ${O} = ${a}`);else if(y&&c!==void 0&&y.value!==null&&c===y.value){const te=Y(i,n,E);$(r,e`UPDATE ${e.identifier(d)} SET ${v} = ${te.value}, ${_} = ${R} WHERE ${O} = ${a}`)}else $(r,e`UPDATE ${e.identifier(d)} SET ${_} = ${_} - 1 WHERE ${O} = ${a}`)}if(b){const a=N(n.by??[],b),c=I(b[h]);if(c===void 0)$(r,x(d,a,null,1,e`${_} = ${_} + 1`));else{const y=f==="min"?"MIN":"MAX";$(r,x(d,a,c,1,e`${v} = ${e.raw(y)}(COALESCE(${v}, excluded.${v}), excluded.${v}), ${_} = ${_} + 1`))}}}},ee=i=>{for(const n of m.tables[i]?.aggregateIndexes??[])A(i,n)},q=(i,n,s)=>{for(const u of m.tables[i]?.aggregateIndexes??[])Z(i,u,n,s)},C=(i,n)=>{const s=`${i}::rank::${n.name}`;if(w.has(s))return;const u=K(i,n.name),d=$(r,e`SELECT id, _creationTime, ${e.identifier(B)} FROM ${e.identifier(i)}`).toArray();$(r,e`DELETE FROM ${e.identifier(u)}`);const f=X(n);for(const h of d){const g=H(h);!g||n.where&&!V(g,n.where)||Q(r,u,n,f,g._id,g)}w.add(s)},ne=i=>{for(const n of m.tables[i]?.rankIndexes??[])C(i,n)},M=(i,n,s,u)=>{for(const d of m.tables[i]?.rankIndexes??[])ke(r,i,d,n,s,u)},z=(i,n,s,u)=>{const d=m.tables[i]?.searchIndexes??[];if(!(d.length===0||!re(r)))for(const f of d){if(je(u,s,f))continue;const h=Re(i,f.name);$(r,e`DELETE FROM ${e.identifier(h)} WHERE ${e.identifier(P)} = ${n}`),s&&$(r,e`INSERT INTO ${e.identifier(h)} (${e.identifier(Ne)}, ${e.identifier(P)}) VALUES (${Ie(s,f)}, ${n})`)}},D=(i,n,s)=>{for(const u of m.tables[i]?.geoIndexes??[]){const d=ae(i,u.name);$(r,e`DELETE FROM ${e.identifier(d)} WHERE ${e.identifier("__id__")} = ${n}`);const f=s?.[u.field];if(f!==null&&typeof f=="object"&&typeof f.lat=="number"&&typeof f.lng=="number"){const{lat:h,lng:g}=f,E=le({lat:h,lng:g},u.precision??de);$(r,e`INSERT INTO ${e.identifier(d)} (${e.identifier("__id__")}, ${e.identifier("__geohash__")}, ${e.identifier("__lat__")}, ${e.identifier("__lng__")}) VALUES (${n}, ${E}, ${h}, ${g})`)}}};return{ensureBackfilledForTable:ee,ensureBackfilledIndex:A,ensureRankBackfilled:C,ensureRankBackfilledForTable:ne,syncAggregates:q,syncCompanionsForInsert:(i,n,s)=>{z(i,n,s),D(i,n,s),q(i,void 0,s),M(i,n,void 0,s),p(i,n,s),S(i,n,"insert",s),o({indexKeys:l(i,s),key:n,op:"insert",row:s,table:i})},syncGeo:D,syncRanks:M,syncSearch:z}};export{X as O,P as T,Re as c,Ve as k,Ne as l,Oe as n,Q as q,we as x,Ie as y};