You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: NUGET.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@
8
8
9
9
```csharp
10
10
usingSpeakeasySDK;
11
-
usingSpeakeasySDK.Models.Shared;
12
11
usingSpeakeasySDK.Models.Operations;
13
12
usingSystem.Collections.Generic;
13
+
usingSpeakeasySDK.Models.Shared;
14
14
15
15
varsdk=newSDK(security: newSecurity() {
16
16
APIKey="<YOUR_API_KEY_HERE>",
@@ -47,8 +47,8 @@ The following global parameter is available.
47
47
48
48
```csharp
49
49
usingSpeakeasySDK;
50
-
usingSpeakeasySDK.Models.Shared;
51
50
usingSpeakeasySDK.Models.Operations;
51
+
usingSpeakeasySDK.Models.Shared;
52
52
53
53
varsdk=newSDK(security: newSecurity() {
54
54
APIKey="<YOUR_API_KEY_HERE>",
@@ -72,8 +72,8 @@ Some of the endpoints in this SDK support retries. If you use the SDK without an
72
72
To change the default retry strategy for a single API call, simply pass a `RetryConfig` to the call:
73
73
```csharp
74
74
usingSpeakeasySDK;
75
-
usingSpeakeasySDK.Models.Shared;
76
75
usingSpeakeasySDK.Models.Operations;
76
+
usingSpeakeasySDK.Models.Shared;
77
77
78
78
varsdk=newSDK(security: newSecurity() {
79
79
APIKey="<YOUR_API_KEY_HERE>",
@@ -99,8 +99,8 @@ var res = await sdk.Auth.GetWorkspaceAccessAsync(req,
99
99
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
100
100
```csharp
101
101
usingSpeakeasySDK;
102
-
usingSpeakeasySDK.Models.Shared;
103
102
usingSpeakeasySDK.Models.Operations;
103
+
usingSpeakeasySDK.Models.Shared;
104
104
105
105
varsdk=newSDK(
106
106
retryConfig: newRetryConfig(
@@ -139,10 +139,10 @@ Handling errors in this SDK should largely match your expectations. All operati
139
139
140
140
```csharp
141
141
usingSpeakeasySDK;
142
+
usingSpeakeasySDK.Models.Operations;
142
143
usingSpeakeasySDK.Models.Shared;
143
144
usingSystem;
144
145
usingSpeakeasySDK.Models.Errors;
145
-
usingSpeakeasySDK.Models.Operations;
146
146
147
147
varsdk=newSDK(security: newSecurity() {
148
148
APIKey="<YOUR_API_KEY_HERE>",
@@ -205,8 +205,8 @@ This SDK supports the following security schemes globally:
205
205
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
@@ -127,6 +127,10 @@ var res = await sdk.Apis.GetApisAsync(req);
127
127
*[GetLintingReportSignedUrl](docs/sdks/reports/README.md#getlintingreportsignedurl) - Get the signed access url for the linting reports for a particular document.
128
128
*[UploadReport](docs/sdks/reports/README.md#uploadreport) - Upload a report.
129
129
130
+
### [ShortURLs](docs/sdks/shorturls/README.md)
131
+
132
+
*[Create](docs/sdks/shorturls/README.md#create) - Shorten a URL.
133
+
130
134
### [Suggest](docs/sdks/suggest/README.md)
131
135
132
136
*[ApplyOperationIDs](docs/sdks/suggest/README.md#applyoperationids) - Apply operation ID suggestions and download result.
@@ -182,8 +186,8 @@ This SDK supports the following security schemes globally:
182
186
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
183
187
```csharp
184
188
usingSpeakeasySDK;
185
-
usingSpeakeasySDK.Models.Shared;
186
189
usingSpeakeasySDK.Models.Operations;
190
+
usingSpeakeasySDK.Models.Shared;
187
191
188
192
varsdk=newSDK(security: newSecurity() {
189
193
APIKey="<YOUR_API_KEY_HERE>",
@@ -223,8 +227,8 @@ The following global parameter is available.
223
227
224
228
```csharp
225
229
usingSpeakeasySDK;
226
-
usingSpeakeasySDK.Models.Shared;
227
230
usingSpeakeasySDK.Models.Operations;
231
+
usingSpeakeasySDK.Models.Shared;
228
232
229
233
varsdk=newSDK(security: newSecurity() {
230
234
APIKey="<YOUR_API_KEY_HERE>",
@@ -254,10 +258,10 @@ Handling errors in this SDK should largely match your expectations. All operati
254
258
255
259
```csharp
256
260
usingSpeakeasySDK;
261
+
usingSpeakeasySDK.Models.Operations;
257
262
usingSpeakeasySDK.Models.Shared;
258
263
usingSystem;
259
264
usingSpeakeasySDK.Models.Errors;
260
-
usingSpeakeasySDK.Models.Operations;
261
265
262
266
varsdk=newSDK(security: newSecurity() {
263
267
APIKey="<YOUR_API_KEY_HERE>",
@@ -295,8 +299,8 @@ Some of the endpoints in this SDK support retries. If you use the SDK without an
295
299
To change the default retry strategy for a single API call, simply pass a `RetryConfig` to the call:
296
300
```csharp
297
301
usingSpeakeasySDK;
298
-
usingSpeakeasySDK.Models.Shared;
299
302
usingSpeakeasySDK.Models.Operations;
303
+
usingSpeakeasySDK.Models.Shared;
300
304
301
305
varsdk=newSDK(security: newSecurity() {
302
306
APIKey="<YOUR_API_KEY_HERE>",
@@ -322,8 +326,8 @@ var res = await sdk.Auth.GetWorkspaceAccessAsync(req,
322
326
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
0 commit comments