Skip to content

Commit d0962b3

Browse files
authored
Merge pull request #864 from contentstack/staging
Merge staging to main
2 parents 71dc86e + 59f1caa commit d0962b3

File tree

50 files changed

+774
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+774
-300
lines changed

package-lock.json

Lines changed: 71 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/contentstack-auth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-auth
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version)
21-
@contentstack/cli-auth/1.3.9 darwin-arm64 node-v18.16.0
21+
@contentstack/cli-auth/1.3.10 darwin-arm64 node-v18.16.0
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND

packages/contentstack-auth/messages/index.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"CLI_AUTH_LOGIN_ENTER_PASSWORD": "Enter your password",
44
"CLI_AUTH_LOGIN_SUCCESS": "Successfully logged in!!",
55
"CLI_AUTH_LOGIN_FAILED": "Login Error",
6+
"CLI_AUTH_AUTHENTICATION_FAILED": "You need to login first. See: auth:login --help",
67
"CLI_AUTH_LOGIN_DESCRIPTION": "User session login",
78
"CLI_AUTH_LOGIN_FLAG_USERNAME": "User name",
89
"CLI_AUTH_LOGIN_FLAG_PASSWORD": "Password",
@@ -43,5 +44,6 @@
4344
"CLI_AUTH_TOKENS_VALIDATION_INVALID_MANAGEMENT_TOKEN": "Invalid management token",
4445
"CLI_AUTH_TOKENS_VALIDATION_INVALID_API_KEY": "Invalid api key",
4546
"CLI_AUTH_EXIT_PROCESS": "Exiting the process...",
46-
"CLI_SELECT_TOKEN_TYPE": "Select the type of token to add"
47+
"CLI_SELECT_TOKEN_TYPE": "Select the type of token to add",
48+
"CLI_AUTH_ENTER_BRANCH": "Enter branch name"
4749
}

packages/contentstack-auth/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-auth",
33
"description": "Contentstack CLI plugin for authentication activities",
4-
"version": "1.3.9",
4+
"version": "1.3.10",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"scripts": {
@@ -18,7 +18,8 @@
1818
"lint": "eslint src/**/*.ts",
1919
"format": "eslint src/**/*.ts --fix",
2020
"test:integration": "mocha --forbid-only \"test/integration/*.test.ts\"",
21-
"test:unit": "mocha --forbid-only \"test/unit/*.test.ts\""
21+
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
22+
"test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\""
2223
},
2324
"dependencies": {
2425
"@contentstack/cli-command": "^1.2.9",
@@ -85,4 +86,4 @@
8586
}
8687
},
8788
"repository": "contentstack/cli"
88-
}
89+
}

0 commit comments

Comments
 (0)