@sqb/builder 4.5.5 → 4.5.6

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.
Files changed (2) hide show
  1. package/esm/types.d.ts +3 -3
  2. package/package.json +5 -5
package/esm/types.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { DataType, SerializationType } from './enums.js';
2
2
  import type { SerializeContext } from './serialize-context.js';
3
- export declare type SerializeFunction = (ctx: SerializeContext, type: SerializationType | string, obj: any, defFn: DefaultSerializeFunction) => string | undefined;
4
- export declare type DefaultSerializeFunction = (ctx: SerializeContext, o: any) => string;
5
- export declare type IsReservedWordFunction = (ctx: SerializeContext, s: string) => boolean;
3
+ export type SerializeFunction = (ctx: SerializeContext, type: SerializationType | string, obj: any, defFn: DefaultSerializeFunction) => string | undefined;
4
+ export type DefaultSerializeFunction = (ctx: SerializeContext, o: any) => string;
5
+ export type IsReservedWordFunction = (ctx: SerializeContext, s: string) => boolean;
6
6
  export interface SerializerExtension {
7
7
  dialect: string;
8
8
  serialize?: SerializeFunction;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sqb/builder",
3
3
  "description": "Extensible multi-dialect SQL query builder written with TypeScript",
4
- "version": "4.5.5",
4
+ "version": "4.5.6",
5
5
  "author": "Panates",
6
6
  "private": false,
7
7
  "contributors": [
@@ -31,10 +31,10 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "debug": "^4.3.4",
34
- "putil-flattentext": "^2.1.0",
35
- "putil-isplainobject": "^1.1.4",
36
- "putil-merge": "^3.9.0",
37
- "putil-varhelpers": "^1.6.4"
34
+ "putil-flattentext": "^2.1.1",
35
+ "putil-isplainobject": "^1.1.5",
36
+ "putil-merge": "^3.10.1",
37
+ "putil-varhelpers": "^1.6.5"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/debug": "^4.1.7"