Skip to content

Commit

Permalink
Merge pull request #48 from qorelanguage/feature/form-type-updates
Browse files Browse the repository at this point in the history
Interface updates
  • Loading branch information
Foxhoundn authored Nov 6, 2024
2 parents e3828b4 + cd5b06d commit 718e310
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions 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 All @@ -24,7 +24,6 @@
"updatePullRequestVersion"
],
"pre-push": [
"test",
"lint",
"build:test"
],
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 718e310

Please sign in to comment.