Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .speakeasy/logs/changes/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<title>SDK Changelog - go</title>
<title>SDK Changelog - python</title>
<style>
:root {
--bg-color: #ffffff;
Expand Down Expand Up @@ -95,10 +95,10 @@
}
</style>
</head>
<body><h2 id="go-sdk-changes">Go SDK Changes:</h2>
<body><h2 id="python-sdk-changes">Python SDK Changes:</h2>

<ul>
<li><code>Outpost.Destinations.Update()</code>: <code>request.Body</code> <strong>Changed</strong> (Breaking ⚠️)
<li><code>outpost.destinations.update()</code>: <code>request.body</code> <strong>Changed</strong> (Breaking ⚠️)

<ul>
<li><code>union(DestinationUpdateAWSKinesis)</code> <strong>Removed</strong> (Breaking ⚠️)</li>
Expand Down
4 changes: 2 additions & 2 deletions .speakeasy/logs/changes/changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Go SDK Changes:
* `Outpost.Destinations.Update()`: `request.Body` **Changed** (Breaking ⚠️)
## Python SDK Changes:
* `outpost.destinations.update()`: `request.body` **Changed** (Breaking ⚠️)
- `union(DestinationUpdateAWSKinesis)` **Removed** (Breaking ⚠️)
- `union(DestinationUpdateAWSS3)` **Removed** (Breaking ⚠️)
- `union(DestinationUpdateAWSSQS)` **Removed** (Breaking ⚠️)
Expand Down
142 changes: 94 additions & 48 deletions .speakeasy/logs/changes/new.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,13 @@ components:
nullable: true
description: Cursor for the next page of results. Null if no more results.
example: "MTcwNDA2NzIwMA=="
x-speakeasy-name-override: "next_cursor"
prev:
type: string
nullable: true
description: Cursor for the previous page of results. Null if on first page.
example: null
x-speakeasy-name-override: "prev_cursor"
APIErrorResponse:
type: object
description: Standard error response format.
Expand Down Expand Up @@ -3284,9 +3286,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter tenants by ID(s). Use bracket notation for multiple values (e.g., `id[0]=t1&id[1]=t2` or `id[]=t1&id[]=t2`).
- name: limit
in: query
Expand All @@ -3305,18 +3309,21 @@ paths:
enum: [asc, desc]
default: desc
description: Sort direction.
x-speakeasy-name-override: "direction"
- name: next
in: query
required: false
schema:
type: string
description: Cursor for the next page of results. Mutually exclusive with `prev`.
x-speakeasy-name-override: "next_cursor"
- name: prev
in: query
required: false
schema:
type: string
description: Cursor for the previous page of results. Mutually exclusive with `next`.
x-speakeasy-name-override: "prev_cursor"
responses:
"200":
description: List of tenants.
Expand Down Expand Up @@ -3486,17 +3493,21 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter events by ID(s). Use bracket notation for multiple values (e.g., `id[0]=abc&id[1]=def`).
- name: tenant_id
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Filter events by tenant ID(s). Use bracket notation for multiple values (e.g., `tenant_id[0]=t1&tenant_id[1]=t2`).
When authenticated with a Tenant JWT, this parameter is ignored and the JWT's tenant is used.
Expand All @@ -3515,9 +3526,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter events by topic(s). Use bracket notation for multiple values (e.g., `topic[0]=user.created&topic[1]=user.updated`).
- name: time
in: query
Expand All @@ -3542,12 +3555,14 @@ paths:
schema:
type: string
description: Cursor for next page of results.
x-speakeasy-name-override: "next_cursor"
- name: prev
in: query
required: false
schema:
type: string
description: Cursor for previous page of results.
x-speakeasy-name-override: "prev_cursor"
- name: order_by
in: query
required: false
Expand All @@ -3564,6 +3579,7 @@ paths:
enum: [asc, desc]
default: desc
description: Sort direction.
x-speakeasy-name-override: "direction"
responses:
"200":
description: A paginated list of events.
Expand Down Expand Up @@ -3665,9 +3681,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Filter attempts by tenant ID(s). Use bracket notation for multiple values (e.g., `tenant_id[0]=t1&tenant_id[1]=t2`).
When authenticated with a Tenant JWT, this parameter is ignored and the JWT's tenant is used.
Expand All @@ -3676,17 +3694,21 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter attempts by event ID(s). Use bracket notation for multiple values (e.g., `event_id[0]=e1&event_id[1]=e2`).
- name: destination_id
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter attempts by destination ID(s). Use bracket notation for multiple values (e.g., `destination_id[0]=d1&destination_id[1]=d2`).
- name: destination_type
in: query
Expand All @@ -3709,9 +3731,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter attempts by event topic(s). Use bracket notation for multiple values (e.g., `topic[0]=user.created&topic[1]=user.updated`).
- name: time
in: query
Expand All @@ -3736,19 +3760,23 @@ paths:
schema:
type: string
description: Cursor for next page of results.
x-speakeasy-name-override: "next_cursor"
- name: prev
in: query
required: false
schema:
type: string
description: Cursor for previous page of results.
x-speakeasy-name-override: "prev_cursor"
- name: include
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`).
- `event`: Include event summary (id, topic, time, eligible_for_retry, metadata)
Expand All @@ -3771,6 +3799,7 @@ paths:
enum: [asc, desc]
default: desc
description: Sort direction.
x-speakeasy-name-override: "direction"
responses:
"200":
description: A paginated list of attempts.
Expand Down Expand Up @@ -3860,9 +3889,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`).
- `event`: Include event summary (id, topic, time, eligible_for_retry, metadata)
Expand Down Expand Up @@ -4012,17 +4043,21 @@ paths:
in: query
required: false
schema:
type: array
items:
$ref: "#/components/schemas/DestinationType"
oneOf:
- $ref: "#/components/schemas/DestinationType"
- type: array
items:
$ref: "#/components/schemas/DestinationType"
description: Filter destinations by type(s). Use bracket notation for multiple values (e.g., `type[0]=webhook&type[1]=aws_sqs`).
- name: topics
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter destinations by supported topic(s). Use bracket notation for multiple values (e.g., `topics[0]=user.created&topics[1]=user.deleted`).
responses:
"200":
Expand Down Expand Up @@ -4372,9 +4407,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter attempts by event ID(s). Use bracket notation for multiple values (e.g., `event_id[0]=e1&event_id[1]=e2`).
- name: status
in: query
Expand All @@ -4387,9 +4424,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: Filter attempts by event topic(s). Use bracket notation for multiple values (e.g., `topic[0]=user.created&topic[1]=user.updated`).
- name: time
in: query
Expand All @@ -4414,19 +4453,23 @@ paths:
schema:
type: string
description: Cursor for next page of results.
x-speakeasy-name-override: "next_cursor"
- name: prev
in: query
required: false
schema:
type: string
description: Cursor for previous page of results.
x-speakeasy-name-override: "prev_cursor"
- name: include
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`).
- `event`: Include event summary (id, topic, time, eligible_for_retry, metadata)
Expand All @@ -4449,6 +4492,7 @@ paths:
enum: [asc, desc]
default: desc
description: Sort direction.
x-speakeasy-name-override: "direction"
responses:
"200":
description: A paginated list of attempts for the destination.
Expand Down Expand Up @@ -4517,9 +4561,11 @@ paths:
in: query
required: false
schema:
type: array
items:
type: string
oneOf:
- type: string
- type: array
items:
type: string
description: |
Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`).
- `event`: Include event summary
Expand Down
Loading