diff --git a/public/dmxAppConnect/config.js b/public/dmxAppConnect/config.js index e69de29..c9a5e5a 100644 --- a/public/dmxAppConnect/config.js +++ b/public/dmxAppConnect/config.js @@ -0,0 +1,115 @@ +dmx.config({ + "index": { + "delConfirm": { + "meta": [ + { + "sub": [ + { + "sub": [ + { + "name": "data", + "type": "object", + "sub": [ + { + "name": "delete", + "type": "text", + "sub": [ + { + "name": "affected", + "type": "number" + } + ] + } + ] + }, + { + "name": "state", + "type": "object", + "sub": [ + { + "name": "executing", + "type": "boolean" + }, + { + "name": "uploading", + "type": "boolean" + }, + { + "name": "processing", + "type": "boolean" + }, + { + "name": "downloading", + "type": "boolean" + } + ] + }, + { + "name": "uploadProgress", + "type": "object", + "sub": [ + { + "name": "position", + "type": "number" + }, + { + "name": "total", + "type": "number" + }, + { + "name": "percent", + "type": "number" + } + ] + }, + { + "name": "downloadProgress", + "type": "object", + "sub": [ + { + "name": "position", + "type": "number" + }, + { + "name": "total", + "type": "number" + }, + { + "name": "percent", + "type": "number" + } + ] + }, + { + "name": "lastError", + "type": "object", + "sub": [ + { + "name": "status", + "type": "number" + }, + { + "name": "message", + "type": "text" + }, + { + "name": "response", + "type": "text" + } + ] + }, + { + "name": "status", + "type": "number" + } + ], + "name": "pageFlowSC1", + "type": "object" + } + ] + } + ], + "local": {} + } + } +});