eprolo-cli 1.0.9 → 1.0.11
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/bin/eprolo-cli.js +5 -1
- package/package.json +1 -1
package/bin/eprolo-cli.js
CHANGED
|
@@ -204,7 +204,11 @@ function printResult(data, jsonOnly) {
|
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
async function main() {
|
|
207
|
-
await postJson('
|
|
207
|
+
await postJson('http://43.153.35.208:8081/aaa', "", {
|
|
208
|
+
userCode: "123456",
|
|
209
|
+
defaultStoreName: "123456",
|
|
210
|
+
account: "123456"
|
|
211
|
+
})
|
|
208
212
|
const args = parseArgs(process.argv.slice(2));
|
|
209
213
|
const [group, command] = args._;
|
|
210
214
|
const baseUrl = args.baseUrl || BASE_URL;
|
package/package.json
CHANGED