@aranova/tracking-react 0.18.1 → 0.19.0
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/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +193 -58
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +191 -58
- package/dist/index.mjs.map +1 -1
- package/dist/{phone-utils-CVCzW04Z.d.mts → phone-utils-B2vHJkNz.d.mts} +10 -0
- package/dist/{phone-utils-CVCzW04Z.d.ts → phone-utils-B2vHJkNz.d.ts} +10 -0
- package/dist/phone.d.mts +1 -1
- package/dist/phone.d.ts +1 -1
- package/dist/phone.js +40 -40
- package/dist/phone.js.map +1 -1
- package/dist/phone.mjs +40 -40
- package/dist/phone.mjs.map +1 -1
- package/dist/{sales-QqKh6_iy.d.mts → sales--WzOzyiO.d.mts} +18 -1
- package/dist/{sales-QqKh6_iy.d.ts → sales--WzOzyiO.d.ts} +18 -1
- package/dist/sales.d.mts +2 -1
- package/dist/sales.d.ts +2 -1
- package/dist/sales.js +97 -17
- package/dist/sales.js.map +1 -1
- package/dist/sales.mjs +97 -17
- package/dist/sales.mjs.map +1 -1
- package/package.json +1 -1
package/dist/sales.js
CHANGED
|
@@ -38,6 +38,79 @@ __export(sales_exports, {
|
|
|
38
38
|
});
|
|
39
39
|
module.exports = __toCommonJS(sales_exports);
|
|
40
40
|
|
|
41
|
+
// ../tracking-core/src/phone.ts
|
|
42
|
+
var import_libphonenumber_js = require("libphonenumber-js");
|
|
43
|
+
var DEFAULT_PHONE_COUNTRY = "CA";
|
|
44
|
+
function parsePhone(raw, country) {
|
|
45
|
+
const region = country ?? DEFAULT_PHONE_COUNTRY;
|
|
46
|
+
const parsed = (0, import_libphonenumber_js.parsePhoneNumberFromString)(raw ?? "", region);
|
|
47
|
+
if (!parsed) {
|
|
48
|
+
return { e164: null, national: "", international: "", country: region, isValid: false };
|
|
49
|
+
}
|
|
50
|
+
const isValid = parsed.isValid();
|
|
51
|
+
return {
|
|
52
|
+
// E.164 is only surfaced for a *valid* number — a possible-but-invalid input
|
|
53
|
+
// (e.g. too few digits) still parses but must not be transmitted.
|
|
54
|
+
e164: isValid ? parsed.number : null,
|
|
55
|
+
national: parsed.formatNational(),
|
|
56
|
+
international: parsed.formatInternational(),
|
|
57
|
+
country: parsed.country ?? region,
|
|
58
|
+
isValid
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function toE164(raw, country) {
|
|
62
|
+
return parsePhone(raw, country).e164;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// ../tracking-core/src/user-data.ts
|
|
66
|
+
var EMAIL_SHAPE = /^[^@\s]+@[^@\s]+\.[^@\s]+$/;
|
|
67
|
+
var stash = { email: null, phoneNumber: null };
|
|
68
|
+
function normalizeEmail(raw) {
|
|
69
|
+
if (typeof raw !== "string") return null;
|
|
70
|
+
const cleaned = raw.trim().toLowerCase();
|
|
71
|
+
return EMAIL_SHAPE.test(cleaned) ? cleaned : null;
|
|
72
|
+
}
|
|
73
|
+
function stashUserData(data, country) {
|
|
74
|
+
const email = normalizeEmail(data.email);
|
|
75
|
+
let phoneNumber = null;
|
|
76
|
+
if (typeof data.phone === "string" && data.phone.length > 0) {
|
|
77
|
+
try {
|
|
78
|
+
phoneNumber = toE164(data.phone, country);
|
|
79
|
+
} catch {
|
|
80
|
+
phoneNumber = null;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
stash = {
|
|
84
|
+
email: email ?? stash.email,
|
|
85
|
+
phoneNumber: phoneNumber ?? stash.phoneNumber
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
function applyUserDataForConversion(explicit, country) {
|
|
89
|
+
if (typeof window === "undefined" || typeof window.gtag !== "function") return false;
|
|
90
|
+
let email = stash.email;
|
|
91
|
+
let phoneNumber = stash.phoneNumber;
|
|
92
|
+
if (explicit) {
|
|
93
|
+
const normalizedEmail = normalizeEmail(explicit.email);
|
|
94
|
+
if (normalizedEmail) email = normalizedEmail;
|
|
95
|
+
if (typeof explicit.phone === "string" && explicit.phone.length > 0) {
|
|
96
|
+
try {
|
|
97
|
+
phoneNumber = toE164(explicit.phone, country) ?? phoneNumber;
|
|
98
|
+
} catch {
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (email === null && phoneNumber === null) return false;
|
|
103
|
+
try {
|
|
104
|
+
window.gtag("set", "user_data", {
|
|
105
|
+
...email !== null ? { email } : {},
|
|
106
|
+
...phoneNumber !== null ? { phone_number: phoneNumber } : {}
|
|
107
|
+
});
|
|
108
|
+
return true;
|
|
109
|
+
} catch {
|
|
110
|
+
return false;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
41
114
|
// ../tracking-core/src/consent.ts
|
|
42
115
|
var CONSENT_STATE_KEY = "consent_state";
|
|
43
116
|
var CONSENT_TIMESTAMP_KEY = "consent_timestamp";
|
|
@@ -117,14 +190,12 @@ function markFired(input) {
|
|
|
117
190
|
} catch {
|
|
118
191
|
}
|
|
119
192
|
}
|
|
120
|
-
function
|
|
193
|
+
function fireConversionWithConsent(input, options) {
|
|
194
|
+
if (getConsentState() === "denied") return;
|
|
121
195
|
if (alreadyFired(input)) return;
|
|
196
|
+
applyUserDataForConversion(options?.userData);
|
|
122
197
|
if (fireGtagConversion(input)) markFired(input);
|
|
123
198
|
}
|
|
124
|
-
function fireConversionWithConsent(input) {
|
|
125
|
-
if (getConsentState() === "denied") return;
|
|
126
|
-
fireOnce(input);
|
|
127
|
-
}
|
|
128
199
|
|
|
129
200
|
// ../tracking-core/src/events/page-view.ts
|
|
130
201
|
var import_zod = require("zod");
|
|
@@ -245,6 +316,8 @@ function formatDateInTz(iso, timeZone, opts, locale) {
|
|
|
245
316
|
// ../tracking-core/src/resources/sales/client.ts
|
|
246
317
|
function fireRecordedConversions(firing, input, recorded, sale, currency) {
|
|
247
318
|
if (!firing) return;
|
|
319
|
+
const userData = input.customer_email || input.customer_phone ? { email: input.customer_email ?? null, phone: input.customer_phone ?? null } : null;
|
|
320
|
+
if (userData && getConsentState() !== "denied") stashUserData(userData);
|
|
248
321
|
const txnBase = input.external_id ?? sale.id;
|
|
249
322
|
for (const item of recorded) {
|
|
250
323
|
if (!item.service) continue;
|
|
@@ -259,12 +332,15 @@ function fireRecordedConversions(firing, input, recorded, sale, currency) {
|
|
|
259
332
|
const config = firing.getFiring(item.service);
|
|
260
333
|
if (!config) continue;
|
|
261
334
|
const cents = item.amount_cents ?? config.value_cents ?? null;
|
|
262
|
-
fireConversionWithConsent(
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
335
|
+
fireConversionWithConsent(
|
|
336
|
+
{
|
|
337
|
+
sendTo: config.send_to,
|
|
338
|
+
value: cents != null ? fromMinor(cents, currency) : null,
|
|
339
|
+
currency: config.currency ?? currency,
|
|
340
|
+
transactionId: `${txnBase}:${item.service}`
|
|
341
|
+
},
|
|
342
|
+
{ userData }
|
|
343
|
+
);
|
|
268
344
|
}
|
|
269
345
|
}
|
|
270
346
|
function createSalesClient(config) {
|
|
@@ -299,6 +375,7 @@ function createSalesClient(config) {
|
|
|
299
375
|
recordSale: record,
|
|
300
376
|
trackConversion(key, options) {
|
|
301
377
|
if (config.firing && "fireConversion" in config.firing) {
|
|
378
|
+
if (options?.userData && getConsentState() !== "denied") stashUserData(options.userData);
|
|
302
379
|
config.firing.fireConversion(key, {
|
|
303
380
|
value: options?.value ?? void 0,
|
|
304
381
|
currency: options?.currency ?? config.defaultCurrency ?? void 0,
|
|
@@ -311,12 +388,15 @@ function createSalesClient(config) {
|
|
|
311
388
|
const currency = firing.currency ?? options?.currency ?? config.defaultCurrency ?? null;
|
|
312
389
|
const cents = firing.value_cents ?? null;
|
|
313
390
|
const value = options?.value ?? (cents != null && currency ? fromMinor(cents, currency) : null);
|
|
314
|
-
fireConversionWithConsent(
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
391
|
+
fireConversionWithConsent(
|
|
392
|
+
{
|
|
393
|
+
sendTo: firing.send_to,
|
|
394
|
+
value,
|
|
395
|
+
currency,
|
|
396
|
+
transactionId: options?.transactionId ?? null
|
|
397
|
+
},
|
|
398
|
+
{ userData: options?.userData }
|
|
399
|
+
);
|
|
320
400
|
},
|
|
321
401
|
async list(query) {
|
|
322
402
|
const { cursor, limit, sort, order, want_total, ...filters } = query ?? {};
|