tmc.js 0.3.50 → 0.3.51

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/README.md CHANGED
@@ -134,7 +134,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
134
134
 
135
135
  ## 支持的TOPICS
136
136
 
137
- <details><summary>共计 84+ 类别,524+ 消息数</summary>
137
+ <details><summary>共计 84+ 类别,525+ 消息数</summary>
138
138
 
139
139
  | 类别 | 消息数 |
140
140
  | --- | --- |
@@ -196,7 +196,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
196
196
  | TVOS应用审核平台 | 1 |
197
197
  | Gifting送礼 | 1 |
198
198
  | 五道口商品 | 2 |
199
- | HOMEAI | 1 |
199
+ | HOMEAI | 2 |
200
200
  | HOMEAI消息对接 | 5 |
201
201
  | 零售通_公共 | 8 |
202
202
  | 酒店标准库基础信息变更消息 | 3 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tmc.js",
3
- "version": "0.3.50",
3
+ "version": "0.3.51",
4
4
  "description": "Event driven and chained Taobao Message Channel(TMC) for NodeJS",
5
5
  "author": "James ZHANG",
6
6
  "license": "MIT",
package/types/flyggy.d.ts CHANGED
@@ -11,4 +11,16 @@ declare namespace Flyggy.Flight {
11
11
  /** 自营报价 */
12
12
  self_agent?: string;
13
13
  }
14
+
15
+ /** {@link https://open.taobao.com/tmc.htm?docId=2645&docType=9 飞猪机票国内分销增量报价} */
16
+ interface DomesticDistributionQuotationIncrement {
17
+ /** 旗舰店报价 */
18
+ flagship?: string;
19
+ /** 消息Id */
20
+ id: string;
21
+ /** 代理商报价 */
22
+ normal_agent?: string;
23
+ /** 自营报价 */
24
+ self_agent?: string;
25
+ }
14
26
  }
package/types/idle.d.ts CHANGED
@@ -345,6 +345,18 @@ declare namespace Idle.Trade {
345
345
  /** 卖家Id */
346
346
  seller_id: string;
347
347
  }
348
+
349
+ /** {@link https://open.taobao.com/tmc.htm?docId=2648&docType=9 服务商订单评价消息} */
350
+ interface TradeReteSuccess {
351
+ /** 订单ID */
352
+ biz_order_id: number | bigint;
353
+ /** 评论者交易角色 1:评论者是卖家 0:评论者是买家 */
354
+ rater_type: string;
355
+ /** 评价内容 */
356
+ rate_content: string;
357
+ /** 评价类型: 1: 首评,2: 追评 */
358
+ rate_type: string;
359
+ }
348
360
  }
349
361
 
350
362
  /** 闲鱼 */
package/types/index.d.ts CHANGED
@@ -1098,6 +1098,8 @@ declare interface TaoTopicsDescriptor {
1098
1098
  fliggy_xhotel_ComboCreateResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotelComboCreateResult) => void): TaoMessageConsumer;
1099
1099
  /** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
1100
1100
  flyggy_flight_DomesticDistributionQuotationFull(fn: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull) => void): TaoMessageConsumer;
1101
+ /** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationIncrement 飞猪 > 飞猪机票国内分销增量报价} */
1102
+ flyggy_flight_DomesticDistributionQuotationIncrement(fn: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationIncrement) => void): TaoMessageConsumer;
1101
1103
  /** {@link IncomingMessage.FuwuConfirmFail 服务市场 > 收入确认失败} */
1102
1104
  fuwu_confirm_Fail(fn: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirmFail) => void): TaoMessageConsumer;
1103
1105
  /** {@link IncomingMessage.FuwuConfirmSuccess 服务市场 > 收入确认成功} */
@@ -1194,6 +1196,8 @@ declare interface TaoTopicsDescriptor {
1194
1196
  idle_topisv_TradeNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleTopisvTradeNotice) => void): TaoMessageConsumer;
1195
1197
  /** {@link IncomingMessage.IdleTradeAddressModify 闲鱼回收商消息 > 买家修改地址通知卖家} */
