Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 45 additions & 45 deletions packages/cli/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,51 +122,51 @@
"commands_create_readyPlugin": "You are ready to build a plugin into a Polywrap",
"commands_create_readyProtocol": "You are ready to turn your protocol into a Polywrap",
"commands_create_settingUp": "Setting everything up...",
"commands_run_options_workflow": "workflow",
"commands_run_options_workflowScript": "Path to workflow script",
"commands_run_options_outputFilePath": "output-file-path",
"commands_run_options_validateScript": "Validate the output of the workflow jobs",
"commands_run_options_validate": "cue-file",
"commands_run_options_outputFile": "Output file path for the workflow result",
"commands_run_options_m_path": "path",
"commands_run_options_m": "Path to the Polywrap Workflow manifest file (default: {default})",
"commands_run_options_jobIds": "jobs",
"commands_run_options_jobs": "Specify ids of jobs that you want to run",
"commands_run_error_validatorNotFound": "validate script not found at: {path}",
"commands_run_error_outputFileMissing": "{option} option missing {argument} argument",
"commands_run_error_clientConfigMissingPath": "{option} option missing {argument} argument",
"commands_run_error_clientConfigModuleMissingExport": "Custom client config module missing named export 'getClientConfig' at {module}",
"commands_run_error_clientConfigInvalidFileExt": "Custom client config file: {module} must be a JS/TS file",
"commands_run_error_clientConfigNotObject": "Custom client config must be an object",
"commands_run_error_redirectsExportNotArray": "Exported redirects must be an array",
"commands_run_error_redirectsItemNotValid": "Redirect at index {index} must be an object with properties 'from' and 'to'",
"commands_run_error_redirectsItemFromNotString": "Redirect property 'from' at index {index} must be a valid wrap:// URI string",
"commands_run_error_redirectsItemToNotStringOrObject": "Redirect property 'to' at index {index} must be a valid wrap:// URI string, or a plugin",
"commands_run_error_redirectsItemToNotValidPlugin": "Redirect property 'to' at index {index} must be a valid plugin instance",
"commands_run_error_pluginsExportNotArray": "Exported plugins must be an array",
"commands_run_error_pluginsItemNotObject": "Plugin at index {index} must be an object with properties 'uri' and 'plugin'",
"commands_run_error_pluginsItemUriNotString": "Plugin property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_run_error_pluginsItemPluginNotObject": "Plugin property 'plugin' at index {index} must be an object with properties 'factory' and 'manifest'",
"commands_run_error_pluginsItemPluginFactoryNotFunction": "Plugin property 'plugin.factory' at index {index} must be a function",
"commands_run_error_pluginsItemPluginManifestNotObject": "Plugin property 'plugin.manifest' at index {index} must be an object",
"commands_run_error_interfacesExportNotArray": "Exported interfaces must be an array",
"commands_run_error_interfacesItemNotObject": "Interface at index {index} must be an object with properties 'interface' and 'implementations'",
"commands_run_error_interfacesItemInterfaceNotString": "Interface property 'interface' at index {index} must be a valid wrap:// URI string",
"commands_run_error_interfacesItemImplementationsNotArray": "Interface property 'implementations' at index {index} must be an array",
"commands_run_error_interfacesItemImplementationsEmpty": "Interface property 'implementations' at index {index} must not be an empty array",
"commands_run_error_interfacesItemImplementationsItemNotString": "Implementation at index ({index}, {implementationIndex}) must be a valid wrap:// URI string",
"commands_run_error_envsExportNotArray": "Exported envs must be an array",
"commands_run_error_envsItemNotObject": "Env at index {index} must be an object with properties 'uri'",
"commands_run_error_envsItemUriNotString": "Env property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_run_error_envsItemModuleNotObject": "Env property 'env' at index {index} must be an object",
"commands_run_description": "Runs Workflows",
"commands_run_error_missingScript": "Required argument {script} is missing",
"commands_run_error_noApi": "API needs to be initialized",
"commands_run_error_readFail": "Failed to read query {query}",
"commands_run_error_unsupportedOutputFileExt": "Unsupported outputFile extention: {outputFileExt}",
"commands_run_error_cueDoesNotExist": "Require cue to run validator, checkout https://cuelang.org/ for more information",
"commands_run_error_noWorkflowScriptFound": "Workflow script not found at path: {path}",
"commands_run_error_noTestEnvFound": "polywrap test-env not found, please run 'polywrap infra up --modules=eth-ens-ipfs'",
"commands_test_options_workflow": "workflow",
"commands_test_options_workflowScript": "Path to workflow script",
"commands_test_options_outputFilePath": "output-file-path",
"commands_test_options_validateScript": "Validate the output of the workflow jobs",
"commands_test_options_validate": "cue-file",
"commands_test_options_outputFile": "Output file path for the test result",
"commands_test_options_m_path": "path",
"commands_test_options_m": "Path to the Polywrap Test manifest file (default: {default})",
"commands_test_options_jobIds": "jobs",
"commands_test_options_jobs": "Specify ids of jobs that you want to run",
"commands_test_error_validatorNotFound": "validate script not found at: {path}",
"commands_test_error_outputFileMissing": "{option} option missing {argument} argument",
"commands_test_error_clientConfigMissingPath": "{option} option missing {argument} argument",
"commands_test_error_clientConfigModuleMissingExport": "Custom client config module missing named export 'getClientConfig' at {module}",
"commands_test_error_clientConfigInvalidFileExt": "Custom client config file: {module} must be a JS/TS file",
"commands_test_error_clientConfigNotObject": "Custom client config must be an object",
"commands_test_error_redirectsExportNotArray": "Exported redirects must be an array",
"commands_test_error_redirectsItemNotValid": "Redirect at index {index} must be an object with properties 'from' and 'to'",
"commands_test_error_redirectsItemFromNotString": "Redirect property 'from' at index {index} must be a valid wrap:// URI string",
"commands_test_error_redirectsItemToNotStringOrObject": "Redirect property 'to' at index {index} must be a valid wrap:// URI string, or a plugin",
"commands_test_error_redirectsItemToNotValidPlugin": "Redirect property 'to' at index {index} must be a valid plugin instance",
"commands_test_error_pluginsExportNotArray": "Exported plugins must be an array",
"commands_test_error_pluginsItemNotObject": "Plugin at index {index} must be an object with properties 'uri' and 'plugin'",
"commands_test_error_pluginsItemUriNotString": "Plugin property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_test_error_pluginsItemPluginNotObject": "Plugin property 'plugin' at index {index} must be an object with properties 'factory' and 'manifest'",
"commands_test_error_pluginsItemPluginFactoryNotFunction": "Plugin property 'plugin.factory' at index {index} must be a function",
"commands_test_error_pluginsItemPluginManifestNotObject": "Plugin property 'plugin.manifest' at index {index} must be an object",
"commands_test_error_interfacesExportNotArray": "Exported interfaces must be an array",
"commands_test_error_interfacesItemNotObject": "Interface at index {index} must be an object with properties 'interface' and 'implementations'",
"commands_test_error_interfacesItemInterfaceNotString": "Interface property 'interface' at index {index} must be a valid wrap:// URI string",
"commands_test_error_interfacesItemImplementationsNotArray": "Interface property 'implementations' at index {index} must be an array",
"commands_test_error_interfacesItemImplementationsEmpty": "Interface property 'implementations' at index {index} must not be an empty array",
"commands_test_error_interfacesItemImplementationsItemNotString": "Implementation at index ({index}, {implementationIndex}) must be a valid wrap:// URI string",
"commands_test_error_envsExportNotArray": "Exported envs must be an array",
"commands_test_error_envsItemNotObject": "Env at index {index} must be an object with properties 'uri'",
"commands_test_error_envsItemUriNotString": "Env property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_test_error_envsItemModuleNotObject": "Env property 'env' at index {index} must be an object",
"commands_test_description": "Execute Tests",
"commands_test_error_missingScript": "Required argument {script} is missing",
"commands_test_error_noApi": "API needs to be initialized",
"commands_test_error_readFail": "Failed to read query {query}",
"commands_test_error_unsupportedOutputFileExt": "Unsupported outputFile extention: {outputFileExt}",
"commands_test_error_cueDoesNotExist": "Require cue to run validator, checkout https://cuelang.org/ for more information",
"commands_test_error_noWorkflowScriptFound": "Workflow script not found at path: {path}",
"commands_test_error_noTestEnvFound": "polywrap test-env not found, please run 'polywrap infra up --modules=eth-ens-ipfs'",
"commands_polywrap_error_notACommand": "is not a command",
"commands_polywrap_helpPrompt": "Type {command} to view common commands",
"commands_manifest_description": "Inspect & Migrade Polywrap Manifests",
Expand Down
90 changes: 45 additions & 45 deletions packages/cli/lang/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,51 +122,51 @@
"commands_create_readyPlugin": "You are ready to build a plugin into a Polywrap",
"commands_create_readyProtocol": "You are ready to turn your protocol into a Polywrap",
"commands_create_settingUp": "Setting everything up...",
"commands_run_options_workflow": "workflow",
"commands_run_options_workflowScript": "Path to workflow script",
"commands_run_options_outputFilePath": "output-file-path",
"commands_run_options_validateScript": "Validate the output of the workflow jobs",
"commands_run_options_validate": "cue-file",
"commands_run_options_outputFile": "Output file path for the workflow result",
"commands_run_options_m_path": "path",
"commands_run_options_m": "Path to the Polywrap Workflow manifest file (default: {default})",
"commands_run_options_jobIds": "jobs",
"commands_run_options_jobs": "Specify ids of jobs that you want to run",
"commands_run_error_validatorNotFound": "validate script not found at: {path}",
"commands_run_error_outputFileMissing": "{option} option missing {argument} argument",
"commands_run_error_clientConfigMissingPath": "{option} option missing {argument} argument",
"commands_run_error_clientConfigModuleMissingExport": "Custom client config module missing named export 'getClientConfig' at {module}",
"commands_run_error_clientConfigInvalidFileExt": "Custom client config file: {module} must be a JS/TS file",
"commands_run_error_clientConfigNotObject": "Custom client config must be an object",
"commands_run_error_redirectsExportNotArray": "Exported redirects must be an array",
"commands_run_error_redirectsItemNotValid": "Redirect at index {index} must be an object with properties 'from' and 'to'",
"commands_run_error_redirectsItemFromNotString": "Redirect property 'from' at index {index} must be a valid wrap:// URI string",
"commands_run_error_redirectsItemToNotStringOrObject": "Redirect property 'to' at index {index} must be a valid wrap:// URI string, or a plugin",
"commands_run_error_redirectsItemToNotValidPlugin": "Redirect property 'to' at index {index} must be a valid plugin instance",
"commands_run_error_pluginsExportNotArray": "Exported plugins must be an array",
"commands_run_error_pluginsItemNotObject": "Plugin at index {index} must be an object with properties 'uri' and 'plugin'",
"commands_run_error_pluginsItemUriNotString": "Plugin property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_run_error_pluginsItemPluginNotObject": "Plugin property 'plugin' at index {index} must be an object with properties 'factory' and 'manifest'",
"commands_run_error_pluginsItemPluginFactoryNotFunction": "Plugin property 'plugin.factory' at index {index} must be a function",
"commands_run_error_pluginsItemPluginManifestNotObject": "Plugin property 'plugin.manifest' at index {index} must be an object",
"commands_run_error_interfacesExportNotArray": "Exported interfaces must be an array",
"commands_run_error_interfacesItemNotObject": "Interface at index {index} must be an object with properties 'interface' and 'implementations'",
"commands_run_error_interfacesItemInterfaceNotString": "Interface property 'interface' at index {index} must be a valid wrap:// URI string",
"commands_run_error_interfacesItemImplementationsNotArray": "Interface property 'implementations' at index {index} must be an array",
"commands_run_error_interfacesItemImplementationsEmpty": "Interface property 'implementations' at index {index} must not be an empty array",
"commands_run_error_interfacesItemImplementationsItemNotString": "Implementation at index ({index}, {implementationIndex}) must be a valid wrap:// URI string",
"commands_run_error_envsExportNotArray": "Exported envs must be an array",
"commands_run_error_envsItemNotObject": "Env at index {index} must be an object with properties 'uri'",
"commands_run_error_envsItemUriNotString": "Env property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_run_error_envsItemModuleNotObject": "Env property 'env' at index {index} must be an object",
"commands_run_description": "Runs Workflows",
"commands_run_error_missingScript": "Required argument {script} is missing",
"commands_run_error_noApi": "API needs to be initialized",
"commands_run_error_readFail": "Failed to read query {query}",
"commands_run_error_unsupportedOutputFileExt": "Unsupported outputFile extention: {outputFileExt}",
"commands_run_error_cueDoesNotExist": "Require cue to run validator, checkout https://cuelang.org/ for more information",
"commands_run_error_noWorkflowScriptFound": "Workflow script not found at path: {path}",
"commands_run_error_noTestEnvFound": "polywrap test-env not found, please run 'polywrap infra up --modules=eth-ens-ipfs'",
"commands_test_options_workflow": "workflow",
"commands_test_options_workflowScript": "Path to workflow script",
"commands_test_options_outputFilePath": "output-file-path",
"commands_test_options_validateScript": "Validate the output of the workflow jobs",
"commands_test_options_validate": "cue-file",
"commands_test_options_outputFile": "Output file path for the test result",
"commands_test_options_m_path": "path",
"commands_test_options_m": "Path to the Polywrap Test manifest file (default: {default})",
"commands_test_options_jobIds": "jobs",
"commands_test_options_jobs": "Specify ids of jobs that you want to run",
"commands_test_error_validatorNotFound": "validate script not found at: {path}",
"commands_test_error_outputFileMissing": "{option} option missing {argument} argument",
"commands_test_error_clientConfigMissingPath": "{option} option missing {argument} argument",
"commands_test_error_clientConfigModuleMissingExport": "Custom client config module missing named export 'getClientConfig' at {module}",
"commands_test_error_clientConfigInvalidFileExt": "Custom client config file: {module} must be a JS/TS file",
"commands_test_error_clientConfigNotObject": "Custom client config must be an object",
"commands_test_error_redirectsExportNotArray": "Exported redirects must be an array",
"commands_test_error_redirectsItemNotValid": "Redirect at index {index} must be an object with properties 'from' and 'to'",
"commands_test_error_redirectsItemFromNotString": "Redirect property 'from' at index {index} must be a valid wrap:// URI string",
"commands_test_error_redirectsItemToNotStringOrObject": "Redirect property 'to' at index {index} must be a valid wrap:// URI string, or a plugin",
"commands_test_error_redirectsItemToNotValidPlugin": "Redirect property 'to' at index {index} must be a valid plugin instance",
"commands_test_error_pluginsExportNotArray": "Exported plugins must be an array",
"commands_test_error_pluginsItemNotObject": "Plugin at index {index} must be an object with properties 'uri' and 'plugin'",
"commands_test_error_pluginsItemUriNotString": "Plugin property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_test_error_pluginsItemPluginNotObject": "Plugin property 'plugin' at index {index} must be an object with properties 'factory' and 'manifest'",
"commands_test_error_pluginsItemPluginFactoryNotFunction": "Plugin property 'plugin.factory' at index {index} must be a function",
"commands_test_error_pluginsItemPluginManifestNotObject": "Plugin property 'plugin.manifest' at index {index} must be an object",
"commands_test_error_interfacesExportNotArray": "Exported interfaces must be an array",
"commands_test_error_interfacesItemNotObject": "Interface at index {index} must be an object with properties 'interface' and 'implementations'",
"commands_test_error_interfacesItemInterfaceNotString": "Interface property 'interface' at index {index} must be a valid wrap:// URI string",
"commands_test_error_interfacesItemImplementationsNotArray": "Interface property 'implementations' at index {index} must be an array",
"commands_test_error_interfacesItemImplementationsEmpty": "Interface property 'implementations' at index {index} must not be an empty array",
"commands_test_error_interfacesItemImplementationsItemNotString": "Implementation at index ({index}, {implementationIndex}) must be a valid wrap:// URI string",
"commands_test_error_envsExportNotArray": "Exported envs must be an array",
"commands_test_error_envsItemNotObject": "Env at index {index} must be an object with properties 'uri'",
"commands_test_error_envsItemUriNotString": "Env property 'uri' at index {index} must be a valid wrap:// URI string",
"commands_test_error_envsItemModuleNotObject": "Env property 'env' at index {index} must be an object",
"commands_test_description": "Execute Tests",
"commands_test_error_missingScript": "Required argument {script} is missing",
"commands_test_error_noApi": "API needs to be initialized",
"commands_test_error_readFail": "Failed to read query {query}",
"commands_test_error_unsupportedOutputFileExt": "Unsupported outputFile extention: {outputFileExt}",
"commands_test_error_cueDoesNotExist": "Require cue to run validator, checkout https://cuelang.org/ for more information",
"commands_test_error_noWorkflowScriptFound": "Workflow script not found at path: {path}",
"commands_test_error_noTestEnvFound": "polywrap test-env not found, please run 'polywrap infra up --modules=eth-ens-ipfs'",
"commands_polywrap_error_notACommand": "is not a command",
"commands_polywrap_helpPrompt": "Type {command} to view common commands",
"commands_manifest_description": "Inspect & Migrade Polywrap Manifests",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/__tests__/e2e/help.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Commands:
create|c Create New Projects
deploy|d [options] Deploys Polywrap Projects
infra|i [options] <action> Modular Infrastructure-As-Code Orchestrator
run|r [options] Runs Workflows
test|t [options] Execute Tests
docgen|o [options] <action> Generate wrapper documentation
manifest|m Inspect & Migrade Polywrap Manifests
help [command] display help for command
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/__tests__/e2e/no-command.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Commands:
create|c Create New Projects
deploy|d [options] Deploys Polywrap Projects
infra|i [options] <action> Modular Infrastructure-As-Code Orchestrator
run|r [options] Runs Workflows
test|t [options] Execute Tests
docgen|o [options] <action> Generate wrapper documentation
manifest|m Inspect & Migrade Polywrap Manifests
help [command] display help for command
Expand Down
Loading