@bitwarden/cli 2025.1.3 → 2025.3.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 +77 -74
- package/build/a4b5a5df5180b97aad55.module.wasm +0 -0
- package/build/bw.js +3962 -3111
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +24 -0
- package/package.json +10 -6
- package/build/58bf3c4677e72376388d.module.wasm +0 -0
|
@@ -111,6 +111,30 @@
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
+
"forwaderInvalidOperation": {
|
|
115
|
+
"message": "$SERVICENAME$ refused your request. Please contact your service provider for assistance.",
|
|
116
|
+
"description": "Displayed when the user is forbidden from using the API by the forwarding service.",
|
|
117
|
+
"placeholders": {
|
|
118
|
+
"servicename": {
|
|
119
|
+
"content": "$1",
|
|
120
|
+
"example": "SimpleLogin"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"forwaderInvalidOperationWithMessage": {
|
|
125
|
+
"message": "$SERVICENAME$ refused your request: $ERRORMESSAGE$",
|
|
126
|
+
"description": "Displayed when the user is forbidden from using the API by the forwarding service with an error message.",
|
|
127
|
+
"placeholders": {
|
|
128
|
+
"servicename": {
|
|
129
|
+
"content": "$1",
|
|
130
|
+
"example": "SimpleLogin"
|
|
131
|
+
},
|
|
132
|
+
"errormessage": {
|
|
133
|
+
"content": "$2",
|
|
134
|
+
"example": "Please verify your email address to continue."
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
114
138
|
"forwarderNoAccountId": {
|
|
115
139
|
"message": "Unable to obtain $SERVICENAME$ masked email account ID.",
|
|
116
140
|
"description": "Displayed when the forwarding service fails to return an account ID.",
|
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.3.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitwarden",
|
|
7
7
|
"password",
|
|
@@ -32,15 +32,19 @@
|
|
|
32
32
|
"build:bit:prod:watch": "cross-env NODE_ENV=production npm run build:bit:watch",
|
|
33
33
|
"dist:oss:win": "npm run build:oss:prod && npm run clean && npm run package:oss:win",
|
|
34
34
|
"dist:oss:mac": "npm run build:oss:prod && npm run clean && npm run package:oss:mac",
|
|
35
|
+
"dist:oss:mac-arm64": "npm run build:oss:prod && npm run clean && npm run package:oss:mac-arm64",
|
|
35
36
|
"dist:oss:lin": "npm run build:oss:prod && npm run clean && npm run package:oss:lin",
|
|
36
37
|
"dist:bit:win": "npm run build:bit:prod && npm run clean && npm run package:bit:win",
|
|
37
38
|
"dist:bit:mac": "npm run build:bit:prod && npm run clean && npm run package:bit:mac",
|
|
39
|
+
"dist:bit:mac-arm64": "npm run build:bit:prod && npm run clean && npm run package:bit:mac-arm64",
|
|
38
40
|
"dist:bit:lin": "npm run build:bit:prod && npm run clean && npm run package:bit:lin",
|
|
39
41
|
"package:oss:win": "pkg . --targets win-x64 --output ./dist/oss/windows/bw.exe",
|
|
40
42
|
"package:oss:mac": "pkg . --targets macos-x64 --output ./dist/oss/macos/bw",
|
|
43
|
+
"package:oss:mac-arm64": "pkg . --targets macos-arm64 --output ./dist/oss/macos-arm64/bw",
|
|
41
44
|
"package:oss:lin": "pkg . --targets linux-x64 --output ./dist/oss/linux/bw",
|
|
42
45
|
"package:bit:win": "pkg . --targets win-x64 --output ./dist/bit/windows/bw.exe",
|
|
43
46
|
"package:bit:mac": "pkg . --targets macos-x64 --output ./dist/bit/macos/bw",
|
|
47
|
+
"package:bit:mac-arm64": "pkg . --targets macos-arm64 --output ./dist/bit/macos-arm64/bw",
|
|
44
48
|
"package:bit:lin": "pkg . --targets linux-x64 --output ./dist/bit/linux/bw",
|
|
45
49
|
"test": "jest",
|
|
46
50
|
"test:watch": "jest --watch",
|
|
@@ -64,11 +68,11 @@
|
|
|
64
68
|
"chalk": "4.1.2",
|
|
65
69
|
"commander": "11.1.0",
|
|
66
70
|
"form-data": "4.0.1",
|
|
67
|
-
"https-proxy-agent": "7.0.
|
|
71
|
+
"https-proxy-agent": "7.0.6",
|
|
68
72
|
"inquirer": "8.2.6",
|
|
69
|
-
"jsdom": "
|
|
73
|
+
"jsdom": "26.0.0",
|
|
70
74
|
"jszip": "3.10.1",
|
|
71
|
-
"koa": "2.15.
|
|
75
|
+
"koa": "2.15.4",
|
|
72
76
|
"koa-bodyparser": "4.4.1",
|
|
73
77
|
"koa-json": "2.0.2",
|
|
74
78
|
"lowdb": "1.0.0",
|
|
@@ -77,10 +81,10 @@
|
|
|
77
81
|
"node-fetch": "2.6.12",
|
|
78
82
|
"node-forge": "1.3.1",
|
|
79
83
|
"open": "8.4.2",
|
|
80
|
-
"papaparse": "5.
|
|
84
|
+
"papaparse": "5.5.2",
|
|
81
85
|
"proper-lockfile": "4.1.2",
|
|
82
86
|
"rxjs": "7.8.1",
|
|
83
|
-
"tldts": "6.1.
|
|
87
|
+
"tldts": "6.1.77",
|
|
84
88
|
"zxcvbn": "4.4.2"
|
|
85
89
|
}
|
|
86
90
|
}
|
|
Binary file
|