@vrplatform/log 2.0.0-alpha.25 → 2.0.0-alpha.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,19 +30,19 @@ export type TrackingProps = {
|
|
|
30
30
|
debugging?: boolean;
|
|
31
31
|
};
|
|
32
32
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
33
|
-
type TrackProps = OptionalUser<{
|
|
33
|
+
export type TrackProps = OptionalUser<{
|
|
34
34
|
groupId: string;
|
|
35
35
|
event: TrackingEvent;
|
|
36
36
|
properties: Record<string, string | number | boolean | null | undefined>;
|
|
37
37
|
timestamp?: Date;
|
|
38
38
|
}>;
|
|
39
|
-
type IdentifyProps = {
|
|
39
|
+
export type IdentifyProps = {
|
|
40
40
|
userId: string;
|
|
41
41
|
traits: Record<string, string | number | boolean | null | undefined>;
|
|
42
42
|
disableGeoip?: boolean;
|
|
43
43
|
timestamp?: Date;
|
|
44
44
|
};
|
|
45
|
-
type GroupProps = OptionalUser<{
|
|
45
|
+
export type GroupProps = OptionalUser<{
|
|
46
46
|
groupId: string;
|
|
47
47
|
traits?: Record<string, string | number | boolean | null | undefined>;
|
|
48
48
|
timestamp?: Date;
|
|
@@ -30,19 +30,19 @@ export type TrackingProps = {
|
|
|
30
30
|
debugging?: boolean;
|
|
31
31
|
};
|
|
32
32
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
33
|
-
type TrackProps = OptionalUser<{
|
|
33
|
+
export type TrackProps = OptionalUser<{
|
|
34
34
|
groupId: string;
|
|
35
35
|
event: TrackingEvent;
|
|
36
36
|
properties: Record<string, string | number | boolean | null | undefined>;
|
|
37
37
|
timestamp?: Date;
|
|
38
38
|
}>;
|
|
39
|
-
type IdentifyProps = {
|
|
39
|
+
export type IdentifyProps = {
|
|
40
40
|
userId: string;
|
|
41
41
|
traits: Record<string, string | number | boolean | null | undefined>;
|
|
42
42
|
disableGeoip?: boolean;
|
|
43
43
|
timestamp?: Date;
|
|
44
44
|
};
|
|
45
|
-
type GroupProps = OptionalUser<{
|
|
45
|
+
export type GroupProps = OptionalUser<{
|
|
46
46
|
groupId: string;
|
|
47
47
|
traits?: Record<string, string | number | boolean | null | undefined>;
|
|
48
48
|
timestamp?: Date;
|
package/package.json
CHANGED
package/src/tracking/index.ts
CHANGED
|
@@ -156,19 +156,19 @@ export type TrackingProps = {
|
|
|
156
156
|
};
|
|
157
157
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
158
158
|
|
|
159
|
-
type TrackProps = OptionalUser<{
|
|
159
|
+
export type TrackProps = OptionalUser<{
|
|
160
160
|
groupId: string;
|
|
161
161
|
event: TrackingEvent;
|
|
162
162
|
properties: Record<string, string | number | boolean | null | undefined>;
|
|
163
163
|
timestamp?: Date;
|
|
164
164
|
}>;
|
|
165
|
-
type IdentifyProps = {
|
|
165
|
+
export type IdentifyProps = {
|
|
166
166
|
userId: string;
|
|
167
167
|
traits: Record<string, string | number | boolean | null | undefined>;
|
|
168
168
|
disableGeoip?: boolean;
|
|
169
169
|
timestamp?: Date;
|
|
170
170
|
};
|
|
171
|
-
type GroupProps = OptionalUser<{
|
|
171
|
+
export type GroupProps = OptionalUser<{
|
|
172
172
|
groupId: string;
|
|
173
173
|
traits?: Record<string, string | number | boolean | null | undefined>;
|
|
174
174
|
timestamp?: Date;
|