@effect/sql-sqlite-do 4.0.0-beta.72 → 4.0.0-beta.74
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
|
@@ -75,7 +75,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
75
75
|
* Use to access or provide a Durable Object SQLite client through the Effect
|
|
76
76
|
* context.
|
|
77
77
|
*
|
|
78
|
-
* @category
|
|
78
|
+
* @category services
|
|
79
79
|
* @since 4.0.0
|
|
80
80
|
*/
|
|
81
81
|
export declare const SqliteClient: Context.Service<SqliteClient, SqliteClient>;
|
package/dist/SqliteClient.js
CHANGED
|
@@ -31,7 +31,7 @@ export const TypeId = "~@effect/sql-sqlite-do/SqliteClient";
|
|
|
31
31
|
* Use to access or provide a Durable Object SQLite client through the Effect
|
|
32
32
|
* context.
|
|
33
33
|
*
|
|
34
|
-
* @category
|
|
34
|
+
* @category services
|
|
35
35
|
* @since 4.0.0
|
|
36
36
|
*/
|
|
37
37
|
export const SqliteClient = /*#__PURE__*/Context.Service("@effect/sql-sqlite-do/SqliteClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-sqlite-do",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.74",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "A SQLite toolkit for Effect",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@cloudflare/workers-types": "^4.20260511.1",
|
|
47
|
-
"effect": "^4.0.0-beta.
|
|
47
|
+
"effect": "^4.0.0-beta.74"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"effect": "^4.0.0-beta.
|
|
50
|
+
"effect": "^4.0.0-beta.74"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"codegen": "effect-utils codegen",
|
package/src/SqliteClient.ts
CHANGED
|
@@ -92,7 +92,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
92
92
|
* Use to access or provide a Durable Object SQLite client through the Effect
|
|
93
93
|
* context.
|
|
94
94
|
*
|
|
95
|
-
* @category
|
|
95
|
+
* @category services
|
|
96
96
|
* @since 4.0.0
|
|
97
97
|
*/
|
|
98
98
|
export const SqliteClient = Context.Service<SqliteClient>("@effect/sql-sqlite-do/SqliteClient")
|