Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"skip_formatting": false,
"enable_wire_tests": true
},
"sdkVersion": "8.1.0"
"sdkVersion": "8.1.1"
}
96 changes: 48 additions & 48 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "samsara-api"
version = "8.1.0"
version = "8.1.1"
description = ""
readme = "README.md"
authors = []
Expand Down
16 changes: 8 additions & 8 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6925,7 +6925,7 @@ client.beta_ap_is.list_readings_definitions()
<dl>
<dd>

**entity_types:** `typing.Optional[str]` — A list of entity type to return readings for. (Examples: asset, sensor)
**entity_types:** `typing.Optional[str]` — A list of entity types to return readings for. (Examples: asset, sensor)

</dd>
</dl>
Expand Down Expand Up @@ -6957,7 +6957,7 @@ client.beta_ap_is.list_readings_definitions()
<dl>
<dd>

Get the values of a reading for a set of entities within the specified time range. Returns a paginated response with data for the specified resource IDs where startTime <= happenedAtTime < endTime. End time of null implies endTime is infinite and all known readings are returned.
Get the values of a reading for a set of entities within the specified time range. Returns a paginated response with data for the specified resource IDs where startTime <= happenedAtTime < endTime. If endTime is not set, the time of the request is used as the endTime.

<b>Rate limit:</b> 10 requests/sec (learn more about rate limits <a href="https://developers.samsara.com/docs/rate-limits" target="_blank">here</a>).

Expand Down Expand Up @@ -7235,7 +7235,7 @@ Available reading IDs (by category):
<dl>
<dd>

**entity_type:** `str` — A entity type of the entityIds or externalIds to fetch readings for. Use /readings/definitions endpoint to get a list of valid entity types. (Examples: asset, sensor)
**entity_type:** `str` — The entity type of the entityIds or externalIds to fetch readings for. Use /readings/definitions endpoint to get a list of valid entity types. (Examples: asset, sensor)

</dd>
</dl>
Expand All @@ -7251,7 +7251,7 @@ Available reading IDs (by category):
<dl>
<dd>

**entity_ids:** `typing.Optional[str]` — A filter on the data based on this comma-separated list of entity IDs or external IDs. If not set, all entities are returned.
**entity_ids:** `typing.Optional[str]` — A filter on the data based on this comma-separated list of entity IDs. If not set, all entities are returned.

</dd>
</dl>
Expand All @@ -7267,7 +7267,7 @@ Available reading IDs (by category):
<dl>
<dd>

**start_time:** `typing.Optional[str]` — A filter on the data that returns the last known data points with timestamps greater than or equal to this value. Must be a string in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2020-01-27T07:06:25Z)
**start_time:** `typing.Optional[str]` — A filter on the data that returns data points with timestamps greater than or equal to this value. Required when feed mode is not enabled. Must be a string in RFC 3339 format. Millisecond precision and timezones are supported. (Examples: 2020-01-27T07:06:25Z)

</dd>
</dl>
Expand Down Expand Up @@ -7371,7 +7371,7 @@ client.beta_ap_is.get_readings_snapshot(

**reading_ids:** `str`

A collection of comma separated reading IDs. Include up to 3 readings IDs. Use /readings/definitions endpoint to get a list of valid reading IDs. (Examples: engineRpm,fuelLevel)
A collection of comma separated reading IDs. Include up to 5 readings IDs. Use /readings/definitions endpoint to get a list of valid reading IDs. (Examples: engineRpm,fuelLevel)

Available reading IDs (by category):

Expand Down Expand Up @@ -7601,7 +7601,7 @@ Available reading IDs (by category):
<dl>
<dd>

**entity_type:** `str` — A entity type of the entityIds or externalIds to fetch readings for. Use /readings/definitions endpoint to get a list of valid entity types. (Examples: asset, sensor)
**entity_type:** `str` — The entity type of the entityIds or externalIds to fetch readings for. Use /readings/definitions endpoint to get a list of valid entity types. (Examples: asset, sensor)

</dd>
</dl>
Expand All @@ -7617,7 +7617,7 @@ Available reading IDs (by category):
<dl>
<dd>

**entity_ids:** `typing.Optional[str]` — A filter on the data based on this comma-separated list of entity IDs or external IDs. If not set, all entities are returned.
**entity_ids:** `typing.Optional[str]` — A filter on the data based on this comma-separated list of entity IDs. If not set, all entities are returned.

</dd>
</dl>
Expand Down
Loading
Loading