Skip to content

Commit e51dfab

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.468.2
1 parent d25b67a commit e51dfab

File tree

118 files changed

+4103
-1180
lines changed

Some content is hidden

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

118 files changed

+4103
-1180
lines changed

.speakeasy/gen.lock

+392-722
Large diffs are not rendered by default.

.speakeasy/workflow.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ speakeasyVersion: 1.468.2
22
sources:
33
speakeasy:
44
sourceNamespace: speakeasy
5-
sourceRevisionDigest: sha256:8af7ebde12785185cdbd700c1b3b6b8848b43d34f1fe8c06fff5ae4af471faf2
6-
sourceBlobDigest: sha256:952a58da1511e3191ea8e470c7f01a4e3785d11d9152f490a3e5a7173c8542e7
5+
sourceRevisionDigest: sha256:93869119b35c4fc8df7137f173903b9610271d9c7931e16c09813ff62debba09
6+
sourceBlobDigest: sha256:dbfc4218374706a2d790d14043461ab24863f944856c1b863aaaeb32de744c2b
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1735949986
9+
- speakeasy-sdk-regen-1736900413
1010
- 0.4.0
1111
targets:
1212
speakeasy-client-sdk-csharp:
1313
source: speakeasy
1414
sourceNamespace: speakeasy
15-
sourceRevisionDigest: sha256:8af7ebde12785185cdbd700c1b3b6b8848b43d34f1fe8c06fff5ae4af471faf2
16-
sourceBlobDigest: sha256:952a58da1511e3191ea8e470c7f01a4e3785d11d9152f490a3e5a7173c8542e7
15+
sourceRevisionDigest: sha256:93869119b35c4fc8df7137f173903b9610271d9c7931e16c09813ff62debba09
16+
sourceBlobDigest: sha256:dbfc4218374706a2d790d14043461ab24863f944856c1b863aaaeb32de744c2b
1717
codeSamplesNamespace: code-samples-csharp-speakeasy-client-sdk-csharp
18-
codeSamplesRevisionDigest: sha256:aacf508e82244f7628670bda7c73bdda3a36059c4143c3566f2b4d4935251ec8
18+
codeSamplesRevisionDigest: sha256:30f2fe9829bcfc55e27beb41421aaed1ff2c5740443a9ad55727b7105265c65b
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

CONTRIBUTING.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Contributing to This Repository
2+
3+
Thank you for your interest in contributing to this repository. Please note that this repository contains generated code. As such, we do not accept direct changes or pull requests. Instead, we encourage you to follow the guidelines below to report issues and suggest improvements.
4+
5+
## How to Report Issues
6+
7+
If you encounter any bugs or have suggestions for improvements, please open an issue on GitHub. When reporting an issue, please provide as much detail as possible to help us reproduce the problem. This includes:
8+
9+
- A clear and descriptive title
10+
- Steps to reproduce the issue
11+
- Expected and actual behavior
12+
- Any relevant logs, screenshots, or error messages
13+
- Information about your environment (e.g., operating system, software versions)
14+
- For example can be collected using the `npx envinfo` command from your terminal if you have Node.js installed
15+
16+
## Issue Triage and Upstream Fixes
17+
18+
We will review and triage issues as quickly as possible. Our goal is to address bugs and incorporate improvements in the upstream source code. Fixes will be included in the next generation of the generated code.
19+
20+
## Contact
21+
22+
If you have any questions or need further assistance, please feel free to reach out by opening an issue.
23+
24+
Thank you for your understanding and cooperation!
25+
26+
The Maintainers

NUGET.md

+41-56
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,21 @@
99
```csharp
1010
using SpeakeasySDK;
1111
using SpeakeasySDK.Models.Shared;
12-
using System.Collections.Generic;
12+
using System;
1313

1414
var sdk = new SDK(security: new Security() {
1515
APIKey = "<YOUR_API_KEY_HERE>",
1616
});
1717

18-
RemoteSource req = new RemoteSource() {
19-
Inputs = new List<RemoteDocument>() {
20-
new RemoteDocument() {
21-
RegistryUrl = "https://productive-swine.net",
22-
},
23-
},
24-
Output = new RemoteDocument() {
25-
RegistryUrl = "https://spiteful-apricot.info",
26-
},
18+
PublishingToken req = new PublishingToken() {
19+
CreatedAt = System.DateTime.Parse("2025-10-25T02:17:15.413Z"),
20+
Id = "<id>",
21+
TargetId = "<id>",
22+
TargetResource = "<value>",
23+
Token = "<value>",
2724
};
2825

29-
var res = await sdk.Artifacts.CreateRemoteSourceAsync(req);
26+
var res = await sdk.CreatePublishingTokenAsync(req);
3027

3128
// handle response
3229
```
@@ -49,24 +46,21 @@ You can set the security parameters through the `security` optional parameter wh
4946
```csharp
5047
using SpeakeasySDK;
5148
using SpeakeasySDK.Models.Shared;
52-
using System.Collections.Generic;
49+
using System;
5350

5451
var sdk = new SDK(security: new Security() {
5552
APIKey = "<YOUR_API_KEY_HERE>",
5653
});
5754

58-
RemoteSource req = new RemoteSource() {
59-
Inputs = new List<RemoteDocument>() {
60-
new RemoteDocument() {
61-
RegistryUrl = "https://productive-swine.net",
62-
},
63-
},
64-
Output = new RemoteDocument() {
65-
RegistryUrl = "https://spiteful-apricot.info",
66-
},
55+
PublishingToken req = new PublishingToken() {
56+
CreatedAt = System.DateTime.Parse("2025-10-25T02:17:15.413Z"),
57+
Id = "<id>",
58+
TargetId = "<id>",
59+
TargetResource = "<value>",
60+
Token = "<value>",
6761
};
6862

69-
var res = await sdk.Artifacts.CreateRemoteSourceAsync(req);
63+
var res = await sdk.CreatePublishingTokenAsync(req);
7064

7165
// handle response
7266
```
@@ -184,7 +178,7 @@ By default, an API error will raise a `SpeakeasySDK.Models.Errors.SDKException`
184178
| `RawResponse` | *HttpResponseMessage* | The raw HTTP response |
185179
| `Body` | *string* | The response content |
186180

