fitness-models
Advanced tools
Comparing version 3.2.38 to 3.2.39
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
## v3.2.39 (2021-01-25) | ||
### Fixed | ||
- [aad7445](https://github.com/fabulator/fitness-models/commit/aad74458d7c2a0ed2f901e1bdeeca677dc78205b) Update lock for security updated | ||
## v3.2.38 (2021-01-25) | ||
@@ -5,0 +9,0 @@ ### Fixed |
@@ -6,6 +6,6 @@ 'use strict'; | ||
var Point = require('./Point.js'); | ||
var Workout = require('./Workout.js'); | ||
var workoutPrivacy = require('./workout-privacy.js'); | ||
var workoutType = require('./workout-type.js'); | ||
var workoutTypeNames = require('./workout-type-names.js'); | ||
var Workout = require('./Workout.js'); | ||
var workoutPrivacy = require('./workout-privacy.js'); | ||
@@ -15,15 +15,15 @@ | ||
exports.Point = Point; | ||
Object.defineProperty(exports, 'WorkoutType', { | ||
exports.Workout = Workout; | ||
Object.defineProperty(exports, 'Privacy', { | ||
enumerable: true, | ||
get: function () { | ||
return workoutType.WorkoutType; | ||
return workoutPrivacy.Privacy; | ||
} | ||
}); | ||
exports.WORKOUT_TYPE_NAMES = workoutTypeNames; | ||
exports.Workout = Workout; | ||
Object.defineProperty(exports, 'Privacy', { | ||
Object.defineProperty(exports, 'WorkoutType', { | ||
enumerable: true, | ||
get: function () { | ||
return workoutPrivacy.Privacy; | ||
return workoutType.WorkoutType; | ||
} | ||
}); | ||
exports.WORKOUT_TYPE_NAMES = workoutTypeNames; |
export { default as Point } from './Point.js'; | ||
export { default as Workout } from './Workout.js'; | ||
export { Privacy } from './workout-privacy.js'; | ||
export { WorkoutType } from './workout-type.js'; | ||
export { default as WORKOUT_TYPE_NAMES } from './workout-type-names.js'; | ||
export { default as Workout } from './Workout.js'; | ||
export { Privacy } from './workout-privacy.js'; |
{ | ||
"name": "fitness-models", | ||
"version": "3.2.38", | ||
"version": "3.2.39", | ||
"description": "Extendable fitness models for Workout and GPS points", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100363