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/index.mjs CHANGED
@@ -734,9 +734,14 @@ var getWallets2 = () => {
734
734
  options
735
735
  );
736
736
  };
737
- const walletControllerStartPasskeyAuthentication2 = (id, options) => {
737
+ const walletControllerStartPasskeyAuthentication2 = (id, startPasskeyAuthenticationDto, options) => {
738
738
  return customInstance(
739
- { url: `/wallets/${id}/signers/passkey/authenticate`, method: "POST" },
739
+ {
740
+ url: `/wallets/${id}/signers/passkey/authenticate`,
741
+ method: "POST",
742
+ headers: { "Content-Type": "application/json" },
743
+ data: startPasskeyAuthenticationDto
744
+ },
740
745
  options
741
746
  );
742
747
  };