inibase 1.2.8 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/file.d.ts +3 -30
- package/dist/file.js +48 -109
- package/dist/index.js +67 -75
- package/dist/utils.js +12 -12
- package/dist/utils.server.js +3 -3
- package/package.json +13 -11
package/dist/file.d.ts
CHANGED
|
@@ -111,34 +111,7 @@ export declare const remove: (filePath: string, linesToDelete: number | number[]
|
|
|
111
111
|
export declare const search: (filePath: string, operator: ComparisonOperator | ComparisonOperator[], comparedAtValue: string | number | boolean | null | (string | number | boolean | null)[], logicalOperator?: "and" | "or", searchIn?: Set<number>, field?: Field & {
|
|
112
112
|
databasePath?: string;
|
|
113
113
|
}, limit?: number, offset?: number, readWholeFile?: boolean) => Promise<[Record<number, string | number | boolean | null | (string | number | boolean | null)[]> | null, number, Set<number> | null]>;
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
* @param filePath - Path of the file to read.
|
|
118
|
-
* @param lineNumbers - Optional specific line number(s) to include in the sum. If not provided, sums all lines.
|
|
119
|
-
* @returns Promise<number>. The sum of numerical values from the specified lines.
|
|
120
|
-
*
|
|
121
|
-
* Note: Decodes each line as a number using the 'decode' function. Non-numeric lines contribute 0 to the sum.
|
|
122
|
-
*/
|
|
123
|
-
export declare const sum: (filePath: string, lineNumbers?: number | number[]) => Promise<number>;
|
|
124
|
-
/**
|
|
125
|
-
* Asynchronously finds the maximum numerical value from specified lines in a file.
|
|
126
|
-
*
|
|
127
|
-
* @param filePath - Path of the file to read.
|
|
128
|
-
* @param lineNumbers - Optional specific line number(s) to consider for finding the maximum value. If not provided, considers all lines.
|
|
129
|
-
* @returns Promise<number>. The maximum numerical value found in the specified lines.
|
|
130
|
-
*
|
|
131
|
-
* Note: Decodes each line as a number using the 'decode' function. Considers only numerical values for determining the maximum.
|
|
132
|
-
*/
|
|
133
|
-
export declare const max: (filePath: string, lineNumbers?: number | number[]) => Promise<number>;
|
|
134
|
-
/**
|
|
135
|
-
* Asynchronously finds the minimum numerical value from specified lines in a file.
|
|
136
|
-
*
|
|
137
|
-
* @param filePath - Path of the file to read.
|
|
138
|
-
* @param lineNumbers - Optional specific line number(s) to consider for finding the minimum value. If not provided, considers all lines.
|
|
139
|
-
* @returns Promise<number>. The minimum numerical value found in the specified lines.
|
|
140
|
-
*
|
|
141
|
-
* Note: Decodes each line as a number using the 'decode' function. Considers only numerical values for determining the minimum.
|
|
142
|
-
*/
|
|
143
|
-
export declare const min: (filePath: string, lineNumbers?: number | number[]) => Promise<number>;
|
|
114
|
+
export declare const sum: (fp: string, ln?: number | number[]) => Promise<number>;
|
|
115
|
+
export declare const min: (fp: string, ln?: number | number[]) => Promise<number>;
|
|
116
|
+
export declare const max: (fp: string, ln?: number | number[]) => Promise<number>;
|
|
144
117
|
export declare const getFileDate: (path: string) => Promise<Date>;
|
package/dist/file.js
CHANGED
|
@@ -581,127 +581,66 @@ export const search = async (filePath, operator, comparedAtValue, logicalOperato
|
|
|
581
581
|
}
|
|
582
582
|
};
|
|
583
583
|
/**
|
|
584
|
-
*
|
|
584
|
+
* Reads the file once and returns either the sum, min or max of the
|
|
585
|
+
* (optionally-selected) numeric lines.
|
|
585
586
|
*
|
|
586
|
-
* @param filePath
|
|
587
|
-
* @param
|
|
588
|
-
* @
|
|
587
|
+
* @param filePath Absolute path of the column file (may be .gz-compressed).
|
|
588
|
+
* @param wanted Metric to compute: "sum" (default), "min" or "max".
|
|
589
|
+
* @param lineNumbers Specific line-number(s) to restrict the scan to.
|
|
589
590
|
*
|
|
590
|
-
*
|
|
591
|
+
* @returns Promise<number> The requested metric, or 0 if no numeric value found.
|
|
591
592
|
*/
|
|
592
|
-
|
|
593
|
+
async function reduceNumbers(filePath, wanted = "sum", lineNumbers) {
|
|
594
|
+
/* optional subset */
|
|
595
|
+
const filter = lineNumbers
|
|
596
|
+
? new Set(Array.isArray(lineNumbers) ? lineNumbers : [lineNumbers])
|
|
597
|
+
: null;
|
|
598
|
+
/* running aggregators */
|
|
593
599
|
let sum = 0;
|
|
594
|
-
let
|
|
600
|
+
let min = Infinity;
|
|
601
|
+
let max = -Infinity;
|
|
602
|
+
let processed = 0; // count of numeric lines we actually used
|
|
603
|
+
let seen = 0; // count of filtered lines we have visited
|
|
604
|
+
let line = 0;
|
|
605
|
+
const fh = await open(filePath, "r");
|
|
606
|
+
const rl = createReadLineInternface(filePath, fh);
|
|
595
607
|
try {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
if (!lineNumbersArray.size)
|
|
608
|
-
break;
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
else
|
|
612
|
-
for await (const line of rl)
|
|
613
|
-
sum += +(decode(line, { key: "BLABLA", type: "number" }) ?? 0);
|
|
614
|
-
return sum;
|
|
615
|
-
}
|
|
616
|
-
finally {
|
|
617
|
-
await fileHandle?.close();
|
|
618
|
-
}
|
|
619
|
-
};
|
|
620
|
-
/**
|
|
621
|
-
* Asynchronously finds the maximum numerical value from specified lines in a file.
|
|
622
|
-
*
|
|
623
|
-
* @param filePath - Path of the file to read.
|
|
624
|
-
* @param lineNumbers - Optional specific line number(s) to consider for finding the maximum value. If not provided, considers all lines.
|
|
625
|
-
* @returns Promise<number>. The maximum numerical value found in the specified lines.
|
|
626
|
-
*
|
|
627
|
-
* Note: Decodes each line as a number using the 'decode' function. Considers only numerical values for determining the maximum.
|
|
628
|
-
*/
|
|
629
|
-
export const max = async (filePath, lineNumbers) => {
|
|
630
|
-
let max = 0;
|
|
631
|
-
let fileHandle = null;
|
|
632
|
-
let rl = null;
|
|
633
|
-
try {
|
|
634
|
-
fileHandle = await open(filePath, "r");
|
|
635
|
-
rl = createReadLineInternface(filePath, fileHandle);
|
|
636
|
-
if (lineNumbers) {
|
|
637
|
-
let linesCount = 0;
|
|
638
|
-
const lineNumbersArray = new Set(Array.isArray(lineNumbers) ? lineNumbers : [lineNumbers]);
|
|
639
|
-
for await (const line of rl) {
|
|
640
|
-
linesCount++;
|
|
641
|
-
if (!lineNumbersArray.has(linesCount))
|
|
642
|
-
continue;
|
|
643
|
-
const lineContentNum = +(decode(line, { key: "BLABLA", type: "number" }) ?? 0);
|
|
644
|
-
if (lineContentNum > max)
|
|
645
|
-
max = lineContentNum;
|
|
646
|
-
lineNumbersArray.delete(linesCount);
|
|
647
|
-
if (!lineNumbersArray.size)
|
|
648
|
-
break;
|
|
608
|
+
for await (const txt of rl) {
|
|
609
|
+
line++;
|
|
610
|
+
/* skip unwanted lines */
|
|
611
|
+
if (filter && !filter.has(line))
|
|
612
|
+
continue;
|
|
613
|
+
const num = Number(decode(txt, { key: "BLABLA", type: "number" })); // ← your existing decode()
|
|
614
|
+
if (isNaN(num))
|
|
615
|
+
continue;
|
|
616
|
+
processed++;
|
|
617
|
+
if (wanted === "sum") {
|
|
618
|
+
sum += num;
|
|
649
619
|
}
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
const lineContentNum = +(decode(line, { key: "BLABLA", type: "number" }) ?? 0);
|
|
654
|
-
if (lineContentNum > max)
|
|
655
|
-
max = lineContentNum;
|
|
620
|
+
else if (wanted === "min") {
|
|
621
|
+
if (num < min)
|
|
622
|
+
min = num;
|
|
656
623
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
await fileHandle?.close();
|
|
661
|
-
}
|
|
662
|
-
};
|
|
663
|
-
/**
|
|
664
|
-
* Asynchronously finds the minimum numerical value from specified lines in a file.
|
|
665
|
-
*
|
|
666
|
-
* @param filePath - Path of the file to read.
|
|
667
|
-
* @param lineNumbers - Optional specific line number(s) to consider for finding the minimum value. If not provided, considers all lines.
|
|
668
|
-
* @returns Promise<number>. The minimum numerical value found in the specified lines.
|
|
669
|
-
*
|
|
670
|
-
* Note: Decodes each line as a number using the 'decode' function. Considers only numerical values for determining the minimum.
|
|
671
|
-
*/
|
|
672
|
-
export const min = async (filePath, lineNumbers) => {
|
|
673
|
-
let min = 0;
|
|
674
|
-
let fileHandle = null;
|
|
675
|
-
try {
|
|
676
|
-
fileHandle = await open(filePath, "r");
|
|
677
|
-
const rl = createReadLineInternface(filePath, fileHandle);
|
|
678
|
-
if (lineNumbers) {
|
|
679
|
-
let linesCount = 0;
|
|
680
|
-
const lineNumbersArray = new Set(Array.isArray(lineNumbers) ? lineNumbers : [lineNumbers]);
|
|
681
|
-
for await (const line of rl) {
|
|
682
|
-
linesCount++;
|
|
683
|
-
if (!lineNumbersArray.has(linesCount))
|
|
684
|
-
continue;
|
|
685
|
-
const lineContentNum = +(decode(line, { key: "BLABLA", type: "number" }) ?? 0);
|
|
686
|
-
if (lineContentNum < min)
|
|
687
|
-
min = lineContentNum;
|
|
688
|
-
lineNumbersArray.delete(linesCount);
|
|
689
|
-
if (!lineNumbersArray.size)
|
|
690
|
-
break;
|
|
624
|
+
else if (wanted === "max") {
|
|
625
|
+
if (num > max)
|
|
626
|
+
max = num;
|
|
691
627
|
}
|
|
628
|
+
/* early break when we have consumed all requested lines */
|
|
629
|
+
if (filter && ++seen === filter.size)
|
|
630
|
+
break;
|
|
692
631
|
}
|
|
693
|
-
else
|
|
694
|
-
for await (const line of rl) {
|
|
695
|
-
const lineContentNum = +(decode(line, { key: "BLABLA", type: "number" }) ?? 0);
|
|
696
|
-
if (lineContentNum < min)
|
|
697
|
-
min = lineContentNum;
|
|
698
|
-
}
|
|
699
|
-
return min;
|
|
700
632
|
}
|
|
701
633
|
finally {
|
|
702
|
-
await
|
|
634
|
+
await fh.close();
|
|
703
635
|
}
|
|
704
|
-
|
|
636
|
+
if (processed === 0)
|
|
637
|
+
return 0; // nothing numeric found
|
|
638
|
+
return wanted === "sum" ? sum : wanted === "min" ? min : max;
|
|
639
|
+
}
|
|
640
|
+
/* Optional convenience wrappers (signatures unchanged) */
|
|
641
|
+
export const sum = (fp, ln) => reduceNumbers(fp, "sum", ln);
|
|
642
|
+
export const min = (fp, ln) => reduceNumbers(fp, "min", ln);
|
|
643
|
+
export const max = (fp, ln) => reduceNumbers(fp, "max", ln);
|
|
705
644
|
export const getFileDate = (path) => stat(path)
|
|
706
645
|
.then((s) => s.mtime || s.birthtime)
|
|
707
646
|
.catch(() => new Date());
|
package/dist/index.js
CHANGED
|
@@ -929,122 +929,114 @@ export default class Inibase {
|
|
|
929
929
|
}
|
|
930
930
|
_setNestedKey(obj, path, value) {
|
|
931
931
|
const keys = path.split(".");
|
|
932
|
-
|
|
933
|
-
keys.
|
|
934
|
-
if (
|
|
935
|
-
|
|
932
|
+
const lastKey = keys.pop();
|
|
933
|
+
const target = keys.reduce((acc, key) => {
|
|
934
|
+
if (typeof acc[key] !== "object" || acc[key] === null) {
|
|
935
|
+
acc[key] = {};
|
|
936
936
|
}
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
}
|
|
941
|
-
});
|
|
937
|
+
return acc[key];
|
|
938
|
+
}, obj);
|
|
939
|
+
target[lastKey] = value;
|
|
942
940
|
}
|
|
943
941
|
async applyCriteria(tableName, options, criteria, allTrue, searchIn) {
|
|
944
942
|
const tablePath = join(this.databasePath, tableName);
|
|
945
943
|
let RETURN = {};
|
|
946
|
-
if (!criteria)
|
|
947
|
-
return
|
|
944
|
+
if (!criteria || Object.keys(criteria).length === 0)
|
|
945
|
+
return null;
|
|
948
946
|
const criteriaAND = criteria.and;
|
|
949
947
|
if (criteriaAND)
|
|
950
948
|
delete criteria.and;
|
|
951
949
|
const criteriaOR = criteria.or;
|
|
952
950
|
if (criteriaOR)
|
|
953
951
|
delete criteria.or;
|
|
954
|
-
|
|
952
|
+
const schema = globalConfig[this.databasePath].tables.get(tableName).schema;
|
|
953
|
+
if (Object.keys(criteria).length) {
|
|
955
954
|
if (allTrue === undefined)
|
|
956
955
|
allTrue = true;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
for await (const [key, value] of Object.entries(criteria)) {
|
|
960
|
-
const field = Utils.getField(key, globalConfig[this.databasePath].tables.get(tableName).schema);
|
|
956
|
+
for await (let [key, value] of Object.entries(criteria)) {
|
|
957
|
+
const field = Utils.getField(key, schema);
|
|
961
958
|
if (!field)
|
|
962
959
|
continue;
|
|
963
|
-
|
|
960
|
+
if (field.table && Utils.isObject(value)) {
|
|
961
|
+
const items = await this.get(field.table, value, {
|
|
962
|
+
columns: "id",
|
|
963
|
+
perPage: Number.POSITIVE_INFINITY,
|
|
964
|
+
});
|
|
965
|
+
if (items?.length)
|
|
966
|
+
value = `[]${items.map(({ id }) => id)}`;
|
|
967
|
+
else if (allTrue)
|
|
968
|
+
return null;
|
|
969
|
+
}
|
|
964
970
|
let searchOperator = undefined;
|
|
965
971
|
let searchComparedAtValue = undefined;
|
|
966
972
|
let searchLogicalOperator = undefined;
|
|
967
973
|
if (Utils.isObject(value)) {
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
Array.isArray(value?.and)) {
|
|
984
|
-
const searchCriteria = (value?.and)
|
|
985
|
-
.map((single_and) => typeof single_and === "string"
|
|
986
|
-
? Utils.FormatObjectCriteriaValue(single_and)
|
|
987
|
-
: ["=", single_and])
|
|
988
|
-
.filter((a) => a);
|
|
989
|
-
if (searchCriteria.length > 0) {
|
|
990
|
-
searchOperator = searchCriteria.map((single_and) => single_and[0]);
|
|
991
|
-
searchComparedAtValue = searchCriteria.map((single_and) => single_and[1]);
|
|
992
|
-
searchLogicalOperator = "and";
|
|
974
|
+
/* nested object with .and / .or inside */
|
|
975
|
+
const nestedAnd = value.and;
|
|
976
|
+
const nestedOr = value.or;
|
|
977
|
+
if (nestedAnd || nestedOr) {
|
|
978
|
+
const logicalChild = nestedAnd ?? nestedOr;
|
|
979
|
+
const logic = nestedAnd ? "and" : "or";
|
|
980
|
+
const crit = Object.entries(logicalChild)
|
|
981
|
+
.map((item) => typeof item[1] === "string"
|
|
982
|
+
? Utils.FormatObjectCriteriaValue(item[1])
|
|
983
|
+
: ["=", item[1]])
|
|
984
|
+
.filter(Boolean);
|
|
985
|
+
if (crit.length) {
|
|
986
|
+
searchOperator = crit.map((c) => c[0]);
|
|
987
|
+
searchComparedAtValue = crit.map((c) => c[1]);
|
|
988
|
+
searchLogicalOperator = logic;
|
|
993
989
|
}
|
|
994
|
-
delete value
|
|
990
|
+
delete value[logic];
|
|
995
991
|
}
|
|
996
992
|
}
|
|
997
993
|
else if (Array.isArray(value)) {
|
|
998
|
-
const
|
|
999
|
-
.map((
|
|
1000
|
-
? Utils.FormatObjectCriteriaValue(
|
|
1001
|
-
: ["=",
|
|
1002
|
-
.filter(
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
searchLogicalOperator = "and";
|
|
1007
|
-
}
|
|
994
|
+
const crit = value
|
|
995
|
+
.map((v) => typeof v === "string"
|
|
996
|
+
? Utils.FormatObjectCriteriaValue(v)
|
|
997
|
+
: ["=", v])
|
|
998
|
+
.filter(Boolean);
|
|
999
|
+
searchOperator = crit.map((c) => c[0]);
|
|
1000
|
+
searchComparedAtValue = crit.map((c) => c[1]);
|
|
1001
|
+
searchLogicalOperator = "or";
|
|
1008
1002
|
}
|
|
1009
1003
|
else if (typeof value === "string") {
|
|
1010
|
-
const
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
searchComparedAtValue = ComparisonOperatorValue[1];
|
|
1014
|
-
}
|
|
1004
|
+
const [op, val] = Utils.FormatObjectCriteriaValue(value);
|
|
1005
|
+
searchOperator = op;
|
|
1006
|
+
searchComparedAtValue = val;
|
|
1015
1007
|
}
|
|
1016
1008
|
else {
|
|
1017
1009
|
searchOperator = "=";
|
|
1018
1010
|
searchComparedAtValue = value;
|
|
1019
1011
|
}
|
|
1020
|
-
const [searchResult, totalLines, linesNumbers] = await File.search(join(tablePath, `${key}${this.getFileExtension(tableName)}`), searchOperator ?? "=", searchComparedAtValue
|
|
1012
|
+
const [searchResult, totalLines, linesNumbers] = await File.search(join(tablePath, `${key}${this.getFileExtension(tableName)}`), searchOperator ?? "=", searchComparedAtValue, searchLogicalOperator, searchIn, {
|
|
1021
1013
|
...field,
|
|
1022
1014
|
databasePath: this.databasePath,
|
|
1023
1015
|
table: field.table ?? tableName,
|
|
1024
1016
|
}, options.perPage, (options.page - 1) * options.perPage +
|
|
1025
1017
|
(options.page > 1 ? 1 : 0), true);
|
|
1026
|
-
if (searchResult) {
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
return [id, nestedObj];
|
|
1031
|
-
}));
|
|
1032
|
-
RETURN = allTrue
|
|
1033
|
-
? formatedSearchResult
|
|
1034
|
-
: Utils.deepMerge(RETURN, formatedSearchResult);
|
|
1035
|
-
this.totalItems.set(`${tableName}-${key}`, totalLines);
|
|
1036
|
-
if (linesNumbers?.size && allTrue)
|
|
1037
|
-
searchIn = linesNumbers;
|
|
1018
|
+
if (!searchResult) {
|
|
1019
|
+
if (allTrue)
|
|
1020
|
+
return null;
|
|
1021
|
+
continue;
|
|
1038
1022
|
}
|
|
1039
|
-
|
|
1040
|
-
|
|
1023
|
+
const formatedSearchResult = Object.fromEntries(Object.entries(searchResult).map(([id, value]) => {
|
|
1024
|
+
const nestedObj = {};
|
|
1025
|
+
this._setNestedKey(nestedObj, key, value);
|
|
1026
|
+
return [id, nestedObj];
|
|
1027
|
+
}));
|
|
1028
|
+
RETURN = allTrue
|
|
1029
|
+
? formatedSearchResult
|
|
1030
|
+
: Utils.deepMerge(RETURN, formatedSearchResult);
|
|
1031
|
+
this.totalItems.set(`${tableName}-${key}`, totalLines);
|
|
1032
|
+
if (linesNumbers?.size && allTrue)
|
|
1033
|
+
searchIn = linesNumbers;
|
|
1041
1034
|
}
|
|
1042
1035
|
}
|
|
1043
1036
|
if (criteriaAND && Utils.isObject(criteriaAND)) {
|
|
1044
1037
|
const searchResult = await this.applyCriteria(tableName, options, criteriaAND, true, searchIn);
|
|
1045
|
-
if (searchResult)
|
|
1038
|
+
if (searchResult)
|
|
1046
1039
|
RETURN = Utils.deepMerge(RETURN, Object.fromEntries(Object.entries(searchResult).filter(([_k, v], _i) => Object.keys(v).filter((key) => Object.keys(criteriaAND).includes(key)).length)));
|
|
1047
|
-
}
|
|
1048
1040
|
else
|
|
1049
1041
|
return null;
|
|
1050
1042
|
}
|
package/dist/utils.js
CHANGED
|
@@ -427,8 +427,11 @@ export const FormatObjectCriteriaValue = (value) => {
|
|
|
427
427
|
case "[":
|
|
428
428
|
return value[1] === "]"
|
|
429
429
|
? [
|
|
430
|
-
|
|
431
|
-
value.slice(2)
|
|
430
|
+
"[]",
|
|
431
|
+
value.slice(2)
|
|
432
|
+
.toString()
|
|
433
|
+
.split(",")
|
|
434
|
+
.map((v) => (isNumber(v) ? Number(v) : v)),
|
|
432
435
|
]
|
|
433
436
|
: ["[]", value.slice(1)];
|
|
434
437
|
case "!":
|
|
@@ -439,23 +442,20 @@ export const FormatObjectCriteriaValue = (value) => {
|
|
|
439
442
|
]
|
|
440
443
|
: value[1] === "["
|
|
441
444
|
? [
|
|
442
|
-
|
|
443
|
-
value.slice(3)
|
|
445
|
+
"![]",
|
|
446
|
+
value.slice(3)
|
|
447
|
+
.toString()
|
|
448
|
+
.split(",")
|
|
449
|
+
.map((v) => (isNumber(v) ? Number(v) : v)),
|
|
444
450
|
]
|
|
445
451
|
: [
|
|
446
452
|
`${value.slice(0, 1)}=`,
|
|
447
453
|
value.slice(1),
|
|
448
454
|
];
|
|
449
455
|
case "=":
|
|
450
|
-
return [
|
|
451
|
-
value.slice(0, 1),
|
|
452
|
-
value.slice(1),
|
|
453
|
-
];
|
|
456
|
+
return ["=", value.slice(1)];
|
|
454
457
|
case "*":
|
|
455
|
-
return [
|
|
456
|
-
value.slice(0, 1),
|
|
457
|
-
value.slice(1),
|
|
458
|
-
];
|
|
458
|
+
return ["*", value.slice(1)];
|
|
459
459
|
default:
|
|
460
460
|
return ["=", value];
|
|
461
461
|
}
|
package/dist/utils.server.js
CHANGED
|
@@ -95,10 +95,10 @@ export const addIdToSchema = (schema, startWithID) => {
|
|
|
95
95
|
function _addIdToField(field) {
|
|
96
96
|
if (!field.id) {
|
|
97
97
|
startWithID.value++;
|
|
98
|
-
field.id =
|
|
98
|
+
field.id = startWithID.value;
|
|
99
99
|
}
|
|
100
|
-
else
|
|
101
|
-
field.id =
|
|
100
|
+
else if (isValidID(field.id))
|
|
101
|
+
field.id = decodeID(field.id);
|
|
102
102
|
if ((field.type === "array" || field.type === "object") &&
|
|
103
103
|
isArrayOfObjects(field.children))
|
|
104
104
|
field.children = _addIdToSchema(field.children);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inibase",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Karim Amahtil",
|
|
@@ -69,22 +69,24 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@biomejs/biome": "1.9.4",
|
|
72
|
-
"@types/bun": "^1.
|
|
73
|
-
"@types/node": "^22.
|
|
74
|
-
"lefthook": "^1.
|
|
75
|
-
"tinybench": "^
|
|
76
|
-
"
|
|
72
|
+
"@types/bun": "^1.2.10",
|
|
73
|
+
"@types/node": "^22.15.2",
|
|
74
|
+
"lefthook": "^1.11.11",
|
|
75
|
+
"tinybench": "^4.0.1",
|
|
76
|
+
"tsx": "^4.19.3",
|
|
77
|
+
"typescript": "^5.8.3"
|
|
77
78
|
},
|
|
78
79
|
"dependencies": {
|
|
79
|
-
"dotenv": "^16.
|
|
80
|
+
"dotenv": "^16.5.0",
|
|
80
81
|
"inison": "^2.0.1",
|
|
81
82
|
"re2": "^1.21.4"
|
|
82
83
|
},
|
|
83
84
|
"scripts": {
|
|
84
|
-
"prepublish": "
|
|
85
|
-
"
|
|
85
|
+
"prepublish": "tsc",
|
|
86
|
+
"prebuild": "biome check --write src",
|
|
87
|
+
"build": "tsc",
|
|
86
88
|
"benchmark": "./benchmark/run.js",
|
|
87
|
-
"test": "
|
|
88
|
-
"test:utils": "
|
|
89
|
+
"test": "tsx ./tests/inibase.test.ts",
|
|
90
|
+
"test:utils": "tsx ./tests/utils.test.ts"
|
|
89
91
|
}
|
|
90
92
|
}
|