@p2pdotme/sdk 1.1.9 → 1.2.1

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/prices.mjs CHANGED
@@ -508,6 +508,13 @@ var p2pStakeBoostFacetAbi = [
508
508
  stateMutability: "nonpayable",
509
509
  type: "function"
510
510
  },
511
+ {
512
+ inputs: [],
513
+ name: "p2pBoostCancelUnstake",
514
+ outputs: [],
515
+ stateMutability: "nonpayable",
516
+ type: "function"
517
+ },
511
518
  {
512
519
  inputs: [{ internalType: "address", name: "user", type: "address" }],
513
520
  name: "getUserStake",
@@ -1270,7 +1277,8 @@ function validate(schema, data, toError) {
1270
1277
  // src/orders/internal/routing/validation.ts
1271
1278
  import { z as z2 } from "zod";
1272
1279
  var ZodCircleScoreStateSchema = z2.object({
1273
- activeMerchantsCount: z2.coerce.number()
1280
+ activeMerchantsCount: z2.coerce.number(),
1281
+ availableMerchantsCount: z2.coerce.number()
1274
1282
  });
1275
1283
  var ZodCircleMetricsForRoutingSchema = z2.object({
1276
1284
  circleScore: z2.coerce.number(),