@bdkinc/knex-ibmi 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![npm version](http://img.shields.io/npm/v/@bdkinc/knex-ibmi.svg)](https://npmjs.org/package/@bdkinc/knex-ibmi)
2
2
 
3
- **Disclaimer: this library is in beta. Please submit an issue for any bugs encounter or any questions you have.**
3
+ **Disclaimer: This library is in beta. Please submit an issue for any bugs encounter or any questions you have.**
4
4
 
5
5
  ## Description
6
6
 
@@ -38,10 +38,10 @@ This library is written in typescript and compiled to both commonjs and esm.
38
38
 
39
39
  ```javascript
40
40
  const knex = require("knex");
41
- const { Db2Dialect } = require("@bdkinc/knex-ibmi");
41
+ const { DB2Dialect } = require("@bdkinc/knex-ibmi");
42
42
 
43
43
  const db = knex({
44
- client: Db2Dialect,
44
+ client: DB2Dialect,
45
45
  connection: {
46
46
  host: "localhost",
47
47
  database: "knextest",
package/dist/index.d.ts CHANGED
@@ -75,6 +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
79
  }
79
80
  interface DB2ConnectionConfig {
80
81
  database: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bdkinc/knex-ibmi",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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,6 +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
262
  }
262
263
 
263
264
  interface DB2ConnectionConfig {