@effect/sql-sqlite-wasm 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 +3 -3
- package/src/SqliteClient.ts +1 -1
package/dist/SqliteClient.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
37
37
|
/**
|
|
38
38
|
* Service tag for the SQLite WASM client.
|
|
39
39
|
*
|
|
40
|
-
* @category
|
|
40
|
+
* @category services
|
|
41
41
|
* @since 4.0.0
|
|
42
42
|
*/
|
|
43
43
|
export declare const SqliteClient: Context.Service<SqliteClient, SqliteClient>;
|
package/dist/SqliteClient.js
CHANGED
|
@@ -62,7 +62,7 @@ export const TypeId = "~@effect/sql-sqlite-wasm/SqliteClient";
|
|
|
62
62
|
/**
|
|
63
63
|
* Service tag for the SQLite WASM client.
|
|
64
64
|
*
|
|
65
|
-
* @category
|
|
65
|
+
* @category services
|
|
66
66
|
* @since 4.0.0
|
|
67
67
|
*/
|
|
68
68
|
export const SqliteClient = /*#__PURE__*/Context.Service("@effect/sql-sqlite-wasm/SqliteClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-sqlite-wasm",
|
|
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
|
"@effect/wa-sqlite": "^0.2.1",
|
|
47
|
-
"effect": "^4.0.0-beta.
|
|
47
|
+
"effect": "^4.0.0-beta.75"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@effect/wa-sqlite": "^0.1.2",
|
|
51
|
-
"effect": "^4.0.0-beta.
|
|
51
|
+
"effect": "^4.0.0-beta.75"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"codegen": "effect-utils codegen",
|
package/src/SqliteClient.ts
CHANGED
|
@@ -90,7 +90,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
90
90
|
/**
|
|
91
91
|
* Service tag for the SQLite WASM client.
|
|
92
92
|
*
|
|
93
|
-
* @category
|
|
93
|
+
* @category services
|
|
94
94
|
* @since 4.0.0
|
|
95
95
|
*/
|
|
96
96
|
export const SqliteClient = Context.Service<SqliteClient>("@effect/sql-sqlite-wasm/SqliteClient")
|