@verdocs/js-sdk 4.2.21 → 4.2.22

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/dist/index.d.mts CHANGED
@@ -362,15 +362,15 @@ interface IUser {
362
362
  id: string;
363
363
  email: string;
364
364
  email_verified: boolean;
365
- pass_hash: string;
366
- first_name?: string;
367
- last_name?: string;
368
- phone?: string;
369
- picture?: string;
370
- b2cId?: string;
371
- googleId?: string;
372
- appleId?: string;
373
- githubId?: string;
365
+ pass_hash?: string;
366
+ first_name: string | null;
367
+ last_name: string | null;
368
+ phone: string | null;
369
+ picture: string | null;
370
+ b2cId: string | null;
371
+ googleId: string | null;
372
+ appleId: string | null;
373
+ githubId?: string | null;
374
374
  created_at: string;
375
375
  updated_at: string;
376
376
  }
package/dist/index.d.ts CHANGED
@@ -362,15 +362,15 @@ interface IUser {
362
362
  id: string;
363
363
  email: string;
364
364
  email_verified: boolean;
365
- pass_hash: string;
366
- first_name?: string;
367
- last_name?: string;
368
- phone?: string;
369
- picture?: string;
370
- b2cId?: string;
371
- googleId?: string;
372
- appleId?: string;
373
- githubId?: string;
365
+ pass_hash?: string;
366
+ first_name: string | null;
367
+ last_name: string | null;
368
+ phone: string | null;
369
+ picture: string | null;
370
+ b2cId: string | null;
371
+ googleId: string | null;
372
+ appleId: string | null;
373
+ githubId?: string | null;
374
374
  created_at: string;
375
375
  updated_at: string;
376
376
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "4.2.21",
3
+ "version": "4.2.22",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and Browser clients",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "4.2.21",
3
+ "version": "4.2.22",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Isomorphic JS SDK providing types and API wrappers for the Verdocs platform for Node and Browser clients",