@tripsam/onboarding 1.0.6 → 1.0.8
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 +3 -3
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -94,9 +94,9 @@ var minimum = import_zod3.z.object({
|
|
|
94
94
|
metadata: import_zod3.z.object(),
|
|
95
95
|
landmarks: import_zod3.z.array(import_zod3.z.object({
|
|
96
96
|
id: import_zod3.z.string(),
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
label: import_zod3.z.string(),
|
|
98
|
+
type: import_zod3.z.string().optional().default(""),
|
|
99
|
+
distanceKm: import_zod3.z.coerce.number()
|
|
100
100
|
}))
|
|
101
101
|
});
|
|
102
102
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.d.cts
CHANGED
|
@@ -69,9 +69,9 @@ declare const minimum: z.ZodObject<{
|
|
|
69
69
|
metadata: z.ZodObject<{}, z.core.$strip>;
|
|
70
70
|
landmarks: z.ZodArray<z.ZodObject<{
|
|
71
71
|
id: z.ZodString;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
label: z.ZodString;
|
|
73
|
+
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
74
|
+
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
75
75
|
}, z.core.$strip>>;
|
|
76
76
|
}, z.core.$strip>;
|
|
77
77
|
type SafeMinimum = z.output<typeof minimum>;
|
package/dist/index.d.ts
CHANGED
|
@@ -69,9 +69,9 @@ declare const minimum: z.ZodObject<{
|
|
|
69
69
|
metadata: z.ZodObject<{}, z.core.$strip>;
|
|
70
70
|
landmarks: z.ZodArray<z.ZodObject<{
|
|
71
71
|
id: z.ZodString;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
label: z.ZodString;
|
|
73
|
+
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
74
|
+
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
75
75
|
}, z.core.$strip>>;
|
|
76
76
|
}, z.core.$strip>;
|
|
77
77
|
type SafeMinimum = z.output<typeof minimum>;
|
package/dist/index.js
CHANGED
|
@@ -72,9 +72,9 @@ var minimum = z3.object({
|
|
|
72
72
|
metadata: z3.object(),
|
|
73
73
|
landmarks: z3.array(z3.object({
|
|
74
74
|
id: z3.string(),
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
label: z3.string(),
|
|
76
|
+
type: z3.string().optional().default(""),
|
|
77
|
+
distanceKm: z3.coerce.number()
|
|
78
78
|
}))
|
|
79
79
|
});
|
|
80
80
|
export {
|