@dynamic-labs/logger 4.0.0-alpha.0 → 4.0.0-alpha.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,4 +1,29 @@
1
1
 
2
+ ## [4.0.0-alpha.2](https://github.com/dynamic-labs/DynamicAuth/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2024-09-18)
3
+
4
+
5
+ ### Features
6
+
7
+ * add iconVariant prop to DynamicBridgeWidget ([#6915](https://github.com/dynamic-labs/DynamicAuth/issues/6915)) ([8aa0f3d](https://github.com/dynamic-labs/DynamicAuth/commit/8aa0f3d8d8c41c7b5c4796106f611f208010cb6d))
8
+ * allow to create extra embedded wallets in react-native ([#6923](https://github.com/dynamic-labs/DynamicAuth/issues/6923)) ([ba22f7b](https://github.com/dynamic-labs/DynamicAuth/commit/ba22f7bcf41a444a4df0aff9b6aec257457e9402))
9
+ * **client:** add hide method for auth and userProfile ui modules ([#6928](https://github.com/dynamic-labs/DynamicAuth/issues/6928)) ([a11a4a5](https://github.com/dynamic-labs/DynamicAuth/commit/a11a4a5d6e25ce2a916ebd52f0b341020dc1a7e5))
10
+
11
+ ## [4.0.0-alpha.1](https://github.com/dynamic-labs/DynamicAuth/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2024-09-17)
12
+
13
+
14
+ ### Features
15
+
16
+ * blockaid website scanning for global connectivity ([#6874](https://github.com/dynamic-labs/DynamicAuth/issues/6874)) ([f8cbabd](https://github.com/dynamic-labs/DynamicAuth/commit/f8cbabd92fd4b5b096f47ff8e24c572ad7720dd8))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * deeplinking on ethereum and bitcoin sats connector ([#6917](https://github.com/dynamic-labs/DynamicAuth/issues/6917)) ([3896c3a](https://github.com/dynamic-labs/DynamicAuth/commit/3896c3a97819459da74dc5b4771796d7991c1f07))
22
+ * emit walletAdded event when createEmbeddedWalletAccount called ([#6922](https://github.com/dynamic-labs/DynamicAuth/issues/6922)) ([2a8bdd6](https://github.com/dynamic-labs/DynamicAuth/commit/2a8bdd68c50efd946c6f9b398dfae2b3585db34f))
23
+ * interface for sendBitcoin on unisat ([37a1bc2](https://github.com/dynamic-labs/DynamicAuth/commit/37a1bc216f43eef817c40e23b9161327f9d29c59))
24
+ * remove ballet crypto and duplicate keplr entry ([#6906](https://github.com/dynamic-labs/DynamicAuth/issues/6906)) ([14aeeea](https://github.com/dynamic-labs/DynamicAuth/commit/14aeeeaa8d906344f4aeddf9e73527df346b9ea0))
25
+ * solana and cosmos signers not working properly ([#6898](https://github.com/dynamic-labs/DynamicAuth/issues/6898)) ([6f07981](https://github.com/dynamic-labs/DynamicAuth/commit/6f079811c0d7e45b97d2dae72f4141268ab4fe0c))
26
+
2
27
  ## [4.0.0-alpha.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0...v4.0.0-alpha.0) (2024-09-13)
3
28
 
4
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/logger",
3
- "version": "4.0.0-alpha.0",
3
+ "version": "4.0.0-alpha.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
package/src/index.cjs CHANGED
@@ -117,7 +117,7 @@ class Logger {
117
117
  var _a, _b;
118
118
  const messages = [];
119
119
  messageQueue.forEach((msg) => {
120
- var _a, _b, _c, _d, _e;
120
+ var _a, _b, _c, _d, _e, _f;
121
121
  const body = {};
122
122
  const { objectArgs, remainingArgs } = processArgs.processArgs(msg);
123
123
  Object.assign(body, ...objectArgs);
@@ -132,6 +132,7 @@ class Logger {
132
132
  port: (_d = window.location) === null || _d === void 0 ? void 0 : _d.port,
133
133
  protocol: (_e = window.location) === null || _e === void 0 ? void 0 : _e.protocol,
134
134
  },
135
+ userAgent: (_f = window.navigator) === null || _f === void 0 ? void 0 : _f.userAgent,
135
136
  });
136
137
  messages.push(body);
137
138
  });
package/src/index.js CHANGED
@@ -110,7 +110,7 @@ class Logger {
110
110
  var _a, _b;
111
111
  const messages = [];
112
112
  messageQueue.forEach((msg) => {
113
- var _a, _b, _c, _d, _e;
113
+ var _a, _b, _c, _d, _e, _f;
114
114
  const body = {};
115
115
  const { objectArgs, remainingArgs } = processArgs(msg);
116
116
  Object.assign(body, ...objectArgs);
@@ -125,6 +125,7 @@ class Logger {
125
125
  port: (_d = window.location) === null || _d === void 0 ? void 0 : _d.port,
126
126
  protocol: (_e = window.location) === null || _e === void 0 ? void 0 : _e.protocol,
127
127
  },
128
+ userAgent: (_f = window.navigator) === null || _f === void 0 ? void 0 : _f.userAgent,
128
129
  });
129
130
  messages.push(body);
130
131
  });