@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.cjs CHANGED
@@ -535,6 +535,13 @@ var p2pStakeBoostFacetAbi = [
535
535
  stateMutability: "nonpayable",
536
536
  type: "function"
537
537
  },
538
+ {
539
+ inputs: [],
540
+ name: "p2pBoostCancelUnstake",
541
+ outputs: [],
542
+ stateMutability: "nonpayable",
543
+ type: "function"
544
+ },
538
545
  {
539
546
  inputs: [{ internalType: "address", name: "user", type: "address" }],
540
547
  name: "getUserStake",
@@ -1297,7 +1304,8 @@ function validate(schema, data, toError) {
1297
1304
  // src/orders/internal/routing/validation.ts
1298
1305
  var import_zod2 = require("zod");
1299
1306
  var ZodCircleScoreStateSchema = import_zod2.z.object({
1300
- activeMerchantsCount: import_zod2.z.coerce.number()
1307
+ activeMerchantsCount: import_zod2.z.coerce.number(),
1308
+ availableMerchantsCount: import_zod2.z.coerce.number()
1301
1309
  });
1302
1310
  var ZodCircleMetricsForRoutingSchema = import_zod2.z.object({
1303
1311
  circleScore: import_zod2.z.coerce.number(),