@comfyorg/comfyui-frontend-types 1.26.8 → 1.26.9

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.
Files changed (2) hide show
  1. package/index.d.ts +5 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -896,6 +896,9 @@ export declare class ComfyApi extends EventTarget {
896
896
  getRawLogs(): Promise<LogsRawResponse>;
897
897
  subscribeLogs(enabled: boolean): Promise<void>;
898
898
  getFolderPaths(): Promise<Record<string, string[]>>;
899
+ freeMemory(options: {
900
+ freeExecutionCache: boolean;
901
+ }): Promise<void>;
899
902
  /**
900
903
  * Gets the custom nodes i18n data from the server.
901
904
  *
@@ -904,13 +907,13 @@ export declare class ComfyApi extends EventTarget {
904
907
  getCustomNodesI18n(): Promise<Record<string, any>>;
905
908
  /**
906
909
  * Checks if the server supports a specific feature.
907
- * @param featureName The name of the feature to check
910
+ * @param featureName The name of the feature to check (supports dot notation for nested values)
908
911
  * @returns true if the feature is supported, false otherwise
909
912
  */
910
913
  serverSupportsFeature(featureName: string): boolean;
911
914
  /**
912
915
  * Gets a server feature flag value.
913
- * @param featureName The name of the feature to get
916
+ * @param featureName The name of the feature to get (supports dot notation for nested values)
914
917
  * @param defaultValue The default value if the feature is not found
915
918
  * @returns The feature value or default
916
919
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfyorg/comfyui-frontend-types",
3
- "version": "1.26.8",
3
+ "version": "1.26.9",
4
4
  "types": "./index.d.ts",
5
5
  "files": [
6
6
  "index.d.ts"