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
18 changes: 9 additions & 9 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 - python</title>
<title>SDK Changelog - typescript</title>
<style>
:root {
--bg-color: #ffffff;
Expand Down Expand Up @@ -95,35 +95,35 @@
}
</style>
</head>
<body><h2 id="python-sdk-changes">Python SDK Changes:</h2>
<body><h2 id="typescript-sdk-changes">Typescript SDK Changes:</h2>

<ul>
<li><code>outpost.events.list()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)

<ul>
<li><code>id</code> <strong>Added</strong></li>
<li><code>tenant_id</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>tenantId</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>time[gt]</code> <strong>Added</strong></li>
<li><code>time[lt]</code> <strong>Added</strong></li>
</ul></li>
<li><code>outpost.attempts.list()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)

<ul>
<li><code>destination_id</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>event_id</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>tenant_id</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>destinationId</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>eventId</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>tenantId</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>time[gt]</code> <strong>Added</strong></li>
<li><code>time[lt]</code> <strong>Added</strong></li>
</ul></li>
<li><code>outpost.destinations.list_attempts()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)
<li><code>outpost.destinations.listAttempts()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)

<ul>
<li><code>event_id</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>eventId</code> <strong>Changed</strong> (Breaking ⚠️)</li>
<li><code>time[gt]</code> <strong>Added</strong></li>
<li><code>time[lt]</code> <strong>Added</strong></li>
</ul></li>
<li><code>outpost.tenants.list()</code>: <strong>Added</strong></li>
<li><code>outpost.tenants.list_tenants()</code>: <strong>Removed</strong> (Breaking ⚠️)</li>
<li><code>outpost.tenants.listTenants()</code>: <strong>Removed</strong> (Breaking ⚠️)</li>
</ul>
</body>
</html>
16 changes: 8 additions & 8 deletions .speakeasy/logs/changes/changes.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
## Python SDK Changes:
## Typescript SDK Changes:
* `outpost.events.list()`: `request` **Changed** (Breaking ⚠️)
- `id` **Added**
- `tenant_id` **Changed** (Breaking ⚠️)
- `tenantId` **Changed** (Breaking ⚠️)
- `time[gt]` **Added**
- `time[lt]` **Added**
* `outpost.attempts.list()`: `request` **Changed** (Breaking ⚠️)
- `destination_id` **Changed** (Breaking ⚠️)
- `event_id` **Changed** (Breaking ⚠️)
- `tenant_id` **Changed** (Breaking ⚠️)
- `destinationId` **Changed** (Breaking ⚠️)
- `eventId` **Changed** (Breaking ⚠️)
- `tenantId` **Changed** (Breaking ⚠️)
- `time[gt]` **Added**
- `time[lt]` **Added**
* `outpost.destinations.list_attempts()`: `request` **Changed** (Breaking ⚠️)
- `event_id` **Changed** (Breaking ⚠️)
* `outpost.destinations.listAttempts()`: `request` **Changed** (Breaking ⚠️)
- `eventId` **Changed** (Breaking ⚠️)
- `time[gt]` **Added**
- `time[lt]` **Added**
* `outpost.tenants.list()`: **Added**
* `outpost.tenants.list_tenants()`: **Removed** (Breaking ⚠️)
* `outpost.tenants.listTenants()`: **Removed** (Breaking ⚠️)
14 changes: 0 additions & 14 deletions .speakeasy/logs/changes/new.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,11 @@ 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 @@ -2234,21 +2232,18 @@ 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 @@ -2475,14 +2470,12 @@ 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 @@ -2499,7 +2492,6 @@ 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 @@ -2692,14 +2684,12 @@ 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
Expand Down Expand Up @@ -2730,7 +2720,6 @@ 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 @@ -3393,14 +3382,12 @@ 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
Expand Down Expand Up @@ -3431,7 +3418,6 @@ 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
60 changes: 0 additions & 60 deletions .speakeasy/logs/changes/old.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,11 @@ 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 @@ -2193,7 +2191,6 @@ paths:
schema:
type: string
description: Cursor for the next page of results. Mutually exclusive with `prev`.
x-speakeasy-name-override: "direction"
- name: prev
in: query
required: false
Expand Down Expand Up @@ -2243,18 +2240,6 @@ paths:
example: "list tenant not supported"
security:
- BearerAuth: []
x-speakeasy-pagination:
type: cursor
inputs:
- name: next
in: parameters
type: cursor
- name: limit
in: parameters
type: limit
outputs:
nextCursor: $.pagination.next
results: $.models
/tenants/{tenant_id}:
parameters:
- name: tenant_id
Expand Down Expand Up @@ -2393,14 +2378,12 @@ 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 @@ -2417,7 +2400,6 @@ 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 @@ -2454,18 +2436,6 @@ paths:
x-speakeasy-name-override: list
security:
- BearerAuth: []
x-speakeasy-pagination:
type: cursor
inputs:
- name: next
in: parameters
type: cursor
- name: limit
in: parameters
type: limit
outputs:
nextCursor: $.pagination.next
results: $.models
/events/{event_id}:
parameters:
- name: event_id
Expand Down Expand Up @@ -2581,14 +2551,12 @@ 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
Expand Down Expand Up @@ -2619,7 +2587,6 @@ 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 @@ -2681,18 +2648,6 @@ paths:
x-speakeasy-name-override: list
security:
- BearerAuth: []
x-speakeasy-pagination:
type: cursor
inputs:
- name: next
in: parameters
type: cursor
- name: limit
in: parameters
type: limit
outputs:
nextCursor: $.pagination.next
results: $.models
/attempts/{attempt_id}:
parameters:
- name: attempt_id
Expand Down Expand Up @@ -3264,14 +3219,12 @@ 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
Expand Down Expand Up @@ -3302,7 +3255,6 @@ 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 @@ -3341,18 +3293,6 @@ paths:
"500":
$ref: "#/components/responses/InternalServerError"
x-speakeasy-name-override: listAttempts
x-speakeasy-pagination:
type: cursor
inputs:
- name: next
in: parameters
type: cursor
- name: limit
in: parameters
type: limit
outputs:
nextCursor: $.pagination.next
results: $.models
/tenants/{tenant_id}/destinations/{destination_id}/attempts/{attempt_id}:
parameters:
- name: tenant_id
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ speakeasyVersion: 1.753.0
sources:
Outpost API:
sourceNamespace: outpost-api
sourceRevisionDigest: sha256:837c1ec11841961c17673ee40729959fce25fb87c9ca09f822e2d88805b5556a
sourceBlobDigest: sha256:0210b5211be69672b9fdb4ed35188fd778a0fc3fad0a7f426d2f0f7d0fb86067
sourceRevisionDigest: sha256:b1e2dba09e5e318190102cf66ef746c9b9237f007a07e7940c34c96745a45cb5
sourceBlobDigest: sha256:c51e0351a80c46eb40615e1f6c0de9bea56829a4a36c2b1c4ed4d1211817e65c
tags:
- latest
- 0.0.1
Expand Down Expand Up @@ -39,10 +39,10 @@ targets:
outpost-ts:
source: Outpost API
sourceNamespace: outpost-api
sourceRevisionDigest: sha256:837c1ec11841961c17673ee40729959fce25fb87c9ca09f822e2d88805b5556a
sourceBlobDigest: sha256:0210b5211be69672b9fdb4ed35188fd778a0fc3fad0a7f426d2f0f7d0fb86067
sourceRevisionDigest: sha256:b1e2dba09e5e318190102cf66ef746c9b9237f007a07e7940c34c96745a45cb5
sourceBlobDigest: sha256:c51e0351a80c46eb40615e1f6c0de9bea56829a4a36c2b1c4ed4d1211817e65c
codeSamplesNamespace: outpost-api-typescript-code-samples
codeSamplesRevisionDigest: sha256:8815a2efc3e22c8d9f31523a06aa4177ae7f3be6416c8fcc7547a21945621fae
codeSamplesRevisionDigest: sha256:b7454f1861c516ebe7dea8dbd7aa3ae1c39f63d274909ea6382e6cada2c3c4cc
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
Loading