ide-assi 0.35.0 → 0.36.0

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.
@@ -193336,7 +193336,7 @@ class IdeAi
193336
193336
 
193337
193337
  if (res.result == "1") {
193338
193338
 
193339
- const columnInfo = this.#getColumnInfo(res.table);
193339
+ const columnInfo = await this.#getColumnInfo(res.table);
193340
193340
  console.log(columnInfo);
193341
193341
 
193342
193342
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
@@ -193332,7 +193332,7 @@ class IdeAi
193332
193332
 
193333
193333
  if (res.result == "1") {
193334
193334
 
193335
- const columnInfo = this.#getColumnInfo(res.table);
193335
+ const columnInfo = await this.#getColumnInfo(res.table);
193336
193336
  console.log(columnInfo);
193337
193337
 
193338
193338
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
@@ -79,7 +79,7 @@ export class IdeAi
79
79
 
80
80
  if (res.result == "1") {
81
81
 
82
- const columnInfo = this.#getColumnInfo(res.table);
82
+ const columnInfo = await this.#getColumnInfo(res.table);
83
83
  console.log(columnInfo);
84
84
 
85
85
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.35.0",
4
+ "version": "0.36.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -79,7 +79,7 @@ export class IdeAi
79
79
 
80
80
  if (res.result == "1") {
81
81
 
82
- const columnInfo = this.#getColumnInfo(res.table);
82
+ const columnInfo = await this.#getColumnInfo(res.table);
83
83
  console.log(columnInfo);
84
84
 
85
85
  const response2 = await fetch(`${this.#API_URL}/ai/generateSource`, {