Skip to content

Commit 8d4e782

Browse files
chore: 🐝 Update SDK - Generate OUTPOST-TS 0.10.1 (#860)
* `outpost.schemas.listDestinationTypes()`: `response.[]` **Changed** (Breaking ⚠️) * `outpost.schemas.getDestinationType()`: `response` **Changed** (Breaking ⚠️) * `outpost.metrics.getAttemptMetrics()`: `request` **Changed** (Breaking ⚠️) * `outpost.configuration.getManagedConfig()`: **Added** * `outpost.configuration.updateManagedConfig()`: **Added** * `outpost.events.get()`: `request.tenantId` **Added** * `outpost.attempts.list()`: * `request.destinationType` **Added** * `outpost.attempts.get()`: `request.tenantId` **Added** Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent 255272a commit 8d4e782

129 files changed

Lines changed: 2384 additions & 890 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.speakeasy/logs/changes/changes.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="color-scheme" content="light dark">
7-
<title>SDK Changelog - python</title>
7+
<title>SDK Changelog - typescript</title>
88
<style>
99
:root {
1010
--bg-color: #ffffff;
@@ -95,39 +95,39 @@
9595
}
9696
</style>
9797
</head>
98-
<body><h2 id="python-sdk-changes">Python SDK Changes:</h2>
98+
<body><h2 id="typescript-sdk-changes">Typescript SDK Changes:</h2>
9999

100100
<ul>
101-
<li><code>outpost.schemas.list_destination_types()</code>: <code>response.[]</code> <strong>Changed</strong> (Breaking ⚠️)
101+
<li><code>outpost.schemas.listDestinationTypes()</code>: <code>response.[]</code> <strong>Changed</strong> (Breaking ⚠️)
102102

103103
<ul>
104-
<li><code>remote_setup_url</code> <strong>Removed</strong> (Breaking ⚠️)</li>
105-
<li><code>setup_link</code> <strong>Added</strong></li>
104+
<li><code>remoteSetupUrl</code> <strong>Removed</strong> (Breaking ⚠️)</li>
105+
<li><code>setupLink</code> <strong>Added</strong></li>
106106
</ul></li>
107-
<li><code>outpost.schemas.get_destination_type()</code>: <code>response</code> <strong>Changed</strong> (Breaking ⚠️)
107+
<li><code>outpost.schemas.getDestinationType()</code>: <code>response</code> <strong>Changed</strong> (Breaking ⚠️)
108108

109109
<ul>
110-
<li><code>remote_setup_url</code> <strong>Removed</strong> (Breaking ⚠️)</li>
111-
<li><code>setup_link</code> <strong>Added</strong></li>
110+
<li><code>remoteSetupUrl</code> <strong>Removed</strong> (Breaking ⚠️)</li>
111+
<li><code>setupLink</code> <strong>Added</strong></li>
112112
</ul></li>
113-
<li><code>outpost.metrics.get_attempt_metrics()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)
113+
<li><code>outpost.metrics.getAttemptMetrics()</code>: <code>request</code> <strong>Changed</strong> (Breaking ⚠️)
114114

115115
<ul>
116116
<li><code>dimensions.union(&quot;tenant_id&quot;,&quot;destination_id&quot; and 5 more)</code> <strong>Removed</strong> (Breaking ⚠️)</li>
117117
<li><code>dimensions.union(&quot;tenant_id&quot;,&quot;destination_id&quot; and 6 more)</code> <strong>Added</strong></li>
118118
<li><code>dimensions.union(Array&lt;&quot;tenant_id&quot;,&quot;destination_id&quot; and 5 more&gt;)</code> <strong>Removed</strong> (Breaking ⚠️)</li>
119119
<li><code>dimensions.union(Array&lt;&quot;tenant_id&quot;,&quot;destination_id&quot; and 6 more&gt;)</code> <strong>Added</strong></li>
120-
<li><code>filters[destination_type]</code> <strong>Added</strong></li>
120+
<li><code>filters[destinationType]</code> <strong>Added</strong></li>
121121
</ul></li>
122-
<li><code>outpost.configuration.get_managed_config()</code>: <strong>Added</strong></li>
123-
<li><code>outpost.configuration.update_managed_config()</code>: <strong>Added</strong></li>
124-
<li><code>outpost.events.get()</code>: <code>request.tenant_id</code> <strong>Added</strong></li>
122+
<li><code>outpost.configuration.getManagedConfig()</code>: <strong>Added</strong></li>
123+
<li><code>outpost.configuration.updateManagedConfig()</code>: <strong>Added</strong></li>
124+
<li><code>outpost.events.get()</code>: <code>request.tenantId</code> <strong>Added</strong></li>
125125
<li><code>outpost.attempts.list()</code>:
126126

