Skip to content

@data-client/[email protected]

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Jul 10:04
· 294 commits to master since this release
785208c

Patch Changes

  • #3161 b932dca Thanks @ntucker! - Add jsdocs to IdlingNetworkManager

  • e4751d9 Thanks @ntucker! - NetworkManager constructor uses keyword args

    Before

    new NetworkManager(42, 7);

    After

    new NetworkManager({ dataExpiryLength: 42, errorExpiryLength: 7 });
  • 09ad848 Thanks @ntucker! - state.endpoints moved above indexes

    entites and endpoints are the most commonly inspected
    parts of state when debugging, so it is better to have endpoints
    above indexes.