whio-api-sdk 1.0.170 → 1.0.172

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.
@@ -277,20 +277,21 @@ export interface Session {
277
277
  sessionName?: string;
278
278
  createdAt: string;
279
279
  updatedAt: string;
280
- templateId: string;
280
+ templateId?: string;
281
281
  userId: string;
282
282
  primaryTranscriptionSummaryId?: string;
283
283
  user?: User;
284
284
  template?: Template;
285
285
  transcriptionSummaries?: TranscriptionSummary[];
286
286
  primaryTranscriptionSummary?: TranscriptionSummary;
287
+ audioFiles?: AudioFile[];
287
288
  }
288
289
  export interface CreateSessionDto {
289
290
  transcript: string;
290
291
  dateTime: string;
291
292
  startDateTime?: string;
292
293
  stopDateTime?: string;
293
- templateId: string;
294
+ templateId?: string;
294
295
  templateName?: string;
295
296
  summary?: string;
296
297
  sessionName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whio-api-sdk",
3
- "version": "1.0.170",
3
+ "version": "1.0.172",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
package/src/sdk/types.ts CHANGED
@@ -352,7 +352,7 @@ export interface Session {
352
352
  sessionName?: string;
353
353
  createdAt: string;
354
354
  updatedAt: string;
355
- templateId: string;
355
+ templateId?: string;
356
356
  userId: string;
357
357
  primaryTranscriptionSummaryId?: string;
358
358
 
@@ -361,6 +361,7 @@ export interface Session {
361
361
  template?: Template;
362
362
  transcriptionSummaries?: TranscriptionSummary[];
363
363
  primaryTranscriptionSummary?: TranscriptionSummary;
364
+ audioFiles?: AudioFile[];
364
365
  }
365
366
 
366
367
  // Session DTOs
@@ -369,7 +370,7 @@ export interface CreateSessionDto {
369
370
  dateTime: string;
370
371
  startDateTime?: string;
371
372
  stopDateTime?: string;
372
- templateId: string;
373
+ templateId?: string;
373
374
  templateName?: string;
374
375
  summary?: string;
375
376
  sessionName?: string;