@effect/sql-mysql2 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/MysqlClient.d.ts +1 -1
- package/dist/MysqlClient.js +1 -1
- package/package.json +3 -3
- package/src/MysqlClient.ts +1 -1
package/dist/MysqlClient.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export interface MysqlClient extends Client.SqlClient {
|
|
|
75
75
|
*
|
|
76
76
|
* Use to access or provide a mysql2 client through the Effect context.
|
|
77
77
|
*
|
|
78
|
-
* @category
|
|
78
|
+
* @category services
|
|
79
79
|
* @since 4.0.0
|
|
80
80
|
*/
|
|
81
81
|
export declare const MysqlClient: Context.Service<MysqlClient, MysqlClient>;
|
package/dist/MysqlClient.js
CHANGED
|
@@ -147,7 +147,7 @@ export const TypeId = "~@effect/sql-mysql2/MysqlClient";
|
|
|
147
147
|
*
|
|
148
148
|
* Use to access or provide a mysql2 client through the Effect context.
|
|
149
149
|
*
|
|
150
|
-
* @category
|
|
150
|
+
* @category services
|
|
151
151
|
* @since 4.0.0
|
|
152
152
|
*/
|
|
153
153
|
export const MysqlClient = /*#__PURE__*/Context.Service("@effect/sql-mysql2/MysqlClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-mysql2",
|
|
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 MySQL toolkit for Effect",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@testcontainers/mysql": "^11.14.0",
|
|
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
|
"dependencies": {
|
|
53
53
|
"mysql2": "^3.22.3"
|
package/src/MysqlClient.ts
CHANGED
|
@@ -190,7 +190,7 @@ export interface MysqlClient extends Client.SqlClient {
|
|
|
190
190
|
*
|
|
191
191
|
* Use to access or provide a mysql2 client through the Effect context.
|
|
192
192
|
*
|
|
193
|
-
* @category
|
|
193
|
+
* @category services
|
|
194
194
|
* @since 4.0.0
|
|
195
195
|
*/
|
|
196
196
|
export const MysqlClient = Context.Service<MysqlClient>("@effect/sql-mysql2/MysqlClient")
|