@tmlmobilidade/databases 20260627.1155.27 → 20260629.939.11

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.
@@ -256,19 +256,22 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
256
256
  timestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
257
257
  trip: import("zod").ZodObject<{
258
258
  route_id: import("zod").ZodString;
259
- schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "NOT_SCHEDULED"]>>>;
260
- start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/types").OperationalDate, string>>>;
259
+ schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "CANCELED", "REPLACEMENT", "DUPLICATED", "NEW", "DELETED"]>>>;
260
+ start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsDate, string>>>;
261
+ start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsTime, string>>>;
261
262
  trip_id: import("zod").ZodString;
262
263
  }, "strip", import("zod").ZodTypeAny, {
263
264
  route_id: string;
264
265
  trip_id: string;
265
- start_time?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
266
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
266
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
267
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
268
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
267
269
  }, {
268
270
  route_id: string;
269
271
  trip_id: string;
270
272
  start_time?: string | null | undefined;
271
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
273
+ start_date?: string | null | undefined;
274
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
272
275
  }>;
273
276
  vehicle: import("zod").ZodObject<{
274
277
  id: import("zod").ZodString;
@@ -290,8 +293,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
290
293
  trip: {
291
294
  route_id: string;
292
295
  trip_id: string;
293
- start_time?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
294
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
296
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
297
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
298
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
295
299
  };
296
300
  stop_id?: string | null | undefined;
297
301
  timestamp?: number | null | undefined;
@@ -311,7 +315,8 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
311
315
  route_id: string;
312
316
  trip_id: string;
313
317
  start_time?: string | null | undefined;
314
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
318
+ start_date?: string | null | undefined;
319
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
315
320
  };
316
321
  stop_id?: string | null | undefined;
317
322
  timestamp?: number | null | undefined;
@@ -332,8 +337,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
332
337
  trip: {
333
338
  route_id: string;
334
339
  trip_id: string;
335
- start_time?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
336
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
340
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
341
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
342
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
337
343
  };
338
344
  stop_id?: string | null | undefined;
339
345
  timestamp?: number | null | undefined;
@@ -361,7 +367,8 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
361
367
  route_id: string;
362
368
  trip_id: string;
363
369
  start_time?: string | null | undefined;
364
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
370
+ start_date?: string | null | undefined;
371
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
365
372
  };
366
373
  stop_id?: string | null | undefined;
367
374
  timestamp?: number | null | undefined;
@@ -396,8 +403,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
396
403
  trip: {
397
404
  route_id: string;
398
405
  trip_id: string;
399
- start_time?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
400
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
406
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
407
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
408
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
401
409
  };
402
410
  stop_id?: string | null | undefined;
403
411
  timestamp?: number | null | undefined;
@@ -435,7 +443,8 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
435
443
  route_id: string;
436
444
  trip_id: string;
437
445
  start_time?: string | null | undefined;
438
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | null | undefined;
446
+ start_date?: string | null | undefined;
447
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
439
448
  };
440
449
  stop_id?: string | null | undefined;
441
450
  timestamp?: number | null | undefined;
@@ -506,18 +515,18 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
506
515
  }>;
507
516
  vehicle: import("zod").ZodObject<{
508
517
  id: import("zod").ZodString;
509
- license_plate: import("zod").ZodString;
518
+ license_plate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
510
519
  }, "strip", import("zod").ZodTypeAny, {
511
520
  id: string;
512
- license_plate: string;
521
+ license_plate?: string | null | undefined;
513
522
  }, {
514
523
  id: string;
515
- license_plate: string;
524
+ license_plate?: string | null | undefined;
516
525
  }>;
