@findatruck/shared-schemas 2.23.0 → 2.23.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.
- package/dist/index.cjs +297 -245
- package/dist/index.d.cts +61 -22
- package/dist/index.d.ts +61 -22
- package/dist/index.js +286 -237
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -33,6 +33,25 @@ type AnonymousDriverErrorResponse = z.infer<typeof AnonymousDriverErrorResponseS
|
|
|
33
33
|
type DeleteAnonymousDriverParams = z.infer<typeof DeleteAnonymousDriverParamsSchema>;
|
|
34
34
|
type DeleteAnonymousDriverResponse = z.infer<typeof DeleteAnonymousDriverResponseSchema>;
|
|
35
35
|
|
|
36
|
+
interface ValidateLoginRequestData {
|
|
37
|
+
providerUrl: string;
|
|
38
|
+
username: string;
|
|
39
|
+
encryptedPassword: string;
|
|
40
|
+
}
|
|
41
|
+
interface ValidateLoginResponseData {
|
|
42
|
+
success: boolean;
|
|
43
|
+
}
|
|
44
|
+
declare const ValidateLoginRequestSchema: z$1.ZodObject<{
|
|
45
|
+
providerUrl: z$1.ZodString;
|
|
46
|
+
username: z$1.ZodString;
|
|
47
|
+
encryptedPassword: z$1.ZodString;
|
|
48
|
+
}, z$1.core.$strip>;
|
|
49
|
+
declare const ValidateLoginResponseSchema: z$1.ZodObject<{
|
|
50
|
+
success: z$1.ZodBoolean;
|
|
51
|
+
}, z$1.core.$strip>;
|
|
52
|
+
type ValidateLoginRequest = ValidateLoginRequestData;
|
|
53
|
+
type ValidateLoginResponse = ValidateLoginResponseData;
|
|
54
|
+
|
|
36
55
|
interface DeleteProviderAccountRequestData {
|
|
37
56
|
providerAccountId: string;
|
|
38
57
|
}
|
|
@@ -131,26 +150,6 @@ declare const ManualBatchEntrySchema: z$1.ZodObject<{
|
|
|
131
150
|
activity_type: z$1.ZodOptional<z$1.ZodString>;
|
|
132
151
|
activity_confidence: z$1.ZodOptional<z$1.ZodNumber>;
|
|
133
152
|
}, z$1.core.$strip>;
|
|
134
|
-
declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
135
|
-
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
136
|
-
driver_id: z$1.ZodString;
|
|
137
|
-
timestamp: z$1.ZodString;
|
|
138
|
-
location_latitude: z$1.ZodNumber;
|
|
139
|
-
location_longitude: z$1.ZodNumber;
|
|
140
|
-
location_address: z$1.ZodOptional<z$1.ZodString>;
|
|
141
|
-
vehicle_odometer_miles: z$1.ZodOptional<z$1.ZodNumber>;
|
|
142
|
-
heading: z$1.ZodOptional<z$1.ZodNumber>;
|
|
143
|
-
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
144
|
-
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
145
|
-
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
146
|
-
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
147
|
-
parked: "parked";
|
|
148
|
-
driving: "driving";
|
|
149
|
-
}>>;
|
|
150
|
-
activity_type: z$1.ZodOptional<z$1.ZodString>;
|
|
151
|
-
activity_confidence: z$1.ZodOptional<z$1.ZodNumber>;
|
|
152
|
-
}, z$1.core.$strip>>;
|
|
153
|
-
}, z$1.core.$strip>;
|
|
154
153
|
declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
155
154
|
id: z$1.ZodNumber;
|
|
156
155
|
driver_id: z$1.ZodString;
|
|
@@ -216,7 +215,6 @@ declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
|
216
215
|
}, z$1.core.$strip>>;
|
|
217
216
|
}, z$1.core.$strip>;
|
|
218
217
|
type ManualBatchEntry = z$1.infer<typeof ManualBatchEntrySchema>;
|
|
219
|
-
type ManualBatchRequest = z$1.infer<typeof ManualBatchRequestSchema>;
|
|
220
218
|
type ManualBatchTelemetry = z$1.infer<typeof ManualBatchTelemetrySchema>;
|
|
221
219
|
type ManualBatchResponse = z$1.infer<typeof ManualBatchResponseSchema>;
|
|
222
220
|
|
|
@@ -764,6 +762,47 @@ declare const PostDriverTripTelemetryRequestSchema: z$1.ZodObject<{
|
|
|
764
762
|
}, z$1.core.$strip>;
|
|
765
763
|
type PostDriverTripTelemetryRequest = z$1.infer<typeof PostDriverTripTelemetryRequestSchema>;
|
|
766
764
|
|
|
765
|
+
declare const PostDailySummaryRecordSchema: z$1.ZodObject<{
|
|
766
|
+
externalDriverId: z$1.ZodString;
|
|
767
|
+
date: z$1.ZodString;
|
|
768
|
+
totalMiles: z$1.ZodNumber;
|
|
769
|
+
tripCount: z$1.ZodNumber;
|
|
770
|
+
pointCount: z$1.ZodNumber;
|
|
771
|
+
polyline: z$1.ZodOptional<z$1.ZodString>;
|
|
772
|
+
highways: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
773
|
+
avgSpeedMph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
774
|
+
milesByWeather: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
775
|
+
milesByLight: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
776
|
+
states: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
777
|
+
origin: z$1.ZodOptional<z$1.ZodString>;
|
|
778
|
+
destination: z$1.ZodOptional<z$1.ZodString>;
|
|
779
|
+
altitudeGainedFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
780
|
+
altitudeLostFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
781
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
782
|
+
}, z$1.core.$strip>;
|
|
783
|
+
type PostDailySummaryRecord = z$1.infer<typeof PostDailySummaryRecordSchema>;
|
|
784
|
+
declare const PostDailySummaryRequestSchema: z$1.ZodObject<{
|
|
785
|
+
summaries: z$1.ZodArray<z$1.ZodObject<{
|
|
786
|
+
externalDriverId: z$1.ZodString;
|
|
787
|
+
date: z$1.ZodString;
|
|
788
|
+
totalMiles: z$1.ZodNumber;
|
|
789
|
+
tripCount: z$1.ZodNumber;
|
|
790
|
+
pointCount: z$1.ZodNumber;
|
|
791
|
+
polyline: z$1.ZodOptional<z$1.ZodString>;
|
|
792
|
+
highways: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
793
|
+
avgSpeedMph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
794
|
+
milesByWeather: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
795
|
+
milesByLight: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
796
|
+
states: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
797
|
+
origin: z$1.ZodOptional<z$1.ZodString>;
|
|
798
|
+
destination: z$1.ZodOptional<z$1.ZodString>;
|
|
799
|
+
altitudeGainedFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
800
|
+
altitudeLostFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
801
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
802
|
+
}, z$1.core.$strip>>;
|
|
803
|
+
}, z$1.core.$strip>;
|
|
804
|
+
type PostDailySummaryRequest = z$1.infer<typeof PostDailySummaryRequestSchema>;
|
|
805
|
+
|
|
767
806
|
declare const GomotiveAuthDataSchema: z$1.ZodObject<{
|
|
768
807
|
kind: z$1.ZodLiteral<"gomotive">;
|
|
769
808
|
token: z$1.ZodString;
|
|
@@ -909,4 +948,4 @@ declare const BrowserCrawlResponseSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObje
|
|
|
909
948
|
}, z$1.core.$strip>], "success">;
|
|
910
949
|
type BrowserCrawlResponse = z$1.infer<typeof BrowserCrawlResponseSchema>;
|
|
911
950
|
|
|
912
|
-
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, type BGGeoActivity, BGGeoActivitySchema, type BGGeoBatchRequest, BGGeoBatchRequestSchema, type BGGeoBattery, BGGeoBatterySchema, type BGGeoCoords, BGGeoCoordsSchema, type BGGeoLocation, BGGeoLocationSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, type ConvexBreadcrumbEvent, ConvexBreadcrumbEventSchema, type ConvexDriverTripRequest, ConvexDriverTripRequestSchema, 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
|
|
951
|
+
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, type BGGeoActivity, BGGeoActivitySchema, type BGGeoBatchRequest, BGGeoBatchRequestSchema, type BGGeoBattery, BGGeoBatterySchema, type BGGeoCoords, BGGeoCoordsSchema, type BGGeoLocation, BGGeoLocationSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, type ConvexBreadcrumbEvent, ConvexBreadcrumbEventSchema, type ConvexDriverTripRequest, ConvexDriverTripRequestSchema, 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 ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type PostDailySummaryRecord, PostDailySummaryRecordSchema, type PostDailySummaryRequest, PostDailySummaryRequestSchema, type PostDriverTripTelemetryRecord, PostDriverTripTelemetryRecordSchema, type PostDriverTripTelemetryRequest, PostDriverTripTelemetryRequestSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type ValidateLoginRequest, type ValidateLoginRequestData, ValidateLoginRequestSchema, type ValidateLoginResponse, type ValidateLoginResponseData, ValidateLoginResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,25 @@ type AnonymousDriverErrorResponse = z.infer<typeof AnonymousDriverErrorResponseS
|
|
|
33
33
|
type DeleteAnonymousDriverParams = z.infer<typeof DeleteAnonymousDriverParamsSchema>;
|
|
34
34
|
type DeleteAnonymousDriverResponse = z.infer<typeof DeleteAnonymousDriverResponseSchema>;
|
|
35
35
|
|
|
36
|
+
interface ValidateLoginRequestData {
|
|
37
|
+
providerUrl: string;
|
|
38
|
+
username: string;
|
|
39
|
+
encryptedPassword: string;
|
|
40
|
+
}
|
|
41
|
+
interface ValidateLoginResponseData {
|
|
42
|
+
success: boolean;
|
|
43
|
+
}
|
|
44
|
+
declare const ValidateLoginRequestSchema: z$1.ZodObject<{
|
|
45
|
+
providerUrl: z$1.ZodString;
|
|
46
|
+
username: z$1.ZodString;
|
|
47
|
+
encryptedPassword: z$1.ZodString;
|
|
48
|
+
}, z$1.core.$strip>;
|
|
49
|
+
declare const ValidateLoginResponseSchema: z$1.ZodObject<{
|
|
50
|
+
success: z$1.ZodBoolean;
|
|
51
|
+
}, z$1.core.$strip>;
|
|
52
|
+
type ValidateLoginRequest = ValidateLoginRequestData;
|
|
53
|
+
type ValidateLoginResponse = ValidateLoginResponseData;
|
|
54
|
+
|
|
36
55
|
interface DeleteProviderAccountRequestData {
|
|
37
56
|
providerAccountId: string;
|
|
38
57
|
}
|
|
@@ -131,26 +150,6 @@ declare const ManualBatchEntrySchema: z$1.ZodObject<{
|
|
|
131
150
|
activity_type: z$1.ZodOptional<z$1.ZodString>;
|
|
132
151
|
activity_confidence: z$1.ZodOptional<z$1.ZodNumber>;
|
|
133
152
|
}, z$1.core.$strip>;
|
|
134
|
-
declare const ManualBatchRequestSchema: z$1.ZodObject<{
|
|
135
|
-
entries: z$1.ZodArray<z$1.ZodObject<{
|
|
136
|
-
driver_id: z$1.ZodString;
|
|
137
|
-
timestamp: z$1.ZodString;
|
|
138
|
-
location_latitude: z$1.ZodNumber;
|
|
139
|
-
location_longitude: z$1.ZodNumber;
|
|
140
|
-
location_address: z$1.ZodOptional<z$1.ZodString>;
|
|
141
|
-
vehicle_odometer_miles: z$1.ZodOptional<z$1.ZodNumber>;
|
|
142
|
-
heading: z$1.ZodOptional<z$1.ZodNumber>;
|
|
143
|
-
speed_mph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
144
|
-
altitude_feet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
145
|
-
raw: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
146
|
-
driving_status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
147
|
-
parked: "parked";
|
|
148
|
-
driving: "driving";
|
|
149
|
-
}>>;
|
|
150
|
-
activity_type: z$1.ZodOptional<z$1.ZodString>;
|
|
151
|
-
activity_confidence: z$1.ZodOptional<z$1.ZodNumber>;
|
|
152
|
-
}, z$1.core.$strip>>;
|
|
153
|
-
}, z$1.core.$strip>;
|
|
154
153
|
declare const ManualBatchTelemetrySchema: z$1.ZodObject<{
|
|
155
154
|
id: z$1.ZodNumber;
|
|
156
155
|
driver_id: z$1.ZodString;
|
|
@@ -216,7 +215,6 @@ declare const ManualBatchResponseSchema: z$1.ZodObject<{
|
|
|
216
215
|
}, z$1.core.$strip>>;
|
|
217
216
|
}, z$1.core.$strip>;
|
|
218
217
|
type ManualBatchEntry = z$1.infer<typeof ManualBatchEntrySchema>;
|
|
219
|
-
type ManualBatchRequest = z$1.infer<typeof ManualBatchRequestSchema>;
|
|
220
218
|
type ManualBatchTelemetry = z$1.infer<typeof ManualBatchTelemetrySchema>;
|
|
221
219
|
type ManualBatchResponse = z$1.infer<typeof ManualBatchResponseSchema>;
|
|
222
220
|
|
|
@@ -764,6 +762,47 @@ declare const PostDriverTripTelemetryRequestSchema: z$1.ZodObject<{
|
|
|
764
762
|
}, z$1.core.$strip>;
|
|
765
763
|
type PostDriverTripTelemetryRequest = z$1.infer<typeof PostDriverTripTelemetryRequestSchema>;
|
|
766
764
|
|
|
765
|
+
declare const PostDailySummaryRecordSchema: z$1.ZodObject<{
|
|
766
|
+
externalDriverId: z$1.ZodString;
|
|
767
|
+
date: z$1.ZodString;
|
|
768
|
+
totalMiles: z$1.ZodNumber;
|
|
769
|
+
tripCount: z$1.ZodNumber;
|
|
770
|
+
pointCount: z$1.ZodNumber;
|
|
771
|
+
polyline: z$1.ZodOptional<z$1.ZodString>;
|
|
772
|
+
highways: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
773
|
+
avgSpeedMph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
774
|
+
milesByWeather: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
775
|
+
milesByLight: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
776
|
+
states: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
777
|
+
origin: z$1.ZodOptional<z$1.ZodString>;
|
|
778
|
+
destination: z$1.ZodOptional<z$1.ZodString>;
|
|
779
|
+
altitudeGainedFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
780
|
+
altitudeLostFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
781
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
782
|
+
}, z$1.core.$strip>;
|
|
783
|
+
type PostDailySummaryRecord = z$1.infer<typeof PostDailySummaryRecordSchema>;
|
|
784
|
+
declare const PostDailySummaryRequestSchema: z$1.ZodObject<{
|
|
785
|
+
summaries: z$1.ZodArray<z$1.ZodObject<{
|
|
786
|
+
externalDriverId: z$1.ZodString;
|
|
787
|
+
date: z$1.ZodString;
|
|
788
|
+
totalMiles: z$1.ZodNumber;
|
|
789
|
+
tripCount: z$1.ZodNumber;
|
|
790
|
+
pointCount: z$1.ZodNumber;
|
|
791
|
+
polyline: z$1.ZodOptional<z$1.ZodString>;
|
|
792
|
+
highways: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
793
|
+
avgSpeedMph: z$1.ZodOptional<z$1.ZodNumber>;
|
|
794
|
+
milesByWeather: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
795
|
+
milesByLight: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodNumber>>;
|
|
796
|
+
states: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
797
|
+
origin: z$1.ZodOptional<z$1.ZodString>;
|
|
798
|
+
destination: z$1.ZodOptional<z$1.ZodString>;
|
|
799
|
+
altitudeGainedFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
800
|
+
altitudeLostFeet: z$1.ZodOptional<z$1.ZodNumber>;
|
|
801
|
+
userId: z$1.ZodOptional<z$1.ZodString>;
|
|
802
|
+
}, z$1.core.$strip>>;
|
|
803
|
+
}, z$1.core.$strip>;
|
|
804
|
+
type PostDailySummaryRequest = z$1.infer<typeof PostDailySummaryRequestSchema>;
|
|
805
|
+
|
|
767
806
|
declare const GomotiveAuthDataSchema: z$1.ZodObject<{
|
|
768
807
|
kind: z$1.ZodLiteral<"gomotive">;
|
|
769
808
|
token: z$1.ZodString;
|
|
@@ -909,4 +948,4 @@ declare const BrowserCrawlResponseSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObje
|
|
|
909
948
|
}, z$1.core.$strip>], "success">;
|
|
910
949
|
type BrowserCrawlResponse = z$1.infer<typeof BrowserCrawlResponseSchema>;
|
|
911
950
|
|
|
912
|
-
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, type BGGeoActivity, BGGeoActivitySchema, type BGGeoBatchRequest, BGGeoBatchRequestSchema, type BGGeoBattery, BGGeoBatterySchema, type BGGeoCoords, BGGeoCoordsSchema, type BGGeoLocation, BGGeoLocationSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, type ConvexBreadcrumbEvent, ConvexBreadcrumbEventSchema, type ConvexDriverTripRequest, ConvexDriverTripRequestSchema, 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
|
|
951
|
+
export { type AnonymousDriverErrorResponse, type AnonymousDriverErrorResponseData, AnonymousDriverErrorResponseSchema, type AnonymousDriverResponse, type AnonymousDriverResponseData, AnonymousDriverResponseSchema, type BGGeoActivity, BGGeoActivitySchema, type BGGeoBatchRequest, BGGeoBatchRequestSchema, type BGGeoBattery, BGGeoBatterySchema, type BGGeoCoords, BGGeoCoordsSchema, type BGGeoLocation, BGGeoLocationSchema, BrowserAuthFailureSchema, type BrowserAuthRequest, BrowserAuthRequestSchema, type BrowserAuthResponse, BrowserAuthResponseSchema, BrowserAuthSuccessSchema, BrowserCrawlFailureSchema, type BrowserCrawlResponse, BrowserCrawlResponseSchema, BrowserCrawlSuccessSchema, type CapturedTrafficEntry, CapturedTrafficEntrySchema, type ConvexBreadcrumbEvent, ConvexBreadcrumbEventSchema, type ConvexDriverTripRequest, ConvexDriverTripRequestSchema, 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 ManualBatchResponse, ManualBatchResponseSchema, type ManualBatchTelemetry, ManualBatchTelemetrySchema, type MockAuthData, MockAuthDataSchema, type NoneAuthData, NoneAuthDataSchema, type PostDailySummaryRecord, PostDailySummaryRecordSchema, type PostDailySummaryRequest, PostDailySummaryRequestSchema, type PostDriverTripTelemetryRecord, PostDriverTripTelemetryRecordSchema, type PostDriverTripTelemetryRequest, PostDriverTripTelemetryRequestSchema, type ProviderAuthData, ProviderAuthDataSchema, type StateHeatmapEntry, type StateHeatmapEntryData, StateHeatmapEntrySchema, type StateHeatmapRequest, type StateHeatmapRequestData, StateHeatmapRequestSchema, type StateHeatmapResponse, type StateHeatmapResponseData, StateHeatmapResponseSchema, type ValidateLoginRequest, type ValidateLoginRequestData, ValidateLoginRequestSchema, type ValidateLoginResponse, type ValidateLoginResponseData, ValidateLoginResponseSchema, type VistaAuthData, VistaAuthDataSchema, deserializeAuthData, serializeAuthData };
|