diff --git a/CHANGES.md b/CHANGES.md index 9cb9832..0e42239 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,5 @@ 0.0.0 ~ 0.0.6 - Initial version. - Minor updates. +0.0.7 +- Updated `GTFSFareProduct` diff --git a/package-lock.json b/package-lock.json index e236725..3eee242 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gtfs-io", - "version": "0.0.6", + "version": "0.0.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "gtfs-io", - "version": "0.0.6", + "version": "0.0.7", "license": "ISC", "dependencies": { "adm-zip": "^0.5.10", diff --git a/package.json b/package.json index 76f0525..d7467ea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gtfs-io", "type": "module", - "version": "0.0.6", + "version": "0.0.7", "description": "IO operations for reading and writing GTFS datasets and GTFS type definitions.", "main": "dist/index.js", "keywords": [ diff --git a/src/files/fare-product.ts b/src/files/fare-product.ts index f4ac753..924e38b 100644 --- a/src/files/fare-product.ts +++ b/src/files/fare-product.ts @@ -3,9 +3,9 @@ export type GTFSFareProduct = { /** Identifies a fare product. */ fare_product_id: string, /** The name of the fare product as displayed to riders. */ - fare_product_name_: string, + fare_product_name?: string, /** Identifies a fare media that can be employed to use the fare product during the trip. */ - fare_media_id_: string, + fare_media_id?: string, /** The cost of the fare product. */ amount: number, /** The currency of the cost of the fare product. */