@trackunit/iris-app-runtime-core-api 0.0.56-alpha-f5134ec7c.0 → 0.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CustomFieldRuntime.d.ts +2 -2
- package/HostConnector.d.ts +0 -1
- package/package.json +2 -2
package/CustomFieldRuntime.d.ts
CHANGED
@@ -31,7 +31,7 @@ export declare type BooleanFieldDefinition = AbstractCustomFieldDefinitionObject
|
|
31
31
|
type: CustomFieldType.BOOLEAN;
|
32
32
|
};
|
33
33
|
export declare type DateFieldDefinition = AbstractCustomFieldDefinitionObject & {
|
34
|
-
|
34
|
+
defaultDateValue?: Date | null;
|
35
35
|
type: CustomFieldType.DATE;
|
36
36
|
};
|
37
37
|
export declare type PhoneNumberFieldDefinition = AbstractCustomFieldDefinitionObject & {
|
@@ -117,7 +117,7 @@ export declare type BooleanFieldValue = AbstractCustomFieldValue & {
|
|
117
117
|
booleanValue?: boolean | null;
|
118
118
|
};
|
119
119
|
export declare type DateFieldValue = AbstractCustomFieldValue & {
|
120
|
-
|
120
|
+
dateValue?: Date | null;
|
121
121
|
};
|
122
122
|
export declare type DropDownFieldValue = AbstractCustomFieldValue & {
|
123
123
|
stringArrayValue?: string[];
|
package/HostConnector.d.ts
CHANGED
@@ -18,7 +18,6 @@ export interface HostConnectorApi {
|
|
18
18
|
getUserSubscriptionContext(): Promise<IUserSubscriptionContext>;
|
19
19
|
getTokenContext(): Promise<ITokenContext>;
|
20
20
|
getCurrentUserContext(): Promise<ICurrentUserContext>;
|
21
|
-
getDeepLink(): DeepLink;
|
22
21
|
setDeepLink: SetDeepLink;
|
23
22
|
addToast(toast: PublicToast): Promise<void | "primaryAction" | "secondaryAction">;
|
24
23
|
getDeveloperSettingsContext(): Promise<IDeveloperSettingsContext>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@trackunit/iris-app-runtime-core-api",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.57",
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
5
5
|
"license": "UNLICENSED",
|
6
6
|
"module": "./index.js",
|
@@ -8,7 +8,7 @@
|
|
8
8
|
"type": "module",
|
9
9
|
"types": "./index.d.ts",
|
10
10
|
"dependencies": {
|
11
|
-
"@trackunit/react-core-contexts-api": "0.0.
|
11
|
+
"@trackunit/react-core-contexts-api": "0.0.52"
|
12
12
|
},
|
13
13
|
"peerDependencies": {}
|
14
14
|
}
|