1- # Anduril Lattice SDK TypeScript
1+ # Lattice SDK TypeScript Library
22
33![ ] ( https://www.anduril.com/lattice-sdk/ )
44
5- [ ![ npm shield] ( https://img.shields.io/npm/v/@anduril-industries/lattice-sdk )] ( https://www.npmjs.com/package/@anduril-industries/lattice-sdk )
6-
7- The Anduril TypeScript library provides convenient access to the Anduril API from TypeScript.
5+ The Lattice SDK TypeScript library provides convenient access to the Lattice API from TypeScript.
86
97## Documentation
108
@@ -24,7 +22,7 @@ npm i -s @anduril-industries/lattice-sdk
2422
2523## Support
2624
27- For support with this library please reach out to your Anduril representative.
25+ For support with this library, please reach out to your Anduril representative.
2826
2927## Reference
3028
@@ -536,18 +534,6 @@ while (page.hasNextPage()) {
536534
537535## Advanced
538536
539- ### Additional Headers
540-
541- If you would like to send additional headers as part of the request, use the ` headers ` request option.
542-
543- ``` typescript
544- const response = await client .entities .longPollEntityEvents (... , {
545- headers: {
546- ' X-Custom-Header' : ' custom value'
547- }
548- });
549- ```
550-
551537### Retries
552538
553539The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
@@ -568,16 +554,6 @@ const response = await client.entities.longPollEntityEvents(..., {
568554});
569555```
570556
571- ### Timeouts
572-
573- The SDK defaults to a 60 second timeout. Use the ` timeoutInSeconds ` option to configure this behavior.
574-
575- ``` typescript
576- const response = await client .entities .longPollEntityEvents (... , {
577- timeoutInSeconds: 30 // override timeout to 30s
578- });
579- ```
580-
581557### Aborting Requests
582558
583559The SDK allows users to abort requests at any point by passing in an abort signal.
0 commit comments