rado 0.1.12 → 0.1.13
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/driver/better-sqlite3.d.ts +3 -3
- package/dist/driver/better-sqlite3.js +1 -1
- package/dist/driver/sql.js.d.ts +3 -3
- package/dist/driver/sql.js.js +1 -1
- package/dist/driver/sqlite3.d.ts +4 -4
- package/dist/driver/sqlite3.js +1 -1
- package/dist/index.d.ts +20 -19
- package/dist/index.js +20 -19
- package/dist/{Column.d.ts → lib/Column.d.ts} +9 -6
- package/dist/{Column.js → lib/Column.js} +1 -1
- package/dist/{Cursor.d.ts → lib/Cursor.d.ts} +0 -0
- package/dist/{Cursor.js → lib/Cursor.js} +1 -1
- package/dist/{Driver.d.ts → lib/Driver.d.ts} +0 -0
- package/dist/{Driver.js → lib/Driver.js} +1 -1
- package/dist/{Expr.d.ts → lib/Expr.d.ts} +0 -0
- package/dist/{Expr.js → lib/Expr.js} +1 -1
- package/dist/{Fields.d.ts → lib/Fields.d.ts} +2 -4
- package/dist/{Fields.js → lib/Fields.js} +0 -0
- package/dist/{Formatter.d.ts → lib/Formatter.d.ts} +0 -0
- package/dist/{Formatter.js → lib/Formatter.js} +1 -1
- package/dist/{Functions.d.ts → lib/Functions.d.ts} +0 -0
- package/dist/{Functions.js → lib/Functions.js} +1 -1
- package/dist/{Id.d.ts → lib/Id.d.ts} +0 -0
- package/dist/{Id.js → lib/Id.js} +0 -0
- package/dist/lib/Index.d.ts +15 -0
- package/dist/lib/Index.js +17 -0
- package/dist/{Ops.d.ts → lib/Ops.d.ts} +0 -0
- package/dist/{Ops.js → lib/Ops.js} +1 -1
- package/dist/{OrderBy.d.ts → lib/OrderBy.d.ts} +0 -0
- package/dist/{OrderBy.js → lib/OrderBy.js} +1 -1
- package/dist/{Param.d.ts → lib/Param.d.ts} +0 -0
- package/dist/{Param.js → lib/Param.js} +1 -1
- package/dist/{Query.d.ts → lib/Query.d.ts} +3 -2
- package/dist/{Query.js → lib/Query.js} +1 -1
- package/dist/{Sanitizer.d.ts → lib/Sanitizer.d.ts} +0 -0
- package/dist/{Sanitizer.js → lib/Sanitizer.js} +0 -0
- package/dist/{Schema.d.ts → lib/Schema.d.ts} +2 -7
- package/dist/{Schema.js → lib/Schema.js} +1 -1
- package/dist/{Selection.d.ts → lib/Selection.d.ts} +0 -0
- package/dist/{Selection.js → lib/Selection.js} +1 -1
- package/dist/{Statement.d.ts → lib/Statement.d.ts} +0 -0
- package/dist/{Statement.js → lib/Statement.js} +1 -1
- package/dist/{Table.d.ts → lib/Table.d.ts} +7 -11
- package/dist/{Table.js → lib/Table.js} +2 -3
- package/dist/{Target.d.ts → lib/Target.d.ts} +0 -0
- package/dist/{Target.js → lib/Target.js} +1 -1
- package/dist/{Update.d.ts → lib/Update.d.ts} +0 -0
- package/dist/{Update.js → lib/Update.js} +0 -0
- package/dist/sqlite/SqliteFormatter.d.ts +3 -3
- package/dist/sqlite/SqliteFormatter.js +4 -4
- package/dist/sqlite/SqliteFunctions.d.ts +2 -2
- package/dist/sqlite/SqliteFunctions.js +1 -1
- package/dist/sqlite/SqliteSchema.d.ts +2 -2
- package/dist/sqlite/SqliteSchema.js +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Database } from 'better-sqlite3';
|
|
2
|
-
import { Driver } from '../Driver';
|
|
3
|
-
import { SchemaInstructions } from '../Schema';
|
|
4
|
-
import { Statement } from '../Statement';
|
|
2
|
+
import { Driver } from '../lib/Driver';
|
|
3
|
+
import { SchemaInstructions } from '../lib/Schema';
|
|
4
|
+
import { Statement } from '../lib/Statement';
|
|
5
5
|
export declare class BetterSqlite3Driver extends Driver.Sync {
|
|
6
6
|
db: Database;
|
|
7
7
|
constructor(db: Database);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/driver/better-sqlite3.ts
|
|
2
|
-
import { Driver } from "../Driver.js";
|
|
2
|
+
import { Driver } from "../lib/Driver.js";
|
|
3
3
|
import { SqliteFormatter } from "../sqlite/SqliteFormatter.js";
|
|
4
4
|
import { SqliteSchema } from "../sqlite/SqliteSchema.js";
|
|
5
5
|
var BetterSqlite3Driver = class extends Driver.Sync {
|
package/dist/driver/sql.js.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Database } from 'sql.js';
|
|
2
|
-
import { Driver } from '../Driver';
|
|
3
|
-
import { SchemaInstructions } from '../Schema';
|
|
4
|
-
import { Statement } from '../Statement';
|
|
2
|
+
import { Driver } from '../lib/Driver';
|
|
3
|
+
import { SchemaInstructions } from '../lib/Schema';
|
|
4
|
+
import { Statement } from '../lib/Statement';
|
|
5
5
|
export declare class SqlJsDriver extends Driver.Sync {
|
|
6
6
|
db: Database;
|
|
7
7
|
constructor(db: Database);
|
package/dist/driver/sql.js.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/driver/sql.js.ts
|
|
2
|
-
import { Driver } from "../Driver.js";
|
|
2
|
+
import { Driver } from "../lib/Driver.js";
|
|
3
3
|
import { SqliteFormatter } from "../sqlite/SqliteFormatter.js";
|
|
4
4
|
import { SqliteSchema } from "../sqlite/SqliteSchema.js";
|
|
5
5
|
var SqlJsDriver = class extends Driver.Sync {
|
package/dist/driver/sqlite3.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Database } from 'sqlite3';
|
|
2
|
-
import { Driver } from '../Driver';
|
|
3
|
-
import { Query } from '../Query';
|
|
4
|
-
import { SchemaInstructions } from '../Schema';
|
|
5
|
-
import { Statement } from '../Statement';
|
|
2
|
+
import { Driver } from '../lib/Driver';
|
|
3
|
+
import { Query } from '../lib/Query';
|
|
4
|
+
import { SchemaInstructions } from '../lib/Schema';
|
|
5
|
+
import { Statement } from '../lib/Statement';
|
|
6
6
|
export declare class Sqlite3Driver extends Driver.Async {
|
|
7
7
|
private db;
|
|
8
8
|
lock: Promise<void> | undefined;
|
package/dist/driver/sqlite3.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/driver/sqlite3.ts
|
|
2
|
-
import { Driver } from "../Driver.js";
|
|
2
|
+
import { Driver } from "../lib/Driver.js";
|
|
3
3
|
import { SqliteFormatter } from "../sqlite/SqliteFormatter.js";
|
|
4
4
|
import { SqliteSchema } from "../sqlite/SqliteSchema.js";
|
|
5
5
|
var Sqlite3Driver = class extends Driver.Async {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
export * from './Column';
|
|
2
|
-
export * from './Cursor';
|
|
3
|
-
export * from './Driver';
|
|
4
|
-
export * from './Expr';
|
|
5
|
-
export * from './Fields';
|
|
6
|
-
export * from './Formatter';
|
|
7
|
-
export * from './Functions';
|
|
8
|
-
export * from './Id';
|
|
9
|
-
export * from './
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './
|
|
1
|
+
export * from './lib/Column';
|
|
2
|
+
export * from './lib/Cursor';
|
|
3
|
+
export * from './lib/Driver';
|
|
4
|
+
export * from './lib/Expr';
|
|
5
|
+
export * from './lib/Fields';
|
|
6
|
+
export * from './lib/Formatter';
|
|
7
|
+
export * from './lib/Functions';
|
|
8
|
+
export * from './lib/Id';
|
|
9
|
+
export * from './lib/Index';
|
|
10
|
+
export * from './lib/Ops';
|
|
11
|
+
export * from './lib/OrderBy';
|
|
12
|
+
export * from './lib/Param';
|
|
13
|
+
export * from './lib/Query';
|
|
14
|
+
export * from './lib/Sanitizer';
|
|
15
|
+
export * from './lib/Schema';
|
|
16
|
+
export * from './lib/Selection';
|
|
17
|
+
export * from './lib/Statement';
|
|
18
|
+
export * from './lib/Table';
|
|
19
|
+
export * from './lib/Target';
|
|
20
|
+
export * from './lib/Update';
|
package/dist/index.js
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
-
export * from "./Column.js";
|
|
3
|
-
export * from "./Cursor.js";
|
|
4
|
-
export * from "./Driver.js";
|
|
5
|
-
export * from "./Expr.js";
|
|
6
|
-
export * from "./Fields.js";
|
|
7
|
-
export * from "./Formatter.js";
|
|
8
|
-
export * from "./Functions.js";
|
|
9
|
-
export * from "./Id.js";
|
|
10
|
-
export * from "./
|
|
11
|
-
export * from "./
|
|
12
|
-
export * from "./
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./
|
|
15
|
-
export * from "./
|
|
16
|
-
export * from "./
|
|
17
|
-
export * from "./
|
|
18
|
-
export * from "./
|
|
19
|
-
export * from "./
|
|
20
|
-
export * from "./
|
|
2
|
+
export * from "./lib/Column.js";
|
|
3
|
+
export * from "./lib/Cursor.js";
|
|
4
|
+
export * from "./lib/Driver.js";
|
|
5
|
+
export * from "./lib/Expr.js";
|
|
6
|
+
export * from "./lib/Fields.js";
|
|
7
|
+
export * from "./lib/Formatter.js";
|
|
8
|
+
export * from "./lib/Functions.js";
|
|
9
|
+
export * from "./lib/Id.js";
|
|
10
|
+
export * from "./lib/Index.js";
|
|
11
|
+
export * from "./lib/Ops.js";
|
|
12
|
+
export * from "./lib/OrderBy.js";
|
|
13
|
+
export * from "./lib/Param.js";
|
|
14
|
+
export * from "./lib/Query.js";
|
|
15
|
+
export * from "./lib/Sanitizer.js";
|
|
16
|
+
export * from "./lib/Schema.js";
|
|
17
|
+
export * from "./lib/Selection.js";
|
|
18
|
+
export * from "./lib/Statement.js";
|
|
19
|
+
export * from "./lib/Table.js";
|
|
20
|
+
export * from "./lib/Target.js";
|
|
21
|
+
export * from "./lib/Update.js";
|
|
@@ -25,21 +25,24 @@ export declare class Column<T> {
|
|
|
25
25
|
constructor(data: PartialColumnData);
|
|
26
26
|
name(name: string): Column<T>;
|
|
27
27
|
nullable(): Column<T | null>;
|
|
28
|
-
autoIncrement(): Column<Column.
|
|
29
|
-
primaryKey<K extends string>(): Column<Column.
|
|
28
|
+
autoIncrement(): Column<Column.IsOptional<T>>;
|
|
29
|
+
primaryKey<K extends string>(): Column<Column.IsPrimary<T, K>>;
|
|
30
30
|
references(column: Expr<T>): Column<T>;
|
|
31
31
|
unique(): Column<T>;
|
|
32
|
-
defaultValue(value: T): Column<Column.
|
|
32
|
+
defaultValue(value: T): Column<Column.IsOptional<T>>;
|
|
33
33
|
}
|
|
34
|
+
export type PrimaryKey<T, K> = string extends K ? T : T & {
|
|
35
|
+
[Column.isPrimary]: K;
|
|
36
|
+
};
|
|
34
37
|
export declare namespace Column {
|
|
35
38
|
const isOptional: unique symbol;
|
|
36
|
-
type
|
|
39
|
+
type IsOptional<T> = {
|
|
37
40
|
[isOptional]: true;
|
|
38
41
|
__t: T;
|
|
39
42
|
};
|
|
40
43
|
const isPrimary: unique symbol;
|
|
41
|
-
type
|
|
42
|
-
[isPrimary]:
|
|
44
|
+
type IsPrimary<T, K> = {
|
|
45
|
+
[isPrimary]: K;
|
|
43
46
|
__t: T;
|
|
44
47
|
};
|
|
45
48
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { Column } from './Column';
|
|
1
|
+
import { Column, PrimaryKey } from './Column';
|
|
2
2
|
import { Expr } from './Expr';
|
|
3
3
|
type ObjectUnion<T> = {
|
|
4
4
|
[K in T extends infer P ? keyof P : never]: T extends infer P ? K extends keyof P ? P[K] : never : never;
|
|
5
5
|
};
|
|
6
6
|
type RecordField<T> = Expr<T> & FieldsOf<ObjectUnion<T>>;
|
|
7
|
-
type Field<T> = [T] extends [Array<any>] ? Expr<T> : [T] extends [Column.
|
|
8
|
-
[Column.isPrimary]: K;
|
|
9
|
-
}> : [T] extends [Column.Optional<infer V>] ? Field<V> : [T] extends [number | string | boolean] ? Expr<T> : [T] extends [Record<string, any> | null] ? RecordField<T> : Expr<T>;
|
|
7
|
+
type Field<T> = [T] extends [Array<any>] ? Expr<T> : [T] extends [Column.IsPrimary<infer V, infer K>] ? Expr<PrimaryKey<V, K>> : [T] extends [Column.IsOptional<infer V>] ? Field<V> : [T] extends [number | string | boolean] ? Expr<T> : [T] extends [Record<string, any> | null] ? RecordField<T> : Expr<T>;
|
|
10
8
|
type FieldsOf<Row> = Row extends Record<string, any> ? {
|
|
11
9
|
[K in keyof Row]-?: Field<Row[K]>;
|
|
12
10
|
} : never;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/{Id.js → lib/Id.js}
RENAMED
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Expr, ExprData } from './Expr';
|
|
2
|
+
interface PartialIndexData {
|
|
3
|
+
on: Array<ExprData>;
|
|
4
|
+
where?: ExprData;
|
|
5
|
+
}
|
|
6
|
+
export interface IndexData extends PartialIndexData {
|
|
7
|
+
name: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class Index {
|
|
10
|
+
data: PartialIndexData;
|
|
11
|
+
constructor(data: PartialIndexData);
|
|
12
|
+
where(where: Expr<boolean>): Index;
|
|
13
|
+
}
|
|
14
|
+
export declare function index(...on: Array<Expr<any>>): Index;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// src/lib/Index.ts
|
|
2
|
+
import { ExprData } from "./Expr.js";
|
|
3
|
+
var Index = class {
|
|
4
|
+
constructor(data) {
|
|
5
|
+
this.data = data;
|
|
6
|
+
}
|
|
7
|
+
where(where) {
|
|
8
|
+
return new Index({ ...this.data, where: ExprData.create(where) });
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
function index(...on) {
|
|
12
|
+
return new Index({ on: on.map(ExprData.create) });
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
Index,
|
|
16
|
+
index
|
|
17
|
+
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ColumnData } from './Column';
|
|
2
2
|
import { ExprData } from './Expr';
|
|
3
|
+
import { IndexData } from './Index';
|
|
3
4
|
import { OrderBy } from './OrderBy';
|
|
4
|
-
import {
|
|
5
|
+
import { Schema } from './Schema';
|
|
5
6
|
import { Target } from './Target';
|
|
6
7
|
export declare enum QueryType {
|
|
7
8
|
Insert = "Insert",
|
|
@@ -61,7 +62,7 @@ export declare namespace Query {
|
|
|
61
62
|
interface CreateIndex extends QueryBase {
|
|
62
63
|
type: QueryType.CreateIndex;
|
|
63
64
|
table: Schema;
|
|
64
|
-
index:
|
|
65
|
+
index: IndexData;
|
|
65
66
|
ifNotExists?: boolean;
|
|
66
67
|
}
|
|
67
68
|
function CreateIndex(create: Omit<CreateIndex, 'type'>): Query.CreateIndex;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { ColumnData } from './Column';
|
|
2
|
-
import { ExprData } from './Expr';
|
|
3
2
|
import { Formatter } from './Formatter';
|
|
3
|
+
import { IndexData } from './Index';
|
|
4
4
|
import { Query } from './Query';
|
|
5
|
-
export interface Index {
|
|
6
|
-
name: string;
|
|
7
|
-
on: Array<ExprData>;
|
|
8
|
-
where?: ExprData;
|
|
9
|
-
}
|
|
10
5
|
export interface Schema {
|
|
11
6
|
name: string;
|
|
12
7
|
alias?: string;
|
|
13
8
|
columns: Record<string, ColumnData>;
|
|
14
|
-
indexes: Record<string,
|
|
9
|
+
indexes: Record<string, IndexData>;
|
|
15
10
|
}
|
|
16
11
|
export interface SchemaInstructions {
|
|
17
12
|
columns: Record<string, string>;
|
|
File without changes
|
|
File without changes
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { Column } from './Column';
|
|
1
|
+
import { Column, PrimaryKey } from './Column';
|
|
2
2
|
import { Cursor } from './Cursor';
|
|
3
3
|
import { Expr } from './Expr';
|
|
4
4
|
import { Fields } from './Fields';
|
|
5
|
+
import { Index } from './Index';
|
|
5
6
|
import { Schema } from './Schema';
|
|
6
7
|
import { Selection } from './Selection';
|
|
7
8
|
import { Update } from './Update';
|
|
@@ -22,19 +23,17 @@ export declare namespace Table {
|
|
|
22
23
|
[P in keyof U]: U[P];
|
|
23
24
|
} : never;
|
|
24
25
|
type OptionalKeys<T> = {
|
|
25
|
-
[K in keyof T]: null extends T[K] ? K : T[K] extends Column.
|
|
26
|
+
[K in keyof T]: null extends T[K] ? K : T[K] extends Column.IsPrimary<any, any> ? K : T[K] extends Column.IsOptional<any> ? K : never;
|
|
26
27
|
}[keyof T];
|
|
27
28
|
type RequiredKeys<T> = {
|
|
28
|
-
[K in keyof T]: null extends T[K] ? never : T[K] extends Column.
|
|
29
|
+
[K in keyof T]: null extends T[K] ? never : T[K] extends Column.IsPrimary<any, any> ? never : T[K] extends Column.IsOptional<any> ? never : K;
|
|
29
30
|
}[keyof T];
|
|
30
31
|
type Optionals<T> = {
|
|
31
|
-
[K in keyof T]?: T[K] extends Column.
|
|
32
|
+
[K in keyof T]?: T[K] extends Column.IsOptional<infer V> ? V : T[K] extends Column.IsPrimary<infer V, infer K> ? PrimaryKey<V, K> : T[K];
|
|
32
33
|
};
|
|
33
34
|
export type Insert<T> = Intersection<Optionals<Pick<T, OptionalKeys<T>>>, Pick<T, RequiredKeys<T>>>;
|
|
34
35
|
export type Normalize<T> = {
|
|
35
|
-
[K in keyof T]: T[K] extends Column.
|
|
36
|
-
[Column.isPrimary]: K;
|
|
37
|
-
} : T[K];
|
|
36
|
+
[K in keyof T]: T[K] extends Column.IsOptional<infer V> ? V : T[K] extends Column.IsPrimary<infer V, infer K> ? PrimaryKey<V, K> : T[K];
|
|
38
37
|
};
|
|
39
38
|
export type Infer<T> = T extends Table<infer U> ? Normalize<U> : never;
|
|
40
39
|
export {};
|
|
@@ -45,10 +44,7 @@ export interface TableOptions<T> {
|
|
|
45
44
|
columns: {
|
|
46
45
|
[K in keyof T]: Column<T[K]>;
|
|
47
46
|
};
|
|
48
|
-
indexes?: (this: Fields<T>) => Record<string,
|
|
49
|
-
on: Array<Expr<any>>;
|
|
50
|
-
where?: Expr<boolean>;
|
|
51
|
-
}>;
|
|
47
|
+
indexes?: (this: Fields<T>) => Record<string, Index>;
|
|
52
48
|
}
|
|
53
49
|
export declare function table<T extends {}>(options: TableOptions<T>): Table<T> & Fields<T>;
|
|
54
50
|
export declare namespace table {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// src/Table.ts
|
|
1
|
+
// src/lib/Table.ts
|
|
2
2
|
import { Cursor } from "./Cursor.js";
|
|
3
3
|
import { Expr, ExprData } from "./Expr.js";
|
|
4
4
|
import { Query } from "./Query.js";
|
|
@@ -92,8 +92,7 @@ function table(options) {
|
|
|
92
92
|
indexName,
|
|
93
93
|
{
|
|
94
94
|
name: indexName,
|
|
95
|
-
|
|
96
|
-
where: index.where?.expr
|
|
95
|
+
...index.data
|
|
97
96
|
}
|
|
98
97
|
];
|
|
99
98
|
})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ExprData } from '../Expr';
|
|
2
|
-
import { FormatContext, Formatter } from '../Formatter';
|
|
3
|
-
import { Statement } from '../Statement';
|
|
1
|
+
import { ExprData } from '../lib/Expr';
|
|
2
|
+
import { FormatContext, Formatter } from '../lib/Formatter';
|
|
3
|
+
import { Statement } from '../lib/Statement';
|
|
4
4
|
export declare class SqliteFormatter extends Formatter {
|
|
5
5
|
escapeValue(value: any): string;
|
|
6
6
|
escapeIdentifier(input: string): string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/sqlite/SqliteFormatter.ts
|
|
2
|
-
import { ExprType } from "../Expr.js";
|
|
3
|
-
import { Formatter } from "../Formatter.js";
|
|
4
|
-
import { identifier } from "../Statement.js";
|
|
5
|
-
import { TargetType } from "../Target.js";
|
|
2
|
+
import { ExprType } from "../lib/Expr.js";
|
|
3
|
+
import { Formatter } from "../lib/Formatter.js";
|
|
4
|
+
import { identifier } from "../lib/Statement.js";
|
|
5
|
+
import { TargetType } from "../lib/Target.js";
|
|
6
6
|
function escapeWithin(input, outer) {
|
|
7
7
|
let buf = outer;
|
|
8
8
|
for (const char of input) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EV, Expr } from '../Expr';
|
|
2
|
-
import { Table } from '../Table';
|
|
1
|
+
import { EV, Expr } from '../lib/Expr';
|
|
2
|
+
import { Table } from '../lib/Table';
|
|
3
3
|
export declare const SqliteFunctions: SqliteFunctions;
|
|
4
4
|
export type SqliteFunctions = {
|
|
5
5
|
/** Use the match operator for the FTS5 module */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SchemaInstructions } from '../Schema';
|
|
2
|
-
import { Statement } from '../Statement';
|
|
1
|
+
import { SchemaInstructions } from '../lib/Schema';
|
|
2
|
+
import { Statement } from '../lib/Statement';
|
|
3
3
|
export declare namespace SqliteSchema {
|
|
4
4
|
type Column = {
|
|
5
5
|
cid: number;
|