@nine-lab/nine-mu 0.1.319 → 0.1.321

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.319",
3
+ "version": "0.1.321",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -151,15 +151,15 @@ export class NineDiffPopup extends HTMLElement {
151
151
  const currentContent = diff ? diff.getAsisContents() : asis_source;
152
152
 
153
153
  payloadList.push({
154
- layer,
154
+ //layer,
155
155
  fullPath: full_path,
156
- packageName: this.#host?.getAttribute('package-name') || "com.ninelab.ai",
156
+ //packageName: this.#host?.getAttribute('package-name') || "com.ninelab.ai",
157
157
  contents: currentContent
158
158
  });
159
159
  }
160
160
 
161
161
  try {
162
- await api.post(`/nine-mu/source/generateJsonFileBatch`, { fileList: payloadList });
162
+ await api.post(`/nine-mu/source/generateRealFile`, { list: payloadList });
163
163
  await nine.alert("요청하신 모든 파일의 소스 변경 사항이 성공적으로 반영되었습니다.");
164
164
  this.#dialog.close();
165
165
  } catch (error) {