127127
<ul>
128-
<li><code>request.destination_type</code> <strong>Added</strong></li>
128+
<li><code>request.destinationType</code> <strong>Added</strong></li>
129129
</ul></li>
130-
<li><code>outpost.attempts.get()</code>: <code>request.tenant_id</code> <strong>Added</strong></li>
130+
<li><code>outpost.attempts.get()</code>: <code>request.tenantId</code> <strong>Added</strong></li>
131131
</ul>
132132
</body>
133133
</html>

.speakeasy/logs/changes/changes.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
## Python SDK Changes:
2-
* `outpost.schemas.list_destination_types()`: `response.[]` **Changed** (Breaking ⚠️)
3-
- `remote_setup_url` **Removed** (Breaking ⚠️)
4-
- `setup_link` **Added**
5-
* `outpost.schemas.get_destination_type()`: `response` **Changed** (Breaking ⚠️)
6-
- `remote_setup_url` **Removed** (Breaking ⚠️)
7-
- `setup_link` **Added**
8-
* `outpost.metrics.get_attempt_metrics()`: `request` **Changed** (Breaking ⚠️)
1+
## Typescript SDK Changes:
2+
* `outpost.schemas.listDestinationTypes()`: `response.[]` **Changed** (Breaking ⚠️)
3+
- `remoteSetupUrl` **Removed** (Breaking ⚠️)
4+
- `setupLink` **Added**
5+
* `outpost.schemas.getDestinationType()`: `response` **Changed** (Breaking ⚠️)
6+
- `remoteSetupUrl` **Removed** (Breaking ⚠️)
7+
- `setupLink` **Added**
8+
* `outpost.metrics.getAttemptMetrics()`: `request` **Changed** (Breaking ⚠️)
99
- `dimensions.union("tenant_id","destination_id" and 5 more)` **Removed** (Breaking ⚠️)
1010
- `dimensions.union("tenant_id","destination_id" and 6 more)` **Added**
1111
- `dimensions.union(Array<"tenant_id","destination_id" and 5 more>)` **Removed** (Breaking ⚠️)
1212
- `dimensions.union(Array<"tenant_id","destination_id" and 6 more>)` **Added**
13-
- `filters[destination_type]` **Added**
14-
* `outpost.configuration.get_managed_config()`: **Added**
15-
* `outpost.configuration.update_managed_config()`: **Added**
16-
* `outpost.events.get()`: `request.tenant_id` **Added**
13+
- `filters[destinationType]` **Added**
14+
* `outpost.configuration.getManagedConfig()`: **Added**
15+
* `outpost.configuration.updateManagedConfig()`: **Added**
16+
* `outpost.events.get()`: `request.tenantId` **Added**
1717
* `outpost.attempts.list()`:
18-
* `request.destination_type` **Added**
19-
* `outpost.attempts.get()`: `request.tenant_id` **Added**
18+
* `request.destinationType` **Added**
19+
* `outpost.attempts.get()`: `request.tenantId` **Added**

