@tripsam/main 2.0.6 → 2.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 +4 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -178,7 +178,10 @@ var safariSearchSchema = import_zod6.default.object({
|
|
|
178
178
|
adults: import_zod6.default.coerce.number().min(1).default(2),
|
|
179
179
|
kids: import_zod6.default.coerce.number().min(0).default(1),
|
|
180
180
|
infants: import_zod6.default.coerce.number().min(0).default(0),
|
|
181
|
-
date: import_zod6.default.string().optional().default("")
|
|
181
|
+
date: import_zod6.default.string().optional().default(""),
|
|
182
|
+
safariTypes: import_zod6.default.string().optional().default(""),
|
|
183
|
+
priceMin: import_zod6.default.coerce.number().min(0).default(0),
|
|
184
|
+
priceMax: import_zod6.default.coerce.number().min(0).default(0)
|
|
182
185
|
});
|
|
183
186
|
// Annotate the CommonJS export names for ESM import in node:
|
|
184
187
|
0 && (module.exports = {
|
package/dist/index.d.cts
CHANGED
|
@@ -154,6 +154,9 @@ declare const safariSearchSchema: z$1.ZodObject<{
|
|
|
154
154
|
kids: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
155
155
|
infants: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
156
156
|
date: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodString>>;
|
|
157
|
+
safariTypes: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodString>>;
|
|
158
|
+
priceMin: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
159
|
+
priceMax: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
157
160
|
}, z$1.core.$strip>;
|
|
158
161
|
type SafariSearch = z$1.infer<typeof safariSearchSchema>;
|
|
159
162
|
|
package/dist/index.d.ts
CHANGED
|
@@ -154,6 +154,9 @@ declare const safariSearchSchema: z$1.ZodObject<{
|
|
|
154
154
|
kids: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
155
155
|
infants: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
156
156
|
date: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodString>>;
|
|
157
|
+
safariTypes: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodString>>;
|
|
158
|
+
priceMin: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
159
|
+
priceMax: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
157
160
|
}, z$1.core.$strip>;
|
|
158
161
|
type SafariSearch = z$1.infer<typeof safariSearchSchema>;
|
|
159
162
|
|
package/dist/index.js
CHANGED
|
@@ -143,7 +143,10 @@ var safariSearchSchema = z6.object({
|
|
|
143
143
|
adults: z6.coerce.number().min(1).default(2),
|
|
144
144
|
kids: z6.coerce.number().min(0).default(1),
|
|
145
145
|
infants: z6.coerce.number().min(0).default(0),
|
|
146
|
-
date: z6.string().optional().default("")
|
|
146
|
+
date: z6.string().optional().default(""),
|
|
147
|
+
safariTypes: z6.string().optional().default(""),
|
|
148
|
+
priceMin: z6.coerce.number().min(0).default(0),
|
|
149
|
+
priceMax: z6.coerce.number().min(0).default(0)
|
|
147
150
|
});
|
|
148
151
|
export {
|
|
149
152
|
auth_exports as Auth,
|