ide-assi 0.570.0 → 0.571.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 +4 -4
- package/dist/bundle.esm.js +4 -4
- package/dist/components/ideAi.js +4 -4
- package/package.json +1 -1
- package/src/components/ideAi.js +4 -4
package/dist/bundle.cjs.js
CHANGED
|
@@ -202225,7 +202225,7 @@ class IdeAi
|
|
|
202225
202225
|
userPrompt: userPrompt,
|
|
202226
202226
|
resultType: srcPath.resultType,
|
|
202227
202227
|
namespace: srcPath.namespace,
|
|
202228
|
-
tableDefinitions: columnInfo
|
|
202228
|
+
tableDefinitions: JSON.stringify(columnInfo)
|
|
202229
202229
|
});
|
|
202230
202230
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
202231
202231
|
|
|
@@ -202254,7 +202254,7 @@ class IdeAi
|
|
|
202254
202254
|
menuName: where.menu.name,
|
|
202255
202255
|
baseClass: srcPath.baseClass,
|
|
202256
202256
|
controllerSource: controllerSrc,
|
|
202257
|
-
tableDefinitions: columnInfo,
|
|
202257
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202258
202258
|
});
|
|
202259
202259
|
this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
202260
202260
|
|
|
@@ -202327,7 +202327,7 @@ console.log(el, href, title);
|
|
|
202327
202327
|
originSrc: src.mybatis,
|
|
202328
202328
|
resultType: srcPath.resultType,
|
|
202329
202329
|
namespace: srcPath.namespace,
|
|
202330
|
-
tableDefinitions: columnInfo,
|
|
202330
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202331
202331
|
});
|
|
202332
202332
|
//this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
202333
202333
|
progressMessageInstance.updateProgress('mybatis', 'completed');
|
|
@@ -202381,7 +202381,7 @@ console.log(el, href, title);
|
|
|
202381
202381
|
menuName: where.menu.name,
|
|
202382
202382
|
baseClass: srcPath.baseClass,
|
|
202383
202383
|
controllerSource: controllerSrc,
|
|
202384
|
-
tableDefinitions: columnInfo,
|
|
202384
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202385
202385
|
});
|
|
202386
202386
|
//this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
202387
202387
|
progressMessageInstance.updateProgress('javascript', 'completed');
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202221,7 +202221,7 @@ class IdeAi
|
|
|
202221
202221
|
userPrompt: userPrompt,
|
|
202222
202222
|
resultType: srcPath.resultType,
|
|
202223
202223
|
namespace: srcPath.namespace,
|
|
202224
|
-
tableDefinitions: columnInfo
|
|
202224
|
+
tableDefinitions: JSON.stringify(columnInfo)
|
|
202225
202225
|
});
|
|
202226
202226
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
202227
202227
|
|
|
@@ -202250,7 +202250,7 @@ class IdeAi
|
|
|
202250
202250
|
menuName: where.menu.name,
|
|
202251
202251
|
baseClass: srcPath.baseClass,
|
|
202252
202252
|
controllerSource: controllerSrc,
|
|
202253
|
-
tableDefinitions: columnInfo,
|
|
202253
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202254
202254
|
});
|
|
202255
202255
|
this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
202256
202256
|
|
|
@@ -202323,7 +202323,7 @@ console.log(el, href, title);
|
|
|
202323
202323
|
originSrc: src.mybatis,
|
|
202324
202324
|
resultType: srcPath.resultType,
|
|
202325
202325
|
namespace: srcPath.namespace,
|
|
202326
|
-
tableDefinitions: columnInfo,
|
|
202326
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202327
202327
|
});
|
|
202328
202328
|
//this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
202329
202329
|
progressMessageInstance.updateProgress('mybatis', 'completed');
|
|
@@ -202377,7 +202377,7 @@ console.log(el, href, title);
|
|
|
202377
202377
|
menuName: where.menu.name,
|
|
202378
202378
|
baseClass: srcPath.baseClass,
|
|
202379
202379
|
controllerSource: controllerSrc,
|
|
202380
|
-
tableDefinitions: columnInfo,
|
|
202380
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
202381
202381
|
});
|
|
202382
202382
|
//this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
202383
202383
|
progressMessageInstance.updateProgress('javascript', 'completed');
|
package/dist/components/ideAi.js
CHANGED
|
@@ -357,7 +357,7 @@ export class IdeAi
|
|
|
357
357
|
userPrompt: userPrompt,
|
|
358
358
|
resultType: srcPath.resultType,
|
|
359
359
|
namespace: srcPath.namespace,
|
|
360
|
-
tableDefinitions: columnInfo
|
|
360
|
+
tableDefinitions: JSON.stringify(columnInfo)
|
|
361
361
|
});
|
|
362
362
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
363
363
|
|
|
@@ -386,7 +386,7 @@ export class IdeAi
|
|
|
386
386
|
menuName: where.menu.name,
|
|
387
387
|
baseClass: srcPath.baseClass,
|
|
388
388
|
controllerSource: controllerSrc,
|
|
389
|
-
tableDefinitions: columnInfo,
|
|
389
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
390
390
|
});
|
|
391
391
|
this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
392
392
|
|
|
@@ -459,7 +459,7 @@ console.log(el, href, title);
|
|
|
459
459
|
originSrc: src.mybatis,
|
|
460
460
|
resultType: srcPath.resultType,
|
|
461
461
|
namespace: srcPath.namespace,
|
|
462
|
-
tableDefinitions: columnInfo,
|
|
462
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
463
463
|
});
|
|
464
464
|
//this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
465
465
|
progressMessageInstance.updateProgress('mybatis', 'completed');
|
|
@@ -513,7 +513,7 @@ console.log(el, href, title);
|
|
|
513
513
|
menuName: where.menu.name,
|
|
514
514
|
baseClass: srcPath.baseClass,
|
|
515
515
|
controllerSource: controllerSrc,
|
|
516
|
-
tableDefinitions: columnInfo,
|
|
516
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
517
517
|
});
|
|
518
518
|
//this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
519
519
|
progressMessageInstance.updateProgress('javascript', 'completed');
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -357,7 +357,7 @@ export class IdeAi
|
|
|
357
357
|
userPrompt: userPrompt,
|
|
358
358
|
resultType: srcPath.resultType,
|
|
359
359
|
namespace: srcPath.namespace,
|
|
360
|
-
tableDefinitions: columnInfo
|
|
360
|
+
tableDefinitions: JSON.stringify(columnInfo)
|
|
361
361
|
});
|
|
362
362
|
this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
363
363
|
|
|
@@ -386,7 +386,7 @@ export class IdeAi
|
|
|
386
386
|
menuName: where.menu.name,
|
|
387
387
|
baseClass: srcPath.baseClass,
|
|
388
388
|
controllerSource: controllerSrc,
|
|
389
|
-
tableDefinitions: columnInfo,
|
|
389
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
390
390
|
});
|
|
391
391
|
this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
392
392
|
|
|
@@ -459,7 +459,7 @@ console.log(el, href, title);
|
|
|
459
459
|
originSrc: src.mybatis,
|
|
460
460
|
resultType: srcPath.resultType,
|
|
461
461
|
namespace: srcPath.namespace,
|
|
462
|
-
tableDefinitions: columnInfo,
|
|
462
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
463
463
|
});
|
|
464
464
|
//this.#parent.addMessage("MyBatis 소스파일을 생성했습니다.");
|
|
465
465
|
progressMessageInstance.updateProgress('mybatis', 'completed');
|
|
@@ -513,7 +513,7 @@ console.log(el, href, title);
|
|
|
513
513
|
menuName: where.menu.name,
|
|
514
514
|
baseClass: srcPath.baseClass,
|
|
515
515
|
controllerSource: controllerSrc,
|
|
516
|
-
tableDefinitions: columnInfo,
|
|
516
|
+
tableDefinitions: JSON.stringify(columnInfo),
|
|
517
517
|
});
|
|
518
518
|
//this.#parent.addMessage("Jsx(React) 소스파일을 생성했습니다.");
|
|
519
519
|
progressMessageInstance.updateProgress('javascript', 'completed');
|