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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.8.17

- Added `ReferenceCategory.atsShowOnlyLastExit` (`ATS_SHOW_ONLY_LAST_EXIT`) to flag pump assets whose exit history should be limited to the most recent record.

## 3.8.16

- Fixed `RenderWidget.magnet` enum value: corrected `@JsonValue` from `'MAGNET_SENSOR'` to `'MAGNET'` to match the backend `Widget` enum.
Expand Down
1 change: 1 addition & 0 deletions lib/src/references/references.g.dart

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

7 changes: 7 additions & 0 deletions lib/src/references/src/category.dart
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,13 @@ enum ReferenceCategory {
@JsonValue('ATS_INVOICE_SWAP')
atsInvoiceSwap,

/// !ATS Reference
/// [AllTank Systems] When present on a pump asset, the history view must
/// show only the most recent exit instead of the full list.
/// Layrz API Reference: ATS_SHOW_ONLY_LAST_EXIT
@JsonValue('ATS_SHOW_ONLY_LAST_EXIT')
atsShowOnlyLastExit,

/// !Mappit Reference
/// Defines the access to the Mappit module as a operator or mappit employee
/// Layrz API Reference: MAPPIT_OPERATOR
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description: Layrz API models for Dart/Flutter. This package contains the models
used by the Layrz API.
name: layrz_models
version: "3.8.16"
version: "3.8.17"
repository: https://github.com/goldenm-software/layrz_models

environment:
Expand Down
Loading