@tmlmobilidade/generate-offer-files 20250626.1210.20 → 20250626.1404.0

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14,13 +14,13 @@ import fs from 'fs';
14
14
  const program = new Command();
15
15
  program
16
16
  .name('Generate Offer Journeys')
17
- .description('Output offer_journey.json files from GTFS files.')
18
- .requiredOption('--file <path>', 'GTFS file path')
19
- .requiredOption('--start-date <operational-date>', 'The start date of the plan in YYYYMMDD format')
20
- .requiredOption('--end-date <operational-date>', 'The end date of the plan in YYYYMMDD format')
21
- .option('--output-dir <path>', 'Output directory for the offer_journey.json files', './output')
22
- .option('--override', 'Override output directory if it exists', false)
23
- .option('--feed-id <value>', 'Optional feedId value to include in output files', null)
17
+ .description('Output offer_journey.json and offer_stop.json files from a GTFS file.')
18
+ .requiredOption('--file <path>', 'The input GTFS file path.')
19
+ .requiredOption('--start-date <operational-date>', 'The start date of the plan in YYYYMMDD format.')
20
+ .requiredOption('--end-date <operational-date>', 'The end date of the plan in YYYYMMDD format.')
21
+ .option('--output-dir <path>', 'Output directory for the offer_journey.json files.', './output')
22
+ .option('--override', 'Override output directory if it exists.', false)
23
+ .option('--feed-id <value>', 'Optional feedId value to include in output files.', null)
24
24
  .parse();
25
25
  //
26
26
  // Validate the input options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmlmobilidade/generate-offer-files",
3
- "version": "20250626.1210.20",
3
+ "version": "20250626.1404.00",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"