ide-assi 0.15.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.
@@ -193307,7 +193307,7 @@ class IdeAi
193307
193307
  *
193308
193308
  * 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
193309
193309
  */
193310
- generateSource = async (question) => {
193310
+ generateSource = async (userPrompt) => {
193311
193311
 
193312
193312
  const menus = this.#getMenuInfo();
193313
193313
  const tables = await this.#getTableInfo();
@@ -193319,9 +193319,9 @@ class IdeAi
193319
193319
  method: "POST",
193320
193320
  headers: { "Content-Type": "application/json" },
193321
193321
  body: JSON.stringify({
193322
- question: question,
193322
+ userPrompt: userPrompt,
193323
193323
  menus: menus,
193324
- tables: tables,
193324
+ tables: tables.list,
193325
193325
  })
193326
193326
  });
193327
193327
 
@@ -193303,7 +193303,7 @@ class IdeAi
193303
193303
  *
193304
193304
  * 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
193305
193305
  */
193306
- generateSource = async (question) => {
193306
+ generateSource = async (userPrompt) => {
193307
193307
 
193308
193308
  const menus = this.#getMenuInfo();
193309
193309
  const tables = await this.#getTableInfo();
@@ -193315,9 +193315,9 @@ class IdeAi
193315
193315
  method: "POST",
193316
193316
  headers: { "Content-Type": "application/json" },
193317
193317
  body: JSON.stringify({
193318
- question: question,
193318
+ userPrompt: userPrompt,
193319
193319
  menus: menus,
193320
- tables: tables,
193320
+ tables: tables.list,
193321
193321
  })
193322
193322
  });
193323
193323
 
@@ -50,7 +50,7 @@ export class IdeAi
50
50
  *
51
51
  * 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
52
52
  */
53
- generateSource = async (question) => {
53
+ generateSource = async (userPrompt) => {
54
54
 
55
55
  const menus = this.#getMenuInfo();
56
56
  const tables = await this.#getTableInfo();
@@ -62,9 +62,9 @@ export class IdeAi
62
62
  method: "POST",
63
63
  headers: { "Content-Type": "application/json" },
64
64
  body: JSON.stringify({
65
- question: question,
65
+ userPrompt: userPrompt,
66
66
  menus: menus,
67
- tables: tables,
67
+ tables: tables.list,
68
68
  })
69
69
  });
70
70
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.15.0",
4
+ "version": "0.17.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -50,7 +50,7 @@ export class IdeAi
50
50
  *
51
51
  * 1. 메뉴정보, 테이블정보로 해당 패키지, URL, 소스명칭을 유추
52
52
  */
53
- generateSource = async (question) => {
53
+ generateSource = async (userPrompt) => {
54
54
 
55
55
  const menus = this.#getMenuInfo();
56
56
  const tables = await this.#getTableInfo();
@@ -62,9 +62,9 @@ export class IdeAi
62
62
  method: "POST",
63
63
  headers: { "Content-Type": "application/json" },
64
64
  body: JSON.stringify({
65
- question: question,
65
+ userPrompt: userPrompt,
66
66
  menus: menus,
67
- tables: tables,
67
+ tables: tables.list,
68
68
  })
69
69
  });
70
70