Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/context/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
signOut: () => void;
manageAccount: () => void;
setUser: (e: UserDataContext) => Promise<UserContext>;
setUserValue: (key: string, value: any) => Promise<UserContext>;

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 10 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and windows-latest

Unexpected any. Specify a different type
getAccessToken: (e?: {
token?: string;
waitForToken?: string;
waitForToken?: boolean;
[key: string]: any;

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 14 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and windows-latest

Unexpected any. Specify a different type
}) => Promise<string | undefined | null>;
getFirebaseIdToken: (token: string) => Promise<string>;
getAppConfig: () => any;

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 17 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and windows-latest

Unexpected any. Specify a different type
onAuthenticated: (
callback: (userData: UserDataContext) => void
) => Unsubscribe;
Expand Down Expand Up @@ -82,10 +82,10 @@
groups: UserGroup[];
redacted_fields: string[];
verified_data: {
[key: string]: any | null;

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 85 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and windows-latest

Unexpected any. Specify a different type
};
meta: {
[key: string]: any | null;

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 20.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and windows-latest

Unexpected any. Specify a different type

Check warning on line 88 in src/context/types.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 22.x and windows-latest

Unexpected any. Specify a different type
};
instant_user?: {
is_initializing: boolean;
Expand Down
Loading