gtx-cli 1.2.8-alpha.3 → 1.2.8
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/dist/console/index.d.ts +1 -1
- package/dist/console/index.js +1 -1
- package/package.json +1 -1
package/dist/console/index.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ export declare const noSourceFileError = "No source file found! Please double ch
|
|
|
14
14
|
export declare const noDataFormatError = "No data format found! Please make sure your translationsDir parameter ends with a supported file extension.";
|
|
15
15
|
export declare const noSupportedDataFormatError = "Unsupported data format! Please make sure your translationsDir parameter ends with a supported file extension.";
|
|
16
16
|
export declare const noApiKeyError = "No API key found! Please provide an API key using the --api-key flag or set the GT_API_KEY environment variable.";
|
|
17
|
-
export declare const devApiKeyError = "You are using a development API key. Please use a production API key to
|
|
17
|
+
export declare const devApiKeyError = "You are using a development API key. Please use a production API key to use the General Translation API.\nYou can generate a production API key with the command: npx gtx-cli auth -t production";
|
|
18
18
|
export declare const noProjectIdError = "No project ID found! Please provide a project ID using the --project-id flag, specify it in your gt.config.json file, or set the GT_PROJECT_ID environment variable.";
|
|
19
19
|
export declare const noVersionIdError = "No version ID found! Please provide a version ID using the --version-id flag or specify it in your gt.config.json file as the _versionId property.";
|
package/dist/console/index.js
CHANGED
|
@@ -43,6 +43,6 @@ exports.noSourceFileError = `No source file found! Please double check your tran
|
|
|
43
43
|
exports.noDataFormatError = `No data format found! Please make sure your translationsDir parameter ends with a supported file extension.`;
|
|
44
44
|
exports.noSupportedDataFormatError = `Unsupported data format! Please make sure your translationsDir parameter ends with a supported file extension.`;
|
|
45
45
|
exports.noApiKeyError = `No API key found! Please provide an API key using the --api-key flag or set the GT_API_KEY environment variable.`;
|
|
46
|
-
exports.devApiKeyError = `You are using a development API key. Please use a production API key to
|
|
46
|
+
exports.devApiKeyError = `You are using a development API key. Please use a production API key to use the General Translation API.\nYou can generate a production API key with the command: npx gtx-cli auth -t production`;
|
|
47
47
|
exports.noProjectIdError = `No project ID found! Please provide a project ID using the --project-id flag, specify it in your gt.config.json file, or set the GT_PROJECT_ID environment variable.`;
|
|
48
48
|
exports.noVersionIdError = `No version ID found! Please provide a version ID using the --version-id flag or specify it in your gt.config.json file as the _versionId property.`;
|