@settlemint/sdk-hasura 2.5.1-prca5edae9 → 2.5.1-pre6103334
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/hasura.d.cts +1 -1
- package/dist/hasura.d.ts +1 -1
- package/dist/postgres.d.cts +2 -2
- package/dist/postgres.d.ts +2 -2
- package/package.json +3 -3
package/dist/hasura.d.cts
CHANGED
|
@@ -151,5 +151,5 @@ declare function createHasuraMetadataClient(options: ClientOptions, logger?: Log
|
|
|
151
151
|
data: T;
|
|
152
152
|
}>;
|
|
153
153
|
//#endregion
|
|
154
|
-
export { ClientOptions, ClientOptionsSchema, FragmentOf, RequestConfig, ResultOf, VariablesOf, createHasuraClient, createHasuraMetadataClient, readFragment, trackAllTables };
|
|
154
|
+
export { ClientOptions, ClientOptionsSchema, type FragmentOf, RequestConfig, type ResultOf, type VariablesOf, createHasuraClient, createHasuraMetadataClient, readFragment, trackAllTables };
|
|
155
155
|
//# sourceMappingURL=hasura.d.cts.map
|
package/dist/hasura.d.ts
CHANGED
|
@@ -151,5 +151,5 @@ declare function createHasuraMetadataClient(options: ClientOptions, logger?: Log
|
|
|
151
151
|
data: T;
|
|
152
152
|
}>;
|
|
153
153
|
//#endregion
|
|
154
|
-
export { ClientOptions, ClientOptionsSchema, FragmentOf, RequestConfig, ResultOf, VariablesOf, createHasuraClient, createHasuraMetadataClient, readFragment, trackAllTables };
|
|
154
|
+
export { ClientOptions, ClientOptionsSchema, type FragmentOf, RequestConfig, type ResultOf, type VariablesOf, createHasuraClient, createHasuraMetadataClient, readFragment, trackAllTables };
|
|
155
155
|
//# sourceMappingURL=hasura.d.ts.map
|
package/dist/postgres.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* SettleMint Postgres SDK - Database Utils */
|
|
2
|
-
import * as
|
|
2
|
+
import * as pg0 from "pg";
|
|
3
3
|
|
|
4
4
|
//#region src/postgres.d.ts
|
|
5
5
|
/**
|
|
@@ -31,7 +31,7 @@ declare module "pg" {
|
|
|
31
31
|
* client.release();
|
|
32
32
|
* }
|
|
33
33
|
*/
|
|
34
|
-
declare function createPostgresPool(databaseUrl: string):
|
|
34
|
+
declare function createPostgresPool(databaseUrl: string): pg0.Pool;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { createPostgresPool };
|
|
37
37
|
//# sourceMappingURL=postgres.d.cts.map
|
package/dist/postgres.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* SettleMint Postgres SDK - Database Utils */
|
|
2
|
-
import * as
|
|
2
|
+
import * as pg0 from "pg";
|
|
3
3
|
|
|
4
4
|
//#region src/postgres.d.ts
|
|
5
5
|
/**
|
|
@@ -31,7 +31,7 @@ declare module "pg" {
|
|
|
31
31
|
* client.release();
|
|
32
32
|
* }
|
|
33
33
|
*/
|
|
34
|
-
declare function createPostgresPool(databaseUrl: string):
|
|
34
|
+
declare function createPostgresPool(databaseUrl: string): pg0.Pool;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { createPostgresPool };
|
|
37
37
|
//# sourceMappingURL=postgres.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/sdk-hasura",
|
|
3
3
|
"description": "Hasura and PostgreSQL integration module for SettleMint SDK, enabling database operations and GraphQL queries",
|
|
4
|
-
"version": "2.5.1-
|
|
4
|
+
"version": "2.5.1-pre6103334",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"license": "FSL-1.1-MIT",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"gql.tada": "^1",
|
|
69
|
-
"@settlemint/sdk-utils": "2.5.1-
|
|
69
|
+
"@settlemint/sdk-utils": "2.5.1-pre6103334",
|
|
70
70
|
"graphql-request": "^7",
|
|
71
|
-
"zod": "^
|
|
71
|
+
"zod": "^4.0.0",
|
|
72
72
|
"drizzle-orm": "^0.44.0",
|
|
73
73
|
"pg": "^8",
|
|
74
74
|
"drizzle-kit": "^0.31.0"
|