.speakeasy/logs/changes/new.openapi.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,11 @@ components:
204204
nullable: true
205205
description: Cursor for the next page of results. Null if no more results.
206206
example: "MTcwNDA2NzIwMA=="
207-
x-speakeasy-name-override: "next_cursor"
208207
prev:
209208
type: string
210209
nullable: true
211210
description: Cursor for the previous page of results. Null if on first page.
212211
example: null
213-
x-speakeasy-name-override: "prev_cursor"
214212
APIErrorResponse:
215213
type: object
216214
description: Standard error response format.
@@ -2576,21 +2574,18 @@ paths:
25762574
enum: [asc, desc]
25772575
default: desc
25782576
description: Sort direction.
2579-
x-speakeasy-name-override: "direction"
25802577
- name: next
25812578
in: query
25822579
required: false
25832580
schema:
25842581
type: string
25852582
description: Cursor for the next page of results. Mutually exclusive with `prev`.
2586-
x-speakeasy-name-override: "next_cursor"
25872583
- name: prev
25882584
in: query
25892585
required: false
25902586
schema:
25912587
type: string
25922588
description: Cursor for the previous page of results. Mutually exclusive with `next`.
2593-
x-speakeasy-name-override: "prev_cursor"
25942589
responses:
25952590
"200":
25962591
description: List of tenants.
@@ -2827,14 +2822,12 @@ paths:
28272822
schema:
28282823
type: string
28292824
description: Cursor for next page of results.
2830-
x-speakeasy-name-override: "next_cursor"
28312825
- name: prev
28322826
in: query
28332827
required: false
28342828
schema:
28352829
type: string
28362830
description: Cursor for previous page of results.
2837-
x-speakeasy-name-override: "prev_cursor"
28382831
- name: order_by
28392832
in: query
28402833
required: false
@@ -2851,7 +2844,6 @@ paths:
28512844
enum: [asc, desc]
28522845
default: desc
28532846
description: Sort direction.
2854-
x-speakeasy-name-override: "direction"
28552847
responses:
28562848
"200":
28572849
description: A paginated list of events.
@@ -3064,14 +3056,12 @@ paths:
30643056
schema:
30653057
type: string
30663058
description: Cursor for next page of results.
3067-
x-speakeasy-name-override: "next_cursor"
30683059
- name: prev
30693060
in: query
30703061
required: false
30713062
schema:
30723063
type: string
30733064
description: Cursor for previous page of results.
3074-
x-speakeasy-name-override: "prev_cursor"
30753065
- name: include
30763066
in: query
30773067
required: false
@@ -3103,7 +3093,6 @@ paths:
31033093
enum: [asc, desc]
31043094
default: desc
31053095
description: Sort direction.
3106-
x-speakeasy-name-override: "direction"
31073096
responses:
31083097
"200":
31093098
description: A paginated list of attempts.
@@ -3773,14 +3762,12 @@ paths:
37733762
schema:
37743763
type: string
37753764
description: Cursor for next page of results.
3776-
x-speakeasy-name-override: "next_cursor"
37773765
- name: prev
37783766
in: query
37793767
required: false
37803768
schema:
37813769
type: string
37823770
description: Cursor for previous page of results.
3783-
x-speakeasy-name-override: "prev_cursor"
37843771
- name: include
37853772
in: query
37863773
required: false
@@ -3812,7 +3799,6 @@ paths:
38123799
enum: [asc, desc]
38133800
default: desc
38143801
description: Sort direction.
3815-
x-speakeasy-name-override: "direction"
38163802
responses:
38173803
"200":
38183804
description: A paginated list of attempts for the destination.

