-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscopes.js
38 lines (37 loc) · 1.76 KB
/
scopes.js
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
const fitnessScopes = {
FITNESS_ACTIVITY_READ:
'https://www.googleapis.com/auth/fitness.activity.read',
FITNESS_ACTIVITY_READ_WRITE:
'https://www.googleapis.com/auth/fitness.activity.write',
FITNESS_LOCATION_READ:
'https://www.googleapis.com/auth/fitness.location.read',
FITNESS_LOCATION_READ_WRITE:
'https://www.googleapis.com/auth/fitness.location.write',
FITNESS_BODY_READ: 'https://www.googleapis.com/auth/fitness.body.read',
FITNESS_BODY_READ_WRITE: 'https://www.googleapis.com/auth/fitness.body.write',
FITNESS_NUTRITION_READ:
'https://www.googleapis.com/auth/fitness.nutrition.read',
FITNESS_NUTRITION_READ_WRITE:
'https://www.googleapis.com/auth/fitness.nutrition.write',
FITNESS_BLOOD_PRESSURE_READ:
'https://www.googleapis.com/auth/fitness.blood_pressure.read',
FITNESS_BLOOD_PRESSURE_READ_WRITE:
'https://www.googleapis.com/auth/fitness.blood_pressure.write',
FITNESS_BLOOD_GLUCOSE_READ:
'https://www.googleapis.com/auth/fitness.blood_glucose.read',
FITNESS_BLOOD_GLUCOSE_READ_WRITE:
'https://www.googleapis.com/auth/fitness.blood_glucose.write',
FITNESS_OXYGEN_SATURATION_READ:
'https://www.googleapis.com/auth/fitness.oxygen_saturation.read',
FITNESS_OXYGEN_SATURATION_READ_WRITE:
'https://www.googleapis.com/auth/fitness.oxygen_saturation.write',
FITNESS_BODY_TEMPERATURE_READ:
'https://www.googleapis.com/auth/fitness.body_temperature.read',
FITNESS_BODY_TEMPERATURE_READ_WRITE:
'https://www.googleapis.com/auth/fitness.body_temperature.write',
FITNESS_REPRODUCTIVE_HEALTH_READ:
'https://www.googleapis.com/auth/fitness.reproductive_health.read',
FITNESS_REPRODUCTIVE_HEALTH_READ_WRITE:
'https://www.googleapis.com/auth/fitness.reproductive_health.write',
};
export default fitnessScopes;