Skip to content

Commit

Permalink
0.119.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogerheijde committed Sep 6, 2022
1 parent d342f8e commit 30bf6b4
Show file tree
Hide file tree
Showing 34 changed files with 10,525 additions and 7 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

#### Upcoming Changes

### 0.119 (2022-09-05)

##### EasypulseService

- Added `MINIMUM` and `MAXIMUM` aggregation to `Easypulse.History.Request.Aggregation`.

##### FieldService

- Added `ForModem` call (with `ListFieldsForModem`) to list the fields for a selection of modems.
- This is an improved version to `MessageService.AvailableBodyFields`
- Added `apply_unit_preferences` to choose whether to apply the unit preferences.
- Added `field_selection` to filter the fields.
- Added `optional` to `Field` to indicate the system should not consider the parser result invalid
if the field is not in it.
- Added `optional` to `UpdateFieldRequest`.

##### MessageService

- Added `MINIMUM` and `MAXIMUM` aggregation to `MessageBodyFieldHistory.Request.Aggregation`.
- Deprecated `History` call in favor of the new `ValueService`.
- Deprecated `AvailableBodyFields` call in favor of the new `FieldService.ForModem` call.

##### SingleSignOnService

- Added `current_session_id` to `DundasSSO.Request` to submit your current session id.
If it is still valid, no new session is created and the given session id is returned.
- Added `session_id_subdomain` to `DundasSSO.Response` with the subdomain to write the session id to, for convenience.

##### ValueService

- Introducing the `ValueService` to fetch time series data from our system.
- Use `List` to list absolute values for a given period of time.
- Use `Aggregated` to aggregate values over a given period of time, optionally partitioned (i.e. average per day).

### 0.118 (2022-08-22)

### 0.117 (2022-08-15)
Expand Down
6 changes: 6 additions & 0 deletions base.proto
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,12 @@ message Filter {
repeated UserPermission include = 2;
repeated UserPermission exclude = 3;
}

message FieldEnumValues {
string field = 1;
repeated string include = 2;
repeated string exclude = 3;
}
}

/* Health is an indicator for issues. It is used for publishers to give a quick indication of issues.
Expand Down
42 changes: 42 additions & 0 deletions docs/html/assignment.html
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,10 @@ <h2>Table of Contents</h2>
<a href="#hiber.Filter.Events.Update"><span class="badge">M</span>Filter.Events.Update</a>
</li>

<li>
<a href="#hiber.Filter.FieldEnumValues"><span class="badge">M</span>Filter.FieldEnumValues</a>
</li>

<li>
<a href="#hiber.Filter.Modems"><span class="badge">M</span>Filter.Modems</a>
</li>
Expand Down Expand Up @@ -10152,6 +10156,44 @@ <h3 id="hiber.Filter.Events.Update">Filter.Events.Update</h3>



<h3 id="hiber.Filter.FieldEnumValues">Filter.FieldEnumValues</h3>
<p></p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>field</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p> </p></td>
</tr>

<tr>
<td>include</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

<tr>
<td>exclude</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

</tbody>
</table>





<h3 id="hiber.Filter.Modems">Filter.Modems</h3>
<p></p>

Expand Down
62 changes: 62 additions & 0 deletions docs/html/easypulse.html
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,10 @@ <h2>Table of Contents</h2>
<a href="#hiber.Filter.Events.Update"><span class="badge">M</span>Filter.Events.Update</a>
</li>

<li>
<a href="#hiber.Filter.FieldEnumValues"><span class="badge">M</span>Filter.FieldEnumValues</a>
</li>

<li>
<a href="#hiber.Filter.Modems"><span class="badge">M</span>Filter.Modems</a>
</li>
Expand Down Expand Up @@ -1970,6 +1974,14 @@ <h3 id="hiber.easypulse.Easypulse.TargetValues.List.Request">Easypulse.TargetVal
<td><p>Sort the returned assets using the given option. By default, Assets are sorted by name. </p></td>
</tr>

<tr>
<td>apply_unit_preferences</td>
<td><a href="#bool">bool</a></td>
<td></td>
<td><p>Whether to apply the unit preferences to the fields.
This will convert any fields into your preferred unit, for convenience. </p></td>
</tr>

</tbody>
</table>

Expand Down Expand Up @@ -2434,6 +2446,18 @@ <h3 id="hiber.easypulse.Easypulse.History.Request.Aggregation">Easypulse.History
<td><p>Just take the last value (in a group).</p></td>
</tr>

<tr>
<td>MINIMUM</td>
<td>4</td>
<td><p>Take the lowest value (in a group).</p></td>
</tr>

<tr>
<td>MAXIMUM</td>
<td>5</td>
<td><p>Take the highest value (in a group).</p></td>
</tr>

</tbody>
</table>

Expand Down Expand Up @@ -4130,6 +4154,44 @@ <h3 id="hiber.Filter.Events.Update">Filter.Events.Update</h3>



<h3 id="hiber.Filter.FieldEnumValues">Filter.FieldEnumValues</h3>
<p></p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>field</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p> </p></td>
</tr>

<tr>
<td>include</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

<tr>
<td>exclude</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

</tbody>
</table>





<h3 id="hiber.Filter.Modems">Filter.Modems</h3>
<p></p>

Expand Down
42 changes: 42 additions & 0 deletions docs/html/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,10 @@ <h2>Table of Contents</h2>
<a href="#hiber.Filter.Events.Update"><span class="badge">M</span>Filter.Events.Update</a>
</li>

<li>
<a href="#hiber.Filter.FieldEnumValues"><span class="badge">M</span>Filter.FieldEnumValues</a>
</li>

<li>
<a href="#hiber.Filter.Modems"><span class="badge">M</span>Filter.Modems</a>
</li>
Expand Down Expand Up @@ -9383,6 +9387,44 @@ <h3 id="hiber.Filter.Events.Update">Filter.Events.Update</h3>



<h3 id="hiber.Filter.FieldEnumValues">Filter.FieldEnumValues</h3>
<p></p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>field</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p> </p></td>
</tr>

<tr>
<td>include</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

<tr>
<td>exclude</td>
<td><a href="#string">string</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

</tbody>
</table>





<h3 id="hiber.Filter.Modems">Filter.Modems</h3>
<p></p>

Expand Down
Loading

0 comments on commit 30bf6b4

Please sign in to comment.