@stainless-api/docs 0.1.0-beta.99 → 1.0.0-beta.141

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/CHANGELOG.md +401 -0
  2. package/ambient.d.ts +6 -0
  3. package/eslint-suppressions.json +22 -6
  4. package/{eslint.config.js → eslint.config.ts} +1 -7
  5. package/package.json +62 -40
  6. package/plugin/buildAlgoliaIndex.ts +6 -12
  7. package/plugin/components/SDKSelect.astro +0 -6
  8. package/plugin/components/SnippetCode.tsx +6 -37
  9. package/plugin/components/search/SearchAlgolia.astro +1 -1
  10. package/plugin/components/search/SearchIsland.tsx +19 -13
  11. package/plugin/generateAPIReferenceLink.ts +0 -40
  12. package/plugin/globalJs/ai-dropdown-options.ts +22 -9
  13. package/plugin/globalJs/code-snippets.ts +5 -5
  14. package/plugin/globalJs/copy.ts +20 -91
  15. package/plugin/globalJs/navigation.ts +13 -13
  16. package/plugin/globalJs/summary-selection-tweak.ts +29 -0
  17. package/plugin/index.ts +107 -163
  18. package/plugin/loadPluginConfig.ts +49 -151
  19. package/plugin/markdown/highlighter.ts +100 -0
  20. package/plugin/markdown/index.ts +39 -0
  21. package/plugin/middlewareBuilder/stainlessMiddleware.d.ts +2 -0
  22. package/plugin/react/Routing.tsx +10 -244
  23. package/plugin/referencePlaceholderUtils.ts +1 -1
  24. package/plugin/replaceSidebarPlaceholderMiddleware.ts +1 -1
  25. package/plugin/routes/Docs.astro +3 -1
  26. package/plugin/routes/Overview.astro +14 -7
  27. package/plugin/routes/llms.ts +186 -0
  28. package/plugin/routes/markdown.ts +62 -13
  29. package/plugin/sidebar-utils/sidebar-builder.ts +38 -12
  30. package/plugin/specs/defaultSpecLoader.ts +192 -0
  31. package/plugin/specs/fetchSpecSSR.ts +1 -1
  32. package/plugin/specs/utils.ts +86 -0
  33. package/shared/conditionalIntegration.ts +28 -0
  34. package/shared/getProsePages.ts +6 -7
  35. package/shared/virtualModule.ts +1 -26
  36. package/stl-docs/aiChatExamples.ts +31 -0
  37. package/stl-docs/chat/docs-chat-handler.ts +17 -0
  38. package/stl-docs/chat/hook.ts +225 -0
  39. package/stl-docs/chat/schemas.ts +27 -0
  40. package/stl-docs/chat/ui/AiChat.module.css +591 -0
  41. package/stl-docs/chat/ui/AiChat.tsx +175 -0
  42. package/stl-docs/chat/ui/Trigger.tsx +154 -0
  43. package/stl-docs/chat/ui/components/ChatControls.tsx +51 -0
  44. package/stl-docs/chat/ui/components/ChatEmpty.tsx +42 -0
  45. package/stl-docs/chat/ui/components/ChatLog.tsx +93 -0
  46. package/stl-docs/chat/ui/components/ChatMessage.tsx +47 -0
  47. package/stl-docs/chat/ui/components/CodeBlock.tsx +33 -0
  48. package/stl-docs/chat/ui/components/MessageFeedback.tsx +106 -0
  49. package/stl-docs/chat/ui/components/Table.tsx +15 -0
  50. package/stl-docs/chat/ui/components/ToolCall.tsx +34 -0
  51. package/stl-docs/chat/ui/components/hljs-github.css +81 -0
  52. package/stl-docs/chat/ui/scroll-manager.ts +86 -0
  53. package/stl-docs/chat/ui/types.ts +45 -0
  54. package/stl-docs/components/AiChatIsland.tsx +10 -12
  55. package/stl-docs/components/ContentPanel.astro +9 -0
  56. package/stl-docs/components/Footer.astro +89 -0
  57. package/stl-docs/components/Header.astro +0 -5
  58. package/stl-docs/components/PageFrame.astro +23 -8
  59. package/stl-docs/components/PageSidebar.astro +11 -0
  60. package/stl-docs/components/StainlessLogo.svg +4 -0
  61. package/stl-docs/components/TwoColumnContent.astro +2 -0
  62. package/stl-docs/components/headers/DefaultHeader.astro +6 -8
  63. package/stl-docs/components/headers/StackedHeader.astro +5 -53
  64. package/stl-docs/components/mintlify-compat/Accordion.astro +2 -2
  65. package/stl-docs/components/mintlify-compat/AccordionGroup.astro +0 -4
  66. package/stl-docs/components/mintlify-compat/Columns.astro +2 -2
  67. package/stl-docs/components/mintlify-compat/Frame.astro +2 -2
  68. package/stl-docs/components/mintlify-compat/Tab.astro +2 -2
  69. package/stl-docs/components/mintlify-compat/callouts/Callout.astro +2 -2
  70. package/stl-docs/components/mintlify-compat/callouts/Check.astro +0 -4
  71. package/stl-docs/components/mintlify-compat/callouts/Danger.astro +0 -4
  72. package/stl-docs/components/mintlify-compat/callouts/Info.astro +0 -4
  73. package/stl-docs/components/mintlify-compat/callouts/Note.astro +0 -4
  74. package/stl-docs/components/mintlify-compat/callouts/Tip.astro +0 -4
  75. package/stl-docs/components/mintlify-compat/callouts/Warning.astro +0 -4
  76. package/stl-docs/components/nav-tabs/NavDropdown.astro +12 -7
  77. package/stl-docs/components/nav-tabs/NavTabs.astro +5 -3
  78. package/stl-docs/components/nav-tabs/buildNavLinks.ts +2 -0
  79. package/stl-docs/components/pagination/Pagination.astro +4 -2
  80. package/stl-docs/components/pagination/PaginationLinkEmphasized.astro +2 -2
  81. package/stl-docs/components/pagination/PaginationLinkQuiet.astro +2 -2
  82. package/stl-docs/components/pagination/util.ts +3 -3
  83. package/stl-docs/components/sidebars/BaseSidebar.astro +72 -1
  84. package/stl-docs/disableCalloutSyntax.ts +1 -1
  85. package/stl-docs/fonts.ts +5 -5
  86. package/stl-docs/index.ts +76 -53
  87. package/stl-docs/loadStlDocsConfig.ts +38 -8
  88. package/stl-docs/og-image/components/OpenGraphFunctionSignature.tsx +64 -0
  89. package/stl-docs/og-image/components/OpenGraphImage.tsx +126 -0
  90. package/stl-docs/og-image/config.ts +56 -0
  91. package/stl-docs/og-image/image-gen/generate-api-reference-og-image.tsx +188 -0
  92. package/stl-docs/og-image/image-gen/generate-og-image.tsx +119 -0
  93. package/stl-docs/og-image/image-gen/get-logo-url.ts +47 -0
  94. package/stl-docs/og-image/index.ts +135 -0
  95. package/stl-docs/og-image/routes/add-og-image.ts +45 -0
  96. package/stl-docs/og-image/routes/get-api-reference-og-image.ts +36 -0
  97. package/stl-docs/og-image/routes/get-og-image.ts +28 -0
  98. package/stl-docs/og-image/theme.ts +43 -0
  99. package/stl-docs/og-image/utils.ts +14 -0
  100. package/stl-docs/proseDocSync.test.ts +74 -0
  101. package/stl-docs/proseDocSync.ts +344 -0
  102. package/stl-docs/proseMarkdown/proseMarkdownIntegration.ts +4 -12
  103. package/stl-docs/schema-extension.ts +12 -0
  104. package/stl-docs/tabsMiddleware.ts +1 -1
  105. package/styles/overrides.css +2 -14
  106. package/styles/page.css +210 -71
  107. package/styles/sidebar.css +30 -17
  108. package/styles/sl-variables.css +3 -8
  109. package/styles/stldocs-variables.css +2 -2
  110. package/styles/toc.css +8 -0
  111. package/tsconfig.json +1 -1
  112. package/virtual-module.d.ts +35 -11
  113. package/playground-virtual-modules.d.ts +0 -96
  114. package/plugin/globalJs/create-playground.shim.ts +0 -3
  115. package/plugin/globalJs/playground-data.shim.ts +0 -1
  116. package/plugin/globalJs/playground-data.ts +0 -14
  117. package/plugin/specs/FileCache.ts +0 -99
  118. package/plugin/specs/generateSpec.ts +0 -112
  119. package/plugin/specs/index.ts +0 -132
  120. package/plugin/specs/inputResolver.ts +0 -146
  121. package/plugin/specs/worker.ts +0 -199
  122. package/plugin/vendor/preview.worker.docs.js +0 -26108
  123. package/plugin/vendor/templates/cli.md +0 -1
  124. package/plugin/vendor/templates/go.md +0 -316
  125. package/plugin/vendor/templates/java.md +0 -89
  126. package/plugin/vendor/templates/kotlin.md +0 -89
  127. package/plugin/vendor/templates/node.md +0 -235
  128. package/plugin/vendor/templates/python.md +0 -251
  129. package/plugin/vendor/templates/ruby.md +0 -147
  130. package/plugin/vendor/templates/terraform.md +0 -60
  131. package/plugin/vendor/templates/typescript.md +0 -319
  132. package/scripts/vendor_deps.ts +0 -50
  133. package/stl-docs/components/ClientRouterHead.astro +0 -41
  134. package/stl-docs/components/content-panel/ContentPanel.astro +0 -42
  135. package/stl-docs/components/headers/SplashMobileMenuToggle.astro +0 -65
  136. package/stl-docs/proseSearchIndexing.ts +0 -606
