Skip to content

Commit

Permalink
Updated GTFSFareProduct
Browse files Browse the repository at this point in the history
  • Loading branch information
ponlawat-w committed Dec 6, 2023
1 parent de0c451 commit 88ed4d3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.0.0 ~ 0.0.6
- Initial version.
- Minor updates.
0.0.7
- Updated `GTFSFareProduct`
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
4 changes: 2 additions & 2 deletions src/files/fare-product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 88ed4d3

Please sign in to comment.