@findatruck/shared-schemas 2.2.0 → 2.3.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 CHANGED
@@ -116,7 +116,8 @@ var ConvexUpdate = import_zod2.default.object({
116
116
  speed: import_zod2.default.number().optional().describe("The vehicle's current speed in mph"),
117
117
  odometer: import_zod2.default.number().optional().describe("The vehicle's current odometer reading in miles"),
118
118
  convex_provider_account_id: import_zod2.default.string().describe("The Convex ELD provider account ID"),
119
- external_provider_account_id: import_zod2.default.string().describe("The provider account ID on backend")
119
+ external_provider_account_id: import_zod2.default.string().describe("The provider account ID on backend"),
120
+ external_driver_id: import_zod2.default.string().describe("The driver ID on backend")
120
121
  }).describe("Schema for updating driver ELD status information");
121
122
 
122
123
  // src/schemas/providerAccounts/update-status.ts
@@ -180,6 +180,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
180
180
  odometer: z$1.ZodOptional<z$1.ZodNumber>;
181
181
  convex_provider_account_id: z$1.ZodString;
182
182
  external_provider_account_id: z$1.ZodString;
183
+ external_driver_id: z$1.ZodString;
183
184
  }, "strip", z$1.ZodTypeAny, {
184
185
  username: string;
185
186
  provider_url: string;
@@ -193,6 +194,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
193
194
  driver_current_location_address: string;
194
195
  convex_provider_account_id: string;
195
196
  external_provider_account_id: string;
197
+ external_driver_id: string;
196
198
  driver_name?: string | undefined;
197
199
  vehicle_id?: string | undefined;
198
200
  license_number?: string | undefined;
@@ -212,6 +214,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
212
214
  driver_current_location_address: string;
213
215
  convex_provider_account_id: string;
214
216
  external_provider_account_id: string;
217
+ external_driver_id: string;
215
218
  driver_name?: string | undefined;
216
219
  vehicle_id?: string | undefined;
217
220
  license_number?: string | undefined;
package/dist/browser.d.ts CHANGED
@@ -180,6 +180,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
180
180
  odometer: z$1.ZodOptional<z$1.ZodNumber>;
181
181
  convex_provider_account_id: z$1.ZodString;
182
182
  external_provider_account_id: z$1.ZodString;
183
+ external_driver_id: z$1.ZodString;
183
184
  }, "strip", z$1.ZodTypeAny, {
184
185
  username: string;
185
186
  provider_url: string;
@@ -193,6 +194,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
193
194
  driver_current_location_address: string;
194
195
  convex_provider_account_id: string;
195
196
  external_provider_account_id: string;
197
+ external_driver_id: string;
196
198
  driver_name?: string | undefined;
197
199
  vehicle_id?: string | undefined;
198
200
  license_number?: string | undefined;
@@ -212,6 +214,7 @@ declare const ConvexUpdate: z$1.ZodObject<{
212
214
  driver_current_location_address: string;
213
215
  convex_provider_account_id: string;
214
216
  external_provider_account_id: string;
217
+ external_driver_id: string;
215
218
  driver_name?: string | undefined;
216
219
  vehicle_id?: string | undefined;
217
220
  license_number?: string | undefined;
package/dist/browser.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  UpdateScrapeStatusMessage,
9
9
  ValidatePasswordRequestSchema,
10
10
  ValidatePasswordResponseSchema
11
- } from "./chunk-5RIRHBSP.js";
11
+ } from "./chunk-XRXOPSCS.js";
12
12
  export {
13
13
  ConvexUpdate,
14
14
  NewLoginRequest,
@@ -72,7 +72,8 @@ var ConvexUpdate = z2.object({
72
72
  speed: z2.number().optional().describe("The vehicle's current speed in mph"),
73
73
  odometer: z2.number().optional().describe("The vehicle's current odometer reading in miles"),
74
74
  convex_provider_account_id: z2.string().describe("The Convex ELD provider account ID"),
75
- external_provider_account_id: z2.string().describe("The provider account ID on backend")
75
+ external_provider_account_id: z2.string().describe("The provider account ID on backend"),
76
+ external_driver_id: z2.string().describe("The driver ID on backend")
76
77
  }).describe("Schema for updating driver ELD status information");
77
78
 
78
79
  // src/schemas/providerAccounts/update-status.ts
package/dist/index.cjs CHANGED
@@ -118,7 +118,8 @@ var ConvexUpdate = import_zod2.default.object({
118
118
  speed: import_zod2.default.number().optional().describe("The vehicle's current speed in mph"),
119
119
  odometer: import_zod2.default.number().optional().describe("The vehicle's current odometer reading in miles"),
120
120
  convex_provider_account_id: import_zod2.default.string().describe("The Convex ELD provider account ID"),
121
- external_provider_account_id: import_zod2.default.string().describe("The provider account ID on backend")
121
+ external_provider_account_id: import_zod2.default.string().describe("The provider account ID on backend"),
122
+ external_driver_id: import_zod2.default.string().describe("The driver ID on backend")
122
123
  }).describe("Schema for updating driver ELD status information");
123
124
 
124
125
  // src/security/transit-crypto.ts
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  UpdateScrapeStatusMessage,
9
9
  ValidatePasswordRequestSchema,
10
10
  ValidatePasswordResponseSchema
11
- } from "./chunk-5RIRHBSP.js";
11
+ } from "./chunk-XRXOPSCS.js";
12
12
 
13
13
  // src/security/transit-crypto.ts
14
14
  import { publicEncrypt, privateDecrypt, constants } from "crypto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findatruck/shared-schemas",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",