Skip to content

Commit

Permalink
add 6.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarrero committed May 24, 2023
1 parent 4c2b063 commit 18d41c2
Show file tree
Hide file tree
Showing 137 changed files with 5,452 additions and 619 deletions.
22 changes: 22 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ VERSION
analysis_options.yaml
conekta.png
doc/AntifraudApi.md
doc/ApiKeyCreateResponse.md
doc/ApiKeyCreateResponseAllOf.md
doc/ApiKeyRequest.md
doc/ApiKeyResponse.md
doc/ApiKeyUpdateRequest.md
doc/ApiKeysApi.md
doc/BalanceCommonField.md
doc/BalanceResponse.md
doc/BalancesApi.md
Expand Down Expand Up @@ -76,6 +82,8 @@ doc/CustomerUpdateShippingContacts.md
doc/CustomersApi.md
doc/CustomersResponse.md
doc/CustomersResponseAllOf.md
doc/DeleteApiKeysResponse.md
doc/DeleteApiKeysResponseAllOf.md
doc/DeletedBlacklistRuleResponse.md
doc/DeletedWhitelistRuleResponse.md
doc/Details.md
Expand All @@ -89,6 +97,9 @@ doc/Error.md
doc/ErrorAllOf.md
doc/EventResponse.md
doc/EventsApi.md
doc/EventsResendResponse.md
doc/GetApiKeysResponse.md
doc/GetApiKeysResponseAllOf.md
doc/GetChargesResponse.md
doc/GetChargesResponseAllOf.md
doc/GetCompaniesResponse.md
Expand Down Expand Up @@ -223,6 +234,7 @@ doc/WhitelistlistRuleResponse.md
lib/conekta.dart
lib/src/api.dart
lib/src/api/antifraud_api.dart
lib/src/api/api_keys_api.dart
lib/src/api/balances_api.dart
lib/src/api/charges_api.dart
lib/src/api/companies_api.dart
Expand Down Expand Up @@ -251,6 +263,11 @@ lib/src/auth/basic_auth.dart
lib/src/auth/bearer_auth.dart
lib/src/auth/oauth.dart
lib/src/date_serializer.dart
lib/src/model/api_key_create_response.dart
lib/src/model/api_key_create_response_all_of.dart
lib/src/model/api_key_request.dart
lib/src/model/api_key_response.dart
lib/src/model/api_key_update_request.dart
lib/src/model/balance_common_field.dart
lib/src/model/balance_response.dart
lib/src/model/blacklist_rule_response.dart
Expand Down Expand Up @@ -316,6 +333,8 @@ lib/src/model/customer_update_shipping_contacts.dart
lib/src/model/customers_response.dart
lib/src/model/customers_response_all_of.dart
lib/src/model/date.dart
lib/src/model/delete_api_keys_response.dart
lib/src/model/delete_api_keys_response_all_of.dart
lib/src/model/deleted_blacklist_rule_response.dart
lib/src/model/deleted_whitelist_rule_response.dart
lib/src/model/details.dart
Expand All @@ -327,6 +346,9 @@ lib/src/model/email_checkout_request.dart
lib/src/model/error.dart
lib/src/model/error_all_of.dart
lib/src/model/event_response.dart
lib/src/model/events_resend_response.dart
lib/src/model/get_api_keys_response.dart
lib/src/model/get_api_keys_response_all_of.dart
lib/src/model/get_charges_response.dart
lib/src/model/get_charges_response_all_of.dart
lib/src/model/get_companies_response.dart
Expand Down
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For more information, please visit [https://github.com/conekta/openapi/issues](h
To use the package from [pub.dev](https://pub.dev), please include the following in pubspec.yaml
```yaml
dependencies:
conekta: 6.0.0-beta.1
conekta: 6.0.0-beta.2
```
### Github
Expand All @@ -27,7 +27,7 @@ If this Dart package is published to Github, please include the following in pub
dependencies:
conekta:
git:
url: https://github.com/GIT_USER_ID/GIT_REPO_ID.git
url: https://github.com/conekta/conekta-dart.git
#ref: main
```

Expand Down Expand Up @@ -72,6 +72,11 @@ Class | Method | HTTP request | Description
[*AntifraudApi*](doc/AntifraudApi.md) | [**deleteRuleWhitelist**](doc/AntifraudApi.md#deleterulewhitelist) | **DELETE** /antifraud/whitelists/{id} | Delete whitelisted rule
[*AntifraudApi*](doc/AntifraudApi.md) | [**getRuleBlacklist**](doc/AntifraudApi.md#getruleblacklist) | **GET** /antifraud/blacklists | Get list of blacklisted rules
[*AntifraudApi*](doc/AntifraudApi.md) | [**getRuleWhitelist**](doc/AntifraudApi.md#getrulewhitelist) | **GET** /antifraud/whitelists | Get a list of whitelisted rules
[*ApiKeysApi*](doc/ApiKeysApi.md) | [**createApiKey**](doc/ApiKeysApi.md#createapikey) | **POST** /api_keys | Create Api Key
[*ApiKeysApi*](doc/ApiKeysApi.md) | [**deleteApiKey**](doc/ApiKeysApi.md#deleteapikey) | **DELETE** /api_keys/{id} | Delete Api Key
[*ApiKeysApi*](doc/ApiKeysApi.md) | [**getApiKey**](doc/ApiKeysApi.md#getapikey) | **GET** /api_keys/{id} | Get Api Key
[*ApiKeysApi*](doc/ApiKeysApi.md) | [**getApiKeys**](doc/ApiKeysApi.md#getapikeys) | **GET** /api_keys | Get list of Api Keys
[*ApiKeysApi*](doc/ApiKeysApi.md) | [**updateApiKey**](doc/ApiKeysApi.md#updateapikey) | **PUT** /api_keys/{id} | Update Api Key
[*BalancesApi*](doc/BalancesApi.md) | [**getBalance**](doc/BalancesApi.md#getbalance) | **GET** /balances | Get a company's balance
[*ChargesApi*](doc/ChargesApi.md) | [**getCharges**](doc/ChargesApi.md#getcharges) | **GET** /charges | Get A List of Charges
[*ChargesApi*](doc/ChargesApi.md) | [**ordersCreateCharge**](doc/ChargesApi.md#orderscreatecharge) | **POST** /orders/{id}/charges | Create charge
Expand All @@ -91,6 +96,7 @@ Class | Method | HTTP request | Description
[*DiscountsApi*](doc/DiscountsApi.md) | [**ordersUpdateDiscountLines**](doc/DiscountsApi.md#ordersupdatediscountlines) | **PUT** /orders/{id}/discount_lines/{discount_lines_id} | Update Discount
[*EventsApi*](doc/EventsApi.md) | [**getEvent**](doc/EventsApi.md#getevent) | **GET** /events/{id} | Get Event
[*EventsApi*](doc/EventsApi.md) | [**getEvents**](doc/EventsApi.md#getevents) | **GET** /events | Get list of Events
[*EventsApi*](doc/EventsApi.md) | [**resendEvent**](doc/EventsApi.md#resendevent) | **POST** /events/{event_id}/webhook_logs/{webhook_log_id}/resend | Resend Event
[*LogsApi*](doc/LogsApi.md) | [**getLogById**](doc/LogsApi.md#getlogbyid) | **GET** /logs/{id} | Get Log
[*LogsApi*](doc/LogsApi.md) | [**getLogs**](doc/LogsApi.md#getlogs) | **GET** /logs | Get List Of Logs
[*OrdersApi*](doc/OrdersApi.md) | [**cancelOrder**](doc/OrdersApi.md#cancelorder) | **POST** /orders/{id}/cancel | Cancel Order
Expand Down Expand Up @@ -149,11 +155,17 @@ Class | Method | HTTP request | Description
[*WebhooksApi*](doc/WebhooksApi.md) | [**deleteWebhook**](doc/WebhooksApi.md#deletewebhook) | **DELETE** /webhooks/{id} | Delete Webhook
[*WebhooksApi*](doc/WebhooksApi.md) | [**getWebhook**](doc/WebhooksApi.md#getwebhook) | **GET** /webhooks/{id} | Get Webhook
[*WebhooksApi*](doc/WebhooksApi.md) | [**getWebhooks**](doc/WebhooksApi.md#getwebhooks) | **GET** /webhooks | Get List of Webhooks
[*WebhooksApi*](doc/WebhooksApi.md) | [**testWebhook**](doc/WebhooksApi.md#testwebhook) | **POST** /webhooks/{id}/test | Test Webhook
[*WebhooksApi*](doc/WebhooksApi.md) | [**updateWebhook**](doc/WebhooksApi.md#updatewebhook) | **PUT** /webhooks/{id} | Update Webhook


## Documentation For Models

- [ApiKeyCreateResponse](doc/ApiKeyCreateResponse.md)
- [ApiKeyCreateResponseAllOf](doc/ApiKeyCreateResponseAllOf.md)
- [ApiKeyRequest](doc/ApiKeyRequest.md)
- [ApiKeyResponse](doc/ApiKeyResponse.md)
- [ApiKeyUpdateRequest](doc/ApiKeyUpdateRequest.md)
- [BalanceCommonField](doc/BalanceCommonField.md)
- [BalanceResponse](doc/BalanceResponse.md)
- [BlacklistRuleResponse](doc/BlacklistRuleResponse.md)
Expand Down Expand Up @@ -218,6 +230,8 @@ Class | Method | HTTP request | Description
- [CustomerUpdateShippingContacts](doc/CustomerUpdateShippingContacts.md)
- [CustomersResponse](doc/CustomersResponse.md)
- [CustomersResponseAllOf](doc/CustomersResponseAllOf.md)
- [DeleteApiKeysResponse](doc/DeleteApiKeysResponse.md)
- [DeleteApiKeysResponseAllOf](doc/DeleteApiKeysResponseAllOf.md)
- [DeletedBlacklistRuleResponse](doc/DeletedBlacklistRuleResponse.md)
- [DeletedWhitelistRuleResponse](doc/DeletedWhitelistRuleResponse.md)
- [Details](doc/Details.md)
Expand All @@ -229,6 +243,9 @@ Class | Method | HTTP request | Description
- [Error](doc/Error.md)
- [ErrorAllOf](doc/ErrorAllOf.md)
- [EventResponse](doc/EventResponse.md)
- [EventsResendResponse](doc/EventsResendResponse.md)
- [GetApiKeysResponse](doc/GetApiKeysResponse.md)
- [GetApiKeysResponseAllOf](doc/GetApiKeysResponseAllOf.md)
- [GetChargesResponse](doc/GetChargesResponse.md)
- [GetChargesResponseAllOf](doc/GetChargesResponseAllOf.md)
- [GetCompaniesResponse](doc/GetCompaniesResponse.md)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.0-beta.1
6.0.0-beta.2
23 changes: 23 additions & 0 deletions doc/ApiKeyCreateResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# conekta.model.ApiKeyCreateResponse

## Load the model package
```dart
import 'package:conekta/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**authenticationToken** | **String** | It is occupied as a user when authenticated with basic authentication, with a blank password. This value will only appear once, in the request to create a new key | [optional]
**active** | **bool** | Indicates if the api key is active | [optional]
**createdAt** | **int** | Unix timestamp in seconds with the creation date of the api key | [optional]
**description** | **String** | Detail of the use that will be given to the api key | [optional]
**id** | **String** | Unique identifier of the api key | [optional]
**livemode** | **bool** | Indicates if the api key is in live mode | [optional]
**object** | **String** | Object name, value is api_key | [optional]
**prefix** | **String** | The first few characters of the authentication_token | [optional]
**role** | **String** | Indicates the user account private=owner or public=public | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


15 changes: 15 additions & 0 deletions doc/ApiKeyCreateResponseAllOf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# conekta.model.ApiKeyCreateResponseAllOf

## Load the model package
```dart
import 'package:conekta/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**authenticationToken** | **String** | It is occupied as a user when authenticated with basic authentication, with a blank password. This value will only appear once, in the request to create a new key | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


17 changes: 17 additions & 0 deletions doc/ApiKeyRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# conekta.model.ApiKeyRequest

## Load the model package
```dart
import 'package:conekta/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**active** | **bool** | Indicates if the api key is active |
**description** | **String** | Detail of the use that will be given to the api key |
**role** | **String** | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


22 changes: 22 additions & 0 deletions doc/ApiKeyResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# conekta.model.ApiKeyResponse

## Load the model package
```dart
import 'package:conekta/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**active** | **bool** | Indicates if the api key is active | [optional]
**createdAt** | **int** | Unix timestamp in seconds with the creation date of the api key | [optional]
**description** | **String** | Detail of the use that will be given to the api key | [optional]
**id** | **String** | Unique identifier of the api key | [optional]
**livemode** | **bool** | Indicates if the api key is in live mode | [optional]
**object** | **String** | Object name, value is api_key | [optional]
**prefix** | **String** | The first few characters of the authentication_token | [optional]
**role** | **String** | Indicates the user account private=owner or public=public | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


16 changes: 16 additions & 0 deletions doc/ApiKeyUpdateRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# conekta.model.ApiKeyUpdateRequest

## Load the model package
```dart
import 'package:conekta/api.dart';
```

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**active** | **bool** | Indicates if the webhook key is active | [optional]
**description** | **String** | Detail of the use that will be given to the api key | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading

0 comments on commit 18d41c2

Please sign in to comment.