ide-assi 0.10.0 → 0.11.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
|
@@ -193279,7 +193279,7 @@ class IdeAi
|
|
|
193279
193279
|
};
|
|
193280
193280
|
|
|
193281
193281
|
#getTableInfo = async (question) => {
|
|
193282
|
-
const response = await fetch(`${this.#API_URL}/api/meta/
|
|
193282
|
+
const response = await fetch(`${this.#API_URL}/api/meta/selectTableList`, {
|
|
193283
193283
|
method: "POST",
|
|
193284
193284
|
headers: { "Content-Type": "application/json" },
|
|
193285
193285
|
body: JSON.stringify({
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193275,7 +193275,7 @@ class IdeAi
|
|
|
193275
193275
|
};
|
|
193276
193276
|
|
|
193277
193277
|
#getTableInfo = async (question) => {
|
|
193278
|
-
const response = await fetch(`${this.#API_URL}/api/meta/
|
|
193278
|
+
const response = await fetch(`${this.#API_URL}/api/meta/selectTableList`, {
|
|
193279
193279
|
method: "POST",
|
|
193280
193280
|
headers: { "Content-Type": "application/json" },
|
|
193281
193281
|
body: JSON.stringify({
|
package/dist/components/ideAi.js
CHANGED
|
@@ -22,7 +22,7 @@ export class IdeAi
|
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
#getTableInfo = async (question) => {
|
|
25
|
-
const response = await fetch(`${this.#API_URL}/api/meta/
|
|
25
|
+
const response = await fetch(`${this.#API_URL}/api/meta/selectTableList`, {
|
|
26
26
|
method: "POST",
|
|
27
27
|
headers: { "Content-Type": "application/json" },
|
|
28
28
|
body: JSON.stringify({
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -22,7 +22,7 @@ export class IdeAi
|
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
#getTableInfo = async (question) => {
|
|
25
|
-
const response = await fetch(`${this.#API_URL}/api/meta/
|
|
25
|
+
const response = await fetch(`${this.#API_URL}/api/meta/selectTableList`, {
|
|
26
26
|
method: "POST",
|
|
27
27
|
headers: { "Content-Type": "application/json" },
|
|
28
28
|
body: JSON.stringify({
|