@warlock.js/cascade 4.0.92 → 4.0.93
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/cjs/contracts/database-driver.contract.d.ts +118 -0
- package/cjs/contracts/database-driver.contract.d.ts.map +1 -1
- package/cjs/contracts/migration-driver.contract.d.ts +14 -0
- package/cjs/contracts/migration-driver.contract.d.ts.map +1 -1
- package/cjs/contracts/query-builder.contract.d.ts +410 -1
- package/cjs/contracts/query-builder.contract.d.ts.map +1 -1
- package/cjs/data-source/data-source-registry.d.ts +4 -0
- package/cjs/data-source/data-source-registry.d.ts.map +1 -1
- package/cjs/data-source/data-source-registry.js +7 -0
- package/cjs/data-source/data-source-registry.js.map +1 -1
- package/cjs/drivers/mongodb/mongodb-blueprint.d.ts.map +1 -0
- package/cjs/drivers/mongodb/mongodb-blueprint.js.map +1 -0
- package/{esm/drivers/mongo → cjs/drivers/mongodb}/mongodb-driver.d.ts +49 -0
- package/cjs/drivers/mongodb/mongodb-driver.d.ts.map +1 -0
- package/cjs/drivers/{mongo → mongodb}/mongodb-driver.js +125 -8
- package/cjs/drivers/mongodb/mongodb-driver.js.map +1 -0
- package/cjs/drivers/{mongo/mongo-id-generator.d.ts → mongodb/mongodb-id-generator.d.ts} +1 -1
- package/cjs/drivers/mongodb/mongodb-id-generator.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-id-generator.js → mongodb/mongodb-id-generator.js} +1 -1
- package/cjs/drivers/mongodb/mongodb-id-generator.js.map +1 -0
- package/cjs/drivers/{mongo/mongo-migration-driver.d.ts → mongodb/mongodb-migration-driver.d.ts} +10 -1
- package/cjs/drivers/mongodb/mongodb-migration-driver.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-migration-driver.js → mongodb/mongodb-migration-driver.js} +18 -1
- package/cjs/drivers/mongodb/mongodb-migration-driver.js.map +1 -0
- package/cjs/drivers/{mongo/mongo-query-builder.d.ts → mongodb/mongodb-query-builder.d.ts} +172 -4
- package/cjs/drivers/mongodb/mongodb-query-builder.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-query-builder.js → mongodb/mongodb-query-builder.js} +220 -14
- package/cjs/drivers/mongodb/mongodb-query-builder.js.map +1 -0
- package/{esm/drivers/mongo/mongo-query-operations.d.ts → cjs/drivers/mongodb/mongodb-query-operations.d.ts} +16 -16
- package/cjs/drivers/mongodb/mongodb-query-operations.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-query-operations.js → mongodb/mongodb-query-operations.js} +22 -22
- package/cjs/drivers/mongodb/mongodb-query-operations.js.map +1 -0
- package/cjs/drivers/{mongo/mongo-query-parser.d.ts → mongodb/mongodb-query-parser.d.ts} +2 -2
- package/cjs/drivers/mongodb/mongodb-query-parser.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-query-parser.js → mongodb/mongodb-query-parser.js} +87 -87
- package/cjs/drivers/mongodb/mongodb-query-parser.js.map +1 -0
- package/cjs/drivers/{mongo/mongo-sync-adapter.d.ts → mongodb/mongodb-sync-adapter.d.ts} +2 -2
- package/cjs/drivers/mongodb/mongodb-sync-adapter.d.ts.map +1 -0
- package/cjs/drivers/{mongo/mongo-sync-adapter.js → mongodb/mongodb-sync-adapter.js} +2 -2
- package/cjs/drivers/mongodb/mongodb-sync-adapter.js.map +1 -0
- package/{esm/drivers/mongo → cjs/drivers/mongodb}/types.d.ts +2 -2
- package/cjs/drivers/mongodb/types.d.ts.map +1 -0
- package/cjs/drivers/postgres/index.d.ts +16 -0
- package/cjs/drivers/postgres/index.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-blueprint.d.ts +64 -0
- package/cjs/drivers/postgres/postgres-blueprint.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-blueprint.js +121 -0
- package/cjs/drivers/postgres/postgres-blueprint.js.map +1 -0
- package/cjs/drivers/postgres/postgres-dialect.d.ts +135 -0
- package/cjs/drivers/postgres/postgres-dialect.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-dialect.js +245 -0
- package/cjs/drivers/postgres/postgres-dialect.js.map +1 -0
- package/cjs/drivers/postgres/postgres-driver.d.ts +360 -0
- package/cjs/drivers/postgres/postgres-driver.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-driver.js +763 -0
- package/cjs/drivers/postgres/postgres-driver.js.map +1 -0
- package/cjs/drivers/postgres/postgres-migration-driver.d.ts +297 -0
- package/cjs/drivers/postgres/postgres-migration-driver.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-migration-driver.js +578 -0
- package/cjs/drivers/postgres/postgres-migration-driver.js.map +1 -0
- package/cjs/drivers/postgres/postgres-query-builder.d.ts +824 -0
- package/cjs/drivers/postgres/postgres-query-builder.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-query-builder.js +1800 -0
- package/cjs/drivers/postgres/postgres-query-builder.js.map +1 -0
- package/cjs/drivers/postgres/postgres-query-parser.d.ts +308 -0
- package/cjs/drivers/postgres/postgres-query-parser.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-query-parser.js +706 -0
- package/cjs/drivers/postgres/postgres-query-parser.js.map +1 -0
- package/cjs/drivers/postgres/postgres-sync-adapter.d.ts +83 -0
- package/cjs/drivers/postgres/postgres-sync-adapter.d.ts.map +1 -0
- package/cjs/drivers/postgres/postgres-sync-adapter.js +197 -0
- package/cjs/drivers/postgres/postgres-sync-adapter.js.map +1 -0
- package/cjs/drivers/postgres/types.d.ts +142 -0
- package/cjs/drivers/postgres/types.d.ts.map +1 -0
- package/cjs/drivers/sql/index.d.ts +10 -0
- package/cjs/drivers/sql/index.d.ts.map +1 -0
- package/cjs/drivers/sql/sql-dialect.contract.d.ts +203 -0
- package/cjs/drivers/sql/sql-dialect.contract.d.ts.map +1 -0
- package/cjs/drivers/sql/sql-types.d.ts +202 -0
- package/cjs/drivers/sql/sql-types.d.ts.map +1 -0
- package/cjs/index.d.ts +9 -6
- package/cjs/index.d.ts.map +1 -1
- package/cjs/index.js +1 -1
- package/cjs/migration/migration-runner.d.ts.map +1 -1
- package/cjs/migration/migration-runner.js +3 -0
- package/cjs/migration/migration-runner.js.map +1 -1
- package/cjs/model/model.d.ts +236 -1
- package/cjs/model/model.d.ts.map +1 -1
- package/cjs/model/model.js +203 -4
- package/cjs/model/model.js.map +1 -1
- package/cjs/relations/helpers.d.ts +156 -0
- package/cjs/relations/helpers.d.ts.map +1 -0
- package/cjs/relations/helpers.js +197 -0
- package/cjs/relations/helpers.js.map +1 -0
- package/cjs/relations/index.d.ts +33 -0
- package/cjs/relations/index.d.ts.map +1 -0
- package/cjs/relations/pivot-operations.d.ts +160 -0
- package/cjs/relations/pivot-operations.d.ts.map +1 -0
- package/cjs/relations/pivot-operations.js +293 -0
- package/cjs/relations/pivot-operations.js.map +1 -0
- package/cjs/relations/relation-loader.d.ts +194 -0
- package/cjs/relations/relation-loader.d.ts.map +1 -0
- package/cjs/relations/relation-loader.js +466 -0
- package/cjs/relations/relation-loader.js.map +1 -0
- package/cjs/relations/types.d.ts +280 -0
- package/cjs/relations/types.d.ts.map +1 -0
- package/cjs/sync/model-sync-operation.js +1 -1
- package/cjs/sync/model-sync-operation.js.map +1 -1
- package/cjs/utils/connect-to-database.d.ts.map +1 -1
- package/cjs/utils/connect-to-database.js +15 -3
- package/cjs/utils/connect-to-database.js.map +1 -1
- package/cjs/utils/define-model.d.ts +51 -29
- package/cjs/utils/define-model.d.ts.map +1 -1
- package/cjs/validation/rules/database-model-rule.js +1 -1
- package/cjs/validation/rules/database-model-rule.js.map +1 -1
- package/esm/contracts/database-driver.contract.d.ts +118 -0
- package/esm/contracts/database-driver.contract.d.ts.map +1 -1
- package/esm/contracts/migration-driver.contract.d.ts +14 -0
- package/esm/contracts/migration-driver.contract.d.ts.map +1 -1
- package/esm/contracts/query-builder.contract.d.ts +410 -1
- package/esm/contracts/query-builder.contract.d.ts.map +1 -1
- package/esm/data-source/data-source-registry.d.ts +4 -0
- package/esm/data-source/data-source-registry.d.ts.map +1 -1
- package/esm/data-source/data-source-registry.js +7 -0
- package/esm/data-source/data-source-registry.js.map +1 -1
- package/esm/drivers/mongodb/mongodb-blueprint.d.ts.map +1 -0
- package/esm/drivers/mongodb/mongodb-blueprint.js.map +1 -0
- package/{cjs/drivers/mongo → esm/drivers/mongodb}/mongodb-driver.d.ts +49 -0
- package/esm/drivers/mongodb/mongodb-driver.d.ts.map +1 -0
- package/esm/drivers/{mongo → mongodb}/mongodb-driver.js +121 -4
- package/esm/drivers/mongodb/mongodb-driver.js.map +1 -0
- package/esm/drivers/{mongo/mongo-id-generator.d.ts → mongodb/mongodb-id-generator.d.ts} +1 -1
- package/esm/drivers/mongodb/mongodb-id-generator.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-id-generator.js → mongodb/mongodb-id-generator.js} +1 -1
- package/esm/drivers/mongodb/mongodb-id-generator.js.map +1 -0
- package/esm/drivers/{mongo/mongo-migration-driver.d.ts → mongodb/mongodb-migration-driver.d.ts} +10 -1
- package/esm/drivers/mongodb/mongodb-migration-driver.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-migration-driver.js → mongodb/mongodb-migration-driver.js} +18 -1
- package/esm/drivers/mongodb/mongodb-migration-driver.js.map +1 -0
- package/esm/drivers/{mongo/mongo-query-builder.d.ts → mongodb/mongodb-query-builder.d.ts} +172 -4
- package/esm/drivers/mongodb/mongodb-query-builder.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-query-builder.js → mongodb/mongodb-query-builder.js} +218 -12
- package/esm/drivers/mongodb/mongodb-query-builder.js.map +1 -0
- package/{cjs/drivers/mongo/mongo-query-operations.d.ts → esm/drivers/mongodb/mongodb-query-operations.d.ts} +16 -16
- package/esm/drivers/mongodb/mongodb-query-operations.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-query-operations.js → mongodb/mongodb-query-operations.js} +22 -22
- package/esm/drivers/mongodb/mongodb-query-operations.js.map +1 -0
- package/esm/drivers/{mongo/mongo-query-parser.d.ts → mongodb/mongodb-query-parser.d.ts} +2 -2
- package/esm/drivers/mongodb/mongodb-query-parser.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-query-parser.js → mongodb/mongodb-query-parser.js} +87 -87
- package/esm/drivers/mongodb/mongodb-query-parser.js.map +1 -0
- package/esm/drivers/{mongo/mongo-sync-adapter.d.ts → mongodb/mongodb-sync-adapter.d.ts} +2 -2
- package/esm/drivers/mongodb/mongodb-sync-adapter.d.ts.map +1 -0
- package/esm/drivers/{mongo/mongo-sync-adapter.js → mongodb/mongodb-sync-adapter.js} +2 -2
- package/esm/drivers/mongodb/mongodb-sync-adapter.js.map +1 -0
- package/{cjs/drivers/mongo → esm/drivers/mongodb}/types.d.ts +2 -2
- package/esm/drivers/mongodb/types.d.ts.map +1 -0
- package/esm/drivers/postgres/index.d.ts +16 -0
- package/esm/drivers/postgres/index.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-blueprint.d.ts +64 -0
- package/esm/drivers/postgres/postgres-blueprint.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-blueprint.js +121 -0
- package/esm/drivers/postgres/postgres-blueprint.js.map +1 -0
- package/esm/drivers/postgres/postgres-dialect.d.ts +135 -0
- package/esm/drivers/postgres/postgres-dialect.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-dialect.js +245 -0
- package/esm/drivers/postgres/postgres-dialect.js.map +1 -0
- package/esm/drivers/postgres/postgres-driver.d.ts +360 -0
- package/esm/drivers/postgres/postgres-driver.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-driver.js +763 -0
- package/esm/drivers/postgres/postgres-driver.js.map +1 -0
- package/esm/drivers/postgres/postgres-migration-driver.d.ts +297 -0
- package/esm/drivers/postgres/postgres-migration-driver.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-migration-driver.js +578 -0
- package/esm/drivers/postgres/postgres-migration-driver.js.map +1 -0
- package/esm/drivers/postgres/postgres-query-builder.d.ts +824 -0
- package/esm/drivers/postgres/postgres-query-builder.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-query-builder.js +1800 -0
- package/esm/drivers/postgres/postgres-query-builder.js.map +1 -0
- package/esm/drivers/postgres/postgres-query-parser.d.ts +308 -0
- package/esm/drivers/postgres/postgres-query-parser.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-query-parser.js +706 -0
- package/esm/drivers/postgres/postgres-query-parser.js.map +1 -0
- package/esm/drivers/postgres/postgres-sync-adapter.d.ts +83 -0
- package/esm/drivers/postgres/postgres-sync-adapter.d.ts.map +1 -0
- package/esm/drivers/postgres/postgres-sync-adapter.js +197 -0
- package/esm/drivers/postgres/postgres-sync-adapter.js.map +1 -0
- package/esm/drivers/postgres/types.d.ts +142 -0
- package/esm/drivers/postgres/types.d.ts.map +1 -0
- package/esm/drivers/sql/index.d.ts +10 -0
- package/esm/drivers/sql/index.d.ts.map +1 -0
- package/esm/drivers/sql/sql-dialect.contract.d.ts +203 -0
- package/esm/drivers/sql/sql-dialect.contract.d.ts.map +1 -0
- package/esm/drivers/sql/sql-types.d.ts +202 -0
- package/esm/drivers/sql/sql-types.d.ts.map +1 -0
- package/esm/index.d.ts +9 -6
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/migration/migration-runner.d.ts.map +1 -1
- package/esm/migration/migration-runner.js +3 -0
- package/esm/migration/migration-runner.js.map +1 -1
- package/esm/model/model.d.ts +236 -1
- package/esm/model/model.d.ts.map +1 -1
- package/esm/model/model.js +203 -4
- package/esm/model/model.js.map +1 -1
- package/esm/relations/helpers.d.ts +156 -0
- package/esm/relations/helpers.d.ts.map +1 -0
- package/esm/relations/helpers.js +197 -0
- package/esm/relations/helpers.js.map +1 -0
- package/esm/relations/index.d.ts +33 -0
- package/esm/relations/index.d.ts.map +1 -0
- package/esm/relations/pivot-operations.d.ts +160 -0
- package/esm/relations/pivot-operations.d.ts.map +1 -0
- package/esm/relations/pivot-operations.js +293 -0
- package/esm/relations/pivot-operations.js.map +1 -0
- package/esm/relations/relation-loader.d.ts +194 -0
- package/esm/relations/relation-loader.d.ts.map +1 -0
- package/esm/relations/relation-loader.js +466 -0
- package/esm/relations/relation-loader.js.map +1 -0
- package/esm/relations/types.d.ts +280 -0
- package/esm/relations/types.d.ts.map +1 -0
- package/esm/sync/model-sync-operation.js +1 -1
- package/esm/sync/model-sync-operation.js.map +1 -1
- package/esm/utils/connect-to-database.d.ts.map +1 -1
- package/esm/utils/connect-to-database.js +15 -3
- package/esm/utils/connect-to-database.js.map +1 -1
- package/esm/utils/define-model.d.ts +51 -29
- package/esm/utils/define-model.d.ts.map +1 -1
- package/esm/validation/rules/database-model-rule.js +1 -1
- package/esm/validation/rules/database-model-rule.js.map +1 -1
- package/package.json +4 -4
- package/cjs/drivers/mongo/mongo-id-generator.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-id-generator.js.map +0 -1
- package/cjs/drivers/mongo/mongo-migration-driver.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-migration-driver.js.map +0 -1
- package/cjs/drivers/mongo/mongo-query-builder.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-query-builder.js.map +0 -1
- package/cjs/drivers/mongo/mongo-query-operations.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-query-operations.js.map +0 -1
- package/cjs/drivers/mongo/mongo-query-parser.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-query-parser.js.map +0 -1
- package/cjs/drivers/mongo/mongo-sync-adapter.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongo-sync-adapter.js.map +0 -1
- package/cjs/drivers/mongo/mongodb-blueprint.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongodb-blueprint.js.map +0 -1
- package/cjs/drivers/mongo/mongodb-driver.d.ts.map +0 -1
- package/cjs/drivers/mongo/mongodb-driver.js.map +0 -1
- package/cjs/drivers/mongo/types.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-id-generator.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-id-generator.js.map +0 -1
- package/esm/drivers/mongo/mongo-migration-driver.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-migration-driver.js.map +0 -1
- package/esm/drivers/mongo/mongo-query-builder.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-query-builder.js.map +0 -1
- package/esm/drivers/mongo/mongo-query-operations.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-query-operations.js.map +0 -1
- package/esm/drivers/mongo/mongo-query-parser.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-query-parser.js.map +0 -1
- package/esm/drivers/mongo/mongo-sync-adapter.d.ts.map +0 -1
- package/esm/drivers/mongo/mongo-sync-adapter.js.map +0 -1
- package/esm/drivers/mongo/mongodb-blueprint.d.ts.map +0 -1
- package/esm/drivers/mongo/mongodb-blueprint.js.map +0 -1
- package/esm/drivers/mongo/mongodb-driver.d.ts.map +0 -1
- package/esm/drivers/mongo/mongodb-driver.js.map +0 -1
- package/esm/drivers/mongo/types.d.ts.map +0 -1
- /package/cjs/drivers/{mongo → mongodb}/mongodb-blueprint.d.ts +0 -0
- /package/cjs/drivers/{mongo → mongodb}/mongodb-blueprint.js +0 -0
- /package/esm/drivers/{mongo → mongodb}/mongodb-blueprint.d.ts +0 -0
- /package/esm/drivers/{mongo → mongodb}/mongodb-blueprint.js +0 -0
|
@@ -10,7 +10,7 @@ import type { Operation, PipelineStage } from "./types";
|
|
|
10
10
|
* Each operation consists of:
|
|
11
11
|
* - **stage**: The MongoDB aggregation stage name (e.g., "$match", "$project")
|
|
12
12
|
* - **type**: An internal identifier for the operation type
|
|
13
|
-
* - **
|
|
13
|
+
* - **data**: The data associated with the operation
|
|
14
14
|
* - **mergeable**: Whether this operation can be merged with adjacent similar operations
|
|
15
15
|
*
|
|
16
16
|
* @internal This class is for internal use within the MongoDB driver
|
|
@@ -29,8 +29,8 @@ import type { Operation, PipelineStage } from "./types";
|
|
|
29
29
|
* // Operations array is now populated
|
|
30
30
|
* console.log(operations);
|
|
31
31
|
* // [
|
|
32
|
-
* // { stage: "$match", mergeable: true, type: "whereIn",
|
|
33
|
-
* // { stage: "$project", mergeable: true, type: "select",
|
|
32
|
+
* // { stage: "$match", mergeable: true, type: "whereIn", data: {...} },
|
|
33
|
+
* // { stage: "$project", mergeable: true, type: "select", data: {...} }
|
|
34
34
|
* // ]
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
@@ -62,7 +62,7 @@ export declare class MongoQueryOperations {
|
|
|
62
62
|
* by the parser for optimization.
|
|
63
63
|
*
|
|
64
64
|
* @param type - The operation type identifier (e.g., "where", "whereIn", "whereLike")
|
|
65
|
-
* @param
|
|
65
|
+
* @param data - The operation data data containing filter criteria
|
|
66
66
|
* @param mergeable - Whether this operation can be merged with adjacent match operations (default: true)
|
|
67
67
|
*
|
|
68
68
|
* @example
|
|
@@ -77,7 +77,7 @@ export declare class MongoQueryOperations {
|
|
|
77
77
|
* helper.addMatchOperation("having", { field: "count", operator: ">", value: 5 }, false);
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
|
-
addMatchOperation(type: string,
|
|
80
|
+
addMatchOperation(type: string, data: Record<string, unknown>, mergeable?: boolean): void;
|
|
81
81
|
/**
|
|
82
82
|
* Adds a $project stage operation to the pipeline.
|
|
83
83
|
*
|
|
@@ -86,7 +86,7 @@ export declare class MongoQueryOperations {
|
|
|
86
86
|
* used to compute new fields or reshape documents.
|
|
87
87
|
*
|
|
88
88
|
* @param type - The operation type identifier (e.g., "select", "deselect", "selectRaw")
|
|
89
|
-
* @param
|
|
89
|
+
* @param data - The operation data data containing projection specifications
|
|
90
90
|
* @param mergeable - Whether this operation can be merged with adjacent project operations (default: true)
|
|
91
91
|
*
|
|
92
92
|
* @example
|
|
@@ -103,7 +103,7 @@ export declare class MongoQueryOperations {
|
|
|
103
103
|
* });
|
|
104
104
|
* ```
|
|
105
105
|
*/
|
|
106
|
-
addProjectOperation(type: string,
|
|
106
|
+
addProjectOperation(type: string, data: Record<string, unknown>, mergeable?: boolean): void;
|
|
107
107
|
/**
|
|
108
108
|
* Adds a $sort stage operation to the pipeline.
|
|
109
109
|
*
|
|
@@ -112,7 +112,7 @@ export declare class MongoQueryOperations {
|
|
|
112
112
|
* sorting.
|
|
113
113
|
*
|
|
114
114
|
* @param type - The operation type identifier (e.g., "orderBy", "orderByRandom")
|
|
115
|
-
* @param
|
|
115
|
+
* @param data - The operation data data containing sort specifications
|
|
116
116
|
* @param mergeable - Whether this operation can be merged with adjacent sort operations (default: true)
|
|
117
117
|
*
|
|
118
118
|
* @example
|
|
@@ -129,7 +129,7 @@ export declare class MongoQueryOperations {
|
|
|
129
129
|
* });
|
|
130
130
|
* ```
|
|
131
131
|
*/
|
|
132
|
-
addSortOperation(type: string,
|
|
132
|
+
addSortOperation(type: string, data: Record<string, unknown>, mergeable?: boolean): void;
|
|
133
133
|
/**
|
|
134
134
|
* Adds a $group stage operation to the pipeline.
|
|
135
135
|
*
|
|
@@ -138,7 +138,7 @@ export declare class MongoQueryOperations {
|
|
|
138
138
|
* are typically not mergeable as they represent distinct aggregation boundaries.
|
|
139
139
|
*
|
|
140
140
|
* @param type - The operation type identifier (e.g., "groupBy", "distinct")
|
|
141
|
-
* @param
|
|
141
|
+
* @param data - The operation data data containing grouping specifications
|
|
142
142
|
* @param mergeable - Whether this operation can be merged with adjacent group operations (default: false)
|
|
143
143
|
*
|
|
144
144
|
* @example
|
|
@@ -155,7 +155,7 @@ export declare class MongoQueryOperations {
|
|
|
155
155
|
* helper.addGroupOperation("distinct", { fields: ["email"] });
|
|
156
156
|
* ```
|
|
157
157
|
*/
|
|
158
|
-
addGroupOperation(type: string,
|
|
158
|
+
addGroupOperation(type: string, data: Record<string, unknown>, mergeable?: boolean): void;
|
|
159
159
|
/**
|
|
160
160
|
* Adds a $lookup stage operation to the pipeline.
|
|
161
161
|
*
|
|
@@ -164,7 +164,7 @@ export declare class MongoQueryOperations {
|
|
|
164
164
|
* distinct join operation.
|
|
165
165
|
*
|
|
166
166
|
* @param type - The operation type identifier (typically "join")
|
|
167
|
-
* @param
|
|
167
|
+
* @param data - The operation data data containing join specifications
|
|
168
168
|
*
|
|
169
169
|
* @example
|
|
170
170
|
* ```typescript
|
|
@@ -187,7 +187,7 @@ export declare class MongoQueryOperations {
|
|
|
187
187
|
* });
|
|
188
188
|
* ```
|
|
189
189
|
*/
|
|
190
|
-
addLookupOperation(type: string,
|
|
190
|
+
addLookupOperation(type: string, data: Record<string, unknown>): void;
|
|
191
191
|
/**
|
|
192
192
|
* Adds a generic stage operation to the pipeline.
|
|
193
193
|
*
|
|
@@ -197,7 +197,7 @@ export declare class MongoQueryOperations {
|
|
|
197
197
|
*
|
|
198
198
|
* @param stage - The MongoDB aggregation stage name (e.g., "$limit", "$skip", "$unwind")
|
|
199
199
|
* @param type - The operation type identifier
|
|
200
|
-
* @param
|
|
200
|
+
* @param data - The operation data data
|
|
201
201
|
* @param mergeable - Whether this operation can be merged with adjacent operations (default: false)
|
|
202
202
|
*
|
|
203
203
|
* @example
|
|
@@ -221,6 +221,6 @@ export declare class MongoQueryOperations {
|
|
|
221
221
|
* });
|
|
222
222
|
* ```
|
|
223
223
|
*/
|
|
224
|
-
addOperation(stage: PipelineStage, type: string,
|
|
224
|
+
addOperation(stage: PipelineStage, type: string, data: Record<string, unknown>, mergeable?: boolean): void;
|
|
225
225
|
}
|
|
226
|
-
//# sourceMappingURL=
|
|
226
|
+
//# sourceMappingURL=mongodb-query-operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongodb-query-operations.d.ts","sourceRoot":"","sources":["../../../src/drivers/mongodb/mongodb-query-operations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,qBAAa,oBAAoB;IAiBZ,OAAO,CAAC,UAAU;IAhBrC;;;;;;;;;;;;;;;OAeG;gBACwB,UAAU,EAAE,SAAS,EAAE;IAE3C,aAAa,CAAC,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI;IAInD;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACI,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,UAAO,GAAG,IAAI;IAS7F;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACI,mBAAmB,CACxB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,SAAS,UAAO,GACf,IAAI;IASP;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACI,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,UAAO,GAAG,IAAI;IAS5F;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACI,iBAAiB,CACtB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,SAAS,UAAQ,GAChB,IAAI;IASP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;IACI,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI;IAS5E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACI,YAAY,CACjB,KAAK,EAAE,aAAa,EACpB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,SAAS,UAAQ,GAChB,IAAI;CAQR"}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* Each operation consists of:
|
|
10
10
|
* - **stage**: The MongoDB aggregation stage name (e.g., "$match", "$project")
|
|
11
11
|
* - **type**: An internal identifier for the operation type
|
|
12
|
-
* - **
|
|
12
|
+
* - **data**: The data associated with the operation
|
|
13
13
|
* - **mergeable**: Whether this operation can be merged with adjacent similar operations
|
|
14
14
|
*
|
|
15
15
|
* @internal This class is for internal use within the MongoDB driver
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
* // Operations array is now populated
|
|
29
29
|
* console.log(operations);
|
|
30
30
|
* // [
|
|
31
|
-
* // { stage: "$match", mergeable: true, type: "whereIn",
|
|
32
|
-
* // { stage: "$project", mergeable: true, type: "select",
|
|
31
|
+
* // { stage: "$match", mergeable: true, type: "whereIn", data: {...} },
|
|
32
|
+
* // { stage: "$project", mergeable: true, type: "select", data: {...} }
|
|
33
33
|
* // ]
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
@@ -65,7 +65,7 @@ class MongoQueryOperations {
|
|
|
65
65
|
* by the parser for optimization.
|
|
66
66
|
*
|
|
67
67
|
* @param type - The operation type identifier (e.g., "where", "whereIn", "whereLike")
|
|
68
|
-
* @param
|
|
68
|
+
* @param data - The operation data data containing filter criteria
|
|
69
69
|
* @param mergeable - Whether this operation can be merged with adjacent match operations (default: true)
|
|
70
70
|
*
|
|
71
71
|
* @example
|
|
@@ -80,12 +80,12 @@ class MongoQueryOperations {
|
|
|
80
80
|
* helper.addMatchOperation("having", { field: "count", operator: ">", value: 5 }, false);
|
|
81
81
|
* ```
|
|
82
82
|
*/
|
|
83
|
-
addMatchOperation(type,
|
|
83
|
+
addMatchOperation(type, data, mergeable = true) {
|
|
84
84
|
this.operations.push({
|
|
85
85
|
stage: "$match",
|
|
86
86
|
mergeable,
|
|
87
87
|
type,
|
|
88
|
-
|
|
88
|
+
data,
|
|
89
89
|
});
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
@@ -96,7 +96,7 @@ class MongoQueryOperations {
|
|
|
96
96
|
* used to compute new fields or reshape documents.
|
|
97
97
|
*
|
|
98
98
|
* @param type - The operation type identifier (e.g., "select", "deselect", "selectRaw")
|
|
99
|
-
* @param
|
|
99
|
+
* @param data - The operation data data containing projection specifications
|
|
100
100
|
* @param mergeable - Whether this operation can be merged with adjacent project operations (default: true)
|
|
101
101
|
*
|
|
102
102
|
* @example
|
|
@@ -113,12 +113,12 @@ class MongoQueryOperations {
|
|
|
113
113
|
* });
|
|
114
114
|
* ```
|
|
115
115
|
*/
|
|
116
|
-
addProjectOperation(type,
|
|
116
|
+
addProjectOperation(type, data, mergeable = true) {
|
|
117
117
|
this.operations.push({
|
|
118
118
|
stage: "$project",
|
|
119
119
|
mergeable,
|
|
120
120
|
type,
|
|
121
|
-
|
|
121
|
+
data,
|
|
122
122
|
});
|
|
123
123
|
}
|
|
124
124
|
/**
|
|
@@ -129,7 +129,7 @@ class MongoQueryOperations {
|
|
|
129
129
|
* sorting.
|
|
130
130
|
*
|
|
131
131
|
* @param type - The operation type identifier (e.g., "orderBy", "orderByRandom")
|
|
132
|
-
* @param
|
|
132
|
+
* @param data - The operation data data containing sort specifications
|
|
133
133
|
* @param mergeable - Whether this operation can be merged with adjacent sort operations (default: true)
|
|
134
134
|
*
|
|
135
135
|
* @example
|
|
@@ -146,12 +146,12 @@ class MongoQueryOperations {
|
|
|
146
146
|
* });
|
|
147
147
|
* ```
|
|
148
148
|
*/
|
|
149
|
-
addSortOperation(type,
|
|
149
|
+
addSortOperation(type, data, mergeable = true) {
|
|
150
150
|
this.operations.push({
|
|
151
151
|
stage: "$sort",
|
|
152
152
|
mergeable,
|
|
153
153
|
type,
|
|
154
|
-
|
|
154
|
+
data,
|
|
155
155
|
});
|
|
156
156
|
}
|
|
157
157
|
/**
|
|
@@ -162,7 +162,7 @@ class MongoQueryOperations {
|
|
|
162
162
|
* are typically not mergeable as they represent distinct aggregation boundaries.
|
|
163
163
|
*
|
|
164
164
|
* @param type - The operation type identifier (e.g., "groupBy", "distinct")
|
|
165
|
-
* @param
|
|
165
|
+
* @param data - The operation data data containing grouping specifications
|
|
166
166
|
* @param mergeable - Whether this operation can be merged with adjacent group operations (default: false)
|
|
167
167
|
*
|
|
168
168
|
* @example
|
|
@@ -179,12 +179,12 @@ class MongoQueryOperations {
|
|
|
179
179
|
* helper.addGroupOperation("distinct", { fields: ["email"] });
|
|
180
180
|
* ```
|
|
181
181
|
*/
|
|
182
|
-
addGroupOperation(type,
|
|
182
|
+
addGroupOperation(type, data, mergeable = false) {
|
|
183
183
|
this.operations.push({
|
|
184
184
|
stage: "$group",
|
|
185
185
|
mergeable,
|
|
186
186
|
type,
|
|
187
|
-
|
|
187
|
+
data,
|
|
188
188
|
});
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
@@ -195,7 +195,7 @@ class MongoQueryOperations {
|
|
|
195
195
|
* distinct join operation.
|
|
196
196
|
*
|
|
197
197
|
* @param type - The operation type identifier (typically "join")
|
|
198
|
-
* @param
|
|
198
|
+
* @param data - The operation data data containing join specifications
|
|
199
199
|
*
|
|
200
200
|
* @example
|
|
201
201
|
* ```typescript
|
|
@@ -218,12 +218,12 @@ class MongoQueryOperations {
|
|
|
218
218
|
* });
|
|
219
219
|
* ```
|
|
220
220
|
*/
|
|
221
|
-
addLookupOperation(type,
|
|
221
|
+
addLookupOperation(type, data) {
|
|
222
222
|
this.operations.push({
|
|
223
223
|
stage: "$lookup",
|
|
224
224
|
mergeable: false,
|
|
225
225
|
type,
|
|
226
|
-
|
|
226
|
+
data,
|
|
227
227
|
});
|
|
228
228
|
}
|
|
229
229
|
/**
|
|
@@ -235,7 +235,7 @@ class MongoQueryOperations {
|
|
|
235
235
|
*
|
|
236
236
|
* @param stage - The MongoDB aggregation stage name (e.g., "$limit", "$skip", "$unwind")
|
|
237
237
|
* @param type - The operation type identifier
|
|
238
|
-
* @param
|
|
238
|
+
* @param data - The operation data data
|
|
239
239
|
* @param mergeable - Whether this operation can be merged with adjacent operations (default: false)
|
|
240
240
|
*
|
|
241
241
|
* @example
|
|
@@ -259,12 +259,12 @@ class MongoQueryOperations {
|
|
|
259
259
|
* });
|
|
260
260
|
* ```
|
|
261
261
|
*/
|
|
262
|
-
addOperation(stage, type,
|
|
262
|
+
addOperation(stage, type, data, mergeable = false) {
|
|
263
263
|
this.operations.push({
|
|
264
264
|
stage,
|
|
265
265
|
mergeable,
|
|
266
266
|
type,
|
|
267
|
-
|
|
267
|
+
data,
|
|
268
268
|
});
|
|
269
269
|
}
|
|
270
|
-
}exports.MongoQueryOperations=MongoQueryOperations;//# sourceMappingURL=
|
|
270
|
+
}exports.MongoQueryOperations=MongoQueryOperations;//# sourceMappingURL=mongodb-query-operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongodb-query-operations.js","sources":["../../../src/drivers/mongodb/mongodb-query-operations.ts"],"sourcesContent":[null],"names":[],"mappings":"aAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCG;MACU,oBAAoB,CAAA;AAiBJ,IAAA,UAAA,CAAA;AAhB3B;;;;;;;;;;;;;;;AAeG;AACH,IAAA,WAAA,CAA2B,UAAuB,EAAA;QAAvB,IAAU,CAAA,UAAA,GAAV,UAAU,CAAa;KAAI;AAE/C,IAAA,aAAa,CAAC,UAAuB,EAAA;AAC1C,QAAA,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;KAC9B;AAED;;;;;;;;;;;;;;;;;;;;;;AAsBG;AACI,IAAA,iBAAiB,CAAC,IAAY,EAAE,IAA6B,EAAE,SAAS,GAAG,IAAI,EAAA;AACpF,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;AACnB,YAAA,KAAK,EAAE,QAAQ;YACf,SAAS;YACT,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AAED;;;;;;;;;;;;;;;;;;;;;;;;AAwBG;AACI,IAAA,mBAAmB,CACxB,IAAY,EACZ,IAA6B,EAC7B,SAAS,GAAG,IAAI,EAAA;AAEhB,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;AACnB,YAAA,KAAK,EAAE,UAAU;YACjB,SAAS;YACT,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AAED;;;;;;;;;;;;;;;;;;;;;;;;AAwBG;AACI,IAAA,gBAAgB,CAAC,IAAY,EAAE,IAA6B,EAAE,SAAS,GAAG,IAAI,EAAA;AACnF,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;AACnB,YAAA,KAAK,EAAE,OAAO;YACd,SAAS;YACT,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AAED;;;;;;;;;;;;;;;;;;;;;;;;AAwBG;AACI,IAAA,iBAAiB,CACtB,IAAY,EACZ,IAA6B,EAC7B,SAAS,GAAG,KAAK,EAAA;AAEjB,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;AACnB,YAAA,KAAK,EAAE,QAAQ;YACf,SAAS;YACT,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8BG;IACI,kBAAkB,CAAC,IAAY,EAAE,IAA6B,EAAA;AACnE,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;AACnB,YAAA,KAAK,EAAE,SAAS;AAChB,YAAA,SAAS,EAAE,KAAK;YAChB,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCG;IACI,YAAY,CACjB,KAAoB,EACpB,IAAY,EACZ,IAA6B,EAC7B,SAAS,GAAG,KAAK,EAAA;AAEjB,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;YACnB,KAAK;YACL,SAAS;YACT,IAAI;YACJ,IAAI;AACL,SAAA,CAAC,CAAC;KACJ;AACF"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Collection } from "mongodb";
|
|
2
|
-
import type { MongoQueryBuilder } from "./
|
|
2
|
+
import type { MongoQueryBuilder } from "./mongodb-query-builder";
|
|
3
3
|
import type { Operation } from "./types";
|
|
4
4
|
/**
|
|
5
5
|
* Options for configuring the MongoDB query parser.
|
|
@@ -259,4 +259,4 @@ export declare class MongoQueryParser {
|
|
|
259
259
|
*/
|
|
260
260
|
private buildLookupStage;
|
|
261
261
|
}
|
|
262
|
-
//# sourceMappingURL=
|
|
262
|
+
//# sourceMappingURL=mongodb-query-parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongodb-query-parser.d.ts","sourceRoot":"","sources":["../../../src/drivers/mongodb/mongodb-query-parser.ts"],"names":[],"mappings":"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"}
|