chore(ui): typegen

This commit is contained in:
psychedelicious
2025-03-24 13:57:53 +10:00
parent e4b603f44e
commit 9fac7986c7

View File

@@ -1725,6 +1725,34 @@ export type components = {
*/
type: "alpha_mask_to_tensor";
};
/** ApiFieldIdentifier */
ApiFieldIdentifier: {
/**
* Node Id
* @description The node ID of the node that contains the field.
*/
node_id: string;
/**
* Field Name
* @description The name of the field to include in the composed model.
*/
field_name: string;
/**
* Field Name Override
* @description The name to use for the field in the composed model. If not provided, a unique name will be generated.
*/
field_name_override?: string | null;
/**
* Field Title Override
* @description The title to use for the field in the composed model. If not provided, the field name will be used.
*/
field_title_override?: string | null;
/**
* Field Description Override
* @description The description to use for the field in the composed model. If not provided, the field description will be used.
*/
field_description_override?: string | null;
};
/**
* AppConfig
* @description App Config Response
@@ -21861,6 +21889,11 @@ export type components = {
form?: {
[key: string]: components["schemas"]["JsonValue"];
} | null;
/**
* Api Fields
* @description The API fields of the workflow. This is a list of node IDs and field names that should be included in the composed model.
*/
api_fields?: components["schemas"]["ApiFieldIdentifier"][] | null;
/**
* Id
* @description The id of the workflow.
@@ -22076,6 +22109,11 @@ export type components = {
form?: {
[key: string]: components["schemas"]["JsonValue"];
} | null;
/**
* Api Fields
* @description The API fields of the workflow. This is a list of node IDs and field names that should be included in the composed model.
*/
api_fields?: components["schemas"]["ApiFieldIdentifier"][] | null;
};
/**
* Zoe (Depth) Processor