@spotto/contract 1.0.65-alpha.3 → 1.0.66-alpha.2
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.
|
@@ -5,8 +5,11 @@ export declare type WorkflowActionEmail = {
|
|
|
5
5
|
to: string[];
|
|
6
6
|
};
|
|
7
7
|
export declare type WorkflowAction = WorkflowActionEmail;
|
|
8
|
-
export declare type
|
|
9
|
-
type: '
|
|
8
|
+
export declare type WorkflowConditionSnapshotCreatedWithItems = {
|
|
9
|
+
type: 'SNAPSHOT_CREATED_WITH_ITEMS';
|
|
10
|
+
missingItems?: boolean;
|
|
11
|
+
sightedItems?: boolean;
|
|
12
|
+
addtionalItems?: boolean;
|
|
10
13
|
};
|
|
11
14
|
export declare type WorkflowConditionSnapshotCreatedWithManifest = {
|
|
12
15
|
type: 'SNAPSHOT_CREATED_WITH_MANIFEST';
|
|
@@ -16,7 +19,7 @@ export declare type WorkflowConditionSnapshotCreatedWithLocation = {
|
|
|
16
19
|
type: 'SNAPSHOT_CREATED_WITH_LOCATION';
|
|
17
20
|
locationIds: string[];
|
|
18
21
|
};
|
|
19
|
-
export declare type WorkflowCondition =
|
|
22
|
+
export declare type WorkflowCondition = WorkflowConditionSnapshotCreatedWithItems | WorkflowConditionSnapshotCreatedWithManifest | WorkflowConditionSnapshotCreatedWithLocation;
|
|
20
23
|
export declare type NewWorkflow = {
|
|
21
24
|
label: string;
|
|
22
25
|
trigger: 'SNAPSHOT_CREATED';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotto/contract",
|
|
3
3
|
"license": "ISC",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.66-alpha.2",
|
|
5
5
|
"description": "Spotto's API Contract type definitions",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"@types/geojson": "^7946.0.11",
|
|
19
19
|
"shx": "^0.3.4"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "541bac908143659b7c90c0d6d94faa7b996fdd9d"
|
|
22
22
|
}
|