generateKeyBetween
and generateNKeysBetween
to make the spread operator work with conditional tuples.9bc7f1d: Implementated Binary Fractional Indexing.
Added support for binary-based fractional indices using Uint8Array
for more efficient storage and operations. This implementation provides:
New Features:
fraciBinary
and fraciString
factory functions for creating specialized fractional indexing utilitiesbase
and brand
properties to Fraci
for better type safety and runtime informationBreaking Changes:
fraci
, Fraci
, and FractionalIndex
typesdigitBase
and lengthBase
properties from Fraci
Added comprehensive type system with clear separation between binary and string-based indices:
AnyFractionalIndex
, AnyBinaryFractionalIndex
, AnyStringFractionalIndex
AnyFractionalIndexBase
, AnyBinaryFractionalIndexBase
, AnyStringFractionalIndexBase
AnyFraci
, AnyBinaryFraci
, AnyStringFraci
FraciOptionsBase
, BinaryFraciOptions
, StringFraciOptions
FraciForPrisma
type.definePrismaFraci
function. Added PrismaFraciExtension
type export.b0c4151: Enhanced error handling:
6451d6a: BREAKING CHANGE: Renamed base constants for better consistency and clarity:
BASE16
-> BASE16L
(lowercase hex digits)BASE26
-> BASE26L
(lowercase alphabets)BASE36
-> BASE36L
(lowercase alphanumeric)BASE64
-> BASE64URL
(URL-safe Base64 characters)Added new complementary constants:
BASE16U
(uppercase hex digits)The naming convention now uses L
suffix for lowercase and U
suffix for uppercase variants.
1ba4bab: BREAKING CHANGE: Renamed Prisma integration function and type for better consistency with other database integrations:
fraciExtension
-> prismaFraci
- The main function for creating Prisma extensionsFraciExtensionOptions
->PrismaFraciOptions
- The options interface for configurationMigration: Replace all instances of fraciExtension
with prismaFraci
and update type references from FraciExtensionOptions
to PrismaFraciOptions
.
509d84a: BREAKING CHANGE: Renamed DrizzleFraciFetcher(Sync)
type to FraciForDrizzle(Sync)
.
54e65e5: BREAKING CHANGE: Changed the parameter order in indicesForAfter
and indicesForBefore
functions to make it more natural, with the broader grouping context (where
/group
) before the more specific cursor (cursor
).
Before:
indicesForAfter(cursor, where);
indicesForBefore(cursor, where);
After:
indicesForAfter(where, cursor);
indicesForBefore(where, cursor);
This change affects both Drizzle and Prisma implementations.
8f28a82: BREAKING CHANGE: Changed the parameter order in defineDrizzleFraci
function.
The order of the group
and cursor
parameters has been swapped to make the API more intuitive. The new order is:
defineDrizzleFraci(
fraci, // Fractional index instance
table, // Table
column, // Fractional index column
group, // Group (columns that define the grouping context)
cursor, // Cursor (columns that uniquely identify a row within a group)
);
edb941e: Add fraci methods to Drizzle ORM helper.
skip
parameter to generateKeyBetween
and generateNKeysBetween
methods.FractionalIndex
to avoid TS4058 error.__EXAMPLE__
type only hint.isIndexConflictError
method.