-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
245 changed files
with
37,565 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,3 @@ pubspec.lock | |
|
||
# Mac | ||
.DS_Store | ||
**/*.g.dart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ | |
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md | ||
README.md | ||
.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
.gitignore | ||
AUTHORS.md | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.1.0 | ||
7.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## 6.0.0 - 2023-12-22 | ||
* [#1](https://github.com/conekta/conekta-dart/pull/1) Initial Release | ||
* AntifraudApi | ||
* ApiKeysApi | ||
* BalancesApi | ||
* ChargesApi | ||
* CompaniesApi | ||
* CustomersApi | ||
* DiscountsApi | ||
* EventsApi | ||
* LogsApi | ||
* OrdersApi | ||
* PaymentLinkApi | ||
* PaymentMethodsApi | ||
* PlansApi | ||
* ProductsApi | ||
* ShippingContactsApi | ||
* ShippingsApi | ||
* SubscriptionsApi | ||
* TaxesApi | ||
* TransactionsApi | ||
* TransfersApi | ||
* WebhookKeysApi | ||
* WebhooksApi | ||
## 6.0.1 - 2023-12-26 | ||
* [#2](https://github.com/conekta/conekta-dart/pull/2) update documentation | ||
* update documentation | ||
* add generated models | ||
* add changelog | ||
* add example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.0.0 | ||
6.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
"useEnumExtension": true, | ||
"pubAuthor": "conekta", | ||
"pubLibrary": "conekta", | ||
"pubVersion": "6.0.0", | ||
"pubVersion": "6.0.1", | ||
"pubName": "conekta", | ||
"pubRepository": "https://www.github.com/conekta/conekta-dart", | ||
"pubHomepage" : "https://www.github.com/conekta/conekta-dart", | ||
"pubAuthorEmail": "[email protected]", | ||
"pubDescription": "Conekta dart Library", | ||
"pubDescription": "Dart Library for the Conekta API.", | ||
"serializationLibrary" : "built_value", | ||
"templateDir": "/local/templates/dart", | ||
"files" : { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import 'package:conekta/conekta.dart'; | ||
|
||
Future<void> main() async { | ||
var instance = Conekta(); | ||
instance.setBearerAuth("bearerAuth", "key_xxxx"); | ||
final api = instance.getCustomersApi(); | ||
|
||
var customer = Customer((b) => b | ||
..name = 'John Constantine' | ||
..email = '[email protected]' | ||
..phone = '5555555555' | ||
); | ||
var response = await api.createCustomer(customer: customer); | ||
print(response.data); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.