@worldcoin/minikit-js 1.9.11 → 2.0.0-dev.0
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/README.md +104 -0
- package/build/address-book.cjs +81 -0
- package/build/address-book.d.cts +3 -0
- package/build/address-book.d.ts +3 -0
- package/build/address-book.js +54 -0
- package/build/chunk-DIACPBCB.js +1692 -0
- package/build/chunk-LHHKY77D.js +274 -0
- package/build/chunk-OTAA7OOI.js +835 -0
- package/build/command-exports.cjs +1825 -0
- package/build/command-exports.d.cts +102 -0
- package/build/command-exports.d.ts +102 -0
- package/build/command-exports.js +121 -0
- package/build/connector/index.cjs +2388 -0
- package/build/connector/index.d.cts +55 -0
- package/build/connector/index.d.ts +55 -0
- package/build/connector/index.js +86 -0
- package/build/index.cjs +1696 -1512
- package/build/index.d.cts +136 -627
- package/build/index.d.ts +136 -627
- package/build/index.js +5 -196
- package/build/minikit-provider.cjs +1461 -862
- package/build/minikit-provider.d.cts +2 -1
- package/build/minikit-provider.d.ts +2 -1
- package/build/minikit-provider.js +2046 -4
- package/build/provider-DeDUsLbs.d.cts +43 -0
- package/build/provider-DeDUsLbs.d.ts +43 -0
- package/build/siwe-exports.cjs +249 -0
- package/build/siwe-exports.d.cts +10 -0
- package/build/siwe-exports.d.ts +10 -0
- package/build/siwe-exports.js +8 -0
- package/build/types-CGVVuGiN.d.ts +438 -0
- package/build/types-CKn5C-Ro.d.cts +220 -0
- package/build/types-CKn5C-Ro.d.ts +220 -0
- package/build/types-DO2UGrgp.d.cts +438 -0
- package/package.json +81 -18
- package/build/chunk-YDNDO45D.js +0 -1983
- package/index.ts +0 -29
package/index.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export { MiniKit } from './minikit';
|
|
2
|
-
|
|
3
|
-
// Export all command types from the new location
|
|
4
|
-
export * from './commands';
|
|
5
|
-
|
|
6
|
-
// Export shared types that didn't move
|
|
7
|
-
// Note: Error codes are now co-located with commands, only MiniKitInstallErrorCodes is needed here
|
|
8
|
-
export {
|
|
9
|
-
MiniKitInstallErrorCodes,
|
|
10
|
-
MiniKitInstallErrorMessage,
|
|
11
|
-
} from './types/errors';
|
|
12
|
-
export * from './types/init';
|
|
13
|
-
export * from './types/payment';
|
|
14
|
-
export * from './types/transactions';
|
|
15
|
-
|
|
16
|
-
// Re-export wallet-auth types that are used by helpers
|
|
17
|
-
export * from './types/wallet-auth';
|
|
18
|
-
|
|
19
|
-
export { tokenToDecimals } from 'helpers/payment/client';
|
|
20
|
-
|
|
21
|
-
export { VerificationLevel, type ISuccessResult } from '@worldcoin/idkit-core';
|
|
22
|
-
export {
|
|
23
|
-
verifyCloudProof,
|
|
24
|
-
type IVerifyResponse,
|
|
25
|
-
} from '@worldcoin/idkit-core/backend';
|
|
26
|
-
|
|
27
|
-
export { parseSiweMessage, verifySiweMessage } from 'helpers/siwe/siwe';
|
|
28
|
-
|
|
29
|
-
export { getIsUserVerified } from 'helpers/address-book';
|