incyclist-services 1.7.60 → 1.7.62

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.
@@ -385,6 +385,8 @@ let DeviceConfigurationService = (() => {
385
385
  this.logEvent({ message: 'Error: could not find adapter', requestedUdid, requestedMode, devices, adapters: Object.keys(this.adapters)?.join(',') });
386
386
  return;
387
387
  }
388
+ if (adapter.updateCyclingModeConfig)
389
+ adapter.updateCyclingModeConfig();
388
390
  if (adapter.getSupportedCyclingModes) {
389
391
  modes = adapter.getSupportedCyclingModes();
390
392
  }
@@ -379,6 +379,8 @@ let DeviceConfigurationService = (() => {
379
379
  this.logEvent({ message: 'Error: could not find adapter', requestedUdid, requestedMode, devices, adapters: Object.keys(this.adapters)?.join(',') });
380
380
  return;
381
381
  }
382
+ if (adapter.updateCyclingModeConfig)
383
+ adapter.updateCyclingModeConfig();
382
384
  if (adapter.getSupportedCyclingModes) {
383
385
  modes = adapter.getSupportedCyclingModes();
384
386
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "incyclist-services",
3
- "version": "1.7.60",
3
+ "version": "1.7.62",
4
4
  "peerDependencies": {
5
5
  "gd-eventlog": "^0.1.27"
6
6
  },
7
7
  "dependencies": {
8
8
  "@garmin/fitsdk": "^21.200.0",
9
9
  "axios": "^1.15.2",
10
- "incyclist-devices": "^3.0.16",
10
+ "incyclist-devices": "^3.0.18",
11
11
  "promise.any": "^2.0.6",
12
12
  "semver": "^7.7.4",
13
13
  "tcx-builder": "^1.1.1",