@cripty2001/utils 0.0.57 → 0.0.58

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.
@@ -99,6 +99,7 @@ class Appserver {
99
99
  register(action, inputSchema, auth, handler) {
100
100
  if (this.registered.has(action))
101
101
  throw new Error(`Action ${action} is already registered`);
102
+ this.registered.add(action);
102
103
  this.app.post(`/exec/${action}`, express_1.default.raw({ type: 'application/vnd.msgpack' }), async (req, res) => {
103
104
  const { status, data } = await (async () => {
104
105
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cripty2001/utils",
3
- "version": "0.0.57",
3
+ "version": "0.0.58",
4
4
  "description": "Internal Set of utils. If you need them use them, otherwise go to the next package ;)",
5
5
  "homepage": "https://github.com/cripty2001/utils#readme",
6
6
  "bugs": {