whio-api-sdk 1.0.171 → 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,7 +277,7 @@ 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;
@@ -291,7 +291,7 @@ export interface CreateSessionDto {
291
291
  dateTime: string;
292
292
  startDateTime?: string;
293
293
  stopDateTime?: string;
294
- templateId: string;
294
+ templateId?: string;
295
295
  templateName?: string;
296
296
  summary?: string;
297
297
  sessionName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whio-api-sdk",
3
- "version": "1.0.171",
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
 
@@ -370,7 +370,7 @@ export interface CreateSessionDto {
370
370
  dateTime: string;
371
371
  startDateTime?: string;
372
372
  stopDateTime?: string;
373
- templateId: string;
373
+ templateId?: string;
374
374
  templateName?: string;
375
375
  summary?: string;
376
376
  sessionName?: string;