@bdkinc/knex-ibmi 0.1.2 → 0.1.3

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/index.d.ts CHANGED
@@ -75,7 +75,7 @@ interface DB2ConnectionParams {
75
75
  DECFLOATERROROPTION?: 0 | 1;
76
76
  DECFLOATROUNDMODE?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
77
77
  MAPDECIMALFLOATDESCRIBE?: 1 | 3;
78
- ALLOWPROCCALLS: 0 | 1;
78
+ ALLOWPROCCALLS?: 0 | 1;
79
79
  }
80
80
  interface DB2ConnectionConfig {
81
81
  database: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bdkinc/knex-ibmi",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Knex dialect for IBMi",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -258,7 +258,7 @@ interface DB2ConnectionParams {
258
258
  DECFLOATERROROPTION?: 0 | 1;
259
259
  DECFLOATROUNDMODE?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
260
260
  MAPDECIMALFLOATDESCRIBE?: 1 | 3;
261
- ALLOWPROCCALLS: 0 | 1;
261
+ ALLOWPROCCALLS?: 0 | 1;
262
262
  }
263
263
 
264
264
  interface DB2ConnectionConfig {