@voyantjs/ground 0.6.5 → 0.6.7
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/dist/routes.d.ts
CHANGED
|
@@ -887,10 +887,10 @@ export declare const groundRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
887
887
|
createdAt: string;
|
|
888
888
|
notes: string | null;
|
|
889
889
|
facilityId: string | null;
|
|
890
|
+
addressId: string | null;
|
|
890
891
|
dispatchId: string;
|
|
891
892
|
eventType: "scheduled" | "assigned" | "cancelled" | "driver_en_route" | "driver_arrived" | "pickup_completed" | "dropoff_completed" | "issue" | "note";
|
|
892
893
|
occurredAt: string;
|
|
893
|
-
addressId: string | null;
|
|
894
894
|
} | undefined;
|
|
895
895
|
};
|
|
896
896
|
outputFormat: "json";
|
|
@@ -1205,8 +1205,8 @@ export declare const groundRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
1205
1205
|
updatedAt: string;
|
|
1206
1206
|
notes: string | null;
|
|
1207
1207
|
facilityId: string | null;
|
|
1208
|
-
dispatchId: string;
|
|
1209
1208
|
addressId: string | null;
|
|
1209
|
+
dispatchId: string;
|
|
1210
1210
|
sequence: number;
|
|
1211
1211
|
legType: "pickup" | "stop" | "dropoff" | "deadhead";
|
|
1212
1212
|
scheduledAt: string | null;
|
|
@@ -1827,8 +1827,8 @@ export declare const groundRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
1827
1827
|
status: "pending" | "cancelled" | "reached" | "missed";
|
|
1828
1828
|
notes: string | null;
|
|
1829
1829
|
facilityId: string | null;
|
|
1830
|
-
dispatchId: string;
|
|
1831
1830
|
addressId: string | null;
|
|
1831
|
+
dispatchId: string;
|
|
1832
1832
|
sequence: number;
|
|
1833
1833
|
actualAt: string | null;
|
|
1834
1834
|
checkpointType: string;
|
|
@@ -233,10 +233,10 @@ export declare function createExecutionEvent(db: PostgresJsDatabase, data: Creat
|
|
|
233
233
|
createdAt: Date;
|
|
234
234
|
notes: string | null;
|
|
235
235
|
facilityId: string | null;
|
|
236
|
+
addressId: string | null;
|
|
236
237
|
dispatchId: string;
|
|
237
238
|
eventType: "scheduled" | "assigned" | "cancelled" | "driver_en_route" | "driver_arrived" | "pickup_completed" | "dropoff_completed" | "issue" | "note";
|
|
238
239
|
occurredAt: Date;
|
|
239
|
-
addressId: string | null;
|
|
240
240
|
} | undefined>;
|
|
241
241
|
export declare function updateExecutionEvent(db: PostgresJsDatabase, id: string, data: UpdateGroundExecutionEventInput): Promise<{
|
|
242
242
|
id: string;
|
|
@@ -104,8 +104,8 @@ export declare function createDispatchLeg(db: PostgresJsDatabase, data: CreateGr
|
|
|
104
104
|
updatedAt: Date;
|
|
105
105
|
notes: string | null;
|
|
106
106
|
facilityId: string | null;
|
|
107
|
-
dispatchId: string;
|
|
108
107
|
addressId: string | null;
|
|
108
|
+
dispatchId: string;
|
|
109
109
|
sequence: number;
|
|
110
110
|
legType: "pickup" | "stop" | "dropoff" | "deadhead";
|
|
111
111
|
scheduledAt: Date | null;
|
|
@@ -279,8 +279,8 @@ export declare function createDispatchCheckpoint(db: PostgresJsDatabase, data: C
|
|
|
279
279
|
status: "pending" | "cancelled" | "reached" | "missed";
|
|
280
280
|
notes: string | null;
|
|
281
281
|
facilityId: string | null;
|
|
282
|
-
dispatchId: string;
|
|
283
282
|
addressId: string | null;
|
|
283
|
+
dispatchId: string;
|
|
284
284
|
sequence: number;
|
|
285
285
|
actualAt: Date | null;
|
|
286
286
|
checkpointType: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/ground",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"drizzle-orm": "^0.45.2",
|
|
26
26
|
"hono": "^4.12.10",
|
|
27
27
|
"zod": "^4.3.6",
|
|
28
|
-
"@voyantjs/core": "0.6.
|
|
29
|
-
"@voyantjs/db": "0.6.
|
|
30
|
-
"@voyantjs/facilities": "0.6.
|
|
31
|
-
"@voyantjs/hono": "0.6.
|
|
32
|
-
"@voyantjs/identity": "0.6.
|
|
28
|
+
"@voyantjs/core": "0.6.7",
|
|
29
|
+
"@voyantjs/db": "0.6.7",
|
|
30
|
+
"@voyantjs/facilities": "0.6.7",
|
|
31
|
+
"@voyantjs/hono": "0.6.7",
|
|
32
|
+
"@voyantjs/identity": "0.6.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"typescript": "^6.0.2",
|
|
36
|
-
"@voyantjs/bookings": "0.6.
|
|
37
|
-
"@voyantjs/resources": "0.6.
|
|
36
|
+
"@voyantjs/bookings": "0.6.7",
|
|
37
|
+
"@voyantjs/resources": "0.6.7",
|
|
38
38
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|