@vrplatform/log 2.0.0-alpha.1 → 2.0.0-alpha.10
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.
- package/build/main/tracking/index.d.ts +34 -11
- package/build/main/tracking/index.js +52 -16
- package/build/main/tracking/index.js.map +1 -1
- package/build/module/tracking/index.d.ts +34 -11
- package/build/module/tracking/index.js +52 -16
- package/build/module/tracking/index.js.map +1 -1
- package/package.json +1 -1
- package/src/tracking/index.ts +158 -33
|
@@ -1,15 +1,27 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Analytics } from '@june-so/analytics-node';
|
|
2
|
+
import { PostHog } from 'posthog-node';
|
|
3
|
+
type AuthEvent = 'account_signin_completed' | 'account_signup_code_requested' | 'account_signup_code_completed' | 'account_signup_code_failed' | 'account_signup_completed' | 'account_password_reset_requested' | 'account_password_reset_failed' | 'account_password_reset_completed' | 'account_invitation_accepted' | 'account_signed_out';
|
|
4
|
+
type TeamEvent = 'team_added' | 'team_info_updated' | 'team_deleted' | 'team_member_removed';
|
|
5
|
+
type ConnectionEvent = 'connection_created' | 'connection_reconnected' | 'connection_deleted' | 'connection_requested';
|
|
6
|
+
type OwnershipEvent = 'ownership_created' | 'ownership_updated' | 'ownership_deleted';
|
|
7
|
+
type OwnerEvent = 'owner_created' | 'owner_updated' | 'owner_deleted' | 'owner_tax_info_modal_opened' | 'owner_tax_info_modal_submitted';
|
|
8
|
+
type SetupEvent = 'setup_classes_set' | 'setup_accounting_version_completed' | 'setup_accounting_config_completed' | 'setup_owner_imported' | 'setup_listing_imported';
|
|
9
|
+
type AutomationEvent = 'automation_created' | 'automation_updated' | 'automation_deleted';
|
|
10
|
+
type TaxStatementEvent = 'tax_statement_preview_opened' | 'tax_statement_downloaded';
|
|
11
|
+
type GLOwnerStatementEvent = 'gl_owner_statement_preview_opened' | 'gl_owner_statement_downloaded';
|
|
12
|
+
type HyperlineEvent = 'hyperline_invoice_ready' | 'hyperline_invoice_settled' | 'hyperline_trial_ended' | 'hyperline_subscription_created' | 'hyperline_subscription_charged' | 'hyperline_subscription_cancelled';
|
|
13
|
+
type TestEvent = 'test_event' | 'test_error';
|
|
14
|
+
export type TrackingEvent = AuthEvent | TeamEvent | ConnectionEvent | OwnershipEvent | OwnerEvent | SetupEvent | AutomationEvent | TaxStatementEvent | GLOwnerStatementEvent | HyperlineEvent | TestEvent;
|
|
2
15
|
export type TrackingProps = {
|
|
3
16
|
name: string;
|
|
4
17
|
dataset: string;
|
|
5
18
|
env: {
|
|
6
|
-
INTERCOM_TOKEN
|
|
7
|
-
|
|
8
|
-
|
|
19
|
+
INTERCOM_TOKEN?: string;
|
|
20
|
+
JUNESO_TOKEN?: string;
|
|
21
|
+
POSTHOG_TOKEN?: string;
|
|
9
22
|
};
|
|
10
23
|
};
|
|
11
24
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
12
|
-
export type Intercom = ReturnType<typeof useIntercom>;
|
|
13
25
|
type OptionalUser<T> = T & ({
|
|
14
26
|
userId: string;
|
|
15
27
|
anonymousId?: string;
|
|
@@ -21,8 +33,8 @@ export declare const useTracking: ({ dataset, env, name }: TrackingProps, isDev?
|
|
|
21
33
|
track: ({ userId, groupId, event, properties, }: {
|
|
22
34
|
userId: string;
|
|
23
35
|
groupId: string;
|
|
24
|
-
event:
|
|
25
|
-
properties: Record<string,
|
|
36
|
+
event: TrackingEvent;
|
|
37
|
+
properties: Record<string, string | number | boolean | null | undefined>;
|
|
26
38
|
}) => Promise<void>;
|
|
27
39
|
identify: ({ traits, userId, disableGeoip, }: {
|
|
28
40
|
userId: string;
|
|
@@ -33,12 +45,23 @@ export declare const useTracking: ({ dataset, env, name }: TrackingProps, isDev?
|
|
|
33
45
|
groupId: string;
|
|
34
46
|
traits?: Record<string, any>;
|
|
35
47
|
}>) => void;
|
|
36
|
-
|
|
48
|
+
shutdown: () => Promise<[void | undefined, void | undefined, void]>;
|
|
49
|
+
alias: ((data: {
|
|
37
50
|
distinctId: string;
|
|
38
51
|
alias: string;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
52
|
+
disableGeoip?: boolean;
|
|
53
|
+
}) => void) | undefined;
|
|
54
|
+
isFeatureEnabled: ((key: string, distinctId: string, options?: {
|
|
55
|
+
groups?: Record<string, string>;
|
|
56
|
+
personProperties?: Record<string, string>;
|
|
57
|
+
groupProperties?: Record<string, Record<string, string>>;
|
|
58
|
+
onlyEvaluateLocally?: boolean;
|
|
59
|
+
sendFeatureFlagEvents?: boolean;
|
|
60
|
+
disableGeoip?: boolean;
|
|
61
|
+
}) => Promise<boolean | undefined>) | undefined;
|
|
62
|
+
intercom: import("./intercom").IntercomAPI | undefined;
|
|
63
|
+
posthog: PostHog | undefined;
|
|
64
|
+
june: Analytics | undefined;
|
|
42
65
|
log: import("../log").WorkerLog;
|
|
43
66
|
};
|
|
44
67
|
export {};
|
|
@@ -5,19 +5,35 @@ const analytics_node_1 = require("@june-so/analytics-node");
|
|
|
5
5
|
const posthog_node_1 = require("posthog-node");
|
|
6
6
|
const log_1 = require("../log");
|
|
7
7
|
const intercom_1 = require("./intercom");
|
|
8
|
+
const E2E_TEST_USERS = [
|
|
9
|
+
'9e7dfc88-503c-4222-9905-9116169d2203', // lars+checkly@finalytic.co
|
|
10
|
+
'113d73d8-ee21-46b7-a12a-a74f632401ca', // e2e-invite-member@finalytic.io
|
|
11
|
+
'917b7c4e-cb03-491c-9e94-d33a5bdeca05', // e2e-invite-owner@finalytic.io
|
|
12
|
+
'ec8e5572-74d0-4ae6-af73-bca8db9a27e9', // e2e-sign-up@finalytic.io
|
|
13
|
+
];
|
|
14
|
+
const E2E_TEST_TEAMS = [
|
|
15
|
+
'c4fd21b4-8447-43a2-bdcb-f06a85a935ad', // VRP Automated Testing
|
|
16
|
+
'8f21060e-afe6-410a-b2f4-00a3caa20786', // test_company_xxxx
|
|
17
|
+
];
|
|
18
|
+
const isTest = (userId, groupId) => E2E_TEST_USERS.includes(userId) ||
|
|
19
|
+
(groupId && E2E_TEST_TEAMS.includes(groupId));
|
|
8
20
|
const useTracking = ({ dataset, env, name }, isDev) => {
|
|
9
21
|
const axiom = (0, log_1.useLog)({ name, dataset, env });
|
|
10
|
-
const intercom =
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
22
|
+
const intercom = env.INTERCOM_TOKEN
|
|
23
|
+
? (0, intercom_1.useIntercom)(env.INTERCOM_TOKEN, axiom)
|
|
24
|
+
: undefined;
|
|
25
|
+
const juneso = env.JUNESO_TOKEN ? new analytics_node_1.Analytics(env.JUNESO_TOKEN) : undefined;
|
|
26
|
+
const posthog = env.POSTHOG_TOKEN
|
|
27
|
+
? new posthog_node_1.PostHog(env.POSTHOG_TOKEN, {
|
|
28
|
+
host: 'https://app.posthog.com',
|
|
29
|
+
})
|
|
30
|
+
: undefined;
|
|
15
31
|
return {
|
|
16
32
|
// General
|
|
17
33
|
track: async ({ userId, groupId, event, properties, }) => {
|
|
18
|
-
if (isDev)
|
|
34
|
+
if (isDev || isTest(userId, groupId))
|
|
19
35
|
return;
|
|
20
|
-
posthog
|
|
36
|
+
posthog?.capture({
|
|
21
37
|
distinctId: userId,
|
|
22
38
|
event,
|
|
23
39
|
groups: {
|
|
@@ -25,14 +41,17 @@ const useTracking = ({ dataset, env, name }, isDev) => {
|
|
|
25
41
|
},
|
|
26
42
|
properties,
|
|
27
43
|
});
|
|
28
|
-
juneso
|
|
44
|
+
juneso?.track({
|
|
29
45
|
userId,
|
|
30
46
|
event,
|
|
31
47
|
properties,
|
|
32
48
|
context: { groupId },
|
|
49
|
+
}, (err) => {
|
|
50
|
+
if (err)
|
|
51
|
+
console.error(err);
|
|
33
52
|
});
|
|
34
53
|
try {
|
|
35
|
-
await intercom
|
|
54
|
+
await intercom?.trackEvent({
|
|
36
55
|
user_id: userId,
|
|
37
56
|
event_name: event,
|
|
38
57
|
metadata: properties,
|
|
@@ -43,33 +62,50 @@ const useTracking = ({ dataset, env, name }, isDev) => {
|
|
|
43
62
|
}
|
|
44
63
|
},
|
|
45
64
|
identify: ({ traits, userId, disableGeoip, }) => {
|
|
46
|
-
|
|
65
|
+
if (isDev || isTest(userId))
|
|
66
|
+
return;
|
|
67
|
+
posthog?.identify({
|
|
47
68
|
distinctId: userId,
|
|
48
69
|
properties: traits,
|
|
49
70
|
disableGeoip,
|
|
50
71
|
});
|
|
51
|
-
juneso
|
|
72
|
+
juneso?.identify({
|
|
52
73
|
userId,
|
|
53
74
|
traits,
|
|
75
|
+
}, (err) => {
|
|
76
|
+
if (err)
|
|
77
|
+
console.error(err);
|
|
54
78
|
});
|
|
55
79
|
},
|
|
56
80
|
group: ({ traits, groupId, userId, anonymousId, }) => {
|
|
57
|
-
|
|
81
|
+
if (isDev || isTest(userId || anonymousId || '', groupId))
|
|
82
|
+
return;
|
|
83
|
+
posthog?.groupIdentify({
|
|
58
84
|
groupKey: groupId,
|
|
59
85
|
groupType: 'tenant',
|
|
60
86
|
properties: traits,
|
|
61
87
|
distinctId: userId,
|
|
62
88
|
});
|
|
63
89
|
if (anonymousId)
|
|
64
|
-
juneso
|
|
90
|
+
juneso?.group({ anonymousId, groupId, traits }, (err) => console.error(err));
|
|
65
91
|
else if (userId)
|
|
66
|
-
juneso
|
|
92
|
+
juneso?.group({ userId, groupId, traits }, (err) => {
|
|
93
|
+
if (err)
|
|
94
|
+
console.error(err);
|
|
95
|
+
});
|
|
67
96
|
},
|
|
97
|
+
shutdown: async () => Promise.all([
|
|
98
|
+
posthog?.shutdown(),
|
|
99
|
+
juneso?.closeAndFlush(),
|
|
100
|
+
axiom?.flush(),
|
|
101
|
+
]),
|
|
68
102
|
// Posthog specific
|
|
69
|
-
alias:
|
|
70
|
-
|
|
103
|
+
alias: posthog?.alias,
|
|
104
|
+
isFeatureEnabled: posthog?.isFeatureEnabled,
|
|
71
105
|
// export intercom and axiom
|
|
72
106
|
intercom,
|
|
107
|
+
posthog,
|
|
108
|
+
june: juneso,
|
|
73
109
|
log: axiom,
|
|
74
110
|
};
|
|
75
111
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["tracking/index.ts"],"names":[],"mappings":";;;AAAA,4DAAoD;AACpD,+CAAuC;AACvC,gCAAgC;AAChC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["tracking/index.ts"],"names":[],"mappings":";;;AAAA,4DAAoD;AACpD,+CAAuC;AACvC,gCAAgC;AAChC,yCAAyC;AAEzC,MAAM,cAAc,GAAG;IACrB,sCAAsC,EAAE,4BAA4B;IACpE,sCAAsC,EAAE,iCAAiC;IACzE,sCAAsC,EAAE,gCAAgC;IACxE,sCAAsC,EAAE,2BAA2B;CACpE,CAAC;AACF,MAAM,cAAc,GAAG;IACrB,sCAAsC,EAAE,wBAAwB;IAChE,sCAAsC,EAAE,oBAAoB;CAC7D,CAAC;AAEF,MAAM,MAAM,GAAG,CAAC,MAAc,EAAE,OAAgB,EAAE,EAAE,CAClD,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC;IAC/B,CAAC,OAAO,IAAI,cAAc,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;AAuGzC,MAAM,WAAW,GAAG,CACzB,EAAE,OAAO,EAAE,GAAG,EAAE,IAAI,EAAiB,EACrC,KAAe,EACf,EAAE;IACF,MAAM,KAAK,GAAG,IAAA,YAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC,CAAC;IAC7C,MAAM,QAAQ,GAAG,GAAG,CAAC,cAAc;QACjC,CAAC,CAAC,IAAA,sBAAW,EAAC,GAAG,CAAC,cAAc,EAAE,KAAK,CAAC;QACxC,CAAC,CAAC,SAAS,CAAC;IACd,MAAM,MAAM,GAAG,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,IAAI,0BAAS,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC9E,MAAM,OAAO,GAAG,GAAG,CAAC,aAAa;QAC/B,CAAC,CAAC,IAAI,sBAAO,CAAC,GAAG,CAAC,aAAa,EAAE;YAC7B,IAAI,EAAE,yBAAyB;SAChC,CAAC;QACJ,CAAC,CAAC,SAAS,CAAC;IAEd,OAAO;QACL,UAAU;QACV,KAAK,EAAE,KAAK,EAAE,EACZ,MAAM,EACN,OAAO,EACP,KAAK,EACL,UAAU,GAMX,EAAE,EAAE;YACH,IAAI,KAAK,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;gBAAE,OAAO;YAE7C,OAAO,EAAE,OAAO,CAAC;gBACf,UAAU,EAAE,MAAM;gBAClB,KAAK;gBACL,MAAM,EAAE;oBACN,MAAM,EAAE,OAAO;iBAChB;gBACD,UAAU;aACX,CAAC,CAAC;YACH,MAAM,EAAE,KAAK,CACX;gBACE,MAAM;gBACN,KAAK;gBACL,UAAU;gBACV,OAAO,EAAE,EAAE,OAAO,EAAE;aACrB,EACD,CAAC,GAAG,EAAE,EAAE;gBACN,IAAI,GAAG;oBAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC9B,CAAC,CACF,CAAC;YAEF,IAAI,CAAC;gBACH,MAAM,QAAQ,EAAE,UAAU,CAAC;oBACzB,OAAO,EAAE,MAAM;oBACf,UAAU,EAAE,KAAK;oBACjB,QAAQ,EAAE,UAAU;iBACrB,CAAC,CAAC;YACL,CAAC;YAAC,OAAO,KAAU,EAAE,CAAC;gBACpB,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvB,CAAC;QACH,CAAC;QACD,QAAQ,EAAE,CAAC,EACT,MAAM,EACN,MAAM,EACN,YAAY,GAKb,EAAE,EAAE;YACH,IAAI,KAAK,IAAI,MAAM,CAAC,MAAM,CAAC;gBAAE,OAAO;YAEpC,OAAO,EAAE,QAAQ,CAAC;gBAChB,UAAU,EAAE,MAAM;gBAClB,UAAU,EAAE,MAAM;gBAClB,YAAY;aACb,CAAC,CAAC;YACH,MAAM,EAAE,QAAQ,CACd;gBACE,MAAM;gBACN,MAAM;aACP,EACD,CAAC,GAAG,EAAE,EAAE;gBACN,IAAI,GAAG;oBAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YAC9B,CAAC,CACF,CAAC;QACJ,CAAC;QACD,KAAK,EAAE,CAAC,EACN,MAAM,EACN,OAAO,EACP,MAAM,EACN,WAAW,GAIX,EAAE,EAAE;YACJ,IAAI,KAAK,IAAI,MAAM,CAAC,MAAM,IAAI,WAAW,IAAI,EAAE,EAAE,OAAO,CAAC;gBAAE,OAAO;YAElE,OAAO,EAAE,aAAa,CAAC;gBACrB,QAAQ,EAAE,OAAO;gBACjB,SAAS,EAAE,QAAQ;gBACnB,UAAU,EAAE,MAAM;gBAClB,UAAU,EAAE,MAAM;aACnB,CAAC,CAAC;YACH,IAAI,WAAW;gBACb,MAAM,EAAE,KAAK,CAAC,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,CACtD,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CACnB,CAAC;iBACC,IAAI,MAAM;gBACb,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE;oBACjD,IAAI,GAAG;wBAAE,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAC9B,CAAC,CAAC,CAAC;QACP,CAAC;QACD,QAAQ,EAAE,KAAK,IAAI,EAAE,CACnB,OAAO,CAAC,GAAG,CAAC;YACV,OAAO,EAAE,QAAQ,EAAE;YACnB,MAAM,EAAE,aAAa,EAAE;YACvB,KAAK,EAAE,KAAK,EAAE;SACf,CAAC;QACJ,mBAAmB;QACnB,KAAK,EAAE,OAAO,EAAE,KAAK;QACrB,gBAAgB,EAAE,OAAO,EAAE,gBAAgB;QAC3C,4BAA4B;QAC5B,QAAQ;QACR,OAAO;QACP,IAAI,EAAE,MAAM;QACZ,GAAG,EAAE,KAAK;KACX,CAAC;AACJ,CAAC,CAAC;AA/HW,QAAA,WAAW,eA+HtB"}
|
|
@@ -1,15 +1,27 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Analytics } from '@june-so/analytics-node';
|
|
2
|
+
import { PostHog } from 'posthog-node';
|
|
3
|
+
type AuthEvent = 'account_signin_completed' | 'account_signup_code_requested' | 'account_signup_code_completed' | 'account_signup_code_failed' | 'account_signup_completed' | 'account_password_reset_requested' | 'account_password_reset_failed' | 'account_password_reset_completed' | 'account_invitation_accepted' | 'account_signed_out';
|
|
4
|
+
type TeamEvent = 'team_added' | 'team_info_updated' | 'team_deleted' | 'team_member_removed';
|
|
5
|
+
type ConnectionEvent = 'connection_created' | 'connection_reconnected' | 'connection_deleted' | 'connection_requested';
|
|
6
|
+
type OwnershipEvent = 'ownership_created' | 'ownership_updated' | 'ownership_deleted';
|
|
7
|
+
type OwnerEvent = 'owner_created' | 'owner_updated' | 'owner_deleted' | 'owner_tax_info_modal_opened' | 'owner_tax_info_modal_submitted';
|
|
8
|
+
type SetupEvent = 'setup_classes_set' | 'setup_accounting_version_completed' | 'setup_accounting_config_completed' | 'setup_owner_imported' | 'setup_listing_imported';
|
|
9
|
+
type AutomationEvent = 'automation_created' | 'automation_updated' | 'automation_deleted';
|
|
10
|
+
type TaxStatementEvent = 'tax_statement_preview_opened' | 'tax_statement_downloaded';
|
|
11
|
+
type GLOwnerStatementEvent = 'gl_owner_statement_preview_opened' | 'gl_owner_statement_downloaded';
|
|
12
|
+
type HyperlineEvent = 'hyperline_invoice_ready' | 'hyperline_invoice_settled' | 'hyperline_trial_ended' | 'hyperline_subscription_created' | 'hyperline_subscription_charged' | 'hyperline_subscription_cancelled';
|
|
13
|
+
type TestEvent = 'test_event' | 'test_error';
|
|
14
|
+
export type TrackingEvent = AuthEvent | TeamEvent | ConnectionEvent | OwnershipEvent | OwnerEvent | SetupEvent | AutomationEvent | TaxStatementEvent | GLOwnerStatementEvent | HyperlineEvent | TestEvent;
|
|
2
15
|
export type TrackingProps = {
|
|
3
16
|
name: string;
|
|
4
17
|
dataset: string;
|
|
5
18
|
env: {
|
|
6
|
-
INTERCOM_TOKEN
|
|
7
|
-
|
|
8
|
-
|
|
19
|
+
INTERCOM_TOKEN?: string;
|
|
20
|
+
JUNESO_TOKEN?: string;
|
|
21
|
+
POSTHOG_TOKEN?: string;
|
|
9
22
|
};
|
|
10
23
|
};
|
|
11
24
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
12
|
-
export type Intercom = ReturnType<typeof useIntercom>;
|
|
13
25
|
type OptionalUser<T> = T & ({
|
|
14
26
|
userId: string;
|
|
15
27
|
anonymousId?: string;
|
|
@@ -21,8 +33,8 @@ export declare const useTracking: ({ dataset, env, name }: TrackingProps, isDev?
|
|
|
21
33
|
track: ({ userId, groupId, event, properties, }: {
|
|
22
34
|
userId: string;
|
|
23
35
|
groupId: string;
|
|
24
|
-
event:
|
|
25
|
-
properties: Record<string,
|
|
36
|
+
event: TrackingEvent;
|
|
37
|
+
properties: Record<string, string | number | boolean | null | undefined>;
|
|
26
38
|
}) => Promise<void>;
|
|
27
39
|
identify: ({ traits, userId, disableGeoip, }: {
|
|
28
40
|
userId: string;
|
|
@@ -33,12 +45,23 @@ export declare const useTracking: ({ dataset, env, name }: TrackingProps, isDev?
|
|
|
33
45
|
groupId: string;
|
|
34
46
|
traits?: Record<string, any>;
|
|
35
47
|
}>) => void;
|
|
36
|
-
|
|
48
|
+
shutdown: () => Promise<[void | undefined, void | undefined, void]>;
|
|
49
|
+
alias: ((data: {
|
|
37
50
|
distinctId: string;
|
|
38
51
|
alias: string;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
52
|
+
disableGeoip?: boolean;
|
|
53
|
+
}) => void) | undefined;
|
|
54
|
+
isFeatureEnabled: ((key: string, distinctId: string, options?: {
|
|
55
|
+
groups?: Record<string, string>;
|
|
56
|
+
personProperties?: Record<string, string>;
|
|
57
|
+
groupProperties?: Record<string, Record<string, string>>;
|
|
58
|
+
onlyEvaluateLocally?: boolean;
|
|
59
|
+
sendFeatureFlagEvents?: boolean;
|
|
60
|
+
disableGeoip?: boolean;
|
|
61
|
+
}) => Promise<boolean | undefined>) | undefined;
|
|
62
|
+
intercom: import("./intercom").IntercomAPI | undefined;
|
|
63
|
+
posthog: PostHog | undefined;
|
|
64
|
+
june: Analytics | undefined;
|
|
42
65
|
log: import("../log").WorkerLog;
|
|
43
66
|
};
|
|
44
67
|
export {};
|
|
@@ -2,19 +2,35 @@ import { Analytics } from '@june-so/analytics-node';
|
|
|
2
2
|
import { PostHog } from 'posthog-node';
|
|
3
3
|
import { useLog } from '../log';
|
|
4
4
|
import { useIntercom } from './intercom';
|
|
5
|
+
const E2E_TEST_USERS = [
|
|
6
|
+
'9e7dfc88-503c-4222-9905-9116169d2203', // lars+checkly@finalytic.co
|
|
7
|
+
'113d73d8-ee21-46b7-a12a-a74f632401ca', // e2e-invite-member@finalytic.io
|
|
8
|
+
'917b7c4e-cb03-491c-9e94-d33a5bdeca05', // e2e-invite-owner@finalytic.io
|
|
9
|
+
'ec8e5572-74d0-4ae6-af73-bca8db9a27e9', // e2e-sign-up@finalytic.io
|
|
10
|
+
];
|
|
11
|
+
const E2E_TEST_TEAMS = [
|
|
12
|
+
'c4fd21b4-8447-43a2-bdcb-f06a85a935ad', // VRP Automated Testing
|
|
13
|
+
'8f21060e-afe6-410a-b2f4-00a3caa20786', // test_company_xxxx
|
|
14
|
+
];
|
|
15
|
+
const isTest = (userId, groupId) => E2E_TEST_USERS.includes(userId) ||
|
|
16
|
+
(groupId && E2E_TEST_TEAMS.includes(groupId));
|
|
5
17
|
export const useTracking = ({ dataset, env, name }, isDev) => {
|
|
6
18
|
const axiom = useLog({ name, dataset, env });
|
|
7
|
-
const intercom =
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
19
|
+
const intercom = env.INTERCOM_TOKEN
|
|
20
|
+
? useIntercom(env.INTERCOM_TOKEN, axiom)
|
|
21
|
+
: undefined;
|
|
22
|
+
const juneso = env.JUNESO_TOKEN ? new Analytics(env.JUNESO_TOKEN) : undefined;
|
|
23
|
+
const posthog = env.POSTHOG_TOKEN
|
|
24
|
+
? new PostHog(env.POSTHOG_TOKEN, {
|
|
25
|
+
host: 'https://app.posthog.com',
|
|
26
|
+
})
|
|
27
|
+
: undefined;
|
|
12
28
|
return {
|
|
13
29
|
// General
|
|
14
30
|
track: async ({ userId, groupId, event, properties, }) => {
|
|
15
|
-
if (isDev)
|
|
31
|
+
if (isDev || isTest(userId, groupId))
|
|
16
32
|
return;
|
|
17
|
-
posthog
|
|
33
|
+
posthog?.capture({
|
|
18
34
|
distinctId: userId,
|
|
19
35
|
event,
|
|
20
36
|
groups: {
|
|
@@ -22,14 +38,17 @@ export const useTracking = ({ dataset, env, name }, isDev) => {
|
|
|
22
38
|
},
|
|
23
39
|
properties,
|
|
24
40
|
});
|
|
25
|
-
juneso
|
|
41
|
+
juneso?.track({
|
|
26
42
|
userId,
|
|
27
43
|
event,
|
|
28
44
|
properties,
|
|
29
45
|
context: { groupId },
|
|
46
|
+
}, (err) => {
|
|
47
|
+
if (err)
|
|
48
|
+
console.error(err);
|
|
30
49
|
});
|
|
31
50
|
try {
|
|
32
|
-
await intercom
|
|
51
|
+
await intercom?.trackEvent({
|
|
33
52
|
user_id: userId,
|
|
34
53
|
event_name: event,
|
|
35
54
|
metadata: properties,
|
|
@@ -40,33 +59,50 @@ export const useTracking = ({ dataset, env, name }, isDev) => {
|
|
|
40
59
|
}
|
|
41
60
|
},
|
|
42
61
|
identify: ({ traits, userId, disableGeoip, }) => {
|
|
43
|
-
|
|
62
|
+
if (isDev || isTest(userId))
|
|
63
|
+
return;
|
|
64
|
+
posthog?.identify({
|
|
44
65
|
distinctId: userId,
|
|
45
66
|
properties: traits,
|
|
46
67
|
disableGeoip,
|
|
47
68
|
});
|
|
48
|
-
juneso
|
|
69
|
+
juneso?.identify({
|
|
49
70
|
userId,
|
|
50
71
|
traits,
|
|
72
|
+
}, (err) => {
|
|
73
|
+
if (err)
|
|
74
|
+
console.error(err);
|
|
51
75
|
});
|
|
52
76
|
},
|
|
53
77
|
group: ({ traits, groupId, userId, anonymousId, }) => {
|
|
54
|
-
|
|
78
|
+
if (isDev || isTest(userId || anonymousId || '', groupId))
|
|
79
|
+
return;
|
|
80
|
+
posthog?.groupIdentify({
|
|
55
81
|
groupKey: groupId,
|
|
56
82
|
groupType: 'tenant',
|
|
57
83
|
properties: traits,
|
|
58
84
|
distinctId: userId,
|
|
59
85
|
});
|
|
60
86
|
if (anonymousId)
|
|
61
|
-
juneso
|
|
87
|
+
juneso?.group({ anonymousId, groupId, traits }, (err) => console.error(err));
|
|
62
88
|
else if (userId)
|
|
63
|
-
juneso
|
|
89
|
+
juneso?.group({ userId, groupId, traits }, (err) => {
|
|
90
|
+
if (err)
|
|
91
|
+
console.error(err);
|
|
92
|
+
});
|
|
64
93
|
},
|
|
94
|
+
shutdown: async () => Promise.all([
|
|
95
|
+
posthog?.shutdown(),
|
|
96
|
+
juneso?.closeAndFlush(),
|
|
97
|
+
axiom?.flush(),
|
|
98
|
+
]),
|
|
65
99
|
// Posthog specific
|
|
66
|
-
alias:
|
|
67
|
-
|
|
100
|
+
alias: posthog?.alias,
|
|
101
|
+
isFeatureEnabled: posthog?.isFeatureEnabled,
|
|
68
102
|
// export intercom and axiom
|
|
69
103
|
intercom,
|
|
104
|
+
posthog,
|
|
105
|
+
june: juneso,
|
|
70
106
|
log: axiom,
|
|
71
107
|
};
|
|
72
108
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["tracking/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACvC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["tracking/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/src/tracking/index.ts
CHANGED
|
@@ -1,19 +1,114 @@
|
|
|
1
1
|
import { Analytics } from '@june-so/analytics-node';
|
|
2
2
|
import { PostHog } from 'posthog-node';
|
|
3
3
|
import { useLog } from '../log';
|
|
4
|
-
import {
|
|
4
|
+
import { useIntercom } from './intercom';
|
|
5
|
+
|
|
6
|
+
const E2E_TEST_USERS = [
|
|
7
|
+
'9e7dfc88-503c-4222-9905-9116169d2203', // lars+checkly@finalytic.co
|
|
8
|
+
'113d73d8-ee21-46b7-a12a-a74f632401ca', // e2e-invite-member@finalytic.io
|
|
9
|
+
'917b7c4e-cb03-491c-9e94-d33a5bdeca05', // e2e-invite-owner@finalytic.io
|
|
10
|
+
'ec8e5572-74d0-4ae6-af73-bca8db9a27e9', // e2e-sign-up@finalytic.io
|
|
11
|
+
];
|
|
12
|
+
const E2E_TEST_TEAMS = [
|
|
13
|
+
'c4fd21b4-8447-43a2-bdcb-f06a85a935ad', // VRP Automated Testing
|
|
14
|
+
'8f21060e-afe6-410a-b2f4-00a3caa20786', // test_company_xxxx
|
|
15
|
+
];
|
|
16
|
+
|
|
17
|
+
const isTest = (userId: string, groupId?: string) =>
|
|
18
|
+
E2E_TEST_USERS.includes(userId) ||
|
|
19
|
+
(groupId && E2E_TEST_TEAMS.includes(groupId));
|
|
20
|
+
|
|
21
|
+
type AuthEvent =
|
|
22
|
+
| 'account_signin_completed'
|
|
23
|
+
| 'account_signup_code_requested'
|
|
24
|
+
| 'account_signup_code_completed'
|
|
25
|
+
| 'account_signup_code_failed'
|
|
26
|
+
| 'account_signup_completed' // from list
|
|
27
|
+
| 'account_password_reset_requested'
|
|
28
|
+
| 'account_password_reset_failed'
|
|
29
|
+
| 'account_password_reset_completed'
|
|
30
|
+
| 'account_invitation_accepted' // from list
|
|
31
|
+
| 'account_signed_out'; // missing in list
|
|
32
|
+
|
|
33
|
+
type TeamEvent =
|
|
34
|
+
| 'team_added'
|
|
35
|
+
| 'team_info_updated'
|
|
36
|
+
| 'team_deleted'
|
|
37
|
+
| 'team_member_removed'; // missing in list
|
|
38
|
+
|
|
39
|
+
type ConnectionEvent =
|
|
40
|
+
| 'connection_created'
|
|
41
|
+
| 'connection_reconnected'
|
|
42
|
+
| 'connection_deleted'
|
|
43
|
+
| 'connection_requested';
|
|
44
|
+
|
|
45
|
+
type OwnershipEvent =
|
|
46
|
+
| 'ownership_created'
|
|
47
|
+
| 'ownership_updated'
|
|
48
|
+
| 'ownership_deleted';
|
|
49
|
+
|
|
50
|
+
type OwnerEvent =
|
|
51
|
+
| 'owner_created'
|
|
52
|
+
| 'owner_updated'
|
|
53
|
+
| 'owner_deleted'
|
|
54
|
+
| 'owner_tax_info_modal_opened' // missing in list
|
|
55
|
+
| 'owner_tax_info_modal_submitted'; // missing in list
|
|
56
|
+
|
|
57
|
+
type SetupEvent =
|
|
58
|
+
| 'setup_classes_set' // from list
|
|
59
|
+
| 'setup_accounting_version_completed' // from list
|
|
60
|
+
| 'setup_accounting_config_completed' // from list
|
|
61
|
+
| 'setup_owner_imported' // from list
|
|
62
|
+
| 'setup_listing_imported'; // from list
|
|
63
|
+
|
|
64
|
+
type AutomationEvent =
|
|
65
|
+
| 'automation_created'
|
|
66
|
+
| 'automation_updated' // missing in list
|
|
67
|
+
| 'automation_deleted';
|
|
68
|
+
|
|
69
|
+
type TaxStatementEvent =
|
|
70
|
+
| 'tax_statement_preview_opened'
|
|
71
|
+
| 'tax_statement_downloaded';
|
|
72
|
+
|
|
73
|
+
type GLOwnerStatementEvent =
|
|
74
|
+
| 'gl_owner_statement_preview_opened' // missing in list
|
|
75
|
+
| 'gl_owner_statement_downloaded'; // missing in list
|
|
76
|
+
|
|
77
|
+
type HyperlineEvent =
|
|
78
|
+
| 'hyperline_invoice_ready' // missing in list
|
|
79
|
+
| 'hyperline_invoice_settled' // missing in list
|
|
80
|
+
| 'hyperline_trial_ended' // missing in list
|
|
81
|
+
| 'hyperline_subscription_created' // missing in list
|
|
82
|
+
| 'hyperline_subscription_charged' // missing in list
|
|
83
|
+
| 'hyperline_subscription_cancelled'; // missing in list
|
|
84
|
+
|
|
85
|
+
type TestEvent =
|
|
86
|
+
| 'test_event' // missing in list
|
|
87
|
+
| 'test_error'; // missing in list
|
|
88
|
+
|
|
89
|
+
export type TrackingEvent =
|
|
90
|
+
| AuthEvent
|
|
91
|
+
| TeamEvent
|
|
92
|
+
| ConnectionEvent
|
|
93
|
+
| OwnershipEvent
|
|
94
|
+
| OwnerEvent
|
|
95
|
+
| SetupEvent
|
|
96
|
+
| AutomationEvent
|
|
97
|
+
| TaxStatementEvent
|
|
98
|
+
| GLOwnerStatementEvent
|
|
99
|
+
| HyperlineEvent
|
|
100
|
+
| TestEvent;
|
|
5
101
|
|
|
6
102
|
export type TrackingProps = {
|
|
7
103
|
name: string;
|
|
8
104
|
dataset: string;
|
|
9
105
|
env: {
|
|
10
|
-
INTERCOM_TOKEN
|
|
11
|
-
|
|
12
|
-
|
|
106
|
+
INTERCOM_TOKEN?: string;
|
|
107
|
+
JUNESO_TOKEN?: string;
|
|
108
|
+
POSTHOG_TOKEN?: string;
|
|
13
109
|
};
|
|
14
110
|
};
|
|
15
111
|
export type Tracking = ReturnType<typeof useTracking>;
|
|
16
|
-
export type Intercom = ReturnType<typeof useIntercom>;
|
|
17
112
|
|
|
18
113
|
type OptionalUser<T> = T &
|
|
19
114
|
(
|
|
@@ -29,11 +124,15 @@ export const useTracking = (
|
|
|
29
124
|
isDev?: boolean
|
|
30
125
|
) => {
|
|
31
126
|
const axiom = useLog({ name, dataset, env });
|
|
32
|
-
const intercom =
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
127
|
+
const intercom = env.INTERCOM_TOKEN
|
|
128
|
+
? useIntercom(env.INTERCOM_TOKEN, axiom)
|
|
129
|
+
: undefined;
|
|
130
|
+
const juneso = env.JUNESO_TOKEN ? new Analytics(env.JUNESO_TOKEN) : undefined;
|
|
131
|
+
const posthog = env.POSTHOG_TOKEN
|
|
132
|
+
? new PostHog(env.POSTHOG_TOKEN, {
|
|
133
|
+
host: 'https://app.posthog.com',
|
|
134
|
+
})
|
|
135
|
+
: undefined;
|
|
37
136
|
|
|
38
137
|
return {
|
|
39
138
|
// General
|
|
@@ -45,12 +144,12 @@ export const useTracking = (
|
|
|
45
144
|
}: {
|
|
46
145
|
userId: string;
|
|
47
146
|
groupId: string;
|
|
48
|
-
event:
|
|
49
|
-
properties: Record<string,
|
|
147
|
+
event: TrackingEvent;
|
|
148
|
+
properties: Record<string, string | number | boolean | null | undefined>;
|
|
50
149
|
}) => {
|
|
51
|
-
if (isDev) return;
|
|
150
|
+
if (isDev || isTest(userId, groupId)) return;
|
|
52
151
|
|
|
53
|
-
posthog
|
|
152
|
+
posthog?.capture({
|
|
54
153
|
distinctId: userId,
|
|
55
154
|
event,
|
|
56
155
|
groups: {
|
|
@@ -58,15 +157,20 @@ export const useTracking = (
|
|
|
58
157
|
},
|
|
59
158
|
properties,
|
|
60
159
|
});
|
|
61
|
-
juneso
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
160
|
+
juneso?.track(
|
|
161
|
+
{
|
|
162
|
+
userId,
|
|
163
|
+
event,
|
|
164
|
+
properties,
|
|
165
|
+
context: { groupId },
|
|
166
|
+
},
|
|
167
|
+
(err) => {
|
|
168
|
+
if (err) console.error(err);
|
|
169
|
+
}
|
|
170
|
+
);
|
|
67
171
|
|
|
68
172
|
try {
|
|
69
|
-
await intercom
|
|
173
|
+
await intercom?.trackEvent({
|
|
70
174
|
user_id: userId,
|
|
71
175
|
event_name: event,
|
|
72
176
|
metadata: properties,
|
|
@@ -84,15 +188,22 @@ export const useTracking = (
|
|
|
84
188
|
traits: Record<string, any>;
|
|
85
189
|
disableGeoip?: boolean;
|
|
86
190
|
}) => {
|
|
87
|
-
|
|
191
|
+
if (isDev || isTest(userId)) return;
|
|
192
|
+
|
|
193
|
+
posthog?.identify({
|
|
88
194
|
distinctId: userId,
|
|
89
195
|
properties: traits,
|
|
90
196
|
disableGeoip,
|
|
91
197
|
});
|
|
92
|
-
juneso
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
198
|
+
juneso?.identify(
|
|
199
|
+
{
|
|
200
|
+
userId,
|
|
201
|
+
traits,
|
|
202
|
+
},
|
|
203
|
+
(err) => {
|
|
204
|
+
if (err) console.error(err);
|
|
205
|
+
}
|
|
206
|
+
);
|
|
96
207
|
},
|
|
97
208
|
group: ({
|
|
98
209
|
traits,
|
|
@@ -103,22 +214,36 @@ export const useTracking = (
|
|
|
103
214
|
groupId: string;
|
|
104
215
|
traits?: Record<string, any>;
|
|
105
216
|
}>) => {
|
|
106
|
-
|
|
217
|
+
if (isDev || isTest(userId || anonymousId || '', groupId)) return;
|
|
218
|
+
|
|
219
|
+
posthog?.groupIdentify({
|
|
107
220
|
groupKey: groupId,
|
|
108
221
|
groupType: 'tenant',
|
|
109
222
|
properties: traits,
|
|
110
223
|
distinctId: userId,
|
|
111
224
|
});
|
|
112
|
-
if (anonymousId)
|
|
113
|
-
|
|
225
|
+
if (anonymousId)
|
|
226
|
+
juneso?.group({ anonymousId, groupId, traits }, (err) =>
|
|
227
|
+
console.error(err)
|
|
228
|
+
);
|
|
229
|
+
else if (userId)
|
|
230
|
+
juneso?.group({ userId, groupId, traits }, (err) => {
|
|
231
|
+
if (err) console.error(err);
|
|
232
|
+
});
|
|
114
233
|
},
|
|
115
|
-
// Posthog specific
|
|
116
|
-
alias: ({ distinctId, alias }: { distinctId: string; alias: string }) =>
|
|
117
|
-
posthog.alias({ distinctId, alias }),
|
|
118
234
|
shutdown: async () =>
|
|
119
|
-
Promise.all([
|
|
235
|
+
Promise.all([
|
|
236
|
+
posthog?.shutdown(),
|
|
237
|
+
juneso?.closeAndFlush(),
|
|
238
|
+
axiom?.flush(),
|
|
239
|
+
]),
|
|
240
|
+
// Posthog specific
|
|
241
|
+
alias: posthog?.alias,
|
|
242
|
+
isFeatureEnabled: posthog?.isFeatureEnabled,
|
|
120
243
|
// export intercom and axiom
|
|
121
244
|
intercom,
|
|
245
|
+
posthog,
|
|
246
|
+
june: juneso,
|
|
122
247
|
log: axiom,
|
|
123
248
|
};
|
|
124
249
|
};
|