@comparaonline/event-tracker
Version:
This library it's an interface between any frontend application and some event tracking platforms, currently Snowplow and Tag Manager.
26 lines (25 loc) • 1.13 kB
TypeScript
export declare const BUSINESS_UNIT: {
readonly TRAVEL_ASSISTANCE: "travel-assistance";
readonly CAR_INSURANCE: "car-insurance";
readonly MANDATORY_CAR_INSURANCE: "mandatory-car-insurance";
readonly RCI_INSURANCE: "rci-insurance";
readonly LIFE_INSURANCE: "life-insurance";
readonly HEALTH_INSURANCE: "health-insurance";
readonly MANDATORY_COVID_19_INSURANCE: "mandatory-covid-19-insurance";
readonly MORTGAGE_CREDIT: "mortgage-credit";
readonly CAR_CREDIT: "car-credit";
readonly CONSUMER_CREDIT: "consumer-credit";
readonly CREDIT_CARD: "credit-card";
readonly CHECKING_ACCOUNT: "checking-account";
readonly PERSONAL_CREDIT: "personal-credit";
readonly SAVINGS_ACCOUNT: "savings-account";
readonly CROSS: "cross";
};
export declare const SHORT_BUSINESS_UNIT: {
"travel-assistance": string;
"car-insurance": string;
"mandatory-car-insurance": string;
"life-insurance": string;
};
export type BusinessUnit = (typeof BUSINESS_UNIT)[keyof typeof BUSINESS_UNIT];
export type ShortBusinessUnit = (typeof SHORT_BUSINESS_UNIT)[keyof typeof SHORT_BUSINESS_UNIT];