@saltcorn/db-common 0.8.0-beta.2 → 0.8.0-beta.3
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/multi-tenant.d.ts +1 -1
- package/dist/multi-tenant.js +1 -1
- package/package.json +1 -1
package/dist/multi-tenant.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { AsyncLocalStorage } from "async_hooks";
|
|
3
3
|
export declare const tenantNamespace: AsyncLocalStorage<unknown>;
|
|
4
4
|
/**
|
|
5
|
-
* set the connection object of the
|
|
5
|
+
* set the connection object of the multi-tenant
|
|
6
6
|
* @param connObjPara
|
|
7
7
|
*/
|
|
8
8
|
export declare const init: (connObjPara: any) => void;
|
package/dist/multi-tenant.js
CHANGED
|
@@ -11,7 +11,7 @@ const is_multi_tenant = true;
|
|
|
11
11
|
let connObj = null;
|
|
12
12
|
exports.tenantNamespace = new async_hooks_1.AsyncLocalStorage();
|
|
13
13
|
/**
|
|
14
|
-
* set the connection object of the
|
|
14
|
+
* set the connection object of the multi-tenant
|
|
15
15
|
* @param connObjPara
|
|
16
16
|
*/
|
|
17
17
|
const init = (connObjPara) => {
|