Skip to content

Commit 5690dbd

Browse files
committed
Updated sourcemaps
1 parent d991f31 commit 5690dbd

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

dist/esnext/Lib.d.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,31 @@ export interface TrackEventOptions {
2626
};
2727
}
2828
export interface IPageViewPayload {
29-
lc: string | undefined;
30-
tz: string | undefined;
31-
ref: string | undefined;
32-
so: string | undefined;
33-
me: string | undefined;
34-
ca: string | undefined;
35-
te: string | undefined;
36-
co: string | undefined;
37-
pg: string | null | undefined;
29+
lc?: string;
30+
tz?: string;
31+
ref?: string;
32+
so?: string;
33+
me?: string;
34+
ca?: string;
35+
te?: string;
36+
co?: string;
37+
pg?: string | null;
3838
/** Pageview-related metadata object with string values. */
3939
meta?: {
4040
[key: string]: string;
4141
};
4242
}
4343
export interface IErrorEventPayload {
4444
name: string;
45-
message: string | null | undefined;
46-
lineno: number | null | undefined;
47-
colno: number | null | undefined;
48-
filename: string | null | undefined;
45+
message?: string | null;
46+
lineno?: number | null;
47+
colno?: number | null;
48+
filename?: string | null;
4949
}
5050
export interface IInternalErrorEventPayload extends IErrorEventPayload {
51-
lc: string | undefined;
52-
tz: string | undefined;
53-
pg: string | null | undefined;
51+
lc?: string;
52+
tz?: string;
53+
pg?: string | null;
5454
}
5555
interface IPerfPayload {
5656
dns: number;
@@ -132,8 +132,8 @@ export declare class Lib {
132132
private projectID;
133133
private options?;
134134
private pageData;
135-
private pageViewsOptions;
136-
private errorsOptions;
135+
private pageViewsOptions?;
136+
private errorsOptions?;
137137
private perfStatsCollected;
138138
private activePage;
139139
private errorListenerExists;

dist/esnext/Lib.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/swetrix.cjs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/swetrix.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/swetrix.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)