internxt-crypto 0.0.7-alpha → 0.0.9-alpha
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 +0 -2
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2392 -2238
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,13 +124,11 @@ const emailBody: EmailBody = {
|
|
|
124
124
|
const userAlice = {
|
|
125
125
|
email: 'alice email',
|
|
126
126
|
name: 'alice',
|
|
127
|
-
id: '1',
|
|
128
127
|
};
|
|
129
128
|
|
|
130
129
|
const userBob = {
|
|
131
130
|
email: 'bob email',
|
|
132
131
|
name: 'bob',
|
|
133
|
-
id: '2',
|
|
134
132
|
};
|
|
135
133
|
const { privateKeys: alicePrivateKeys, publicKeys: alicePublicKeys } = await emailCrypto.generateEmailKeys();
|
|
136
134
|
const { privateKeys: bobPrivateKeys, publicKeys: bobPublicKeys } = await emailCrypto.generateEmailKeys();
|