@verdocs/js-sdk 4.2.20 → 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 +14 -14
- package/dist/index.d.ts +14 -14
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -328,12 +328,12 @@ interface IProfile {
|
|
|
328
328
|
/** The unique ID of the profile */
|
|
329
329
|
id: string;
|
|
330
330
|
/**
|
|
331
|
-
*
|
|
332
|
-
*
|
|
333
|
-
*
|
|
331
|
+
* In Verdocs, a user may have multiple profiles. A user represents a single person. A profile
|
|
332
|
+
* represents that person within an organization. Some profiles may have no user atached, typically
|
|
333
|
+
* Contacts and Signers. This can change if that person registers for a user later.
|
|
334
334
|
*/
|
|
335
|
-
user_id: string;
|
|
336
|
-
/** The profile's organization ID, or a global "
|
|
335
|
+
user_id: string | null;
|
|
336
|
+
/** The profile's organization ID, or a global "Verdocs" organization that all personal profiles are members of. */
|
|
337
337
|
organization_id: string;
|
|
338
338
|
first_name: string;
|
|
339
339
|
last_name: string;
|
|
@@ -362,15 +362,15 @@ interface IUser {
|
|
|
362
362
|
id: string;
|
|
363
363
|
email: string;
|
|
364
364
|
email_verified: boolean;
|
|
365
|
-
pass_hash
|
|
366
|
-
first_name
|
|
367
|
-
last_name
|
|
368
|
-
phone
|
|
369
|
-
picture
|
|
370
|
-
b2cId
|
|
371
|
-
googleId
|
|
372
|
-
appleId
|
|
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
|
@@ -328,12 +328,12 @@ interface IProfile {
|
|
|
328
328
|
/** The unique ID of the profile */
|
|
329
329
|
id: string;
|
|
330
330
|
/**
|
|
331
|
-
*
|
|
332
|
-
*
|
|
333
|
-
*
|
|
331
|
+
* In Verdocs, a user may have multiple profiles. A user represents a single person. A profile
|
|
332
|
+
* represents that person within an organization. Some profiles may have no user atached, typically
|
|
333
|
+
* Contacts and Signers. This can change if that person registers for a user later.
|
|
334
334
|
*/
|
|
335
|
-
user_id: string;
|
|
336
|
-
/** The profile's organization ID, or a global "
|
|
335
|
+
user_id: string | null;
|
|
336
|
+
/** The profile's organization ID, or a global "Verdocs" organization that all personal profiles are members of. */
|
|
337
337
|
organization_id: string;
|
|
338
338
|
first_name: string;
|
|
339
339
|
last_name: string;
|
|
@@ -362,15 +362,15 @@ interface IUser {
|
|
|
362
362
|
id: string;
|
|
363
363
|
email: string;
|
|
364
364
|
email_verified: boolean;
|
|
365
|
-
pass_hash
|
|
366
|
-
first_name
|
|
367
|
-
last_name
|
|
368
|
-
phone
|
|
369
|
-
picture
|
|
370
|
-
b2cId
|
|
371
|
-
googleId
|
|
372
|
-
appleId
|
|
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.
|
|
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.
|
|
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",
|