@comfyorg/comfyui-frontend-types 1.18.0 → 1.18.2
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 +0 -18
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -423,24 +423,6 @@ export declare class ComfyApi extends EventTarget {
|
|
|
423
423
|
moveUserData(source: string, dest: string, options?: {
|
|
424
424
|
overwrite: boolean;
|
|
425
425
|
}): Promise<Response>;
|
|
426
|
-
/**
|
|
427
|
-
* @overload@overload
|
|
428
|
-
* Lists user data files for the current user
|
|
429
|
-
* @param { string } dir The directory in which to list files
|
|
430
|
-
* @param { boolean } [recurse] If the listing should be recursive
|
|
431
|
-
* @param { true } [split] If the paths should be split based on the os path separator
|
|
432
|
-
* @returns { Promise<string[][]> } The list of split file paths in the format [fullPath, ...splitPath]
|
|
433
|
-
*/
|
|
434
|
-
/**
|
|
435
|
-
* @overload@overload
|
|
436
|
-
* Lists user data files for the current user
|
|
437
|
-
* @param { string } dir The directory in which to list files
|
|
438
|
-
* @param { boolean } [recurse] If the listing should be recursive
|
|
439
|
-
* @param { false | undefined } [split] If the paths should be split based on the os path separator
|
|
440
|
-
* @returns { Promise<string[]> } The list of files
|
|
441
|
-
*/
|
|
442
|
-
listUserData(dir: string, recurse: boolean, split?: true): Promise<string[][]>;
|
|
443
|
-
listUserData(dir: string, recurse: boolean, split?: false): Promise<string[]>;
|
|
444
426
|
listUserDataFullInfo(dir: string): Promise<UserDataFullInfo[]>;
|
|
445
427
|
getLogs(): Promise<string>;
|
|
446
428
|
getRawLogs(): Promise<LogsRawResponse>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.2",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"index.d.ts"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"description": "TypeScript definitions for @comfyorg/comfyui-frontend",
|
|
14
14
|
"license": "GPL-3.0-only",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@comfyorg/litegraph": "^0.14.
|
|
16
|
+
"@comfyorg/litegraph": "^0.14.2"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.5.13",
|