@yoooclaw/cli 0.0.5 → 0.0.7
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 +24 -8
- package/dist/bin.cjs +5911 -5695
- package/dist/bin.cjs.map +44 -43
- package/dist/errors.d.ts +10 -0
- package/dist/index.cjs +5911 -5695
- package/dist/index.cjs.map +44 -43
- package/dist/version.d.ts +2 -0
- package/package.json +5 -1
package/dist/errors.d.ts
CHANGED
|
@@ -31,6 +31,16 @@ export declare const ErrorCode: {
|
|
|
31
31
|
readonly CREDENTIAL_MISSING: "YOOOCLAW_CREDENTIAL_MISSING";
|
|
32
32
|
/** OS keychain 不可用 */
|
|
33
33
|
readonly KEYCHAIN_UNAVAILABLE: "YOOOCLAW_KEYCHAIN_UNAVAILABLE";
|
|
34
|
+
/** api-key label 不合法 */
|
|
35
|
+
readonly APIKEY_LABEL_INVALID: "YOOOCLAW_APIKEY_LABEL_INVALID";
|
|
36
|
+
/** api-key label 已存在 */
|
|
37
|
+
readonly APIKEY_LABEL_DUPLICATE: "YOOOCLAW_APIKEY_LABEL_DUPLICATE";
|
|
38
|
+
/** api-key label 不存在 */
|
|
39
|
+
readonly APIKEY_LABEL_NOT_FOUND: "YOOOCLAW_APIKEY_LABEL_NOT_FOUND";
|
|
40
|
+
/** multi-key 模式不支持 keychain 写入 */
|
|
41
|
+
readonly KEYCHAIN_MULTI_UNSUPPORTED: "YOOOCLAW_KEYCHAIN_MULTI_UNSUPPORTED";
|
|
42
|
+
/** tunnel label 不存在 */
|
|
43
|
+
readonly TUNNEL_LABEL_NOT_FOUND: "YOOOCLAW_TUNNEL_LABEL_NOT_FOUND";
|
|
34
44
|
/** 网络 / 出站调用失败 */
|
|
35
45
|
readonly NETWORK_ERROR: "YOOOCLAW_NETWORK_ERROR";
|
|
36
46
|
/** 操作被用户取消或需要确认 */
|