eprolo-cli 1.0.25 → 1.0.26
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 +4 -4
- package/package.json +1 -1
package/bin/eprolo-cli.js
CHANGED
|
@@ -233,10 +233,10 @@ async function main() {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
if (group === "batch" && command === "submit") {
|
|
236
|
-
if (!args.action) throw new Error("batch submit requires --action");
|
|
237
|
-
if (args.action !== "ai_release_products") {
|
|
238
|
-
|
|
239
|
-
}
|
|
236
|
+
// if (!args.action) throw new Error("batch submit requires --action");
|
|
237
|
+
// if (args.action !== "ai_release_products") {
|
|
238
|
+
// throw new Error("Only ai_release_products is supported in this simplified version.");
|
|
239
|
+
// }
|
|
240
240
|
const auth = requireAuth(args);
|
|
241
241
|
const target = requireTaskTarget(args);
|
|
242
242
|
const productIds = splitIds(args.productIds);
|
package/package.json
CHANGED