@stadiamaps/ferrostar-webcomponents 0.49.0 → 0.50.0

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.
@@ -1248,7 +1248,7 @@ let v = class extends Y {
1248
1248
  }
1249
1249
  saveRecording() {
1250
1250
  if (this.navigationSession instanceof V) {
1251
- const i = this.navigationSession.getRecording(), t = new Blob([i], { type: "application/json" }), e = document.createElement("a");
1251
+ const i = this.navigationSession.getRecordingJson(), t = new Blob([i], { type: "application/json" }), e = document.createElement("a");
1252
1252
  e.href = URL.createObjectURL(t), e.download = "recording.json", e.click(), URL.revokeObjectURL(e.href);
1253
1253
  }
1254
1254
  }