propro-utils 1.5.52 → 1.5.53

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.
@@ -89,7 +89,6 @@ async function createDefaultFolders(folderSchema, accountId) {
89
89
  const folderPromises = defaultFolders.map(folder =>
90
90
  folderSchema.create({
91
91
  ...folder,
92
- id: uuidv4(),
93
92
  user_id: accountId,
94
93
  })
95
94
  );
@@ -151,7 +150,6 @@ const checkIfUserExists = async accountId => {
151
150
  foldersToCreate.map(folder =>
152
151
  folderSchema.create({
153
152
  ...folder,
154
- id: uuidv4(),
155
153
  user_id: accountId,
156
154
  })
157
155
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "propro-utils",
3
- "version": "1.5.52",
3
+ "version": "1.5.53",
4
4
  "description": "Auth middleware for propro-auth",
5
5
  "main": "src/index.js",
6
6
  "scripts": {