blob: 86522d50057b154b70d9e4f782da9d5bd53b136c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
* Created by keithpk on 2/9/17.
*/
/**
* These are the developer IDs for apps that Apple works on internally
* The IDs in the list below are CPIDs (content provider IDs), which are not exposed
* to the client. So, we use the developer.id field that we have available instead.
* Note that Dark Sky both the same developer ID as Apple Inc.
* 2003 Apple Inc
* 120076162 Apple Health Research
* 244848 The Dark Sky Company LLC
* 115216 Claris International Inc.
* 14275 Shazam Entertainment Limited
* 118988565 AC Wellness Network LLC
*/
export const appleOwnedDeveloperIds = [
"284417353",
"1464590764",
"314638464",
"284993479",
"1351056256", // AC Wellness Network LLC
];
export const iAdRequestDataHeaderName = "X-Apple-iAd-Request-Data";
export const appStoreClientRequestIdName = "X-Apple-App-Store-Client-Request-Id";
export const iAdRoutingInfoHeaderName = "X-Apple-iAd-Env-Name";
//# sourceMappingURL=constants.js.map
|