Skip to content

Commit

Permalink
fix(api-client): update dataset exports formats (#260)
Browse files Browse the repository at this point in the history
- Add geographic formats: fgb, gpx and parquet
- Add calendar format: ical
  • Loading branch information
KevinFabre-ods authored Sep 20, 2024
1 parent 2e468dd commit 91704ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/api-client/src/client/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export const EXPORT_DATASET_FORMAT = {
TURTLE: 'turtle',
N3: 'n3',
MVT: 'mvt',
PARQUET: 'parquet',
FGB: 'fgb',
GPX: 'gpx',
ICAL: 'ical',
} as const;

export const EXPORT_CATALOG_FORMAT = {
Expand Down

1 comment on commit 91704ce

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

94.67%

Coverage Report
FileStmtsBranchesFuncsLinesUncovered Lines
src
   index.ts100%100%100%100%
src/client
   constants.ts100%100%100%100%
   error.ts100%100%100%100%
   index.ts84.14%74.03%100%95.31%102–103, 124, 13, 146, 148, 148–149, 15, 15, 151, 162, 169, 169, 17, 17, 171, 176, 179, 182, 184, 52, 82
   types.ts100%100%100%100%
src/odsql
   clauses.ts82.61%71.43%80%90.91%14, 32, 42
   index.ts92.05%83.72%95.74%94.19%111, 146, 25, 28, 56–57, 57, 57–58, 68, 78–79

Please sign in to comment.