whio-api-sdk 1.0.181-bet-staging → 1.0.184-bet-staging
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/src/sdk/types.d.ts +4 -0
- package/package.json +1 -1
- package/src/sdk/types.ts +6 -0
package/dist/src/sdk/types.d.ts
CHANGED
|
@@ -290,10 +290,14 @@ export interface Session {
|
|
|
290
290
|
templateId: string;
|
|
291
291
|
userId: string;
|
|
292
292
|
primaryTranscriptionSummaryId?: string;
|
|
293
|
+
hasSummaryType?: boolean;
|
|
294
|
+
hasServerAudioFile?: boolean;
|
|
295
|
+
hasSummary?: boolean;
|
|
293
296
|
user?: User;
|
|
294
297
|
template?: Template;
|
|
295
298
|
transcriptionSummaries?: TranscriptionSummary[];
|
|
296
299
|
primaryTranscriptionSummary?: TranscriptionSummary;
|
|
300
|
+
audioFiles?: AudioFile[];
|
|
297
301
|
}
|
|
298
302
|
export interface CreateSessionDto {
|
|
299
303
|
transcript: string;
|
package/package.json
CHANGED
package/src/sdk/types.ts
CHANGED
|
@@ -366,11 +366,17 @@ export interface Session {
|
|
|
366
366
|
userId: string;
|
|
367
367
|
primaryTranscriptionSummaryId?: string;
|
|
368
368
|
|
|
369
|
+
// Derived fields (computed by API)
|
|
370
|
+
hasSummaryType?: boolean;
|
|
371
|
+
hasServerAudioFile?: boolean;
|
|
372
|
+
hasSummary?: boolean;
|
|
373
|
+
|
|
369
374
|
// Relationships (populated by API)
|
|
370
375
|
user?: User;
|
|
371
376
|
template?: Template;
|
|
372
377
|
transcriptionSummaries?: TranscriptionSummary[];
|
|
373
378
|
primaryTranscriptionSummary?: TranscriptionSummary;
|
|
379
|
+
audioFiles?: AudioFile[];
|
|
374
380
|
}
|
|
375
381
|
|
|
376
382
|
// Session DTOs
|