summaryrefslogtreecommitdiff
path: root/src/config/metrics.ts
blob: b9ff0b46ece5681172871b64eaf31489fd90ae9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { BUILD } from './build';

const APP_NAME = 'com.apple.apps';
const APP_DELEGATE = 'web-appstore-app';

export const config = {
    baseFields: {
        appName: APP_NAME,
        delegateApp: APP_DELEGATE,
        appVersion: BUILD,
        resourceRevNum: BUILD,
    },
    clickstream: {
        constraintProfiles: ['AMPWeb'],
        topic: 'xp_amp_appstore_unidentified',
    },
};