ide-assi 0.34.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.
- package/dist/bundle.cjs.js +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/components/ideAi.js +1 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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`, {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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`, {
|
package/dist/components/ideAi.js
CHANGED
|
@@ -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
package/src/components/ideAi.js
CHANGED
|
@@ -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`, {
|