@safe-global/sdk-starter-kit 2.0.0-alpha.1 → 2.0.0-alpha.3

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.
@@ -761,7 +761,7 @@ var SafeOperationClient = class {
761
761
  */
762
762
  async getPendingSafeOperations(options) {
763
763
  const safeAddress = await this.protocolKit.getAddress();
764
- return this.apiKit.getPendingSafeOperations({ safeAddress, ...options });
764
+ return this.apiKit.getPendingSafeOperations(safeAddress, options);
765
765
  }
766
766
  /**
767
767
  * Helper method to wait for the operation to finish
@@ -723,7 +723,7 @@ var SafeOperationClient = class {
723
723
  */
724
724
  async getPendingSafeOperations(options) {
725
725
  const safeAddress = await this.protocolKit.getAddress();
726
- return this.apiKit.getPendingSafeOperations({ safeAddress, ...options });
726
+ return this.apiKit.getPendingSafeOperations(safeAddress, options);
727
727
  }
728
728
  /**
729
729
  * Helper method to wait for the operation to finish
@@ -1 +1 @@
1
- {"version":3,"file":"SafeMessageClient.d.ts","sourceRoot":"","sources":["../../../../src/extensions/messages/SafeMessageClient.ts"],"names":[],"mappings":"AAAA,OAAO,IAAyB,MAAM,2BAA2B,CAAA;AACjE,OAAO,UAAU,EAAE,EAEjB,WAAW,EACX,uBAAuB,EACxB,MAAM,sBAAsB,CAAA;AAI7B,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,wBAAwB,EACzB,MAAM,oCAAoC,CAAA;AAE3C;;;GAGG;AACH,qBAAa,iBAAiB;;IAC5B,WAAW,EAAE,IAAI,CAAA;IACjB,MAAM,EAAE,UAAU,CAAA;IAElB;;;;OAIG;gBACS,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU;IAKjD;;;;;;OAMG;IACG,WAAW,CAAC,EAAE,OAAO,EAAE,EAAE,wBAAwB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAWnF;;;;;;OAMG;IACG,cAAc,CAAC,EAAE,WAAW,EAAE,EAAE,2BAA2B,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAqB7F;;;;;OAKG;IACG,kBAAkB,CAAC,OAAO,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,uBAAuB,CAAC;CAiGlF"}
1
+ {"version":3,"file":"SafeMessageClient.d.ts","sourceRoot":"","sources":["../../../../src/extensions/messages/SafeMessageClient.ts"],"names":[],"mappings":"AAAA,OAAO,IAAyB,MAAM,2BAA2B,CAAA;AACjE,OAAO,UAAU,EAAE,EAAE,WAAW,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAA;AAIvF,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,wBAAwB,EACzB,MAAM,oCAAoC,CAAA;AAE3C;;;GAGG;AACH,qBAAa,iBAAiB;;IAC5B,WAAW,EAAE,IAAI,CAAA;IACjB,MAAM,EAAE,UAAU,CAAA;IAElB;;;;OAIG;gBACS,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU;IAKjD;;;;;;OAMG;IACG,WAAW,CAAC,EAAE,OAAO,EAAE,EAAE,wBAAwB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAWnF;;;;;;OAMG;IACG,cAAc,CAAC,EAAE,WAAW,EAAE,EAAE,2BAA2B,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAqB7F;;;;;OAKG;IACG,kBAAkB,CAAC,OAAO,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,uBAAuB,CAAC;CAiGlF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@safe-global/sdk-starter-kit",
3
- "version": "2.0.0-alpha.1",
3
+ "version": "2.0.0-alpha.3",
4
4
  "description": "SDK that provides the basic tools to interact with the Safe Smart Account.",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "main": "dist/cjs/index.cjs",
@@ -45,10 +45,10 @@
45
45
  "access": "public"
46
46
  },
47
47
  "dependencies": {
48
- "@safe-global/api-kit": "^3.0.0-alpha.1",
49
- "@safe-global/protocol-kit": "^6.0.0-alpha.1",
50
- "@safe-global/relay-kit": "^4.0.0-alpha.1",
51
- "@safe-global/types-kit": "^2.0.0-alpha.1",
48
+ "@safe-global/api-kit": "^3.0.0-alpha.3",
49
+ "@safe-global/protocol-kit": "^6.0.0-alpha.3",
50
+ "@safe-global/relay-kit": "^4.0.0-alpha.3",
51
+ "@safe-global/types-kit": "^2.0.0-alpha.3",
52
52
  "viem": "^2.21.8"
53
53
  }
54
54
  }