Skip to content

Commit

Permalink
Bump OpenAPI spec and update libs (#1579)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-jplatte authored Dec 19, 2024
2 parents fead593 + 210765a commit a397429
Show file tree
Hide file tree
Showing 36 changed files with 657 additions and 448 deletions.
4 changes: 2 additions & 2 deletions csharp/Svix/Endpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ public bool ReplayMissing(string appId, string endpointId, ReplayIn replayIn,
{
try
{
var response = _endpointApi.V1EndpointReplayWithHttpInfo(
var response = _endpointApi.V1EndpointReplayMissingWithHttpInfo(
appId,
endpointId,
replayIn,
Expand All @@ -696,7 +696,7 @@ public async Task<bool> ReplayMissingAsync(string appId, string endpointId, Repl
{
try
{
var response = await _endpointApi.V1EndpointReplayWithHttpInfoAsync(
var response = await _endpointApi.V1EndpointReplayMissingWithHttpInfoAsync(
appId,
endpointId,
replayIn,
Expand Down
2 changes: 1 addition & 1 deletion go/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func (e *Endpoint) ReplayMissingWithOptions(
replayIn *ReplayIn,
options *PostOptions,
) (*ReplayOut, error) {
req := e.api.EndpointAPI.V1EndpointReplay(ctx, appId, endpointId)
req := e.api.EndpointAPI.V1EndpointReplayMissing(ctx, appId, endpointId)
req.ReplayIn(*replayIn)
if options != nil {
if options.IdempotencyKey != nil {
Expand Down
14 changes: 7 additions & 7 deletions go/internal/openapi/api_application.go

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

4 changes: 2 additions & 2 deletions go/internal/openapi/api_authentication.go

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

4 changes: 2 additions & 2 deletions go/internal/openapi/api_background_tasks.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_broadcast.go

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

50 changes: 25 additions & 25 deletions go/internal/openapi/api_endpoint.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_environment.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_environment_settings.go

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

12 changes: 6 additions & 6 deletions go/internal/openapi/api_event_type.go

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

Loading

0 comments on commit a397429

Please sign in to comment.