@organigram/passkey-wallet 0.1.6

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.
Files changed (79) hide show
  1. package/.organigram-docs-cache/passkey-wallet/api-extractor.json +35 -0
  2. package/.organigram-docs-cache/passkey-wallet/api-model/passkey-wallet.api.json +3166 -0
  3. package/.organigram-docs-cache/passkey-wallet/entry/index.d.ts +9 -0
  4. package/.organigram-docs-cache/passkey-wallet/tmp/node-compile-cache/v24.12.0-arm64-cf738c9d-501/05732508 +0 -0
  5. package/.organigram-docs-cache/passkey-wallet/tmp/node-compile-cache/v24.12.0-arm64-cf738c9d-501/166b6dbf +0 -0
  6. package/.organigram-docs-cache/passkey-wallet/tmp/node-compile-cache/v24.12.0-arm64-cf738c9d-501/41c20e23 +0 -0
  7. package/.organigram-docs-cache/passkey-wallet/tmp/node-compile-cache/v24.12.0-arm64-cf738c9d-501/7111ea58 +0 -0
  8. package/.organigram-docs-cache/passkey-wallet/tmp/tsx-501/17844-1822dfbab9819e9f6a93485fe3da5dbf3745311c +1 -0
  9. package/.organigram-docs-cache/passkey-wallet/tmp/tsx-501/17844-45a65cfdc7a50c53817c1dad3954ae3d2d2c35fb +1 -0
  10. package/.organigram-docs-cache/passkey-wallet/tmp/tsx-501/17844-fee5290b05398fe9e3b878deefd22383744f1526 +1 -0
  11. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/createorganigrampasskeywalletinput.yml +17 -0
  12. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/identitypasskeycapabilities.yml +16 -0
  13. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeycapabilities.yml +18 -0
  14. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeyprovider.yml +16 -0
  15. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeyprovideractions.yml +20 -0
  16. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyprfunavailableerror.yml +28 -0
  17. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyproviderevent.yml +11 -0
  18. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyproviderlistener.yml +11 -0
  19. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyregistrationresult.yml +15 -0
  20. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultdecrypterror.yml +28 -0
  21. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultenvelopedata.yml +18 -0
  22. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultenvelopeinput.yml +19 -0
  23. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletapiclient.yml +33 -0
  24. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletcapabilities.yml +11 -0
  25. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletlogincapabilities.yml +14 -0
  26. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletregistrationcapabilities.yml +18 -0
  27. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletvaultpayload.yml +18 -0
  28. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/unlockedpasskeywallet.yml +21 -0
  29. package/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet.yml +870 -0
  30. package/.organigram-docs-cache/passkey-wallet/yaml/toc.yml +43 -0
  31. package/.turbo/turbo-build.log +6 -0
  32. package/.turbo/turbo-docs$colon$generate.log +118 -0
  33. package/.turbo/turbo-lint.log +13 -0
  34. package/.turbo/turbo-test.log +152 -0
  35. package/.turbo/turbo-typecheck.log +5 -0
  36. package/CHANGELOG.md +8 -0
  37. package/LICENSE.md +21 -0
  38. package/README.md +427 -0
  39. package/__mocks__/organigram-js.ts +19 -0
  40. package/__mocks__/wagmi.ts +1 -0
  41. package/dist/crypto.d.ts +39 -0
  42. package/dist/crypto.js +95 -0
  43. package/dist/eip1193.d.ts +24 -0
  44. package/dist/eip1193.js +103 -0
  45. package/dist/errors.d.ts +7 -0
  46. package/dist/errors.js +13 -0
  47. package/dist/index.d.ts +4 -0
  48. package/dist/index.js +4 -0
  49. package/dist/rainbowkit.d.ts +14 -0
  50. package/dist/rainbowkit.js +128 -0
  51. package/dist/types.d.ts +45 -0
  52. package/dist/types.js +17 -0
  53. package/dist/vault.d.ts +10 -0
  54. package/dist/vault.js +41 -0
  55. package/dist/wallet.d.ts +15 -0
  56. package/dist/wallet.js +30 -0
  57. package/dist/webauthn-client.d.ts +73 -0
  58. package/dist/webauthn-client.js +234 -0
  59. package/dist/webauthn-server.d.ts +62 -0
  60. package/dist/webauthn-server.js +133 -0
  61. package/jest.config.ts +32 -0
  62. package/package.json +61 -0
  63. package/src/crypto.test.ts +69 -0
  64. package/src/crypto.ts +193 -0
  65. package/src/eip1193.ts +169 -0
  66. package/src/errors.ts +16 -0
  67. package/src/index.ts +4 -0
  68. package/src/rainbowkit.test.ts +42 -0
  69. package/src/rainbowkit.ts +171 -0
  70. package/src/types.ts +82 -0
  71. package/src/vault.test.ts +23 -0
  72. package/src/vault.ts +77 -0
  73. package/src/wallet.ts +61 -0
  74. package/src/webauthn-client.test.ts +103 -0
  75. package/src/webauthn-client.ts +430 -0
  76. package/src/webauthn-server.test.ts +43 -0
  77. package/src/webauthn-server.ts +258 -0
  78. package/tsconfig.build.json +15 -0
  79. package/tsconfig.json +27 -0
