CLI command *Compile* is missing #12
-
Hello, after lastest update I cannot find Compile command:
VERSION USAGE COMMANDS I've tried to reinstall @superfaceai package several times, but it didnt helped either. And after going back to 3.0.1 am getting this new error while running code:
Any Idea how to fix this? Programming on Windows 11, using LF convention. Thanks in advance! Rydlobeton |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @rydlobeton, I apologize for the inconvenience — we deprecated commands related to the previous OneSDK version (pre 3, for Node.js only) and removed them in the latest release. Downgrading CLI to the last major 3 version will support your workflow. Regarding the second error, it seems like an issue with the number in the provider name. As per the regex presented in the error, the provider name must start with a lowercase letter, followed by either a lowercase letter, an underscore ( Given that, the given provider name Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi @rydlobeton,
I apologize for the inconvenience — we deprecated commands related to the previous OneSDK version (pre 3, for Node.js only) and removed them in the latest release.
Downgrading CLI to the last major 3 version will support your workflow.
Regarding the second error, it seems like an issue with the number in the provider name. As per the regex presented in the error, the provider name must start with a lowercase letter, followed by either a lowercase letter, an underscore (
_
) or a dash (-
).Given that, the given provider name
main_upgates_client3
is invalid.Hope this helps!
Radek