1196
1198
  idle_trade_AddressModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleTradeAddressModify) => void): TaoMessageConsumer;
1199
+ /** {@link IncomingMessage.IdleTradeTradeReteSuccess 闲鱼回收商消息 > 服务商订单评价消息} */
1200
+ idle_trade_TradeReteSuccess(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleTradeTradeReteSuccess) => void): TaoMessageConsumer;
1197
1201
  /** {@link IncomingMessage.IdleTranferpayOrderChange 闲鱼 > 直接转账交易消息} */
1198
1202
  idle_tranferpay_OrderChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleTranferpayOrderChange) => void): TaoMessageConsumer;
1199
1203
  /** {@link IncomingMessage.IdleTwjdOrderSyn 闲鱼 > 闲鱼图文鉴定业务订单消息} */
@@ -2138,10 +2142,14 @@ declare interface TaoTopicsDescriptor {
2138
2142
  taobao_zk_FirstLogisticsReceivedNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
2139
2143
  /** {@link IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
2140
2144
  taobao_zk_FirstLogisticsUpdateNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify) => void): TaoMessageConsumer;
2145
+ /** {@link IncomingMessage.TaobaoZkIdentifyCancelNotify 淘宝真酷 > 淘宝真酷-取消鉴别通知} */
2146
+ taobao_zk_IdentifyCancelNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCancelNotify) => void): TaoMessageConsumer;
2141
2147
  /** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
2142
2148
  taobao_zk_IdentifyCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
2143
2149
  /** {@link IncomingMessage.TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
2144
2150
  taobao_zk_PauseNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPauseNotify) => void): TaoMessageConsumer;
2151
+ /** {@link IncomingMessage.TaobaoZkPreIdentifyModifyPicNotify 淘宝真酷 > 淘宝真酷-提前鉴别修改图片通知} */
2152
+ taobao_zk_PreIdentifyModifyPicNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPreIdentifyModifyPicNotify) => void): TaoMessageConsumer;
2145
2153
  /** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
2146
2154
  taobao_zk_RefundNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
2147
2155
  /** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
@@ -4305,6 +4313,8 @@ declare interface TaoEventsListener {
4305
4313
  on(topic: 'fliggy_xhotel_ComboCreateResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotelComboCreateResult) => void): TaoMessageConsumer;
4306
4314
  /** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
4307
4315
  on(topic: 'flyggy_flight_DomesticDistributionQuotationFull', listener: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull) => void): TaoMessageConsumer;
4316
+ /** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationIncrement 飞猪 > 飞猪机票国内分销增量报价} */
4317
+ on(topic: 'flyggy_flight_DomesticDistributionQuotationIncrement', listener: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationIncrement) => void): TaoMessageConsumer;
4308
4318
  /** {@link IncomingMessage.FuwuConfirmFail 服务市场 > 收入确认失败} */
4309
4319
  on(topic: 'fuwu_confirm_Fail', listener: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirmFail) => void): TaoMessageConsumer;
4310
4320
  /** {@link IncomingMessage.FuwuConfirmSuccess 服务市场 > 收入确认成功} */
