@zintrust/core 0.4.42 → 0.4.49
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/package.json +2 -2
- package/src/boot/bootstrap.js +9 -3
- package/src/boot/registry/runtime.d.ts.map +1 -1
- package/src/boot/registry/runtime.js +13 -65
- package/src/cli/commands/DebuggerCommands.d.ts.map +1 -1
- package/src/cli/commands/DebuggerCommands.js +128 -46
- package/src/cli/commands/MigrateCommand.js +1 -1
- package/src/config/database.d.ts.map +1 -1
- package/src/config/database.js +7 -1
- package/src/functions/cloudflare.d.ts.map +1 -1
- package/src/functions/cloudflare.js +8 -27
- package/src/index.d.ts +2 -1
- package/src/index.d.ts.map +1 -1
- package/src/index.js +5 -4
- package/src/orm/Database.d.ts +1 -0
- package/src/orm/Database.d.ts.map +1 -1
- package/src/orm/Database.js +21 -2
- package/src/orm/DatabaseRuntimeRegistration.d.ts.map +1 -1
- package/src/orm/DatabaseRuntimeRegistration.js +9 -3
- package/src/orm/Model.d.ts +2 -1
- package/src/orm/Model.d.ts.map +1 -1
- package/src/orm/Model.js +68 -7
- package/src/orm/RelationBootstrapDiagnostics.d.ts +21 -0
- package/src/orm/RelationBootstrapDiagnostics.d.ts.map +1 -0
- package/src/orm/RelationBootstrapDiagnostics.js +102 -0
- package/src/runtime/plugins/system-debugger-runtime.d.ts.map +1 -1
- package/src/zintrust.plugins.d.ts +3 -7
- package/src/zintrust.plugins.d.ts.map +1 -1
- package/src/zintrust.plugins.js +3 -9
- package/src/zintrust.plugins.wg.d.ts +0 -1
- package/src/zintrust.plugins.wg.d.ts.map +1 -1
- package/src/zintrust.plugins.wg.js +0 -3
- package/src/zintrust.runtime.d.ts +5 -2
- package/src/zintrust.runtime.d.ts.map +1 -1
- package/src/zintrust.runtime.js +5 -2
- package/src/zintrust.runtime.wg.d.ts +5 -2
- package/src/zintrust.runtime.wg.d.ts.map +1 -1
- package/src/zintrust.runtime.wg.js +5 -2
- package/src/zintrust.comon.d.ts +0 -9
- package/src/zintrust.comon.d.ts.map +0 -1
- package/src/zintrust.comon.js +0 -15
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"zintrust.comon.d.ts","sourceRoot":"","sources":["../../src/zintrust.comon.ts"],"names":[],"mappings":"AAQA,OAAO,mCAAmC,CAAC;AAC3C,OAAO,sCAAsC,CAAC;AAC9C,OAAO,yCAAyC,CAAC;AACjD,OAAO,uCAAuC,CAAC;AAC/C,OAAO,0CAA0C,CAAC;AAClD,OAAO,2CAA2C,CAAC;AACnD,OAAO,uCAAuC,CAAC;AAC/C,OAAO,yCAAyC,CAAC"}
|
package/src/zintrust.comon.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-restricted-imports */
|
|
2
|
-
// /**
|
|
3
|
-
// * ZinTrust comon plugin auto-imports
|
|
4
|
-
// *
|
|
5
|
-
// * This file is managed by `zin plugin install` and contains side-effect
|
|
6
|
-
// * imports that register optional adapters/drivers into core registries.
|
|
7
|
-
// */
|
|
8
|
-
import '../packages/db-d1/src/register.js';
|
|
9
|
-
import '../packages/db-mysql/src/register.js';
|
|
10
|
-
import '../packages/db-postgres/src/register.js';
|
|
11
|
-
import '../packages/db-sqlite/src/register.js';
|
|
12
|
-
import '../packages/db-sqlserver/src/register.js';
|
|
13
|
-
import '../packages/mail-sendgrid/src/register.js';
|
|
14
|
-
import '../packages/mail-smtp/src/register.js';
|
|
15
|
-
import '../packages/queue-redis/src/register.js';
|