@eka-care/ekascribe-ts-sdk 3.0.37 → 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 CHANGED
@@ -132,9 +132,15 @@ 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;
143
+ templateId?: string;
138
144
  }): Promise<SDKResult<GetSessionStatusResponse>>;
139
145
  retryUploadRecording(): Promise<TEndRecordingResponse>;
140
146
  cancelSession(sessionId?: string): Promise<SDKResult<PatchSessionResponse>>;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "3.0.37",
3
+ "version": "3.0.39",
4
4
  "description": "EkaScribe TypeScript SDK - Modern ES2020 build",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",