Skip to content

Commit

Permalink
Remove empty export
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-stytch committed Aug 2, 2023
1 parent 27b5560 commit 798ffba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
2 changes: 0 additions & 2 deletions lib/b2b/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ export type {
B2BOAuthDiscoveryAuthenticateResponse,
} from "./oauth_discovery";

export type {} from "./otp";

export type {
B2BOTPSmsAuthenticateRequest,
B2BOTPSmsAuthenticateResponse,
Expand Down
10 changes: 5 additions & 5 deletions lib/b2b/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ export interface MemberSession {
expires_at: string;
// An array of different authentication factors that have initiated a Session.
authentication_factors: AuthenticationFactor[];
/**
* The custom claims map for a Session. Claims can be added to a session during a Sessions authenticate
* call.
*/
custom_claims: Record<string, any>; // eslint-disable-line @typescript-eslint/no-explicit-any
/**
* Globally unique UUID that identifies a specific Organization. The `organization_id` is critical to
* perform operations on an Organization, so be sure to preserve this value.
*/
organization_id: string;
/**
* The custom claims map for a Session. Claims can be added to a session during a Sessions authenticate
* call.
*/
custom_claims?: Record<string, any>; // eslint-disable-line @typescript-eslint/no-explicit-any
}

// Request type for `sessions.authenticate`.
Expand Down
1 change: 0 additions & 1 deletion types/lib/b2b/index.d.ts

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

10 changes: 5 additions & 5 deletions types/lib/b2b/sessions.d.ts

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

0 comments on commit 798ffba

Please sign in to comment.