@lcas58/esmi-api-types 1.0.21 → 1.0.22
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.
|
@@ -223,6 +223,8 @@ declare const router: import("@hono/zod-openapi").OpenAPIHono<import("../../shar
|
|
|
223
223
|
startsAt: string;
|
|
224
224
|
timezone: string;
|
|
225
225
|
formattedAddress: string;
|
|
226
|
+
latitude: number | null;
|
|
227
|
+
longitude: number | null;
|
|
226
228
|
venueName: string;
|
|
227
229
|
description?: string | undefined;
|
|
228
230
|
endsAt?: string | undefined;
|
|
@@ -244,6 +246,8 @@ declare const router: import("@hono/zod-openapi").OpenAPIHono<import("../../shar
|
|
|
244
246
|
startsAt: string;
|
|
245
247
|
timezone: string;
|
|
246
248
|
formattedAddress: string;
|
|
249
|
+
latitude: number | null;
|
|
250
|
+
longitude: number | null;
|
|
247
251
|
venueName: string;
|
|
248
252
|
description?: string | undefined;
|
|
249
253
|
endsAt?: string | undefined;
|
|
@@ -304,6 +308,8 @@ declare const router: import("@hono/zod-openapi").OpenAPIHono<import("../../shar
|
|
|
304
308
|
startsAt: string;
|
|
305
309
|
timezone: string;
|
|
306
310
|
formattedAddress: string;
|
|
311
|
+
latitude: number | null;
|
|
312
|
+
longitude: number | null;
|
|
307
313
|
venueName: string;
|
|
308
314
|
description?: string | undefined;
|
|
309
315
|
endsAt?: string | undefined;
|
|
@@ -966,6 +966,8 @@ export declare const discoverExternal: {
|
|
|
966
966
|
url: z.ZodString;
|
|
967
967
|
venueName: z.ZodString;
|
|
968
968
|
formattedAddress: z.ZodString;
|
|
969
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
970
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
969
971
|
description: z.ZodOptional<z.ZodString>;
|
|
970
972
|
endsAt: z.ZodOptional<z.ZodString>;
|
|
971
973
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -976,6 +978,8 @@ export declare const discoverExternal: {
|
|
|
976
978
|
startsAt: string;
|
|
977
979
|
timezone: string;
|
|
978
980
|
formattedAddress: string;
|
|
981
|
+
latitude: number | null;
|
|
982
|
+
longitude: number | null;
|
|
979
983
|
venueName: string;
|
|
980
984
|
description?: string | undefined;
|
|
981
985
|
endsAt?: string | undefined;
|
|
@@ -987,6 +991,8 @@ export declare const discoverExternal: {
|
|
|
987
991
|
startsAt: string;
|
|
988
992
|
timezone: string;
|
|
989
993
|
formattedAddress: string;
|
|
994
|
+
latitude: number | null;
|
|
995
|
+
longitude: number | null;
|
|
990
996
|
venueName: string;
|
|
991
997
|
description?: string | undefined;
|
|
992
998
|
endsAt?: string | undefined;
|
|
@@ -1033,6 +1039,8 @@ export declare const saveExternal: {
|
|
|
1033
1039
|
url: z.ZodString;
|
|
1034
1040
|
venueName: z.ZodString;
|
|
1035
1041
|
formattedAddress: z.ZodString;
|
|
1042
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
1043
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
1036
1044
|
description: z.ZodOptional<z.ZodString>;
|
|
1037
1045
|
endsAt: z.ZodOptional<z.ZodString>;
|
|
1038
1046
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1043,6 +1051,8 @@ export declare const saveExternal: {
|
|
|
1043
1051
|
startsAt: string;
|
|
1044
1052
|
timezone: string;
|
|
1045
1053
|
formattedAddress: string;
|
|
1054
|
+
latitude: number | null;
|
|
1055
|
+
longitude: number | null;
|
|
1046
1056
|
venueName: string;
|
|
1047
1057
|
description?: string | undefined;
|
|
1048
1058
|
endsAt?: string | undefined;
|
|
@@ -1054,6 +1064,8 @@ export declare const saveExternal: {
|
|
|
1054
1064
|
startsAt: string;
|
|
1055
1065
|
timezone: string;
|
|
1056
1066
|
formattedAddress: string;
|
|
1067
|
+
latitude: number | null;
|
|
1068
|
+
longitude: number | null;
|
|
1057
1069
|
venueName: string;
|
|
1058
1070
|
description?: string | undefined;
|
|
1059
1071
|
endsAt?: string | undefined;
|
|
@@ -1069,6 +1081,8 @@ export declare const saveExternal: {
|
|
|
1069
1081
|
startsAt: string;
|
|
1070
1082
|
timezone: string;
|
|
1071
1083
|
formattedAddress: string;
|
|
1084
|
+
latitude: number | null;
|
|
1085
|
+
longitude: number | null;
|
|
1072
1086
|
venueName: string;
|
|
1073
1087
|
description?: string | undefined;
|
|
1074
1088
|
endsAt?: string | undefined;
|
|
@@ -1084,6 +1098,8 @@ export declare const saveExternal: {
|
|
|
1084
1098
|
startsAt: string;
|
|
1085
1099
|
timezone: string;
|
|
1086
1100
|
formattedAddress: string;
|
|
1101
|
+
latitude: number | null;
|
|
1102
|
+
longitude: number | null;
|
|
1087
1103
|
venueName: string;
|
|
1088
1104
|
description?: string | undefined;
|
|
1089
1105
|
endsAt?: string | undefined;
|
|
@@ -288,6 +288,8 @@ export declare const externalEventPreviewSchema: z.ZodObject<{
|
|
|
288
288
|
url: z.ZodString;
|
|
289
289
|
venueName: z.ZodString;
|
|
290
290
|
formattedAddress: z.ZodString;
|
|
291
|
+
latitude: z.ZodNullable<z.ZodNumber>;
|
|
292
|
+
longitude: z.ZodNullable<z.ZodNumber>;
|
|
291
293
|
description: z.ZodOptional<z.ZodString>;
|
|
292
294
|
endsAt: z.ZodOptional<z.ZodString>;
|
|
293
295
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -298,6 +300,8 @@ export declare const externalEventPreviewSchema: z.ZodObject<{
|
|
|
298
300
|
startsAt: string;
|
|
299
301
|
timezone: string;
|
|
300
302
|
formattedAddress: string;
|
|
303
|
+
latitude: number | null;
|
|
304
|
+
longitude: number | null;
|
|
301
305
|
venueName: string;
|
|
302
306
|
description?: string | undefined;
|
|
303
307
|
endsAt?: string | undefined;
|
|
@@ -309,6 +313,8 @@ export declare const externalEventPreviewSchema: z.ZodObject<{
|
|
|
309
313
|
startsAt: string;
|
|
310
314
|
timezone: string;
|
|
311
315
|
formattedAddress: string;
|
|
316
|
+
latitude: number | null;
|
|
317
|
+
longitude: number | null;
|
|
312
318
|
venueName: string;
|
|
313
319
|
description?: string | undefined;
|
|
314
320
|
endsAt?: string | undefined;
|
|
@@ -45,6 +45,8 @@ export const externalEventPreviewSchema = z.object({
|
|
|
45
45
|
url: z.string(),
|
|
46
46
|
venueName: z.string(),
|
|
47
47
|
formattedAddress: z.string(),
|
|
48
|
+
latitude: z.number().nullable(),
|
|
49
|
+
longitude: z.number().nullable(),
|
|
48
50
|
description: z.string().optional(),
|
|
49
51
|
endsAt: z.string().optional(),
|
|
50
52
|
});
|