@comfyorg/comfyui-frontend-types 1.30.3 → 1.30.4
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/index.d.ts +14 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1397,6 +1397,16 @@ export declare class ComfyApp {
|
|
|
1397
1397
|
* This is an experimental API and may be changed or removed in the future.
|
|
1398
1398
|
*/
|
|
1399
1399
|
onAuthUserResolved?(user: AuthUserInfo, app: ComfyApp): Promise<void> | void;
|
|
1400
|
+
/**
|
|
1401
|
+
* Fired whenever the auth token is refreshed.
|
|
1402
|
+
* This is an experimental API and may be changed or removed in the future.
|
|
1403
|
+
*/
|
|
1404
|
+
onAuthTokenRefreshed?(): Promise<void> | void;
|
|
1405
|
+
/**
|
|
1406
|
+
* Fired when user logs out.
|
|
1407
|
+
* This is an experimental API and may be changed or removed in the future.
|
|
1408
|
+
*/
|
|
1409
|
+
onAuthUserLogout?(): Promise<void> | void;
|
|
1400
1410
|
[key: string]: any;
|
|
1401
1411
|
}
|
|
1402
1412
|
|
|
@@ -7520,6 +7530,10 @@ export declare class ComfyApp {
|
|
|
7520
7530
|
date?: string;
|
|
7521
7531
|
useCase?: string;
|
|
7522
7532
|
license?: string;
|
|
7533
|
+
/**
|
|
7534
|
+
* Estimated VRAM requirement in bytes.
|
|
7535
|
+
*/
|
|
7536
|
+
vram?: number;
|
|
7523
7537
|
size?: number;
|
|
7524
7538
|
}
|
|
7525
7539
|
|