Skip to content

Commit

Permalink
Merge pull request #15 from manu-sncf/pigeon
Browse files Browse the repository at this point in the history
Upgrade Pigeon
  • Loading branch information
manu-sncf authored Feb 22, 2024
2 parents 1de8eec + f9ab14b commit 2ccc7dd
Show file tree
Hide file tree
Showing 9 changed files with 225 additions and 133 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-02-22

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_google_wallet` - `v0.1.3`](#flutter_google_wallet---v013)

---

#### `flutter_google_wallet` - `v0.1.3`

- **FEAT**(flutter_google_wallet_plugin): add method to add jwt signed wallet.

## 0.1.3

- **FEAT**(flutter_google_wallet_plugin): add method to add jwt signed wallet.


## 2023-12-05

### Changes
Expand Down
3 changes: 3 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ include: package:flutter_lints/flutter.yaml

# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
analyzer:
exclude:
- lib/messages.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Autogenerated from Pigeon (v10.0.0), do not edit directly.
// Autogenerated from Pigeon (v17.0.0), do not edit directly.
// See also: https://pub.dev/packages/pigeon

package sncf.connect.tech.flutter_google_wallet
Expand Down Expand Up @@ -58,7 +58,7 @@ interface GoogleWalletApi {
@Suppress("UNCHECKED_CAST")
fun setUp(binaryMessenger: BinaryMessenger, api: GoogleWalletApi?) {
run {
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.GoogleWalletApi.initWalletClient", codec)
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.flutter_google_wallet.GoogleWalletApi.initWalletClient", codec)
if (api != null) {
channel.setMessageHandler { _, reply ->
var wrapped: List<Any?>
Expand All @@ -76,7 +76,7 @@ interface GoogleWalletApi {
}
run {
val taskQueue = binaryMessenger.makeBackgroundTaskQueue()
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.GoogleWalletApi.getWalletApiAvailabilityStatus", codec, taskQueue)
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.flutter_google_wallet.GoogleWalletApi.getWalletApiAvailabilityStatus", codec, taskQueue)
if (api != null) {
channel.setMessageHandler { _, reply ->
var wrapped: List<Any?>
Expand All @@ -92,7 +92,7 @@ interface GoogleWalletApi {
}
}
run {
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.GoogleWalletApi.savePasses", codec)
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.flutter_google_wallet.GoogleWalletApi.savePasses", codec)
if (api != null) {
channel.setMessageHandler { message, reply ->
val args = message as List<Any?>
Expand All @@ -112,7 +112,7 @@ interface GoogleWalletApi {
}
}
run {
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.GoogleWalletApi.savePassesJwt", codec)
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.flutter_google_wallet.GoogleWalletApi.savePassesJwt", codec)
if (api != null) {
channel.setMessageHandler { message, reply ->
val args = message as List<Any?>
Expand Down
Loading

0 comments on commit 2ccc7dd

Please sign in to comment.