@@ -1 +0,0 @@
1
- SDK_Readme
@@ -1,316 +0,0 @@
1
- # SDK_PackageTitle API Library
2
-
3
- <a href="https://pkg.go.dev/SDK_PackagePath"><img src="https://pkg.go.dev/badge/SDK_PackagePath.svg" alt="Go Reference"></a>
4
-
5
- The SDK_PackageTitle library provides convenient access to the SDK_RestAPIName
6
- from applications written in Go.
7
-
8
- SDK_GeneratedByStainless
9
-
10
- SDK_MCPReadmeSection
11
-
12
- ## Installation
13
-
14
- SDK_ReleasePleaseMarkdownBlockStart
15
-
16
- ```go
17
- import (
18
- "SDK_PackagePath" // imported as SDK_PackageName
19
- )
20
- ```
21
-
22
- SDK_ReleasePleaseMarkdownBlockEnd
23
-
24
- Or to pin the version:
25
-
26
- SDK_ReleasePleaseMarkdownBlockStart
27
-
28
- ```sh
29
- go get -u 'SDK_PackagePathWithFullVersionUsingAt'
30
- ```
31
-
32
- SDK_ReleasePleaseMarkdownBlockEnd
33
-
34
- ## Requirements
35
-
36
- This library requires Go 1.22+.
37
-
38
- ## Usage
39
-
40
- SDK_APIReferenceCallout
41
-
42
- ```go
43
- SDK_UsageExample
44
- ```
45
-
46
- ### Request fields
47
-
48
- All request parameters are wrapped in a generic `Field` type,
49
- which we use to distinguish zero values from null or omitted fields.
50
-
51
- This prevents accidentally sending a zero value if you forget a required parameter,
52
- and enables explicitly sending `null`, `false`, `''`, or `0` on optional parameters.
53
- Any field not specified is not sent.
54
-
55
- To construct fields with values, use the helpers `String()`, `Int()`, `Float()`, or most commonly, the generic `F[T]()`.
56
- To send a null, use `Null[T]()`, and to send a nonconforming value, use `Raw[T](any)`. For example:
57
-
58
- ```go
59
- params := FooParams{
60
- Name: SDK_PackageName.F("hello"),
61
-
62
- // Explicitly send `"description": null`
63
- Description: SDK_PackageName.Null[string](),
64
-
65
- Point: SDK_PackageName.F(SDK_PackageName.Point{
66
- X: SDK_PackageName.Int(0),
67
- Y: SDK_PackageName.Int(1),
68
-
69
- // In cases where the API specifies a given type,
70
- // but you want to send something else, use `Raw`:
71
- Z: SDK_PackageName.Raw[int64](0.01), // sends a float
72
- }),
73
- }
74
- ```
75
-
76
- ### Response objects
77
-
78
- All fields in response structs are value types (not pointers or wrappers).
79
-
80
- If a given field is `null`, not present, or invalid, the corresponding field
81
- will simply be its zero value.
82
-
83
- All response structs also include a special `JSON` field, containing more detailed
84
- information about each property, which you can use like so:
85
-
86
- ```go
87
- if res.Name == "" {
88
- // true if `"name"` is either not present or explicitly null
89
- res.JSON.Name.IsNull()
90
-
91
- // true if the `"name"` key was not present in the response JSON at all
92
- res.JSON.Name.IsMissing()
93
-
94
- // When the API returns data that cannot be coerced to the expected type:
95
- if res.JSON.Name.IsInvalid() {
96
- raw := res.JSON.Name.Raw()
97
-
98
- legacyName := struct{
99
- First string `json:"first"`
100
- Last string `json:"last"`
101
- }{}
102
- json.Unmarshal([]byte(raw), &legacyName)
103
- name = legacyName.First + " " + legacyName.Last
104
- }
105
- }
106
- ```
107
-
108
- These `.JSON` structs also include an `Extras` map containing
109
- any properties in the json response that were not specified
110
- in the struct. This can be useful for API features not yet
111
- present in the SDK.
112
-
113
- ```go
114
- body := res.JSON.ExtraFields["my_unexpected_field"].Raw()
115
- ```
116
-
117
- ### RequestOptions
118
-
119
- This library uses the functional options pattern. Functions defined in the
120
- `SDK_PackageOptionName` package return a `RequestOption`, which is a closure that mutates a
121
- `RequestConfig`. These options can be supplied to the client or at individual
122
- requests. For example:
123
-
124
- ```go
125
- SDK_ClientName := SDK_PackageName.SDK_ClientInitializerName(
126
- // Adds a header to every request made by the client
127
- SDK_PackageOptionName.WithHeader("X-Some-Header", "custom_header_info"),
128
- )
129
-
130
- SDK_HeadlineMethodName(context.TODO(), ...,
131
- // Override the header
132
- SDK_PackageOptionName.WithHeader("X-Some-Header", "some_other_custom_header_info"),
133
- // Add an undocumented field to the request body, using sjson syntax
134
- SDK_PackageOptionName.WithJSONSet("some.json.path", map[string]string{"my": "object"}),
135
- )
136
- ```
137
-
138
- See the [full list of request options](https://pkg.go.dev/SDK_PackagePath/SDK_PackageOptionName).
139
-
140
- ### Pagination
141
-
142
- This library provides some conveniences for working with paginated list endpoints.
143
-
144
- You can use `.SDK_GeneralAutoPaginationMethodName()` methods to iterate through items across all pages:
145
-
146
- SDK_AutoPaginationExample
147
-
148
- Or you can use simple `.List()` methods to fetch a single page and receive a standard response object
149
- with additional helper methods like `.GetNextPage()`, e.g.:
150
-
151
- SDK_ManualPaginationExample
152
-
153
- ### Errors
154
-
155
- When the API returns a non-success status code, we return an error with type
156
- `*SDK_PackageName.Error`. This contains the `StatusCode`, `*http.Request`, and
157
- `*http.Response` values of the request, as well as the JSON of the error body
158
- (much like other response objects in the SDK).
159
-
160
- To handle errors, we recommend that you use the `errors.As` pattern:
161
-
162
- ```go
163
- SDK_ErrorsExample
164
- ```
165
-
166
- When other errors occur, they are returned unwrapped; for example,
167
- if HTTP transport fails, you might receive `*url.Error` wrapping `*net.OpError`.
168
-
169
- ### Timeouts
170
-
171
- Requests do not time out by default; use context to configure a timeout for a request lifecycle.
172
-
173
- Note that if a request is [retried](#retries), the context timeout does not start over.
174
- To set a per-retry timeout, use `SDK_PackageOptionName.WithRequestTimeout()`.
175
-
176
- ```go
177
- SDK_TimeoutsExample
178
- ```
179
-
180
- ### File uploads
181
-
182
- Request parameters that correspond to file uploads in multipart requests are typed as
183
- `param.Field[io.Reader]`. The contents of the `io.Reader` will by default be sent as a multipart form
184
- part with the file name of "anonymous_file" and content-type of "application/octet-stream".
185
-
186
- The file name and content-type can be customized by implementing `Name() string` or `ContentType()
187
- string` on the run-time type of `io.Reader`. Note that `os.File` implements `Name() string`, so a
188
- file returned by `os.Open` will be sent with the file name on disk.
189
-
190
- We also provide a helper `SDK_PackageName.FileParam(reader io.Reader, filename string, contentType string)`
191
- which can be used to wrap any `io.Reader` with the appropriate file name and content type.
192
-
193
- SDK_FileUploadsExample
194
-
195
- ### Retries
196
-
197
- Certain errors will be automatically retried SDK_DefaultMaxRetries times by default, with a short exponential backoff.
198
- We retry by default all connection errors, 408 Request Timeout, 409 Conflict, 429 Rate Limit,
199
- and >=500 Internal errors.
200
-
201
- You can use the `WithMaxRetries` option to configure or disable this:
202
-
203
- ```go
204
- SDK_RetriesExample
205
- ```
206
-
207
-
208
- ### Accessing raw response data (e.g. response headers)
209
-
210
- You can access the raw HTTP response data by using the `option.WithResponseInto()` request option. This is useful when
211
- you need to examine response headers, status codes, or other details.
212
-
213
- ```go
214
- SDK_RawResponseExample
215
- ```
216
-
217
- ### Making custom/undocumented requests
218
-
219
- This library is typed for convenient access to the documented API. If you need to access undocumented
220
- endpoints, params, or response properties, the library can still be used.
221
-
222
- #### Undocumented endpoints
223
-
224
- To make requests to undocumented endpoints, you can use `SDK_ClientName.Get`, `SDK_ClientName.Post`, and other HTTP verbs.
225
- `RequestOptions` on the client, such as retries, will be respected when making these requests.
226
-
227
- ```go
228
- var (
229
- // params can be an io.Reader, a []byte, an encoding/json serializable object,
230
- // or a "…Params" struct defined in this library.
231
- params map[string]interface{}
232
-
233
- // result can be an []byte, *http.Response, a encoding/json deserializable object,
234
- // or a model defined in this library.
235
- result *http.Response
236
- )
237
- err := SDK_ClientName.Post(context.Background(), "/unspecified", params, &result)
238
- if err != nil {
239
-
240
- }
241
- ```
242
-
243
- #### Undocumented request params
244
-
245
- To make requests using undocumented parameters, you may use either the `SDK_PackageOptionName.WithQuerySet()`
246
- or the `SDK_PackageOptionName.WithJSONSet()` methods.
247
-
248
- ```go
249
- params := FooNewParams{
250
- ID: SDK_PackageName.F("id_xxxx"),
251
- Data: SDK_PackageName.F(FooNewParamsData{
252
- FirstName: SDK_PackageName.F("John"),
253
- }),
254
- }
255
- SDK_ClientName.Foo.New(context.Background(), params, SDK_PackageOptionName.WithJSONSet("data.last_name", "Doe"))
256
- ```
257
-
258
- #### Undocumented response properties
259
-
260
- To access undocumented response properties, you may either access the raw JSON of the response as a string
261
- with `result.JSON.RawJSON()`, or get the raw JSON of a particular field on the result with
262
- `result.JSON.Foo.Raw()`.
263
-
264
- Any fields that are not present on the response struct will be saved and can be accessed by `result.JSON.ExtraFields()` which returns the extra fields as a `map[string]Field`.
265
-
266
- ### Middleware
267
-
268
- We provide `SDK_PackageOptionName.WithMiddleware` which applies the given
269
- middleware to requests.
270
-
271
- ```go
272
- func Logger(req *http.Request, next SDK_PackageOptionName.MiddlewareNext) (res *http.Response, err error) {
273
- // Before the request
274
- start := time.Now()
275
- LogReq(req)
276
-
277
- // Forward the request to the next handler
278
- res, err = next(req)
279
-
280
- // Handle stuff after the request
281
- end := time.Now()
282
- LogRes(res, err, start - end)
283
-
284
- return res, err
285
- }
286
-
287
- SDK_ClientName := SDK_PackageName.SDK_ClientInitializerName(
288
- SDK_PackageOptionName.WithMiddleware(Logger),
289
- )
290
- ```
291
-
292
- When multiple middlewares are provided as variadic arguments, the middlewares
293
- are applied left to right. If `SDK_PackageOptionName.WithMiddleware` is given
294
- multiple times, for example first in the client then the method, the
295
- middleware in the client will run first and the middleware given in the method
296
- will run next.
297
-
298
- You may also replace the default `http.Client` with
299
- `SDK_PackageOptionName.WithHTTPClient(SDK_ClientName)`. Only one http client is
300
- accepted (this overwrites any previous client) and receives requests after any
301
- middleware has been applied.
302
-
303
- ## Semantic versioning
304
-
305
- This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
306
-
307
- 1. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
308
- 2. Changes that we do not expect to impact the vast majority of users in practice.
309
-
310
- We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
311
-
312
- We are keen for your feedback; please open an [issue](SDK_RepoURL/issues) with questions, bugs, or suggestions.
313
-
314
- ## Contributing
315
-
316
- See [the contributing documentation](./CONTRIBUTING.md).
@@ -1,89 +0,0 @@
1
- # SDK_PackageTitle API Library
2
-
3
- SDK_ReleasePleaseMarkdownBlockStart
4
- [![Maven Central](https://img.shields.io/maven-central/v/SDK_JavaPackagePrefix/SDK_PackageArtifactId)](https://central.sonatype.com/artifact/SDK_JavaPackagePrefix/SDK_PackageArtifactId/SDK_Version)
5
- SDK_JavadocBadge
6
- SDK_ReleasePleaseMarkdownBlockEnd
7
-
8
- SDK_SectionOpening
9
-
10
- SDK_SectionSimilarToOtherSDK
11
-
12
- SDK_GeneratedByStainless
13
-
14
- SDK_MCPReadmeSection
15
-
16
- SDK_SectionDocumentationReference
17
-
18
- SDK_SectionInstallation
19
-
20
- SDK_SectionRequirements
21
-
22
- SDK_SectionUsage
23
-
24
- SDK_SectionClientConfiguration
25
-
26
- SDK_SectionRequestsAndResponses
27
-
28
- SDK_SectionImmutability
29
-
30
- SDK_SectionAsynchronousExecution
31
-
32
- SDK_SectionStreaming
33
-
34
- SDK_SectionFileUploads
35
-
36
- SDK_SectionBinaryResponses
37
-
38
- SDK_SectionRawResponses
39
-
40
- SDK_SectionErrorHandling
41
-
42
- SDK_SectionPagination
43
-
44
- SDK_SectionLogging
45
-
46
- SDK_SectionProGuard
47
-
48
- SDK_SectionGraalVM
49
-
50
- SDK_SectionSpringBoot
51
-
52
- SDK_SectionJackson
53
-
54
- ## Network options
55
-
56
- SDK_SectionRetries
57
-
58
- SDK_SectionTimeouts
59
-
60
- SDK_SectionProxies
61
-
62
- SDK_SectionHTTPS
63
-
64
- SDK_SectionEnvironments
65
-
66
- SDK_SectionCustomHttpClient
67
-
68
- ## Undocumented API functionality
69
-
70
- The SDK is typed for convenient usage of the documented API. However, it also supports working with undocumented or not yet supported parts of the API.
71
-
72
- SDK_SectionUndocumentedParameters
73
-
74
- SDK_SectionUndocumentedResponseProperties
75
-
76
- SDK_SectionResponseValidation
77
-
78
- SDK_SectionFAQ
79
-
80
- ## Semantic versioning
81
-
82
- This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
83
-
84
- 1. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
85
- 2. Changes that we do not expect to impact the vast majority of users in practice.
86
-
87
- We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
88
-
89
- We are keen for your feedback; please open an [issue](SDK_RepoURL/issues) with questions, bugs, or suggestions.
@@ -1,89 +0,0 @@
1
- # SDK_PackageTitle API Library
2
-
3
- SDK_ReleasePleaseMarkdownBlockStart
4
- [![Maven Central](https://img.shields.io/maven-central/v/SDK_JavaPackagePrefix/SDK_PackageArtifactId)](https://central.sonatype.com/artifact/SDK_JavaPackagePrefix/SDK_PackageArtifactId/SDK_Version)
5
- SDK_JavadocBadge
6
- SDK_ReleasePleaseMarkdownBlockEnd
7
-
8
- SDK_SectionOpening
9
-
10
- SDK_SectionSimilarToOtherSDK
11
-
12
- SDK_GeneratedByStainless
13
-
14
- SDK_MCPReadmeSection
15
-
16
- SDK_SectionDocumentationReference
17
-
18
- SDK_SectionInstallation
19
-
20
- SDK_SectionRequirements
21
-
22
- SDK_SectionUsage
23
-
24
- SDK_SectionClientConfiguration
25
-
26
- SDK_SectionRequestsAndResponses
27
-
28
- SDK_SectionImmutability
29
-
30
- SDK_SectionAsynchronousExecution
31
-
32
- SDK_SectionStreaming
33
-
34
- SDK_SectionFileUploads
35
-
36
- SDK_SectionBinaryResponses
37
-
38
- SDK_SectionRawResponses
39
-
40
- SDK_SectionErrorHandling
41
-
42
- SDK_SectionPagination
43
-
44
- SDK_SectionLogging
45
-
46
- SDK_SectionProGuard
47
-
48
- SDK_SectionGraalVM
49
-
50
- SDK_SectionSpringBoot
51
-
52
- SDK_SectionJackson
53
-
54
- ## Network options
55
-
56
- SDK_SectionRetries
57
-
58
- SDK_SectionTimeouts
59
-
60
- SDK_SectionProxies
61
-
62
- SDK_SectionHTTPS
63
-
64
- SDK_SectionEnvironments
65
-
66
- SDK_SectionCustomHttpClient
67
-
68
- ## Undocumented API functionality
69
-
70
- The SDK is typed for convenient usage of the documented API. However, it also supports working with undocumented or not yet supported parts of the API.
71
-
72
- SDK_SectionUndocumentedParameters
73
-
74
- SDK_SectionUndocumentedResponseProperties
75
-
76
- SDK_SectionResponseValidation
77
-
78
- SDK_SectionFAQ
79
-
80
- ## Semantic versioning
81
-
82
- This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
83
-
84
- 1. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
85
- 2. Changes that we do not expect to impact the vast majority of users in practice.
86
-
87
- We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
88
-
89
- We are keen for your feedback; please open an [issue](SDK_RepoURL/issues) with questions, bugs, or suggestions.