@findatruck/shared-schemas 2.16.0 → 2.18.0
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/browser.cjs +107 -16
- package/dist/browser.d.cts +82 -1
- package/dist/browser.d.ts +82 -1
- package/dist/browser.js +15 -1
- package/dist/{chunk-S53TIE72.js → chunk-BXCWZMK7.js} +100 -16
- package/dist/index.cjs +318 -130
- package/dist/index.d.cts +172 -2
- package/dist/index.d.ts +172 -2
- package/dist/index.js +149 -50
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { BatchConvexUpdate, BatchConvexUpdateData, BatchConvexUpdateSchema, ConvexDriverData, ConvexDriverSchema, ConvexUpdate, ConvexUpdateData, ConvexUpdateSchema, NewLoginRequest, NewLoginRequestData, NewLoginRequestSchema, NewLoginResponse, NewLoginResponseData, NewLoginResponseFailure, NewLoginResponseFailureData, NewLoginResponseFailureSchema, NewLoginResponseSchema, NewLoginResponseSuccess, NewLoginResponseSuccessData, NewLoginResponseSuccessSchema, PublicProviderData, PublicUserData, ScrapeStatus, UpdateScrapeStatusMessage, ValidatePasswordRequest, ValidatePasswordRequestData, ValidatePasswordRequestSchema, ValidatePasswordResponse, ValidatePasswordResponseData, ValidatePasswordResponseSchema } from './browser.cjs';
|
|
1
|
+
export { BatchConvexUpdate, BatchConvexUpdateData, BatchConvexUpdateSchema, ConvexDriverData, ConvexDriverSchema, ConvexUpdate, ConvexUpdateData, ConvexUpdateSchema, DRIVER_NAME_FORBIDDEN_CHAR_PATTERN, DriverNameSchema, NewLoginRequest, NewLoginRequestData, NewLoginRequestSchema, NewLoginResponse, NewLoginResponseData, NewLoginResponseFailure, NewLoginResponseFailureData, NewLoginResponseFailureSchema, NewLoginResponseSchema, NewLoginResponseSuccess, NewLoginResponseSuccessData, NewLoginResponseSuccessSchema, PATCH_DRIVER_NAME_MAX_LENGTH, PatchDriverDriverResponse, PatchDriverDriverResponseSchema, PatchDriverRequest, PatchDriverRequestSchema, PatchDriverResponse, PatchDriverResponseSchema, PublicProviderData, PublicUserData, ScrapeStatus, SharedDriverResponse, SharedDriverResponseSchema, UpdateScrapeStatusMessage, ValidatePasswordRequest, ValidatePasswordRequestData, ValidatePasswordRequestSchema, ValidatePasswordResponse, ValidatePasswordResponseData, ValidatePasswordResponseSchema } from './browser.cjs';
|
|
2
2
|
import z, { z as z$1 } from 'zod';
|
|
3
3
|
|
|
4
4
|
interface CreateAnonymousDriverBodyData {
|
|
@@ -124,6 +124,10 @@ declare const ManualBatchEntrySchema: z$1.ZodObject<{
|
|
|
124
124
|
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
125
125
|
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
126
126
|
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
127
|
+
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
128
|
+
parked: "parked";
|
|
129
|
+
driving: "driving";
|
|
130
|
+
}>>;
|
|
127
131
|
}, z$1.core.$strip>;
|
|
128
132
|
declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
129
133
|
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -137,6 +141,10 @@ declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
|
137
141
|
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
138
142
|
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
139
143
|
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
144
|
+
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
145
|
+
parked: "parked";
|
|
146
|
+
driving: "driving";
|
|
147
|
+
}>>;
|
|
140
148
|
}, z$1.core.$strip>>;
|
|
141
149
|
}, z$1.core.$strip>;
|
|
142
150
|
declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
@@ -162,6 +170,10 @@ declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
|
162
170
|
eld: "eld";
|
|
163
171
|
manual: "manual";
|
|
164
172
|
}>;
|
|
173
|
+
driving_status: z$1.ZodNullable<z$1.ZodEnum<{
|
|
174
|
+
parked: "parked";
|
|
175
|
+
driving: "driving";
|
|
176
|
+
}>>;
|
|
165
177
|
}, z$1.core.$strip>;
|
|
166
178
|
declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
167
179
|
message: z$1.ZodString;
|
|
@@ -189,6 +201,10 @@ declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
|
189
201
|
eld: "eld";
|
|
190
202
|
manual: "manual";
|
|
191
203
|
}>;
|
|
204
|
+
driving_status: z$1.ZodNullable<z$1.ZodEnum<{
|
|
205
|
+
parked: "parked";
|
|
206
|
+
driving: "driving";
|
|
207
|
+
}>>;
|
|
192
208
|
}, z$1.core.$strip>>;
|
|
193
209
|
}, z$1.core.$strip>;
|
|
194
210
|
type ManualBatchEntry = z$1.infer<typeof ManualBatchEntrySchema>;
|
|
@@ -196,6 +212,160 @@ type ManualBatchRequest = z$1.infer<typeof ManualBatchRequestSchema>;
|
|
|
196
212
|
type ManualBatchTelemetry = z$1.infer<typeof ManualBatchTelemetrySchema>;
|
|
197
213
|
type ManualBatchResponse = z$1.infer<typeof ManualBatchResponseSchema>;
|
|
198
214
|
|
|
215
|
+
declare const DriverTripsRequestSchema: z$1.ZodObject<{
|
|
216
|
+
driver_id: z$1.ZodString;
|
|
217
|
+
start_date: z$1.ZodString;
|
|
218
|
+
end_date: z$1.ZodString;
|
|
219
|
+
}, z$1.core.$strip>;
|
|
220
|
+
type DriverTripsRequest = z$1.infer<typeof DriverTripsRequestSchema>;
|
|
221
|
+
declare const DriverTripSchema: z$1.ZodObject<{
|
|
222
|
+
id: z$1.ZodNumber;
|
|
223
|
+
start_time: z$1.ZodString;
|
|
224
|
+
end_time: z$1.ZodString;
|
|
225
|
+
point_count: z$1.ZodNumber;
|
|
226
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
227
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
228
|
+
total_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
229
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
230
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
231
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
232
|
+
}, z$1.core.$strip>;
|
|
233
|
+
type DriverTrip = z$1.infer<typeof DriverTripSchema>;
|
|
234
|
+
declare const DriverTripsResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
235
|
+
id: z$1.ZodNumber;
|
|
236
|
+
start_time: z$1.ZodString;
|
|
237
|
+
end_time: z$1.ZodString;
|
|
238
|
+
point_count: z$1.ZodNumber;
|
|
239
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
240
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
241
|
+
total_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
242
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
243
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
244
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
245
|
+
}, z$1.core.$strip>>;
|
|
246
|
+
type DriverTripsResponse = z$1.infer<typeof DriverTripsResponseSchema>;
|
|
247
|
+
declare const DriverDailySummarySchema: z$1.ZodObject<{
|
|
248
|
+
summary_date: z$1.ZodString;
|
|
249
|
+
total_miles: z$1.ZodNumber;
|
|
250
|
+
trip_count: z$1.ZodNumber;
|
|
251
|
+
point_count: z$1.ZodNumber;
|
|
252
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
253
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
254
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
255
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
256
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
257
|
+
}, z$1.core.$strip>;
|
|
258
|
+
type DriverDailySummary = z$1.infer<typeof DriverDailySummarySchema>;
|
|
259
|
+
declare const DriverDailySummariesResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
260
|
+
summary_date: z$1.ZodString;
|
|
261
|
+
total_miles: z$1.ZodNumber;
|
|
262
|
+
trip_count: z$1.ZodNumber;
|
|
263
|
+
point_count: z$1.ZodNumber;
|
|
264
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
265
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
266
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
267
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
268
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
269
|
+
}, z$1.core.$strip>>;
|
|
270
|
+
type DriverDailySummariesResponse = z$1.infer<typeof DriverDailySummariesResponseSchema>;
|
|
271
|
+
|
|
272
|
+
declare const EnrichedTripSummaryRequestSchema: z$1.ZodObject<{
|
|
273
|
+
trip_id: z$1.ZodNumber;
|
|
274
|
+
}, z$1.core.$strip>;
|
|
275
|
+
type EnrichedTripSummaryRequest = z$1.infer<typeof EnrichedTripSummaryRequestSchema>;
|
|
276
|
+
declare const DriverEnrichedSummariesRequestSchema: z$1.ZodObject<{
|
|
277
|
+
driver_id: z$1.ZodString;
|
|
278
|
+
start_date: z$1.ZodString;
|
|
279
|
+
end_date: z$1.ZodString;
|
|
280
|
+
}, z$1.core.$strip>;
|
|
281
|
+
type DriverEnrichedSummariesRequest = z$1.infer<typeof DriverEnrichedSummariesRequestSchema>;
|
|
282
|
+
declare const EnrichedStopSchema: z$1.ZodObject<{
|
|
283
|
+
duration_seconds: z$1.ZodNumber;
|
|
284
|
+
}, z$1.core.$strip>;
|
|
285
|
+
type EnrichedStop = z$1.infer<typeof EnrichedStopSchema>;
|
|
286
|
+
declare const EnrichedPointSchema: z$1.ZodObject<{
|
|
287
|
+
lat: z$1.ZodNumber;
|
|
288
|
+
lon: z$1.ZodNumber;
|
|
289
|
+
timestamp: z$1.ZodString;
|
|
290
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
291
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
292
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
293
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
294
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
295
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
296
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
297
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
298
|
+
duration_seconds: z$1.ZodNumber;
|
|
299
|
+
}, z$1.core.$strip>>;
|
|
300
|
+
}, z$1.core.$strip>;
|
|
301
|
+
type EnrichedPoint = z$1.infer<typeof EnrichedPointSchema>;
|
|
302
|
+
declare const EnrichedTripSummarySchema: z$1.ZodObject<{
|
|
303
|
+
trip_id: z$1.ZodNumber;
|
|
304
|
+
driver_id: z$1.ZodString;
|
|
305
|
+
start_time: z$1.ZodString;
|
|
306
|
+
end_time: z$1.ZodString;
|
|
307
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
308
|
+
lat: z$1.ZodNumber;
|
|
309
|
+
lon: z$1.ZodNumber;
|
|
310
|
+
timestamp: z$1.ZodString;
|
|
311
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
312
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
313
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
314
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
315
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
316
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
317
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
318
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
319
|
+
duration_seconds: z$1.ZodNumber;
|
|
320
|
+
}, z$1.core.$strip>>;
|
|
321
|
+
}, z$1.core.$strip>>;
|
|
322
|
+
}, z$1.core.$strip>;
|
|
323
|
+
type EnrichedTripSummary = z$1.infer<typeof EnrichedTripSummarySchema>;
|
|
324
|
+
declare const EnrichedTripSummaryResponseSchema: z$1.ZodObject<{
|
|
325
|
+
trip_id: z$1.ZodNumber;
|
|
326
|
+
driver_id: z$1.ZodString;
|
|
327
|
+
start_time: z$1.ZodString;
|
|
328
|
+
end_time: z$1.ZodString;
|
|
329
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
330
|
+
lat: z$1.ZodNumber;
|
|
331
|
+
lon: z$1.ZodNumber;
|
|
332
|
+
timestamp: z$1.ZodString;
|
|
333
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
334
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
335
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
336
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
337
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
338
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
339
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
340
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
341
|
+
duration_seconds: z$1.ZodNumber;
|
|
342
|
+
}, z$1.core.$strip>>;
|
|
343
|
+
}, z$1.core.$strip>>;
|
|
344
|
+
}, z$1.core.$strip>;
|
|
345
|
+
type EnrichedTripSummaryResponse = z$1.infer<typeof EnrichedTripSummaryResponseSchema>;
|
|
346
|
+
declare const DriverEnrichedSummariesResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
347
|
+
trip_id: z$1.ZodNumber;
|
|
348
|
+
driver_id: z$1.ZodString;
|
|
349
|
+
start_time: z$1.ZodString;
|
|
350
|
+
end_time: z$1.ZodString;
|
|
351
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
352
|
+
lat: z$1.ZodNumber;
|
|
353
|
+
lon: z$1.ZodNumber;
|
|
354
|
+
timestamp: z$1.ZodString;
|
|
355
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
356
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
357
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
358
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
359
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
360
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
361
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
362
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
363
|
+
duration_seconds: z$1.ZodNumber;
|
|
364
|
+
}, z$1.core.$strip>>;
|
|
365
|
+
}, z$1.core.$strip>>;
|
|
366
|
+
}, z$1.core.$strip>>;
|
|
367
|
+
type DriverEnrichedSummariesResponse = z$1.infer<typeof DriverEnrichedSummariesResponseSchema>;
|
|
368
|
+
|
|
199
369
|
declare const GomotiveAuthDataSchema: z$1.ZodObject<{
|
|
200
370
|
kind: z$1.ZodLiteral<"gomotive">;
|
|
201
371
|
token: z$1.ZodString;
|
|
@@ -341,4 +511,4 @@ declare const BrowserCrawlResponseSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObje
|
|
|
341
511
|
}, z$1.core.$strip>], "success">;
|
|
342
512
|
type BrowserCrawlResponse = z$1.infer<typeof BrowserCrawlResponseSchema>;
|
|
343
513
|
|
|
344
|
-
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, CrawlPageSchema, type CreateAnonymousDriverBody, type CreateAnonymousDriverBodyData, CreateAnonymousDriverBodySchema, type DeleteAnonymousDriverParams, DeleteAnonymousDriverParamsSchema, type DeleteAnonymousDriverResponse, DeleteAnonymousDriverResponseSchema, type DeleteProviderAccountRequest, type DeleteProviderAccountRequestData, DeleteProviderAccountRequestSchema, type DeleteProviderAccountResponse, type DeleteProviderAccountResponseData, DeleteProviderAccountResponseSchema, type DriverRanking, type DriverRankingData, DriverRankingSchema, type DriverRankingsRequest, type DriverRankingsRequestData, DriverRankingsRequestSchema, type DriverRankingsResponse, type DriverRankingsResponseData, DriverRankingsResponseSchema, type GomotiveAuthData, GomotiveAuthDataSchema, type ManualBatchEntry, ManualBatchEntrySchema, type ManualBatchRequest, ManualBatchRequestSchema, type ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|
|
514
|
+
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, CrawlPageSchema, type CreateAnonymousDriverBody, type CreateAnonymousDriverBodyData, CreateAnonymousDriverBodySchema, type DeleteAnonymousDriverParams, DeleteAnonymousDriverParamsSchema, type DeleteAnonymousDriverResponse, DeleteAnonymousDriverResponseSchema, type DeleteProviderAccountRequest, type DeleteProviderAccountRequestData, DeleteProviderAccountRequestSchema, type DeleteProviderAccountResponse, type DeleteProviderAccountResponseData, DeleteProviderAccountResponseSchema, type DriverDailySummariesResponse, DriverDailySummariesResponseSchema, type DriverDailySummary, DriverDailySummarySchema, type DriverEnrichedSummariesRequest, DriverEnrichedSummariesRequestSchema, type DriverEnrichedSummariesResponse, DriverEnrichedSummariesResponseSchema, type DriverRanking, type DriverRankingData, DriverRankingSchema, type DriverRankingsRequest, type DriverRankingsRequestData, DriverRankingsRequestSchema, type DriverRankingsResponse, type DriverRankingsResponseData, DriverRankingsResponseSchema, type DriverTrip, DriverTripSchema, type DriverTripsRequest, DriverTripsRequestSchema, type DriverTripsResponse, DriverTripsResponseSchema, type EnrichedPoint, EnrichedPointSchema, type EnrichedStop, EnrichedStopSchema, type EnrichedTripSummary, type EnrichedTripSummaryRequest, EnrichedTripSummaryRequestSchema, type EnrichedTripSummaryResponse, EnrichedTripSummaryResponseSchema, EnrichedTripSummarySchema, type GomotiveAuthData, GomotiveAuthDataSchema, type ManualBatchEntry, ManualBatchEntrySchema, type ManualBatchRequest, ManualBatchRequestSchema, type ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { BatchConvexUpdate, BatchConvexUpdateData, BatchConvexUpdateSchema, ConvexDriverData, ConvexDriverSchema, ConvexUpdate, ConvexUpdateData, ConvexUpdateSchema, NewLoginRequest, NewLoginRequestData, NewLoginRequestSchema, NewLoginResponse, NewLoginResponseData, NewLoginResponseFailure, NewLoginResponseFailureData, NewLoginResponseFailureSchema, NewLoginResponseSchema, NewLoginResponseSuccess, NewLoginResponseSuccessData, NewLoginResponseSuccessSchema, PublicProviderData, PublicUserData, ScrapeStatus, UpdateScrapeStatusMessage, ValidatePasswordRequest, ValidatePasswordRequestData, ValidatePasswordRequestSchema, ValidatePasswordResponse, ValidatePasswordResponseData, ValidatePasswordResponseSchema } from './browser.js';
|
|
1
|
+
export { BatchConvexUpdate, BatchConvexUpdateData, BatchConvexUpdateSchema, ConvexDriverData, ConvexDriverSchema, ConvexUpdate, ConvexUpdateData, ConvexUpdateSchema, DRIVER_NAME_FORBIDDEN_CHAR_PATTERN, DriverNameSchema, NewLoginRequest, NewLoginRequestData, NewLoginRequestSchema, NewLoginResponse, NewLoginResponseData, NewLoginResponseFailure, NewLoginResponseFailureData, NewLoginResponseFailureSchema, NewLoginResponseSchema, NewLoginResponseSuccess, NewLoginResponseSuccessData, NewLoginResponseSuccessSchema, PATCH_DRIVER_NAME_MAX_LENGTH, PatchDriverDriverResponse, PatchDriverDriverResponseSchema, PatchDriverRequest, PatchDriverRequestSchema, PatchDriverResponse, PatchDriverResponseSchema, PublicProviderData, PublicUserData, ScrapeStatus, SharedDriverResponse, SharedDriverResponseSchema, UpdateScrapeStatusMessage, ValidatePasswordRequest, ValidatePasswordRequestData, ValidatePasswordRequestSchema, ValidatePasswordResponse, ValidatePasswordResponseData, ValidatePasswordResponseSchema } from './browser.js';
|
|
2
2
|
import z, { z as z$1 } from 'zod';
|
|
3
3
|
|
|
4
4
|
interface CreateAnonymousDriverBodyData {
|
|
@@ -124,6 +124,10 @@ declare const ManualBatchEntrySchema: z$1.ZodObject<{
|
|
|
124
124
|
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
125
125
|
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
126
126
|
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
127
|
+
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
128
|
+
parked: "parked";
|
|
129
|
+
driving: "driving";
|
|
130
|
+
}>>;
|
|
127
131
|
}, z$1.core.$strip>;
|
|
128
132
|
declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
129
133
|
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -137,6 +141,10 @@ declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
|
137
141
|
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
138
142
|
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
139
143
|
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
144
|
+
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
145
|
+
parked: "parked";
|
|
146
|
+
driving: "driving";
|
|
147
|
+
}>>;
|
|
140
148
|
}, z$1.core.$strip>>;
|
|
141
149
|
}, z$1.core.$strip>;
|
|
142
150
|
declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
@@ -162,6 +170,10 @@ declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
|
162
170
|
eld: "eld";
|
|
163
171
|
manual: "manual";
|
|
164
172
|
}>;
|
|
173
|
+
driving_status: z$1.ZodNullable<z$1.ZodEnum<{
|
|
174
|
+
parked: "parked";
|
|
175
|
+
driving: "driving";
|
|
176
|
+
}>>;
|
|
165
177
|
}, z$1.core.$strip>;
|
|
166
178
|
declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
167
179
|
message: z$1.ZodString;
|
|
@@ -189,6 +201,10 @@ declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
|
189
201
|
eld: "eld";
|
|
190
202
|
manual: "manual";
|
|
191
203
|
}>;
|
|
204
|
+
driving_status: z$1.ZodNullable<z$1.ZodEnum<{
|
|
205
|
+
parked: "parked";
|
|
206
|
+
driving: "driving";
|
|
207
|
+
}>>;
|
|
192
208
|
}, z$1.core.$strip>>;
|
|
193
209
|
}, z$1.core.$strip>;
|
|
194
210
|
type ManualBatchEntry = z$1.infer<typeof ManualBatchEntrySchema>;
|
|
@@ -196,6 +212,160 @@ type ManualBatchRequest = z$1.infer<typeof ManualBatchRequestSchema>;
|
|
|
196
212
|
type ManualBatchTelemetry = z$1.infer<typeof ManualBatchTelemetrySchema>;
|
|
197
213
|
type ManualBatchResponse = z$1.infer<typeof ManualBatchResponseSchema>;
|
|
198
214
|
|
|
215
|
+
declare const DriverTripsRequestSchema: z$1.ZodObject<{
|
|
216
|
+
driver_id: z$1.ZodString;
|
|
217
|
+
start_date: z$1.ZodString;
|
|
218
|
+
end_date: z$1.ZodString;
|
|
219
|
+
}, z$1.core.$strip>;
|
|
220
|
+
type DriverTripsRequest = z$1.infer<typeof DriverTripsRequestSchema>;
|
|
221
|
+
declare const DriverTripSchema: z$1.ZodObject<{
|
|
222
|
+
id: z$1.ZodNumber;
|
|
223
|
+
start_time: z$1.ZodString;
|
|
224
|
+
end_time: z$1.ZodString;
|
|
225
|
+
point_count: z$1.ZodNumber;
|
|
226
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
227
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
228
|
+
total_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
229
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
230
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
231
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
232
|
+
}, z$1.core.$strip>;
|
|
233
|
+
type DriverTrip = z$1.infer<typeof DriverTripSchema>;
|
|
234
|
+
declare const DriverTripsResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
235
|
+
id: z$1.ZodNumber;
|
|
236
|
+
start_time: z$1.ZodString;
|
|
237
|
+
end_time: z$1.ZodString;
|
|
238
|
+
point_count: z$1.ZodNumber;
|
|
239
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
240
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
241
|
+
total_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
242
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
243
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
244
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
245
|
+
}, z$1.core.$strip>>;
|
|
246
|
+
type DriverTripsResponse = z$1.infer<typeof DriverTripsResponseSchema>;
|
|
247
|
+
declare const DriverDailySummarySchema: z$1.ZodObject<{
|
|
248
|
+
summary_date: z$1.ZodString;
|
|
249
|
+
total_miles: z$1.ZodNumber;
|
|
250
|
+
trip_count: z$1.ZodNumber;
|
|
251
|
+
point_count: z$1.ZodNumber;
|
|
252
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
253
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
254
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
255
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
256
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
257
|
+
}, z$1.core.$strip>;
|
|
258
|
+
type DriverDailySummary = z$1.infer<typeof DriverDailySummarySchema>;
|
|
259
|
+
declare const DriverDailySummariesResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
260
|
+
summary_date: z$1.ZodString;
|
|
261
|
+
total_miles: z$1.ZodNumber;
|
|
262
|
+
trip_count: z$1.ZodNumber;
|
|
263
|
+
point_count: z$1.ZodNumber;
|
|
264
|
+
polyline: z$1.ZodNullable<z$1.ZodString>;
|
|
265
|
+
highways: z$1.ZodNullable<z$1.ZodArray<z$1.ZodString>>;
|
|
266
|
+
avg_speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
267
|
+
miles_by_weather: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
268
|
+
miles_by_light: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
269
|
+
}, z$1.core.$strip>>;
|
|
270
|
+
type DriverDailySummariesResponse = z$1.infer<typeof DriverDailySummariesResponseSchema>;
|
|
271
|
+
|
|
272
|
+
declare const EnrichedTripSummaryRequestSchema: z$1.ZodObject<{
|
|
273
|
+
trip_id: z$1.ZodNumber;
|
|
274
|
+
}, z$1.core.$strip>;
|
|
275
|
+
type EnrichedTripSummaryRequest = z$1.infer<typeof EnrichedTripSummaryRequestSchema>;
|
|
276
|
+
declare const DriverEnrichedSummariesRequestSchema: z$1.ZodObject<{
|
|
277
|
+
driver_id: z$1.ZodString;
|
|
278
|
+
start_date: z$1.ZodString;
|
|
279
|
+
end_date: z$1.ZodString;
|
|
280
|
+
}, z$1.core.$strip>;
|
|
281
|
+
type DriverEnrichedSummariesRequest = z$1.infer<typeof DriverEnrichedSummariesRequestSchema>;
|
|
282
|
+
declare const EnrichedStopSchema: z$1.ZodObject<{
|
|
283
|
+
duration_seconds: z$1.ZodNumber;
|
|
284
|
+
}, z$1.core.$strip>;
|
|
285
|
+
type EnrichedStop = z$1.infer<typeof EnrichedStopSchema>;
|
|
286
|
+
declare const EnrichedPointSchema: z$1.ZodObject<{
|
|
287
|
+
lat: z$1.ZodNumber;
|
|
288
|
+
lon: z$1.ZodNumber;
|
|
289
|
+
timestamp: z$1.ZodString;
|
|
290
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
291
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
292
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
293
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
294
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
295
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
296
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
297
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
298
|
+
duration_seconds: z$1.ZodNumber;
|
|
299
|
+
}, z$1.core.$strip>>;
|
|
300
|
+
}, z$1.core.$strip>;
|
|
301
|
+
type EnrichedPoint = z$1.infer<typeof EnrichedPointSchema>;
|
|
302
|
+
declare const EnrichedTripSummarySchema: z$1.ZodObject<{
|
|
303
|
+
trip_id: z$1.ZodNumber;
|
|
304
|
+
driver_id: z$1.ZodString;
|
|
305
|
+
start_time: z$1.ZodString;
|
|
306
|
+
end_time: z$1.ZodString;
|
|
307
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
308
|
+
lat: z$1.ZodNumber;
|
|
309
|
+
lon: z$1.ZodNumber;
|
|
310
|
+
timestamp: z$1.ZodString;
|
|
311
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
312
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
313
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
314
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
315
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
316
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
317
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
318
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
319
|
+
duration_seconds: z$1.ZodNumber;
|
|
320
|
+
}, z$1.core.$strip>>;
|
|
321
|
+
}, z$1.core.$strip>>;
|
|
322
|
+
}, z$1.core.$strip>;
|
|
323
|
+
type EnrichedTripSummary = z$1.infer<typeof EnrichedTripSummarySchema>;
|
|
324
|
+
declare const EnrichedTripSummaryResponseSchema: z$1.ZodObject<{
|
|
325
|
+
trip_id: z$1.ZodNumber;
|
|
326
|
+
driver_id: z$1.ZodString;
|
|
327
|
+
start_time: z$1.ZodString;
|
|
328
|
+
end_time: z$1.ZodString;
|
|
329
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
330
|
+
lat: z$1.ZodNumber;
|
|
331
|
+
lon: z$1.ZodNumber;
|
|
332
|
+
timestamp: z$1.ZodString;
|
|
333
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
334
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
335
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
336
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
337
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
338
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
339
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
340
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
341
|
+
duration_seconds: z$1.ZodNumber;
|
|
342
|
+
}, z$1.core.$strip>>;
|
|
343
|
+
}, z$1.core.$strip>>;
|
|
344
|
+
}, z$1.core.$strip>;
|
|
345
|
+
type EnrichedTripSummaryResponse = z$1.infer<typeof EnrichedTripSummaryResponseSchema>;
|
|
346
|
+
declare const DriverEnrichedSummariesResponseSchema: z$1.ZodArray<z$1.ZodObject<{
|
|
347
|
+
trip_id: z$1.ZodNumber;
|
|
348
|
+
driver_id: z$1.ZodString;
|
|
349
|
+
start_time: z$1.ZodString;
|
|
350
|
+
end_time: z$1.ZodString;
|
|
351
|
+
points: z$1.ZodArray<z$1.ZodObject<{
|
|
352
|
+
lat: z$1.ZodNumber;
|
|
353
|
+
lon: z$1.ZodNumber;
|
|
354
|
+
timestamp: z$1.ZodString;
|
|
355
|
+
speed_mph: z$1.ZodNullable<z$1.ZodNumber>;
|
|
356
|
+
heading: z$1.ZodNullable<z$1.ZodNumber>;
|
|
357
|
+
altitude_feet: z$1.ZodNullable<z$1.ZodNumber>;
|
|
358
|
+
weather_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
359
|
+
temperature_f: z$1.ZodNullable<z$1.ZodNumber>;
|
|
360
|
+
visibility_miles: z$1.ZodNullable<z$1.ZodNumber>;
|
|
361
|
+
light_condition: z$1.ZodNullable<z$1.ZodString>;
|
|
362
|
+
stop: z$1.ZodNullable<z$1.ZodObject<{
|
|
363
|
+
duration_seconds: z$1.ZodNumber;
|
|
364
|
+
}, z$1.core.$strip>>;
|
|
365
|
+
}, z$1.core.$strip>>;
|
|
366
|
+
}, z$1.core.$strip>>;
|
|
367
|
+
type DriverEnrichedSummariesResponse = z$1.infer<typeof DriverEnrichedSummariesResponseSchema>;
|
|
368
|
+
|
|
199
369
|
declare const GomotiveAuthDataSchema: z$1.ZodObject<{
|
|
200
370
|
kind: z$1.ZodLiteral<"gomotive">;
|
|
201
371
|
token: z$1.ZodString;
|
|
@@ -341,4 +511,4 @@ declare const BrowserCrawlResponseSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObje
|
|
|
341
511
|
}, z$1.core.$strip>], "success">;
|
|
342
512
|
type BrowserCrawlResponse = z$1.infer<typeof BrowserCrawlResponseSchema>;
|
|
343
513
|
|
|
344
|
-
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, CrawlPageSchema, type CreateAnonymousDriverBody, type CreateAnonymousDriverBodyData, CreateAnonymousDriverBodySchema, type DeleteAnonymousDriverParams, DeleteAnonymousDriverParamsSchema, type DeleteAnonymousDriverResponse, DeleteAnonymousDriverResponseSchema, type DeleteProviderAccountRequest, type DeleteProviderAccountRequestData, DeleteProviderAccountRequestSchema, type DeleteProviderAccountResponse, type DeleteProviderAccountResponseData, DeleteProviderAccountResponseSchema, type DriverRanking, type DriverRankingData, DriverRankingSchema, type DriverRankingsRequest, type DriverRankingsRequestData, DriverRankingsRequestSchema, type DriverRankingsResponse, type DriverRankingsResponseData, DriverRankingsResponseSchema, type GomotiveAuthData, GomotiveAuthDataSchema, type ManualBatchEntry, ManualBatchEntrySchema, type ManualBatchRequest, ManualBatchRequestSchema, type ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|
|
514
|
+
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, CrawlPageSchema, type CreateAnonymousDriverBody, type CreateAnonymousDriverBodyData, CreateAnonymousDriverBodySchema, type DeleteAnonymousDriverParams, DeleteAnonymousDriverParamsSchema, type DeleteAnonymousDriverResponse, DeleteAnonymousDriverResponseSchema, type DeleteProviderAccountRequest, type DeleteProviderAccountRequestData, DeleteProviderAccountRequestSchema, type DeleteProviderAccountResponse, type DeleteProviderAccountResponseData, DeleteProviderAccountResponseSchema, type DriverDailySummariesResponse, DriverDailySummariesResponseSchema, type DriverDailySummary, DriverDailySummarySchema, type DriverEnrichedSummariesRequest, DriverEnrichedSummariesRequestSchema, type DriverEnrichedSummariesResponse, DriverEnrichedSummariesResponseSchema, type DriverRanking, type DriverRankingData, DriverRankingSchema, type DriverRankingsRequest, type DriverRankingsRequestData, DriverRankingsRequestSchema, type DriverRankingsResponse, type DriverRankingsResponseData, DriverRankingsResponseSchema, type DriverTrip, DriverTripSchema, type DriverTripsRequest, DriverTripsRequestSchema, type DriverTripsResponse, DriverTripsResponseSchema, type EnrichedPoint, EnrichedPointSchema, type EnrichedStop, EnrichedStopSchema, type EnrichedTripSummary, type EnrichedTripSummaryRequest, EnrichedTripSummaryRequestSchema, type EnrichedTripSummaryResponse, EnrichedTripSummaryResponseSchema, EnrichedTripSummarySchema, type GomotiveAuthData, GomotiveAuthDataSchema, type ManualBatchEntry, ManualBatchEntrySchema, type ManualBatchRequest, ManualBatchRequestSchema, type ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|