ide-assi 0.16.0 → 0.17.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 +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/components/ideAi.js +2 -2
- package/package.json +1 -1
- package/src/components/ideAi.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -193307,7 +193307,7 @@ class IdeAi
|
|
|
193307
193307
|
*
|
|
193308
193308
|
* 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
|
|
193309
193309
|
*/
|
|
193310
|
-
generateSource = async (
|
|
193310
|
+
generateSource = async (userPrompt) => {
|
|
193311
193311
|
|
|
193312
193312
|
const menus = this.#getMenuInfo();
|
|
193313
193313
|
const tables = await this.#getTableInfo();
|
|
@@ -193319,7 +193319,7 @@ class IdeAi
|
|
|
193319
193319
|
method: "POST",
|
|
193320
193320
|
headers: { "Content-Type": "application/json" },
|
|
193321
193321
|
body: JSON.stringify({
|
|
193322
|
-
|
|
193322
|
+
userPrompt: userPrompt,
|
|
193323
193323
|
menus: menus,
|
|
193324
193324
|
tables: tables.list,
|
|
193325
193325
|
})
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193303,7 +193303,7 @@ class IdeAi
|
|
|
193303
193303
|
*
|
|
193304
193304
|
* 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
|
|
193305
193305
|
*/
|
|
193306
|
-
generateSource = async (
|
|
193306
|
+
generateSource = async (userPrompt) => {
|
|
193307
193307
|
|
|
193308
193308
|
const menus = this.#getMenuInfo();
|
|
193309
193309
|
const tables = await this.#getTableInfo();
|
|
@@ -193315,7 +193315,7 @@ class IdeAi
|
|
|
193315
193315
|
method: "POST",
|
|
193316
193316
|
headers: { "Content-Type": "application/json" },
|
|
193317
193317
|
body: JSON.stringify({
|
|
193318
|
-
|
|
193318
|
+
userPrompt: userPrompt,
|
|
193319
193319
|
menus: menus,
|
|
193320
193320
|
tables: tables.list,
|
|
193321
193321
|
})
|
package/dist/components/ideAi.js
CHANGED
|
@@ -50,7 +50,7 @@ export class IdeAi
|
|
|
50
50
|
*
|
|
51
51
|
* 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
|
|
52
52
|
*/
|
|
53
|
-
generateSource = async (
|
|
53
|
+
generateSource = async (userPrompt) => {
|
|
54
54
|
|
|
55
55
|
const menus = this.#getMenuInfo();
|
|
56
56
|
const tables = await this.#getTableInfo();
|
|
@@ -62,7 +62,7 @@ export class IdeAi
|
|
|
62
62
|
method: "POST",
|
|
63
63
|
headers: { "Content-Type": "application/json" },
|
|
64
64
|
body: JSON.stringify({
|
|
65
|
-
|
|
65
|
+
userPrompt: userPrompt,
|
|
66
66
|
menus: menus,
|
|
67
67
|
tables: tables.list,
|
|
68
68
|
})
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -50,7 +50,7 @@ export class IdeAi
|
|
|
50
50
|
*
|
|
51
51
|
* 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
|
|
52
52
|
*/
|
|
53
|
-
generateSource = async (
|
|
53
|
+
generateSource = async (userPrompt) => {
|
|
54
54
|
|
|
55
55
|
const menus = this.#getMenuInfo();
|
|
56
56
|
const tables = await this.#getTableInfo();
|
|
@@ -62,7 +62,7 @@ export class IdeAi
|
|
|
62
62
|
method: "POST",
|
|
63
63
|
headers: { "Content-Type": "application/json" },
|
|
64
64
|
body: JSON.stringify({
|
|
65
|
-
|
|
65
|
+
userPrompt: userPrompt,
|
|
66
66
|
menus: menus,
|
|
67
67
|
tables: tables.list,
|
|
68
68
|
})
|