@turtleclub/hooks 0.5.0-beta.30 → 0.5.0-beta.31
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/v2/streams/schemas.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -1406,7 +1406,8 @@ var getStreamWalletsQuerySchema = import_zod10.z.object({
|
|
|
1406
1406
|
var streamWalletDetailsSchema = import_zod10.z.object({
|
|
1407
1407
|
streamId: import_zod10.z.string(),
|
|
1408
1408
|
userAddress: import_zod10.z.string(),
|
|
1409
|
-
snapshots: import_zod10.z.array(streamWalletSnapshotSchema)
|
|
1409
|
+
snapshots: import_zod10.z.array(streamWalletSnapshotSchema),
|
|
1410
|
+
stream: streamSchema
|
|
1410
1411
|
});
|
|
1411
1412
|
var getStreamWalletDetailsResponseSchema = import_zod10.z.object({
|
|
1412
1413
|
wallet: streamWalletDetailsSchema
|