@eka-care/ekascribe-ts-sdk 2.0.49 → 2.0.51

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/README.md CHANGED
@@ -180,7 +180,10 @@ Initialize a transaction before starting recording. This sets up the session wit
180
180
  const response = await ekascribe.initTransaction({
181
181
  mode: 'consultation',
182
182
  input_language: ['en-IN'],
183
- output_format_template: [{ template_id: 'your_template_id' }],
183
+ output_format_template: [{
184
+ template_id: 'your_template_id',
185
+ codification_needed?: true // optional
186
+ }],
184
187
  txn_id: 'unique-transaction-id',
185
188
  transfer: 'vaded' | 'non-vaded',
186
189
  model_type: 'pro' | 'lite',
package/dist/index.d.ts CHANGED
@@ -443,6 +443,7 @@ declare type TPostTransactionInitRequest = {
443
443
  template_id: string;
444
444
  template_name?: string;
445
445
  template_type?: string;
446
+ codification_needed?: boolean;
446
447
  }[];
447
448
  transfer: string;
448
449
  auto_download?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eka-care/ekascribe-ts-sdk",
3
- "version": "2.0.49",
3
+ "version": "2.0.51",
4
4
  "description": "EkaScribe TypeScript SDK - Modern ES2020 build",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",