@jitsu/protocols 1.9.18-canary.1288.20250415192732 → 1.9.18-canary.1288.20250415194526
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/analytics.d.ts +2 -1
- package/package.json +1 -1
package/analytics.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ type PersistentStorage = {
|
|
|
308
308
|
};
|
|
309
309
|
|
|
310
310
|
export type RuntimeFacade = {
|
|
311
|
-
store(): PersistentStorage;
|
|
311
|
+
store?(): PersistentStorage;
|
|
312
312
|
userAgent(): string | undefined;
|
|
313
313
|
language(): string | undefined;
|
|
314
314
|
pageUrl(): string | undefined;
|
|
@@ -317,6 +317,7 @@ export type RuntimeFacade = {
|
|
|
317
317
|
getCookies(): Record<string, string>;
|
|
318
318
|
|
|
319
319
|
timezoneOffset(): number | undefined;
|
|
320
|
+
ip?(): string | undefined;
|
|
320
321
|
screen():
|
|
321
322
|
| {
|
|
322
323
|
width: number;
|