Skip to content

Commit

Permalink
feat: expose storage constant keys (#616)
Browse files Browse the repository at this point in the history
* feat: expose storage keys
* docs: changelog entry added
Co-authored-by: Kyle Peacock <kylpeacock@gmail.com>
  • Loading branch information
peterpeterparker committed Sep 20, 2022
1 parent 0522b83 commit 58a892a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/generated/changelog.html
Expand Up @@ -10,6 +10,10 @@
<h1>Agent-JS Changelog</h1>

<section>
<h2>Version 0.13.4</h2>
<ul>
<li>chore: auth-client expose storage constant keys</li>
</ul>
<h2>Version 0.13.3</h2>
<ul>
<li>
Expand All @@ -29,7 +33,6 @@ <h2>Version 0.13.3</h2>
replica.
</li>
</ul>

<h2>Version 0.13.2</h2>
<ul>
<li>auth-client avoids localstorage global and can be used in a web worker or nodejs</li>
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-client/src/index.ts
Expand Up @@ -25,7 +25,7 @@ import {
LocalStorage,
} from './storage';

export { IdbStorage, LocalStorage } from './storage';
export { IdbStorage, LocalStorage, KEY_STORAGE_DELEGATION, KEY_STORAGE_KEY } from './storage';
export { IdbKeyVal, DBCreateOptions } from './db';

const IDENTITY_PROVIDER_DEFAULT = 'https://identity.ic0.app';
Expand Down

0 comments on commit 58a892a

Please sign in to comment.