.speakeasy/logs/changes/old.openapi.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,11 @@ components:
204204
nullable: true
205205
description: Cursor for the next page of results. Null if no more results.
206206
example: "MTcwNDA2NzIwMA=="
207-
x-speakeasy-name-override: "next_cursor"
208207
prev:
209208
type: string
210209
nullable: true
211210
description: Cursor for the previous page of results. Null if on first page.
212211
example: null
213-
x-speakeasy-name-override: "prev_cursor"
214212
APIErrorResponse:
215213
type: object
216214
description: Standard error response format.
@@ -2287,21 +2285,18 @@ paths:
22872285
enum: [asc, desc]
22882286
default: desc
22892287
description: Sort direction.
2290-
x-speakeasy-name-override: "direction"
22912288
- name: next
22922289
in: query
22932290
required: false
22942291
schema:
22952292
type: string
22962293
description: Cursor for the next page of results. Mutually exclusive with `prev`.
2297-
x-speakeasy-name-override: "next_cursor"
22982294
- name: prev
22992295
in: query
23002296
required: false
23012297
schema:
23022298
type: string
23032299
description: Cursor for the previous page of results. Mutually exclusive with `next`.
2304-
x-speakeasy-name-override: "prev_cursor"
23052300
responses:
23062301
"200":
23072302
description: List of tenants.
@@ -2538,14 +2533,12 @@ paths:
25382533
schema:
25392534
type: string
25402535
description: Cursor for next page of results.
2541-
x-speakeasy-name-override: "next_cursor"
25422536
- name: prev
25432537
in: query
25442538
required: false
25452539
schema:
25462540
type: string
25472541
description: Cursor for previous page of results.
2548-
x-speakeasy-name-override: "prev_cursor"
25492542
- name: order_by
25502543
in: query
25512544
required: false
@@ -2562,7 +2555,6 @@ paths:
25622555
enum: [asc, desc]
25632556
default: desc
25642557
description: Sort direction.
2565-
x-speakeasy-name-override: "direction"
25662558
responses:
25672559
"200":
25682560
description: A paginated list of events.
@@ -2758,14 +2750,12 @@ paths:
27582750
schema:
27592751
type: string
27602752
description: Cursor for next page of results.
2761-
x-speakeasy-name-override: "next_cursor"
27622753
- name: prev
27632754
in: query
27642755
required: false
27652756
schema:
27662757
type: string
27672758
description: Cursor for previous page of results.
2768-
x-speakeasy-name-override: "prev_cursor"
27692759
- name: include
27702760
in: query
27712761
required: false
@@ -2797,7 +2787,6 @@ paths:
27972787
enum: [asc, desc]
27982788
default: desc
27992789
description: Sort direction.
2800-
x-speakeasy-name-override: "direction"
28012790
responses:
28022791
"200":
28032792
description: A paginated list of attempts.
@@ -3461,14 +3450,12 @@ paths:
34613450
schema:
34623451
type: string
34633452
description: Cursor for next page of results.
3464-
x-speakeasy-name-override: "next_cursor"
34653453
- name: prev
34663454
in: query
34673455
required: false
34683456
schema:
34693457
type: string
34703458
description: Cursor for previous page of results.
3471-
x-speakeasy-name-override: "prev_cursor"
34723459
- name: include
34733460
in: query
34743461
required: false
@@ -3500,7 +3487,6 @@ paths:
35003487
enum: [asc, desc]
35013488
default: desc
35023489
description: Sort direction.
3503-
x-speakeasy-name-override: "direction"
35043490
responses:
35053491
"200":
35063492
description: A paginated list of attempts for the destination.

.speakeasy/workflow.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ speakeasyVersion: 1.761.9
22
sources:
33
Outpost API:
44
sourceNamespace: outpost-api
5-
sourceRevisionDigest: sha256:dd3a2cc684557c275d2de44e77d9baf3d2505384b3096e40719aeb3608bf131b
6-
sourceBlobDigest: sha256:f488aa8c6bc68b706b4a14a763ec25b6f86c66fe7e1806338b8bf6c821acd44f
5+
sourceRevisionDigest: sha256:1fd0772c85caf7379f8761097fe3db6c0a0d58df3c661470a98c07797fca9da1
6+
sourceBlobDigest: sha256:317e2733950756da19254890a55e3bc0c1cb14e1b5b26452328c98ef7faa7e5b
77
tags:
88
- latest
99
- 0.0.1
@@ -39,10 +39,10 @@ targets:
3939
outpost-ts:
4040
source: Outpost API
4141
sourceNamespace: outpost-api
42-
sourceRevisionDigest: sha256:dd3a2cc684557c275d2de44e77d9baf3d2505384b3096e40719aeb3608bf131b
43-
sourceBlobDigest: sha256:f488aa8c6bc68b706b4a14a763ec25b6f86c66fe7e1806338b8bf6c821acd44f
42+
sourceRevisionDigest: sha256:1fd0772c85caf7379f8761097fe3db6c0a0d58df3c661470a98c07797fca9da1
43+
sourceBlobDigest: sha256:317e2733950756da19254890a55e3bc0c1cb14e1b5b26452328c98ef7faa7e5b
4444
codeSamplesNamespace: outpost-api-typescript-code-samples
45-
codeSamplesRevisionDigest: sha256:08b1327558aa127250b44178eae33d1df9210157e85c0fbc8d9fae711a4e1b49
45+
codeSamplesRevisionDigest: sha256:5f720f3fc3be8c0dda4df825393237fbd7aae6335137315c6ac9634382e2b22b
4646
workflow:
4747
workflowVersion: 1.0.0
4848
speakeasyVersion: latest

0 commit comments

Comments
 (0)