@bimatrix-aud-platform/aud_mcp_server 1.1.7 → 1.1.9

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.
@@ -200,14 +200,18 @@ export function isAudConfigured() {
200
200
  */
201
201
  function buildPacket(config, scriptCode, script, params) {
202
202
  const packet = {
203
- AuthInfo: { USER_ID: config.userName },
203
+ AuthInfo: { UserCode: config.userName },
204
204
  ParamSet: [
205
- { Key: "VS_USER_ID", Value: [config.userName] },
205
+ { Key: "#CALLER#", Value: "AUD_MCP_SERVER" },
206
206
  ...params,
207
207
  ],
208
- DataSet: [],
208
+ DataSet: {
209
+ Name: "",
210
+ Caption: "",
211
+ DataTables: []
212
+ },
209
213
  JScript: {
210
- Code: scriptCode,
214
+ Code: "", //scriptCode,
211
215
  Encryped: true,
212
216
  Command: script
213
217
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bimatrix-aud-platform/aud_mcp_server",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "MCP Server for i-AUD MTSD document validation and generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",