@dnax/core 0.75.1 → 0.75.5

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.
@@ -2362,7 +2362,7 @@ class useRest {
2362
2362
  let col = getCollection(collection, this.#tenant_id);
2363
2363
  if (!col) return fn.error(`Collection ${collection} not found`, 404);
2364
2364
  if (col?.customApi?.[action]) {
2365
- let result = await col?.customApi?.[action]({
2365
+ let result = await col?.actions?.[action]({
2366
2366
  error: fn.error,
2367
2367
  io: Cfg.io,
2368
2368
  session: sessionStorage(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.75.1",
3
+ "version": "0.75.5",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {},