Skip to content

Commit

Permalink
v0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Dec 15, 2023
1 parent 0d99010 commit 93ea03e
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 58 deletions.
8 changes: 6 additions & 2 deletions dist/bud-provider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ declare function BudProvider(this: any, options: FullBudProviderOptions): {
customersecret: string;
}) => Promise<any>;
sdk: () => null;
getToken: (name: string) => any;
setToken: (name: string, value: string) => void;
util: {
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;
};
};
};
export default BudProvider;
59 changes: 34 additions & 25 deletions dist/bud-provider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 93ea03e

Please sign in to comment.