@@ -4401,6 +4411,8 @@ declare interface TaoEventsListener {
4401
4411
  on(topic: 'idle_topisv_TradeNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleTopisvTradeNotice) => void): TaoMessageConsumer;
4402
4412
  /** {@link IncomingMessage.IdleTradeAddressModify 闲鱼回收商消息 > 买家修改地址通知卖家} */
4403
4413
  on(topic: 'idle_trade_AddressModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleTradeAddressModify) => void): TaoMessageConsumer;
4414
+ /** {@link IncomingMessage.IdleTradeTradeReteSuccess 闲鱼回收商消息 > 服务商订单评价消息} */
4415
+ on(topic: 'idle_trade_TradeReteSuccess', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleTradeTradeReteSuccess) => void): TaoMessageConsumer;
4404
4416
  /** {@link IncomingMessage.IdleTranferpayOrderChange 闲鱼 > 直接转账交易消息} */
4405
4417
  on(topic: 'idle_tranferpay_OrderChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleTranferpayOrderChange) => void): TaoMessageConsumer;
4406
4418
  /** {@link IncomingMessage.IdleTwjdOrderSyn 闲鱼 > 闲鱼图文鉴定业务订单消息} */
@@ -5345,10 +5357,14 @@ declare interface TaoEventsListener {
5345
5357
  on(topic: 'taobao_zk_FirstLogisticsReceivedNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
5346
5358
  /** {@link IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
5347
5359
  on(topic: 'taobao_zk_FirstLogisticsUpdateNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify) => void): TaoMessageConsumer;
5360
+ /** {@link IncomingMessage.TaobaoZkIdentifyCancelNotify 淘宝真酷 > 淘宝真酷-取消鉴别通知} */
5361
+ on(topic: 'taobao_zk_IdentifyCancelNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCancelNotify) => void): TaoMessageConsumer;
5348
5362
  /** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
5349
5363
  on(topic: 'taobao_zk_IdentifyCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
5350
5364
  /** {@link IncomingMessage.TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
5351
5365
  on(topic: 'taobao_zk_PauseNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPauseNotify) => void): TaoMessageConsumer;
5366
+ /** {@link IncomingMessage.TaobaoZkPreIdentifyModifyPicNotify 淘宝真酷 > 淘宝真酷-提前鉴别修改图片通知} */
5367
+ on(topic: 'taobao_zk_PreIdentifyModifyPicNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPreIdentifyModifyPicNotify) => void): TaoMessageConsumer;
5352
5368
  /** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
5353
5369
  on(topic: 'taobao_zk_RefundNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
5354
5370
  /** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
@@ -1082,6 +1082,8 @@ declare namespace IncomingMessage {
1082
1082
  type FliggyXhotelComboCreateResult = Message & { content?: MessageContent & { topic?: 'fliggy_xhotel_ComboCreateResult', content?: string | Fliggy.Xhotel.ComboCreateResult } };
1083
1083
  /** {@link Flyggy.Flight.DomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
1084
1084
  type FlyggyFlightDomesticDistributionQuotationFull = Message & { content?: MessageContent & { topic?: 'flyggy_flight_DomesticDistributionQuotationFull', content?: string | Flyggy.Flight.DomesticDistributionQuotationFull } };
1085
+ /** {@link Flyggy.Flight.DomesticDistributionQuotationIncrement 飞猪 > 飞猪机票国内分销增量报价} */
1086
+ type FlyggyFlightDomesticDistributionQuotationIncrement = Message & { content?: MessageContent & { topic?: 'flyggy_flight_DomesticDistributionQuotationIncrement', content?: string | Flyggy.Flight.DomesticDistributionQuotationIncrement } };
1085
1087
  /** {@link Fuwu.Confirm.Fail 服务市场 > 收入确认失败} */
1086
1088
  type FuwuConfirmFail = Message & { content?: MessageContent & { topic?: 'fuwu_confirm_Fail', content?: string | Fuwu.Confirm.Fail } };
1087
1089
  /** {@link Fuwu.Confirm.Success 服务市场 > 收入确认成功} */
@@ -1178,6 +1180,8 @@ declare namespace IncomingMessage {
1178
1180
  type IdleTopisvTradeNotice = Message & { content?: MessageContent & { topic?: 'idle_topisv_TradeNotice', content?: string | Idle.Topisv.TradeNotice } };
1179
1181
  /** {@link Idle.Trade.AddressModify 闲鱼回收商消息 > 买家修改地址通知卖家} */
1180
1182
  type IdleTradeAddressModify = Message & { content?: MessageContent & { topic?: 'idle_trade_AddressModify', content?: string | Idle.Trade.AddressModify } };
1183
+ /** {@link Idle.Trade.TradeReteSuccess 闲鱼回收商消息 > 服务商订单评价消息} */
1184
+ type IdleTradeTradeReteSuccess = Message & { content?: MessageContent & { topic?: 'idle_trade_TradeReteSuccess', content?: string | Idle.Trade.TradeReteSuccess } };
1181
1185
  /** {@link Idle.Tranferpay.OrderChange 闲鱼 > 直接转账交易消息} */
1182
1186
  type IdleTranferpayOrderChange = Message & { content?: MessageContent & { topic?: 'idle_tranferpay_OrderChange', content?: string | Idle.Tranferpay.OrderChange } };
1183
1187
  /** {@link Idle.Twjd.OrderSyn 闲鱼 > 闲鱼图文鉴定业务订单消息} */
@@ -2122,10 +2126,14 @@ declare namespace IncomingMessage {
2122
2126
  type TaobaoZkFirstLogisticsReceivedNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsReceivedNotify', content?: string | Taobao.Zk.FirstLogisticsReceivedNotify } };
2123
2127
  /** {@link Taobao.Zk.FirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
2124
2128
  type TaobaoZkFirstLogisticsUpdateNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsUpdateNotify', content?: string | Taobao.Zk.FirstLogisticsUpdateNotify } };
2129
+ /** {@link Taobao.Zk.IdentifyCancelNotify 淘宝真酷 > 淘宝真酷-取消鉴别通知} */
2130
+ type TaobaoZkIdentifyCancelNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCancelNotify', content?: string | Taobao.Zk.IdentifyCancelNotify } };
2125
2131
  /** {@link Taobao.Zk.IdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
2126
2132
  type TaobaoZkIdentifyCreate = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCreate', content?: string | Taobao.Zk.IdentifyCreate } };
2127
2133
  /** {@link Taobao.Zk.PauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
2128
2134
  type TaobaoZkPauseNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_PauseNotify', content?: string | Taobao.Zk.PauseNotify } };
2135
+ /** {@link Taobao.Zk.PreIdentifyModifyPicNotify 淘宝真酷 > 淘宝真酷-提前鉴别修改图片通知} */
2136
+ type TaobaoZkPreIdentifyModifyPicNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_PreIdentifyModifyPicNotify', content?: string | Taobao.Zk.PreIdentifyModifyPicNotify } };
2129
2137
  /** {@link Taobao.Zk.RefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
2130
2138
  type TaobaoZkRefundNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_RefundNotify', content?: string | Taobao.Zk.RefundNotify } };
2131
2139
  /** {@link Taobao.Zk.SecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
@@ -3768,8 +3776,10 @@ declare namespace IncomingMessage {
3768
3776
  type FliggyXhotel = FliggyXhotelComboCreateResult;
3769
3777
  /**
3770
3778
  * - {@link FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价}
3779
+ * - {@link FlyggyFlightDomesticDistributionQuotationIncrement 飞猪 > 飞猪机票国内分销增量报价}
3771
3780
  */
3772
- type FlyggyFlight = FlyggyFlightDomesticDistributionQuotationFull;
3781
+ type FlyggyFlight = FlyggyFlightDomesticDistributionQuotationFull
3782
+ | FlyggyFlightDomesticDistributionQuotationIncrement;
3773
3783
  /**
3774
3784
  * - {@link FuwuConfirmFail 服务市场 > 收入确认失败}
3775
3785
  * - {@link FuwuConfirmSuccess 服务市场 > 收入确认成功}
@@ -3916,8 +3926,10 @@ declare namespace IncomingMessage {
3916
3926
  | IdleTopisvTradeNotice;
3917
3927
  /**
3918
3928
  * - {@link IdleTradeAddressModify 闲鱼回收商消息 > 买家修改地址通知卖家}
3929
+ * - {@link IdleTradeTradeReteSuccess 闲鱼回收商消息 > 服务商订单评价消息}
3919
3930
  */
3920
- type IdleTrade = IdleTradeAddressModify;
3931
+ type IdleTrade = IdleTradeAddressModify
3932
+ | IdleTradeTradeReteSuccess;
3921
3933
  /**
3922
3934
  * - {@link IdleTranferpayOrderChange 闲鱼 > 直接转账交易消息}
3923
3935
  */
@@ -5102,8 +5114,10 @@ declare namespace IncomingMessage {
5102
5114
  * - {@link TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息}
5103
5115
  * - {@link TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知}
5104
5116
  * - {@link TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息}
5117
+ * - {@link TaobaoZkIdentifyCancelNotify 淘宝真酷 > 淘宝真酷-取消鉴别通知}
5105
5118
  * - {@link TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息}
5106
5119
  * - {@link TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知}
5120
+ * - {@link TaobaoZkPreIdentifyModifyPicNotify 淘宝真酷 > 淘宝真酷-提前鉴别修改图片通知}
5107
5121
  * - {@link TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知}
5108
5122
  * - {@link TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构}
5109
5123
  * - {@link TaobaoZkSubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知}
@@ -5113,8 +5127,10 @@ declare namespace IncomingMessage {
5113
5127
  | TaobaoZkFirstLogisticsNotify
5114
5128
  | TaobaoZkFirstLogisticsReceivedNotify
5115
5129
  | TaobaoZkFirstLogisticsUpdateNotify
5130
+ | TaobaoZkIdentifyCancelNotify
5116
5131
  | TaobaoZkIdentifyCreate
5117
5132
  | TaobaoZkPauseNotify
5133
+ | TaobaoZkPreIdentifyModifyPicNotify
5118
5134
  | TaobaoZkRefundNotify
5119
5135
  | TaobaoZkSecondLogisticsGotNotify
5120
5136
  | TaobaoZkSubmitQuote;
package/types/taobao.d.ts CHANGED
@@ -7094,7 +7094,7 @@ declare namespace Taobao.Zk {
7094
7094
  brand_id?: string;
7095
7095
  /** 品牌名称 */
7096
7096
  brand_name?: string;
7097
- /** 检测点 */
7097
+ /** 鉴别点 */
7098
7098
  check_point?: string;
7099
7099
  /** 货号 */
7100
7100
  goods_number?: string;
@@ -7112,6 +7112,8 @@ declare namespace Taobao.Zk {
7112
7112
  item_id?: string;
7113
7113
  /** sku图片 */
7114
7114
  item_sku_pic?: string;
7115
+ /** 是否提前鉴别 */
7116
+ pre_identify?: boolean;
7115
7117
  /** 是否二次鉴别 */
7116
7118
  resale?: boolean;
7117
7119
  /** skuId */
@@ -7170,6 +7172,16 @@ declare namespace Taobao.Zk {
7170
7172
  tp_order_id: string;
7171
7173
  }
7172
7174
 
7175
+ /** {@link https://open.taobao.com/tmc.htm?docId=2640&docType=9 淘宝真酷-取消鉴别通知} */
7176
+ interface IdentifyCancelNotify {
7177
+ /** 货品鉴别单号 */
7178
+ biz_identify_order_id: string;
7179
+ /** 需求鉴别单id */
7180
+ identify_request_id: string;
7181
+ /** 取消鉴别 */
7182
+ is_cancel: boolean;
7183
+ }
7184
+
7173
7185
  /** {@link https://open.taobao.com/tmc.htm?docId=2571&docType=9 淘宝真酷需求鉴别单创建消息} */
7174
7186
  interface IdentifyCreate {
7175
7187
  /** 鉴定机构id */
@@ -7192,6 +7204,16 @@ declare namespace Taobao.Zk {
7192
7204
  tp_order_id: string;
7193
7205
  }
7194
7206
 
7207
+ /** {@link https://open.taobao.com/tmc.htm?docId=2643&docType=9 淘宝真酷-提前鉴别修改图片通知} */
7208
+ interface PreIdentifyModifyPicNotify {
7209
+ /** 货品鉴别单号 */
7210
+ biz_identify_order_id: string;
7211
+ /** 鉴别点 */
7212
+ check_point: string;
7213
+ /** 需求鉴别单id */
7214
+ identify_request_id: string;
7215
+ }
7216
+
7195
7217
  /** {@link https://open.taobao.com/tmc.htm?docId=2589&docType=9 真酷鉴定用户退款通知} */
7196
7218
  interface RefundNotify {
7197
7219
  /** 鉴定机构id */