@xata.io/client 0.24.1 → 0.24.2

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/index.d.ts CHANGED
@@ -6810,7 +6810,7 @@ type Narrowable = string | number | bigint | boolean;
6810
6810
  type Try<A1, A2, Catch = never> = A1 extends A2 ? A1 : Catch;
6811
6811
  type Narrow<A> = Try<A, [], NarrowRaw<A>>;
6812
6812
 
6813
- type SelectableColumn<O, RecursivePath extends any[] = []> = '*' | 'id' | DataProps<O> | NestedColumns<O, RecursivePath>;
6813
+ type SelectableColumn<O, RecursivePath extends any[] = []> = '*' | 'id' | `xata.${'version' | 'createdAt' | 'updatedAt'}` | DataProps<O> | NestedColumns<O, RecursivePath>;
6814
6814
  type WildcardColumns<O> = Values<{
6815
6815
  [K in SelectableColumn<O>]: K extends `${string}*` ? K : never;
6816
6816
  }>;
package/dist/index.mjs CHANGED
@@ -490,7 +490,7 @@ function defaultOnOpen(response) {
490
490
  }
491
491
  }
492
492
 
493
- const VERSION = "0.24.1";
493
+ const VERSION = "0.24.2";
494
494
 
495
495
  class ErrorWithCause extends Error {
496
496
  constructor(message, options) {