Skip to content

Commit 4e0edd6

Browse files
committed
Changed order value type in AtsOrderStatusHistory model
1 parent 37b692e commit 4e0edd6

7 files changed

Lines changed: 47 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 3.6.5
4+
5+
- Changed `order` value type in `AtsOrderStatusHistory` model
6+
- Added `ATS_EXPORT_RAFT_CLOSURE_REPORT_PDF` value in `ReferenceCategory` enum
7+
- Added `ATS_SUPERVISORIO_EDIT_CACL` value in `ReferenceCategory` enum
8+
- Added `ATS_SUPERVISORIO_REMOVE_CACL` value in `ReferenceCategory` enum
9+
310
## 3.6.4
411

512
- Added `AtsOrder` model

lib/src/ats/ats.freezed.dart

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/ats/ats.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/ats/src/orders/order.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ abstract class AtsOrderStatusHistory with _$AtsOrderStatusHistory {
5858
required String id,
5959

6060
/// The [order] parameter is the order of the order status history.
61-
AtsOrderStatusHistory? order,
61+
AtsOrder? order,
6262

6363
/// The [orderNumber] parameter is the orderNumber of the order status history.
6464
required String orderNumber,

lib/src/references/references.g.dart

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/references/src/category.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,24 @@ enum ReferenceCategory {
240240
@JsonValue('ATS_BALSA_EXPORT_RECEIVEMENT_REPORT_PDF')
241241
atsBalsaExportReceivementReportPdf,
242242

243+
/// !ATS Reference
244+
/// [AllTank Systems] Access to export closure report PDF
245+
/// ATS_EXPORT_RAFT_CLOSURE_REPORT_PDF
246+
@JsonValue('ATS_EXPORT_RAFT_CLOSURE_REPORT_PDF')
247+
atsExportRaftClosureReportPdf,
248+
249+
/// !ATS Reference
250+
/// [AllTank Systems] Access to the CACL edit in supervisorio module
251+
/// ATS_SUPERVISORIO_EDIT_CACL
252+
@JsonValue('ATS_SUPERVISORIO_EDIT_CACL')
253+
atsSupervisorioEditCacl,
254+
255+
/// !ATS Reference
256+
/// [AllTank Systems] Access to the CACL remove in supervisorio module
257+
/// ATS_SUPERVISORIO_REMOVE_CACL
258+
@JsonValue('ATS_SUPERVISORIO_REMOVE_CACL')
259+
atsSupervisorioRemoveCacl,
260+
243261
/// !Mappit Reference
244262
/// Defines the access to the Mappit module as a operator or mappit employee
245263
/// Layrz API Reference: MAPPIT_OPERATOR

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
description: Layrz API models for Dart/Flutter. This package contains the models used by the Layrz API.
22
name: layrz_models
3-
version: "3.6.4"
3+
version: "3.6.5"
44
repository: https://github.com/goldenm-software/layrz_models
55

66
environment:

0 commit comments

Comments
 (0)