@aigne/afs-sqlite 1.11.0-beta.2 → 1.11.0-beta.3
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/config.d.cts +4 -4
- package/dist/config.d.mts +4 -4
- package/dist/sqlite-afs.d.cts +4 -4
- package/dist/sqlite-afs.d.mts +4 -4
- package/package.json +2 -2
package/dist/config.d.cts
CHANGED
|
@@ -19,17 +19,17 @@ declare const sqliteAFSConfigSchema: z.ZodObject<{
|
|
|
19
19
|
enabled: boolean;
|
|
20
20
|
tables?: Record<string, string[]> | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
tables?: Record<string, string[]> | undefined;
|
|
23
22
|
enabled?: boolean | undefined;
|
|
23
|
+
tables?: Record<string, string[]> | undefined;
|
|
24
24
|
}>>;
|
|
25
25
|
wal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
27
|
url: string;
|
|
28
28
|
wal: boolean;
|
|
29
|
+
tables?: string[] | undefined;
|
|
29
30
|
name?: string | undefined;
|
|
30
31
|
description?: string | undefined;
|
|
31
32
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
32
|
-
tables?: string[] | undefined;
|
|
33
33
|
excludeTables?: string[] | undefined;
|
|
34
34
|
fts?: {
|
|
35
35
|
enabled: boolean;
|
|
@@ -37,14 +37,14 @@ declare const sqliteAFSConfigSchema: z.ZodObject<{
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
url: string;
|
|
40
|
+
tables?: string[] | undefined;
|
|
40
41
|
name?: string | undefined;
|
|
41
42
|
description?: string | undefined;
|
|
42
43
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
43
|
-
tables?: string[] | undefined;
|
|
44
44
|
excludeTables?: string[] | undefined;
|
|
45
45
|
fts?: {
|
|
46
|
-
tables?: Record<string, string[]> | undefined;
|
|
47
46
|
enabled?: boolean | undefined;
|
|
47
|
+
tables?: Record<string, string[]> | undefined;
|
|
48
48
|
} | undefined;
|
|
49
49
|
wal?: boolean | undefined;
|
|
50
50
|
}>;
|
package/dist/config.d.mts
CHANGED
|
@@ -19,17 +19,17 @@ declare const sqliteAFSConfigSchema: z.ZodObject<{
|
|
|
19
19
|
enabled: boolean;
|
|
20
20
|
tables?: Record<string, string[]> | undefined;
|
|
21
21
|
}, {
|
|
22
|
-
tables?: Record<string, string[]> | undefined;
|
|
23
22
|
enabled?: boolean | undefined;
|
|
23
|
+
tables?: Record<string, string[]> | undefined;
|
|
24
24
|
}>>;
|
|
25
25
|
wal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
27
|
url: string;
|
|
28
28
|
wal: boolean;
|
|
29
|
+
tables?: string[] | undefined;
|
|
29
30
|
name?: string | undefined;
|
|
30
31
|
description?: string | undefined;
|
|
31
32
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
32
|
-
tables?: string[] | undefined;
|
|
33
33
|
excludeTables?: string[] | undefined;
|
|
34
34
|
fts?: {
|
|
35
35
|
enabled: boolean;
|
|
@@ -37,14 +37,14 @@ declare const sqliteAFSConfigSchema: z.ZodObject<{
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
url: string;
|
|
40
|
+
tables?: string[] | undefined;
|
|
40
41
|
name?: string | undefined;
|
|
41
42
|
description?: string | undefined;
|
|
42
43
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
43
|
-
tables?: string[] | undefined;
|
|
44
44
|
excludeTables?: string[] | undefined;
|
|
45
45
|
fts?: {
|
|
46
|
-
tables?: Record<string, string[]> | undefined;
|
|
47
46
|
enabled?: boolean | undefined;
|
|
47
|
+
tables?: Record<string, string[]> | undefined;
|
|
48
48
|
} | undefined;
|
|
49
49
|
wal?: boolean | undefined;
|
|
50
50
|
}>;
|
package/dist/sqlite-afs.d.cts
CHANGED
|
@@ -43,17 +43,17 @@ declare class SQLiteAFS implements AFSModule {
|
|
|
43
43
|
enabled: boolean;
|
|
44
44
|
tables?: Record<string, string[]> | undefined;
|
|
45
45
|
}, {
|
|
46
|
-
tables?: Record<string, string[]> | undefined;
|
|
47
46
|
enabled?: boolean | undefined;
|
|
47
|
+
tables?: Record<string, string[]> | undefined;
|
|
48
48
|
}>>;
|
|
49
49
|
wal: zod0.ZodDefault<zod0.ZodOptional<zod0.ZodBoolean>>;
|
|
50
50
|
}, "strip", zod0.ZodTypeAny, {
|
|
51
51
|
url: string;
|
|
52
52
|
wal: boolean;
|
|
53
|
+
tables?: string[] | undefined;
|
|
53
54
|
name?: string | undefined;
|
|
54
55
|
description?: string | undefined;
|
|
55
56
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
56
|
-
tables?: string[] | undefined;
|
|
57
57
|
excludeTables?: string[] | undefined;
|
|
58
58
|
fts?: {
|
|
59
59
|
enabled: boolean;
|
|
@@ -61,14 +61,14 @@ declare class SQLiteAFS implements AFSModule {
|
|
|
61
61
|
} | undefined;
|
|
62
62
|
}, {
|
|
63
63
|
url: string;
|
|
64
|
+
tables?: string[] | undefined;
|
|
64
65
|
name?: string | undefined;
|
|
65
66
|
description?: string | undefined;
|
|
66
67
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
67
|
-
tables?: string[] | undefined;
|
|
68
68
|
excludeTables?: string[] | undefined;
|
|
69
69
|
fts?: {
|
|
70
|
-
tables?: Record<string, string[]> | undefined;
|
|
71
70
|
enabled?: boolean | undefined;
|
|
71
|
+
tables?: Record<string, string[]> | undefined;
|
|
72
72
|
} | undefined;
|
|
73
73
|
wal?: boolean | undefined;
|
|
74
74
|
}>;
|
package/dist/sqlite-afs.d.mts
CHANGED
|
@@ -43,17 +43,17 @@ declare class SQLiteAFS implements AFSModule {
|
|
|
43
43
|
enabled: boolean;
|
|
44
44
|
tables?: Record<string, string[]> | undefined;
|
|
45
45
|
}, {
|
|
46
|
-
tables?: Record<string, string[]> | undefined;
|
|
47
46
|
enabled?: boolean | undefined;
|
|
47
|
+
tables?: Record<string, string[]> | undefined;
|
|
48
48
|
}>>;
|
|
49
49
|
wal: zod0.ZodDefault<zod0.ZodOptional<zod0.ZodBoolean>>;
|
|
50
50
|
}, "strip", zod0.ZodTypeAny, {
|
|
51
51
|
url: string;
|
|
52
52
|
wal: boolean;
|
|
53
|
+
tables?: string[] | undefined;
|
|
53
54
|
name?: string | undefined;
|
|
54
55
|
description?: string | undefined;
|
|
55
56
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
56
|
-
tables?: string[] | undefined;
|
|
57
57
|
excludeTables?: string[] | undefined;
|
|
58
58
|
fts?: {
|
|
59
59
|
enabled: boolean;
|
|
@@ -61,14 +61,14 @@ declare class SQLiteAFS implements AFSModule {
|
|
|
61
61
|
} | undefined;
|
|
62
62
|
}, {
|
|
63
63
|
url: string;
|
|
64
|
+
tables?: string[] | undefined;
|
|
64
65
|
name?: string | undefined;
|
|
65
66
|
description?: string | undefined;
|
|
66
67
|
accessMode?: "readonly" | "readwrite" | undefined;
|
|
67
|
-
tables?: string[] | undefined;
|
|
68
68
|
excludeTables?: string[] | undefined;
|
|
69
69
|
fts?: {
|
|
70
|
-
tables?: Record<string, string[]> | undefined;
|
|
71
70
|
enabled?: boolean | undefined;
|
|
71
|
+
tables?: Record<string, string[]> | undefined;
|
|
72
72
|
} | undefined;
|
|
73
73
|
wal?: boolean | undefined;
|
|
74
74
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/afs-sqlite",
|
|
3
|
-
"version": "1.11.0-beta.
|
|
3
|
+
"version": "1.11.0-beta.3",
|
|
4
4
|
"description": "AIGNE AFS module for SQLite database storage with schema introspection",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"drizzle-orm": "^0.44.5",
|
|
38
38
|
"radix3": "^1.1.2",
|
|
39
39
|
"zod": "^3.25.67",
|
|
40
|
-
"@aigne/afs": "^1.11.0-beta.
|
|
40
|
+
"@aigne/afs": "^1.11.0-beta.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/bun": "^1.3.6",
|