@flow-js/garmin-connect 1.6.8 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -438,9 +438,9 @@ export interface IDailyStepsType {
|
|
|
438
438
|
totalDistance: number;
|
|
439
439
|
totalSteps: number;
|
|
440
440
|
}
|
|
441
|
-
export
|
|
442
|
-
export
|
|
443
|
-
export
|
|
444
|
-
export
|
|
445
|
-
export
|
|
446
|
-
export
|
|
441
|
+
export { GCActivityId, ActivityType, ActivitySubType, IActivity, IActivityDetails } from './activity';
|
|
442
|
+
export { GearData } from './gear';
|
|
443
|
+
export { GpxActivityType, ImportedGpxResponse, CreatedCourseResponse, CourseRequest, CoursePoint, CourseLine, GeoPoint, ListCoursesResponse } from './gpx';
|
|
444
|
+
export { SleepDTO, SleepMovement, SleepLevels, WellnessEpochRespirationDataDTO, SleepHeartRate, SleepBodyBattery, SleepData } from './sleep';
|
|
445
|
+
export { Workout } from './workout';
|
|
446
|
+
export { YearCalendar, MonthCalendar, WeekCalendar } from './calendar';
|
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.UploadFileType = exports.ExportFileType = void 0;
|
|
3
|
+
exports.GpxActivityType = exports.ActivitySubType = exports.ActivityType = exports.UploadFileType = exports.ExportFileType = void 0;
|
|
18
4
|
var ExportFileType;
|
|
19
5
|
(function (ExportFileType) {
|
|
20
6
|
ExportFileType["tcx"] = "tcx";
|
|
@@ -29,10 +15,9 @@ var UploadFileType;
|
|
|
29
15
|
UploadFileType["fit"] = "fit";
|
|
30
16
|
})(UploadFileType = exports.UploadFileType || (exports.UploadFileType = {}));
|
|
31
17
|
// Export other types
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
__exportStar(require("./calendar"), exports);
|
|
18
|
+
var activity_1 = require("./activity");
|
|
19
|
+
Object.defineProperty(exports, "ActivityType", { enumerable: true, get: function () { return activity_1.ActivityType; } });
|
|
20
|
+
Object.defineProperty(exports, "ActivitySubType", { enumerable: true, get: function () { return activity_1.ActivitySubType; } });
|
|
21
|
+
var gpx_1 = require("./gpx");
|
|
22
|
+
Object.defineProperty(exports, "GpxActivityType", { enumerable: true, get: function () { return gpx_1.GpxActivityType; } });
|
|
38
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/garmin/types/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/garmin/types/index.ts"],"names":[],"mappings":";;;AAOA,IAAY,cAKX;AALD,WAAY,cAAc;IACtB,6BAAW,CAAA;IACX,6BAAW,CAAA;IACX,6BAAW,CAAA;IACX,6BAAW,CAAA;AACf,CAAC,EALW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAKzB;AAED,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,6BAAW,CAAA;IACX,6BAAW,CAAA;IACX,6BAAW,CAAA;AACf,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAycD,qBAAqB;AACrB,uCAMoB;AAJhB,wGAAA,YAAY,OAAA;AACZ,2GAAA,eAAe,OAAA;AAOnB,6BASe;AARX,sGAAA,eAAe,OAAA"}
|
package/package.json
CHANGED