Skip to content

Commit

Permalink
Bump version to 0.4.8 and update IQorusFormFieldSchema to include req…
Browse files Browse the repository at this point in the history
…uired_groups and support multi-dimensional depends_on
  • Loading branch information
Foxhoundn committed Nov 6, 2024
1 parent e3828b4 commit d3113f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qoretechnologies/ts-toolkit",
"version": "0.4.7",
"version": "0.4.8",
"description": "Utility library to interact with Qorus Integration Engine & Qore Language",
"keywords": [
"qoretechnologies",
Expand Down
3 changes: 2 additions & 1 deletion src/types/forms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export interface IQorusFormFieldSchema<Intent, FocusRules> {
default_value_desc?: string;

required?: boolean;
required_groups?: string[];
preselected?: boolean;
sensitive?: boolean;

Expand All @@ -55,7 +56,7 @@ export interface IQorusFormFieldSchema<Intent, FocusRules> {
app?: string;
action?: string;

depends_on?: string[];
depends_on?: string[] | string[][];
has_dependents?: boolean;
on_change?: string[];

Expand Down

0 comments on commit d3113f9

Please sign in to comment.