@effect/sql-pg 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/PgClient.d.ts +1 -1
- package/dist/PgClient.js +1 -1
- package/package.json +3 -3
- package/src/PgClient.ts +1 -1
package/dist/PgClient.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export interface PgClient extends Client.SqlClient {
|
|
|
49
49
|
*
|
|
50
50
|
* Use to access or provide a PostgreSQL client through the Effect context.
|
|
51
51
|
*
|
|
52
|
-
* @category
|
|
52
|
+
* @category services
|
|
53
53
|
* @since 4.0.0
|
|
54
54
|
*/
|
|
55
55
|
export declare const PgClient: Context.Service<PgClient, PgClient>;
|
package/dist/PgClient.js
CHANGED
|
@@ -74,7 +74,7 @@ export const TypeId = "~@effect/sql-pg/PgClient";
|
|
|
74
74
|
*
|
|
75
75
|
* Use to access or provide a PostgreSQL client through the Effect context.
|
|
76
76
|
*
|
|
77
|
-
* @category
|
|
77
|
+
* @category services
|
|
78
78
|
* @since 4.0.0
|
|
79
79
|
*/
|
|
80
80
|
export const PgClient = /*#__PURE__*/Context.Service("@effect/sql-pg/PgClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-pg",
|
|
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 PostgreSQL toolkit for Effect",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"@testcontainers/postgresql": "^11.14.0",
|
|
47
47
|
"@types/pg": "^8.20.0",
|
|
48
48
|
"@types/pg-cursor": "^2.7.2",
|
|
49
|
-
"effect": "^4.0.0-beta.
|
|
49
|
+
"effect": "^4.0.0-beta.75"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"effect": "^4.0.0-beta.
|
|
52
|
+
"effect": "^4.0.0-beta.75"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"pg": "^8.20.0",
|
package/src/PgClient.ts
CHANGED
|
@@ -116,7 +116,7 @@ export interface PgClient extends Client.SqlClient {
|
|
|
116
116
|
*
|
|
117
117
|
* Use to access or provide a PostgreSQL client through the Effect context.
|
|
118
118
|
*
|
|
119
|
-
* @category
|
|
119
|
+
* @category services
|
|
120
120
|
* @since 4.0.0
|
|
121
121
|
*/
|
|
122
122
|
export const PgClient = Context.Service<PgClient>("@effect/sql-pg/PgClient")
|