@dynamic-labs/types 3.3.0 → 3.4.1

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,21 @@
1
1
 
2
+ ### [3.4.1](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.0...v3.4.1) (2024-10-17)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * bug where embeddedWalletCreated event was fired before listener was attached ([#7154](https://github.com/dynamic-labs/DynamicAuth/issues/7154)) ([c782de2](https://github.com/dynamic-labs/DynamicAuth/commit/c782de2900097c389f8e388807b63820827ca430)), closes [#7151](https://github.com/dynamic-labs/DynamicAuth/issues/7151)
8
+
9
+ ## [3.4.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.3.0...v3.4.0) (2024-10-16)
10
+
11
+
12
+ ### Features
13
+
14
+ * add support for add Oyl Wallet ([#7140](https://github.com/dynamic-labs/DynamicAuth/issues/7140)) ([f683f10](https://github.com/dynamic-labs/DynamicAuth/commit/f683f108098a2effac0f3b78c35bf2be73c1263c))
15
+ * add support for xverse account change event ([#7131](https://github.com/dynamic-labs/DynamicAuth/issues/7131)) ([bc34105](https://github.com/dynamic-labs/DynamicAuth/commit/bc341059903dc4d494f8d3ab127fa1adbec69c3a))
16
+ * embedded wallet signAllTransaction headless functionality for solana ([#7134](https://github.com/dynamic-labs/DynamicAuth/issues/7134)) ([15fa689](https://github.com/dynamic-labs/DynamicAuth/commit/15fa689f1f3bd591f10b19875d53f7cc3ffe1ebd))
17
+ * support ability to define additional oauth scopes ([#7113](https://github.com/dynamic-labs/DynamicAuth/issues/7113)) ([75c7f90](https://github.com/dynamic-labs/DynamicAuth/commit/75c7f9091b936153597b081d261e15cd1186623a))
18
+
2
19
  ## [3.3.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.2.0...v3.3.0) (2024-10-08)
3
20
 
4
21
 
package/package.cjs ADDED
@@ -0,0 +1,8 @@
1
+ 'use client'
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, '__esModule', { value: true });
5
+
6
+ var version = "3.4.1";
7
+
8
+ exports.version = version;
package/package.js ADDED
@@ -0,0 +1,4 @@
1
+ 'use client'
2
+ var version = "3.4.1";
3
+
4
+ export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/types",
3
- "version": "3.3.0",
3
+ "version": "3.4.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
@@ -26,6 +26,8 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@dynamic-labs/sdk-api-core": "0.0.535"
30
- }
29
+ "@dynamic-labs/sdk-api-core": "0.0.547",
30
+ "@dynamic-labs/assert-package-version": "3.4.1"
31
+ },
32
+ "peerDependencies": {}
31
33
  }
package/src/index.cjs CHANGED
@@ -3,11 +3,13 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
+ var assertPackageVersion = require('@dynamic-labs/assert-package-version');
7
+ var _package = require('../package.cjs');
6
8
  var sdkApiCore = require('@dynamic-labs/sdk-api-core');
7
9
  var index = require('./oauth/index.cjs');
8
10
  var BaseWallet = require('./wallets/BaseWallet.cjs');
9
11
 
10
-
12
+ assertPackageVersion.assertPackageVersion('@dynamic-labs/types', _package.version);
11
13
 
12
14
  Object.defineProperty(exports, 'ProviderEnum', {
13
15
  enumerable: true,
package/src/index.js CHANGED
@@ -1,4 +1,8 @@
1
1
  'use client'
2
+ import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
3
+ import { version } from '../package.js';
2
4
  export { ProviderEnum } from '@dynamic-labs/sdk-api-core';
3
5
  export { SocialOAuthErrorCode } from './oauth/index.js';
4
6
  export { BaseWallet } from './wallets/BaseWallet.js';
7
+
8
+ assertPackageVersion('@dynamic-labs/types', version);