Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
golsch committed Dec 16, 2024
1 parent 94501cb commit f2e1193
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mycore/mycore",
"version": "1.0.6",
"version": "1.0.0",
"license": "GPL-3.0",
"homepage": "https://www.mycore.de",
"repository": "https://github.com/MyCoRe-Org/mycore-js.git",
Expand Down
2 changes: 1 addition & 1 deletion src/auth/fetch-jwt.ts → src/auth/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ interface MCRJWTResponse {
* @throws Will throw an error if the fetch operation fails, if the server response is invalid or unexpected,
* or if the login attempt fails.
*/
export const fetchJWT = async (
export const fetchAccessToken = async (
baseUrl: string,
params?: Record<string, string>,
): Promise<string> => {
Expand Down
2 changes: 1 addition & 1 deletion src/auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
* @module
*/

export * from './fetch-jwt.ts';
export * from './helpers.ts';

0 comments on commit f2e1193

Please sign in to comment.