@stainless-api/docs 0.1.0-beta.0

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