@verdocs/js-sdk 4.2.20 → 4.2.21

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
@@ -328,12 +328,12 @@ interface IProfile {
328
328
  /** The unique ID of the profile */
329
329
  id: string;
330
330
  /**
331
- * The Verdocs back-end currently uses Auth0 for authentication. This value is a unique ID assigned by Auth0 to the
332
- * user. This is typically used to identify multiple profiles owned by a single user, but its implementation may
333
- * change in the future and developers should not develop code based on this field at this time.
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 "Realster" organization that all personal profiles are members of. */
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;
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
- * The Verdocs back-end currently uses Auth0 for authentication. This value is a unique ID assigned by Auth0 to the
332
- * user. This is typically used to identify multiple profiles owned by a single user, but its implementation may
333
- * change in the future and developers should not develop code based on this field at this time.
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 "Realster" organization that all personal profiles are members of. */
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;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "4.2.20",
3
+ "version": "4.2.21",
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.20",
3
+ "version": "4.2.21",
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",