@connect-xyz/auth-js 1.30.0 → 1.32.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -217,6 +217,10 @@ declare type DepositCompletedPayload = {
217
217
  networkId: string;
218
218
  /** Amount being deposited */
219
219
  amount?: string;
220
+ accountMatchingValidation?: {
221
+ status: 'PENDING' | 'VALID' | 'INVALID' | 'ERROR';
222
+ reason?: string;
223
+ };
220
224
  };
221
225
  };
222
226
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connect-xyz/auth-js",
3
- "version": "1.30.0",
3
+ "version": "1.32.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",