@jupiterone/integration-sdk-http-client
Advanced tools
Changelog
13.7.1 - 2024-10-11
Changelog
13.7.0 - 2024-10-09
retryOptions.retryErrorHandler
in favor of protected
method defaultErrorHandler
Changelog
13.6.0 - 2024-09-19
- export type GraphObjectIteratee<T> = (obj: T) => void | Promise<void>;
+ export type GraphObjectIteratee<T> = (obj: Readonly<T>) => void | Promise<void>;
Changelog
13.5.2 - 2024-09-17
Changelog
13.5.1 - 2024-09-09
Changelog
13.5.0 - 2024-08-20
application/x-www-form-urlencoded
Changelog
13.4.0 - 2024-08-14
GraphObjectIterateeOptions
to
jobState.iterateEntities() and jobState.iterateRelationships() that allows a
concurrency option to be specified. The options parameters is passed to in
memory and the file based object stores. Example:await jobState.iterateEntities(
{ _type: EcrEntities.ECR_IMAGE._type },
async (image) => {
...
},
{ concurrency: 5 },
);