@uniswap/client-trading 0.6.0 → 0.6.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.
@@ -476,7 +476,14 @@ export declare enum PlanStepType {
476
476
  *
477
477
  * @generated from enum value: PLAN_STEP_TYPE_MARGIN_EXECUTE = 16;
478
478
  */
479
- MARGIN_EXECUTE = 16
479
+ MARGIN_EXECUTE = 16,
480
+ /**
481
+ * Fused Swap→Bridge: one Universal Router transaction that swaps on the
482
+ * source chain and deposits the output into the Across SpokePool.
483
+ *
484
+ * @generated from enum value: PLAN_STEP_TYPE_SWAP_BRIDGE = 17;
485
+ */
486
+ SWAP_BRIDGE = 17
480
487
  }
481
488
  /**
482
489
  * Set when the output is a fee taken from the swap; unset for the swapper's
@@ -622,6 +622,13 @@ export var PlanStepType;
622
622
  * @generated from enum value: PLAN_STEP_TYPE_MARGIN_EXECUTE = 16;
623
623
  */
624
624
  PlanStepType[PlanStepType["MARGIN_EXECUTE"] = 16] = "MARGIN_EXECUTE";
625
+ /**
626
+ * Fused Swap→Bridge: one Universal Router transaction that swaps on the
627
+ * source chain and deposits the output into the Across SpokePool.
628
+ *
629
+ * @generated from enum value: PLAN_STEP_TYPE_SWAP_BRIDGE = 17;
630
+ */
631
+ PlanStepType[PlanStepType["SWAP_BRIDGE"] = 17] = "SWAP_BRIDGE";
625
632
  })(PlanStepType || (PlanStepType = {}));
626
633
  // Retrieve enum metadata with: proto3.getEnumType(PlanStepType)
627
634
  proto3.util.setEnumType(PlanStepType, "trading.v1.PlanStepType", [
@@ -642,6 +649,7 @@ proto3.util.setEnumType(PlanStepType, "trading.v1.PlanStepType", [
642
649
  { no: 14, name: "PLAN_STEP_TYPE_VAULT_DEPOSIT" },
643
650
  { no: 15, name: "PLAN_STEP_TYPE_VAULT_WITHDRAW" },
644
651
  { no: 16, name: "PLAN_STEP_TYPE_MARGIN_EXECUTE" },
652
+ { no: 17, name: "PLAN_STEP_TYPE_SWAP_BRIDGE" },
645
653
  ]);
646
654
  /**
647
655
  * Set when the output is a fee taken from the swap; unset for the swapper's
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-trading",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },