ide-assi 0.24.0 → 0.25.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.
@@ -193338,6 +193338,17 @@ class IdeAi
193338
193338
  })
193339
193339
  });
193340
193340
 
193341
+ const source = await response2.json();
193342
+
193343
+ await fetch(`/api/files/generateMybatisFile`, {
193344
+ method: "POST",
193345
+ headers: { "Content-Type": "application/json" },
193346
+ body: JSON.stringify({
193347
+ fileNm: res.xml,
193348
+ contents: source.mybatis,
193349
+ })
193350
+ });
193351
+
193341
193352
  return await response2.json();
193342
193353
  }
193343
193354
 
@@ -193334,6 +193334,17 @@ class IdeAi
193334
193334
  })
193335
193335
  });
193336
193336
 
193337
+ const source = await response2.json();
193338
+
193339
+ await fetch(`/api/files/generateMybatisFile`, {
193340
+ method: "POST",
193341
+ headers: { "Content-Type": "application/json" },
193342
+ body: JSON.stringify({
193343
+ fileNm: res.xml,
193344
+ contents: source.mybatis,
193345
+ })
193346
+ });
193347
+
193337
193348
  return await response2.json();
193338
193349
  }
193339
193350
 
@@ -81,6 +81,17 @@ export class IdeAi
81
81
  })
82
82
  });
83
83
 
84
+ const source = await response2.json();
85
+
86
+ const response3 = await fetch(`/api/files/generateMybatisFile`, {
87
+ method: "POST",
88
+ headers: { "Content-Type": "application/json" },
89
+ body: JSON.stringify({
90
+ fileNm: res.xml,
91
+ contents: source.mybatis,
92
+ })
93
+ });
94
+
84
95
  return await response2.json();
85
96
  }
86
97
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.24.0",
4
+ "version": "0.25.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -81,6 +81,17 @@ export class IdeAi
81
81
  })
82
82
  });
83
83
 
84
+ const source = await response2.json();
85
+
86
+ const response3 = await fetch(`/api/files/generateMybatisFile`, {
87
+ method: "POST",
88
+ headers: { "Content-Type": "application/json" },
89
+ body: JSON.stringify({
90
+ fileNm: res.xml,
91
+ contents: source.mybatis,
92
+ })
93
+ });
94
+
84
95
  return await response2.json();
85
96
  }
86
97