@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/.turbo/turbo-add-version.log +1 -1
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
}>;
|