@seniorsistemas/yms-integration 1.42.0 → 1.42.1

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.
@@ -619,7 +619,7 @@
619
619
  .pipe(this.defaultCatch());
620
620
  };
621
621
  CamerasService.prototype.takeSnapshot = function (camera) {
622
- return this.http.get(this.url + "queries/fetchSnapshot", { params: { ip: camera.ip } }).pipe(this.defaultCatch());
622
+ return this.http.get(this.url + "queries/fetchSnapshot", { params: { idCamera: camera.id } }).pipe(this.defaultCatch());
623
623
  };
624
624
  CamerasService.prototype.saveSnapshotInCircuit = function (payload) {
625
625
  return this.http.post(this.patioUrl + "actions/adicionaImagemExecucaoCircuito", payload).pipe(this.defaultCatch());