Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 0 deletions dist/1.bundle.js

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

1 change: 1 addition & 0 deletions dist/1.bundle.js.map

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

2 changes: 2 additions & 0 deletions dist/2.bundle.js

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

1 change: 1 addition & 0 deletions dist/2.bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/EasybaseProvider/g.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Globals } from "./types";
import { Globals, EasybaseProviderProps } from "./types";
declare const _g: Globals;
export default _g;
export declare function gFactory(): Globals;
export declare function gFactory({ ebconfig, options }: EasybaseProviderProps): Globals;
11 changes: 9 additions & 2 deletions dist/EasybaseProvider/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ export interface EasybaseProviderPropsOptions {
authentication?: string;
/** Log Easybase react status and events to console. */
logging?: boolean;
/** Google Analytics 4 Measurement ID for user activity reporting */
googleAnalyticsId?: string;
/** **Only Required for React Native** – Google Analytics 4 Measurement Protocol Secret ID for user activity reporting. To create a new secret, navigate in the Google Analytics UI to: Admin > Data Streams > choose your stream > Measurement Protocol > Create */
googleAnalyticsSecret?: string;
}
export interface EasybaseProviderProps {
/** EasyBase ebconfig object. Can be downloaded in the integration drawer next to 'React Token'. This is automatically generated. */
Expand Down Expand Up @@ -344,11 +348,14 @@ export interface Globals {
ebconfig: Ebconfig;
token: string;
refreshToken: string;
integrationID: string;
session: number;
options: EasybaseProviderPropsOptions;
instance: string;
instance: "Node" | "React" | "React Native";
mounted: boolean;
newTokenCallback(): void;
userID: string | undefined;
analyticsEnabled: boolean;
analyticsEvent(eventTitle: string, params?: Record<string, any>): void;
analyticsIdentify(hashedUserId: string): void;
GA_USER_ID_SALT: string;
}
2 changes: 1 addition & 1 deletion dist/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bundle.js.map

Large diffs are not rendered by default.

Loading