gtfs 4.14.3 → 4.14.5

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/README.md CHANGED
@@ -394,7 +394,7 @@ importGtfs({
394
394
 
395
395
  ### gtfsRealtimeExpirationSeconds
396
396
 
397
- {Integer} Amount of time in seconds to allow GTFS-Realtime data to be stored in database before allowing to be deleted. Defaults to 0 (old GTFS-Realtime is deleted immediately when new data arrives).
397
+ {Integer} Amount of time in seconds to allow GTFS-Realtime data to be stored in database before allowing to be deleted. Defaults to 0 (old GTFS-Realtime is deleted immediately when new data arrives). Note that if new data arrives for the same trip update, vehicle position or service alert before the expiration time, it will overwrite the existing data. The `gtfsRealtimeExpirationSeconds` only affects when data is deleted.
398
398
 
399
399
  ```json
400
400
  {
@@ -3269,6 +3269,7 @@ function setDefaultConfig(initialConfig) {
3269
3269
  const defaults = {
3270
3270
  sqlitePath: ":memory:",
3271
3271
  ignoreDuplicates: false,
3272
+ ignoreErrors: false,
3272
3273
  gtfsRealtimeExpirationSeconds: 0
3273
3274
  };
3274
3275
  return {