Skip to content

Commit

Permalink
Update spec to support channels API (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-frank authored Jan 12, 2022
2 parents 2175331 + bb6135b commit b47ba0a
Show file tree
Hide file tree
Showing 94 changed files with 1,381 additions and 221 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.41.2
0.42.0
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 0.42.0
* All: Support new Channels API 📺

## Version 0.41.2
* Javascript: Enable keepalives for improved performance 🚀

Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<PackageId>Svix</PackageId>
<Version>0.41.2</Version>
<Version>0.42.0</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion go/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (e *Endpoint) RotateSecret(appId string, endpointId string, endpointSecretR
}

func (e *Endpoint) Recover(appId string, endpointId string, recoverIn *RecoverIn) error {
req := e.api.EndpointApi.ResendFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPost(context.Background(), appId, endpointId)
req := e.api.EndpointApi.RecoverFailedWebhooksApiV1AppAppIdEndpointEndpointIdRecoverPost(context.Background(), appId, endpointId)
req = req.RecoverIn(openapi.RecoverIn(*recoverIn))
_, res, err := req.Execute()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion go/internal/openapi/api_application.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go/internal/openapi/api_authentication.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions go/internal/openapi/api_endpoint.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b47ba0a

Please sign in to comment.