@mindline/sync 1.0.46 → 1.0.48

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/.vs/slnx.sqlite CHANGED
Binary file
package/index.ts CHANGED
@@ -1557,7 +1557,7 @@ function processReturnedAdmins(workspace: Workspace, ii: InitInfo, returnedAdmin
1557
1557
  }
1558
1558
  // refresh all the data available from the server
1559
1559
  user.oid = item.userId ? item.userId : item.email;
1560
- user.name = item.firstName;
1560
+ user.name = item.firstName ?? user.name;
1561
1561
  user.mail = item.email;
1562
1562
  user.tid = item.tenantId;
1563
1563
  // ensure this workspace tracks this user
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
3
  "type": "module",
4
- "version": "1.0.46",
4
+ "version": "1.0.48",
5
5
  "types": "index.d.ts",
6
6
  "exports": "./index.ts",
7
7
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",