@effect/sql-sqlite-bun 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
|
@@ -41,7 +41,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
41
41
|
*
|
|
42
42
|
* Use to access or provide a Bun SQLite client through the Effect context.
|
|
43
43
|
*
|
|
44
|
-
* @category
|
|
44
|
+
* @category services
|
|
45
45
|
* @since 4.0.0
|
|
46
46
|
*/
|
|
47
47
|
export declare const SqliteClient: Context.Service<SqliteClient, SqliteClient>;
|
package/dist/SqliteClient.js
CHANGED
|
@@ -77,7 +77,7 @@ export const TypeId = "~@effect/sql-sqlite-bun/SqliteClient";
|
|
|
77
77
|
*
|
|
78
78
|
* Use to access or provide a Bun SQLite client through the Effect context.
|
|
79
79
|
*
|
|
80
|
-
* @category
|
|
80
|
+
* @category services
|
|
81
81
|
* @since 4.0.0
|
|
82
82
|
*/
|
|
83
83
|
export const SqliteClient = /*#__PURE__*/Context.Service("@effect/sql-sqlite-bun/Client");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-sqlite-bun",
|
|
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/bun": "^1.3.13",
|
|
47
|
-
"@effect/platform-bun": "^4.0.0-beta.
|
|
48
|
-
"effect": "^4.0.0-beta.
|
|
47
|
+
"@effect/platform-bun": "^4.0.0-beta.75",
|
|
48
|
+
"effect": "^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
|
"scripts": {
|
|
54
54
|
"codegen": "effect-utils codegen",
|
package/src/SqliteClient.ts
CHANGED
|
@@ -104,7 +104,7 @@ export interface SqliteClient extends Client.SqlClient {
|
|
|
104
104
|
*
|
|
105
105
|
* Use to access or provide a Bun SQLite client through the Effect context.
|
|
106
106
|
*
|
|
107
|
-
* @category
|
|
107
|
+
* @category services
|
|
108
108
|
* @since 4.0.0
|
|
109
109
|
*/
|
|
110
110
|
export const SqliteClient = Context.Service<SqliteClient>("@effect/sql-sqlite-bun/Client")
|