Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@giosg/types

Package Overview
Dependencies
Maintainers
6
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@giosg/types - npm Package Compare versions

Comparing version 1.2.19 to 1.2.20

72

lib/visitor.d.ts

@@ -97,66 +97,66 @@ import { NestedUser } from "./customer";

/** The latest priority automatically calculated for the visitor. */
implicit_priority: number;
implicit_priority: number | null;
/** During how many distinct sessions the visitor has been active on this room. */
visit_count: number;
visit_count: number | null;
/** Either desktop, mobile or tablet */
device_type: "desktop" | "mobile" | "tablet";
device_type: "desktop" | "mobile" | "tablet" | null;
/** The width resolution of the visitor’s screen in pixels */
device_screen_width: number;
device_screen_width: number | null;
/** The height resolution of the visitor’s screen in pixels */
device_screen_height: number;
device_screen_height: number | null;
/** Name of the browser which the visitor is currently using, without any version number. */
browser_name: string;
browser_name: string | null;
/** Version of the browser which the visitor is currently using. */
browser_version: string;
browser_version: string | null;
/** The preferred languages of the visitor as sent by the browser as the Accept-Language HTTP header.
* E.g. fi-FI,fi;q=0.8,en-US;q=0.6,en;q=0.4.
* In most cases it is more convenient to use preferred_language_code instead. */
browser_language: string;
browser_language: string | null;
/** The ISO code of the most preferred language of the visitor, e.g. fi or en-US */
preferred_language_code: LanguageCode;
preferred_language_code: LanguageCode | null;
/** Name of the operating system which the visitor is using, without any version number. */
os_name: string;
os_name: string | null;
/** Version of the operating system which the visitor is using */
os_version: string;
os_version: string | null;
/** User-Agent header of the visitor browser */
user_agent: string;
user_agent: string | null;
/** IP address of the visitor (IPv4) */
ip_address: string;
ip_address: string | null;
/** An organization name resolved from the IP address */
ip_organization: string;
ip_organization: string | null;
/** The best guess about the name of the city where the visitor is currently located. This is usually resolved from their IP address. */
geo_city: string;
geo_city: string | null;
/** The best guess about the country where the visitor is currently located.
* This is usually resolved from their IP address. This is a upper-case, two-letter ISO 3166-1 country code */
geo_country_code: string;
geo_country_code: string | null;
/** The country as in country_code, but represented as the name of the country. */
geo_country: string;
geo_country: string | null;
/** The full URL from which the visitor entered the room during this session */
referrer_url: string;
referrer_url: string | null;
/** Hostname from which the visitor entered the room during this session */
referrer_url_hostname: string;
referrer_url_hostname: string | null;
/** Either internal, search, email, social, or website */
referrer_medium: "internal" | "search" | "email" | "social" | "website";
referrer_medium: "internal" | "search" | "email" | "social" | "website" | null;
/** The name of the referrer source */
referrer_source: string;
referrer_source: string | null;
/** The full URL from which the visitor originally entered the room */
original_referrer_url: string;
original_referrer_url: string | null;
/** Hostname from which the visitor originally entered the room */
original_referrer_url_hostname: string;
original_referrer_url_hostname: string | null;
/** Either internal, search, email, social, or website */
original_referrer_medium: "internal" | "search" | "email" | "social" | "website";
original_referrer_medium: "internal" | "search" | "email" | "social" | "website" | null;
/** The name of the original referrer source */
original_referrer_source: string;
original_referrer_source: string | null;
/** URL of the web page at which the visitor is currently, at this room. */
page_url: string;
page_url: string | null;
/** Title of the web page at which the visitor is currently, at this room. */
page_title: string;
page_title: string | null;
/** Canonical URL of the web page at which the visitor is currently, at this room. Same than page_url if no canonical URL is available. */
canonical_page_url: string;
canonical_page_url: string | null;
/** When the latest session of the visitor has started at this particular room. */
session_started_at: string;
session_started_at: string | null;
/**
* When the information of the room visitor was updated last time.
* In practice, this means when we have heard about the visitor last time at this particular room. */
updated_at: string;
updated_at: string | null;
/**

@@ -167,3 +167,3 @@ * An estimated duration of the visitor’s session at the moment,

*/
session_duration: number;
session_duration: number | null;
/**

@@ -173,3 +173,3 @@ * The currency of the visitor’s shopping cart in the room,

*/
shopping_cart_currency: Currency;
shopping_cart_currency: Currency | null;
/** The total value of the visitor’s shopping cart in the room,

@@ -192,10 +192,10 @@ * if the visitor has any. Value null means the shopping cart is not defined.

/** @deprecated */
pipeline_step_index: number;
pipeline_step_index: number | null;
/** @deprecated */
pipeline_step_name: string;
pipeline_step_name: string | null;
/** @deprecated */
pipeline_step_count: number;
pipeline_step_count: number | null;
/** @deprecated */
legacy_id: string;
legacy_id: string | null;
}
//# sourceMappingURL=visitor.d.ts.map
{
"name": "@giosg/types",
"version": "1.2.19",
"version": "1.2.20",
"description": "TypeScript interfaces for GiosgAPI",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc