@hddjs/hdd-cloud-types 1.0.24 → 1.0.25
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.
|
@@ -421,6 +421,28 @@ export interface IGetInquirySessionListRes extends ICommonRes {
|
|
|
421
421
|
};
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
+
/**
|
|
425
|
+
* 校验会话有效性 req
|
|
426
|
+
*/
|
|
427
|
+
export interface IGetInquirySessionReq extends ICommonReq {
|
|
428
|
+
/**
|
|
429
|
+
* 会话 id
|
|
430
|
+
*/
|
|
431
|
+
sessionId: string;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* 校验会话有效性 res
|
|
436
|
+
*/
|
|
437
|
+
export interface IGetInquirySessionRes extends ICommonRes {
|
|
438
|
+
data?: {
|
|
439
|
+
/**
|
|
440
|
+
* 会话信息
|
|
441
|
+
*/
|
|
442
|
+
sessionInfo?: IInquirySession;
|
|
443
|
+
};
|
|
444
|
+
}
|
|
445
|
+
|
|
424
446
|
/**
|
|
425
447
|
* 添加会话内容req
|
|
426
448
|
*/
|