@kevisual/cnb 0.0.71 → 0.0.73
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/dist/cli-live.js +42 -24
- package/dist/cli.js +583 -332
- package/dist/keep.js +34 -16
- package/dist/npc.js +576 -326
- package/dist/opencode.js +575 -324
- package/dist/routes.d.ts +6 -0
- package/dist/routes.js +565 -314
- package/package.json +2 -1
- package/src/issue/parse-html.ts +531 -0
- package/src/user/index.ts +19 -1
package/dist/routes.d.ts
CHANGED
|
@@ -514,6 +514,12 @@ declare class User extends CNBCore {
|
|
|
514
514
|
* @returns
|
|
515
515
|
*/
|
|
516
516
|
checkCookieValid(): Promise<Result$2>;
|
|
517
|
+
getCookieInfo(): Promise<{
|
|
518
|
+
cnbSession: string;
|
|
519
|
+
csrfKey: string;
|
|
520
|
+
firstPart: string;
|
|
521
|
+
expiredAt: number;
|
|
522
|
+
}>;
|
|
517
523
|
/**
|
|
518
524
|
* 使用 Token 获取用户信息
|
|
519
525
|
* @returns
|