Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Feb 5, 2024
1 parent 5ddb42a commit 879a7c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ $ npm install @seneca/bud-provider @seneca/env
* `entity` : object
* `wait` : object
* `limit` : object
* `store` : object
* `init$` : boolean


Expand Down
4 changes: 2 additions & 2 deletions dist/bud-provider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ declare function BudProvider(this: any, options: FullBudProviderOptions): {
sdk: () => null;
stats: () => any;
util: {
getTokenState: () => "init" | "start" | "request" | "refresh" | "active";
setTokenState: (tokenStateIn: "init" | "start" | "request" | "refresh" | "active") => "init" | "start" | "request" | "refresh" | "active";
getTokenState: () => "active" | "start" | "refresh" | "init" | "request";
setTokenState: (tokenStateIn: "active" | "start" | "refresh" | "init" | "request") => "active" | "start" | "refresh" | "init" | "request";
getToken: (name: string) => any;
setToken: (name: string, value: string) => void;
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seneca/bud-provider",
"version": "0.6.2",
"version": "0.7.0",
"main": "dist/bud-provider.js",
"type": "commonjs",
"types": "dist/bud-provider.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion test/bud-provider.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ describe('bud-provider', () => {

console.log('PERSIST STATS', seneca.export('BudProvider/stats')())

}, 11111)
}, 22222)



Expand Down

0 comments on commit 879a7c5

Please sign in to comment.