Skip to content

Commit

Permalink
Update entities (#84)
Browse files Browse the repository at this point in the history
* Update package version and release notes

* Empty-Commit
  • Loading branch information
fcarrero authored Mar 26, 2024
1 parent 92d7187 commit c605cb7
Show file tree
Hide file tree
Showing 10 changed files with 67 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fi
- name: Build project
run: |
dotnet build src/Conekta.net/Conekta.net.csproj
dotnet build src/Conekta.net/Conekta.net.csproj /p:ContinuousIntegrationBuild=true
VERSION=$(grep -oP '<Version>\K[\d.]+(?=</Version>)' src/Conekta.net/Conekta.net.csproj)
RELEASE_VERSION="v$VERSION"
RELEASE_NAME=${{ github.event.release.name }}
Expand Down
10 changes: 5 additions & 5 deletions Conekta.net.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conekta.net", "src\Conekta.net\Conekta.net.csproj", "{81E33AE8-15AD-4D75-B13A-D35521C41C6F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conekta.net", "src\Conekta.net\Conekta.net.csproj", "{9AD6031F-BA27-4EE7-995D-669E9497AE86}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Conekta.net.Test", "src\Conekta.net.Test\Conekta.net.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
Expand All @@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{81E33AE8-15AD-4D75-B13A-D35521C41C6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{81E33AE8-15AD-4D75-B13A-D35521C41C6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81E33AE8-15AD-4D75-B13A-D35521C41C6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81E33AE8-15AD-4D75-B13A-D35521C41C6F}.Release|Any CPU.Build.0 = Release|Any CPU
{9AD6031F-BA27-4EE7-995D-669E9497AE86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9AD6031F-BA27-4EE7-995D-669E9497AE86}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9AD6031F-BA27-4EE7-995D-669E9497AE86}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9AD6031F-BA27-4EE7-995D-669E9497AE86}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.8
6.0.9
17 changes: 17 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11357,6 +11357,14 @@ paths:
schema:
type: string
style: form
- description: url for webhook filter
explode: true
in: query
name: url
required: false
schema:
type: string
style: form
- description: next page
explode: true
in: query
Expand Down Expand Up @@ -12522,6 +12530,15 @@ components:
example: MXN
type: string
style: form
url:
description: url for webhook filter
explode: true
in: query
name: url
required: false
schema:
type: string
style: form
requestBodies:
api_keys_create:
content:
Expand Down
4 changes: 2 additions & 2 deletions config-netcore.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"useOneOfDiscriminatorLookup" : true,
"packageCopyright" : "Conekta",
"PackageReleaseNotes" : "add support for payout orders",
"releaseNote" : "support for resend event, api keys and webhook keys",
"packageVersion" : "6.0.8"
"releaseNote" : "update entity webhook, nuget config",
"packageVersion" : "6.0.9"
}
8 changes: 5 additions & 3 deletions docs/WebhooksApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ catch (ApiException e)

<a id="getwebhooks"></a>
# **GetWebhooks**
> GetWebhooksResponse GetWebhooks (string acceptLanguage = null, string xChildCompanyId = null, int? limit = null, string search = null, string next = null, string previous = null)
> GetWebhooksResponse GetWebhooks (string acceptLanguage = null, string xChildCompanyId = null, int? limit = null, string search = null, string url = null, string next = null, string previous = null)
Get List of Webhooks

Expand Down Expand Up @@ -337,13 +337,14 @@ namespace Example
var xChildCompanyId = 6441b6376b60c3a638da80af; // string | In the case of a holding company, the company id of the child company to which will process the request. (optional)
var limit = 20; // int? | The numbers of items to return, the maximum value is 250 (optional) (default to 20)
var search = "search_example"; // string | General order search, e.g. by mail, reference etc. (optional)
var url = "url_example"; // string | url for webhook filter (optional)
var next = "next_example"; // string | next page (optional)
var previous = "previous_example"; // string | previous page (optional)
try
{
// Get List of Webhooks
GetWebhooksResponse result = apiInstance.GetWebhooks(acceptLanguage, xChildCompanyId, limit, search, next, previous);
GetWebhooksResponse result = apiInstance.GetWebhooks(acceptLanguage, xChildCompanyId, limit, search, url, next, previous);
Debug.WriteLine(result);
}
catch (ApiException e)
Expand All @@ -364,7 +365,7 @@ This returns an ApiResponse object which contains the response data, status code
try
{
// Get List of Webhooks
ApiResponse<GetWebhooksResponse> response = apiInstance.GetWebhooksWithHttpInfo(acceptLanguage, xChildCompanyId, limit, search, next, previous);
ApiResponse<GetWebhooksResponse> response = apiInstance.GetWebhooksWithHttpInfo(acceptLanguage, xChildCompanyId, limit, search, url, next, previous);
Debug.Write("Status Code: " + response.StatusCode);
Debug.Write("Response Headers: " + response.Headers);
Debug.Write("Response Body: " + response.Data);
Expand All @@ -385,6 +386,7 @@ catch (ApiException e)
| **xChildCompanyId** | **string** | In the case of a holding company, the company id of the child company to which will process the request. | [optional] |
| **limit** | **int?** | The numbers of items to return, the maximum value is 250 | [optional] [default to 20] |
| **search** | **string** | General order search, e.g. by mail, reference etc. | [optional] |
| **url** | **string** | url for webhook filter | [optional] |
| **next** | **string** | next page | [optional] |
| **previous** | **string** | previous page | [optional] |

Expand Down
Loading

0 comments on commit c605cb7

Please sign in to comment.