@turtleclub/hooks 0.5.0-beta.91 → 0.5.0-beta.92
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 +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/v2/streams/schemas.ts +1 -2
package/dist/index.cjs
CHANGED
|
@@ -896,7 +896,7 @@ var import_query_key_factory3 = require("@lukemorales/query-key-factory");
|
|
|
896
896
|
var import_zod8 = require("zod");
|
|
897
897
|
var customArgsRequiredFieldsSchema = import_zod8.z.object({
|
|
898
898
|
targetTokenId: import_zod8.z.string().uuid(),
|
|
899
|
-
targetToken: supportedTokenSchema
|
|
899
|
+
targetToken: supportedTokenSchema.optional()
|
|
900
900
|
});
|
|
901
901
|
var customArgsTokensPerUsdSchema = customArgsRequiredFieldsSchema.extend({
|
|
902
902
|
tokensPerUSD: import_zod8.z.string()
|
|
@@ -1023,7 +1023,6 @@ var streamSchema = import_zod8.z.object({
|
|
|
1023
1023
|
snapshots: import_zod8.z.array(snapshotSchema).optional(),
|
|
1024
1024
|
startTimestamp: import_zod8.z.string().datetime(),
|
|
1025
1025
|
strategy: import_zod8.z.string(),
|
|
1026
|
-
targetTokenId: import_zod8.z.string().uuid(),
|
|
1027
1026
|
totalAmount: import_zod8.z.string().nullable(),
|
|
1028
1027
|
type: import_zod8.z.number(),
|
|
1029
1028
|
updatedAt: import_zod8.z.string().datetime(),
|