@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.js
CHANGED
|
@@ -66,7 +66,9 @@ var URLServiceTypeSchema = z4.enum([
|
|
|
66
66
|
"sustainability",
|
|
67
67
|
"venuefinder",
|
|
68
68
|
"travelbase",
|
|
69
|
-
"homepage"
|
|
69
|
+
"homepage",
|
|
70
|
+
"ticket",
|
|
71
|
+
"reservation"
|
|
70
72
|
]);
|
|
71
73
|
var DescriptionTranslationSchema = z4.object({
|
|
72
74
|
lang: LangCodeSchema.optional(),
|
|
@@ -400,7 +402,8 @@ var RouteTypeSchema = z13.enum([
|
|
|
400
402
|
"driving_traffic",
|
|
401
403
|
"driving",
|
|
402
404
|
"walking",
|
|
403
|
-
"cycling"
|
|
405
|
+
"cycling",
|
|
406
|
+
"boating"
|
|
404
407
|
]);
|
|
405
408
|
var RouteInfoTypeSchema = z13.enum([
|
|
406
409
|
"eventConnectors",
|
|
@@ -501,7 +504,6 @@ var RouteInfoSchema = z13.object({
|
|
|
501
504
|
pois: z13.array(PoiSchema).optional(),
|
|
502
505
|
routeCoordinates: z13.array(LatLngSchema).optional(),
|
|
503
506
|
calculatedCoordinates: z13.array(LatLngSchema).optional(),
|
|
504
|
-
waterPoints: z13.array(LatLngSchema).optional(),
|
|
505
507
|
difficulty: RouteDifficultySchema.optional(),
|
|
506
508
|
primarySurface: SurfaceTypeSchema.optional()
|
|
507
509
|
}).passthrough();
|