Skip to content

Commit

Permalink
chore: no breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Oct 12, 2024
1 parent ebf543b commit 24894ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* @deprecated `username` is no longer required for web API calls. Pass a string containing just your webApiKey instead.
*/
interface LegacyAuthObject {
export interface AuthObject {
/**
* You or your app's exact username on the RetroAchievements.org website.
* For example, https://retroachievements.org/user/Scott would have a value
Expand All @@ -23,4 +23,4 @@ interface LegacyAuthObject {
webApiKey: string;
}

export type ApiAuthorization = string | LegacyAuthObject;
export type ApiAuthorization = string | AuthObject;
2 changes: 1 addition & 1 deletion src/utils/public/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./auth-object.model";
export * from "./api-authorization.model";
export * from "./award-kind.model";

0 comments on commit 24894ae

Please sign in to comment.