@ianlucas/remix-auth-steam 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ export interface SteamStrategyOptions {
|
|
|
8
8
|
}
|
|
9
9
|
export type SteamStrategyVerifyParams = UserSummary;
|
|
10
10
|
export declare class SteamStrategy<User> extends Strategy<User, SteamStrategyVerifyParams> {
|
|
11
|
-
name: string;
|
|
12
11
|
private options;
|
|
13
|
-
|
|
12
|
+
name: string;
|
|
13
|
+
constructor(options: SteamStrategyOptions | ((request: Request) => Promise<SteamStrategyOptions>), verify: StrategyVerifyCallback<User, SteamStrategyVerifyParams>);
|
|
14
14
|
authenticate(request: Request, sessionStorage: SessionStorage, options: AuthenticateOptions): Promise<User>;
|
|
15
15
|
}
|
package/dist/index.js
CHANGED