@@ -0,0 +1,43 @@
1
+ items:
2
+ - name: SharePoint Framework reference
3
+ href: ~/overview/sharepoint.md
4
+ items:
5
+ - name: passkey-wallet
6
+ uid: '@organigram/passkey-wallet!'
7
+ items:
8
+ - name: CreateOrganigramPasskeyWalletInput
9
+ uid: '@organigram/passkey-wallet!CreateOrganigramPasskeyWalletInput:type'
10
+ - name: IdentityPasskeyCapabilities
11
+ uid: '@organigram/passkey-wallet!IdentityPasskeyCapabilities:type'
12
+ - name: OrganigramPasskeyCapabilities
13
+ uid: '@organigram/passkey-wallet!OrganigramPasskeyCapabilities:type'
14
+ - name: OrganigramPasskeyProvider
15
+ uid: '@organigram/passkey-wallet!OrganigramPasskeyProvider:type'
16
+ - name: OrganigramPasskeyProviderActions
17
+ uid: '@organigram/passkey-wallet!OrganigramPasskeyProviderActions:type'
18
+ - name: PasskeyPrfUnavailableError
19
+ uid: '@organigram/passkey-wallet!PasskeyPrfUnavailableError:class'
20
+ - name: PasskeyProviderEvent
21
+ uid: '@organigram/passkey-wallet!PasskeyProviderEvent:type'
22
+ - name: PasskeyProviderListener
23
+ uid: '@organigram/passkey-wallet!PasskeyProviderListener:type'
24
+ - name: PasskeyRegistrationResult
25
+ uid: '@organigram/passkey-wallet!PasskeyRegistrationResult:type'
26
+ - name: PasskeyVaultDecryptError
27
+ uid: '@organigram/passkey-wallet!PasskeyVaultDecryptError:class'
28
+ - name: PasskeyVaultEnvelopeData
29
+ uid: '@organigram/passkey-wallet!PasskeyVaultEnvelopeData:type'
30
+ - name: PasskeyVaultEnvelopeInput
31
+ uid: '@organigram/passkey-wallet!PasskeyVaultEnvelopeInput:type'
32
+ - name: PasskeyWalletApiClient
33
+ uid: '@organigram/passkey-wallet!PasskeyWalletApiClient:type'
34
+ - name: PasskeyWalletCapabilities
35
+ uid: '@organigram/passkey-wallet!PasskeyWalletCapabilities:type'
36
+ - name: PasskeyWalletLoginCapabilities
37
+ uid: '@organigram/passkey-wallet!PasskeyWalletLoginCapabilities:type'
38
+ - name: PasskeyWalletRegistrationCapabilities
39
+ uid: '@organigram/passkey-wallet!PasskeyWalletRegistrationCapabilities:type'
40
+ - name: PasskeyWalletVaultPayload
41
+ uid: '@organigram/passkey-wallet!PasskeyWalletVaultPayload:type'
42
+ - name: UnlockedPasskeyWallet
43
+ uid: '@organigram/passkey-wallet!UnlockedPasskeyWallet:type'
@@ -0,0 +1,6 @@
1
+
2
+  WARN  Issue while reading "/Users/louis/organigram/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
3
+
4
+ > @organigram/passkey-wallet@0.1.5 build /Users/louis/organigram/packages/passkey-wallet
5
+ > tsc -p tsconfig.build.json --pretty
6
+
@@ -0,0 +1,118 @@
1
+
2
+  WARN  Issue while reading "/Users/louis/organigram/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
3
+
4
+ > @organigram/passkey-wallet@0.1.5 docs:generate /Users/louis/organigram/packages/passkey-wallet
5
+ > env-cmd --silent tsx ../docs/scripts/generatePackageTypeScriptReference.ts . passkey-wallet
6
+
7
+
8
+ api-extractor 7.57.7  - https://api-extractor.com/
9
+ 
10
+ Analysis will use the bundled TypeScript version 5.8.2
11
+ *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
12
+ Warning: dist/crypto.d.ts:1:22 - (ae-missing-release-tag) "passkeyVaultAlgorithm" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
13
+ Warning: dist/crypto.d.ts:2:22 - (ae-missing-release-tag) "passkeyVaultKeyVersion" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
14
+ Warning: dist/crypto.d.ts:3:1 - (ae-missing-release-tag) "PasskeyVaultEnvelopeData" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
15
+ Warning: dist/crypto.d.ts:31:22 - (ae-missing-release-tag) "bytesToBase64Url" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
16
+ Warning: dist/crypto.d.ts:32:22 - (ae-missing-release-tag) "base64UrlToBytes" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
17
+ Warning: dist/crypto.d.ts:33:22 - (ae-forgotten-export) The symbol "DerivePasskeyVaultKeyInput" needs to be exported by the entry point index.d.ts
18
+ Warning: dist/crypto.d.ts:33:22 - (ae-missing-release-tag) "derivePasskeyVaultKey" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
19
+ Warning: dist/crypto.d.ts:34:22 - (ae-forgotten-export) The symbol "EncryptPasskeyVaultSecretInput" needs to be exported by the entry point index.d.ts
20
+ Warning: dist/crypto.d.ts:34:22 - (ae-missing-release-tag) "encryptPasskeyVaultSecret" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
21
+ Warning: dist/crypto.d.ts:35:22 - (ae-forgotten-export) The symbol "DecryptPasskeyVaultSecretInput" needs to be exported by the entry point index.d.ts
22
+ Warning: dist/crypto.d.ts:35:22 - (ae-missing-release-tag) "decryptPasskeyVaultSecret" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
23
+ Warning: dist/crypto.d.ts:36:22 - (ae-missing-release-tag) "isPasskeyPrfSupported" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
24
+ Warning: dist/crypto.d.ts:37:5 - (ae-forgotten-export) The symbol "PrfSupportCredential" needs to be exported by the entry point index.d.ts
25
+ Warning: dist/eip1193.d.ts:3:1 - (ae-missing-release-tag) "OrganigramPasskeyProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
26
+ Warning: dist/eip1193.d.ts:8:1 - (ae-missing-release-tag) "OrganigramPasskeyProviderActions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
27
+ Warning: dist/eip1193.d.ts:17:22 - (ae-missing-release-tag) "createPasskeyWalletProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
28
+ Warning: dist/eip1193.d.ts:24:22 - (ae-missing-release-tag) "normalizePasskeyWalletAddress" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
29
+ Warning: dist/errors.d.ts:1:22 - (ae-missing-release-tag) "passkeyPrfUnavailableErrorMessage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
30
+ Warning: dist/errors.d.ts:2:1 - (ae-missing-release-tag) "PasskeyPrfUnavailableError" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
31
+ Warning: dist/errors.d.ts:5:1 - (ae-missing-release-tag) "PasskeyVaultDecryptError" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
32
+ Warning: dist/rainbowkit.d.ts:5:22 - (ae-missing-release-tag) "isOrganigramPasskeyConnector" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
33
+ Warning: dist/rainbowkit.d.ts:8:1 - (ae-missing-release-tag) "CreateOrganigramPasskeyWalletInput" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
34
+ Warning: dist/rainbowkit.d.ts:14:22 - (ae-missing-release-tag) "createOrganigramPasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
35
+ Warning: dist/types.d.ts:2:22 - (ae-missing-release-tag) "organigramPasskeyWalletId" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
36
+ Warning: dist/types.d.ts:3:22 - (ae-missing-release-tag) "organigramPasskeyWalletIcon" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
37
+ Warning: dist/types.d.ts:4:1 - (ae-missing-release-tag) "OrganigramPasskeyCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
38
+ Warning: dist/types.d.ts:11:1 - (ae-missing-release-tag) "PasskeyWalletLoginCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
39
+ Warning: dist/types.d.ts:14:1 - (ae-missing-release-tag) "PasskeyWalletRegistrationCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
40
+ Warning: dist/types.d.ts:21:1 - (ae-missing-release-tag) "PasskeyWalletCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
41
+ Warning: dist/types.d.ts:22:1 - (ae-missing-release-tag) "IdentityPasskeyCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
42
+ Warning: dist/types.d.ts:27:22 - (ae-missing-release-tag) "buildIdentityPasskeyCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
43
+ Warning: dist/types.d.ts:28:22 - (ae-missing-release-tag) "buildPasskeyWalletCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
44
+ Warning: dist/types.d.ts:29:22 - (ae-missing-release-tag) "buildEmailPasskeyCapabilities" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
45
+ Warning: dist/types.d.ts:30:1 - (ae-missing-release-tag) "UnlockedPasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
46
+ Warning: dist/types.d.ts:40:1 - (ae-missing-release-tag) "PasskeyRegistrationResult" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
47
+ Warning: dist/types.d.ts:44:1 - (ae-missing-release-tag) "PasskeyProviderEvent" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
48
+ Warning: dist/types.d.ts:45:1 - (ae-missing-release-tag) "PasskeyProviderListener" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
49
+ Warning: dist/vault.d.ts:1:1 - (ae-missing-release-tag) "PasskeyWalletVaultPayload" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
50
+ Warning: dist/vault.d.ts:8:22 - (ae-missing-release-tag) "serializePasskeyWalletVaultPayload" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
51
+ Warning: dist/vault.d.ts:9:22 - (ae-missing-release-tag) "parsePasskeyWalletVaultPayload" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
52
+ Warning: dist/vault.d.ts:10:22 - (ae-missing-release-tag) "createPasskeyWalletVaultPayload" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
53
+ Warning: dist/wallet.d.ts:3:22 - (ae-missing-release-tag) "unlockedPasskeyWalletTtlMs" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
54
+ Warning: dist/wallet.d.ts:4:22 - (ae-missing-release-tag) "createUnlockedPasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
55
+ Warning: dist/wallet.d.ts:10:22 - (ae-missing-release-tag) "createNewPasskeyWalletVault" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
56
+ Warning: dist/webauthn-client.d.ts:19:1 - (ae-missing-release-tag) "PasskeyWalletApiClient" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
57
+ Warning: dist/webauthn-client.d.ts:20:5 - (ae-forgotten-export) The symbol "PasskeyRegisterOptionsResponse" needs to be exported by the entry point index.d.ts
58
+ Warning: dist/webauthn-client.d.ts:36:5 - (ae-forgotten-export) The symbol "PasskeyUnlockOptionsResponse" needs to be exported by the entry point index.d.ts
59
+ Warning: dist/webauthn-client.d.ts:37:5 - (ae-forgotten-export) The symbol "PasskeyUnlockVerifyResponse" needs to be exported by the entry point index.d.ts
60
+ Warning: dist/webauthn-client.d.ts:41:22 - (ae-missing-release-tag) "createFetchPasskeyWalletApiClient" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
61
+ Warning: dist/webauthn-client.d.ts:42:22 - (ae-missing-release-tag) "hydratePasskeyPrfOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
62
+ Warning: dist/webauthn-client.d.ts:45:1 - (ae-missing-release-tag) "registerPasskeyCredentialEnvelope" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
63
+ Warning: dist/webauthn-client.d.ts:52:22 - (ae-missing-release-tag) "registerPasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
64
+ Warning: dist/webauthn-client.d.ts:56:22 - (ae-missing-release-tag) "unlockPasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
65
+ Warning: dist/webauthn-client.d.ts:59:22 - (ae-missing-release-tag) "exportPasskeyWalletRecoveryPhrase" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
66
+ Warning: dist/webauthn-client.d.ts:63:22 - (ae-missing-release-tag) "registerAdditionalPasskeyCredential" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
67
+ Warning: dist/webauthn-client.d.ts:68:22 - (ae-missing-release-tag) "unlockOrCreatePasskeyWallet" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
68
+ Warning: dist/webauthn-server.d.ts:3:22 - (ae-missing-release-tag) "passkeyChallengeTtlMs" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
69
+ Warning: dist/webauthn-server.d.ts:4:1 - (ae-missing-release-tag) "PasskeyVaultEnvelopeInput" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
70
+ Warning: dist/webauthn-server.d.ts:12:22 - (ae-missing-release-tag) "validatePasskeyVaultEnvelopeInput" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
71
+ Warning: dist/webauthn-server.d.ts:15:22 - (ae-missing-release-tag) "createPasskeyChallengeExpiry" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
72
+ Warning: dist/webauthn-server.d.ts:16:22 - (ae-missing-release-tag) "getWebAuthnClientDataChallenge" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
73
+ Warning: dist/webauthn-server.d.ts:17:22 - (ae-missing-release-tag) "createPasskeyRegistrationOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
74
+ Warning: dist/webauthn-server.d.ts:25:22 - (ae-missing-release-tag) "verifyPasskeyRegistration" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
75
+ Warning: dist/webauthn-server.d.ts:32:5 - (ae-forgotten-export) The symbol "VerifiedPasskeyRegistrationResponse" needs to be exported by the entry point index.d.ts
76
+ Warning: dist/webauthn-server.d.ts:37:22 - (ae-missing-release-tag) "createPasskeyAuthenticationOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
77
+ Warning: dist/webauthn-server.d.ts:44:22 - (ae-missing-release-tag) "verifyPasskeyAuthentication" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
78
+ Warning: dist/webauthn-server.d.ts:55:22 - (ae-missing-release-tag) "toPasskeyVaultEnvelopeData" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
79
+
80
+ API Extractor completed successfully
81
+
82
+ api-documenter 7.29.7  - https://api-extractor.com/
83
+ 
84
+ Reading passkey-wallet.api.json
85
+
86
+ Deleting old output from /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml
87
+ Writing @organigram/passkey-wallet package
88
+ Writing /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet.yml
89
+
90
+
91
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/createorganigrampasskeywalletinput.yml from udp to sdp
92
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/identitypasskeycapabilities.yml from udp to sdp
93
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeycapabilities.yml from udp to sdp
94
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeyprovider.yml from udp to sdp
95
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/organigrampasskeyprovideractions.yml from udp to sdp
96
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyprfunavailableerror.yml from udp to sdp
97
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyproviderevent.yml from udp to sdp
98
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyproviderlistener.yml from udp to sdp
99
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyregistrationresult.yml from udp to sdp
100
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultdecrypterror.yml from udp to sdp
101
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultenvelopedata.yml from udp to sdp
102
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeyvaultenvelopeinput.yml from udp to sdp
103
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletapiclient.yml from udp to sdp
104
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletcapabilities.yml from udp to sdp
105
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletlogincapabilities.yml from udp to sdp
106
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletregistrationcapabilities.yml from udp to sdp
107
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/passkeywalletvaultpayload.yml from udp to sdp
108
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet/unlockedpasskeywallet.yml from udp to sdp
109
+ convert file /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/passkey-wallet.yml from udp to sdp
110
+ [warning] not applied type(package): variable
111
+ [warning] not applied type(package): variable
112
+ [warning] not applied type(package): variable
113
+ [warning] not applied type(package): variable
114
+ [warning] not applied type(package): variable
115
+ [warning] not applied type(package): variable
116
+ [warning] not applied type(package): variable
117
+ Writing /Users/louis/organigram/packages/passkey-wallet/.organigram-docs-cache/passkey-wallet/yaml/toc.yml
118
+ done!
@@ -0,0 +1,13 @@
1
+  WARN  Issue while reading "/Users/louis/organigram/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
2
+
3
+ > @organigram/passkey-wallet@0.1.5 lint /Users/louis/organigram/packages/passkey-wallet
4
+ > eslint .
5
+
6
+ Warning: React version was set to "detect" in eslint-plugin-react settings, but the "react" package is not installed. Assuming latest React version for linting.
7
+ Pages directory cannot be found at stack. If using a custom path, please configure with the `no-html-link-for-pages` rule in your eslint config file.
8
+ 
9
+ /Users/louis/organigram/packages/passkey-wallet/src/crypto.ts
10
+  91:5 warning Generic Object Injection Sink security/detect-object-injection
11
+ 
12
+ ✖ 1 problem (0 errors, 1 warning)
13
+ 
@@ -0,0 +1,152 @@
1
+
2
+  WARN  Issue while reading "/Users/louis/organigram/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
3
+
4
+ > @organigram/passkey-wallet@0.1.5 test /Users/louis/organigram/packages/passkey-wallet
5
+ > jest
6
+
7
+ Determining test suites to run...
8
+
9
+ Test Suites: 0 of 5 total
10
+ Tests: 0 total
11
+ Snapshots: 0 total
12
+ Time: 0 s, estimated 6 s
13
+ ████████████████████████████████████████
14
+  RUNS  src/webauthn-server.test.ts
15
+  RUNS  src/rainbowkit.test.ts
16
+  RUNS  src/webauthn-client.test.ts
17
+  RUNS  src/crypto.test.ts
18
+  RUNS  src/vault.test.ts
19
+
20
+ Test Suites: 0 of 5 total
21
+ Tests: 0 total
22
+ Snapshots: 0 total
23
+ Time: 0 s, estimated 6 s
24
+ ████████████████████████████████████████
25
+  RUNS  src/webauthn-server.test.ts
26
+  RUNS  src/rainbowkit.test.ts
27
+  RUNS  src/webauthn-client.test.ts
28
+  RUNS  src/crypto.test.ts
29
+  RUNS  src/vault.test.ts
30
+
31
+ Test Suites: 0 of 5 total
32
+ Tests: 0 total
33
+ Snapshots: 0 total
34
+ Time: 1 s, estimated 6 s
35
+ ████████████████████████████████████████
36
+  RUNS  src/webauthn-server.test.ts
37
+  RUNS  src/rainbowkit.test.ts
38
+  RUNS  src/webauthn-client.test.ts
39
+  RUNS  src/crypto.test.ts
40
+  RUNS  src/vault.test.ts
41
+
42
+ Test Suites: 0 of 5 total
43
+ Tests: 0 total
44
+ Snapshots: 0 total
45
+ Time: 2 s, estimated 6 s
46
+ ████████████████████████████████████████
47
+  RUNS  src/webauthn-server.test.ts
48
+  RUNS  src/rainbowkit.test.ts
49
+  RUNS  src/webauthn-client.test.ts
50
+  RUNS  src/crypto.test.ts
51
+  RUNS  src/vault.test.ts
52
+
53
+ Test Suites: 0 of 5 total
54
+ Tests: 0 total
55
+ Snapshots: 0 total
56
+ Time: 3 s, estimated 6 s
57
+ ████████████████████████████████████████
58
+  RUNS  src/webauthn-server.test.ts
59
+  RUNS  src/rainbowkit.test.ts
60
+  RUNS  src/webauthn-client.test.ts
61
+  RUNS  src/crypto.test.ts
62
+  RUNS  src/vault.test.ts
63
+
64
+ Test Suites: 0 of 5 total
65
+ Tests: 0 total
66
+ Snapshots: 0 total
67
+ Time: 4 s, estimated 6 s
68
+ ████████████████████████████████████████
69
+
70
+  RUNS  src/webauthn-server.test.ts
71
+  RUNS  src/rainbowkit.test.ts
72
+  RUNS  src/webauthn-client.test.ts
73
+  RUNS  src/crypto.test.ts
74
+  RUNS  src/vault.test.ts
75
+
76
+ Test Suites: 0 of 5 total
77
+ Tests: 0 total
78
+ Snapshots: 0 total
79
+ Time: 4 s, estimated 6 s
80
+ ████████████████████████████████████████
81
+  RUNS  src/webauthn-server.test.ts
82
+  RUNS  src/rainbowkit.test.ts
83
+  RUNS  src/webauthn-client.test.ts
84
+  RUNS  src/crypto.test.ts
85
+  RUNS  src/vault.test.ts
86
+
87
+ Test Suites: 0 of 5 total
88
+ Tests: 0 total
89
+ Snapshots: 0 total
90
+ Time: 4 s, estimated 6 s
91
+ ████████████████████████████████████████
92
+
93
+  RUNS  src/webauthn-server.test.ts
94
+  RUNS  src/rainbowkit.test.ts
95
+  RUNS  src/webauthn-client.test.ts
96
+  RUNS  src/crypto.test.ts
97
+  RUNS  src/vault.test.ts
98
+
99
+ Test Suites: 0 of 5 total
100
+ Tests: 0 total
101
+ Snapshots: 0 total
102
+ Time: 4 s, estimated 6 s
103
+ ████████████████████████████████████████
104
+  RUNS  src/webauthn-server.test.ts
105
+  RUNS  src/rainbowkit.test.ts
106
+  RUNS  src/crypto.test.ts
107
+
108
+ Test Suites: 2 passed, 2 of 5 total
109
+ Tests: 6 passed, 6 total
110
+ Snapshots: 0 total
111
+ Time: 4 s, estimated 6 s
112
+ ████████████████████████████████████████
113
+
114
+  RUNS  src/webauthn-server.test.ts
115
+  RUNS  src/rainbowkit.test.ts
116
+  RUNS  src/crypto.test.ts
117
+
118
+ Test Suites: 2 passed, 2 of 5 total
119
+ Tests: 6 passed, 6 total
120
+ Snapshots: 0 total
121
+ Time: 4 s, estimated 6 s
122
+ ████████████████████████████████████████
123
+
124
+  RUNS  src/webauthn-server.test.ts
125
+  RUNS  src/rainbowkit.test.ts
126
+  RUNS  src/crypto.test.ts
127
+
128
+ Test Suites: 2 passed, 2 of 5 total
129
+ Tests: 6 passed, 6 total
130
+ Snapshots: 0 total
131
+ Time: 4 s, estimated 6 s
132
+ ████████████████████████████████████████
133
+  RUNS  src/webauthn-server.test.ts
134
+
135
+ Test Suites: 4 passed, 4 of 5 total
136
+ Tests: 11 passed, 11 total
137
+ Snapshots: 0 total
138
+ Time: 4 s, estimated 6 s
139
+ ████████████████████████████████████████
140
+
141
+  RUNS  src/webauthn-server.test.ts
142
+
143
+ Test Suites: 4 passed, 4 of 5 total
144
+ Tests: 11 passed, 11 total
145
+ Snapshots: 0 total
146
+ Time: 4 s, estimated 6 s
147
+ ████████████████████████████████████████
148
+ Test Suites: 5 passed, 5 total
149
+ Tests: 15 passed, 15 total
150
+ Snapshots: 0 total
151
+ Time: 4.964 s, estimated 6 s
152
+ Ran all test suites.
@@ -0,0 +1,5 @@
1
+  WARN  Issue while reading "/Users/louis/organigram/.npmrc". Failed to replace env in config: ${NPM_TOKEN}
2
+
3
+ > @organigram/passkey-wallet@0.1.5 typecheck /Users/louis/organigram/packages/passkey-wallet
4
+ > tsc --noEmit --incremental false
5
+
package/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.6](https://github.com/organigram/organigram/compare/v0.1.5...v0.1.6) (2026-07-20)
7
+
8
+ **Note:** Version bump only for package @organigram/passkey-wallet
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Organigram.ai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.