Skip to content

Commit 779382e

Browse files
feat(api): OpenAPI spec update via Stainless API (#218)
1 parent 41b1639 commit 779382e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ await client.post('/some/path', {
220220
});
221221
```
222222

223-
#### Undocumented params
223+
#### Undocumented request params
224224

225225
To make requests using undocumented parameters, you may use `// @ts-expect-error` on the undocumented
226226
parameter. This library doesn't validate at runtime that the request matches the type, so any extra values you
@@ -241,7 +241,7 @@ extra param in the body.
241241
If you want to explicitly send an extra argument, you can do so with the `query`, `body`, and `headers` request
242242
options.
243243

244-
#### Undocumented properties
244+
#### Undocumented response properties
245245

246246
To access undocumented response properties, you may access the response object with `// @ts-expect-error` on
247247
the response object, or cast the response object to the requisite type. Like the request params, we do not

0 commit comments

Comments
 (0)