cilantro-sdk 0.0.20 → 0.0.21

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/helpers.mjs CHANGED
@@ -873,9 +873,14 @@ var getWallets = () => {
873
873
  options
874
874
  );
875
875
  };
876
- const walletControllerStartPasskeyAuthentication2 = (id, options) => {
876
+ const walletControllerStartPasskeyAuthentication2 = (id, startPasskeyAuthenticationDto, options) => {
877
877
  return customInstance(
878
- { url: `/wallets/${id}/signers/passkey/authenticate`, method: "POST" },
878
+ {
879
+ url: `/wallets/${id}/signers/passkey/authenticate`,
880
+ method: "POST",
881
+ headers: { "Content-Type": "application/json" },
882
+ data: startPasskeyAuthenticationDto
883
+ },
879
884
  options
880
885
  );
881
886
  };