Skip to content

Commit

Permalink
feat: export methods properly
Browse files Browse the repository at this point in the history
  • Loading branch information
adnpark committed Nov 21, 2024
1 parent a87a243 commit d9deffc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions plugins/multi-chain-web-authn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @zerodev/multi-chain-web-auth

## 5.4.1

### Minor Changes

- Export `toMultiChainWebAuthnValidator` properly

## 5.4.0

### Minor Changes
Expand Down
7 changes: 6 additions & 1 deletion plugins/multi-chain-web-authn/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { toMultiChainWebAuthnValidator } from "./toMultiChainWebAuthnValidator.js"
export {
type SignUserOperationsParameters,
type SignUserOperationsRequest,
Expand All @@ -6,5 +7,9 @@ export {
} from "./actions/index.js"

export { webauthnGetMultiUserOpDummySignature } from "./utils/webauthnGetMultiUserOpDummySignature.js"
export { webauthnSignUserOpsWithEnable } from "./utils/webauthnSignUserOpsWithEnable.js"
export {
type MultiChainUserOpConfigForEnable,
webauthnSignUserOpsWithEnable
} from "./utils/webauthnSignUserOpsWithEnable.js"

export * from "./constants.js"
2 changes: 1 addition & 1 deletion plugins/multi-chain-web-authn/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zerodev/multi-chain-web-authn-validator",
"version": "5.4.0",
"version": "5.4.1",
"author": "ZeroDev",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import type {
UserOperation
} from "viem/account-abstraction"

type MultiChainUserOpConfigForEnable<
export type MultiChainUserOpConfigForEnable<
entryPointVersion extends EntryPointVersion
> = {
account: SmartAccount<KernelSmartAccountImplementation>
Expand Down

0 comments on commit d9deffc

Please sign in to comment.