Skip to content

Commit

Permalink
update JsonSchema type
Browse files Browse the repository at this point in the history
  • Loading branch information
snopoke committed Jan 17, 2025
1 parent 3e3f5a3 commit f0c011a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions assets/javascript/apps/pipeline/types/nodeParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ export type JsonSchema = {
title: string;
description?: string | undefined;
required?: string[] | undefined;
"ui:flow_node_type": string;
"ui:label": string;
"ui:can_add": boolean;
"ui:can_delete": boolean;
"ui:deprecated": boolean;
"ui:deprecation_message"?: string;
"ui:order"?: string[];
properties: Record<string, PropertySchema>;
[k: string]: any;
}
Expand Down

0 comments on commit f0c011a

Please sign in to comment.