@eka-care/ekascribe-ts-sdk 1.5.88 → 1.5.89

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.
@@ -272,7 +272,7 @@ export type TEventCallbackData = {
272
272
  total?: number;
273
273
  is_uploaded?: boolean;
274
274
  fileName?: string;
275
- chunkData?: Uint8Array<ArrayBufferLike>[];
275
+ chunkData?: Uint8Array[];
276
276
  request?: unknown;
277
277
  response?: unknown;
278
278
  status_code?: number;
@@ -54,7 +54,7 @@ onconnect = function (event: MessageEvent) {
54
54
  uploadRequestReceived++;
55
55
 
56
56
  let audioBlob: Blob;
57
- let compressedAudioBuffer: Uint8Array<ArrayBufferLike>[];
57
+ let compressedAudioBuffer: Uint8Array[];
58
58
 
59
59
  if (fileBlob) {
60
60
  audioBlob = fileBlob;
@@ -1,2 +1,2 @@
1
- declare const compressAudioToMp3: (audio: Float32Array) => Uint8Array<ArrayBufferLike>[];
1
+ declare const compressAudioToMp3: (audio: Float32Array) => Uint8Array[];
2
2
  export default compressAudioToMp3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "1.5.88",
3
+ "version": "1.5.89",
4
4
  "main": "dist/index.js",
5
5
  "repository": "git@github.com:eka-care/eka-js-sdk.git",
6
6
  "author": "Sanikagoyal28 <sanikagoyal9@gmail.com>",