@spotto/contract 1.0.65-alpha.3 → 1.0.66-alpha.1

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.
@@ -8,6 +8,12 @@ export declare type WorkflowAction = WorkflowActionEmail;
8
8
  export declare type WorkflowConditionSnapshotCreatedWithMissingItems = {
9
9
  type: 'SNAPSHOT_CREATED_WITH_MISSING_ITEMS';
10
10
  };
11
+ export declare type WorkflowConditionSnapshotCreatedWithSightedItems = {
12
+ type: 'SNAPSHOT_CREATED_WITH_SIGHTED_ITEMS';
13
+ };
14
+ export declare type WorkflowConditionSnapshotCreatedWithAdditionalItems = {
15
+ type: 'SNAPSHOT_CREATED_WITH_ADDITIONAL_ITEMS';
16
+ };
11
17
  export declare type WorkflowConditionSnapshotCreatedWithManifest = {
12
18
  type: 'SNAPSHOT_CREATED_WITH_MANIFEST';
13
19
  manifestIds: string[];
@@ -16,7 +22,7 @@ export declare type WorkflowConditionSnapshotCreatedWithLocation = {
16
22
  type: 'SNAPSHOT_CREATED_WITH_LOCATION';
17
23
  locationIds: string[];
18
24
  };
19
- export declare type WorkflowCondition = WorkflowConditionSnapshotCreatedWithMissingItems | WorkflowConditionSnapshotCreatedWithManifest | WorkflowConditionSnapshotCreatedWithLocation;
25
+ export declare type WorkflowCondition = WorkflowConditionSnapshotCreatedWithMissingItems | WorkflowConditionSnapshotCreatedWithSightedItems | WorkflowConditionSnapshotCreatedWithAdditionalItems | WorkflowConditionSnapshotCreatedWithManifest | WorkflowConditionSnapshotCreatedWithLocation;
20
26
  export declare type NewWorkflow = {
21
27
  label: string;
22
28
  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.65-alpha.3",
4
+ "version": "1.0.66-alpha.1",
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": "fc82d9b6edcca44a151f1463c0f123be11793957"
21
+ "gitHead": "d51b5bc036039ff53d50ef8818756e7b5b30d074"
22
22
  }