Bump to v0.2.0
This commit is contained in:
20
CHANGELOG.md
20
CHANGELOG.md
@@ -7,17 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
_no changes yet_
|
||||||
|
|
||||||
|
|
||||||
|
## [v0.2.0] - 2026-03-24
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- `Validation` utility class for specifications as MSISDN
|
- `Validation` utility class for specifications as [MSISDN](https://en.wikipedia.org/wiki/MSISDN)
|
||||||
- Docs rendering using DocFX
|
- Docs rendering using DocFX
|
||||||
- `Personal` as enum value for `ContentCategory`
|
- `Personal` as enum value for `ContentCategory`
|
||||||
- WhatsApp support for
|
- WhatsApp support for
|
||||||
- `AudioMessageContent`
|
- `Audio`
|
||||||
- `DocumentMessageContent`
|
- `Document`
|
||||||
- `ImageMessageContent`
|
- `Image`
|
||||||
- `TextMessageContent`
|
- `Text`
|
||||||
- `VideoMessageContent`
|
- `Video`
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
@@ -55,7 +60,8 @@ _Initial release, SMS only._
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
[Unreleased]: https://github.com/AM-WD/LinkMobility/compare/v0.1.1...HEAD
|
[Unreleased]: https://github.com/AM-WD/LinkMobility/compare/v0.2.0...HEAD
|
||||||
|
|
||||||
|
[v0.2.0]: https://github.com/AM-WD/LinkMobility/compare/v0.1.1...v0.2.0
|
||||||
[v0.1.1]: https://github.com/AM-WD/LinkMobility/compare/v0.1.0...v0.1.1
|
[v0.1.1]: https://github.com/AM-WD/LinkMobility/compare/v0.1.0...v0.1.1
|
||||||
[v0.1.0]: https://github.com/AM-WD/LinkMobility/commits/v0.1.0
|
[v0.1.0]: https://github.com/AM-WD/LinkMobility/commits/v0.1.0
|
||||||
|
|||||||
@@ -27,12 +27,18 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The messages involved in the notification change.
|
/// The messages involved in the notification change.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// LINK Mobility API docs: <see href="https://developer.linkmobility.eu/whatsapp-api/rest-api#/paths/receiveIncomingWhatsappmessaging/post"/>
|
||||||
|
/// </remarks>
|
||||||
[JsonProperty("messages")]
|
[JsonProperty("messages")]
|
||||||
public IReadOnlyCollection<Message>? Messages { get; set; }
|
public IReadOnlyCollection<Message>? Messages { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Status changes of the messages involved in the notification change.
|
/// Status changes of the messages involved in the notification change.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// LINK Mobility API docs: <see href="https://developer.linkmobility.eu/whatsapp-api/rest-api#/paths/receiveStatusWhatsappmessaging/post"/>
|
||||||
|
/// </remarks>
|
||||||
[JsonProperty("statuses")]
|
[JsonProperty("statuses")]
|
||||||
public IReadOnlyCollection<Status>? Statuses { get; set; }
|
public IReadOnlyCollection<Status>? Statuses { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user