@trackunit/iris-app-runtime-core-api 0.0.36 → 0.0.39
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 +4 -0
- package/README.md +13 -3
- package/package.json +2 -2
package/CustomFieldRuntime.d.ts
CHANGED
@@ -143,6 +143,10 @@ export interface ValueAndDefinition {
|
|
143
143
|
definition: CustomFieldDefinition;
|
144
144
|
value: CustomFieldValue;
|
145
145
|
}
|
146
|
+
export interface AbstractValueAndDefinition {
|
147
|
+
definition: AbstractCustomFieldDefinitionObject;
|
148
|
+
value: AbstractCustomFieldValue;
|
149
|
+
}
|
146
150
|
export interface ValueAndDefinitionKey {
|
147
151
|
definitionKey: string;
|
148
152
|
value: CustomFieldValue;
|
package/README.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
|
-
|
1
|
+
# Trackunit Iris App Runtime Core API
|
2
|
+
The `@trackunit/iris-app-runtime-core-api` package is a small package containing reusable types for the Trackunit Iris App SDK.
|
2
3
|
|
3
|
-
|
4
|
+
Trackunit Iris Apps are used by external developers to integrate custom functionality into [the Trackunit Manager platform](https://www.trackunit.com/services/manager/).
|
4
5
|
|
5
|
-
|
6
|
+
For a full guide on Iris App Development, please visit our [Developer Hub](https://developers.trackunit.com/)
|
7
|
+
|
8
|
+
## Basic Usage
|
9
|
+
This package is not meant for isolated usage but is a part of the [`@trackunit/iris-app`](https://www.npmjs.com/package/@trackunit/iris-app) package.
|
10
|
+
|
11
|
+
## Trackunit
|
12
|
+
This package was developed by Trackunit ApS.
|
13
|
+
Trackunit is the leading SaaS-based IoT solution for the construction industry, offering an ecosystem of hardware, fleet management software & telematics.
|
14
|
+
|
15
|
+

|
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.39",
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
5
5
|
"license": "MIT",
|
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.38"
|
12
12
|
},
|
13
13
|
"peerDependencies": {}
|
14
14
|
}
|