Skip to content

Commit bf60850

Browse files
authored
feat: add csv_utf8 export type (#44)
1 parent 9de557c commit bf60850

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

openapi/components/parameters.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,14 @@ Fields:
9090
type: string
9191
Export:
9292
name: export
93-
description: Saves the API response to a file. Accepts one of `csv`, `json`, `xml`, `yaml`.
93+
description: Saves the API response to a file. Accepts one of `csv`, `csv_utf8`, `json`, `xml`, `yaml`.
9494
in: query
9595
required: false
9696
schema:
9797
type: string
9898
enum:
9999
- csv
100+
- csv_utf8
100101
- json
101102
- xml
102103
- yaml

openapi/paths/utils/export/_collection/export.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ requestBody:
1515
properties:
1616
format:
1717
type: string
18-
description: 'What file format to save the export to. One of `csv`, `xml`,`json`'
18+
description: 'What file format to save the export to. One of `csv`, `csv_utf8`, `xml`, `json`, `yaml`'
1919
enum:
2020
- csv
21+
- csv_utf8
2122
- xml
2223
- json
24+
- yaml
2325
query:
2426
$ref: ../../../../components/schemas/query.yaml
2527
file:

0 commit comments

Comments
 (0)