@dynamic-labs/client 2.1.0-alpha.3 → 2.1.0-alpha.4

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/CHANGELOG.md CHANGED
@@ -1,4 +1,17 @@
1
1
 
2
+ ## [2.1.0-alpha.4](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.0-alpha.3...v2.1.0-alpha.4) (2024-04-23)
3
+
4
+
5
+ ### Features
6
+
7
+ * add email and sms to client auth module ([#5436](https://github.com/dynamic-labs/DynamicAuth/issues/5436)) ([5420476](https://github.com/dynamic-labs/DynamicAuth/commit/5420476d1ba38fd4f987f28e9aefbfb3e61ea2bf))
8
+ * headless create passkeys for embedded wallets ([#5395](https://github.com/dynamic-labs/DynamicAuth/issues/5395)) ([0b64099](https://github.com/dynamic-labs/DynamicAuth/commit/0b6409968457f65886248f0a0879e39ec3803fd0))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * prevent wagmi from reconnect when DynamicContextProvider rerender ([#5446](https://github.com/dynamic-labs/DynamicAuth/issues/5446)) ([33337af](https://github.com/dynamic-labs/DynamicAuth/commit/33337af76786963cb3db7fa7c58c1292c529d0ac))
14
+
2
15
  ## [2.1.0-alpha.3](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.0-alpha.2...v2.1.0-alpha.3) (2024-04-23)
3
16
 
4
17
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "2.1.0-alpha.3";
6
+ var version = "2.1.0-alpha.4";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "2.1.0-alpha.3";
2
+ var version = "2.1.0-alpha.4";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/client",
3
- "version": "2.1.0-alpha.3",
3
+ "version": "2.1.0-alpha.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -26,10 +26,10 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@dynamic-labs/message-transport": "2.1.0-alpha.3"
29
+ "@dynamic-labs/message-transport": "2.1.0-alpha.4"
30
30
  },
31
31
  "peerDependencies": {
32
- "@dynamic-labs/types": "2.1.0-alpha.3",
32
+ "@dynamic-labs/types": "2.1.0-alpha.4",
33
33
  "eventemitter3": "5.0.1"
34
34
  }
35
35
  }
@@ -5,8 +5,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
6
  var messageTransport = require('@dynamic-labs/message-transport');
7
7
  var pickListenerActions = require('../../utils/pickListenerActions/pickListenerActions.cjs');
8
+ var smsAuthModule = require('../smsAuthModule/smsAuthModule.cjs');
9
+ var emailAuthModule = require('../emailAuthModule/emailAuthModule.cjs');
8
10
 
9
11
  const createAuthModule = (core) => {
12
+ const email = emailAuthModule.createEmailAuthModule(core);
13
+ const sms = smsAuthModule.createSmsAuthModule(core);
10
14
  const store = messageTransport.createStore({
11
15
  initialState: {
12
16
  authenticatedUser: null,
@@ -22,7 +26,9 @@ const createAuthModule = (core) => {
22
26
  });
23
27
  const requestChannel = messageTransport.createRequestChannel(core.messageTransport);
24
28
  return Object.assign(store.getters, pickListenerActions.pickListenerActions(messageEvents), {
29
+ email,
25
30
  logout: () => requestChannel.request('logout'),
31
+ sms,
26
32
  });
27
33
  };
28
34
 
@@ -1,4 +1,9 @@
1
1
  import { AuthModuleMessages, AuthModuleState, StoreEventListeners } from '@dynamic-labs/message-transport';
2
2
  import { Core } from '../../client/core';
3
- export type AuthModule = AuthModuleState & StoreEventListeners<AuthModuleState> & Pick<AuthModuleMessages, 'logout'>;
3
+ import { SmsAuthModule } from '../smsAuthModule';
4
+ import { EmailAuthModule } from '../emailAuthModule';
5
+ export type AuthModule = AuthModuleState & StoreEventListeners<AuthModuleState> & Pick<AuthModuleMessages, 'logout'> & {
6
+ sms: SmsAuthModule;
7
+ email: EmailAuthModule;
8
+ };
4
9
  export declare const createAuthModule: (core: Core) => AuthModule;
@@ -1,8 +1,12 @@
1
1
  'use client'
2
2
  import { createStore, createEventEmitterForMessages, createRequestChannel } from '@dynamic-labs/message-transport';
3
3
  import { pickListenerActions } from '../../utils/pickListenerActions/pickListenerActions.js';
4
+ import { createSmsAuthModule } from '../smsAuthModule/smsAuthModule.js';
5
+ import { createEmailAuthModule } from '../emailAuthModule/emailAuthModule.js';
4
6
 
5
7
  const createAuthModule = (core) => {
8
+ const email = createEmailAuthModule(core);
9
+ const sms = createSmsAuthModule(core);
6
10
  const store = createStore({
7
11
  initialState: {
8
12
  authenticatedUser: null,
@@ -18,7 +22,9 @@ const createAuthModule = (core) => {
18
22
  });
19
23
  const requestChannel = createRequestChannel(core.messageTransport);
20
24
  return Object.assign(store.getters, pickListenerActions(messageEvents), {
25
+ email,
21
26
  logout: () => requestChannel.request('logout'),
27
+ sms,
22
28
  });
23
29
  };
24
30
 
@@ -0,0 +1,17 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var messageTransport = require('@dynamic-labs/message-transport');
7
+
8
+ const createEmailAuthModule = (core) => {
9
+ const requestChannel = messageTransport.createRequestChannel(core.messageTransport);
10
+ return {
11
+ resendOTP: () => requestChannel.request('resendOTP'),
12
+ sendOTP: (target) => requestChannel.request('sendOTP', { destination: 'email', target }),
13
+ verifyOTP: (token) => requestChannel.request('verifyOTP', token),
14
+ };
15
+ };
16
+
17
+ exports.createEmailAuthModule = createEmailAuthModule;
@@ -0,0 +1,7 @@
1
+ import { Core } from '../../client/core';
2
+ export declare const createEmailAuthModule: (core: Core) => {
3
+ resendOTP: () => Promise<void>;
4
+ sendOTP: (target: string) => Promise<void>;
5
+ verifyOTP: (token: string) => Promise<void>;
6
+ };
7
+ export type EmailAuthModule = ReturnType<typeof createEmailAuthModule>;
@@ -0,0 +1,13 @@
1
+ 'use client'
2
+ import { createRequestChannel } from '@dynamic-labs/message-transport';
3
+
4
+ const createEmailAuthModule = (core) => {
5
+ const requestChannel = createRequestChannel(core.messageTransport);
6
+ return {
7
+ resendOTP: () => requestChannel.request('resendOTP'),
8
+ sendOTP: (target) => requestChannel.request('sendOTP', { destination: 'email', target }),
9
+ verifyOTP: (token) => requestChannel.request('verifyOTP', token),
10
+ };
11
+ };
12
+
13
+ export { createEmailAuthModule };
@@ -0,0 +1 @@
1
+ export { createEmailAuthModule, type EmailAuthModule } from './emailAuthModule';
@@ -0,0 +1 @@
1
+ export { createSmsAuthModule, type SmsAuthModule } from './smsAuthModule';
@@ -0,0 +1,17 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var messageTransport = require('@dynamic-labs/message-transport');
7
+
8
+ const createSmsAuthModule = (core) => {
9
+ const requestChannel = messageTransport.createRequestChannel(core.messageTransport);
10
+ return {
11
+ resendOTP: () => requestChannel.request('resendOTP'),
12
+ sendOTP: (target) => requestChannel.request('sendOTP', { destination: 'sms', target }),
13
+ verifyOTP: (token) => requestChannel.request('verifyOTP', token),
14
+ };
15
+ };
16
+
17
+ exports.createSmsAuthModule = createSmsAuthModule;
@@ -0,0 +1,8 @@
1
+ import { PhoneData } from '@dynamic-labs/types';
2
+ import { Core } from '../../client/core';
3
+ export declare const createSmsAuthModule: (core: Core) => {
4
+ resendOTP: () => Promise<void>;
5
+ sendOTP: (target: PhoneData) => Promise<void>;
6
+ verifyOTP: (token: string) => Promise<void>;
7
+ };
8
+ export type SmsAuthModule = ReturnType<typeof createSmsAuthModule>;
@@ -0,0 +1,13 @@
1
+ 'use client'
2
+ import { createRequestChannel } from '@dynamic-labs/message-transport';
3
+
4
+ const createSmsAuthModule = (core) => {
5
+ const requestChannel = createRequestChannel(core.messageTransport);
6
+ return {
7
+ resendOTP: () => requestChannel.request('resendOTP'),
8
+ sendOTP: (target) => requestChannel.request('sendOTP', { destination: 'sms', target }),
9
+ verifyOTP: (token) => requestChannel.request('verifyOTP', token),
10
+ };
11
+ };
12
+
13
+ export { createSmsAuthModule };