@bitwarden/cli 2025.8.0 → 2025.9.0
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/build/502.js +16 -16
- package/build/5f4affee2c2148a94c80.module.wasm +0 -0
- package/build/bw.js +3610 -2644
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +15 -0
- package/package.json +4 -4
- package/build/e2a34ead0d57593919b8.module.wasm +0 -0
|
@@ -218,5 +218,20 @@
|
|
|
218
218
|
},
|
|
219
219
|
"myItems": {
|
|
220
220
|
"message": "My Items"
|
|
221
|
+
},
|
|
222
|
+
"organizationUsingKeyConnectorConfirmLoggedOut": {
|
|
223
|
+
"message": "An organization you are a member of is using Key Connector. In order to access the vault, you must confirm the Key Connector domain now via the web vault. You have been logged out."
|
|
224
|
+
},
|
|
225
|
+
"confirmKeyConnectorDomain": {
|
|
226
|
+
"message": "Please confirm the domain below with your organization administrator. Key Connector domain: $KEYCONNECTORDOMAIN$",
|
|
227
|
+
"placeholders": {
|
|
228
|
+
"keyConnectorDomain": {
|
|
229
|
+
"content": "$1",
|
|
230
|
+
"example": "Key Connector domain"
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"confirm": {
|
|
235
|
+
"message": "Confirm"
|
|
221
236
|
}
|
|
222
237
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitwarden/cli",
|
|
3
3
|
"description": "A secure and free password manager for all of your devices.",
|
|
4
|
-
"version": "2025.
|
|
4
|
+
"version": "2025.9.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitwarden",
|
|
7
7
|
"password",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
19
19
|
"scripts": {
|
|
20
20
|
"clean": "rimraf dist",
|
|
21
|
-
"build:oss": "
|
|
21
|
+
"build:oss": "webpack",
|
|
22
22
|
"build:oss:debug": "npm run build:oss && node --inspect ./build/bw.js",
|
|
23
23
|
"build:oss:watch": "webpack --watch",
|
|
24
24
|
"build:oss:prod": "cross-env NODE_ENV=production webpack",
|
|
25
25
|
"build:oss:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
26
26
|
"debug": "node --inspect ./build/bw.js",
|
|
27
27
|
"publish:npm": "npm run build:oss:prod && npm publish --access public",
|
|
28
|
-
"build:bit": "
|
|
28
|
+
"build:bit": "webpack -c ../../bitwarden_license/bit-cli/webpack.config.js",
|
|
29
29
|
"build:bit:debug": "npm run build:bit && node --inspect ./build/bw.js",
|
|
30
30
|
"build:bit:watch": "webpack --watch -c ../../bitwarden_license/bit-cli/webpack.config.js",
|
|
31
31
|
"build:bit:prod": "cross-env NODE_ENV=production npm run build:bit",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"browser-hrtime": "1.1.8",
|
|
70
70
|
"chalk": "4.1.2",
|
|
71
71
|
"commander": "11.1.0",
|
|
72
|
-
"core-js": "3.
|
|
72
|
+
"core-js": "3.45.0",
|
|
73
73
|
"form-data": "4.0.4",
|
|
74
74
|
"https-proxy-agent": "7.0.6",
|
|
75
75
|
"inquirer": "8.2.6",
|
|
Binary file
|