Skip to content

Commit

Permalink
0.133.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogerheijde committed Dec 12, 2022
1 parent d573070 commit 19a8645
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog Hiber API

### 0.133 (2022-12-12)

##### ValueService

- Cleared up some things in `ValueContext`:
- Renamed `duration` to `value_durations`.
- Fixed the documentation inside the `oneof value_type`.

### 0.132 (2022-12-05)


Expand Down
8 changes: 4 additions & 4 deletions docs/html/value_service.html
Original file line number Diff line number Diff line change
Expand Up @@ -1256,21 +1256,21 @@ <h3 id="hiber.value.ValueContext">ValueContext</h3>
<td>value</td>
<td><a href="#hiber.value.Value">Value</a></td>
<td></td>
<td><p>The value at this time. </p></td>
<td><p>The value at this time, if no ValueTransformation was specified for this field. </p></td>
</tr>

<tr>
<td>duration</td>
<td>value_durations</td>
<td><a href="#hiber.value.ValueContext.ValueDurations">ValueContext.ValueDurations</a></td>
<td></td>
<td><p>The value at this time. </p></td>
<td><p>The output of the DURATION ValueTransformation, if it was specified for this field. </p></td>
</tr>

<tr>
<td>delta</td>
<td><a href="#hiber.value.ValueContext.ValueDelta">ValueContext.ValueDelta</a></td>
<td></td>
<td><p>The value at this time. </p></td>
<td><p>The output of the DELTA ValueTransformation, if it was specified for this field. </p></td>
</tr>

</tbody>
Expand Down
6 changes: 3 additions & 3 deletions docs/md/value_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ A Value at a time, for a given modem and field.
| modem | [ string](#string) | none |
| field | [ string](#string) | none |
| time | [ hiber.Timestamp](#hibertimestamp) | The time for this value. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.value | [ Value](#value) | The value at this time. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.duration | [ ValueContext.ValueDurations](#valuecontextvaluedurations) | The value at this time. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.delta | [ ValueContext.ValueDelta](#valuecontextvaluedelta) | The value at this time. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.value | [ Value](#value) | The value at this time, if no ValueTransformation was specified for this field. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.value_durations | [ ValueContext.ValueDurations](#valuecontextvaluedurations) | The output of the DURATION ValueTransformation, if it was specified for this field. |
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) **value_type**.delta | [ ValueContext.ValueDelta](#valuecontextvaluedelta) | The output of the DELTA ValueTransformation, if it was specified for this field. |

### ValueContext.ValueDelta

Expand Down
8 changes: 4 additions & 4 deletions value_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ message ValueContext {
Timestamp time = 3;

oneof value_type {
/* The value at this time. */
/* The value at this time, if no ValueTransformation was specified for this field. */
Value value = 4;

/* The value at this time. */
ValueDurations duration = 5;
/* The output of the DURATION ValueTransformation, if it was specified for this field. */
ValueDurations value_durations = 5;

/* The value at this time. */
/* The output of the DELTA ValueTransformation, if it was specified for this field. */
ValueDelta delta = 6;
}

Expand Down

0 comments on commit 19a8645

Please sign in to comment.