constants.js 1.46 KB
Newer Older
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
'use strict'

const PERMISSIONS = {
	READ: {
		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',
	},
	WRITE: {
		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',
		DietaryEnergy: 'DietaryEnergy',
	}
};


const UNITS = {
	gram: 'gram',
	pound: 'pound',
	meter: 'meter',
	inch: 'inch',
	foot: 'foot',
	second: 'second',
	minute: 'minute',
	hour: 'hour',
	day: 'day',
	joule: 'joule',
	calorie: 'calorie',
	count: 'count',
	percent: 'percent'
};



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

export default CONSTANTS;
export const Constants = CONSTANTS;