Skip to content

Commit

Permalink
docs: adjust systemFilesOnly bool to render correct docs
Browse files Browse the repository at this point in the history
  • Loading branch information
paigen11 committed Jun 7, 2024
1 parent cf4800f commit 86af1cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2300,7 +2300,7 @@ components:
required: false
schema:
type: boolean
example: true
example: True

fleetUIDQueryParam:
name: fleetUID
Expand Down
8 changes: 4 additions & 4 deletions src/docs/EventApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down Expand Up @@ -153,7 +153,7 @@ with notehub_py.ApiClient(configuration) as api_client:
limit = 50 # int | (optional) (default to 50)
cursor = 'cursor_example' # str | A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included. (optional)
sort_order = 'asc' # str | (optional) (default to 'asc')
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)
device_uid = 'device_uid_example' # str | A Device UID. (optional)
start_date = 1628631763 # int | Unix timestamp (optional)
Expand Down Expand Up @@ -253,7 +253,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down Expand Up @@ -346,7 +346,7 @@ with notehub_py.ApiClient(configuration) as api_client:
limit = 50 # int | (optional) (default to 50)
cursor = 'cursor_example' # str | A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included. (optional)
sort_order = 'asc' # str | (optional) (default to 'asc')
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)
fleet_uid = 'fleet_uid_example' # str | (optional)
device_uid = 'device_uid_example' # str | A Device UID. (optional)
Expand Down
2 changes: 1 addition & 1 deletion src/docs/RouteApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down

0 comments on commit 86af1cf

Please sign in to comment.