Skip to content

Commit 31d5582

Browse files
authored
Merge pull request #167 from goldenm-software/development
chore: release 3.6.28
2 parents 3b3044a + dea7dca commit 31d5582

6 files changed

Lines changed: 64 additions & 37 deletions

File tree

CHANGELOG.md

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

3+
## 3.6.28
4+
5+
- Added `description` field to `Locator` and `LocatorInput` models.
6+
- Updated `Locator` GraphQL fragment to include `description`.
7+
38
## 3.6.27
49

510
- Added `LocatorBoundary` and `LocatorBoundaryPoint` models (freezed + unfreezed variants) for representing the geographic bounding box of a locator.

lib/src/locator/locator.freezed.dart

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

lib/src/locator/locator.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/locator/src/locator.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ abstract class Locator with _$Locator {
8585

8686
/// [boundary] is the geographic bounding box of the locator
8787
LocatorBoundary? boundary,
88+
89+
/// [description] is the description of the locator
90+
String? description,
8891
}) = _Locator;
8992

9093
factory Locator.fromJson(Map<String, dynamic> json) => _$LocatorFromJson(json);
@@ -462,6 +465,7 @@ abstract class Locator with _$Locator {
462465
longitude
463466
}
464467
}
468+
description
465469
466470
isExpired
467471

lib/src/locator/src/locator_input.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ abstract class LocatorInput with _$LocatorInput {
3434

3535
/// [boundary] is the geographic bounding box of the locator
3636
LocatorBoundaryInput? boundary,
37+
38+
/// [description] is the description of the locator
39+
String? description,
3740
}) = _LocatorInput;
3841

3942
factory LocatorInput.fromJson(Map<String, dynamic> json) => _$LocatorInputFromJson(json);

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.27"
3+
version: "3.6.28"
44
repository: https://github.com/goldenm-software/layrz_models
55

66
environment:

0 commit comments

Comments
 (0)