@gearbox-protocol/sdk 3.0.0-vfour.55 → 3.0.0-vfour.56

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.
@@ -22788,7 +22788,10 @@ var RouterV3Contract = class extends BaseContract {
22788
22788
  const { pathOptions, expected, leftover, connectors } = this.getFindClosePathInput(ca, cm);
22789
22789
  await this.#hooks.triggerHooks("foundPathOptions", {
22790
22790
  creditAccount: ca.creditAccount,
22791
- pathOptions
22791
+ pathOptions,
22792
+ expected,
22793
+ leftover,
22794
+ connectors
22792
22795
  });
22793
22796
  let results = [];
22794
22797
  for (const po of pathOptions) {
@@ -24525,12 +24525,9 @@ type RouterHooks = {
24525
24525
  /**
24526
24526
  * Internal router event
24527
24527
  */
24528
- foundPathOptions: [
24529
- {
24530
- creditAccount: Address;
24531
- pathOptions: PathOptionSerie[];
24532
- }
24533
- ];
24528
+ foundPathOptions: [{
24529
+ creditAccount: Address;
24530
+ } & FindClosePathInput];
24534
24531
  /**
24535
24532
  * Internal router event
24536
24533
  */
@@ -24525,12 +24525,9 @@ type RouterHooks = {
24525
24525
  /**
24526
24526
  * Internal router event
24527
24527
  */
24528
- foundPathOptions: [
24529
- {
24530
- creditAccount: Address;
24531
- pathOptions: PathOptionSerie[];
24532
- }
24533
- ];
24528
+ foundPathOptions: [{
24529
+ creditAccount: Address;
24530
+ } & FindClosePathInput];
24534
24531
  /**
24535
24532
  * Internal router event
24536
24533
  */
@@ -22786,7 +22786,10 @@ var RouterV3Contract = class extends BaseContract {
22786
22786
  const { pathOptions, expected, leftover, connectors } = this.getFindClosePathInput(ca, cm);
22787
22787
  await this.#hooks.triggerHooks("foundPathOptions", {
22788
22788
  creditAccount: ca.creditAccount,
22789
- pathOptions
22789
+ pathOptions,
22790
+ expected,
22791
+ leftover,
22792
+ connectors
22790
22793
  });
22791
22794
  let results = [];
22792
22795
  for (const po of pathOptions) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.55",
3
+ "version": "3.0.0-vfour.56",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.cjs",