Skip to content

Commit 0776359

Browse files
authored
Merge branch 'dev' into chatai
2 parents bfb603d + 00428ed commit 0776359

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4609
-1540
lines changed

.vscode/tasks.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
"type": "npm",
88
"script": "webpack-dev",
99
"problemMatcher": "$ts-webpack-watch",
10-
"isBackground": true,
1110
"presentation": {
12-
"reveal": "never",
13-
"group": "watchers"
11+
"reveal": "never"
1412
},
1513
"group": {
1614
"kind": "build",

global.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
// https://www.ibm.com/docs/en/i/7.4?topic=views-syscolumns2
12
interface TableColumn {
2-
TABLE_NAME?: string,
3+
TABLE_SCHEMA: string,
4+
TABLE_NAME: string,
35
COLUMN_NAME: string,
46
SYSTEM_COLUMN_NAME: string,
57
CONSTRAINT_NAME?: string,
@@ -14,7 +16,9 @@ interface TableColumn {
1416
IS_IDENTITY: "YES" | "NO",
1517
}
1618

19+
// https://www.ibm.com/docs/en/i/7.4?topic=views-sysparms
1720
interface SQLParm {
21+
SPECIFIC_SCHEMA: string,
1822
SPECIFIC_NAME: string,
1923
PARAMETER_NAME: string,
2024
PARAMETER_MODE: "IN" | "OUT" | "INOUT",
@@ -26,6 +30,7 @@ interface SQLParm {
2630
DEFAULT?: string,
2731
LONG_COMMENT?: string,
2832
ORDINAL_POSITION: number,
33+
ROW_TYPE: "P" | "R",
2934
}
3035

3136
interface BasicSQLObject {

0 commit comments

Comments
 (0)