517
526
  }, "strip", import("zod").ZodTypeAny, {
518
527
  vehicle: {
519
528
  id: string;
520
- license_plate: string;
529
+ license_plate?: string | null | undefined;
521
530
  };
522
531
  position: {
523
532
  latitude: number;
@@ -535,7 +544,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
535
544
  }, {
536
545
  vehicle: {
537
546
  id: string;
538
- license_plate: string;
547
+ license_plate?: string | null | undefined;
539
548
  };
540
549
  position: {
541
550
  latitude: number;
@@ -555,7 +564,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
555
564
  vehicle: {
556
565
  vehicle: {
557
566
  id: string;
558
- license_plate: string;
567
+ license_plate?: string | null | undefined;
559
568
  };
560
569
  position: {
561
570
  latitude: number;
@@ -581,7 +590,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
581
590
  vehicle: {
582
591
  vehicle: {
583
592
  id: string;
584
- license_plate: string;
593
+ license_plate?: string | null | undefined;
585
594
  };
586
595
  position: {
587
596
  latitude: number;
@@ -615,7 +624,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
615
624
  vehicle: {
616
625
  vehicle: {
617
626
  id: string;
618
- license_plate: string;
627
+ license_plate?: string | null | undefined;
619
628
  };
620
629
  position: {
621
630
  latitude: number;
@@ -651,7 +660,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
651
660
  vehicle: {
652
661
  vehicle: {
653
662
  id: string;
654
- license_plate: string;
663
+ license_plate?: string | null | undefined;
655
664
  };
656
665
  position: {
657
666
  latitude: number;
@@ -1407,18 +1416,18 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1407
1416
  }>;
1408
1417
  vehicle: import("zod").ZodObject<{
1409
1418
  id: import("zod").ZodString;
1410
- label: import("zod").ZodString;
1419
+ label: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1411
1420
  }, "strip", import("zod").ZodTypeAny, {
1412
1421
  id: string;
1413
- label: string;
1422
+ label?: string | null | undefined;
1414
1423
  }, {
1415
1424
  id: string;
1416
- label: string;
1425
+ label?: string | null | undefined;
1417
1426
  }>;
1418
1427
  }, "strip", import("zod").ZodTypeAny, {
1419
1428
  vehicle: {
1420
1429
  id: string;
1421
- label: string;
1430
+ label?: string | null | undefined;
1422
1431
  };
1423
1432
  position: {
1424
1433
  latitude: number;
@@ -1436,7 +1445,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1436
1445
  }, {
1437
1446
  vehicle: {
1438
1447
  id: string;
1439
- label: string;
1448
+ label?: string | null | undefined;
1440
1449
  };
1441
1450
  position: {
1442
1451
  latitude: number;
@@ -1456,7 +1465,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1456
1465
  vehicle: {
1457
1466
  vehicle: {
1458
1467
  id: string;
1459
- label: string;
1468
+ label?: string | null | undefined;
1460
1469
  };
1461
1470
  position: {
1462
1471
  latitude: number;
@@ -1482,7 +1491,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1482
1491
  vehicle: {
1483
1492
  vehicle: {
1484
1493
  id: string;
1485
- label: string;
1494
+ label?: string | null | undefined;
1486
1495
  };
1487
1496
  position: {
1488
1497
  latitude: number;
@@ -1516,7 +1525,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1516
1525
  vehicle: {
1517
1526
  vehicle: {
1518
1527
  id: string;
1519
- label: string;
1528
+ label?: string | null | undefined;
1520
1529
  };
1521
1530
  position: {
1522
1531
  latitude: number;
@@ -1552,7 +1561,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1552
1561
  vehicle: {
1553
1562
  vehicle: {
1554
1563
  id: string;
1555
- label: string;
1564
+ label?: string | null | undefined;
1556
1565
  };
1557
1566
  position: {
1558
1567
  latitude: number;
@@ -1620,14 +1629,14 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1620
1629
  }>;
1621
1630
  timestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
1622
1631
  trip: import("zod").ZodObject<{
1623
- schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "NOT_SCHEDULED", "CANCELED"]>>>;
1632
+ schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "CANCELED", "REPLACEMENT", "DUPLICATED", "NEW", "DELETED"]>>>;
1624
1633
  trip_id: import("zod").ZodString;
1625
1634
  }, "strip", import("zod").ZodTypeAny, {
1626
1635
  trip_id: string;
1627
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1636
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1628
1637
  }, {
1629
1638
  trip_id: string;
1630
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1639
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1631
1640
  }>;
1632
1641
  vehicle: import("zod").ZodObject<{
1633
1642
  id: import("zod").ZodString;
@@ -1647,7 +1656,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1647
1656
  };
1648
1657
  trip: {
1649
1658
  trip_id: string;
1650
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1659
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1651
1660
  };
1652
1661
  timestamp?: number | null | undefined;
1653
1662
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1663,7 +1672,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1663
1672
  };
1664
1673
  trip: {
1665
1674
  trip_id: string;
1666
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1675
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1667
1676
  };
1668
1677
  timestamp?: number | null | undefined;
1669
1678
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1681,7 +1690,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1681
1690
  };
1682
1691
  trip: {
1683
1692
  trip_id: string;
1684
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1693
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1685
1694
  };
1686
1695
  timestamp?: number | null | undefined;
1687
1696
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1705,7 +1714,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1705
1714
  };
1706
1715
  trip: {
1707
1716
  trip_id: string;
1708
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1717
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1709
1718
  };
1710
1719
  timestamp?: number | null | undefined;
1711
1720
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1737,7 +1746,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1737
1746
  };
1738
1747
  trip: {
1739
1748
  trip_id: string;
1740
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1749
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1741
1750
  };
1742
1751
  timestamp?: number | null | undefined;
1743
1752
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1771,7 +1780,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1771
1780
  };
1772
1781
  trip: {
1773
1782
  trip_id: string;
1774
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | null | undefined;
1783
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1775
1784
  };
1776
1785
  timestamp?: number | null | undefined;
1777
1786
  current_status?: "INCOMING_AT" | "STOPPED_AT" | "IN_TRANSIT_TO" | null | undefined;
@@ -1840,24 +1849,24 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1840
1849
  trip: import("zod").ZodObject<{
1841
1850
  direction_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
1842
1851
  route_id: import("zod").ZodString;
1843
- schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "NOT_SCHEDULED", "CANCELED", "ADDED"]>>>;
1844
- start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/types").OperationalDate, string>>>;
1845
- start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
1852
+ schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "CANCELED", "REPLACEMENT", "DUPLICATED", "NEW", "DELETED"]>>>;
1853
+ start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsDate, string>>>;
1854
+ start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsTime, string>>>;
1846
1855
  trip_id: import("zod").ZodString;
1847
1856
  }, "strip", import("zod").ZodTypeAny, {
1848
1857
  route_id: string;
1849
1858
  trip_id: string;
1850
- start_time?: string | null | undefined;
1859
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
1851
1860
  direction_id?: number | null | undefined;
1852
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
1853
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1861
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
1862
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1854
1863
  }, {
1855
1864
  route_id: string;
1856
1865
  trip_id: string;
1857
1866
  start_time?: string | null | undefined;
1858
1867
  direction_id?: number | null | undefined;
1859
1868
  start_date?: string | null | undefined;
1860
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1869
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1861
1870
  }>;
1862
1871
  vehicle: import("zod").ZodObject<{
1863
1872
  id: import("zod").ZodString;
@@ -1884,10 +1893,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1884
1893
  trip: {
1885
1894
  route_id: string;
1886
1895
  trip_id: string;
1887
- start_time?: string | null | undefined;
1896
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
1888
1897
  direction_id?: number | null | undefined;
1889
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
1890
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1898
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
1899
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1891
1900
  };
1892
1901
  stop_id?: string | null | undefined;
1893
1902
  timestamp?: number | null | undefined;
@@ -1913,7 +1922,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1913
1922
  start_time?: string | null | undefined;
1914
1923
  direction_id?: number | null | undefined;
1915
1924
  start_date?: string | null | undefined;
1916
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1925
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1917
1926
  };
1918
1927
  stop_id?: string | null | undefined;
1919
1928
  timestamp?: number | null | undefined;
@@ -1938,10 +1947,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1938
1947
  trip: {
1939
1948
  route_id: string;
1940
1949
  trip_id: string;
1941
- start_time?: string | null | undefined;
1950
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
1942
1951
  direction_id?: number | null | undefined;
1943
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
1944
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1952
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
1953
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1945
1954
  };
1946
1955
  stop_id?: string | null | undefined;
1947
1956
  timestamp?: number | null | undefined;
@@ -1975,7 +1984,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
1975
1984
  start_time?: string | null | undefined;
1976
1985
  direction_id?: number | null | undefined;
1977
1986
  start_date?: string | null | undefined;
1978
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
1987
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
1979
1988
  };
1980
1989
  stop_id?: string | null | undefined;
1981
1990
  timestamp?: number | null | undefined;
@@ -2014,10 +2023,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2014
2023
  trip: {
2015
2024
  route_id: string;
2016
2025
  trip_id: string;
2017
- start_time?: string | null | undefined;
2026
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2018
2027
  direction_id?: number | null | undefined;
2019
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2020
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2028
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2029
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2021
2030
  };
2022
2031
  stop_id?: string | null | undefined;
2023
2032
  timestamp?: number | null | undefined;
@@ -2061,7 +2070,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2061
2070
  start_time?: string | null | undefined;
2062
2071
  direction_id?: number | null | undefined;
2063
2072
  start_date?: string | null | undefined;
2064
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2073
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2065
2074
  };
2066
2075
  stop_id?: string | null | undefined;
2067
2076
  timestamp?: number | null | undefined;
@@ -2133,24 +2142,24 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2133
2142
  trip: import("zod").ZodObject<{
2134
2143
  direction_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2135
2144
  route_id: import("zod").ZodString;
2136
- schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "NOT_SCHEDULED", "CANCELED", "ADDED"]>>>;
2137
- start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/types").OperationalDate, string>>>;
2138
- start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
2145
+ schedule_relationship: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<["SCHEDULED", "CANCELED", "REPLACEMENT", "DUPLICATED", "NEW", "DELETED"]>>>;
2146
+ start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsDate, string>>>;
2147
+ start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsTime, string>>>;
2139
2148
  trip_id: import("zod").ZodString;
2140
2149
  }, "strip", import("zod").ZodTypeAny, {
2141
2150
  route_id: string;
2142
2151
  trip_id: string;
2143
- start_time?: string | null | undefined;
2152
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2144
2153
  direction_id?: number | null | undefined;
2145
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2146
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2154
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2155
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2147
2156
  }, {
2148
2157
  route_id: string;
2149
2158
  trip_id: string;
2150
2159
  start_time?: string | null | undefined;
2151
2160
  direction_id?: number | null | undefined;
2152
2161
  start_date?: string | null | undefined;
2153
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2162
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2154
2163
  }>;
2155
2164
  vehicle: import("zod").ZodObject<{
2156
2165
  id: import("zod").ZodString;
@@ -2177,10 +2186,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2177
2186
  trip: {
2178
2187
  route_id: string;
2179
2188
  trip_id: string;
2180
- start_time?: string | null | undefined;
2189
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2181
2190
  direction_id?: number | null | undefined;
2182
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2183
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2191
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2192
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2184
2193
  };
2185
2194
  stop_id?: string | null | undefined;
2186
2195
  timestamp?: number | null | undefined;
@@ -2206,7 +2215,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2206
2215
  start_time?: string | null | undefined;
2207
2216
  direction_id?: number | null | undefined;
2208
2217
  start_date?: string | null | undefined;
2209
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2218
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2210
2219
  };
2211
2220
  stop_id?: string | null | undefined;
2212
2221
  timestamp?: number | null | undefined;
@@ -2231,10 +2240,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2231
2240
  trip: {
2232
2241
  route_id: string;
2233
2242
  trip_id: string;
2234
- start_time?: string | null | undefined;
2243
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2235
2244
  direction_id?: number | null | undefined;
2236
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2237
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2245
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2246
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2238
2247
  };
2239
2248
  stop_id?: string | null | undefined;
2240
2249
  timestamp?: number | null | undefined;
@@ -2268,7 +2277,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2268
2277
  start_time?: string | null | undefined;
2269
2278
  direction_id?: number | null | undefined;
2270
2279
  start_date?: string | null | undefined;
2271
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2280
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2272
2281
  };
2273
2282
  stop_id?: string | null | undefined;
2274
2283
  timestamp?: number | null | undefined;
@@ -2307,10 +2316,10 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2307
2316
  trip: {
2308
2317
  route_id: string;
2309
2318
  trip_id: string;
2310
- start_time?: string | null | undefined;
2319
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2311
2320
  direction_id?: number | null | undefined;
2312
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2313
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2321
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2322
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2314
2323
  };
2315
2324
  stop_id?: string | null | undefined;
2316
2325
  timestamp?: number | null | undefined;
@@ -2354,7 +2363,7 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2354
2363
  start_time?: string | null | undefined;
2355
2364
  direction_id?: number | null | undefined;
2356
2365
  start_date?: string | null | undefined;
2357
- schedule_relationship?: "SCHEDULED" | "NOT_SCHEDULED" | "CANCELED" | "ADDED" | null | undefined;
2366
+ schedule_relationship?: "SCHEDULED" | "CANCELED" | "REPLACEMENT" | "DUPLICATED" | "NEW" | "DELETED" | null | undefined;
2358
2367
  };
2359
2368
  stop_id?: string | null | undefined;
2360
2369
  timestamp?: number | null | undefined;
@@ -2422,15 +2431,15 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2422
2431
  trip: import("zod").ZodObject<{
2423
2432
  direction_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2424
2433
  route_id: import("zod").ZodString;
2425
- start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/types").OperationalDate, string>>>;
2426
- start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
2434
+ start_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsDate, string>>>;
2435
+ start_time: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, import("@tmlmobilidade/go-types-gtfs").GtfsTime, string>>>;
2427
2436
  trip_id: import("zod").ZodString;
2428
2437
  }, "strip", import("zod").ZodTypeAny, {
2429
2438
  route_id: string;
2430
2439
  trip_id: string;
2431
- start_time?: string | null | undefined;
2440
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2432
2441
  direction_id?: number | null | undefined;
2433
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2442
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2434
2443
  }, {
2435
2444
  route_id: string;
2436
2445
  trip_id: string;
@@ -2458,9 +2467,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2458
2467
  trip: {
2459
2468
  route_id: string;
2460
2469
  trip_id: string;
2461
- start_time?: string | null | undefined;
2470
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2462
2471
  direction_id?: number | null | undefined;
2463
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2472
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2464
2473
  };
2465
2474
  stop_id?: string | null | undefined;
2466
2475
  timestamp?: number | null | undefined;
@@ -2504,9 +2513,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2504
2513
  trip: {
2505
2514
  route_id: string;
2506
2515
  trip_id: string;
2507
- start_time?: string | null | undefined;
2516
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2508
2517
  direction_id?: number | null | undefined;
2509
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2518
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2510
2519
  };
2511
2520
  stop_id?: string | null | undefined;
2512
2521
  timestamp?: number | null | undefined;
@@ -2572,9 +2581,9 @@ declare class RawVehicleEventsNewClass extends MongoInterfaceTemplate<RawVehicle
2572
2581
  trip: {
2573
2582
  route_id: string;
2574
2583
  trip_id: string;
2575
- start_time?: string | null | undefined;
2584
+ start_time?: import("@tmlmobilidade/go-types-gtfs").GtfsTime | null | undefined;
2576
2585
  direction_id?: number | null | undefined;
2577
- start_date?: import("@tmlmobilidade/types").OperationalDate | null | undefined;
2586
+ start_date?: import("@tmlmobilidade/go-types-gtfs").GtfsDate | null | undefined;
2578
2587
  };
2579
2588
  stop_id?: string | null | undefined;
2580
2589
  timestamp?: number | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmlmobilidade/databases",
3
- "version": "20260627.1155.27",
3
+ "version": "20260629.939.11",
4
4
  "author": {
5
5
  "email": "iso@tmlmobilidade.pt",
6
6
  "name": "TML-ISO"