@adtrackify/at-tracking-event-types 4.66.28 → 4.66.30
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/cjs/types/api/measures/definitions/index.d.ts +1 -0
- package/dist/cjs/types/api/measures/definitions/index.js +1 -0
- package/dist/cjs/types/api/measures/definitions/index.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/measure-definitions.js +2 -0
- package/dist/cjs/types/api/measures/definitions/measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/tiktok-measure-definitions.d.ts +2 -0
- package/dist/cjs/types/api/measures/definitions/tiktok-measure-definitions.js +922 -0
- package/dist/cjs/types/api/measures/definitions/tiktok-measure-definitions.js.map +1 -0
- package/dist/cjs/types/api/measures/measure-categories.d.ts +8 -0
- package/dist/cjs/types/api/measures/measure-categories.js +8 -0
- package/dist/cjs/types/api/measures/measure-categories.js.map +1 -1
- package/dist/cjs/types/api/measures/measure-icon.d.ts +1 -0
- package/dist/cjs/types/api/measures/measure-icon.js +1 -0
- package/dist/cjs/types/api/measures/measure-icon.js.map +1 -1
- package/dist/cjs/types/api/measures/measures.d.ts +46 -0
- package/dist/cjs/types/api/measures/measures.js +46 -0
- package/dist/cjs/types/api/measures/measures.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/index.d.ts +1 -0
- package/dist/esm/types/api/measures/definitions/index.js +1 -0
- package/dist/esm/types/api/measures/definitions/index.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/measure-definitions.js +2 -0
- package/dist/esm/types/api/measures/definitions/measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/tiktok-measure-definitions.d.ts +2 -0
- package/dist/esm/types/api/measures/definitions/tiktok-measure-definitions.js +919 -0
- package/dist/esm/types/api/measures/definitions/tiktok-measure-definitions.js.map +1 -0
- package/dist/esm/types/api/measures/measure-categories.d.ts +8 -0
- package/dist/esm/types/api/measures/measure-categories.js +8 -0
- package/dist/esm/types/api/measures/measure-categories.js.map +1 -1
- package/dist/esm/types/api/measures/measure-icon.d.ts +1 -0
- package/dist/esm/types/api/measures/measure-icon.js +1 -0
- package/dist/esm/types/api/measures/measure-icon.js.map +1 -1
- package/dist/esm/types/api/measures/measures.d.ts +46 -0
- package/dist/esm/types/api/measures/measures.js +46 -0
- package/dist/esm/types/api/measures/measures.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,919 @@
|
|
|
1
|
+
import { MEASURE } from '../measures.js';
|
|
2
|
+
import { MEASURE_CATEGORY, MEASURE_SUBCATEGORY } from '../measure-categories.js';
|
|
3
|
+
import { MEASURE_ICON } from '../measure-icon.js';
|
|
4
|
+
import { MeasureValueType } from '../measure-value-type.js';
|
|
5
|
+
import { CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS } from './measure-applicable-contexts.js';
|
|
6
|
+
export const TIKTOK_MEASURES_MAP = {
|
|
7
|
+
[MEASURE.TIKTOK_SPEND]: {
|
|
8
|
+
title: 'TikTok Spend',
|
|
9
|
+
description: 'The total amount spent on your TikTok ads.',
|
|
10
|
+
tooltip: 'Total ad budget consumed by TikTok during the selected period. This is what TikTok billed you.',
|
|
11
|
+
sumPrefix: '$',
|
|
12
|
+
sumSuffix: '',
|
|
13
|
+
avgPrefix: '$',
|
|
14
|
+
avgSuffix: '',
|
|
15
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
16
|
+
measure: MEASURE.TIKTOK_SPEND,
|
|
17
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
18
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_SPEND,
|
|
19
|
+
valueType: MeasureValueType.CURRENCY,
|
|
20
|
+
decimalPlaces: 2,
|
|
21
|
+
useCompactNotation: true,
|
|
22
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
23
|
+
relatedMeasures: [MEASURE.TIKTOK_CPM, MEASURE.TIKTOK_CPC, MEASURE.TIKTOK_ROAS],
|
|
24
|
+
},
|
|
25
|
+
[MEASURE.TIKTOK_IMPRESSIONS]: {
|
|
26
|
+
title: 'TikTok Impressions',
|
|
27
|
+
description: 'The number of times your TikTok ads were shown.',
|
|
28
|
+
tooltip: 'How many times your ads appeared on screen. One person can generate multiple impressions.',
|
|
29
|
+
sumPrefix: '',
|
|
30
|
+
sumSuffix: '',
|
|
31
|
+
avgPrefix: '',
|
|
32
|
+
avgSuffix: '',
|
|
33
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
34
|
+
measure: MEASURE.TIKTOK_IMPRESSIONS,
|
|
35
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
36
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_AUDIENCE,
|
|
37
|
+
valueType: MeasureValueType.NUMBER,
|
|
38
|
+
decimalPlaces: 0,
|
|
39
|
+
useCompactNotation: false,
|
|
40
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
41
|
+
relatedMeasures: [MEASURE.TIKTOK_CPM, MEASURE.TIKTOK_CTR],
|
|
42
|
+
},
|
|
43
|
+
[MEASURE.TIKTOK_CPM]: {
|
|
44
|
+
title: 'TikTok CPM',
|
|
45
|
+
shortTitle: 'CPM',
|
|
46
|
+
description: 'The cost per thousand impressions of your TikTok ads.',
|
|
47
|
+
tooltip: 'How much you pay for every 1,000 times your ad is shown. Lower CPM means cheaper reach.',
|
|
48
|
+
formulaDisplay: 'Ad Spend ÷ Impressions × 1,000',
|
|
49
|
+
formula: 'spend / impressions * 1000',
|
|
50
|
+
sumPrefix: '$',
|
|
51
|
+
sumSuffix: '',
|
|
52
|
+
avgPrefix: '$',
|
|
53
|
+
avgSuffix: '',
|
|
54
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
55
|
+
measure: MEASURE.TIKTOK_CPM,
|
|
56
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
57
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_AUDIENCE,
|
|
58
|
+
valueType: MeasureValueType.CURRENCY,
|
|
59
|
+
decimalPlaces: 2,
|
|
60
|
+
useCompactNotation: true,
|
|
61
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
62
|
+
relatedMeasures: [MEASURE.TIKTOK_SPEND, MEASURE.TIKTOK_IMPRESSIONS, MEASURE.TIKTOK_CTR],
|
|
63
|
+
},
|
|
64
|
+
[MEASURE.TIKTOK_CLICKS]: {
|
|
65
|
+
title: 'TikTok Clicks',
|
|
66
|
+
description: 'The number of clicks on your TikTok ads.',
|
|
67
|
+
tooltip: 'Total clicks on your TikTok ads, including destination clicks and other interactions.',
|
|
68
|
+
sumPrefix: '',
|
|
69
|
+
sumSuffix: '',
|
|
70
|
+
avgPrefix: '',
|
|
71
|
+
avgSuffix: '',
|
|
72
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
73
|
+
measure: MEASURE.TIKTOK_CLICKS,
|
|
74
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
75
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
76
|
+
valueType: MeasureValueType.NUMBER,
|
|
77
|
+
decimalPlaces: 0,
|
|
78
|
+
useCompactNotation: false,
|
|
79
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
80
|
+
relatedMeasures: [MEASURE.TIKTOK_CPC, MEASURE.TIKTOK_CTR],
|
|
81
|
+
},
|
|
82
|
+
[MEASURE.TIKTOK_CPC]: {
|
|
83
|
+
title: 'TikTok CPC',
|
|
84
|
+
shortTitle: 'CPC',
|
|
85
|
+
description: 'The cost per click on your TikTok ads.',
|
|
86
|
+
tooltip: 'Average cost each time someone clicks your ad. Lower CPC means you are driving traffic more efficiently.',
|
|
87
|
+
formulaDisplay: 'Ad Spend ÷ Clicks',
|
|
88
|
+
formula: 'spend / clicks',
|
|
89
|
+
sumPrefix: '$',
|
|
90
|
+
sumSuffix: '',
|
|
91
|
+
avgPrefix: '$',
|
|
92
|
+
avgSuffix: '',
|
|
93
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
94
|
+
measure: MEASURE.TIKTOK_CPC,
|
|
95
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
96
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
97
|
+
valueType: MeasureValueType.CURRENCY,
|
|
98
|
+
decimalPlaces: 2,
|
|
99
|
+
useCompactNotation: true,
|
|
100
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
101
|
+
relatedMeasures: [MEASURE.TIKTOK_CLICKS, MEASURE.TIKTOK_SPEND, MEASURE.TIKTOK_CTR],
|
|
102
|
+
},
|
|
103
|
+
[MEASURE.TIKTOK_CTR]: {
|
|
104
|
+
title: 'TikTok CTR',
|
|
105
|
+
shortTitle: 'CTR',
|
|
106
|
+
description: 'The percentage of impressions that resulted in clicks.',
|
|
107
|
+
tooltip: 'How often people click your ad after seeing it. Higher CTR signals more engaging creative or targeting.',
|
|
108
|
+
formulaDisplay: 'Clicks ÷ Impressions × 100',
|
|
109
|
+
formula: 'clicks / impressions * 100',
|
|
110
|
+
sumPrefix: '',
|
|
111
|
+
sumSuffix: '%',
|
|
112
|
+
avgPrefix: '',
|
|
113
|
+
avgSuffix: '%',
|
|
114
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
115
|
+
measure: MEASURE.TIKTOK_CTR,
|
|
116
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
117
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
118
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
119
|
+
decimalPlaces: 2,
|
|
120
|
+
useCompactNotation: false,
|
|
121
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
122
|
+
relatedMeasures: [MEASURE.TIKTOK_CLICKS, MEASURE.TIKTOK_IMPRESSIONS],
|
|
123
|
+
},
|
|
124
|
+
[MEASURE.TIKTOK_PURCHASES]: {
|
|
125
|
+
title: 'TikTok Purchases',
|
|
126
|
+
description: 'The number of purchases attributed to your TikTok ads.',
|
|
127
|
+
tooltip: 'How many completed purchases TikTok attributes to your ads, including web and TikTok Shop conversions.',
|
|
128
|
+
sumPrefix: '',
|
|
129
|
+
sumSuffix: '',
|
|
130
|
+
avgPrefix: '',
|
|
131
|
+
avgSuffix: '',
|
|
132
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
133
|
+
measure: MEASURE.TIKTOK_PURCHASES,
|
|
134
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
135
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
136
|
+
valueType: MeasureValueType.NUMBER,
|
|
137
|
+
decimalPlaces: 0,
|
|
138
|
+
useCompactNotation: false,
|
|
139
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
140
|
+
relatedMeasures: [MEASURE.TIKTOK_PURCHASES_VALUE, MEASURE.TIKTOK_CPA, MEASURE.TIKTOK_ROAS],
|
|
141
|
+
},
|
|
142
|
+
[MEASURE.TIKTOK_PURCHASES_VALUE]: {
|
|
143
|
+
title: 'TikTok Purchases Value',
|
|
144
|
+
shortTitle: 'TikTok Revenue',
|
|
145
|
+
description: 'The total revenue from purchases attributed to your TikTok ads.',
|
|
146
|
+
tooltip: 'Total revenue TikTok credits to your ads. Used to calculate ROAS and evaluate campaign profitability.',
|
|
147
|
+
sumPrefix: '$',
|
|
148
|
+
sumSuffix: '',
|
|
149
|
+
avgPrefix: '$',
|
|
150
|
+
avgSuffix: '',
|
|
151
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
152
|
+
measure: MEASURE.TIKTOK_PURCHASES_VALUE,
|
|
153
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
154
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
155
|
+
valueType: MeasureValueType.CURRENCY,
|
|
156
|
+
decimalPlaces: 2,
|
|
157
|
+
useCompactNotation: true,
|
|
158
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
159
|
+
relatedMeasures: [MEASURE.TIKTOK_PURCHASES, MEASURE.TIKTOK_ROAS, MEASURE.TIKTOK_SPEND],
|
|
160
|
+
},
|
|
161
|
+
[MEASURE.TIKTOK_CPA]: {
|
|
162
|
+
title: 'TikTok CPA',
|
|
163
|
+
shortTitle: 'CPA',
|
|
164
|
+
description: 'The cost per purchase conversion from your TikTok ads.',
|
|
165
|
+
tooltip: 'How much you spend on average for each purchase TikTok attributes to your ads. Lower is better.',
|
|
166
|
+
formulaDisplay: 'Ad Spend ÷ Purchases',
|
|
167
|
+
formula: 'spend / purchases',
|
|
168
|
+
sumPrefix: '$',
|
|
169
|
+
sumSuffix: '',
|
|
170
|
+
avgPrefix: '$',
|
|
171
|
+
avgSuffix: '',
|
|
172
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
173
|
+
measure: MEASURE.TIKTOK_CPA,
|
|
174
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
175
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_EFFICIENCY,
|
|
176
|
+
valueType: MeasureValueType.CURRENCY,
|
|
177
|
+
decimalPlaces: 2,
|
|
178
|
+
useCompactNotation: true,
|
|
179
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
180
|
+
relatedMeasures: [MEASURE.TIKTOK_PURCHASES, MEASURE.TIKTOK_ROAS, MEASURE.TIKTOK_SPEND],
|
|
181
|
+
},
|
|
182
|
+
[MEASURE.TIKTOK_ROAS]: {
|
|
183
|
+
title: 'TikTok ROAS',
|
|
184
|
+
shortTitle: 'ROAS',
|
|
185
|
+
description: 'The return on ad spend from your TikTok ads.',
|
|
186
|
+
tooltip: 'Revenue TikTok reports per dollar spent on ads. A ROAS of 3x means $3 in attributed revenue for every $1 spent.',
|
|
187
|
+
formulaDisplay: 'Purchases Value ÷ Ad Spend',
|
|
188
|
+
formula: 'purchases_value / spend',
|
|
189
|
+
sumPrefix: '',
|
|
190
|
+
sumSuffix: 'x',
|
|
191
|
+
avgPrefix: '',
|
|
192
|
+
avgSuffix: 'x',
|
|
193
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
194
|
+
measure: MEASURE.TIKTOK_ROAS,
|
|
195
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
196
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_EFFICIENCY,
|
|
197
|
+
valueType: MeasureValueType.MULTIPLIER,
|
|
198
|
+
decimalPlaces: 2,
|
|
199
|
+
useCompactNotation: false,
|
|
200
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
201
|
+
relatedMeasures: [MEASURE.TIKTOK_SPEND, MEASURE.TIKTOK_PURCHASES_VALUE, MEASURE.TIKTOK_CPA],
|
|
202
|
+
},
|
|
203
|
+
[MEASURE.TIKTOK_VIEW_CONTENTS]: {
|
|
204
|
+
title: 'TikTok View Contents',
|
|
205
|
+
shortTitle: 'View Content',
|
|
206
|
+
description: 'The number of product or content page views attributed to your TikTok ads.',
|
|
207
|
+
tooltip: 'How many times visitors viewed a product detail page after clicking your ad. A top-of-funnel engagement signal.',
|
|
208
|
+
sumPrefix: '',
|
|
209
|
+
sumSuffix: '',
|
|
210
|
+
avgPrefix: '',
|
|
211
|
+
avgSuffix: '',
|
|
212
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
213
|
+
measure: MEASURE.TIKTOK_VIEW_CONTENTS,
|
|
214
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
215
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
216
|
+
valueType: MeasureValueType.NUMBER,
|
|
217
|
+
decimalPlaces: 0,
|
|
218
|
+
useCompactNotation: false,
|
|
219
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
220
|
+
relatedMeasures: [MEASURE.TIKTOK_VIEW_CONTENTS_COST, MEASURE.TIKTOK_ADD_TO_CARTS, MEASURE.TIKTOK_PURCHASES],
|
|
221
|
+
},
|
|
222
|
+
[MEASURE.TIKTOK_VIEW_CONTENTS_VALUE]: {
|
|
223
|
+
title: 'TikTok View Contents Value',
|
|
224
|
+
shortTitle: 'View Content Value',
|
|
225
|
+
description: 'The total value of products viewed from your TikTok ads.',
|
|
226
|
+
tooltip: 'Combined catalog value of all product pages viewed by visitors from your TikTok ads.',
|
|
227
|
+
sumPrefix: '$',
|
|
228
|
+
sumSuffix: '',
|
|
229
|
+
avgPrefix: '$',
|
|
230
|
+
avgSuffix: '',
|
|
231
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
232
|
+
measure: MEASURE.TIKTOK_VIEW_CONTENTS_VALUE,
|
|
233
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
234
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
235
|
+
valueType: MeasureValueType.CURRENCY,
|
|
236
|
+
decimalPlaces: 2,
|
|
237
|
+
useCompactNotation: true,
|
|
238
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
239
|
+
relatedMeasures: [MEASURE.TIKTOK_VIEW_CONTENTS, MEASURE.TIKTOK_ADD_TO_CARTS_VALUE],
|
|
240
|
+
},
|
|
241
|
+
[MEASURE.TIKTOK_VIEW_CONTENTS_COST]: {
|
|
242
|
+
title: 'TikTok Cost per View Content',
|
|
243
|
+
shortTitle: 'Cost/View Content',
|
|
244
|
+
description: 'The cost per product or content page view from your TikTok ads.',
|
|
245
|
+
tooltip: 'Average spend per product page view. Useful for optimizing top-of-funnel traffic cost.',
|
|
246
|
+
formulaDisplay: 'Ad Spend ÷ View Contents',
|
|
247
|
+
formula: 'spend / view_contents',
|
|
248
|
+
sumPrefix: '$',
|
|
249
|
+
sumSuffix: '',
|
|
250
|
+
avgPrefix: '$',
|
|
251
|
+
avgSuffix: '',
|
|
252
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
253
|
+
measure: MEASURE.TIKTOK_VIEW_CONTENTS_COST,
|
|
254
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
255
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
256
|
+
valueType: MeasureValueType.CURRENCY,
|
|
257
|
+
decimalPlaces: 2,
|
|
258
|
+
useCompactNotation: true,
|
|
259
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
260
|
+
relatedMeasures: [MEASURE.TIKTOK_VIEW_CONTENTS, MEASURE.TIKTOK_ADD_TO_CARTS_COST],
|
|
261
|
+
},
|
|
262
|
+
[MEASURE.TIKTOK_ADD_TO_CARTS]: {
|
|
263
|
+
title: 'TikTok Add to Carts',
|
|
264
|
+
shortTitle: 'Add to Cart',
|
|
265
|
+
description: 'The number of add to cart actions attributed to your TikTok ads.',
|
|
266
|
+
tooltip: 'How many times shoppers added items to their cart after engaging with your ad. A mid-funnel purchase intent signal.',
|
|
267
|
+
sumPrefix: '',
|
|
268
|
+
sumSuffix: '',
|
|
269
|
+
avgPrefix: '',
|
|
270
|
+
avgSuffix: '',
|
|
271
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
272
|
+
measure: MEASURE.TIKTOK_ADD_TO_CARTS,
|
|
273
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
274
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
275
|
+
valueType: MeasureValueType.NUMBER,
|
|
276
|
+
decimalPlaces: 0,
|
|
277
|
+
useCompactNotation: false,
|
|
278
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
279
|
+
relatedMeasures: [MEASURE.TIKTOK_ADD_TO_CARTS_COST, MEASURE.TIKTOK_INITIATE_CHECKOUTS, MEASURE.TIKTOK_PURCHASES],
|
|
280
|
+
},
|
|
281
|
+
[MEASURE.TIKTOK_ADD_TO_CARTS_VALUE]: {
|
|
282
|
+
title: 'TikTok Add to Carts Value',
|
|
283
|
+
shortTitle: 'Cart Value',
|
|
284
|
+
description: 'The total value of products added to cart from your TikTok ads.',
|
|
285
|
+
tooltip: 'Combined value of all items added to carts by visitors from your TikTok ads.',
|
|
286
|
+
sumPrefix: '$',
|
|
287
|
+
sumSuffix: '',
|
|
288
|
+
avgPrefix: '$',
|
|
289
|
+
avgSuffix: '',
|
|
290
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
291
|
+
measure: MEASURE.TIKTOK_ADD_TO_CARTS_VALUE,
|
|
292
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
293
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
294
|
+
valueType: MeasureValueType.CURRENCY,
|
|
295
|
+
decimalPlaces: 2,
|
|
296
|
+
useCompactNotation: true,
|
|
297
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
298
|
+
relatedMeasures: [MEASURE.TIKTOK_ADD_TO_CARTS, MEASURE.TIKTOK_PURCHASES_VALUE],
|
|
299
|
+
},
|
|
300
|
+
[MEASURE.TIKTOK_ADD_TO_CARTS_COST]: {
|
|
301
|
+
title: 'TikTok Cost per Add to Cart',
|
|
302
|
+
shortTitle: 'Cost/Add to Cart',
|
|
303
|
+
description: 'The cost per add to cart action from your TikTok ads.',
|
|
304
|
+
tooltip: 'Average spend per add-to-cart event. Helps gauge how efficiently your ads drive purchase intent.',
|
|
305
|
+
formulaDisplay: 'Ad Spend ÷ Add to Carts',
|
|
306
|
+
formula: 'spend / add_to_carts',
|
|
307
|
+
sumPrefix: '$',
|
|
308
|
+
sumSuffix: '',
|
|
309
|
+
avgPrefix: '$',
|
|
310
|
+
avgSuffix: '',
|
|
311
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
312
|
+
measure: MEASURE.TIKTOK_ADD_TO_CARTS_COST,
|
|
313
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
314
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
315
|
+
valueType: MeasureValueType.CURRENCY,
|
|
316
|
+
decimalPlaces: 2,
|
|
317
|
+
useCompactNotation: true,
|
|
318
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
319
|
+
relatedMeasures: [MEASURE.TIKTOK_ADD_TO_CARTS, MEASURE.TIKTOK_CPA, MEASURE.TIKTOK_INITIATE_CHECKOUTS_COST],
|
|
320
|
+
},
|
|
321
|
+
[MEASURE.TIKTOK_INITIATE_CHECKOUTS]: {
|
|
322
|
+
title: 'TikTok Initiate Checkouts',
|
|
323
|
+
shortTitle: 'Checkouts',
|
|
324
|
+
description: 'The number of checkout initiations attributed to your TikTok ads.',
|
|
325
|
+
tooltip: 'How many shoppers started the checkout process after engaging with your ad. A strong bottom-of-funnel conversion signal.',
|
|
326
|
+
sumPrefix: '',
|
|
327
|
+
sumSuffix: '',
|
|
328
|
+
avgPrefix: '',
|
|
329
|
+
avgSuffix: '',
|
|
330
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
331
|
+
measure: MEASURE.TIKTOK_INITIATE_CHECKOUTS,
|
|
332
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
333
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
334
|
+
valueType: MeasureValueType.NUMBER,
|
|
335
|
+
decimalPlaces: 0,
|
|
336
|
+
useCompactNotation: false,
|
|
337
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
338
|
+
relatedMeasures: [MEASURE.TIKTOK_INITIATE_CHECKOUTS_COST, MEASURE.TIKTOK_PURCHASES, MEASURE.TIKTOK_ADD_TO_CARTS],
|
|
339
|
+
},
|
|
340
|
+
[MEASURE.TIKTOK_INITIATE_CHECKOUTS_COST]: {
|
|
341
|
+
title: 'TikTok Cost per Initiate Checkout',
|
|
342
|
+
shortTitle: 'Cost/Checkout',
|
|
343
|
+
description: 'The cost per checkout initiation from your TikTok ads.',
|
|
344
|
+
tooltip: 'Average spend per checkout started. A lower figure indicates efficient bottom-of-funnel performance.',
|
|
345
|
+
formulaDisplay: 'Ad Spend ÷ Initiate Checkouts',
|
|
346
|
+
formula: 'spend / initiate_checkouts',
|
|
347
|
+
sumPrefix: '$',
|
|
348
|
+
sumSuffix: '',
|
|
349
|
+
avgPrefix: '$',
|
|
350
|
+
avgSuffix: '',
|
|
351
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
352
|
+
measure: MEASURE.TIKTOK_INITIATE_CHECKOUTS_COST,
|
|
353
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
354
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
355
|
+
valueType: MeasureValueType.CURRENCY,
|
|
356
|
+
decimalPlaces: 2,
|
|
357
|
+
useCompactNotation: true,
|
|
358
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
359
|
+
relatedMeasures: [MEASURE.TIKTOK_INITIATE_CHECKOUTS, MEASURE.TIKTOK_CPA, MEASURE.TIKTOK_ADD_TO_CARTS_COST],
|
|
360
|
+
},
|
|
361
|
+
[MEASURE.TIKTOK_LEADS]: {
|
|
362
|
+
title: 'TikTok Leads',
|
|
363
|
+
description: 'The number of leads generated from your TikTok ads.',
|
|
364
|
+
tooltip: 'How many people submitted a lead form or completed a lead event from your TikTok ads.',
|
|
365
|
+
sumPrefix: '',
|
|
366
|
+
sumSuffix: '',
|
|
367
|
+
avgPrefix: '',
|
|
368
|
+
avgSuffix: '',
|
|
369
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
370
|
+
measure: MEASURE.TIKTOK_LEADS,
|
|
371
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
372
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
373
|
+
valueType: MeasureValueType.NUMBER,
|
|
374
|
+
decimalPlaces: 0,
|
|
375
|
+
useCompactNotation: false,
|
|
376
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
377
|
+
relatedMeasures: [MEASURE.TIKTOK_LEADS_COST, MEASURE.TIKTOK_LEADS_VALUE, MEASURE.TIKTOK_PURCHASES],
|
|
378
|
+
},
|
|
379
|
+
[MEASURE.TIKTOK_LEADS_VALUE]: {
|
|
380
|
+
title: 'TikTok Leads Value',
|
|
381
|
+
shortTitle: 'Lead Value',
|
|
382
|
+
description: 'The total value of leads generated from your TikTok ads.',
|
|
383
|
+
tooltip: 'Combined assigned value of all leads generated via TikTok ads.',
|
|
384
|
+
sumPrefix: '$',
|
|
385
|
+
sumSuffix: '',
|
|
386
|
+
avgPrefix: '$',
|
|
387
|
+
avgSuffix: '',
|
|
388
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
389
|
+
measure: MEASURE.TIKTOK_LEADS_VALUE,
|
|
390
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
391
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
392
|
+
valueType: MeasureValueType.CURRENCY,
|
|
393
|
+
decimalPlaces: 2,
|
|
394
|
+
useCompactNotation: true,
|
|
395
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
396
|
+
relatedMeasures: [MEASURE.TIKTOK_LEADS, MEASURE.TIKTOK_LEADS_COST],
|
|
397
|
+
},
|
|
398
|
+
[MEASURE.TIKTOK_LEADS_COST]: {
|
|
399
|
+
title: 'TikTok Cost per Lead',
|
|
400
|
+
shortTitle: 'CPL',
|
|
401
|
+
description: 'The cost per lead generated from your TikTok ads.',
|
|
402
|
+
tooltip: 'Average spend per lead from TikTok ads. Key metric for lead generation campaigns.',
|
|
403
|
+
formulaDisplay: 'Ad Spend ÷ Leads',
|
|
404
|
+
formula: 'spend / leads',
|
|
405
|
+
sumPrefix: '$',
|
|
406
|
+
sumSuffix: '',
|
|
407
|
+
avgPrefix: '$',
|
|
408
|
+
avgSuffix: '',
|
|
409
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
410
|
+
measure: MEASURE.TIKTOK_LEADS_COST,
|
|
411
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
412
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
413
|
+
valueType: MeasureValueType.CURRENCY,
|
|
414
|
+
decimalPlaces: 2,
|
|
415
|
+
useCompactNotation: true,
|
|
416
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
417
|
+
relatedMeasures: [MEASURE.TIKTOK_LEADS, MEASURE.TIKTOK_CPA],
|
|
418
|
+
},
|
|
419
|
+
[MEASURE.TIKTOK_APP_INSTALLS]: {
|
|
420
|
+
title: 'TikTok App Installs',
|
|
421
|
+
description: 'The number of app installs from your TikTok ads.',
|
|
422
|
+
tooltip: 'How many people installed your app after engaging with your TikTok ad.',
|
|
423
|
+
sumPrefix: '',
|
|
424
|
+
sumSuffix: '',
|
|
425
|
+
avgPrefix: '',
|
|
426
|
+
avgSuffix: '',
|
|
427
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
428
|
+
measure: MEASURE.TIKTOK_APP_INSTALLS,
|
|
429
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
430
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
431
|
+
valueType: MeasureValueType.NUMBER,
|
|
432
|
+
decimalPlaces: 0,
|
|
433
|
+
useCompactNotation: false,
|
|
434
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
435
|
+
relatedMeasures: [MEASURE.TIKTOK_APP_INSTALLS_COST, MEASURE.TIKTOK_COMPLETE_REGISTRATIONS],
|
|
436
|
+
},
|
|
437
|
+
[MEASURE.TIKTOK_APP_INSTALLS_COST]: {
|
|
438
|
+
title: 'TikTok Cost per App Install',
|
|
439
|
+
shortTitle: 'CPI',
|
|
440
|
+
description: 'The cost per app install from your TikTok ads.',
|
|
441
|
+
tooltip: 'Average spend per app install from TikTok ads. The primary efficiency metric for app install campaigns.',
|
|
442
|
+
formulaDisplay: 'Ad Spend ÷ App Installs',
|
|
443
|
+
formula: 'spend / app_installs',
|
|
444
|
+
sumPrefix: '$',
|
|
445
|
+
sumSuffix: '',
|
|
446
|
+
avgPrefix: '$',
|
|
447
|
+
avgSuffix: '',
|
|
448
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
449
|
+
measure: MEASURE.TIKTOK_APP_INSTALLS_COST,
|
|
450
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
451
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
452
|
+
valueType: MeasureValueType.CURRENCY,
|
|
453
|
+
decimalPlaces: 2,
|
|
454
|
+
useCompactNotation: true,
|
|
455
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
456
|
+
relatedMeasures: [MEASURE.TIKTOK_APP_INSTALLS, MEASURE.TIKTOK_CPA],
|
|
457
|
+
},
|
|
458
|
+
[MEASURE.TIKTOK_COMPLETE_REGISTRATIONS]: {
|
|
459
|
+
title: 'TikTok Completed Registrations',
|
|
460
|
+
shortTitle: 'Registrations',
|
|
461
|
+
description: 'The number of completed registrations from your TikTok ads.',
|
|
462
|
+
tooltip: 'How many people completed a registration form or sign-up flow after engaging with your TikTok ad.',
|
|
463
|
+
sumPrefix: '',
|
|
464
|
+
sumSuffix: '',
|
|
465
|
+
avgPrefix: '',
|
|
466
|
+
avgSuffix: '',
|
|
467
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
468
|
+
measure: MEASURE.TIKTOK_COMPLETE_REGISTRATIONS,
|
|
469
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
470
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
471
|
+
valueType: MeasureValueType.NUMBER,
|
|
472
|
+
decimalPlaces: 0,
|
|
473
|
+
useCompactNotation: false,
|
|
474
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
475
|
+
relatedMeasures: [MEASURE.TIKTOK_COMPLETE_REGISTRATIONS_COST, MEASURE.TIKTOK_LEADS],
|
|
476
|
+
},
|
|
477
|
+
[MEASURE.TIKTOK_COMPLETE_REGISTRATIONS_COST]: {
|
|
478
|
+
title: 'TikTok Cost per Completed Registration',
|
|
479
|
+
shortTitle: 'Cost/Registration',
|
|
480
|
+
description: 'The cost per completed registration from your TikTok ads.',
|
|
481
|
+
tooltip: 'Average spend per completed registration from TikTok ads.',
|
|
482
|
+
formulaDisplay: 'Ad Spend ÷ Completed Registrations',
|
|
483
|
+
formula: 'spend / complete_registrations',
|
|
484
|
+
sumPrefix: '$',
|
|
485
|
+
sumSuffix: '',
|
|
486
|
+
avgPrefix: '$',
|
|
487
|
+
avgSuffix: '',
|
|
488
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
489
|
+
measure: MEASURE.TIKTOK_COMPLETE_REGISTRATIONS_COST,
|
|
490
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
491
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
492
|
+
valueType: MeasureValueType.CURRENCY,
|
|
493
|
+
decimalPlaces: 2,
|
|
494
|
+
useCompactNotation: true,
|
|
495
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
496
|
+
relatedMeasures: [MEASURE.TIKTOK_COMPLETE_REGISTRATIONS, MEASURE.TIKTOK_LEADS_COST],
|
|
497
|
+
},
|
|
498
|
+
[MEASURE.TIKTOK_ADD_TO_WISHLISTS]: {
|
|
499
|
+
title: 'TikTok Add to Wishlists',
|
|
500
|
+
shortTitle: 'Wishlists',
|
|
501
|
+
description: 'The number of add to wishlist actions attributed to your TikTok ads.',
|
|
502
|
+
tooltip: 'How many times shoppers saved items to their wishlist after engaging with your ad. Signals future purchase intent.',
|
|
503
|
+
sumPrefix: '',
|
|
504
|
+
sumSuffix: '',
|
|
505
|
+
avgPrefix: '',
|
|
506
|
+
avgSuffix: '',
|
|
507
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
508
|
+
measure: MEASURE.TIKTOK_ADD_TO_WISHLISTS,
|
|
509
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
510
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
511
|
+
valueType: MeasureValueType.NUMBER,
|
|
512
|
+
decimalPlaces: 0,
|
|
513
|
+
useCompactNotation: false,
|
|
514
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
515
|
+
relatedMeasures: [MEASURE.TIKTOK_ADD_TO_WISHLISTS_COST, MEASURE.TIKTOK_ADD_TO_CARTS],
|
|
516
|
+
},
|
|
517
|
+
[MEASURE.TIKTOK_ADD_TO_WISHLISTS_COST]: {
|
|
518
|
+
title: 'TikTok Cost per Add to Wishlist',
|
|
519
|
+
shortTitle: 'Cost/Wishlist',
|
|
520
|
+
description: 'The cost per add to wishlist action from your TikTok ads.',
|
|
521
|
+
tooltip: 'Average spend per wishlist add from your TikTok ads.',
|
|
522
|
+
formulaDisplay: 'Ad Spend ÷ Add to Wishlists',
|
|
523
|
+
formula: 'spend / add_to_wishlists',
|
|
524
|
+
sumPrefix: '$',
|
|
525
|
+
sumSuffix: '',
|
|
526
|
+
avgPrefix: '$',
|
|
527
|
+
avgSuffix: '',
|
|
528
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
529
|
+
measure: MEASURE.TIKTOK_ADD_TO_WISHLISTS_COST,
|
|
530
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
531
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CONVERSIONS,
|
|
532
|
+
valueType: MeasureValueType.CURRENCY,
|
|
533
|
+
decimalPlaces: 2,
|
|
534
|
+
useCompactNotation: true,
|
|
535
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
536
|
+
relatedMeasures: [MEASURE.TIKTOK_ADD_TO_WISHLISTS, MEASURE.TIKTOK_ADD_TO_CARTS_COST],
|
|
537
|
+
},
|
|
538
|
+
[MEASURE.TIKTOK_LANDING_PAGE_VIEWS]: {
|
|
539
|
+
title: 'TikTok Landing Page Views',
|
|
540
|
+
shortTitle: 'LP Views',
|
|
541
|
+
description: 'The number of times your landing page loaded after people clicked your ads.',
|
|
542
|
+
tooltip: 'How many people fully loaded your landing page after clicking. Lower than clicks indicates drop-off before the page loaded.',
|
|
543
|
+
sumPrefix: '',
|
|
544
|
+
sumSuffix: '',
|
|
545
|
+
avgPrefix: '',
|
|
546
|
+
avgSuffix: '',
|
|
547
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
548
|
+
measure: MEASURE.TIKTOK_LANDING_PAGE_VIEWS,
|
|
549
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
550
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
551
|
+
valueType: MeasureValueType.NUMBER,
|
|
552
|
+
decimalPlaces: 0,
|
|
553
|
+
useCompactNotation: false,
|
|
554
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
555
|
+
relatedMeasures: [
|
|
556
|
+
MEASURE.TIKTOK_LANDING_PAGE_VIEWS_COST,
|
|
557
|
+
MEASURE.TIKTOK_LANDING_PAGE_VIEW_RATE,
|
|
558
|
+
MEASURE.TIKTOK_CLICKS,
|
|
559
|
+
],
|
|
560
|
+
},
|
|
561
|
+
[MEASURE.TIKTOK_LANDING_PAGE_VIEWS_COST]: {
|
|
562
|
+
title: 'TikTok Cost per Landing Page View',
|
|
563
|
+
shortTitle: 'Cost/LP View',
|
|
564
|
+
description: 'The cost per landing page view from your TikTok ads.',
|
|
565
|
+
tooltip: 'Average spend per landing page load. A more reliable traffic metric than clicks alone.',
|
|
566
|
+
formulaDisplay: 'Ad Spend ÷ Landing Page Views',
|
|
567
|
+
formula: 'spend / landing_page_views',
|
|
568
|
+
sumPrefix: '$',
|
|
569
|
+
sumSuffix: '',
|
|
570
|
+
avgPrefix: '$',
|
|
571
|
+
avgSuffix: '',
|
|
572
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
573
|
+
measure: MEASURE.TIKTOK_LANDING_PAGE_VIEWS_COST,
|
|
574
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
575
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
576
|
+
valueType: MeasureValueType.CURRENCY,
|
|
577
|
+
decimalPlaces: 2,
|
|
578
|
+
useCompactNotation: true,
|
|
579
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
580
|
+
relatedMeasures: [MEASURE.TIKTOK_LANDING_PAGE_VIEWS, MEASURE.TIKTOK_CPC],
|
|
581
|
+
},
|
|
582
|
+
[MEASURE.TIKTOK_LANDING_PAGE_VIEW_RATE]: {
|
|
583
|
+
title: 'TikTok Landing Page View Rate',
|
|
584
|
+
shortTitle: 'LP View Rate',
|
|
585
|
+
description: 'The percentage of impressions that resulted in landing page loads.',
|
|
586
|
+
tooltip: 'Share of impressions that actually loaded your landing page. Low rates suggest slow load times or bounce issues.',
|
|
587
|
+
formulaDisplay: 'Landing Page Views ÷ Impressions × 100',
|
|
588
|
+
formula: 'landing_page_views / impressions * 100',
|
|
589
|
+
sumPrefix: '',
|
|
590
|
+
sumSuffix: '%',
|
|
591
|
+
avgPrefix: '',
|
|
592
|
+
avgSuffix: '%',
|
|
593
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
594
|
+
measure: MEASURE.TIKTOK_LANDING_PAGE_VIEW_RATE,
|
|
595
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
596
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_CLICKS,
|
|
597
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
598
|
+
decimalPlaces: 2,
|
|
599
|
+
useCompactNotation: false,
|
|
600
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
601
|
+
relatedMeasures: [MEASURE.TIKTOK_LANDING_PAGE_VIEWS, MEASURE.TIKTOK_IMPRESSIONS],
|
|
602
|
+
},
|
|
603
|
+
[MEASURE.TIKTOK_VIDEO_PLAYS]: {
|
|
604
|
+
title: 'TikTok Video Plays',
|
|
605
|
+
description: 'The number of video plays on your TikTok ads.',
|
|
606
|
+
tooltip: 'Total times your video started playing, including auto-plays. Higher than views due to very short watches being excluded from "views".',
|
|
607
|
+
sumPrefix: '',
|
|
608
|
+
sumSuffix: '',
|
|
609
|
+
avgPrefix: '',
|
|
610
|
+
avgSuffix: '',
|
|
611
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
612
|
+
measure: MEASURE.TIKTOK_VIDEO_PLAYS,
|
|
613
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
614
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
615
|
+
valueType: MeasureValueType.NUMBER,
|
|
616
|
+
decimalPlaces: 0,
|
|
617
|
+
useCompactNotation: false,
|
|
618
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
619
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_VIEWS],
|
|
620
|
+
},
|
|
621
|
+
[MEASURE.TIKTOK_VIDEO_VIEWS]: {
|
|
622
|
+
title: 'TikTok Video Views',
|
|
623
|
+
description: 'The number of video views on your TikTok ads.',
|
|
624
|
+
tooltip: 'How many times your video ad was watched for at least 6 seconds (TikTok\'s default view threshold).',
|
|
625
|
+
sumPrefix: '',
|
|
626
|
+
sumSuffix: '',
|
|
627
|
+
avgPrefix: '',
|
|
628
|
+
avgSuffix: '',
|
|
629
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
630
|
+
measure: MEASURE.TIKTOK_VIDEO_VIEWS,
|
|
631
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
632
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
633
|
+
valueType: MeasureValueType.NUMBER,
|
|
634
|
+
decimalPlaces: 0,
|
|
635
|
+
useCompactNotation: false,
|
|
636
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
637
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_VIEWS_COST, MEASURE.TIKTOK_VIDEO_PLAYS, MEASURE.TIKTOK_VIDEO_THRUPLAYS],
|
|
638
|
+
},
|
|
639
|
+
[MEASURE.TIKTOK_VIDEO_VIEWS_COST]: {
|
|
640
|
+
title: 'TikTok Cost per Video View',
|
|
641
|
+
shortTitle: 'Cost/Video View',
|
|
642
|
+
description: 'The cost per video view on your TikTok ads.',
|
|
643
|
+
tooltip: 'Average spend per 6-second video view. The standard cost metric for video awareness campaigns.',
|
|
644
|
+
formulaDisplay: 'Ad Spend ÷ Video Views',
|
|
645
|
+
formula: 'spend / video_views',
|
|
646
|
+
sumPrefix: '$',
|
|
647
|
+
sumSuffix: '',
|
|
648
|
+
avgPrefix: '$',
|
|
649
|
+
avgSuffix: '',
|
|
650
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
651
|
+
measure: MEASURE.TIKTOK_VIDEO_VIEWS_COST,
|
|
652
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
653
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
654
|
+
valueType: MeasureValueType.CURRENCY,
|
|
655
|
+
decimalPlaces: 2,
|
|
656
|
+
useCompactNotation: true,
|
|
657
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
658
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_VIEWS, MEASURE.TIKTOK_VIDEO_VIEWS_THRUPLAY_COST],
|
|
659
|
+
},
|
|
660
|
+
[MEASURE.TIKTOK_VIDEO_VIEWS_15S]: {
|
|
661
|
+
title: 'TikTok 15-Second Video Views',
|
|
662
|
+
shortTitle: '15s Video Views',
|
|
663
|
+
description: 'The number of times your video ads were watched for at least 15 seconds.',
|
|
664
|
+
tooltip: 'Views where the viewer watched at least 15 continuous seconds. Indicates deeper engagement than the 6-second threshold.',
|
|
665
|
+
sumPrefix: '',
|
|
666
|
+
sumSuffix: '',
|
|
667
|
+
avgPrefix: '',
|
|
668
|
+
avgSuffix: '',
|
|
669
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
670
|
+
measure: MEASURE.TIKTOK_VIDEO_VIEWS_15S,
|
|
671
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
672
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
673
|
+
valueType: MeasureValueType.NUMBER,
|
|
674
|
+
decimalPlaces: 0,
|
|
675
|
+
useCompactNotation: false,
|
|
676
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
677
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_VIEWS, MEASURE.TIKTOK_VIDEO_THRUPLAYS],
|
|
678
|
+
},
|
|
679
|
+
[MEASURE.TIKTOK_VIDEO_THRUPLAYS]: {
|
|
680
|
+
title: 'TikTok Video Thruplay Views',
|
|
681
|
+
shortTitle: 'Thruplay Views',
|
|
682
|
+
description: 'The number of videos watched to completion.',
|
|
683
|
+
tooltip: 'Views where the viewer watched your video to completion. The recommended metric for video campaign optimization.',
|
|
684
|
+
sumPrefix: '',
|
|
685
|
+
sumSuffix: '',
|
|
686
|
+
avgPrefix: '',
|
|
687
|
+
avgSuffix: '',
|
|
688
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
689
|
+
measure: MEASURE.TIKTOK_VIDEO_THRUPLAYS,
|
|
690
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
691
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
692
|
+
valueType: MeasureValueType.NUMBER,
|
|
693
|
+
decimalPlaces: 0,
|
|
694
|
+
useCompactNotation: false,
|
|
695
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
696
|
+
relatedMeasures: [
|
|
697
|
+
MEASURE.TIKTOK_VIDEO_VIEWS_THRUPLAY_COST,
|
|
698
|
+
MEASURE.TIKTOK_VIDEO_P100_WATCHED,
|
|
699
|
+
MEASURE.TIKTOK_VIDEO_VIEWS_15S,
|
|
700
|
+
],
|
|
701
|
+
},
|
|
702
|
+
[MEASURE.TIKTOK_VIDEO_VIEWS_THRUPLAY_COST]: {
|
|
703
|
+
title: 'TikTok Cost per Video Thruplay',
|
|
704
|
+
shortTitle: 'Cost/Thruplay',
|
|
705
|
+
description: 'The cost per video watched to completion.',
|
|
706
|
+
tooltip: 'Average spend per Thruplay view. The standard efficiency metric when optimizing for video completion campaigns.',
|
|
707
|
+
formulaDisplay: 'Ad Spend ÷ Thruplay Views',
|
|
708
|
+
formula: 'spend / video_thruplays',
|
|
709
|
+
sumPrefix: '$',
|
|
710
|
+
sumSuffix: '',
|
|
711
|
+
avgPrefix: '$',
|
|
712
|
+
avgSuffix: '',
|
|
713
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
714
|
+
measure: MEASURE.TIKTOK_VIDEO_VIEWS_THRUPLAY_COST,
|
|
715
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
716
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
717
|
+
valueType: MeasureValueType.CURRENCY,
|
|
718
|
+
decimalPlaces: 2,
|
|
719
|
+
useCompactNotation: true,
|
|
720
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
721
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_THRUPLAYS, MEASURE.TIKTOK_VIDEO_VIEWS_COST],
|
|
722
|
+
},
|
|
723
|
+
[MEASURE.TIKTOK_VIDEO_P25_WATCHED]: {
|
|
724
|
+
title: 'TikTok Video 25% Completion Views',
|
|
725
|
+
shortTitle: 'Video 25% Views',
|
|
726
|
+
description: 'The number of times your video ads were watched to at least 25% completion.',
|
|
727
|
+
tooltip: 'Views where the audience watched at least a quarter of your video. Part of the completion rate funnel.',
|
|
728
|
+
sumPrefix: '',
|
|
729
|
+
sumSuffix: '',
|
|
730
|
+
avgPrefix: '',
|
|
731
|
+
avgSuffix: '',
|
|
732
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
733
|
+
measure: MEASURE.TIKTOK_VIDEO_P25_WATCHED,
|
|
734
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
735
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
736
|
+
valueType: MeasureValueType.NUMBER,
|
|
737
|
+
decimalPlaces: 0,
|
|
738
|
+
useCompactNotation: false,
|
|
739
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
740
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_P50_WATCHED, MEASURE.TIKTOK_VIDEO_VIEWS],
|
|
741
|
+
},
|
|
742
|
+
[MEASURE.TIKTOK_VIDEO_P50_WATCHED]: {
|
|
743
|
+
title: 'TikTok Video 50% Completion Views',
|
|
744
|
+
shortTitle: 'Video 50% Views',
|
|
745
|
+
description: 'The number of times your video ads were watched to at least 50% completion.',
|
|
746
|
+
tooltip: 'Views where the audience watched at least half of your video. Indicates moderate viewing engagement.',
|
|
747
|
+
sumPrefix: '',
|
|
748
|
+
sumSuffix: '',
|
|
749
|
+
avgPrefix: '',
|
|
750
|
+
avgSuffix: '',
|
|
751
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
752
|
+
measure: MEASURE.TIKTOK_VIDEO_P50_WATCHED,
|
|
753
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
754
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
755
|
+
valueType: MeasureValueType.NUMBER,
|
|
756
|
+
decimalPlaces: 0,
|
|
757
|
+
useCompactNotation: false,
|
|
758
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
759
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_P25_WATCHED, MEASURE.TIKTOK_VIDEO_P75_WATCHED],
|
|
760
|
+
},
|
|
761
|
+
[MEASURE.TIKTOK_VIDEO_P75_WATCHED]: {
|
|
762
|
+
title: 'TikTok Video 75% Completion Views',
|
|
763
|
+
shortTitle: 'Video 75% Views',
|
|
764
|
+
description: 'The number of times your video ads were watched to at least 75% completion.',
|
|
765
|
+
tooltip: 'Views where the audience watched at least three quarters of your video. Signals strong content retention.',
|
|
766
|
+
sumPrefix: '',
|
|
767
|
+
sumSuffix: '',
|
|
768
|
+
avgPrefix: '',
|
|
769
|
+
avgSuffix: '',
|
|
770
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
771
|
+
measure: MEASURE.TIKTOK_VIDEO_P75_WATCHED,
|
|
772
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
773
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
774
|
+
valueType: MeasureValueType.NUMBER,
|
|
775
|
+
decimalPlaces: 0,
|
|
776
|
+
useCompactNotation: false,
|
|
777
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
778
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_P50_WATCHED, MEASURE.TIKTOK_VIDEO_P100_WATCHED],
|
|
779
|
+
},
|
|
780
|
+
[MEASURE.TIKTOK_VIDEO_P100_WATCHED]: {
|
|
781
|
+
title: 'TikTok Video Completions',
|
|
782
|
+
shortTitle: 'Video Completions',
|
|
783
|
+
description: 'The number of times your video ads were watched to 100% completion.',
|
|
784
|
+
tooltip: 'Views where the audience watched your entire video from start to finish. The strongest video engagement signal.',
|
|
785
|
+
sumPrefix: '',
|
|
786
|
+
sumSuffix: '',
|
|
787
|
+
avgPrefix: '',
|
|
788
|
+
avgSuffix: '',
|
|
789
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
790
|
+
measure: MEASURE.TIKTOK_VIDEO_P100_WATCHED,
|
|
791
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
792
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_VIDEO,
|
|
793
|
+
valueType: MeasureValueType.NUMBER,
|
|
794
|
+
decimalPlaces: 0,
|
|
795
|
+
useCompactNotation: false,
|
|
796
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
797
|
+
relatedMeasures: [MEASURE.TIKTOK_VIDEO_P75_WATCHED, MEASURE.TIKTOK_VIDEO_THRUPLAYS],
|
|
798
|
+
},
|
|
799
|
+
[MEASURE.TIKTOK_ENGAGEMENTS]: {
|
|
800
|
+
title: 'TikTok Engagements',
|
|
801
|
+
description: 'The total interactions with your TikTok ads (likes, comments, shares).',
|
|
802
|
+
tooltip: 'All social interactions on your ad including likes, comments, and shares. High engagement signals resonant creative.',
|
|
803
|
+
sumPrefix: '',
|
|
804
|
+
sumSuffix: '',
|
|
805
|
+
avgPrefix: '',
|
|
806
|
+
avgSuffix: '',
|
|
807
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
808
|
+
measure: MEASURE.TIKTOK_ENGAGEMENTS,
|
|
809
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
810
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
811
|
+
valueType: MeasureValueType.NUMBER,
|
|
812
|
+
decimalPlaces: 0,
|
|
813
|
+
useCompactNotation: false,
|
|
814
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
815
|
+
relatedMeasures: [
|
|
816
|
+
MEASURE.TIKTOK_ENGAGEMENTS_COST,
|
|
817
|
+
MEASURE.TIKTOK_ENGAGEMENT_RATE,
|
|
818
|
+
MEASURE.TIKTOK_LIKES,
|
|
819
|
+
MEASURE.TIKTOK_SHARES,
|
|
820
|
+
],
|
|
821
|
+
},
|
|
822
|
+
[MEASURE.TIKTOK_ENGAGEMENTS_COST]: {
|
|
823
|
+
title: 'TikTok Cost per Engagement',
|
|
824
|
+
shortTitle: 'Cost/Engagement',
|
|
825
|
+
description: 'The cost per engagement on your TikTok ads.',
|
|
826
|
+
tooltip: 'Average spend per social interaction. Useful for evaluating brand awareness and community-building campaigns.',
|
|
827
|
+
formulaDisplay: 'Ad Spend ÷ Engagements',
|
|
828
|
+
formula: 'spend / engagements',
|
|
829
|
+
sumPrefix: '$',
|
|
830
|
+
sumSuffix: '',
|
|
831
|
+
avgPrefix: '$',
|
|
832
|
+
avgSuffix: '',
|
|
833
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
834
|
+
measure: MEASURE.TIKTOK_ENGAGEMENTS_COST,
|
|
835
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
836
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
837
|
+
valueType: MeasureValueType.CURRENCY,
|
|
838
|
+
decimalPlaces: 2,
|
|
839
|
+
useCompactNotation: true,
|
|
840
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
841
|
+
relatedMeasures: [MEASURE.TIKTOK_ENGAGEMENTS, MEASURE.TIKTOK_ENGAGEMENT_RATE],
|
|
842
|
+
},
|
|
843
|
+
[MEASURE.TIKTOK_ENGAGEMENT_RATE]: {
|
|
844
|
+
title: 'TikTok Engagement Rate',
|
|
845
|
+
shortTitle: 'Engagement Rate',
|
|
846
|
+
description: 'The percentage of people who engaged with your TikTok ads after seeing them.',
|
|
847
|
+
tooltip: 'Share of people who interacted with your ad after seeing it. Higher rates indicate more compelling content.',
|
|
848
|
+
formulaDisplay: 'Engagements ÷ Impressions × 100',
|
|
849
|
+
formula: 'engagements / impressions * 100',
|
|
850
|
+
sumPrefix: '',
|
|
851
|
+
sumSuffix: '%',
|
|
852
|
+
avgPrefix: '',
|
|
853
|
+
avgSuffix: '%',
|
|
854
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
855
|
+
measure: MEASURE.TIKTOK_ENGAGEMENT_RATE,
|
|
856
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
857
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
858
|
+
valueType: MeasureValueType.PERCENTAGE,
|
|
859
|
+
decimalPlaces: 2,
|
|
860
|
+
useCompactNotation: false,
|
|
861
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
862
|
+
relatedMeasures: [MEASURE.TIKTOK_ENGAGEMENTS, MEASURE.TIKTOK_ENGAGEMENTS_COST],
|
|
863
|
+
},
|
|
864
|
+
[MEASURE.TIKTOK_LIKES]: {
|
|
865
|
+
title: 'TikTok Likes',
|
|
866
|
+
description: 'The number of likes on your TikTok ads.',
|
|
867
|
+
tooltip: 'Total likes on your ad. Likes are a basic positive engagement signal.',
|
|
868
|
+
sumPrefix: '',
|
|
869
|
+
sumSuffix: '',
|
|
870
|
+
avgPrefix: '',
|
|
871
|
+
avgSuffix: '',
|
|
872
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
873
|
+
measure: MEASURE.TIKTOK_LIKES,
|
|
874
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
875
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
876
|
+
valueType: MeasureValueType.NUMBER,
|
|
877
|
+
decimalPlaces: 0,
|
|
878
|
+
useCompactNotation: false,
|
|
879
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
880
|
+
relatedMeasures: [MEASURE.TIKTOK_ENGAGEMENTS, MEASURE.TIKTOK_COMMENTS, MEASURE.TIKTOK_SHARES],
|
|
881
|
+
},
|
|
882
|
+
[MEASURE.TIKTOK_COMMENTS]: {
|
|
883
|
+
title: 'TikTok Comments',
|
|
884
|
+
description: 'The number of comments on your TikTok ads.',
|
|
885
|
+
tooltip: 'Total comments left on your ad. Comments often indicate strong opinions or questions about your product.',
|
|
886
|
+
sumPrefix: '',
|
|
887
|
+
sumSuffix: '',
|
|
888
|
+
avgPrefix: '',
|
|
889
|
+
avgSuffix: '',
|
|
890
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
891
|
+
measure: MEASURE.TIKTOK_COMMENTS,
|
|
892
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
893
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
894
|
+
valueType: MeasureValueType.NUMBER,
|
|
895
|
+
decimalPlaces: 0,
|
|
896
|
+
useCompactNotation: false,
|
|
897
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
898
|
+
relatedMeasures: [MEASURE.TIKTOK_ENGAGEMENTS, MEASURE.TIKTOK_LIKES, MEASURE.TIKTOK_SHARES],
|
|
899
|
+
},
|
|
900
|
+
[MEASURE.TIKTOK_SHARES]: {
|
|
901
|
+
title: 'TikTok Shares',
|
|
902
|
+
description: 'The number of times your TikTok ads were shared.',
|
|
903
|
+
tooltip: 'How many times people shared your ad. Shares extend organic reach at no extra cost.',
|
|
904
|
+
sumPrefix: '',
|
|
905
|
+
sumSuffix: '',
|
|
906
|
+
avgPrefix: '',
|
|
907
|
+
avgSuffix: '',
|
|
908
|
+
icon: MEASURE_ICON.TIKTOK,
|
|
909
|
+
measure: MEASURE.TIKTOK_SHARES,
|
|
910
|
+
category: MEASURE_CATEGORY.TIKTOK_ADS,
|
|
911
|
+
subcategory: MEASURE_SUBCATEGORY.TIKTOK_ENGAGEMENT,
|
|
912
|
+
valueType: MeasureValueType.NUMBER,
|
|
913
|
+
decimalPlaces: 0,
|
|
914
|
+
useCompactNotation: false,
|
|
915
|
+
applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
916
|
+
relatedMeasures: [MEASURE.TIKTOK_ENGAGEMENTS, MEASURE.TIKTOK_LIKES, MEASURE.TIKTOK_COMMENTS],
|
|
917
|
+
},
|
|
918
|
+
};
|
|
919
|
+
//# sourceMappingURL=tiktok-measure-definitions.js.map
|