@aranova/tracking-react 0.12.1 → 0.12.2
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/dist/{phone-utils-DXAki8pO.d.mts → phone-utils-Du-alwyM.d.mts} +7 -3
- package/dist/{phone-utils-DXAki8pO.d.ts → phone-utils-Du-alwyM.d.ts} +7 -3
- package/dist/phone.d.mts +1 -1
- package/dist/phone.d.ts +1 -1
- package/package.json +1 -1
|
@@ -229,10 +229,14 @@ type TrackingEnvironment = "production" | "development";
|
|
|
229
229
|
* Labelled map of Google Ads tag IDs.
|
|
230
230
|
*
|
|
231
231
|
* ALL entries are loaded simultaneously via `gtag('config', ...)` — the keys
|
|
232
|
-
* are human-readable labels
|
|
233
|
-
*
|
|
232
|
+
* are human-readable labels and the values are Google Ads tag IDs
|
|
233
|
+
* (e.g. `AW-123456789`).
|
|
234
234
|
*/
|
|
235
|
-
|
|
235
|
+
interface GtagEnvironmentMap {
|
|
236
|
+
production?: string;
|
|
237
|
+
test?: string;
|
|
238
|
+
[label: string]: string | undefined;
|
|
239
|
+
}
|
|
236
240
|
/**
|
|
237
241
|
* Runtime context attached to tracking sessions and events.
|
|
238
242
|
*/
|
|
@@ -229,10 +229,14 @@ type TrackingEnvironment = "production" | "development";
|
|
|
229
229
|
* Labelled map of Google Ads tag IDs.
|
|
230
230
|
*
|
|
231
231
|
* ALL entries are loaded simultaneously via `gtag('config', ...)` — the keys
|
|
232
|
-
* are human-readable labels
|
|
233
|
-
*
|
|
232
|
+
* are human-readable labels and the values are Google Ads tag IDs
|
|
233
|
+
* (e.g. `AW-123456789`).
|
|
234
234
|
*/
|
|
235
|
-
|
|
235
|
+
interface GtagEnvironmentMap {
|
|
236
|
+
production?: string;
|
|
237
|
+
test?: string;
|
|
238
|
+
[label: string]: string | undefined;
|
|
239
|
+
}
|
|
236
240
|
/**
|
|
237
241
|
* Runtime context attached to tracking sessions and events.
|
|
238
242
|
*/
|
package/dist/phone.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { D as DEFAULT_PHONE_COUNTRY, g as ParsedPhone, P as PhoneConfig, h as PhoneDisplayFormat, i as TrackedField, m as formatPhone, n as formatPhoneAsTyped, p as parsePhone, q as phoneField, t as toE164 } from './phone-utils-
|
|
1
|
+
export { D as DEFAULT_PHONE_COUNTRY, g as ParsedPhone, P as PhoneConfig, h as PhoneDisplayFormat, i as TrackedField, m as formatPhone, n as formatPhoneAsTyped, p as parsePhone, q as phoneField, t as toE164 } from './phone-utils-Du-alwyM.mjs';
|
|
2
2
|
export { CountryCode } from 'libphonenumber-js';
|
|
3
3
|
import 'zod';
|
package/dist/phone.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { D as DEFAULT_PHONE_COUNTRY, g as ParsedPhone, P as PhoneConfig, h as PhoneDisplayFormat, i as TrackedField, m as formatPhone, n as formatPhoneAsTyped, p as parsePhone, q as phoneField, t as toE164 } from './phone-utils-
|
|
1
|
+
export { D as DEFAULT_PHONE_COUNTRY, g as ParsedPhone, P as PhoneConfig, h as PhoneDisplayFormat, i as TrackedField, m as formatPhone, n as formatPhoneAsTyped, p as parsePhone, q as phoneField, t as toE164 } from './phone-utils-Du-alwyM.js';
|
|
2
2
|
export { CountryCode } from 'libphonenumber-js';
|
|
3
3
|
import 'zod';
|