whio-api-sdk 1.0.164 → 1.0.165
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 +6 -0
- package/package.json +1 -1
- package/src/sdk/types.ts +6 -0
package/dist/src/sdk/types.d.ts
CHANGED
|
@@ -269,6 +269,8 @@ export interface Session {
|
|
|
269
269
|
id: string;
|
|
270
270
|
transcript: string;
|
|
271
271
|
dateTime: string;
|
|
272
|
+
startDateTime?: string;
|
|
273
|
+
stopDateTime?: string;
|
|
272
274
|
templateName?: string;
|
|
273
275
|
summary?: string;
|
|
274
276
|
sessionName?: string;
|
|
@@ -285,6 +287,8 @@ export interface Session {
|
|
|
285
287
|
export interface CreateSessionDto {
|
|
286
288
|
transcript: string;
|
|
287
289
|
dateTime: string;
|
|
290
|
+
startDateTime?: string;
|
|
291
|
+
stopDateTime?: string;
|
|
288
292
|
templateId: string;
|
|
289
293
|
templateName?: string;
|
|
290
294
|
summary?: string;
|
|
@@ -294,6 +298,8 @@ export interface CreateSessionDto {
|
|
|
294
298
|
export interface UpdateSessionDto {
|
|
295
299
|
transcript?: string;
|
|
296
300
|
dateTime?: string;
|
|
301
|
+
startDateTime?: string;
|
|
302
|
+
stopDateTime?: string;
|
|
297
303
|
templateId?: string;
|
|
298
304
|
templateName?: string;
|
|
299
305
|
summary?: string;
|
package/package.json
CHANGED
package/src/sdk/types.ts
CHANGED
|
@@ -344,6 +344,8 @@ export interface Session {
|
|
|
344
344
|
id: string;
|
|
345
345
|
transcript: string;
|
|
346
346
|
dateTime: string;
|
|
347
|
+
startDateTime?: string;
|
|
348
|
+
stopDateTime?: string;
|
|
347
349
|
templateName?: string;
|
|
348
350
|
summary?: string;
|
|
349
351
|
sessionName?: string;
|
|
@@ -364,6 +366,8 @@ export interface Session {
|
|
|
364
366
|
export interface CreateSessionDto {
|
|
365
367
|
transcript: string;
|
|
366
368
|
dateTime: string;
|
|
369
|
+
startDateTime?: string;
|
|
370
|
+
stopDateTime?: string;
|
|
367
371
|
templateId: string;
|
|
368
372
|
templateName?: string;
|
|
369
373
|
summary?: string;
|
|
@@ -375,6 +379,8 @@ export interface CreateSessionDto {
|
|
|
375
379
|
export interface UpdateSessionDto {
|
|
376
380
|
transcript?: string;
|
|
377
381
|
dateTime?: string;
|
|
382
|
+
startDateTime?: string;
|
|
383
|
+
stopDateTime?: string;
|
|
378
384
|
templateId?: string;
|
|
379
385
|
templateName?: string;
|
|
380
386
|
summary?: string;
|