@adtrackify/at-tracking-event-types 1.0.53 → 1.0.55
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.ts +70 -32
- package/dist/index.js +1 -1
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
- package/src/types/api/account.ts +1 -1
- package/src/types/api/destinations/destination-catalog.ts +24 -0
- package/src/types/api/destinations/destinations.ts +67 -0
- package/src/types/api/{destination.ts → destinations/third-party-destination-configs.ts} +4 -38
- package/src/types/api/index.ts +3 -2
- package/src/types/third-party-event-configuration-types.ts +9 -9
- package/src/types/api/destinations.ts +0 -12
package/dist/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ declare module '@adtrackify/at-tracking-event-types/types/api/account' {
|
|
|
49
49
|
primaryEmail: string;
|
|
50
50
|
publicApiKey?: string;
|
|
51
51
|
subscriptionId?: string;
|
|
52
|
-
|
|
52
|
+
pixels?: Pixel[];
|
|
53
53
|
subscription?: Subscription;
|
|
54
54
|
ownerId?: string;
|
|
55
55
|
createdAt: string;
|
|
@@ -69,18 +69,7 @@ declare module '@adtrackify/at-tracking-event-types/types/api/account' {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
}
|
|
72
|
-
declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
73
|
-
export interface Destination {
|
|
74
|
-
id: string;
|
|
75
|
-
accountId: string;
|
|
76
|
-
pixelId: string;
|
|
77
|
-
destination: string;
|
|
78
|
-
displayName?: string;
|
|
79
|
-
enabled: boolean;
|
|
80
|
-
configuration?: any;
|
|
81
|
-
createdAt: string;
|
|
82
|
-
updatedAt: string;
|
|
83
|
-
}
|
|
72
|
+
declare module '@adtrackify/at-tracking-event-types/types/api/destinations/destination-catalog' {
|
|
84
73
|
export interface DestinationCatalogItem {
|
|
85
74
|
id: string;
|
|
86
75
|
active: boolean;
|
|
@@ -90,7 +79,7 @@ declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
|
90
79
|
shortName?: string;
|
|
91
80
|
description?: string;
|
|
92
81
|
url: string;
|
|
93
|
-
fields?:
|
|
82
|
+
fields?: DestinationCatalogFields[];
|
|
94
83
|
createdAt: string;
|
|
95
84
|
updatedAt: string;
|
|
96
85
|
}
|
|
@@ -104,10 +93,73 @@ declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
|
104
93
|
values?: any[];
|
|
105
94
|
order: number;
|
|
106
95
|
}
|
|
96
|
+
|
|
97
|
+
}
|
|
98
|
+
declare module '@adtrackify/at-tracking-event-types/types/api/destinations/destinations' {
|
|
99
|
+
export interface Destination {
|
|
100
|
+
id: string;
|
|
101
|
+
accountId: string;
|
|
102
|
+
pixelId: string;
|
|
103
|
+
destination: string;
|
|
104
|
+
displayName?: string;
|
|
105
|
+
enabled: boolean;
|
|
106
|
+
configuration?: UserDestinationConfiguration;
|
|
107
|
+
createdAt: string;
|
|
108
|
+
updatedAt: string;
|
|
109
|
+
}
|
|
110
|
+
export enum DESTINATIONS {
|
|
111
|
+
FACEBOOK = "facebook",
|
|
112
|
+
TIKTOK = "tiktok",
|
|
113
|
+
GOOGLE_ADS = "googleAds",
|
|
114
|
+
GOOGLE_ANALYTICS_4 = "googleAnalytics4",
|
|
115
|
+
HUBSPOT = "hubspot",
|
|
116
|
+
WEBHOOK = "webhook",
|
|
117
|
+
CUSTOM_HTML = "customHTML",
|
|
118
|
+
CUSTOM_JS = "customJS",
|
|
119
|
+
SNAPCHAT = "snapchat",
|
|
120
|
+
TWITTER = "twitter",
|
|
121
|
+
REDDIT = "reddit"
|
|
122
|
+
}
|
|
123
|
+
export interface UserDestinationConfiguration {
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
eventBlacklist: string[];
|
|
126
|
+
events: EventConfiguration;
|
|
127
|
+
triggers: DestinationTriggerConfiguration;
|
|
128
|
+
}
|
|
129
|
+
export interface DestinationTriggerConfiguration {
|
|
130
|
+
shopify: ShopifyTriggerConfiguration;
|
|
131
|
+
exludeDomains: string[];
|
|
132
|
+
excludePages: string[];
|
|
133
|
+
domains: string[];
|
|
134
|
+
pages: string[];
|
|
135
|
+
}
|
|
136
|
+
export interface ShopifyTriggerConfiguration {
|
|
137
|
+
enabled: boolean;
|
|
138
|
+
collections?: number[];
|
|
139
|
+
tags?: string[];
|
|
140
|
+
}
|
|
141
|
+
export interface EventConfiguration {
|
|
142
|
+
sourceEventName: string;
|
|
143
|
+
exclude?: boolean;
|
|
144
|
+
sample: EventSampleConfiguration;
|
|
145
|
+
transformations?: EventTransformation[];
|
|
146
|
+
}
|
|
147
|
+
export interface EventTransformation {
|
|
148
|
+
transformationEventName: string;
|
|
149
|
+
enabled: boolean;
|
|
150
|
+
}
|
|
151
|
+
export interface EventSampleConfiguration {
|
|
152
|
+
enabled: boolean;
|
|
153
|
+
rate: number;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
}
|
|
157
|
+
declare module '@adtrackify/at-tracking-event-types/types/api/destinations/third-party-destination-configs' {
|
|
158
|
+
import { Destination, UserDestinationConfiguration } from '@adtrackify/at-tracking-event-types/types/api/destinations/destinations';
|
|
107
159
|
export interface AdTrackifyFacebookDestination extends Destination {
|
|
108
160
|
configuration: FacebookPixelConfiguration;
|
|
109
161
|
}
|
|
110
|
-
export interface FacebookPixelConfiguration {
|
|
162
|
+
export interface FacebookPixelConfiguration extends UserDestinationConfiguration {
|
|
111
163
|
apiAccessToken?: string;
|
|
112
164
|
enableConversionAPI: boolean;
|
|
113
165
|
pixelId: string;
|
|
@@ -150,26 +202,12 @@ declare module '@adtrackify/at-tracking-event-types/types/api/destination' {
|
|
|
150
202
|
BODY = "body"
|
|
151
203
|
}
|
|
152
204
|
|
|
153
|
-
}
|
|
154
|
-
declare module '@adtrackify/at-tracking-event-types/types/api/destinations' {
|
|
155
|
-
export enum DESTINATIONS {
|
|
156
|
-
FACEBOOK = "facebook",
|
|
157
|
-
TIKTOK = "tiktok",
|
|
158
|
-
GOOGLE_ADS = "googleAds",
|
|
159
|
-
GOOGLE_ANALYTICS_4 = "googleAnalytics4",
|
|
160
|
-
HUBSPOT = "hubspot",
|
|
161
|
-
WEBHOOK = "webhook",
|
|
162
|
-
CUSTOM_HTML = "customHTML",
|
|
163
|
-
CUSTOM_JS = "customJS",
|
|
164
|
-
SNAPCHAT = "snapchat",
|
|
165
|
-
TWITTER = "twitter"
|
|
166
|
-
}
|
|
167
|
-
|
|
168
205
|
}
|
|
169
206
|
declare module '@adtrackify/at-tracking-event-types/types/api/index' {
|
|
170
207
|
export * from '@adtrackify/at-tracking-event-types/types/api/account';
|
|
171
|
-
export * from '@adtrackify/at-tracking-event-types/types/api/
|
|
172
|
-
export * from '@adtrackify/at-tracking-event-types/types/api/destinations';
|
|
208
|
+
export * from '@adtrackify/at-tracking-event-types/types/api/destinations/destinations';
|
|
209
|
+
export * from '@adtrackify/at-tracking-event-types/types/api/destinations/destination-catalog';
|
|
210
|
+
export * from '@adtrackify/at-tracking-event-types/types/api/destinations/third-party-destination-configs';
|
|
173
211
|
export * from '@adtrackify/at-tracking-event-types/types/api/shopify-app-install';
|
|
174
212
|
export * from '@adtrackify/at-tracking-event-types/types/api/subscription';
|
|
175
213
|
export * from '@adtrackify/at-tracking-event-types/types/api/user';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var a=(t=>(t.ADD_PAYMENT_INFO="add_payment_info",t.ADD_SHIPPING_INFO="add_shipping_info",t.ADD_TO_CART="add_to_cart",t.ADD_TO_WISHLIST="add_to_wishlist",t.INITIATE_CHECKOUT="initiate_checkout",t.LEAD="lead",t.LOGIN="login",t.PAGE_VIEW="page_view",t.PURCHASE="purchase",t.REFUND="refund",t.SEARCH="search",t.SIGN_UP="sign_up",t.VIEW_CART="view_cart",t.VIEW_CONTENT="view_content",t.SELECT_SHIPPING_METHOD="select_shipping_method",t.VIRTUALIZED_VIEWED_PAYMENT_FORM="virtualized_viewd_payment_form",t))(a||{});var
|
|
1
|
+
var a=(t=>(t.ADD_PAYMENT_INFO="add_payment_info",t.ADD_SHIPPING_INFO="add_shipping_info",t.ADD_TO_CART="add_to_cart",t.ADD_TO_WISHLIST="add_to_wishlist",t.INITIATE_CHECKOUT="initiate_checkout",t.LEAD="lead",t.LOGIN="login",t.PAGE_VIEW="page_view",t.PURCHASE="purchase",t.REFUND="refund",t.SEARCH="search",t.SIGN_UP="sign_up",t.VIEW_CART="view_cart",t.VIEW_CONTENT="view_content",t.SELECT_SHIPPING_METHOD="select_shipping_method",t.VIRTUALIZED_VIEWED_PAYMENT_FORM="virtualized_viewd_payment_form",t))(a||{});var y=["AED","ARS","AUD","BDT","BIF","BOB","BRL","CAD","CHF","CLP","CNY","COP","CRC","CZK","DKK","DZD","EGP","EUR","GBP","GTQ","HKD","HNL","HUF","IDR","ILS","INR","ISK","JPY","KES","KRW","KWD","KZT","MAD","MOP","MXN","MYR","NGN","NIO","NOK","NZD","PEN","PHP","PKR","PLN","PYG","QAR","RON","RUB","SAR","SEK","SGD","THB","TRY","TWD","USD","VES","VND","ZAR"];var g=(n=>(n.PENDING="pending",n.ACTIVE="active",n.INACTIVE="inactive",n))(g||{});var c=(i=>(i.FACEBOOK="facebook",i.TIKTOK="tiktok",i.GOOGLE_ADS="googleAds",i.GOOGLE_ANALYTICS_4="googleAnalytics4",i.HUBSPOT="hubspot",i.WEBHOOK="webhook",i.CUSTOM_HTML="customHTML",i.CUSTOM_JS="customJS",i.SNAPCHAT="snapchat",i.TWITTER="twitter",i.REDDIT="reddit",i))(c||{});var p=(n=>(n.HEADER="header",n.FOOTER="footer",n.BODY="body",n))(p||{});var d=(r=>(r.STARTED="started",r.COMPLETED="completed",r.UNINSTALLED="uninstalled",r.FAILED="failed",r.NONE="none",r))(d||{}),l=(e=>(e.ACTIVE="active",e.CANCELLED="cancelled",e.DECLINED="declined",e.EXPIRED="expired",e.FROZEN="frozen",e.PENDING="pending",e.NOT_SUBMITTED="na",e))(l||{});var m=(s=>(s.MONTHLY="monthly",s.YEARLY="yearly",s))(m||{}),f=(o=>(o.CURRENT="current",o.PAST_DUE="past_due",o.CANCELLED="cancelled",o.FAILED="failed",o))(f||{}),u=(e=>(e.ACTIVE="active",e.CANCELLED="cancelled",e.DECLINED="declined",e.EXPIRED="expired",e.FROZEN="frozen",e.PENDING="pending",e.NOT_SUBMITTED="na",e))(u||{}),x=(n=>(n.STRIPE="stripe",n.PAYPAL="paypal",n.SHOPIFY="shopify",n))(x||{});export{g as ACCOUNT_STATUS,a as ADTRACKIFY_STANDARD_EVENT,y as Currencies,p as CustomHTMLLocation,c as DESTINATIONS,x as PAYMENT_GATEWAY,f as PAYMENT_STATUS,m as PLAN_BILLING_FREQUENCY,u as SUBSCRIPTION_STATUS,d as ShopifyAppInstallStatus,l as ShopifyAppSubscriptionStatus};
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../src/types/adtrackify-standard-events.ts", "../src/types/tracking-event-type.ts", "../src/types/api/account.ts", "../src/types/api/
|
|
4
|
-
"sourcesContent": ["export enum ADTRACKIFY_STANDARD_EVENT {\n ADD_PAYMENT_INFO = 'add_payment_info',\n ADD_SHIPPING_INFO = 'add_shipping_info',\n ADD_TO_CART = 'add_to_cart',\n ADD_TO_WISHLIST = 'add_to_wishlist',\n // COMPLETE_REGISTRATION: 'complete_registration',\n // CONTACT: 'contact',\n INITIATE_CHECKOUT = 'initiate_checkout',\n LEAD = 'lead',\n LOGIN = 'login',\n PAGE_VIEW = 'page_view',\n PURCHASE = 'purchase',\n REFUND = 'refund',\n SEARCH = 'search',\n // START_TRIAL: 'start_trial',\n // SUBMIT_APPLICATION: 'submit_application',\n // SUBSCRIBE: 'subscribe',\n SIGN_UP = 'sign_up',\n VIEW_CART = 'view_cart',\n VIEW_CONTENT = 'view_content',\n\n\n //\n SELECT_SHIPPING_METHOD = 'select_shipping_method',\n VIRTUALIZED_VIEWED_PAYMENT_FORM = 'virtualized_viewd_payment_form'\n}", "import { IResult } from 'ua-parser-js';\nimport { ADTRACKIFY_STANDARD_EVENT } from './adtrackify-standard-events';\n\n\nexport interface TrackingEvent {\n id: string;\n type: string;\n name: ADTRACKIFY_STANDARD_EVENT;\n pixelId: string;\n context: TrackingEventContext;\n data: TrackingEventData;\n testCode?: string;\n sentAtEpoch?: number;\n collectedAt?: string;\n version: string;\n}\n\nexport interface TrackingEventContext {\n identity: TrackingEventIdentity;\n click?: AdClickInfo;\n campaign?: CampaignInfo;\n page?: PageInfo;\n device?: DeviceInfo;\n locale?: string;\n timezone?: string;\n userAgent?: string;\n ipAddress?: string;\n ipv6Address?: string;\n}\n\nexport interface TrackingEventIdentity {\n gender?: string;\n dob?: string;\n phone?: string;\n id?: string;\n firstName?: string;\n lastName?: string;\n email?: string;\n address?: AddressInfo;\n addresses?: AddressInfo[];\n}\n\nexport interface AdClickInfo {\n fbp?: string;\n fbc?: string;\n fbclid?: string;\n gclid?: string;\n}\n\nexport interface TrackingEventData {\n [ key: string ]: any;\n firstName?: string;\n lastName?: string;\n email?: string;\n phone?: string;\n addresses?: AddressInfo[];\n cartId?: string;\n transactionId?: string;\n affiliation?: string;\n currency?: string;\n price?: number;\n subtotalPrice?: number;\n value?: number;\n tax?: number;\n shipping?: number;\n coupon?: string;\n paymentType?: string;\n shippingTier?: string;\n creativeName?: string;\n creativeSlot?: string;\n locationId?: string;\n promotionId?: string;\n promotionName?: string;\n items?: GenericContent[];\n}\n\nexport interface GenericContent {\n [ key: string ]: any;\n content_type?: string;\n id?: string;\n name?: string;\n sku?: string;\n brand?: string;\n variant?: string;\n coupon?: string;\n currency?: string;\n discount?: number;\n index?: number;\n value?: number;\n price?: number;\n quantity?: number;\n url?: string;\n locationId?: string;\n imageUrl?: string;\n category?: string;\n category2?: string;\n category3?: string;\n category4?: string;\n category5?: string;\n}\n\nexport interface AddressInfo {\n email?: string;\n phone?: string;\n firstName?: string;\n lastName?: string;\n company?: string;\n address1?: string;\n address2?: string;\n city?: string;\n province?: string;\n provinceCode?: string;\n country?: string;\n countryCode?: string;\n zip?: string;\n}\n\nexport interface CampaignInfo {\n name?: string;\n source?: string;\n medium?: string;\n term?: string;\n content?: string;\n}\n\nexport interface PageInfo {\n path?: string;\n referrer?: string;\n search?: string;\n title?: string;\n url?: string;\n qsp?: any;\n}\n\nexport type DeviceInfo = IResult;\n\n\nexport const Currencies: string[] = [ 'AED', 'ARS', 'AUD', 'BDT', 'BIF', 'BOB', 'BRL', 'CAD', 'CHF', 'CLP', 'CNY', 'COP', 'CRC', 'CZK', 'DKK', 'DZD', 'EGP', 'EUR', 'GBP', 'GTQ', 'HKD', 'HNL', 'HUF', 'IDR', 'ILS', 'INR', 'ISK', 'JPY', 'KES', 'KRW', 'KWD', 'KZT', 'MAD', 'MOP', 'MXN', 'MYR', 'NGN', 'NIO', 'NOK', 'NZD', 'PEN', 'PHP', 'PKR', 'PLN', 'PYG', 'QAR', 'RON', 'RUB', 'SAR', 'SEK', 'SGD', 'THB', 'TRY', 'TWD', 'USD', 'VES', 'VND', 'ZAR' ];\n\n", "import { Subscription } from './subscription';\n\nexport interface Account {\n id: string,\n accountName: string,\n companyName?: string,\n accountStatus: ACCOUNT_STATUS,\n primaryEmail: string,\n publicApiKey?: string,\n subscriptionId?: string,\n pixel?: Pixel[],\n subscription?: Subscription;\n ownerId?: string,\n createdAt: string,\n updatedAt: string;\n}\n\n\nexport interface Pixel {\n id: string;\n accountId: string;\n name: string;\n createdAt: string,\n updatedAt: string;\n}\n\nexport enum ACCOUNT_STATUS {\n PENDING = 'pending',\n ACTIVE = 'active',\n INACTIVE = 'inactive'\n}", "export interface Destination {\n id: string,\n accountId: string,\n pixelId: string,\n destination: string;\n displayName?: string,\n enabled: boolean;\n configuration?: any,\n createdAt: string,\n updatedAt: string;\n}\n\nexport interface DestinationCatalogItem {\n id: string,\n active: boolean,\n destinationKey: string,\n destinationType: string,\n displayName?: string,\n shortName?: string;\n description?: string,\n url: string,\n fields?: any,\n createdAt: string,\n updatedAt: string;\n}\n\nexport interface DestinationCatalogFields {\n component_type: string,\n name: string,\n description: string,\n label: string,\n type: string,\n required: boolean,\n values?: any[],\n order: number;\n}\n\nexport interface AdTrackifyFacebookDestination extends Destination {\n configuration: FacebookPixelConfiguration;\n}\nexport interface FacebookPixelConfiguration {\n apiAccessToken?: string;\n enableConversionAPI: boolean;\n pixelId: string;\n}\n\nexport interface TiktokPixelConfiguration {\n pixelId: string;\n}\n\nexport interface GoogleAnalytics4Configuration {\n measurementId: string;\n}\n\nexport interface GoogleAdsConfiguration {\n pixelId: string;\n conversionID: string;\n}\n\nexport interface HubspotPixelConfiguration {\n hubspotId: string;\n}\n\nexport interface SnapchatPixelConfiguration {\n snapchatPixelId: string;\n}\n\nexport interface TwitterPixelConfiguration {\n twitterPixelId: string;\n}\n\nexport interface WebhookConfiguration {\n webhookUrl: string;\n}\n\nexport interface CustomHTMLConfiguration {\n html: string;\n location: CustomHTMLLocation;\n}\n\nexport interface CustomJSConfiguration {\n script: string;\n async: boolean;\n defer: boolean;\n location: CustomHTMLLocation;\n}\n\nexport enum CustomHTMLLocation {\n HEADER = 'header',\n FOOTER = 'footer',\n BODY = 'body'\n}\n\n\n", "export enum DESTINATIONS {\n FACEBOOK = 'facebook',\n TIKTOK = 'tiktok',\n GOOGLE_ADS = 'googleAds',\n GOOGLE_ANALYTICS_4 = 'googleAnalytics4',\n HUBSPOT = 'hubspot',\n WEBHOOK = 'webhook',\n CUSTOM_HTML = 'customHTML',\n CUSTOM_JS = 'customJS',\n SNAPCHAT = 'snapchat',\n TWITTER = 'twitter'\n}", "export interface ShopifyAppInstall {\n shopifyAppInstallId: string;\n shop: string;\n accessToken?: string;\n appStatus?: string;\n appSubscriptionStatus?: ShopifyAppSubscriptionStatus;\n code?: string;\n hmac?: string;\n host?: string;\n installRequest?: ShopifyInstallRequest;\n isAppEnabled?: boolean;\n pixelId?: string;\n shopInfo?: any;\n state?: string;\n timestamp?: number;\n createdAt: string;\n updatedAt: string;\n}\n\nexport enum ShopifyAppInstallStatus {\n STARTED = 'started',\n COMPLETED = 'completed',\n UNINSTALLED = 'uninstalled',\n FAILED = 'failed',\n NONE = 'none'\n}\nexport enum ShopifyAppSubscriptionStatus {\n ACTIVE = 'active', // approved and billed to shop\n CANCELLED = 'cancelled', // cancelled, uninstalled or cancellation\n DECLINED = 'declined', // subscription declined by merchant\n EXPIRED = 'expired', //wasn't approved within two days of being created\n FROZEN = 'frozen', //on hold due to not payment\n PENDING = 'pending', // pending approval\n NOT_SUBMITTED = 'na' // billing has not yet been attempted\n}\n\nexport interface ShopifyInstallRequest {\n shop?: string;\n session?: string;\n hmac?: string;\n host?: string;\n nonce?: string;\n timestamp?: string;\n status?: string;\n}\n\nexport interface ShopifyStoreInfo {\n // TBD based on shopify api\n [ key: string ]: any;\n}", "\nexport interface Subscription {\n id: string,\n accountId?: string,\n shopifyAppInstallId?: string,\n shopifyDomain?: string,\n stripeCustomerId?: string,\n stripeSubscriptionId?: string,\n stripeCompletedCheckoutSession?: any;\n shopifyChargeId?: string;\n subscriptionPlan?: SubscriptionPlan,\n status?: SUBSCRIPTION_STATUS,\n paymentStatus?: PAYMENT_STATUS,\n paymentGateway?: PAYMENT_GATEWAY,\n createdAt: string,\n updatedAt: string,\n\n}\nexport interface SubscriptionPlan {\n id: number;\n planName: string;\n displayName: string;\n description: string;\n sku: string;\n price: string;\n displayPrice: string;\n billingFrequency: PLAN_BILLING_FREQUENCY;\n trialLengthDays?: number;\n trialRequiresCreditCard?: boolean;\n planDesc?: string[];\n unitPriceText?: string;\n isHighlighted?: boolean;\n isBanner?: boolean;\n bannerText?: string;\n bannerColor?: string;\n stripePriceId?: string;\n stripeProductId?: string;\n}\n\nexport enum PLAN_BILLING_FREQUENCY {\n MONTHLY = 'monthly',\n YEARLY = 'yearly'\n}\n\nexport enum PAYMENT_STATUS {\n CURRENT = 'current',\n PAST_DUE = 'past_due',\n CANCELLED = 'cancelled',\n FAILED = 'failed'\n}\n\nexport enum SUBSCRIPTION_STATUS {\n ACTIVE = 'active', // approved and billed to shop\n CANCELLED = 'cancelled', // cancelled, uninstalled or cancellation\n DECLINED = 'declined', // subscription declined by merchant\n EXPIRED = 'expired', //wasn't approved within two days of being created\n FROZEN = 'frozen', //on hold due to not payment\n PENDING = 'pending', // pending approval\n NOT_SUBMITTED = 'na' // billing has not yet been attempted\n}\nexport enum PAYMENT_GATEWAY {\n STRIPE = 'stripe',\n PAYPAL = 'paypal',\n SHOPIFY = 'shopify'\n}\n"],
|
|
5
|
-
"mappings": "AAAO,IAAKA,OACVA,EAAA,iBAAmB,mBACnBA,EAAA,kBAAoB,oBACpBA,EAAA,YAAc,cACdA,EAAA,gBAAkB,kBAGlBA,EAAA,kBAAoB,oBACpBA,EAAA,KAAO,OACPA,EAAA,MAAQ,QACRA,EAAA,UAAY,YACZA,EAAA,SAAW,WACXA,EAAA,OAAS,SACTA,EAAA,OAAS,SAITA,EAAA,QAAU,UACVA,EAAA,UAAY,YACZA,EAAA,aAAe,eAIfA,EAAA,uBAAyB,yBACzBA,EAAA,gCAAkC,iCAxBxBA,OAAA,ICyIL,IAAMC,EAAuB,CAAE,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,KAAM,EC/Gpb,IAAKC,OACVA,EAAA,QAAU,UACVA,EAAA,OAAS,SACTA,EAAA,SAAW,WAHDA,OAAA,
|
|
6
|
-
"names": ["ADTRACKIFY_STANDARD_EVENT", "Currencies", "ACCOUNT_STATUS", "
|
|
3
|
+
"sources": ["../src/types/adtrackify-standard-events.ts", "../src/types/tracking-event-type.ts", "../src/types/api/account.ts", "../src/types/api/destinations/destinations.ts", "../src/types/api/destinations/third-party-destination-configs.ts", "../src/types/api/shopify-app-install.ts", "../src/types/api/subscription.ts"],
|
|
4
|
+
"sourcesContent": ["export enum ADTRACKIFY_STANDARD_EVENT {\n ADD_PAYMENT_INFO = 'add_payment_info',\n ADD_SHIPPING_INFO = 'add_shipping_info',\n ADD_TO_CART = 'add_to_cart',\n ADD_TO_WISHLIST = 'add_to_wishlist',\n // COMPLETE_REGISTRATION: 'complete_registration',\n // CONTACT: 'contact',\n INITIATE_CHECKOUT = 'initiate_checkout',\n LEAD = 'lead',\n LOGIN = 'login',\n PAGE_VIEW = 'page_view',\n PURCHASE = 'purchase',\n REFUND = 'refund',\n SEARCH = 'search',\n // START_TRIAL: 'start_trial',\n // SUBMIT_APPLICATION: 'submit_application',\n // SUBSCRIBE: 'subscribe',\n SIGN_UP = 'sign_up',\n VIEW_CART = 'view_cart',\n VIEW_CONTENT = 'view_content',\n\n\n //\n SELECT_SHIPPING_METHOD = 'select_shipping_method',\n VIRTUALIZED_VIEWED_PAYMENT_FORM = 'virtualized_viewd_payment_form'\n}", "import { IResult } from 'ua-parser-js';\nimport { ADTRACKIFY_STANDARD_EVENT } from './adtrackify-standard-events';\n\n\nexport interface TrackingEvent {\n id: string;\n type: string;\n name: ADTRACKIFY_STANDARD_EVENT;\n pixelId: string;\n context: TrackingEventContext;\n data: TrackingEventData;\n testCode?: string;\n sentAtEpoch?: number;\n collectedAt?: string;\n version: string;\n}\n\nexport interface TrackingEventContext {\n identity: TrackingEventIdentity;\n click?: AdClickInfo;\n campaign?: CampaignInfo;\n page?: PageInfo;\n device?: DeviceInfo;\n locale?: string;\n timezone?: string;\n userAgent?: string;\n ipAddress?: string;\n ipv6Address?: string;\n}\n\nexport interface TrackingEventIdentity {\n gender?: string;\n dob?: string;\n phone?: string;\n id?: string;\n firstName?: string;\n lastName?: string;\n email?: string;\n address?: AddressInfo;\n addresses?: AddressInfo[];\n}\n\nexport interface AdClickInfo {\n fbp?: string;\n fbc?: string;\n fbclid?: string;\n gclid?: string;\n}\n\nexport interface TrackingEventData {\n [ key: string ]: any;\n firstName?: string;\n lastName?: string;\n email?: string;\n phone?: string;\n addresses?: AddressInfo[];\n cartId?: string;\n transactionId?: string;\n affiliation?: string;\n currency?: string;\n price?: number;\n subtotalPrice?: number;\n value?: number;\n tax?: number;\n shipping?: number;\n coupon?: string;\n paymentType?: string;\n shippingTier?: string;\n creativeName?: string;\n creativeSlot?: string;\n locationId?: string;\n promotionId?: string;\n promotionName?: string;\n items?: GenericContent[];\n}\n\nexport interface GenericContent {\n [ key: string ]: any;\n content_type?: string;\n id?: string;\n name?: string;\n sku?: string;\n brand?: string;\n variant?: string;\n coupon?: string;\n currency?: string;\n discount?: number;\n index?: number;\n value?: number;\n price?: number;\n quantity?: number;\n url?: string;\n locationId?: string;\n imageUrl?: string;\n category?: string;\n category2?: string;\n category3?: string;\n category4?: string;\n category5?: string;\n}\n\nexport interface AddressInfo {\n email?: string;\n phone?: string;\n firstName?: string;\n lastName?: string;\n company?: string;\n address1?: string;\n address2?: string;\n city?: string;\n province?: string;\n provinceCode?: string;\n country?: string;\n countryCode?: string;\n zip?: string;\n}\n\nexport interface CampaignInfo {\n name?: string;\n source?: string;\n medium?: string;\n term?: string;\n content?: string;\n}\n\nexport interface PageInfo {\n path?: string;\n referrer?: string;\n search?: string;\n title?: string;\n url?: string;\n qsp?: any;\n}\n\nexport type DeviceInfo = IResult;\n\n\nexport const Currencies: string[] = [ 'AED', 'ARS', 'AUD', 'BDT', 'BIF', 'BOB', 'BRL', 'CAD', 'CHF', 'CLP', 'CNY', 'COP', 'CRC', 'CZK', 'DKK', 'DZD', 'EGP', 'EUR', 'GBP', 'GTQ', 'HKD', 'HNL', 'HUF', 'IDR', 'ILS', 'INR', 'ISK', 'JPY', 'KES', 'KRW', 'KWD', 'KZT', 'MAD', 'MOP', 'MXN', 'MYR', 'NGN', 'NIO', 'NOK', 'NZD', 'PEN', 'PHP', 'PKR', 'PLN', 'PYG', 'QAR', 'RON', 'RUB', 'SAR', 'SEK', 'SGD', 'THB', 'TRY', 'TWD', 'USD', 'VES', 'VND', 'ZAR' ];\n\n", "import { Subscription } from './subscription';\n\nexport interface Account {\n id: string,\n accountName: string,\n companyName?: string,\n accountStatus: ACCOUNT_STATUS,\n primaryEmail: string,\n publicApiKey?: string,\n subscriptionId?: string,\n pixels?: Pixel[],\n subscription?: Subscription;\n ownerId?: string,\n createdAt: string,\n updatedAt: string;\n}\n\n\nexport interface Pixel {\n id: string;\n accountId: string;\n name: string;\n createdAt: string,\n updatedAt: string;\n}\n\nexport enum ACCOUNT_STATUS {\n PENDING = 'pending',\n ACTIVE = 'active',\n INACTIVE = 'inactive'\n}", "\nexport interface Destination {\n id: string,\n accountId: string,\n pixelId: string,\n destination: string;\n displayName?: string,\n enabled: boolean;\n configuration?: UserDestinationConfiguration,\n createdAt: string,\n updatedAt: string;\n}\n\nexport enum DESTINATIONS {\n FACEBOOK = 'facebook',\n TIKTOK = 'tiktok',\n GOOGLE_ADS = 'googleAds',\n GOOGLE_ANALYTICS_4 = 'googleAnalytics4',\n HUBSPOT = 'hubspot',\n WEBHOOK = 'webhook',\n CUSTOM_HTML = 'customHTML',\n CUSTOM_JS = 'customJS',\n SNAPCHAT = 'snapchat',\n TWITTER = 'twitter',\n REDDIT = 'reddit'\n}\n\n\nexport interface UserDestinationConfiguration {\n [ key: string ]: any;\n eventBlacklist: string[];\n events: EventConfiguration;\n triggers: DestinationTriggerConfiguration;\n}\n\nexport interface DestinationTriggerConfiguration {\n shopify: ShopifyTriggerConfiguration;\n exludeDomains: string[];\n excludePages: string[];\n domains: string[];\n pages: string[];\n}\n\nexport interface ShopifyTriggerConfiguration {\n enabled: boolean;\n collections?: number[];\n tags?: string[];\n}\n\n\nexport interface EventConfiguration {\n sourceEventName: string;\n exclude?: boolean;\n sample: EventSampleConfiguration;\n transformations?: EventTransformation[];\n}\n\nexport interface EventTransformation {\n transformationEventName: string;\n enabled: boolean;\n}\n\nexport interface EventSampleConfiguration {\n enabled: boolean;\n rate: number;\n}\n\n", "import { Destination, UserDestinationConfiguration } from './destinations';\n\nexport interface AdTrackifyFacebookDestination extends Destination {\n configuration: FacebookPixelConfiguration;\n}\n\n// Destination Specific configurations below\nexport interface FacebookPixelConfiguration extends UserDestinationConfiguration {\n apiAccessToken?: string;\n enableConversionAPI: boolean;\n pixelId: string;\n}\n\nexport interface TiktokPixelConfiguration {\n pixelId: string;\n}\n\nexport interface GoogleAnalytics4Configuration {\n measurementId: string;\n}\n\nexport interface GoogleAdsConfiguration {\n pixelId: string;\n conversionID: string;\n}\n\nexport interface HubspotPixelConfiguration {\n hubspotId: string;\n}\n\nexport interface SnapchatPixelConfiguration {\n snapchatPixelId: string;\n}\n\nexport interface TwitterPixelConfiguration {\n twitterPixelId: string;\n}\n\nexport interface WebhookConfiguration {\n webhookUrl: string;\n}\n\nexport interface CustomHTMLConfiguration {\n html: string;\n location: CustomHTMLLocation;\n}\n\nexport interface CustomJSConfiguration {\n script: string;\n async: boolean;\n defer: boolean;\n location: CustomHTMLLocation;\n}\n\nexport enum CustomHTMLLocation {\n HEADER = 'header',\n FOOTER = 'footer',\n BODY = 'body'\n}\n\n", "export interface ShopifyAppInstall {\n shopifyAppInstallId: string;\n shop: string;\n accessToken?: string;\n appStatus?: string;\n appSubscriptionStatus?: ShopifyAppSubscriptionStatus;\n code?: string;\n hmac?: string;\n host?: string;\n installRequest?: ShopifyInstallRequest;\n isAppEnabled?: boolean;\n pixelId?: string;\n shopInfo?: any;\n state?: string;\n timestamp?: number;\n createdAt: string;\n updatedAt: string;\n}\n\nexport enum ShopifyAppInstallStatus {\n STARTED = 'started',\n COMPLETED = 'completed',\n UNINSTALLED = 'uninstalled',\n FAILED = 'failed',\n NONE = 'none'\n}\nexport enum ShopifyAppSubscriptionStatus {\n ACTIVE = 'active', // approved and billed to shop\n CANCELLED = 'cancelled', // cancelled, uninstalled or cancellation\n DECLINED = 'declined', // subscription declined by merchant\n EXPIRED = 'expired', //wasn't approved within two days of being created\n FROZEN = 'frozen', //on hold due to not payment\n PENDING = 'pending', // pending approval\n NOT_SUBMITTED = 'na' // billing has not yet been attempted\n}\n\nexport interface ShopifyInstallRequest {\n shop?: string;\n session?: string;\n hmac?: string;\n host?: string;\n nonce?: string;\n timestamp?: string;\n status?: string;\n}\n\nexport interface ShopifyStoreInfo {\n // TBD based on shopify api\n [ key: string ]: any;\n}", "\nexport interface Subscription {\n id: string,\n accountId?: string,\n shopifyAppInstallId?: string,\n shopifyDomain?: string,\n stripeCustomerId?: string,\n stripeSubscriptionId?: string,\n stripeCompletedCheckoutSession?: any;\n shopifyChargeId?: string;\n subscriptionPlan?: SubscriptionPlan,\n status?: SUBSCRIPTION_STATUS,\n paymentStatus?: PAYMENT_STATUS,\n paymentGateway?: PAYMENT_GATEWAY,\n createdAt: string,\n updatedAt: string,\n\n}\nexport interface SubscriptionPlan {\n id: number;\n planName: string;\n displayName: string;\n description: string;\n sku: string;\n price: string;\n displayPrice: string;\n billingFrequency: PLAN_BILLING_FREQUENCY;\n trialLengthDays?: number;\n trialRequiresCreditCard?: boolean;\n planDesc?: string[];\n unitPriceText?: string;\n isHighlighted?: boolean;\n isBanner?: boolean;\n bannerText?: string;\n bannerColor?: string;\n stripePriceId?: string;\n stripeProductId?: string;\n}\n\nexport enum PLAN_BILLING_FREQUENCY {\n MONTHLY = 'monthly',\n YEARLY = 'yearly'\n}\n\nexport enum PAYMENT_STATUS {\n CURRENT = 'current',\n PAST_DUE = 'past_due',\n CANCELLED = 'cancelled',\n FAILED = 'failed'\n}\n\nexport enum SUBSCRIPTION_STATUS {\n ACTIVE = 'active', // approved and billed to shop\n CANCELLED = 'cancelled', // cancelled, uninstalled or cancellation\n DECLINED = 'declined', // subscription declined by merchant\n EXPIRED = 'expired', //wasn't approved within two days of being created\n FROZEN = 'frozen', //on hold due to not payment\n PENDING = 'pending', // pending approval\n NOT_SUBMITTED = 'na' // billing has not yet been attempted\n}\nexport enum PAYMENT_GATEWAY {\n STRIPE = 'stripe',\n PAYPAL = 'paypal',\n SHOPIFY = 'shopify'\n}\n"],
|
|
5
|
+
"mappings": "AAAO,IAAKA,OACVA,EAAA,iBAAmB,mBACnBA,EAAA,kBAAoB,oBACpBA,EAAA,YAAc,cACdA,EAAA,gBAAkB,kBAGlBA,EAAA,kBAAoB,oBACpBA,EAAA,KAAO,OACPA,EAAA,MAAQ,QACRA,EAAA,UAAY,YACZA,EAAA,SAAW,WACXA,EAAA,OAAS,SACTA,EAAA,OAAS,SAITA,EAAA,QAAU,UACVA,EAAA,UAAY,YACZA,EAAA,aAAe,eAIfA,EAAA,uBAAyB,yBACzBA,EAAA,gCAAkC,iCAxBxBA,OAAA,ICyIL,IAAMC,EAAuB,CAAE,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,MAAO,KAAM,EC/Gpb,IAAKC,OACVA,EAAA,QAAU,UACVA,EAAA,OAAS,SACTA,EAAA,SAAW,WAHDA,OAAA,ICbL,IAAKC,OACVA,EAAA,SAAW,WACXA,EAAA,OAAS,SACTA,EAAA,WAAa,YACbA,EAAA,mBAAqB,mBACrBA,EAAA,QAAU,UACVA,EAAA,QAAU,UACVA,EAAA,YAAc,aACdA,EAAA,UAAY,WACZA,EAAA,SAAW,WACXA,EAAA,QAAU,UACVA,EAAA,OAAS,SAXCA,OAAA,ICyCL,IAAKC,OACVA,EAAA,OAAS,SACTA,EAAA,OAAS,SACTA,EAAA,KAAO,OAHGA,OAAA,ICnCL,IAAKC,OACVA,EAAA,QAAU,UACVA,EAAA,UAAY,YACZA,EAAA,YAAc,cACdA,EAAA,OAAS,SACTA,EAAA,KAAO,OALGA,OAAA,IAOAC,OACVA,EAAA,OAAS,SACTA,EAAA,UAAY,YACZA,EAAA,SAAW,WACXA,EAAA,QAAU,UACVA,EAAA,OAAS,SACTA,EAAA,QAAU,UACVA,EAAA,cAAgB,KAPNA,OAAA,ICaL,IAAKC,OACVA,EAAA,QAAU,UACVA,EAAA,OAAS,SAFCA,OAAA,IAKAC,OACVA,EAAA,QAAU,UACVA,EAAA,SAAW,WACXA,EAAA,UAAY,YACZA,EAAA,OAAS,SAJCA,OAAA,IAOAC,OACVA,EAAA,OAAS,SACTA,EAAA,UAAY,YACZA,EAAA,SAAW,WACXA,EAAA,QAAU,UACVA,EAAA,OAAS,SACTA,EAAA,QAAU,UACVA,EAAA,cAAgB,KAPNA,OAAA,IASAC,OACVA,EAAA,OAAS,SACTA,EAAA,OAAS,SACTA,EAAA,QAAU,UAHAA,OAAA",
|
|
6
|
+
"names": ["ADTRACKIFY_STANDARD_EVENT", "Currencies", "ACCOUNT_STATUS", "DESTINATIONS", "CustomHTMLLocation", "ShopifyAppInstallStatus", "ShopifyAppSubscriptionStatus", "PLAN_BILLING_FREQUENCY", "PAYMENT_STATUS", "SUBSCRIPTION_STATUS", "PAYMENT_GATEWAY"]
|
|
7
7
|
}
|
package/package.json
CHANGED
package/src/types/api/account.ts
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface DestinationCatalogItem {
|
|
2
|
+
id: string,
|
|
3
|
+
active: boolean,
|
|
4
|
+
destinationKey: string,
|
|
5
|
+
destinationType: string,
|
|
6
|
+
displayName?: string,
|
|
7
|
+
shortName?: string;
|
|
8
|
+
description?: string,
|
|
9
|
+
url: string,
|
|
10
|
+
fields?: DestinationCatalogFields[],
|
|
11
|
+
createdAt: string,
|
|
12
|
+
updatedAt: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface DestinationCatalogFields {
|
|
16
|
+
component_type: string,
|
|
17
|
+
name: string,
|
|
18
|
+
description: string,
|
|
19
|
+
label: string,
|
|
20
|
+
type: string,
|
|
21
|
+
required: boolean,
|
|
22
|
+
values?: any[],
|
|
23
|
+
order: number;
|
|
24
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
|
|
2
|
+
export interface Destination {
|
|
3
|
+
id: string,
|
|
4
|
+
accountId: string,
|
|
5
|
+
pixelId: string,
|
|
6
|
+
destination: string;
|
|
7
|
+
displayName?: string,
|
|
8
|
+
enabled: boolean;
|
|
9
|
+
configuration?: UserDestinationConfiguration,
|
|
10
|
+
createdAt: string,
|
|
11
|
+
updatedAt: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export enum DESTINATIONS {
|
|
15
|
+
FACEBOOK = 'facebook',
|
|
16
|
+
TIKTOK = 'tiktok',
|
|
17
|
+
GOOGLE_ADS = 'googleAds',
|
|
18
|
+
GOOGLE_ANALYTICS_4 = 'googleAnalytics4',
|
|
19
|
+
HUBSPOT = 'hubspot',
|
|
20
|
+
WEBHOOK = 'webhook',
|
|
21
|
+
CUSTOM_HTML = 'customHTML',
|
|
22
|
+
CUSTOM_JS = 'customJS',
|
|
23
|
+
SNAPCHAT = 'snapchat',
|
|
24
|
+
TWITTER = 'twitter',
|
|
25
|
+
REDDIT = 'reddit'
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
export interface UserDestinationConfiguration {
|
|
30
|
+
[ key: string ]: any;
|
|
31
|
+
eventBlacklist: string[];
|
|
32
|
+
events: EventConfiguration;
|
|
33
|
+
triggers: DestinationTriggerConfiguration;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface DestinationTriggerConfiguration {
|
|
37
|
+
shopify: ShopifyTriggerConfiguration;
|
|
38
|
+
exludeDomains: string[];
|
|
39
|
+
excludePages: string[];
|
|
40
|
+
domains: string[];
|
|
41
|
+
pages: string[];
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface ShopifyTriggerConfiguration {
|
|
45
|
+
enabled: boolean;
|
|
46
|
+
collections?: number[];
|
|
47
|
+
tags?: string[];
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
export interface EventConfiguration {
|
|
52
|
+
sourceEventName: string;
|
|
53
|
+
exclude?: boolean;
|
|
54
|
+
sample: EventSampleConfiguration;
|
|
55
|
+
transformations?: EventTransformation[];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface EventTransformation {
|
|
59
|
+
transformationEventName: string;
|
|
60
|
+
enabled: boolean;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface EventSampleConfiguration {
|
|
64
|
+
enabled: boolean;
|
|
65
|
+
rate: number;
|
|
66
|
+
}
|
|
67
|
+
|
|
@@ -1,44 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
id: string,
|
|
3
|
-
accountId: string,
|
|
4
|
-
pixelId: string,
|
|
5
|
-
destination: string;
|
|
6
|
-
displayName?: string,
|
|
7
|
-
enabled: boolean;
|
|
8
|
-
configuration?: any,
|
|
9
|
-
createdAt: string,
|
|
10
|
-
updatedAt: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export interface DestinationCatalogItem {
|
|
14
|
-
id: string,
|
|
15
|
-
active: boolean,
|
|
16
|
-
destinationKey: string,
|
|
17
|
-
destinationType: string,
|
|
18
|
-
displayName?: string,
|
|
19
|
-
shortName?: string;
|
|
20
|
-
description?: string,
|
|
21
|
-
url: string,
|
|
22
|
-
fields?: any,
|
|
23
|
-
createdAt: string,
|
|
24
|
-
updatedAt: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface DestinationCatalogFields {
|
|
28
|
-
component_type: string,
|
|
29
|
-
name: string,
|
|
30
|
-
description: string,
|
|
31
|
-
label: string,
|
|
32
|
-
type: string,
|
|
33
|
-
required: boolean,
|
|
34
|
-
values?: any[],
|
|
35
|
-
order: number;
|
|
36
|
-
}
|
|
1
|
+
import { Destination, UserDestinationConfiguration } from './destinations';
|
|
37
2
|
|
|
38
3
|
export interface AdTrackifyFacebookDestination extends Destination {
|
|
39
4
|
configuration: FacebookPixelConfiguration;
|
|
40
5
|
}
|
|
41
|
-
|
|
6
|
+
|
|
7
|
+
// Destination Specific configurations below
|
|
8
|
+
export interface FacebookPixelConfiguration extends UserDestinationConfiguration {
|
|
42
9
|
apiAccessToken?: string;
|
|
43
10
|
enableConversionAPI: boolean;
|
|
44
11
|
pixelId: string;
|
|
@@ -91,4 +58,3 @@ export enum CustomHTMLLocation {
|
|
|
91
58
|
BODY = 'body'
|
|
92
59
|
}
|
|
93
60
|
|
|
94
|
-
|
package/src/types/api/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './account';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './destinations';
|
|
2
|
+
export * from './destinations/destinations';
|
|
3
|
+
export * from './destinations/destination-catalog';
|
|
4
|
+
export * from './destinations/third-party-destination-configs';
|
|
4
5
|
export * from './shopify-app-install';
|
|
5
6
|
export * from './subscription';
|
|
6
7
|
export * from './user';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export interface DestinationConfiguration {
|
|
2
|
-
eventConfigurations: DestinationEventSpecificConfiguration[];
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
export interface DestinationEventSpecificConfiguration {
|
|
6
|
-
enabled: boolean;
|
|
7
|
-
sourceEventName: string;
|
|
8
|
-
destinationEventName?: string;
|
|
9
|
-
excludeEvent?: boolean;
|
|
1
|
+
export interface DestinationConfiguration {
|
|
2
|
+
eventConfigurations: DestinationEventSpecificConfiguration[];
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export interface DestinationEventSpecificConfiguration {
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
sourceEventName: string;
|
|
8
|
+
destinationEventName?: string;
|
|
9
|
+
excludeEvent?: boolean;
|
|
10
10
|
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export enum DESTINATIONS {
|
|
2
|
-
FACEBOOK = 'facebook',
|
|
3
|
-
TIKTOK = 'tiktok',
|
|
4
|
-
GOOGLE_ADS = 'googleAds',
|
|
5
|
-
GOOGLE_ANALYTICS_4 = 'googleAnalytics4',
|
|
6
|
-
HUBSPOT = 'hubspot',
|
|
7
|
-
WEBHOOK = 'webhook',
|
|
8
|
-
CUSTOM_HTML = 'customHTML',
|
|
9
|
-
CUSTOM_JS = 'customJS',
|
|
10
|
-
SNAPCHAT = 'snapchat',
|
|
11
|
-
TWITTER = 'twitter'
|
|
12
|
-
}
|