@tripsam/onboarding 1.0.12 → 1.0.13
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 +2 -8
- package/dist/index.d.cts +2 -8
- package/dist/index.d.ts +2 -8
- package/dist/index.js +2 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -116,18 +116,12 @@ var me2 = import_zod3.z.object({
|
|
|
116
116
|
location: minimum,
|
|
117
117
|
safariLocation: import_zod3.z.string(),
|
|
118
118
|
pickupLocation: import_zod3.z.string(),
|
|
119
|
-
|
|
120
|
-
id: import_zod3.z.string(),
|
|
121
|
-
label: import_zod3.z.string(),
|
|
122
|
-
type: import_zod3.z.string().optional().default(""),
|
|
123
|
-
distanceKm: import_zod3.z.coerce.number()
|
|
124
|
-
},
|
|
125
|
-
landmark2: {
|
|
119
|
+
landmarks: import_zod3.z.array(import_zod3.z.object({
|
|
126
120
|
id: import_zod3.z.string(),
|
|
127
121
|
label: import_zod3.z.string(),
|
|
128
122
|
type: import_zod3.z.string().optional().default(""),
|
|
129
123
|
distanceKm: import_zod3.z.coerce.number()
|
|
130
|
-
},
|
|
124
|
+
})),
|
|
131
125
|
completed: import_zod3.z.boolean()
|
|
132
126
|
});
|
|
133
127
|
var minimumList = import_zod3.z.array(minimum);
|
package/dist/index.d.cts
CHANGED
|
@@ -105,18 +105,12 @@ declare const me: z.ZodObject<{
|
|
|
105
105
|
}, z.core.$strip>;
|
|
106
106
|
safariLocation: z.ZodString;
|
|
107
107
|
pickupLocation: z.ZodString;
|
|
108
|
-
|
|
109
|
-
id: z.ZodString;
|
|
110
|
-
label: z.ZodString;
|
|
111
|
-
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
112
|
-
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
113
|
-
};
|
|
114
|
-
landmark2: {
|
|
108
|
+
landmarks: z.ZodArray<z.ZodObject<{
|
|
115
109
|
id: z.ZodString;
|
|
116
110
|
label: z.ZodString;
|
|
117
111
|
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
118
112
|
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
119
|
-
}
|
|
113
|
+
}, z.core.$strip>>;
|
|
120
114
|
completed: z.ZodBoolean;
|
|
121
115
|
}, z.core.$strip>;
|
|
122
116
|
declare const minimumList: z.ZodArray<z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -105,18 +105,12 @@ declare const me: z.ZodObject<{
|
|
|
105
105
|
}, z.core.$strip>;
|
|
106
106
|
safariLocation: z.ZodString;
|
|
107
107
|
pickupLocation: z.ZodString;
|
|
108
|
-
|
|
109
|
-
id: z.ZodString;
|
|
110
|
-
label: z.ZodString;
|
|
111
|
-
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
112
|
-
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
113
|
-
};
|
|
114
|
-
landmark2: {
|
|
108
|
+
landmarks: z.ZodArray<z.ZodObject<{
|
|
115
109
|
id: z.ZodString;
|
|
116
110
|
label: z.ZodString;
|
|
117
111
|
type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
118
112
|
distanceKm: z.ZodCoercedNumber<unknown>;
|
|
119
|
-
}
|
|
113
|
+
}, z.core.$strip>>;
|
|
120
114
|
completed: z.ZodBoolean;
|
|
121
115
|
}, z.core.$strip>;
|
|
122
116
|
declare const minimumList: z.ZodArray<z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -94,18 +94,12 @@ var me2 = z3.object({
|
|
|
94
94
|
location: minimum,
|
|
95
95
|
safariLocation: z3.string(),
|
|
96
96
|
pickupLocation: z3.string(),
|
|
97
|
-
|
|
98
|
-
id: z3.string(),
|
|
99
|
-
label: z3.string(),
|
|
100
|
-
type: z3.string().optional().default(""),
|
|
101
|
-
distanceKm: z3.coerce.number()
|
|
102
|
-
},
|
|
103
|
-
landmark2: {
|
|
97
|
+
landmarks: z3.array(z3.object({
|
|
104
98
|
id: z3.string(),
|
|
105
99
|
label: z3.string(),
|
|
106
100
|
type: z3.string().optional().default(""),
|
|
107
101
|
distanceKm: z3.coerce.number()
|
|
108
|
-
},
|
|
102
|
+
})),
|
|
109
103
|
completed: z3.boolean()
|
|
110
104
|
});
|
|
111
105
|
var minimumList = z3.array(minimum);
|