Recent Releases of https://github.com/crowdstrike/foundry-js

https://github.com/crowdstrike/foundry-js - v0.19.0

Minor Changes

- TypeScript
Published by github-actions[bot] 12 months ago

https://github.com/crowdstrike/foundry-js - v0.18.0

Minor Changes

  • #134 49a562b Thanks @karbi-cs! - Adding GET, POST, and PATCH methods for /devices/entities/devices/v1

- TypeScript
Published by github-actions[bot] about 1 year ago

https://github.com/crowdstrike/foundry-js - v0.17.1

Patch Changes

- TypeScript
Published by github-actions[bot] over 1 year ago

https://github.com/crowdstrike/foundry-js - v0.17.0

Minor Changes

  • #73 804f1fe Thanks @cs-ade-adesokan! - Added upgraded alerts api methods
    • deprecated getQueriesAlertsV1 and added getQueriesAlertsV2to be used in its place.
    • deprecated patchCombinedAlertsV2 and added patchCombinedAlertsV3to be used in its place.
    • deprecated patchEntitiesAlertsV2 and added patchEntitiesAlertsV3to be used in its place.
    • deprecated postAggregatesAlertsV1 and added postAggregatesAlertsV2to be used in its place.
    • deprecated postEntitiesAlertsV1 and added postEntitiesAlertsV2to be used in its place.

- TypeScript
Published by github-actions[bot] over 1 year ago

https://github.com/crowdstrike/foundry-js - v0.16.0

Minor Changes

- TypeScript
Published by github-actions[bot] over 1 year ago

https://github.com/crowdstrike/foundry-js - v0.15.0

Minor Changes

- TypeScript
Published by github-actions[bot] almost 2 years ago

https://github.com/crowdstrike/foundry-js - v0.14.0

Minor Changes

- TypeScript
Published by github-actions[bot] almost 2 years ago

https://github.com/crowdstrike/foundry-js - v0.13.0

Minor Changes

- TypeScript
Published by github-actions[bot] about 2 years ago

https://github.com/crowdstrike/foundry-js - v0.12.1

Patch Changes

- TypeScript
Published by github-actions[bot] over 2 years ago

https://github.com/crowdstrike/foundry-js - v0.12.0

Minor Changes

  • #55 4fb9b96 Thanks @RuslanZavacky! - Connect message can be undefined, if app runs without iframe. If that happens, we'll gracefully ignore failure and allow application to continue to work.

- TypeScript
Published by github-actions[bot] over 2 years ago

https://github.com/crowdstrike/foundry-js - v0.11.0

Minor Changes

  • #53 2000545 Thanks @RuslanZavacky! - Improve how we handle onClick for navigation. Now when adding event listener to click event:

    javascript document .querySelector('[data-internal-links]') .addEventListener('click', (event) => falcon.navigation.onClick(event, '_self', 'internal'), );

    we'll call preventDefault correctly and won't throw error in the console.

- TypeScript
Published by github-actions[bot] over 2 years ago

https://github.com/crowdstrike/foundry-js - v0.10.1

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.10.0

Minor Changes

  • #49 0cbf06a Thanks @RuslanZavacky! - * Use getIntelMitreEntitiesMatrixV1 instead of getEntitiesMatrixV1
    • Updated available APIs

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.9.0

Minor Changes

  • #45 3d15b8f Thanks @simonihmig! - [BREAKING] Refactor namespaces for consistency

    This change moves the Cloud APIs, which were previously accessed directly from the FalconAPI instance, to their own .api namespace.

    To migrate:

    ```js // before: falcon.incidents.getQueriesIncidentsV1();

    // after: falcon.api.incidents.getQueriesIncidentsV1(); ```

    Furthermore, the uploadFile() function has been moved into the existing .ui namespace.

    To migrate:

    ```js // before: falcon.uploadFile('remote-response');

    // after: falcon.ui.uploadFile('remote-response'); ```

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.8.2

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.8.1

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.8.0

Minor Changes

  • #36 df231a5 Thanks @RuslanZavacky! - * To initialize CloudFunction abstraction, we can pass id + version (optional) or name + version (optional). Latter will be the default way forward - name + version:

    javascript const cloudFunction = falcon.cloudFunction({ name: 'my-function-name', version: 6, });

    • How we pass query and header to the cloud function is changing.

    javascript const postResponse = await cloudFunction .path('/actions') .post( { action: 'ok' }, { query: { param1: 'value1' }, header: { header1: 'value1' } }, ); - Collections: search method definition updated to match API improvements - LogScale: added savedSearch method to execute saved searches - App ID will be passed with initial data and will be automatically appended in places where it is required - Updated APIs endpoints for Collections and RTR

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.7.3

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.7.2

Patch Changes

  • #32 fd4c415 Thanks @simonihmig! - Add user data to local data

    We now pass the user's uuid and username as local data to extensions

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.7.1

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.7.0

Minor Changes

Patch Changes

  • #26 946c3a1 Thanks @simonihmig! - Fix return type of bridge.postMessage() using proper ResponseFor type

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.6.1

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.6.0

Minor Changes

Patch Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.5.1

Patch Changes

  • #18 d8a515a Thanks @simonihmig! - Fix package.json exports for API types

    For types, we want to allow importing from e.g. /apis/workflows, which should map to /dist/apis/workflows/index.d.ts (note the implicit index module). For real runtime imports, we still only allow importing from index, i.e. @crowdstrike/foundry-js.

- TypeScript
Published by github-actions[bot] almost 3 years ago

https://github.com/crowdstrike/foundry-js - v0.5.0

Minor Changes

- TypeScript
Published by github-actions[bot] almost 3 years ago