idmission-web-sdk 2.3.126 → 2.3.127

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.
@@ -235,7 +235,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
235
235
  return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
236
236
  };
237
237
 
238
- var webSdkVersion = '2.3.126';
238
+ var webSdkVersion = '2.3.127';
239
239
 
240
240
  function getPlatform() {
241
241
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
@@ -14496,12 +14496,10 @@ var useVideoSignatureStore = zustand.create()(middleware.devtools(function (set,
14496
14496
  });
14497
14497
  }
14498
14498
  };
14499
- signatureRecorder.start();
14500
- var interval = setInterval(function () {
14501
- return signatureRecorder === null || signatureRecorder === void 0 ? void 0 : signatureRecorder.requestData();
14502
- }, 250);
14499
+ signatureRecorder.start(250);
14500
+ // const interval = setInterval(() => signatureRecorder?.requestData(), 250)
14503
14501
  set({
14504
- requestDataInterval: interval,
14502
+ // requestDataInterval: interval,
14505
14503
  recordingStartRequestedAt: performance.now()
14506
14504
  });
14507
14505
  },
@@ -14569,7 +14567,6 @@ var useVideoSignatureStore = zustand.create()(middleware.devtools(function (set,
14569
14567
  recordingStopRequestedAt: performance.now(),
14570
14568
  recordingStoppedAt: undefined
14571
14569
  });
14572
- clearInterval(get().requestDataInterval);
14573
14570
  return [4 /*yield*/, waitForOneMoreChunk()
14574
14571
  // this represents the time that it is safe to release the camera access
14575
14572
  ];