@danielhritcu/zenstack-orm 3.5.11 → 3.5.12
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.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2442,7 +2442,7 @@ type ClientContract<Schema extends SchemaDef, Options extends ClientOptions<Sche
|
|
|
2442
2442
|
* });
|
|
2443
2443
|
* ```
|
|
2444
2444
|
*/
|
|
2445
|
-
$batch<T extends Record<string,
|
|
2445
|
+
$batch<T extends Record<string, PromiseLike<any>>>(requests: T): ZenStackPromise<Schema, {
|
|
2446
2446
|
[K in keyof T]: Awaited<T[K]>;
|
|
2447
2447
|
}>;
|
|
2448
2448
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2442,7 +2442,7 @@ type ClientContract<Schema extends SchemaDef, Options extends ClientOptions<Sche
|
|
|
2442
2442
|
* });
|
|
2443
2443
|
* ```
|
|
2444
2444
|
*/
|
|
2445
|
-
$batch<T extends Record<string,
|
|
2445
|
+
$batch<T extends Record<string, PromiseLike<any>>>(requests: T): ZenStackPromise<Schema, {
|
|
2446
2446
|
[K in keyof T]: Awaited<T[K]>;
|
|
2447
2447
|
}>;
|
|
2448
2448
|
/**
|