@effect/sql-sqlite-node 4.0.0-beta.73 → 4.0.0-beta.75
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/SqliteClient.d.ts +1 -1
- package/dist/SqliteClient.js +1 -1
- package/package.json +4 -4
- package/src/SqliteClient.ts +1 -1
package/dist/SqliteClient.d.ts
CHANGED
package/dist/SqliteClient.js
CHANGED
|
@@ -73,7 +73,7 @@ export const TypeId = "~@effect/sql-sqlite-node/SqliteClient";
|
|
|
73
73
|
/**
|
|
74
74
|
* Service tag for the node SQLite client implementation.
|
|
75
75
|
*
|
|
76
|
-
* @category
|
|
76
|
+
* @category services
|
|
77
77
|
* @since 4.0.0
|
|
78
78
|
*/
|
|
79
79
|
export const SqliteClient = /*#__PURE__*/Context.Service("@effect/sql-sqlite-node/SqliteClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-sqlite-node",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.75",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "A SQLite toolkit for Effect",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/better-sqlite3": "^7.6.13",
|
|
47
|
-
"
|
|
48
|
-
"effect": "^4.0.0-beta.
|
|
47
|
+
"effect": "^4.0.0-beta.75",
|
|
48
|
+
"@effect/platform-node": "^4.0.0-beta.75"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"effect": "^4.0.0-beta.
|
|
51
|
+
"effect": "^4.0.0-beta.75"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"better-sqlite3": "^12.9.0"
|
package/src/SqliteClient.ts
CHANGED
|
@@ -112,7 +112,7 @@ export interface BackupMetadata {
|
|
|
112
112
|
/**
|
|
113
113
|
* Service tag for the node SQLite client implementation.
|
|
114
114
|
*
|
|
115
|
-
* @category
|
|
115
|
+
* @category services
|
|
116
116
|
* @since 4.0.0
|
|
117
117
|
*/
|
|
118
118
|
export const SqliteClient = Context.Service<SqliteClient>("@effect/sql-sqlite-node/SqliteClient")
|