@delopay/sdk 0.14.0 → 0.14.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.
@@ -96,6 +96,8 @@ interface CustomerUser {
96
96
  email?: string | null;
97
97
  name?: string | null;
98
98
  role_id?: string | null;
99
+ /** Optional: older backend deployments omit this field. */
100
+ is_verified?: boolean | null;
99
101
  is_active: boolean;
100
102
  created_at: string;
101
103
  }
@@ -96,6 +96,8 @@ interface CustomerUser {
96
96
  email?: string | null;
97
97
  name?: string | null;
98
98
  role_id?: string | null;
99
+ /** Optional: older backend deployments omit this field. */
100
+ is_verified?: boolean | null;
99
101
  is_active: boolean;
100
102
  created_at: string;
101
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.14.0",
3
+ "version": "0.14.2",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,