@dynamic-labs/utils 0.18.100-viem.0 → 0.18.100-viem.2

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,5 +1,42 @@
1
1
 
2
- ## [0.18.100-viem.0](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.29...v0.18.100-viem.0) (2023-08-04)
2
+ ### [0.18.100-viem.2](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.100-viem.1...v0.18.100-viem.2) (2023-08-15)
3
+
4
+
5
+ ### Features
6
+
7
+ * re-enable bloctoevm ([#2992](https://github.com/dynamic-labs/DynamicAuth/issues/2992)) ([d027f39](https://github.com/dynamic-labs/DynamicAuth/commit/d027f39c8fb5bf477ce0da0c62d86cd812f0fda5))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **captcha:** complete sign in with magic and blocto ([#2967](https://github.com/dynamic-labs/DynamicAuth/issues/2967)) ([#2985](https://github.com/dynamic-labs/DynamicAuth/issues/2985)) ([e7585f5](https://github.com/dynamic-labs/DynamicAuth/commit/e7585f525da29e7933871831fa6fd374f09618b7))
13
+ * sync wagmi correctly in connect-only mode ([#2990](https://github.com/dynamic-labs/DynamicAuth/issues/2990)) ([#2993](https://github.com/dynamic-labs/DynamicAuth/issues/2993)) ([74a4e62](https://github.com/dynamic-labs/DynamicAuth/commit/74a4e6216f3f9fb30e5312789fb18f77277e15ba))
14
+
15
+ ## [0.18.0-beta.32](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.31...v0.18.0-beta.32) (2023-08-09)
16
+
17
+
18
+ ### Features
19
+
20
+ * disable social buttons after provider is selected ([#2875](https://github.com/dynamic-labs/DynamicAuth/issues/2875)) ([#2881](https://github.com/dynamic-labs/DynamicAuth/issues/2881)) ([8a20409](https://github.com/dynamic-labs/DynamicAuth/commit/8a204095a322872caf6255db40bc10d29047e9a4))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * css variables are being ignored for ConnectButton component ([#2884](https://github.com/dynamic-labs/DynamicAuth/issues/2884)) ([979557e](https://github.com/dynamic-labs/DynamicAuth/commit/979557edf2da81c2681c57e8431a5bf0ed235433))
26
+
27
+ ## [0.18.0-beta.31](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.30...v0.18.0-beta.31) (2023-08-08)
28
+
29
+
30
+ ### Features
31
+
32
+ * **GVTY-65:** allow merging accounts when duplicated email in KYC step ([#2868](https://github.com/dynamic-labs/DynamicAuth/issues/2868)) ([041d0a8](https://github.com/dynamic-labs/DynamicAuth/commit/041d0a809e06a7b1407a46b04722c9ebc4802304))
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * **GVTY-150:** blocto pop up to sign after disconnect ([#2870](https://github.com/dynamic-labs/DynamicAuth/issues/2870)) ([14ccfa0](https://github.com/dynamic-labs/DynamicAuth/commit/14ccfa030dbe8989b9404e2e57ba3f5b50ca88ff))
38
+
39
+ ## [0.18.0-beta.30](https://github.com/dynamic-labs/DynamicAuth/compare/v0.18.0-beta.29...v0.18.0-beta.30) (2023-08-04)
3
40
 
4
41
  ### Bug Fixes
5
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/utils",
3
- "version": "0.18.100-viem.0",
3
+ "version": "0.18.100-viem.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -29,6 +29,6 @@
29
29
  "viem": "^1.5.3"
30
30
  },
31
31
  "dependencies": {
32
- "@dynamic-labs/types": "0.18.100-viem.0"
32
+ "@dynamic-labs/types": "0.18.100-viem.2"
33
33
  }
34
34
  }
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var DynamicError = require('./DynamicError.cjs');
6
+
7
+ class UserHasAccountWithEmailError extends DynamicError.DynamicError {
8
+ constructor(error) {
9
+ super(error);
10
+ this.error = error;
11
+ }
12
+ }
13
+
14
+ exports.UserHasAccountWithEmailError = UserHasAccountWithEmailError;
@@ -0,0 +1,5 @@
1
+ import { DynamicError } from './DynamicError';
2
+ export declare class UserHasAccountWithEmailError extends DynamicError {
3
+ error: string;
4
+ constructor(error: string);
5
+ }
@@ -0,0 +1,10 @@
1
+ import { DynamicError } from './DynamicError.js';
2
+
3
+ class UserHasAccountWithEmailError extends DynamicError {
4
+ constructor(error) {
5
+ super(error);
6
+ this.error = error;
7
+ }
8
+ }
9
+
10
+ export { UserHasAccountWithEmailError };
@@ -12,3 +12,4 @@ export * from './WalletUsedError';
12
12
  export * from './EmailProviderError';
13
13
  export * from './MissingEnvironmentIdError';
14
14
  export * from './GateBlockedError';
15
+ export * from './UserHasAccountWithEmailError';
package/src/index.cjs CHANGED
@@ -18,6 +18,7 @@ var WalletUsedError = require('./errors/WalletUsedError.cjs');
18
18
  var EmailProviderError = require('./errors/EmailProviderError.cjs');
19
19
  var MissingEnvironmentIdError = require('./errors/MissingEnvironmentIdError.cjs');
20
20
  var GateBlockedError = require('./errors/GateBlockedError.cjs');
21
+ var UserHasAccountWithEmailError = require('./errors/UserHasAccountWithEmailError.cjs');
21
22
  var CancellablePromise = require('./CancellablePromise/CancellablePromise.cjs');
22
23
  var isFunction = require('./isFunction/isFunction.cjs');
23
24
  var isMobile = require('./isMobile.cjs');
@@ -43,6 +44,7 @@ exports.WalletUsedError = WalletUsedError.WalletUsedError;
43
44
  exports.EmailProviderError = EmailProviderError.EmailProviderError;
44
45
  exports.MissingEnvironmentIdError = MissingEnvironmentIdError.MissingEnvironmentIdError;
45
46
  exports.GateBlockedError = GateBlockedError.GateBlockedError;
47
+ exports.UserHasAccountWithEmailError = UserHasAccountWithEmailError.UserHasAccountWithEmailError;
46
48
  exports.CancellablePromise = CancellablePromise.CancellablePromise;
47
49
  exports.isFunction = isFunction.isFunction;
48
50
  exports.isAndroid = isMobile.isAndroid;
package/src/index.js CHANGED
@@ -14,6 +14,7 @@ export { WalletUsedError } from './errors/WalletUsedError.js';
14
14
  export { EmailProviderError } from './errors/EmailProviderError.js';
15
15
  export { MissingEnvironmentIdError } from './errors/MissingEnvironmentIdError.js';
16
16
  export { GateBlockedError } from './errors/GateBlockedError.js';
17
+ export { UserHasAccountWithEmailError } from './errors/UserHasAccountWithEmailError.js';
17
18
  export { CancellablePromise } from './CancellablePromise/CancellablePromise.js';
18
19
  export { isFunction } from './isFunction/isFunction.js';
19
20
  export { isAndroid, isIOS, isIPad, isIPhone, isLegacySafari, isMobile, isSamsungBrowser } from './isMobile.js';