@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.
@@ -560,7 +560,7 @@ var CamerasService = /** @class */ (function (_super) {
560
560
  .pipe(this.defaultCatch());
561
561
  };
562
562
  CamerasService.prototype.takeSnapshot = function (camera) {
563
- return this.http.get(this.url + "queries/fetchSnapshot", { params: { ip: camera.ip } }).pipe(this.defaultCatch());
563
+ return this.http.get(this.url + "queries/fetchSnapshot", { params: { idCamera: camera.id } }).pipe(this.defaultCatch());
564
564
  };
565
565
  CamerasService.prototype.saveSnapshotInCircuit = function (payload) {
566
566
  return this.http.post(this.patioUrl + "actions/adicionaImagemExecucaoCircuito", payload).pipe(this.defaultCatch());