@xata.io/drizzle 0.0.0-alpha.v9ec90c19a0c4e7f1f3dc0caefd0f4e8adcee82c4 → 0.0.0-alpha.v9ecf51b0c77993bdc3226dc142838911fc03a128

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.
@@ -1,17 +1,17 @@
1
1
 
2
- > @xata.io/drizzle@0.0.21 build /home/runner/work/client-ts/client-ts/packages/plugin-client-drizzle
2
+ > @xata.io/drizzle@0.0.23 build /home/runner/work/client-ts/client-ts/packages/plugin-client-drizzle
3
3
  > rimraf dist && rollup -c
4
4
 
5
5
  
6
6
  src/index.ts → dist/index.cjs, dist/index.mjs...
7
7
  (!) Unresolved dependencies
8
8
  https://rollupjs.org/troubleshooting/#warning-treating-module-as-external-dependency
9
- drizzle-orm (imported by "src/http/driver.ts", "src/http/session.ts" and "src/shared/utils.ts")
10
- drizzle-orm/pg-core (imported by "src/http/driver.ts" and "src/http/session.ts")
11
- created dist/index.cjs, dist/index.mjs in 239ms
9
+ drizzle-orm (imported by "src/http/session.ts", "src/http/driver.ts" and "src/shared/utils.ts")
10
+ drizzle-orm/pg-core (imported by "src/http/session.ts" and "src/http/driver.ts")
11
+ created dist/index.cjs, dist/index.mjs in 410ms
12
12
  
13
13
  src/index.ts → dist/index.d.ts...
14
- created dist/index.d.ts in 5.9s
14
+ created dist/index.d.ts in 6.9s
15
15
  
16
16
  src/pg/index.ts → dist/pg.cjs, dist/pg.mjs...
17
17
  (!) Unresolved dependencies
@@ -19,7 +19,7 @@
19
19
  drizzle-orm (imported by "src/pg/driver.ts", "src/pg/session.ts" and "src/shared/utils.ts")
20
20
  drizzle-orm/pg-core (imported by "src/pg/driver.ts" and "src/pg/session.ts")
21
21
  pg (imported by "src/pg/session.ts")
22
- created dist/pg.cjs, dist/pg.mjs in 66ms
22
+ created dist/pg.cjs, dist/pg.mjs in 37ms
23
23
  
24
24
  src/pg/index.ts → dist/pg.d.ts...
25
- created dist/pg.d.ts in 1.5s
25
+ created dist/pg.d.ts in 1.4s
package/CHANGELOG.md CHANGED
@@ -1,17 +1,27 @@
1
1
  # @xata.io/drizzle
2
2
 
3
- ## 0.0.0-alpha.v9ec90c19a0c4e7f1f3dc0caefd0f4e8adcee82c4
3
+ ## 0.0.0-alpha.v9ecf51b0c77993bdc3226dc142838911fc03a128
4
4
 
5
- ### Major Changes
5
+ ### Patch Changes
6
+
7
+ - Force canary build
8
+
9
+ - Updated dependencies []:
10
+ - @xata.io/client@0.0.0-alpha.v9ecf51b0c77993bdc3226dc142838911fc03a128
6
11
 
7
- - [#1477](https://github.com/xataio/client-ts/pull/1477) [`f4a2fe4`](https://github.com/xataio/client-ts/commit/f4a2fe48fe8b28edec8eef3572e06a070ddc7bf8) Thanks [@SferaDev](https://github.com/SferaDev)! - Version 1.0
12
+ ## 0.0.23
8
13
 
9
14
  ### Patch Changes
10
15
 
11
- - Force canary build
16
+ - Updated dependencies [[`cc673c9`](https://github.com/xataio/client-ts/commit/cc673c9a7885351082020e360630eab5db78c652)]:
17
+ - @xata.io/client@0.30.0
18
+
19
+ ## 0.0.22
20
+
21
+ ### Patch Changes
12
22
 
13
- - Updated dependencies [[`aaa817f`](https://github.com/xataio/client-ts/commit/aaa817fe8098e2756eba3ea1dda2523c890be46c), [`f4a2fe4`](https://github.com/xataio/client-ts/commit/f4a2fe48fe8b28edec8eef3572e06a070ddc7bf8)]:
14
- - @xata.io/client@0.0.0-alpha.v9ec90c19a0c4e7f1f3dc0caefd0f4e8adcee82c4
23
+ - Updated dependencies [[`6b754d2`](https://github.com/xataio/client-ts/commit/6b754d2f6a1f7b9378a96fe27502ff6c29ff5ed8)]:
24
+ - @xata.io/client@0.29.5
15
25
 
16
26
  ## 0.0.21
17
27
 
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['execute']) | undefined);
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['execute']) | undefined);
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-alpha.v9ec90c19a0c4e7f1f3dc0caefd0f4e8adcee82c4",
3
+ "version": "0.0.0-alpha.v9ecf51b0c77993bdc3226dc142838911fc03a128",
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-alpha.v9ec90c19a0c4e7f1f3dc0caefd0f4e8adcee82c4"
26
+ "@xata.io/client": "0.0.0-alpha.v9ecf51b0c77993bdc3226dc142838911fc03a128"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/pg": "^8.11.6",
30
- "drizzle-orm": "^0.30.10",
31
- "pg": "^8.11.5"
30
+ "drizzle-orm": "^0.31.2",
31
+ "pg": "^8.12.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "drizzle-orm": "*"