ide-assi 0.511.0 → 0.513.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.
@@ -202036,7 +202036,7 @@ class IdeAi
202036
202036
  #invoke = async (path, params) => {
202037
202037
  const prompt = await IdeUtils.generatePrompt(path, params);
202038
202038
 
202039
- //console.log(prompt);
202039
+ console.log(prompt);
202040
202040
 
202041
202041
  try {
202042
202042
  const response = await this.#model.invoke([
@@ -202075,6 +202075,7 @@ class IdeAi
202075
202075
  "tableDefinitions": tableDefinitions,
202076
202076
  });
202077
202077
 
202078
+ console.log("=======================================================");
202078
202079
  console.log(o);
202079
202080
  console.log( Object.prototype.toString.call(o));
202080
202081
  console.log(o.hasOwnProperty("result"));
@@ -202973,10 +202974,8 @@ class IdeDiffPopup extends HTMLElement
202973
202974
  });
202974
202975
  }
202975
202976
 
202976
- console.log(params);
202977
-
202978
202977
  api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
202979
- ninegrid.confirm("소스를 변경하였습니다.");
202978
+ ninegrid.alert("소스를 변경하였습니다.");
202980
202979
  });
202981
202980
  }
202982
202981
 
@@ -202032,7 +202032,7 @@ class IdeAi
202032
202032
  #invoke = async (path, params) => {
202033
202033
  const prompt = await IdeUtils.generatePrompt(path, params);
202034
202034
 
202035
- //console.log(prompt);
202035
+ console.log(prompt);
202036
202036
 
202037
202037
  try {
202038
202038
  const response = await this.#model.invoke([
@@ -202071,6 +202071,7 @@ class IdeAi
202071
202071
  "tableDefinitions": tableDefinitions,
202072
202072
  });
202073
202073
 
202074
+ console.log("=======================================================");
202074
202075
  console.log(o);
202075
202076
  console.log( Object.prototype.toString.call(o));
202076
202077
  console.log(o.hasOwnProperty("result"));
@@ -202969,10 +202970,8 @@ class IdeDiffPopup extends HTMLElement
202969
202970
  });
202970
202971
  }
202971
202972
 
202972
- console.log(params);
202973
-
202974
202973
  api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
202975
- ninegrid.confirm("소스를 변경하였습니다.");
202974
+ ninegrid.alert("소스를 변경하였습니다.");
202976
202975
  });
202977
202976
  }
202978
202977
 
@@ -188,7 +188,7 @@ export class IdeAi
188
188
  #invoke = async (path, params) => {
189
189
  const prompt = await IdeUtils.generatePrompt(path, params);
190
190
 
191
- //console.log(prompt);
191
+ console.log(prompt);
192
192
 
193
193
  try {
194
194
  const response = await this.#model.invoke([
@@ -227,6 +227,7 @@ export class IdeAi
227
227
  "tableDefinitions": tableDefinitions,
228
228
  });
229
229
 
230
+ console.log("=======================================================");
230
231
  console.log(o);
231
232
  console.log( Object.prototype.toString.call(o));
232
233
  console.log(o.hasOwnProperty("result"));
@@ -80,10 +80,8 @@ class IdeDiffPopup extends HTMLElement
80
80
  })
81
81
  }
82
82
 
83
- console.log(params);
84
-
85
83
  api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
86
- ninegrid.confirm("소스를 변경하였습니다.");
84
+ ninegrid.alert("소스를 변경하였습니다.");
87
85
  });
88
86
  }
89
87
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.511.0",
4
+ "version": "0.513.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -188,7 +188,7 @@ export class IdeAi
188
188
  #invoke = async (path, params) => {
189
189
  const prompt = await IdeUtils.generatePrompt(path, params);
190
190
 
191
- //console.log(prompt);
191
+ console.log(prompt);
192
192
 
193
193
  try {
194
194
  const response = await this.#model.invoke([
@@ -227,6 +227,7 @@ export class IdeAi
227
227
  "tableDefinitions": tableDefinitions,
228
228
  });
229
229
 
230
+ console.log("=======================================================");
230
231
  console.log(o);
231
232
  console.log( Object.prototype.toString.call(o));
232
233
  console.log(o.hasOwnProperty("result"));
@@ -80,10 +80,8 @@ class IdeDiffPopup extends HTMLElement
80
80
  })
81
81
  }
82
82
 
83
- console.log(params);
84
-
85
83
  api.post(`/api/source/generateRealFile`, { list: params }).then(res => {
86
- ninegrid.confirm("소스를 변경하였습니다.");
84
+ ninegrid.alert("소스를 변경하였습니다.");
87
85
  });
88
86
  }
89
87