@tripsam/onboarding 1.0.6 → 1.0.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/index.cjs CHANGED
@@ -94,9 +94,10 @@ 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
- name: import_zod3.z.string(),
98
- kind: import_zod3.z.string(),
99
- distanceInKm: import_zod3.z.coerce.number()
97
+ label: import_zod3.z.string(),
98
+ location: import_zod3.z.string(),
99
+ type: import_zod3.z.string().optional().default(""),
100
+ distanceKm: import_zod3.z.coerce.number()
100
101
  }))
101
102
  });
102
103
  // Annotate the CommonJS export names for ESM import in node:
package/dist/index.d.cts CHANGED
@@ -69,9 +69,10 @@ 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
- name: z.ZodString;
73
- kind: z.ZodString;
74
- distanceInKm: z.ZodCoercedNumber<unknown>;
72
+ label: z.ZodString;
73
+ location: z.ZodString;
74
+ type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
75
+ distanceKm: z.ZodCoercedNumber<unknown>;
75
76
  }, z.core.$strip>>;
76
77
  }, z.core.$strip>;
77
78
  type SafeMinimum = z.output<typeof minimum>;
package/dist/index.d.ts CHANGED
@@ -69,9 +69,10 @@ 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
- name: z.ZodString;
73
- kind: z.ZodString;
74
- distanceInKm: z.ZodCoercedNumber<unknown>;
72
+ label: z.ZodString;
73
+ location: z.ZodString;
74
+ type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
75
+ distanceKm: z.ZodCoercedNumber<unknown>;
75
76
  }, z.core.$strip>>;
76
77
  }, z.core.$strip>;
77
78
  type SafeMinimum = z.output<typeof minimum>;
package/dist/index.js CHANGED
@@ -72,9 +72,10 @@ var minimum = z3.object({
72
72
  metadata: z3.object(),
73
73
  landmarks: z3.array(z3.object({
74
74
  id: z3.string(),
75
- name: z3.string(),
76
- kind: z3.string(),
77
- distanceInKm: z3.coerce.number()
75
+ label: z3.string(),
76
+ location: z3.string(),
77
+ type: z3.string().optional().default(""),
78
+ distanceKm: z3.coerce.number()
78
79
  }))
79
80
  });
80
81
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",