constants.js 1.32 KB
Newer Older
1 2 3
'use strict'

const PERMISSIONS = {
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
	DateOfBirth: 'DateOfBirth',
	BiologicalSex: 'BiologicalSex',
	Height: 'Height',
	Weight: 'Weight',
	BodyMass: 'BodyMass',
	BodyFatPercentage: 'BodyFatPercentage',
	BodyMassIndex: 'BodyMassIndex',
	LeanBodyMass: 'LeanBodyMass',
	Steps: 'Steps',
	StepCount: 'StepCount',
	DistanceWalkingRunning: 'DistanceWalkingRunning',
	DistanceCycling: 'DistanceCycling',
	BasalEnergyBurned: 'BasalEnergyBurned',
	ActiveEnergyBurned: 'ActiveEnergyBurned',
	FlightsClimbed: 'FlightsClimbed',
	NikeFuel: 'NikeFuel',
	AppleExerciseTime: 'AppleExerciseTime',
	DietaryEnergy: 'DietaryEnergy',
Daniele Volpi's avatar
Daniele Volpi committed
22 23 24 25 26 27
	HeartRate: 'HeartRate',
  BodyTemperature: 'BodyTemperature',
  BloodPressureSystolic: 'BloodPressureSystolic',
  BloodPressureDiastolic: 'BloodPressureDiastolic',
  RespiratoryRate: 'RespiratoryRate',
  BloodGlucose: 'BloodGlucose',
28 29 30 31 32 33 34
};


const UNITS = {
	gram: 'gram',
	pound: 'pound',
	meter: 'meter',
35
	mile: 'mile',
36 37 38 39 40 41 42 43 44
	inch: 'inch',
	foot: 'foot',
	second: 'second',
	minute: 'minute',
	hour: 'hour',
	day: 'day',
	joule: 'joule',
	calorie: 'calorie',
	count: 'count',
45 46 47 48
	percent: 'percent',
	bpm: 'bpm',
	fahrenheit: 'fahrenheit',
	celsius: 'celsius',
49
	mmhg: 'mmhg',
50 51
	mmolPerL: 'mmolPerL',
	mgPerL: 'mgPerL',
52 53 54 55 56 57 58 59 60 61 62
};



const CONSTANTS = {
	Permissions: PERMISSIONS,
	Units: UNITS,
};

export default CONSTANTS;
export const Constants = CONSTANTS;