@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.
@@ -30,4 +30,8 @@ export interface IInquirySession {
30
30
  * 创建时间
31
31
  */
32
32
  create_time?: number;
33
+ /**
34
+ * 邀请码
35
+ */
36
+ invitationCode?: string;
33
37
  }
@@ -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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hddjs/hdd-cloud-types",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "main": "index.d.ts",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"