@trackunit/iris-app-api
Advanced tools
Comparing version 0.0.42 to 0.0.43
@@ -5,2 +5,4 @@ # Changelog | ||
### [0.0.43](https://github.com/Trackunit/manager/compare/iris-app-api/0.0.42...iris-app-api/0.0.43) (2022-08-12) | ||
### [0.0.42](https://github.com/Trackunit/manager/compare/iris-app-api/0.0.41...iris-app-api/0.0.42) (2022-08-05) | ||
@@ -7,0 +9,0 @@ |
{ | ||
"name": "@trackunit/iris-app-api", | ||
"version": "0.0.42", | ||
"version": "0.0.43", | ||
"license": "UNLICENSED", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/Trackunit/manager", |
@@ -94,27 +94,27 @@ export interface IrisAppManifest { | ||
pattern?: string; | ||
defaultValue?: string; | ||
defaultStringValue?: string; | ||
} | ||
export interface EmailFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "EMAIL"; | ||
defaultValue?: string; | ||
defaultStringValue?: string; | ||
} | ||
export interface WebAddressFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "WEB_ADDRESS"; | ||
defaultValue?: string; | ||
defaultStringValue?: string; | ||
} | ||
export interface PhoneNumberFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "PHONE_NUMBER"; | ||
defaultValue?: string; | ||
defaultStringValue?: string; | ||
} | ||
export interface BooleanFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "BOOLEAN"; | ||
defaultValue?: boolean; | ||
defaultBooleanValue?: boolean; | ||
} | ||
export interface DateFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "DATE"; | ||
defaultValue?: string; | ||
defaultDateValue?: string; | ||
} | ||
export interface DropDownFieldDefinition extends AbstractCustomFieldDefinition { | ||
type: "DROPDOWN"; | ||
defaultValue?: string | string[]; | ||
defaultStringArrayValue?: string[]; | ||
multiSelect?: boolean; | ||
@@ -168,3 +168,3 @@ allValues?: string[]; | ||
type: "NUMBER"; | ||
defaultValue?: number; | ||
defaultNumberValue?: number; | ||
minimum?: number; | ||
@@ -171,0 +171,0 @@ maximum?: number; |
Sorry, the diff of this file is not supported yet
28776