prisma-sql 1.66.1 → 1.67.0
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/generator.cjs +7504 -8007
- package/dist/generator.cjs.map +1 -1
- package/dist/generator.js +7504 -8007
- package/dist/generator.js.map +1 -1
- package/dist/index.cjs +797 -1326
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +797 -1326
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -65,7 +65,7 @@ declare function buildBatchSql(queries: Record<string, BatchQuery>, modelMap: Ma
|
|
|
65
65
|
aliases: string[];
|
|
66
66
|
};
|
|
67
67
|
declare function buildBatchCountSql(queries: BatchCountQuery[], modelMap: Map<string, Model>, models: Model[], dialect: SqlDialect): BatchResult;
|
|
68
|
-
declare function parseBatchCountResults(row: Record<string, unknown>,
|
|
68
|
+
declare function parseBatchCountResults(row: Record<string, unknown>, queryCount: number): number[];
|
|
69
69
|
declare function parseBatchResults(row: Record<string, unknown>, keys: string[], queries: Record<string, BatchQuery>, aliases?: string[], modelMap?: Map<string, Model>): Record<string, unknown>;
|
|
70
70
|
|
|
71
71
|
interface TransactionQuery {
|
|
@@ -194,8 +194,8 @@ declare function getRowTransformer(method: string): ((row: any) => any) | null;
|
|
|
194
194
|
declare function getOrPrepareStatement(client: any, sql: string): any;
|
|
195
195
|
declare function shouldSqliteUseGet(method: string): boolean;
|
|
196
196
|
declare function normalizeParams(params: unknown[]): unknown[];
|
|
197
|
-
declare function executePostgresQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any
|
|
198
|
-
declare function executeSqliteQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any
|
|
197
|
+
declare function executePostgresQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any, allModels: readonly any[]): Promise<unknown[]>;
|
|
198
|
+
declare function executeSqliteQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any, allModels: readonly any[]): unknown[];
|
|
199
199
|
declare function executeRaw(client: any, sql: string, params: unknown[] | undefined, dialect: string): Promise<unknown[]>;
|
|
200
200
|
|
|
201
201
|
declare function buildSQL(model: Model, models: Model[], method: PrismaMethod, args: Record<string, unknown>, dialect: SqlDialect): SqlResult;
|
package/dist/index.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ declare function buildBatchSql(queries: Record<string, BatchQuery>, modelMap: Ma
|
|
|
65
65
|
aliases: string[];
|
|
66
66
|
};
|
|
67
67
|
declare function buildBatchCountSql(queries: BatchCountQuery[], modelMap: Map<string, Model>, models: Model[], dialect: SqlDialect): BatchResult;
|
|
68
|
-
declare function parseBatchCountResults(row: Record<string, unknown>,
|
|
68
|
+
declare function parseBatchCountResults(row: Record<string, unknown>, queryCount: number): number[];
|
|
69
69
|
declare function parseBatchResults(row: Record<string, unknown>, keys: string[], queries: Record<string, BatchQuery>, aliases?: string[], modelMap?: Map<string, Model>): Record<string, unknown>;
|
|
70
70
|
|
|
71
71
|
interface TransactionQuery {
|
|
@@ -194,8 +194,8 @@ declare function getRowTransformer(method: string): ((row: any) => any) | null;
|
|
|
194
194
|
declare function getOrPrepareStatement(client: any, sql: string): any;
|
|
195
195
|
declare function shouldSqliteUseGet(method: string): boolean;
|
|
196
196
|
declare function normalizeParams(params: unknown[]): unknown[];
|
|
197
|
-
declare function executePostgresQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any
|
|
198
|
-
declare function executeSqliteQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any
|
|
197
|
+
declare function executePostgresQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any, allModels: readonly any[]): Promise<unknown[]>;
|
|
198
|
+
declare function executeSqliteQuery(client: any, sql: string, params: unknown[], method: string, requiresReduction: boolean, includeSpec: Record<string, any> | undefined, model: any, allModels: readonly any[]): unknown[];
|
|
199
199
|
declare function executeRaw(client: any, sql: string, params: unknown[] | undefined, dialect: string): Promise<unknown[]>;
|
|
200
200
|
|
|
201
201
|
declare function buildSQL(model: Model, models: Model[], method: PrismaMethod, args: Record<string, unknown>, dialect: SqlDialect): SqlResult;
|