@bimatrix-aud-platform/aud_mcp_server 1.1.80 → 1.1.82
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/index.js
CHANGED
|
@@ -2135,7 +2135,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
2135
2135
|
}
|
|
2136
2136
|
// SaveModel 조립
|
|
2137
2137
|
const saveModel = buildSaveModel(reportPath);
|
|
2138
|
-
// 서버 전송 (에러 시 callSaveReportService 내부에서 throw)
|
|
2138
|
+
// 서버 전송 (충돌 검사 포함, 에러 시 callSaveReportService 내부에서 throw)
|
|
2139
2139
|
const resModel = await callSaveReportService(saveModel);
|
|
2140
2140
|
// 서버 응답(ISaveReportModel)으로 로컬 파일 업데이트
|
|
2141
2141
|
const updatedFiles = writeReportResponse(reportPath, resModel);
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* i-AUD 서버 호출에 사용되는 암호화된 커맨드 문자열.
|
|
3
|
-
* buildPacket()의 JScript.Command 값으로 전달됩니다.
|
|
4
|
-
*/
|
|
5
1
|
export declare const SERVICE_SOURCE_LIST: {
|
|
6
2
|
BOXSTYLE_LIST: string;
|
|
7
3
|
BOXSTYLE_SAVE: string;
|
|
@@ -10,4 +6,5 @@ export declare const SERVICE_SOURCE_LIST: {
|
|
|
10
6
|
READ_REPORT: string;
|
|
11
7
|
SAVE_REPORT: string;
|
|
12
8
|
SCHEMA_SERVICE: string;
|
|
9
|
+
CHECK_SAVE: string;
|
|
13
10
|
};
|