@spytecgps/nova-orm 1.3.101 → 1.3.103

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.
@@ -4,6 +4,8 @@ export declare class QueryLogger implements Logger {
4
4
  protected readonly logger: NovaLogger;
5
5
  protected readonly logging: LoggerOptions;
6
6
  constructor(logger: NovaLogger, logging?: LoggerOptions);
7
+ /** If a parameter is a binary buffer, it will be serialized to a hex string */
8
+ serializeParameters(parameters: any[]): any;
7
9
  logQuery(query: string, parameters?: any[], _queryRunner?: QueryRunner): void;
8
10
  logQueryError(error: string | Error, query: string, parameters?: any[], _queryRunner?: QueryRunner): void;
9
11
  logQuerySlow(time: number, query: string, parameters?: any[], _queryRunner?: QueryRunner): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "1.3.101",
3
+ "version": "1.3.103",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,8 +0,0 @@
1
- export declare class TypeormMetadata {
2
- type: string;
3
- database: string | null;
4
- schema: string | null;
5
- table: string | null;
6
- name: string | null;
7
- value: string | null;
8
- }