@event-driven-io/pongo 0.17.0-beta.44 → 0.17.0-beta.46
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/cli.cjs +2 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +1 -2
- package/dist/cli.d.ts +1 -2
- package/dist/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/dist/cloudflare.d.cts +3 -437
- package/dist/cloudflare.d.ts +3 -437
- package/dist/index-C3pnS1S_.d.cts +719 -0
- package/dist/index-CavsdtMX.d.ts +719 -0
- package/dist/index-DiVn94pz.d.ts +9 -0
- package/dist/index-FXnldVnn.d.cts +9 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -719
- package/dist/index.d.ts +2 -719
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/pg.d.cts +3 -432
- package/dist/pg.d.ts +3 -432
- package/dist/shim.cjs +1 -0
- package/dist/shim.cjs.map +1 -1
- package/dist/shim.d.cts +2 -447
- package/dist/shim.d.ts +2 -447
- package/dist/shim.js +1 -0
- package/dist/shim.js.map +1 -1
- package/dist/sqlite3.d.cts +3 -437
- package/dist/sqlite3.d.ts +3 -437
- package/package.json +2 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { In as PongoCollectionSQLBuilder } from "./index-CavsdtMX.js";
|
|
2
|
+
import * as _$_event_driven_io_dumbo0 from "@event-driven-io/dumbo";
|
|
3
|
+
import { JSONSerializer } from "@event-driven-io/dumbo";
|
|
4
|
+
|
|
5
|
+
//#region src/storage/sqlite/core/sqlBuilder/index.d.ts
|
|
6
|
+
declare const pongoCollectionSQLiteMigrations: (collectionName: string) => _$_event_driven_io_dumbo0.SQLMigration[];
|
|
7
|
+
declare const sqliteSQLBuilder: (collectionName: string, serializer: JSONSerializer) => PongoCollectionSQLBuilder;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { sqliteSQLBuilder as n, pongoCollectionSQLiteMigrations as t };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { In as PongoCollectionSQLBuilder } from "./index-C3pnS1S_.cjs";
|
|
2
|
+
import * as _$_event_driven_io_dumbo0 from "@event-driven-io/dumbo";
|
|
3
|
+
import { JSONSerializer } from "@event-driven-io/dumbo";
|
|
4
|
+
|
|
5
|
+
//#region src/storage/sqlite/core/sqlBuilder/index.d.ts
|
|
6
|
+
declare const pongoCollectionSQLiteMigrations: (collectionName: string) => _$_event_driven_io_dumbo0.SQLMigration[];
|
|
7
|
+
declare const sqliteSQLBuilder: (collectionName: string, serializer: JSONSerializer) => PongoCollectionSQLBuilder;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { sqliteSQLBuilder as n, pongoCollectionSQLiteMigrations as t };
|
package/dist/index.cjs
CHANGED
|
@@ -1378,6 +1378,7 @@ const pongoClient = (options) => {
|
|
|
1378
1378
|
databaseName: dbName,
|
|
1379
1379
|
serializer,
|
|
1380
1380
|
errors,
|
|
1381
|
+
...schema?.autoMigration ? { schema: { autoMigration: schema.autoMigration } } : {},
|
|
1381
1382
|
cache: options?.cache ?? cache,
|
|
1382
1383
|
serialization
|
|
1383
1384
|
});
|