@xata.io/drizzle 0.0.0-next.v9a81c4765c87e96d23c4e8ae0cbee78e78451dd5 → 0.0.0-next.va0c40fac05828c586d853d558cf07d608a16eb30
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +11 -4
- package/dist/index.d.ts +1 -1
- package/dist/pg.d.ts +1 -1
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
|
2
|
-
> @xata.io/drizzle@0.0.
|
2
|
+
> @xata.io/drizzle@0.0.22 build /home/runner/work/client-ts/client-ts/packages/plugin-client-drizzle
|
3
3
|
> rimraf dist && rollup -c
|
4
4
|
|
5
5
|
[36m
|
6
6
|
[1msrc/index.ts[22m → [1mdist/index.cjs, dist/index.mjs[22m...[39m
|
7
7
|
[1m[33m(!) Unresolved dependencies[39m[22m
|
8
8
|
[90mhttps://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency[39m
|
9
|
-
[1mdrizzle-orm[22m (imported by "src/http/
|
10
|
-
[1mdrizzle-orm/pg-core[22m (imported by "src/http/
|
11
|
-
[32mcreated [1mdist/index.cjs, dist/index.mjs[22m in [
|
9
|
+
[1mdrizzle-orm[22m (imported by "src/http/driver.ts", "src/http/session.ts" and "src/shared/utils.ts")
|
10
|
+
[1mdrizzle-orm/pg-core[22m (imported by "src/http/driver.ts" and "src/http/session.ts")
|
11
|
+
[32mcreated [1mdist/index.cjs, dist/index.mjs[22m in [1m280ms[22m[39m
|
12
12
|
[36m
|
13
13
|
[1msrc/index.ts[22m → [1mdist/index.d.ts[22m...[39m
|
14
14
|
[32mcreated [1mdist/index.d.ts[22m in [1m5.7s[22m[39m
|
@@ -19,7 +19,7 @@
|
|
19
19
|
[1mdrizzle-orm[22m (imported by "src/pg/driver.ts", "src/pg/session.ts" and "src/shared/utils.ts")
|
20
20
|
[1mdrizzle-orm/pg-core[22m (imported by "src/pg/driver.ts" and "src/pg/session.ts")
|
21
21
|
[1mpg[22m (imported by "src/pg/session.ts")
|
22
|
-
[32mcreated [1mdist/pg.cjs, dist/pg.mjs[22m in [
|
22
|
+
[32mcreated [1mdist/pg.cjs, dist/pg.mjs[22m in [1m35ms[22m[39m
|
23
23
|
[36m
|
24
24
|
[1msrc/pg/index.ts[22m → [1mdist/pg.d.ts[22m...[39m
|
25
|
-
[32mcreated [1mdist/pg.d.ts[22m in [1m1.
|
25
|
+
[32mcreated [1mdist/pg.d.ts[22m in [1m1.5s[22m[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,15 +1,22 @@
|
|
1
1
|
# @xata.io/drizzle
|
2
2
|
|
3
|
-
## 0.0.0-next.
|
3
|
+
## 0.0.0-next.va0c40fac05828c586d853d558cf07d608a16eb30
|
4
4
|
|
5
5
|
### Major Changes
|
6
6
|
|
7
|
-
- [`
|
7
|
+
- [`c45c431`](https://github.com/xataio/client-ts/commit/c45c43157e13a2107ad6b0cf25168edeb8a27ebf) Thanks [@SferaDev](https://github.com/SferaDev)! - Version 1.0
|
8
8
|
|
9
9
|
### Patch Changes
|
10
10
|
|
11
|
-
- Updated dependencies [[`
|
12
|
-
- @xata.io/client@0.0.0-next.
|
11
|
+
- Updated dependencies [[`cc673c9`](https://github.com/xataio/client-ts/commit/cc673c9a7885351082020e360630eab5db78c652), [`c45c431`](https://github.com/xataio/client-ts/commit/c45c43157e13a2107ad6b0cf25168edeb8a27ebf)]:
|
12
|
+
- @xata.io/client@0.0.0-next.va0c40fac05828c586d853d558cf07d608a16eb30
|
13
|
+
|
14
|
+
## 0.0.22
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- Updated dependencies [[`6b754d2`](https://github.com/xataio/client-ts/commit/6b754d2f6a1f7b9378a96fe27502ff6c29ff5ed8)]:
|
19
|
+
- @xata.io/client@0.29.5
|
13
20
|
|
14
21
|
## 0.0.21
|
15
22
|
|
package/dist/index.d.ts
CHANGED
@@ -17,7 +17,7 @@ declare class XataHttpPreparedQuery<T extends PreparedQueryConfig> extends PgPre
|
|
17
17
|
private _isResponseInArrayMode;
|
18
18
|
private customResultMapper?;
|
19
19
|
static readonly [entityKind]: string;
|
20
|
-
constructor(client: XataHttpClient, query: Query, logger: Logger, fields: SelectedFieldsOrdered<PgColumn> | undefined, _isResponseInArrayMode: boolean, customResultMapper?: ((rows: unknown[][]) => T[
|
20
|
+
constructor(client: XataHttpClient, query: Query, logger: Logger, fields: SelectedFieldsOrdered<PgColumn> | undefined, _isResponseInArrayMode: boolean, customResultMapper?: ((rows: unknown[][]) => T["execute"]) | undefined);
|
21
21
|
execute(placeholderValues?: Record<string, unknown> | undefined): Promise<T['execute']>;
|
22
22
|
all(placeholderValues?: Record<string, unknown> | undefined): Promise<T['all']>;
|
23
23
|
values(placeholderValues?: Record<string, unknown> | undefined): Promise<T['values']>;
|
package/dist/pg.d.ts
CHANGED
@@ -13,7 +13,7 @@ declare class XataPreparedQuery<T extends PreparedQueryConfig> extends PgPrepare
|
|
13
13
|
static readonly [entityKind]: string;
|
14
14
|
private rawQueryConfig;
|
15
15
|
private queryConfig;
|
16
|
-
constructor(client: XataClient, queryString: string, params: unknown[], logger: Logger, fields: SelectedFieldsOrdered<PgColumn> | undefined, name: string | undefined, _isResponseInArrayMode: boolean, customResultMapper?: ((rows: unknown[][]) => T[
|
16
|
+
constructor(client: XataClient, queryString: string, params: unknown[], logger: Logger, fields: SelectedFieldsOrdered<PgColumn> | undefined, name: string | undefined, _isResponseInArrayMode: boolean, customResultMapper?: ((rows: unknown[][]) => T["execute"]) | undefined);
|
17
17
|
execute(placeholderValues?: Record<string, unknown> | undefined): Promise<T['execute']>;
|
18
18
|
all(placeholderValues?: Record<string, unknown> | undefined): Promise<T['all']>;
|
19
19
|
values(placeholderValues?: Record<string, unknown> | undefined): Promise<T['values']>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@xata.io/drizzle",
|
3
|
-
"version": "0.0.0-next.
|
3
|
+
"version": "0.0.0-next.va0c40fac05828c586d853d558cf07d608a16eb30",
|
4
4
|
"description": "",
|
5
5
|
"main": "./dist/index.cjs",
|
6
6
|
"module": "./dist/index.mjs",
|
@@ -23,12 +23,12 @@
|
|
23
23
|
"url": "https://github.com/xataio/client-ts/issues"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
|
-
"@xata.io/client": "0.0.0-next.
|
26
|
+
"@xata.io/client": "0.0.0-next.va0c40fac05828c586d853d558cf07d608a16eb30"
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
29
|
"@types/pg": "^8.11.6",
|
30
|
-
"drizzle-orm": "^0.
|
31
|
-
"pg": "^8.
|
30
|
+
"drizzle-orm": "^0.31.2",
|
31
|
+
"pg": "^8.12.0"
|
32
32
|
},
|
33
33
|
"peerDependencies": {
|
34
34
|
"drizzle-orm": "*"
|