@loomcore/api 0.2.15 → 0.2.17

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.
@@ -107,7 +107,7 @@ export class AuthController {
107
107
  filters: { email: { eq: email.toLowerCase() } },
108
108
  });
109
109
  if (user) {
110
- await sendResetPasswordEmail(this.database, email, referer);
110
+ await sendResetPasswordEmail(this.database, email, referer, organization || undefined);
111
111
  }
112
112
  apiUtils.apiResponse(res, 200);
113
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomcore/api",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
4
4
  "private": false,
5
5
  "description": "Loom Core Api - An opinionated Node.js api using Typescript, Express, and MongoDb or PostgreSQL",
6
6
  "scripts": {
@@ -13,7 +13,7 @@
13
13
  "push": "git push",
14
14
  "publishMe": "npm publish --access public",
15
15
  "pub": "npm-run-all -s patch build push publishMe",
16
- "update-lib-versions": "npx --yes npm-check-updates -u -f @loomcore/common",
16
+ "update-lib-versions": "npx --yes npm-check-updates -u -f @loomcore/common --dep peer",
17
17
  "install-updated-libs": "npm i @loomcore/common",
18
18
  "update-libs": "npm-run-all -s update-lib-versions install-updated-libs",
19
19
  "typecheck": "tsc",
@@ -58,7 +58,7 @@
58
58
  "qs": "^6.15.2"
59
59
  },
60
60
  "peerDependencies": {
61
- "@loomcore/common": "^0.0.77",
61
+ "@loomcore/common": "^0.0.78",
62
62
  "@sinclair/typebox": "0.34.33",
63
63
  "cookie-parser": "^1.4.6",
64
64
  "cors": "^2.8.5",