@joystick.js/node-canary 0.0.0-canary.81 → 0.0.0-canary.82

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/app/index.js CHANGED
@@ -207,7 +207,7 @@ class App {
207
207
  });
208
208
  res.status(200).send(JSON.stringify({
209
209
  ...signup?.user || {},
210
- joystickToken: signup?.token,
210
+ joystickLoginToken: signup?.token,
211
211
  joystickLoginTokenExpiresAt: signup?.tokenExpiresAt
212
212
  }));
213
213
  });
@@ -220,7 +220,7 @@ class App {
220
220
  });
221
221
  res.status(200).send(JSON.stringify({
222
222
  ...login?.user || {},
223
- joystickToken: login?.token,
223
+ joystickLoginToken: login?.token,
224
224
  joystickLoginTokenExpiresAt: login?.tokenExpiresAt
225
225
  }));
226
226
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/node-canary",
3
- "version": "0.0.0-canary.81",
3
+ "version": "0.0.0-canary.82",
4
4
  "type": "module",
5
5
  "description": "A Node.js framework for building web apps.",
6
6
  "main": "./dist/index.js",