@bitwarden/cli 2024.4.1 → 2024.6.1
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/README.md +3 -0
- package/build/bw.js +38248 -34000
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +102 -0
- package/package.json +25 -16
|
@@ -58,5 +58,107 @@
|
|
|
58
58
|
},
|
|
59
59
|
"errorAssigningTargetFolder": {
|
|
60
60
|
"message": "Error assigning target folder."
|
|
61
|
+
},
|
|
62
|
+
"forwarderError": {
|
|
63
|
+
"message": "$SERVICENAME$ error: $ERRORMESSAGE$",
|
|
64
|
+
"description": "Reports an error returned by a forwarding service to the user.",
|
|
65
|
+
"placeholders": {
|
|
66
|
+
"servicename": {
|
|
67
|
+
"content": "$1",
|
|
68
|
+
"example": "SimpleLogin"
|
|
69
|
+
},
|
|
70
|
+
"errormessage": {
|
|
71
|
+
"content": "$2",
|
|
72
|
+
"example": "Invalid characters in domain name."
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"forwarderGeneratedBy": {
|
|
77
|
+
"message": "Generated by Bitwarden.",
|
|
78
|
+
"description": "Displayed with the address on the forwarding service's configuration screen."
|
|
79
|
+
},
|
|
80
|
+
"forwarderGeneratedByWithWebsite": {
|
|
81
|
+
"message": "Website: $WEBSITE$. Generated by Bitwarden.",
|
|
82
|
+
"description": "Displayed with the address on the forwarding service's configuration screen.",
|
|
83
|
+
"placeholders": {
|
|
84
|
+
"WEBSITE": {
|
|
85
|
+
"content": "$1",
|
|
86
|
+
"example": "www.example.com"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"forwaderInvalidToken": {
|
|
91
|
+
"message": "Invalid $SERVICENAME$ API token",
|
|
92
|
+
"description": "Displayed when the user's API token is empty or rejected by the forwarding service.",
|
|
93
|
+
"placeholders": {
|
|
94
|
+
"servicename": {
|
|
95
|
+
"content": "$1",
|
|
96
|
+
"example": "SimpleLogin"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"forwaderInvalidTokenWithMessage": {
|
|
101
|
+
"message": "Invalid $SERVICENAME$ API token: $ERRORMESSAGE$",
|
|
102
|
+
"description": "Displayed when the user's API token is rejected by the forwarding service with an error message.",
|
|
103
|
+
"placeholders": {
|
|
104
|
+
"servicename": {
|
|
105
|
+
"content": "$1",
|
|
106
|
+
"example": "SimpleLogin"
|
|
107
|
+
},
|
|
108
|
+
"errormessage": {
|
|
109
|
+
"content": "$2",
|
|
110
|
+
"example": "Please verify your email address to continue."
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"forwarderNoAccountId": {
|
|
115
|
+
"message": "Unable to obtain $SERVICENAME$ masked email account ID.",
|
|
116
|
+
"description": "Displayed when the forwarding service fails to return an account ID.",
|
|
117
|
+
"placeholders": {
|
|
118
|
+
"servicename": {
|
|
119
|
+
"content": "$1",
|
|
120
|
+
"example": "SimpleLogin"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"forwarderNoDomain": {
|
|
125
|
+
"message": "Invalid $SERVICENAME$ domain.",
|
|
126
|
+
"description": "Displayed when the domain is empty or domain authorization failed at the forwarding service.",
|
|
127
|
+
"placeholders": {
|
|
128
|
+
"servicename": {
|
|
129
|
+
"content": "$1",
|
|
130
|
+
"example": "SimpleLogin"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"forwarderNoUrl": {
|
|
135
|
+
"message": "Invalid $SERVICENAME$ url.",
|
|
136
|
+
"description": "Displayed when the url of the forwarding service wasn't supplied.",
|
|
137
|
+
"placeholders": {
|
|
138
|
+
"servicename": {
|
|
139
|
+
"content": "$1",
|
|
140
|
+
"example": "SimpleLogin"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"forwarderUnknownError": {
|
|
145
|
+
"message": "Unknown $SERVICENAME$ error occurred.",
|
|
146
|
+
"description": "Displayed when the forwarding service failed due to an unknown error.",
|
|
147
|
+
"placeholders": {
|
|
148
|
+
"servicename": {
|
|
149
|
+
"content": "$1",
|
|
150
|
+
"example": "SimpleLogin"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"forwarderUnknownForwarder": {
|
|
155
|
+
"message": "Unknown forwarder: '$SERVICENAME$'.",
|
|
156
|
+
"description": "Displayed when the forwarding service is not supported.",
|
|
157
|
+
"placeholders": {
|
|
158
|
+
"servicename": {
|
|
159
|
+
"content": "$1",
|
|
160
|
+
"example": "JustTrust.us"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
61
163
|
}
|
|
62
164
|
}
|
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": "2024.
|
|
4
|
+
"version": "2024.6.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitwarden",
|
|
7
7
|
"password",
|
|
@@ -18,21 +18,30 @@
|
|
|
18
18
|
"license": "GPL-3.0-only",
|
|
19
19
|
"scripts": {
|
|
20
20
|
"clean": "rimraf dist",
|
|
21
|
-
"build": "webpack",
|
|
22
|
-
"build:debug": "npm run build && node --inspect ./build/bw.js",
|
|
23
|
-
"build:watch": "webpack --watch",
|
|
24
|
-
"build:prod": "cross-env NODE_ENV=production webpack",
|
|
25
|
-
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
26
|
-
"package": "npm run package:win && npm run package:mac && npm run package:lin",
|
|
27
|
-
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
|
|
28
|
-
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
|
|
29
|
-
"package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
|
|
21
|
+
"build:oss": "webpack",
|
|
22
|
+
"build:oss:debug": "npm run build:oss && node --inspect ./build/bw.js",
|
|
23
|
+
"build:oss:watch": "webpack --watch",
|
|
24
|
+
"build:oss:prod": "cross-env NODE_ENV=production webpack",
|
|
25
|
+
"build:oss:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
30
26
|
"debug": "node --inspect ./build/bw.js",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
27
|
+
"publish:npm": "npm run build:oss:prod && npm publish --access public",
|
|
28
|
+
"build:bit": "webpack -c ../../bitwarden_license/bit-cli/webpack.config.js",
|
|
29
|
+
"build:bit:debug": "npm run build:bit && node --inspect ./build/bw.js",
|
|
30
|
+
"build:bit:watch": "webpack --watch -c ../../bitwarden_license/bit-cli/webpack.config.js",
|
|
31
|
+
"build:bit:prod": "cross-env NODE_ENV=production npm run build:bit",
|
|
32
|
+
"build:bit:prod:watch": "cross-env NODE_ENV=production npm run build:bit:watch",
|
|
33
|
+
"dist:oss:win": "npm run build:oss:prod && npm run clean && npm run package:oss:win",
|
|
34
|
+
"dist:oss:mac": "npm run build:oss:prod && npm run clean && npm run package:oss:mac",
|
|
35
|
+
"dist:oss:lin": "npm run build:oss:prod && npm run clean && npm run package:oss:lin",
|
|
36
|
+
"dist:bit:win": "npm run build:bit:prod && npm run clean && npm run package:bit:win",
|
|
37
|
+
"dist:bit:mac": "npm run build:bit:prod && npm run clean && npm run package:bit:mac",
|
|
38
|
+
"dist:bit:lin": "npm run build:bit:prod && npm run clean && npm run package:bit:lin",
|
|
39
|
+
"package:oss:win": "pkg . --targets win-x64 --output ./dist/oss/windows/bw.exe",
|
|
40
|
+
"package:oss:mac": "pkg . --targets macos-x64 --output ./dist/oss/macos/bw",
|
|
41
|
+
"package:oss:lin": "pkg . --targets linux-x64 --output ./dist/oss/linux/bw",
|
|
42
|
+
"package:bit:win": "pkg . --targets win-x64 --output ./dist/bit/windows/bw.exe",
|
|
43
|
+
"package:bit:mac": "pkg . --targets macos-x64 --output ./dist/bit/macos/bw",
|
|
44
|
+
"package:bit:lin": "pkg . --targets linux-x64 --output ./dist/bit/linux/bw",
|
|
36
45
|
"test": "jest",
|
|
37
46
|
"test:watch": "jest --watch",
|
|
38
47
|
"test:watch:all": "jest --watchAll"
|
|
@@ -71,7 +80,7 @@
|
|
|
71
80
|
"papaparse": "5.4.1",
|
|
72
81
|
"proper-lockfile": "4.1.2",
|
|
73
82
|
"rxjs": "7.8.1",
|
|
74
|
-
"tldts": "6.1.
|
|
83
|
+
"tldts": "6.1.25",
|
|
75
84
|
"zxcvbn": "4.4.2"
|
|
76
85
|
}
|
|
77
86
|
}
|