187-
When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `CreateRemoteSourceAsync` method throws the following exceptions:
181+
When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `CreatePublishingTokenAsync` method throws the following exceptions:
188182

189183
| Error Type | Status Code | Content Type |
190184
| --------------------------------------- | ----------- | ---------------- |
@@ -197,26 +191,23 @@ When custom error responses are specified for an operation, the SDK may also thr
197191
using SpeakeasySDK;
198192
using SpeakeasySDK.Models.Errors;
199193
using SpeakeasySDK.Models.Shared;
200-
using System.Collections.Generic;
194+
using System;
201195

202196
var sdk = new SDK(security: new Security() {
203197
APIKey = "<YOUR_API_KEY_HERE>",
204198
});
205199

206200
try
207201
{
208-
RemoteSource req = new RemoteSource() {
209-
Inputs = new List<RemoteDocument>() {
210-
new RemoteDocument() {
211-
RegistryUrl = "https://productive-swine.net",
212-
},
213-
},
214-
Output = new RemoteDocument() {
215-
RegistryUrl = "https://spiteful-apricot.info",
216-
},
202+
PublishingToken req = new PublishingToken() {
203+
CreatedAt = System.DateTime.Parse("2025-10-25T02:17:15.413Z"),
204+
Id = "<id>",
205+
TargetId = "<id>",
206+
TargetResource = "<value>",
207+
Token = "<value>",
217208
};
218209

219-
var res = await sdk.Artifacts.CreateRemoteSourceAsync(req);
210+
var res = await sdk.CreatePublishingTokenAsync(req);
220211

221212
// handle response
222213
}
@@ -252,7 +243,7 @@ You can override the default server globally by passing a server name to the `se
252243
```csharp
253244
using SpeakeasySDK;
254245
using SpeakeasySDK.Models.Shared;
255-
using System.Collections.Generic;
246+
using System;
256247

257248
var sdk = new SDK(
258249
server: "prod",
@@ -261,18 +252,15 @@ var sdk = new SDK(
261252
}
262253
);
263254

264-
RemoteSource req = new RemoteSource() {
265-
Inputs = new List<RemoteDocument>() {
266-
new RemoteDocument() {
267-
RegistryUrl = "https://productive-swine.net",
268-
},
269-
},
270-
Output = new RemoteDocument() {
271-
RegistryUrl = "https://spiteful-apricot.info",
272-
},
255+
PublishingToken req = new PublishingToken() {
256+
CreatedAt = System.DateTime.Parse("2025-10-25T02:17:15.413Z"),
257+
Id = "<id>",
258+
TargetId = "<id>",
259+
TargetResource = "<value>",
260+
Token = "<value>",
273261
};
274262

275-
var res = await sdk.Artifacts.CreateRemoteSourceAsync(req);
263+
var res = await sdk.CreatePublishingTokenAsync(req);
276264

277265
// handle response
278266
```
@@ -283,7 +271,7 @@ The default server can also be overridden globally by passing a URL to the `serv
283271
```csharp
284272
using SpeakeasySDK;
285273
using SpeakeasySDK.Models.Shared;
286-
using System.Collections.Generic;
274+
using System;
287275

288276
var sdk = new SDK(
289277
serverUrl: "https://api.prod.speakeasyapi.dev",
@@ -292,18 +280,15 @@ var sdk = new SDK(
292280
}
293281
);
294282

295-
RemoteSource req = new RemoteSource() {
296-
Inputs = new List<RemoteDocument>() {
297-
new RemoteDocument() {
298-
RegistryUrl = "https://productive-swine.net",
299-
},
300-
},
301-
Output = new RemoteDocument() {
302-
RegistryUrl = "https://spiteful-apricot.info",
303-
},
283+
PublishingToken req = new PublishingToken() {
284+
CreatedAt = System.DateTime.Parse("2025-10-25T02:17:15.413Z"),
285+
Id = "<id>",
286+
TargetId = "<id>",
287+
TargetResource = "<value>",
288+
Token = "<value>",
304289
};
305290

306-
var res = await sdk.Artifacts.CreateRemoteSourceAsync(req);
291+
var res = await sdk.CreatePublishingTokenAsync(req);
307292

308293
// handle response
309294
```

0 commit comments

Comments
 (0)