@eka-care/ekascribe-ts-sdk 3.0.38 → 3.0.39
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.
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -132,6 +132,11 @@ declare class EkaScribe {
|
|
|
132
132
|
startRecordingForExistingSession(request: TStartRecordingForExistingSessionRequest): Promise<TStartRecordingResponse>;
|
|
133
133
|
pauseRecording(): TPauseRecordingResponse;
|
|
134
134
|
resumeRecording(): TPauseRecordingResponse;
|
|
135
|
+
/**
|
|
136
|
+
* Lifts the maximum chunk limit so recording can continue uploading audio
|
|
137
|
+
* chunks beyond the default cap.
|
|
138
|
+
*/
|
|
139
|
+
forceAllowMoreChunks(): void;
|
|
135
140
|
endRecording(): Promise<TEndRecordingResponse>;
|
|
136
141
|
getSessionStatus(sessionId?: string, options?: {
|
|
137
142
|
poll?: PollOptions;
|
package/dist/index.mjs
CHANGED
|
@@ -5561,6 +5561,9 @@ class eu {
|
|
|
5561
5561
|
};
|
|
5562
5562
|
}
|
|
5563
5563
|
}
|
|
5564
|
+
forceAllowMoreChunks() {
|
|
5565
|
+
this.allianceClient.forceAllowMoreChunks();
|
|
5566
|
+
}
|
|
5564
5567
|
resumeRecording() {
|
|
5565
5568
|
try {
|
|
5566
5569
|
return this.allianceClient.resumeRecording(), {
|
|
@@ -8266,6 +8269,13 @@ const O = class O {
|
|
|
8266
8269
|
resumeRecording() {
|
|
8267
8270
|
return this.recording.resumeRecording();
|
|
8268
8271
|
}
|
|
8272
|
+
/**
|
|
8273
|
+
* Lifts the maximum chunk limit so recording can continue uploading audio
|
|
8274
|
+
* chunks beyond the default cap.
|
|
8275
|
+
*/
|
|
8276
|
+
forceAllowMoreChunks() {
|
|
8277
|
+
return this.recording.forceAllowMoreChunks();
|
|
8278
|
+
}
|
|
8269
8279
|
endRecording() {
|
|
8270
8280
|
return this.recording.endRecording();
|
|
8271
8281
|
}
|