Skip to content

Commit

Permalink
re-run test
Browse files Browse the repository at this point in the history
  • Loading branch information
dancingfrog committed Jul 29, 2024
1 parent 3ebfa38 commit 75e2792
Show file tree
Hide file tree
Showing 19 changed files with 692 additions and 84 deletions.
2 changes: 1 addition & 1 deletion inst/dist/@cori-risi/cotexts/AmplifyContextProvider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default function AmplifyContextProvider(props: {
children?: ReactElement;
domain?: string;
region?: string;
identityPoolId?: string;
userPoolId?: string;
userPoolClientId?: string;
identityPoolId?: string;
}): React.JSX.Element;
export {};
//# sourceMappingURL=AmplifyContextProvider.d.ts.map

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

144 changes: 140 additions & 4 deletions inst/dist/@cori-risi/cotexts/AmplifyContextProvider.js

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

2 changes: 1 addition & 1 deletion inst/dist/@cori-risi/cotexts/AmplifyContextProvider.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions inst/dist/@cori-risi/cotexts/ApiContextProvider.d.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
import React, { ReactElement } from "react";
import { AxiosInstance } from 'axios';
import { JWT } from "@aws-amplify/auth";
import "./styles/ApiContextProvider.css";
import { User } from "../models";
interface ApiContextType {
apiClient: AxiosInstance;
authenticated: boolean;
authenticated_user: User | null;
autoSignOut: (() => void) | null;
baseURL: string;
token: JWT | null;
data: any;
setData: ((newData: any) => void) | null;
}
export declare const ApiContext: React.Context<ApiContextType | null>;
export default function ApiContextProvider(props: {
children?: ReactElement;
baseURL?: string;
fetchAuthSession?: Function;
getCurrentUser?: Function;
signOut?: Function;
}): React.JSX.Element;
export {};
//# sourceMappingURL=ApiContextProvider.d.ts.map
2 changes: 1 addition & 1 deletion inst/dist/@cori-risi/cotexts/ApiContextProvider.d.ts.map

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

Loading

0 comments on commit 75e2792

Please sign in to comment.