@eventconnectors/ndtrc_model 1.5.0 → 1.5.1
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 +5 -3
- package/dist/index.d.cts +1493 -1541
- package/dist/index.d.ts +1493 -1541
- package/dist/index.js +5 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -170,7 +170,9 @@ var URLServiceTypeSchema = import_zod4.z.enum([
|
|
|
170
170
|
"sustainability",
|
|
171
171
|
"venuefinder",
|
|
172
172
|
"travelbase",
|
|
173
|
-
"homepage"
|
|
173
|
+
"homepage",
|
|
174
|
+
"ticket",
|
|
175
|
+
"reservation"
|
|
174
176
|
]);
|
|
175
177
|
var DescriptionTranslationSchema = import_zod4.z.object({
|
|
176
178
|
lang: LangCodeSchema.optional(),
|
|
@@ -504,7 +506,8 @@ var RouteTypeSchema = import_zod13.z.enum([
|
|
|
504
506
|
"driving_traffic",
|
|
505
507
|
"driving",
|
|
506
508
|
"walking",
|
|
507
|
-
"cycling"
|
|
509
|
+
"cycling",
|
|
510
|
+
"boating"
|
|
508
511
|
]);
|
|
509
512
|
var RouteInfoTypeSchema = import_zod13.z.enum([
|
|
510
513
|
"eventConnectors",
|
|
@@ -605,7 +608,6 @@ var RouteInfoSchema = import_zod13.z.object({
|
|
|
605
608
|
pois: import_zod13.z.array(PoiSchema).optional(),
|
|
606
609
|
routeCoordinates: import_zod13.z.array(LatLngSchema).optional(),
|
|
607
610
|
calculatedCoordinates: import_zod13.z.array(LatLngSchema).optional(),
|
|
608
|
-
waterPoints: import_zod13.z.array(LatLngSchema).optional(),
|
|
609
611
|
difficulty: RouteDifficultySchema.optional(),
|
|
610
612
|
primarySurface: SurfaceTypeSchema.optional()
|
|
611
613
|
}).passthrough();
|