@turtleclub/hooks 0.5.0-beta.54 → 0.5.0-beta.55

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 CHANGED
@@ -506,7 +506,7 @@ var getSupportedChainsInputSchema = import_zod3.z.object({
506
506
  });
507
507
  var supportedChainsResponseSchema = import_zod3.z.object({
508
508
  chains: import_zod3.z.array(chainSchema),
509
- pagination: paginationMetadataSchema.optional()
509
+ pagination: paginationMetadataSchema.partial().optional()
510
510
  });
511
511
 
512
512
  // src/v2/supported-chains/api.ts
@@ -607,7 +607,7 @@ var tokenSchema = import_zod4.z.object({
607
607
  rawAmount: import_zod4.z.string().optional()
608
608
  });
609
609
  var supportedTokenSchema = tokenSchema.extend({
610
- active: import_zod4.z.boolean()
610
+ active: import_zod4.z.boolean().optional()
611
611
  });
612
612
  var supportedTokensResponseSchema = import_zod4.z.object({
613
613
  tokens: import_zod4.z.array(supportedTokenSchema),