tmc.js 0.3.34 → 0.3.36

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.
Files changed (48) hide show
  1. package/lib/message.js +3 -3
  2. package/package.json +1 -1
  3. package/types/ae.d.ts +12 -0
  4. package/types/ali.d.ts +61 -0
  5. package/types/alibaba.d.ts +2665 -189
  6. package/types/alicom.d.ts +127 -1
  7. package/types/aliexpress.d.ts +153 -11
  8. package/types/alihealth.d.ts +189 -3
  9. package/types/alihouse.d.ts +169 -0
  10. package/types/alios.d.ts +45 -0
  11. package/types/alipay.d.ts +479 -0
  12. package/types/alisports.d.ts +18 -0
  13. package/types/alitrip.d.ts +264 -16
  14. package/types/aliyun.d.ts +94 -1
  15. package/types/alsc.d.ts +329 -0
  16. package/types/ascp.d.ts +26 -1
  17. package/types/banma.d.ts +1 -1
  18. package/types/cainiao.d.ts +979 -2
  19. package/types/damai.d.ts +102 -8
  20. package/types/ele.d.ts +10 -0
  21. package/types/eleme.d.ts +71 -0
  22. package/types/fliggy.d.ts +95 -5
  23. package/types/fuwu.d.ts +2 -2
  24. package/types/gaode.d.ts +16 -0
  25. package/types/genie.d.ts +22 -0
  26. package/types/global.d.ts +22 -0
  27. package/types/gov.d.ts +160 -2
  28. package/types/icbu.d.ts +124 -0
  29. package/types/idle.d.ts +74 -16
  30. package/types/index.d.ts +3430 -14
  31. package/types/intime.d.ts +37 -0
  32. package/types/jae.d.ts +1 -1
  33. package/types/jym.d.ts +12 -0
  34. package/types/lst.d.ts +2 -2
  35. package/types/message.in.d.ts +3475 -78
  36. package/types/message.out.d.ts +1107 -26
  37. package/types/niaochao.d.ts +3 -3
  38. package/types/taobao.d.ts +3717 -239
  39. package/types/taotao.d.ts +44 -0
  40. package/types/tmall.d.ts +893 -36
  41. package/types/tobao.d.ts +26 -0
  42. package/types/trip.d.ts +6 -6
  43. package/types/umeng.d.ts +10 -0
  44. package/types/wdk.d.ts +30 -4
  45. package/types/xhotel.d.ts +16 -0
  46. package/types/xianyu.d.ts +33 -9
  47. package/types/youku.d.ts +18 -1
  48. package/types/yunos.d.ts +27 -2
@@ -0,0 +1,44 @@
1
+ /** 淘宝 */
2
+ declare namespace Taotao.Film {
3
+ /** {@link https://open.taobao.com/tmc.htm?docId=1158&docType=9 退款消息同步} */
4
+ interface ThirdPartyRefundPush {
5
+ /** 冥等串,消息的唯一性标识。由于网络重传,消息可能会有重复投递的情况,外部渠道可利用该字段判断是否已经消费过该消息,如果已经消费,则可对该消息不做处理 */
6
+ biz_serial?: string;
7
+ /** 影院地址 */
8
+ cinema_address?: string;
9
+ /** 影院ID */
10
+ cinema_id?: string;
11
+ /** 影院名称 */
12
+ cinema_name?: string;
13
+ /** 外部订单号 */
14
+ ext_order_id?: string;
15
+ /** 影厅名称 */
16
+ hall?: string;
17
+ /** 订单金额 */
18
+ ori_price?: number;
19
+ /** 支付时间 */
20
+ pay_date?: Date | number | string;
21
+ /** 退款时间 */
22
+ refund_date?: Date | number | string;
23
+ /** 退款原因 */
24
+ refund_reason?: string;
25
+ /** 场次ID */
26
+ schedule_id?: string;
27
+ /** 座位数量 */
28
+ seat_count?: number;
29
+ /** 座位名称 */
30
+ seat_info?: string;
31
+ /** 电影结束时间 */
32
+ show_end_time?: Date | number | string;
33
+ /** 影片ID */
34
+ show_id?: string;
35
+ /** 影片名称 */
36
+ show_name?: string;
37
+ /** 放映时间 */
38
+ show_time?: Date | number | string;
39
+ /** 退款状态。 REFUNDING,代表发起退款,正在退款中 REFUND_SUCCESS,代表退款成功,钱已经回退到外部渠道支付宝账号 */
40
+ status?: string;
41
+ /** 淘宝订单号 */
42
+ tb_order_id?: string;
43
+ }
44
+ }