@effect/sql-clickhouse 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.
|
@@ -96,7 +96,7 @@ export interface ClickhouseClient extends Client.SqlClient {
|
|
|
96
96
|
*
|
|
97
97
|
* Use to access or provide a ClickHouse SQL client through the Effect context.
|
|
98
98
|
*
|
|
99
|
-
* @category
|
|
99
|
+
* @category services
|
|
100
100
|
* @since 4.0.0
|
|
101
101
|
*/
|
|
102
102
|
export declare const ClickhouseClient: Context.Service<ClickhouseClient, ClickhouseClient>;
|
package/dist/ClickhouseClient.js
CHANGED
|
@@ -106,7 +106,7 @@ export const TypeId = "~@effect/sql-clickhouse/ClickhouseClient";
|
|
|
106
106
|
*
|
|
107
107
|
* Use to access or provide a ClickHouse SQL client through the Effect context.
|
|
108
108
|
*
|
|
109
|
-
* @category
|
|
109
|
+
* @category services
|
|
110
110
|
* @since 4.0.0
|
|
111
111
|
*/
|
|
112
112
|
export const ClickhouseClient = /*#__PURE__*/Context.Service("@effect/sql-clickhouse/ClickhouseClient");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-clickhouse",
|
|
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 Clickhouse toolkit for Effect",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"provenance": true
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@effect/platform-node": "^4.0.0-beta.
|
|
47
|
-
"effect": "^4.0.0-beta.
|
|
46
|
+
"@effect/platform-node": "^4.0.0-beta.74",
|
|
47
|
+
"effect": "^4.0.0-beta.74"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@effect/platform-node": "^4.0.0-beta.
|
|
51
|
-
"effect": "^4.0.0-beta.
|
|
50
|
+
"@effect/platform-node": "^4.0.0-beta.74",
|
|
51
|
+
"effect": "^4.0.0-beta.74"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@clickhouse/client": "^1.18.4"
|
package/src/ClickhouseClient.ts
CHANGED
|
@@ -165,7 +165,7 @@ export interface ClickhouseClient extends Client.SqlClient {
|
|
|
165
165
|
*
|
|
166
166
|
* Use to access or provide a ClickHouse SQL client through the Effect context.
|
|
167
167
|
*
|
|
168
|
-
* @category
|
|
168
|
+
* @category services
|
|
169
169
|
* @since 4.0.0
|
|
170
170
|
*/
|
|
171
171
|
export const ClickhouseClient = Context.Service<ClickhouseClient>("@effect/sql-clickhouse/ClickhouseClient")
|