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.cjs CHANGED
@@ -809,9 +809,14 @@ var getWallets2 = () => {
809
809
  options
810
810
  );
811
811
  };
812
- const walletControllerStartPasskeyAuthentication2 = (id, options) => {
812
+ const walletControllerStartPasskeyAuthentication2 = (id, startPasskeyAuthenticationDto, options) => {
813
813
  return customInstance(
814
- { url: `/wallets/${id}/signers/passkey/authenticate`, method: "POST" },
814
+ {
815
+ url: `/wallets/${id}/signers/passkey/authenticate`,
816
+ method: "POST",
817
+ headers: { "Content-Type": "application/json" },
818
+ data: startPasskeyAuthenticationDto
819
+ },
815
820
  options
816
821
  );
817
822
  };