tmc.js 0.3.40 → 0.3.42

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+ 类别,503+ 消息数</summary>
137
+ <details><summary>共计 85+ 类别,509+ 消息数</summary>
138
138
 
139
139
  | 类别 | 消息数 |
140
140
  | --- | --- |
@@ -150,7 +150,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
150
150
  | 导购平台 | 21 |
151
151
  | 淘宝汽车票 | 4 |
152
152
  | 服务市场 | 9 |
153
- | 天猫服务 | 28 |
153
+ | 天猫服务 | 30 |
154
154
  | 天猫美妆 | 2 |
155
155
  | 聚石塔 | 9 |
156
156
  | 淘宝物流 | 1 |
@@ -170,7 +170,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
170
170
  | AE-交易 | 10 |
171
171
  | 五道口配送 | 5 |
172
172
  | 百川 | 2 |
173
- | 闲鱼 | 21 |
173
+ | 闲鱼 | 23 |
174
174
  | 闲鱼回收商消息 | 6 |
175
175
  | 零售通POS开放平台消息 | 4 |
176
176
  | DPAAS | 6 |
@@ -199,10 +199,11 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
199
199
  | HOMEAI | 2 |
200
200
  | HOMEAI消息对接 | 5 |
201
201
  | 零售通_公共 | 8 |
202
- | 酒店标准库基础信息变更消息 | 2 |
202
+ | 酒店标准库基础信息变更消息 | 3 |
203
203
  | 菜鸟发货工作台 | 1 |
204
204
  | IOT-智能制造 | 2 |
205
205
  | 智能制造API | 1 |
206
+ | ICBU-交易 | 1 |
206
207
  | IoT售后解决方案 | 1 |
207
208
  | OpenMall-API | 5 |
208
209
  | 闲鱼已验货 | 6 |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tmc.js",
3
- "version": "0.3.40",
3
+ "version": "0.3.42",
4
4
  "description": "Event driven and chained Taobao Message Channel(TMC) for NodeJS",
5
5
  "author": "James ZHANG",
6
6
  "license": "MIT",
@@ -1615,6 +1615,8 @@ declare namespace Alibaba.Invoice {
1615
1615
  readonly platform_tid: string;
1616
1616
  /** 卖家Nick */
1617
1617
  seller_nick?: string;
1618
+ /** 流水号 */
1619
+ serial_no?: string;
1618
1620
  /** 开票申请的触发类型,buyer_payed=卖家已付款,sent_goods=卖家已发货,buyer_confirm=买家确认收货,refund_seller_confirm=卖家同意退款,invoice_supply=买家申请补开发票,invoice_change=买家申请改抬头,change_paper=电换纸 */
1619
1621
  trigger_status?: string;
1620
1622
  }
@@ -3443,6 +3445,19 @@ declare namespace Alibaba.Nlife {
3443
3445
  }
3444
3446
  }
3445
3447
 
3448
+ /** 小满 */
3449
+ declare namespace Alibaba.Okki {
3450
+ /** {@link https://open.taobao.com/tmc.htm?docId=2557&docType=9 小满商品服务状态同步} */
3451
+ interface SpuStatusSync {
3452
+ /** 小满客户id */
3453
+ client_id: string;
3454
+ /** 先富客户id */
3455
+ global_id: string;
3456
+ /** 小满商品服务状态 */
3457
+ spu_status: string;
3458
+ }
3459
+ }
3460
+
3446
3461
  /** 阿里拍卖 */
3447
3462
  declare namespace Alibaba.Paimai {
3448
3463
  /** {@link https://open.taobao.com/tmc.htm?docId=2111&docType=9 支付宝用户完成消费金任务} */
package/types/alipic.d.ts CHANGED
@@ -1,5 +1,25 @@
1
1
  /** ALIPIC */
2
2
  declare namespace Alipic.Lark {
3
+ /** {@link https://open.taobao.com/tmc.htm?docId=2563&docType=9 佳影数据上云} */
4
+ interface JiayingDataReport {
5
+ /** 数据内容 */
6
+ data_content: string;
7
+ /** 唯一键 */
8
+ data_id: string;
9
+ /** 数据类型 */
10
+ data_type: string;
11
+ }
12
+
13
+ /** {@link https://open.taobao.com/tmc.htm?docId=2558&docType=9 POS配置态数据增量下行} */
14
+ interface ResultDataDownlink {
15
+ /** 消息业务唯一id */
16
+ pos_bus_data_id: string;
17
+ /** 消息类型:1 订单类型 -1 其他类型 */
18
+ pos_bus_data_type?: number;
19
+ /** pos-bus接口返回参数 */
20
+ pos_bus_result_data: string;
21
+ }
22
+
3
23
  /** {@link https://open.taobao.com/tmc.htm?docId=2556&docType=9 排期列表数据增量下行} */
4
24
  interface SchedulesDataDownlink {
5
25
  /** 发送业务消息 */
package/types/icbu.d.ts CHANGED
@@ -131,7 +131,7 @@ declare namespace Icbu.Risk {
131
131
  }
132
132
  }
133
133
 
134
- /** ICBU */
134
+ /** ICBU-交易 */
135
135
  declare namespace Icbu.Trade {
136
136
  /** {@link https://open.taobao.com/tmc.htm?docId=1754&docType=9 国际站订单变更消息} */
137
137
  interface OrderNotify {
package/types/idle.d.ts CHANGED
@@ -111,6 +111,29 @@ declare namespace Idle.Consignmentii {
111
111
  }
112
112
  }
113
113
 
114
+ /** 闲鱼 */
115
+ declare namespace Idle.Cro {
116
+ /** {@link https://open.taobao.com/tmc.htm?docId=2567&docType=9 闲鱼安全处罚消息} */
117
+ interface PunishMsg {
118
+ /** 0-处罚中,1-处罚完结,2-处罚撤销,10-申诉前置处罚 */
119
+ action_type: string;
120
+ /** 具体处罚项是什么 */
121
+ asset_list: string;
122
+ /** 处罚开始时间 */
123
+ begin_date: Date | number | string;
124
+ /** 处罚结束时间 */
125
+ end_date: Date | number | string;
126
+ /** 处罚ID */
127
+ result_id: string;
128
+ /** 处罚规则CODE */
129
+ rule_code: string;
130
+ /** 处罚规则名称 */
131
+ rule_name: string;
132
+ /** 处罚的用户ID */
133
+ user_id: number;
134
+ }
135
+ }
136
+
114
137
  /** 闲鱼 */
115
138
  declare namespace Idle.Cycleshop {
116
139
  /** {@link https://open.taobao.com/tmc.htm?docId=2499&docType=9 闲鱼循环商店-货品变更通知} */
package/types/index.d.ts CHANGED
@@ -484,6 +484,8 @@ declare interface TaoTopicsDescriptor {
484
484
  alibaba_nlife_InstorageDiffAuditNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeInstorageDiffAuditNotify) => void): TaoMessageConsumer;
485
485
  /** {@link IncomingMessage.AlibabaNlifeItemUpdate 零售plus > 零售+商品变动消息} */
486
486
  alibaba_nlife_ItemUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeItemUpdate) => void): TaoMessageConsumer;
487
+ /** {@link IncomingMessage.AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步} */
488
+ alibaba_okki_SpuStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkkiSpuStatusSync) => void): TaoMessageConsumer;
487
489
  /** {@link IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
488
490
  alibaba_paimai_AlipayConsumeGoldTaskFinish(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish) => void): TaoMessageConsumer;
489
491
  /** {@link IncomingMessage.AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
@@ -788,6 +790,10 @@ declare interface TaoTopicsDescriptor {
788
790
  alipay_update_Seller(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdateSeller) => void): TaoMessageConsumer;
789
791
  /** {@link IncomingMessage.AlipayXiaodaiSignNotify 阿里金融 > 阿里金融签约通知} */
790
792
  alipay_xiaodai_SignNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodaiSignNotify) => void): TaoMessageConsumer;
793
+ /** {@link IncomingMessage.AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云} */
794
+ alipic_lark_JiayingDataReport(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkJiayingDataReport) => void): TaoMessageConsumer;
795
+ /** {@link IncomingMessage.AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行} */
796
+ alipic_lark_ResultDataDownlink(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkResultDataDownlink) => void): TaoMessageConsumer;
791
797
  /** {@link IncomingMessage.AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
792
798
  alipic_lark_SchedulesDataDownlink(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkSchedulesDataDownlink) => void): TaoMessageConsumer;
793
799
  /** {@link IncomingMessage.AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
@@ -1106,7 +1112,7 @@ declare interface TaoTopicsDescriptor {
1106
1112
  icbu_member_XmUnBind(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuMemberXmUnBind) => void): TaoMessageConsumer;
1107
1113
  /** {@link IncomingMessage.IcbuRiskZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
1108
1114
  icbu_risk_ZeroersMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuRiskZeroersMessage) => void): TaoMessageConsumer;
1109
- /** {@link IncomingMessage.IcbuTradeOrderNotify ICBU > 国际站订单变更消息} */
1115
+ /** {@link IncomingMessage.IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息} */
1110
1116
  icbu_trade_OrderNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuTradeOrderNotify) => void): TaoMessageConsumer;
1111
1117
  /** {@link IncomingMessage.IdleAgreementStatusChange 闲鱼 > 闲鱼代扣消息通知} */
1112
1118
  idle_agreement_StatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreementStatusChange) => void): TaoMessageConsumer;
@@ -1124,6 +1130,8 @@ declare interface TaoTopicsDescriptor {
1124
1130
  idle_consignment_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
1125
1131
  /** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
1126
1132
  idle_consignmentii_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentiiOrderSyn) => void): TaoMessageConsumer;
1133
+ /** {@link IncomingMessage.IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息} */
1134
+ idle_cro_PunishMsg(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCroPunishMsg) => void): TaoMessageConsumer;
1127
1135
  /** {@link IncomingMessage.IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
1128
1136
  idle_cycleshop_GoodsNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
1129
1137
  /** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
@@ -1156,6 +1164,12 @@ declare interface TaoTopicsDescriptor {
1156
1164
  jae_trade_PaidSuccessed(fn: (this: TaoMessageConsumer, message: IncomingMessage.JaeTradePaidSuccessed) => void): TaoMessageConsumer;
1157
1165
  /** {@link IncomingMessage.JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
1158
1166
  jym_order_BoosterStatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.JymOrderBoosterStatusChange) => void): TaoMessageConsumer;
1167
+ /** {@link IncomingMessage.LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
1168
+ lark_trade_PosTradeDataTransmit(fn: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
1169
+ /** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
1170
+ lianfan_huiwa_ModelStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
1171
+ /** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
1172
+ lianfan_huiwa_TaskStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
1159
1173
  /** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
1160
1174
  lst_supplier_BroadcastFastRefundMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplierBroadcastFastRefundMessage) => void): TaoMessageConsumer;
1161
1175
  /** {@link IncomingMessage.LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
@@ -1608,6 +1622,8 @@ declare interface TaoTopicsDescriptor {
1608
1622
  taobao_ofn_NewOrderEventSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnNewOrderEventSync) => void): TaoMessageConsumer;
1609
1623
  /** {@link IncomingMessage.TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
1610
1624
  taobao_ofn_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnOrderStatusSync) => void): TaoMessageConsumer;
1625
+ /** {@link IncomingMessage.TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息} */
1626
+ taobao_ofn_RateSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnRateSync) => void): TaoMessageConsumer;
1611
1627
  /** {@link IncomingMessage.TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步} */
1612
1628
  taobao_openaccount_DataSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpenaccountDataSync) => void): TaoMessageConsumer;
1613
1629
  /** {@link IncomingMessage.TaobaoOpencrmAuthTouchMessage 客户运营平台API > 营销短信授权消息} */
@@ -2022,6 +2038,8 @@ declare interface TaoTopicsDescriptor {
2022
2038
  taobao_wt_OpenTradeTaskMsg(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtOpenTradeTaskMsg) => void): TaoMessageConsumer;
2023
2039
  /** {@link IncomingMessage.TaobaoWtVerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
2024
2040
  taobao_wt_VerifyInform(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtVerifyInform) => void): TaoMessageConsumer;
2041
+ /** {@link IncomingMessage.TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
2042
+ taobao_xhotel_DistributionStdInfoChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotelDistributionStdInfoChange) => void): TaoMessageConsumer;
2025
2043
  /** {@link IncomingMessage.TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息} */
2026
2044
  taobao_xianyu_HouseBooking(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyuHouseBooking) => void): TaoMessageConsumer;
2027
2045
  /** {@link IncomingMessage.TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付} */
@@ -2056,6 +2074,8 @@ declare interface TaoTopicsDescriptor {
2056
2074
  taobao_xiaowei_Test(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
2057
2075
  /** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
2058
2076
  taobao_yichao_WarrantyCodeStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
2077
+ /** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
2078
+ taobao_zk_IdentifyCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
2059
2079
  /** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
2060
2080
  taotao_film_ThirdPartyRefundPush(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
2061
2081
  /** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
@@ -2068,6 +2088,8 @@ declare interface TaoTopicsDescriptor {
2068
2088
  tmall_auto_TradeModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTradeModify) => void): TaoMessageConsumer;
2069
2089
  /** {@link IncomingMessage.TmallAutoTwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
2070
2090
  tmall_auto_TwoWheelsReceiptCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTwoWheelsReceiptCreate) => void): TaoMessageConsumer;
2091
+ /** {@link IncomingMessage.TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
2092
+ tmall_car_AbnormalSettleSeller(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAbnormalSettleSeller) => void): TaoMessageConsumer;
2071
2093
  /** {@link IncomingMessage.TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
2072
2094
  tmall_car_AliapayTelRedPacket(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAliapayTelRedPacket) => void): TaoMessageConsumer;
2073
2095
  /** {@link IncomingMessage.TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
@@ -2100,6 +2122,8 @@ declare interface TaoTopicsDescriptor {
2100
2122
  tmall_fuwu_HomeDecorationSupplyRuleUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
2101
2123
  /** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
2102
2124
  tmall_fuwu_LogisticsInfoMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
2125
+ /** {@link IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
2126
+ tmall_fuwu_NewAnomalyRecourseStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
2103
2127
  /** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
2104
2128
  tmall_fuwu_RateMessageTP(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
2105
2129
  /** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
@@ -2218,7 +2242,7 @@ declare interface TaoTopicsDescriptor {
2218
2242
  tmall_sasssign_Msg(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssignMsg) => void): TaoMessageConsumer;
2219
2243
  /** {@link IncomingMessage.TmallScmSendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
2220
2244
  tmall_scm_SendTmcsDistributeSettleFee(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
2221
- /** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫 > 服务结算账期账单发票消息} */
2245
+ /** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
2222
2246
  tmall_service_CycleBillInvoice(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
2223
2247
  /** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
2224
2248
  tmall_servicecenter_TaskUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
@@ -2294,12 +2318,16 @@ declare interface TaoTopicsDescriptor {
2294
2318
  xianyu_appraise_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
2295
2319
  /** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
2296
2320
  xianyu_car_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
2321
+ /** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
2322
+ xianyu_ctox_CommissionStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
2297
2323
  /** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
2298
2324
  xianyu_ctox_PayDkChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxPayDkChange) => void): TaoMessageConsumer;
2299
2325
  /** {@link IncomingMessage.XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
2300
2326
  xianyu_ctox_RateStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxRateStateSyn) => void): TaoMessageConsumer;
2301
2327
  /** {@link IncomingMessage.XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
2302
2328
  xianyu_environment_EventSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
2329
+ /** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
2330
+ xianyu_fishmarket_ItemSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
2303
2331
  /** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
2304
2332
  xianyu_isv_OrderRemind(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
2305
2333
  /** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
@@ -2424,6 +2452,8 @@ declare interface TaoTopicsDescriptor {
2424
2452
  alibaba_newretail(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNewretail) => void): TaoMessageConsumer;
2425
2453
  /** {@link IncomingMessage.AlibabaNlife} */
2426
2454
  alibaba_nlife(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlife) => void): TaoMessageConsumer;
2455
+ /** {@link IncomingMessage.AlibabaOkki} */
2456
+ alibaba_okki(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkki) => void): TaoMessageConsumer;
2427
2457
  /** {@link IncomingMessage.AlibabaPaimai} */
2428
2458
  alibaba_paimai(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimai) => void): TaoMessageConsumer;
2429
2459
  /** {@link IncomingMessage.AlibabaPur} */
@@ -2662,6 +2692,8 @@ declare interface TaoTopicsDescriptor {
2662
2692
  idle_consignment(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
2663
2693
  /** {@link IncomingMessage.IdleConsignmentii} */
2664
2694
  idle_consignmentii(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentii) => void): TaoMessageConsumer;
2695
+ /** {@link IncomingMessage.IdleCro} */
2696
+ idle_cro(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
2665
2697
  /** {@link IncomingMessage.IdleCycleshop} */
2666
2698
  idle_cycleshop(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
2667
2699
  /** {@link IncomingMessage.IdleRecycle} */
@@ -2680,6 +2712,10 @@ declare interface TaoTopicsDescriptor {
2680
2712
  jae_trade(fn: (this: TaoMessageConsumer, message: IncomingMessage.JaeTrade) => void): TaoMessageConsumer;
2681
2713
  /** {@link IncomingMessage.JymOrder} */
2682
2714
  jym_order(fn: (this: TaoMessageConsumer, message: IncomingMessage.JymOrder) => void): TaoMessageConsumer;
2715
+ /** {@link IncomingMessage.LarkTrade} */
2716
+ lark_trade(fn: (this: TaoMessageConsumer, message: IncomingMessage.LarkTrade) => void): TaoMessageConsumer;
2717
+ /** {@link IncomingMessage.LianfanHuiwa} */
2718
+ lianfan_huiwa(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwa) => void): TaoMessageConsumer;
2683
2719
  /** {@link IncomingMessage.LstSupplier} */
2684
2720
  lst_supplier(fn: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplier) => void): TaoMessageConsumer;
2685
2721
  /** {@link IncomingMessage.NiaochaoTccompass} */
@@ -2892,6 +2928,8 @@ declare interface TaoTopicsDescriptor {
2892
2928
  taobao_worktable(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWorktable) => void): TaoMessageConsumer;
2893
2929
  /** {@link IncomingMessage.TaobaoWt} */
2894
2930
  taobao_wt(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWt) => void): TaoMessageConsumer;
2931
+ /** {@link IncomingMessage.TaobaoXhotel} */
2932
+ taobao_xhotel(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotel) => void): TaoMessageConsumer;
2895
2933
  /** {@link IncomingMessage.TaobaoXianyu} */
2896
2934
  taobao_xianyu(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyu) => void): TaoMessageConsumer;
2897
2935
  /** {@link IncomingMessage.TaobaoXiaoqu} */
@@ -2900,6 +2938,8 @@ declare interface TaoTopicsDescriptor {
2900
2938
  taobao_xiaowei(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaowei) => void): TaoMessageConsumer;
2901
2939
  /** {@link IncomingMessage.TaobaoYichao} */
2902
2940
  taobao_yichao(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichao) => void): TaoMessageConsumer;
2941
+ /** {@link IncomingMessage.TaobaoZk} */
2942
+ taobao_zk(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZk) => void): TaoMessageConsumer;
2903
2943
  /** {@link IncomingMessage.TaotaoFilm} */
2904
2944
  taotao_film(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilm) => void): TaoMessageConsumer;
2905
2945
  /** {@link IncomingMessage.TmallAliauto} */
@@ -2990,6 +3030,8 @@ declare interface TaoTopicsDescriptor {
2990
3030
  xianyu_ctox(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
2991
3031
  /** {@link IncomingMessage.XianyuEnvironment} */
2992
3032
  xianyu_environment(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
3033
+ /** {@link IncomingMessage.XianyuFishmarket} */
3034
+ xianyu_fishmarket(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
2993
3035
  /** {@link IncomingMessage.XianyuIsv} */
2994
3036
  xianyu_isv(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
2995
3037
  /** {@link IncomingMessage.XianyuMarketrecycle} */
@@ -3072,6 +3114,10 @@ declare interface TaoTopicsDescriptor {
3072
3114
  jae(fn: (this: TaoMessageConsumer, message: IncomingMessage.Jae) => void): TaoMessageConsumer;
3073
3115
  /** {@link IncomingMessage.Jym} */
3074
3116
  jym(fn: (this: TaoMessageConsumer, message: IncomingMessage.Jym) => void): TaoMessageConsumer;
3117
+ /** {@link IncomingMessage.Lark} */
3118
+ lark(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lark) => void): TaoMessageConsumer;
3119
+ /** {@link IncomingMessage.Lianfan} */
3120
+ lianfan(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lianfan) => void): TaoMessageConsumer;
3075
3121
  /** {@link IncomingMessage.Lst} */
3076
3122
  lst(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lst) => void): TaoMessageConsumer;
3077
3123
  /** {@link IncomingMessage.Niaochao} */
@@ -3521,6 +3567,8 @@ declare interface TaoEventsListener {
3521
3567
  on(topic: 'alibaba_nlife_InstorageDiffAuditNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeInstorageDiffAuditNotify) => void): TaoMessageConsumer;
3522
3568
  /** {@link IncomingMessage.AlibabaNlifeItemUpdate 零售plus > 零售+商品变动消息} */
3523
3569
  on(topic: 'alibaba_nlife_ItemUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeItemUpdate) => void): TaoMessageConsumer;
3570
+ /** {@link IncomingMessage.AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步} */
3571
+ on(topic: 'alibaba_okki_SpuStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkkiSpuStatusSync) => void): TaoMessageConsumer;
3524
3572
  /** {@link IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
3525
3573
  on(topic: 'alibaba_paimai_AlipayConsumeGoldTaskFinish', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish) => void): TaoMessageConsumer;
3526
3574
  /** {@link IncomingMessage.AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
@@ -3825,6 +3873,10 @@ declare interface TaoEventsListener {
3825
3873
  on(topic: 'alipay_update_Seller', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdateSeller) => void): TaoMessageConsumer;
3826
3874
  /** {@link IncomingMessage.AlipayXiaodaiSignNotify 阿里金融 > 阿里金融签约通知} */
3827
3875
  on(topic: 'alipay_xiaodai_SignNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodaiSignNotify) => void): TaoMessageConsumer;
3876
+ /** {@link IncomingMessage.AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云} */
3877
+ on(topic: 'alipic_lark_JiayingDataReport', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkJiayingDataReport) => void): TaoMessageConsumer;
3878
+ /** {@link IncomingMessage.AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行} */
3879
+ on(topic: 'alipic_lark_ResultDataDownlink', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkResultDataDownlink) => void): TaoMessageConsumer;
3828
3880
  /** {@link IncomingMessage.AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
3829
3881
  on(topic: 'alipic_lark_SchedulesDataDownlink', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkSchedulesDataDownlink) => void): TaoMessageConsumer;
3830
3882
  /** {@link IncomingMessage.AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
@@ -4143,7 +4195,7 @@ declare interface TaoEventsListener {
4143
4195
  on(topic: 'icbu_member_XmUnBind', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuMemberXmUnBind) => void): TaoMessageConsumer;
4144
4196
  /** {@link IncomingMessage.IcbuRiskZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
4145
4197
  on(topic: 'icbu_risk_ZeroersMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuRiskZeroersMessage) => void): TaoMessageConsumer;
4146
- /** {@link IncomingMessage.IcbuTradeOrderNotify ICBU > 国际站订单变更消息} */
4198
+ /** {@link IncomingMessage.IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息} */
4147
4199
  on(topic: 'icbu_trade_OrderNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuTradeOrderNotify) => void): TaoMessageConsumer;
4148
4200
  /** {@link IncomingMessage.IdleAgreementStatusChange 闲鱼 > 闲鱼代扣消息通知} */
4149
4201
  on(topic: 'idle_agreement_StatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreementStatusChange) => void): TaoMessageConsumer;
@@ -4161,6 +4213,8 @@ declare interface TaoEventsListener {
4161
4213
  on(topic: 'idle_consignment_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
4162
4214
  /** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
4163
4215
  on(topic: 'idle_consignmentii_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentiiOrderSyn) => void): TaoMessageConsumer;
4216
+ /** {@link IncomingMessage.IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息} */
4217
+ on(topic: 'idle_cro_PunishMsg', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCroPunishMsg) => void): TaoMessageConsumer;
4164
4218
  /** {@link IncomingMessage.IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
4165
4219
  on(topic: 'idle_cycleshop_GoodsNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
4166
4220
  /** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
@@ -4193,6 +4247,12 @@ declare interface TaoEventsListener {
4193
4247
  on(topic: 'jae_trade_PaidSuccessed', listener: (this: TaoMessageConsumer, message: IncomingMessage.JaeTradePaidSuccessed) => void): TaoMessageConsumer;
4194
4248
  /** {@link IncomingMessage.JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
4195
4249
  on(topic: 'jym_order_BoosterStatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.JymOrderBoosterStatusChange) => void): TaoMessageConsumer;
4250
+ /** {@link IncomingMessage.LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
4251
+ on(topic: 'lark_trade_PosTradeDataTransmit', listener: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
4252
+ /** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
4253
+ on(topic: 'lianfan_huiwa_ModelStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
4254
+ /** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
4255
+ on(topic: 'lianfan_huiwa_TaskStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
4196
4256
  /** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
4197
4257
  on(topic: 'lst_supplier_BroadcastFastRefundMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplierBroadcastFastRefundMessage) => void): TaoMessageConsumer;
4198
4258
  /** {@link IncomingMessage.LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
@@ -4645,6 +4705,8 @@ declare interface TaoEventsListener {
4645
4705
  on(topic: 'taobao_ofn_NewOrderEventSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnNewOrderEventSync) => void): TaoMessageConsumer;
4646
4706
  /** {@link IncomingMessage.TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
4647
4707
  on(topic: 'taobao_ofn_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnOrderStatusSync) => void): TaoMessageConsumer;
4708
+ /** {@link IncomingMessage.TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息} */
4709
+ on(topic: 'taobao_ofn_RateSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnRateSync) => void): TaoMessageConsumer;
4648
4710
  /** {@link IncomingMessage.TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步} */
4649
4711
  on(topic: 'taobao_openaccount_DataSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpenaccountDataSync) => void): TaoMessageConsumer;
4650
4712
  /** {@link IncomingMessage.TaobaoOpencrmAuthTouchMessage 客户运营平台API > 营销短信授权消息} */
@@ -5059,6 +5121,8 @@ declare interface TaoEventsListener {
5059
5121
  on(topic: 'taobao_wt_OpenTradeTaskMsg', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtOpenTradeTaskMsg) => void): TaoMessageConsumer;
5060
5122
  /** {@link IncomingMessage.TaobaoWtVerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
5061
5123
  on(topic: 'taobao_wt_VerifyInform', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtVerifyInform) => void): TaoMessageConsumer;
5124
+ /** {@link IncomingMessage.TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
5125
+ on(topic: 'taobao_xhotel_DistributionStdInfoChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotelDistributionStdInfoChange) => void): TaoMessageConsumer;
5062
5126
  /** {@link IncomingMessage.TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息} */
5063
5127
  on(topic: 'taobao_xianyu_HouseBooking', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyuHouseBooking) => void): TaoMessageConsumer;
5064
5128
  /** {@link IncomingMessage.TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付} */
@@ -5093,6 +5157,8 @@ declare interface TaoEventsListener {
5093
5157
  on(topic: 'taobao_xiaowei_Test', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
5094
5158
  /** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
5095
5159
  on(topic: 'taobao_yichao_WarrantyCodeStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
5160
+ /** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
5161
+ on(topic: 'taobao_zk_IdentifyCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
5096
5162
  /** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
5097
5163
  on(topic: 'taotao_film_ThirdPartyRefundPush', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
5098
5164
  /** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
@@ -5105,6 +5171,8 @@ declare interface TaoEventsListener {
5105
5171
  on(topic: 'tmall_auto_TradeModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTradeModify) => void): TaoMessageConsumer;
5106
5172
  /** {@link IncomingMessage.TmallAutoTwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
5107
5173
  on(topic: 'tmall_auto_TwoWheelsReceiptCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTwoWheelsReceiptCreate) => void): TaoMessageConsumer;
5174
+ /** {@link IncomingMessage.TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
5175
+ on(topic: 'tmall_car_AbnormalSettleSeller', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAbnormalSettleSeller) => void): TaoMessageConsumer;
5108
5176
  /** {@link IncomingMessage.TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
5109
5177
  on(topic: 'tmall_car_AliapayTelRedPacket', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAliapayTelRedPacket) => void): TaoMessageConsumer;
5110
5178
  /** {@link IncomingMessage.TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
@@ -5137,6 +5205,8 @@ declare interface TaoEventsListener {
5137
5205
  on(topic: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
5138
5206
  /** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
5139
5207
  on(topic: 'tmall_fuwu_LogisticsInfoMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
5208
+ /** {@link IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
5209
+ on(topic: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
5140
5210
  /** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
5141
5211
  on(topic: 'tmall_fuwu_RateMessageTP', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
5142
5212
  /** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
@@ -5255,7 +5325,7 @@ declare interface TaoEventsListener {
5255
5325
  on(topic: 'tmall_sasssign_Msg', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssignMsg) => void): TaoMessageConsumer;
5256
5326
  /** {@link IncomingMessage.TmallScmSendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
5257
5327
  on(topic: 'tmall_scm_SendTmcsDistributeSettleFee', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
5258
- /** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫 > 服务结算账期账单发票消息} */
5328
+ /** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
5259
5329
  on(topic: 'tmall_service_CycleBillInvoice', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
5260
5330
  /** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
5261
5331
  on(topic: 'tmall_servicecenter_TaskUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
@@ -5331,12 +5401,16 @@ declare interface TaoEventsListener {
5331
5401
  on(topic: 'xianyu_appraise_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
5332
5402
  /** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
5333
5403
  on(topic: 'xianyu_car_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
5404
+ /** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
5405
+ on(topic: 'xianyu_ctox_CommissionStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
5334
5406
  /** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
5335
5407
  on(topic: 'xianyu_ctox_PayDkChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxPayDkChange) => void): TaoMessageConsumer;
5336
5408
  /** {@link IncomingMessage.XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
5337
5409
  on(topic: 'xianyu_ctox_RateStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxRateStateSyn) => void): TaoMessageConsumer;
5338
5410
  /** {@link IncomingMessage.XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
5339
5411
  on(topic: 'xianyu_environment_EventSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
5412
+ /** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
5413
+ on(topic: 'xianyu_fishmarket_ItemSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
5340
5414
  /** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
5341
5415
  on(topic: 'xianyu_isv_OrderRemind', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
5342
5416
  /** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
@@ -5461,6 +5535,8 @@ declare interface TaoEventsListener {
5461
5535
  on(topic: 'alibaba_newretail', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNewretail) => void): TaoMessageConsumer;
5462
5536
  /** {@link IncomingMessage.AlibabaNlife} */
5463
5537
  on(topic: 'alibaba_nlife', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlife) => void): TaoMessageConsumer;
5538
+ /** {@link IncomingMessage.AlibabaOkki} */
5539
+ on(topic: 'alibaba_okki', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkki) => void): TaoMessageConsumer;
5464
5540
  /** {@link IncomingMessage.AlibabaPaimai} */
5465
5541
  on(topic: 'alibaba_paimai', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimai) => void): TaoMessageConsumer;
5466
5542
  /** {@link IncomingMessage.AlibabaPur} */
@@ -5699,6 +5775,8 @@ declare interface TaoEventsListener {
5699
5775
  on(topic: 'idle_consignment', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
5700
5776
  /** {@link IncomingMessage.IdleConsignmentii} */
5701
5777
  on(topic: 'idle_consignmentii', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentii) => void): TaoMessageConsumer;
5778
+ /** {@link IncomingMessage.IdleCro} */
5779
+ on(topic: 'idle_cro', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
5702
5780
  /** {@link IncomingMessage.IdleCycleshop} */
5703
5781
  on(topic: 'idle_cycleshop', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
5704
5782
  /** {@link IncomingMessage.IdleRecycle} */
@@ -5717,6 +5795,10 @@ declare interface TaoEventsListener {
5717
5795
  on(topic: 'jae_trade', listener: (this: TaoMessageConsumer, message: IncomingMessage.JaeTrade) => void): TaoMessageConsumer;
5718
5796
  /** {@link IncomingMessage.JymOrder} */
5719
5797
  on(topic: 'jym_order', listener: (this: TaoMessageConsumer, message: IncomingMessage.JymOrder) => void): TaoMessageConsumer;
5798
+ /** {@link IncomingMessage.LarkTrade} */
5799
+ on(topic: 'lark_trade', listener: (this: TaoMessageConsumer, message: IncomingMessage.LarkTrade) => void): TaoMessageConsumer;
5800
+ /** {@link IncomingMessage.LianfanHuiwa} */
5801
+ on(topic: 'lianfan_huiwa', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwa) => void): TaoMessageConsumer;
5720
5802
  /** {@link IncomingMessage.LstSupplier} */
5721
5803
  on(topic: 'lst_supplier', listener: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplier) => void): TaoMessageConsumer;
5722
5804
  /** {@link IncomingMessage.NiaochaoTccompass} */
@@ -5929,6 +6011,8 @@ declare interface TaoEventsListener {
5929
6011
  on(topic: 'taobao_worktable', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWorktable) => void): TaoMessageConsumer;
5930
6012
  /** {@link IncomingMessage.TaobaoWt} */
5931
6013
  on(topic: 'taobao_wt', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWt) => void): TaoMessageConsumer;
6014
+ /** {@link IncomingMessage.TaobaoXhotel} */
6015
+ on(topic: 'taobao_xhotel', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotel) => void): TaoMessageConsumer;
5932
6016
  /** {@link IncomingMessage.TaobaoXianyu} */
5933
6017
  on(topic: 'taobao_xianyu', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyu) => void): TaoMessageConsumer;
5934
6018
  /** {@link IncomingMessage.TaobaoXiaoqu} */
@@ -5937,6 +6021,8 @@ declare interface TaoEventsListener {
5937
6021
  on(topic: 'taobao_xiaowei', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaowei) => void): TaoMessageConsumer;
5938
6022
  /** {@link IncomingMessage.TaobaoYichao} */
5939
6023
  on(topic: 'taobao_yichao', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichao) => void): TaoMessageConsumer;
6024
+ /** {@link IncomingMessage.TaobaoZk} */
6025
+ on(topic: 'taobao_zk', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZk) => void): TaoMessageConsumer;
5940
6026
  /** {@link IncomingMessage.TaotaoFilm} */
5941
6027
  on(topic: 'taotao_film', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilm) => void): TaoMessageConsumer;
5942
6028
  /** {@link IncomingMessage.TmallAliauto} */
@@ -6027,6 +6113,8 @@ declare interface TaoEventsListener {
6027
6113
  on(topic: 'xianyu_ctox', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
6028
6114
  /** {@link IncomingMessage.XianyuEnvironment} */
6029
6115
  on(topic: 'xianyu_environment', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
6116
+ /** {@link IncomingMessage.XianyuFishmarket} */
6117
+ on(topic: 'xianyu_fishmarket', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
6030
6118
  /** {@link IncomingMessage.XianyuIsv} */
6031
6119
  on(topic: 'xianyu_isv', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
6032
6120
  /** {@link IncomingMessage.XianyuMarketrecycle} */
@@ -6109,6 +6197,10 @@ declare interface TaoEventsListener {
6109
6197
  on(topic: 'jae', listener: (this: TaoMessageConsumer, message: IncomingMessage.Jae) => void): TaoMessageConsumer;
6110
6198
  /** {@link IncomingMessage.Jym} */
6111
6199
  on(topic: 'jym', listener: (this: TaoMessageConsumer, message: IncomingMessage.Jym) => void): TaoMessageConsumer;
6200
+ /** {@link IncomingMessage.Lark} */
6201
+ on(topic: 'lark', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lark) => void): TaoMessageConsumer;
6202
+ /** {@link IncomingMessage.Lianfan} */
6203
+ on(topic: 'lianfan', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lianfan) => void): TaoMessageConsumer;
6112
6204
  /** {@link IncomingMessage.Lst} */
6113
6205
  on(topic: 'lst', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lst) => void): TaoMessageConsumer;
6114
6206
  /** {@link IncomingMessage.Niaochao} */
@@ -0,0 +1,10 @@
1
+ /** 云智POS */
2
+ declare namespace Lark.Trade {
3
+ /** {@link https://open.taobao.com/tmc.htm?docId=2547&docType=9 云智POS离线交易信息同步} */
4
+ interface PosTradeDataTransmit {
5
+ /** 消息业务ID */
6
+ pos_bus_data_id: string;
7
+ /** 消息主体 */
8
+ pos_bus_result_data: string;
9
+ }
10
+ }
@@ -0,0 +1,26 @@
1
+ /** 连凡 */
2
+ declare namespace Lianfan.Huiwa {
3
+ /** {@link https://open.taobao.com/tmc.htm?docId=2561&docType=9 绘蛙模型状态变更消息} */
4
+ interface ModelStateUpdate {
5
+ /** 模型id */
6
+ model_id: number;
7
+ /** 模型状态 */
8
+ model_status: number;
9
+ /** 模型类型 */
10
+ model_type: number;
11
+ }
12
+
13
+ /** {@link https://open.taobao.com/tmc.htm?docId=2559&docType=9 绘蛙生图任务状态变更消息} */
14
+ interface TaskStateUpdate {
15
+ /** 主任务id */
16
+ main_task_id: number;
17
+ /** 扩展字段 */
18
+ pass_through?: string;
19
+ /** 任务类型 */
20
+ task_biz_type: number;
21
+ /** 任务id */
22
+ task_id: number;
23
+ /** 任务状态 */
24
+ task_status: number;
25
+ }
26
+ }
@@ -30,6 +30,8 @@
30
30
  /// <reference path="intime.d.ts" />
31
31
  /// <reference path="jae.d.ts" />
32
32
  /// <reference path="jym.d.ts" />
33
+ /// <reference path="lark.d.ts" />
34
+ /// <reference path="lianfan.d.ts" />
33
35
  /// <reference path="lst.d.ts" />
34
36
  /// <reference path="niaochao.d.ts" />
35
37
  /// <reference path="taobao.d.ts" />
@@ -465,6 +467,8 @@ declare namespace IncomingMessage {
465
467
  type AlibabaNlifeInstorageDiffAuditNotify = Message & { content?: MessageContent & { topic?: 'alibaba_nlife_InstorageDiffAuditNotify', content?: string | Alibaba.Nlife.InstorageDiffAuditNotify } };
466
468
  /** {@link Alibaba.Nlife.ItemUpdate 零售plus > 零售+商品变动消息} */
467
469
  type AlibabaNlifeItemUpdate = Message & { content?: MessageContent & { topic?: 'alibaba_nlife_ItemUpdate', content?: string | Alibaba.Nlife.ItemUpdate } };
470
+ /** {@link Alibaba.Okki.SpuStatusSync 小满 > 小满商品服务状态同步} */
471
+ type AlibabaOkkiSpuStatusSync = Message & { content?: MessageContent & { topic?: 'alibaba_okki_SpuStatusSync', content?: string | Alibaba.Okki.SpuStatusSync } };
468
472
  /** {@link Alibaba.Paimai.AlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
469
473
  type AlibabaPaimaiAlipayConsumeGoldTaskFinish = Message & { content?: MessageContent & { topic?: 'alibaba_paimai_AlipayConsumeGoldTaskFinish', content?: string | Alibaba.Paimai.AlipayConsumeGoldTaskFinish } };
470
474
  /** {@link Alibaba.Paimai.CommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
@@ -769,6 +773,10 @@ declare namespace IncomingMessage {
769
773
  type AlipayUpdateSeller = Message & { content?: MessageContent & { topic?: 'alipay_update_Seller', content?: string | Alipay.Update.Seller } };
770
774
  /** {@link Alipay.Xiaodai.SignNotify 阿里金融 > 阿里金融签约通知} */
771
775
  type AlipayXiaodaiSignNotify = Message & { content?: MessageContent & { topic?: 'alipay_xiaodai_SignNotify', content?: string | Alipay.Xiaodai.SignNotify } };
776
+ /** {@link Alipic.Lark.JiayingDataReport ALIPIC > 佳影数据上云} */
777
+ type AlipicLarkJiayingDataReport = Message & { content?: MessageContent & { topic?: 'alipic_lark_JiayingDataReport', content?: string | Alipic.Lark.JiayingDataReport } };
778
+ /** {@link Alipic.Lark.ResultDataDownlink ALIPIC > POS配置态数据增量下行} */
779
+ type AlipicLarkResultDataDownlink = Message & { content?: MessageContent & { topic?: 'alipic_lark_ResultDataDownlink', content?: string | Alipic.Lark.ResultDataDownlink } };
772
780
  /** {@link Alipic.Lark.SchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
773
781
  type AlipicLarkSchedulesDataDownlink = Message & { content?: MessageContent & { topic?: 'alipic_lark_SchedulesDataDownlink', content?: string | Alipic.Lark.SchedulesDataDownlink } };
774
782
  /** {@link Alisports.Bank.Alipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
@@ -1087,7 +1095,7 @@ declare namespace IncomingMessage {
1087
1095
  type IcbuMemberXmUnBind = Message & { content?: MessageContent & { topic?: 'icbu_member_XmUnBind', content?: string | Icbu.Member.XmUnBind } };
1088
1096
  /** {@link Icbu.Risk.ZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
1089
1097
  type IcbuRiskZeroersMessage = Message & { content?: MessageContent & { topic?: 'icbu_risk_ZeroersMessage', content?: string | Icbu.Risk.ZeroersMessage } };
1090
- /** {@link Icbu.Trade.OrderNotify ICBU > 国际站订单变更消息} */
1098
+ /** {@link Icbu.Trade.OrderNotify ICBU-交易 > 国际站订单变更消息} */
1091
1099
  type IcbuTradeOrderNotify = Message & { content?: MessageContent & { topic?: 'icbu_trade_OrderNotify', content?: string | Icbu.Trade.OrderNotify } };
1092
1100
  /** {@link Idle.Agreement.StatusChange 闲鱼 > 闲鱼代扣消息通知} */
1093
1101
  type IdleAgreementStatusChange = Message & { content?: MessageContent & { topic?: 'idle_agreement_StatusChange', content?: string | Idle.Agreement.StatusChange } };
@@ -1105,6 +1113,8 @@ declare namespace IncomingMessage {
1105
1113
  type IdleConsignmentOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_consignment_OrderSyn', content?: string | Idle.Consignment.OrderSyn } };
1106
1114
  /** {@link Idle.Consignmentii.OrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
1107
1115
  type IdleConsignmentiiOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_consignmentii_OrderSyn', content?: string | Idle.Consignmentii.OrderSyn } };
1116
+ /** {@link Idle.Cro.PunishMsg 闲鱼 > 闲鱼安全处罚消息} */
1117
+ type IdleCroPunishMsg = Message & { content?: MessageContent & { topic?: 'idle_cro_PunishMsg', content?: string | Idle.Cro.PunishMsg } };
1108
1118
  /** {@link Idle.Cycleshop.GoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
1109
1119
  type IdleCycleshopGoodsNotice = Message & { content?: MessageContent & { topic?: 'idle_cycleshop_GoodsNotice', content?: string | Idle.Cycleshop.GoodsNotice } };
1110
1120
  /** {@link Idle.Cycleshop.SaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
@@ -1137,6 +1147,12 @@ declare namespace IncomingMessage {
1137
1147
  type JaeTradePaidSuccessed = Message & { content?: MessageContent & { topic?: 'jae_trade_PaidSuccessed', content?: string | Jae.Trade.PaidSuccessed } };
1138
1148
  /** {@link Jym.Order.BoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
1139
1149
  type JymOrderBoosterStatusChange = Message & { content?: MessageContent & { topic?: 'jym_order_BoosterStatusChange', content?: string | Jym.Order.BoosterStatusChange } };
1150
+ /** {@link Lark.Trade.PosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
1151
+ type LarkTradePosTradeDataTransmit = Message & { content?: MessageContent & { topic?: 'lark_trade_PosTradeDataTransmit', content?: string | Lark.Trade.PosTradeDataTransmit } };
1152
+ /** {@link Lianfan.Huiwa.ModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
1153
+ type LianfanHuiwaModelStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_ModelStateUpdate', content?: string | Lianfan.Huiwa.ModelStateUpdate } };
1154
+ /** {@link Lianfan.Huiwa.TaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
1155
+ type LianfanHuiwaTaskStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_TaskStateUpdate', content?: string | Lianfan.Huiwa.TaskStateUpdate } };
1140
1156
  /** {@link Lst.Supplier.BroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
1141
1157
  type LstSupplierBroadcastFastRefundMessage = Message & { content?: MessageContent & { topic?: 'lst_supplier_BroadcastFastRefundMessage', content?: string | Lst.Supplier.BroadcastFastRefundMessage } };
1142
1158
  /** {@link Lst.Supplier.FastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
@@ -1589,6 +1605,8 @@ declare namespace IncomingMessage {
1589
1605
  type TaobaoOfnNewOrderEventSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_NewOrderEventSync', content?: string | Taobao.Ofn.NewOrderEventSync } };
1590
1606
  /** {@link Taobao.Ofn.OrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
1591
1607
  type TaobaoOfnOrderStatusSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_OrderStatusSync', content?: string | Taobao.Ofn.OrderStatusSync } };
1608
+ /** {@link Taobao.Ofn.RateSync 淘宝交易 > 以旧换新回收单评价消息} */
1609
+ type TaobaoOfnRateSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_RateSync', content?: string | Taobao.Ofn.RateSync } };
1592
1610
  /** {@link Taobao.Openaccount.DataSync 导购平台 > openaccount数据同步} */
1593
1611
  type TaobaoOpenaccountDataSync = Message & { content?: MessageContent & { topic?: 'taobao_openaccount_DataSync', content?: string | Taobao.Openaccount.DataSync } };
1594
1612
  /** {@link Taobao.Opencrm.AuthTouchMessage 客户运营平台API > 营销短信授权消息} */
@@ -2003,6 +2021,8 @@ declare namespace IncomingMessage {
2003
2021
  type TaobaoWtOpenTradeTaskMsg = Message & { content?: MessageContent & { topic?: 'taobao_wt_OpenTradeTaskMsg', content?: string | Taobao.Wt.OpenTradeTaskMsg } };
2004
2022
  /** {@link Taobao.Wt.VerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
2005
2023
  type TaobaoWtVerifyInform = Message & { content?: MessageContent & { topic?: 'taobao_wt_VerifyInform', content?: string | Taobao.Wt.VerifyInform } };
2024
+ /** {@link Taobao.Xhotel.DistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
2025
+ type TaobaoXhotelDistributionStdInfoChange = Message & { content?: MessageContent & { topic?: 'taobao_xhotel_DistributionStdInfoChange', content?: string | Taobao.Xhotel.DistributionStdInfoChange } };
2006
2026
  /** {@link Taobao.Xianyu.HouseBooking 闲鱼 > 闲鱼房源预约消息} */
2007
2027
  type TaobaoXianyuHouseBooking = Message & { content?: MessageContent & { topic?: 'taobao_xianyu_HouseBooking', content?: string | Taobao.Xianyu.HouseBooking } };
2008
2028
  /** {@link Taobao.Xianyu.RentBillPaid 闲鱼 > 闲鱼租房订单支付} */
@@ -2037,6 +2057,8 @@ declare namespace IncomingMessage {
2037
2057
  type TaobaoXiaoweiTest = Message & { content?: MessageContent & { topic?: 'taobao_xiaowei_Test', content?: string | Taobao.Xiaowei.Test } };
2038
2058
  /** {@link Taobao.Yichao.WarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
2039
2059
  type TaobaoYichaoWarrantyCodeStatusUpdate = Message & { content?: MessageContent & { topic?: 'taobao_yichao_WarrantyCodeStatusUpdate', content?: string | Taobao.Yichao.WarrantyCodeStatusUpdate } };
2060
+ /** {@link Taobao.Zk.IdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
2061
+ type TaobaoZkIdentifyCreate = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCreate', content?: string | Taobao.Zk.IdentifyCreate } };
2040
2062
  /** {@link Taotao.Film.ThirdPartyRefundPush 淘宝 > 退款消息同步} */
2041
2063
  type TaotaoFilmThirdPartyRefundPush = Message & { content?: MessageContent & { topic?: 'taotao_film_ThirdPartyRefundPush', content?: string | Taotao.Film.ThirdPartyRefundPush } };
2042
2064
  /** {@link Tmall.Aliauto.StepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
@@ -2049,6 +2071,8 @@ declare namespace IncomingMessage {
2049
2071
  type TmallAutoTradeModify = Message & { content?: MessageContent & { topic?: 'tmall_auto_TradeModify', content?: string | Tmall.Auto.TradeModify } };
2050
2072
  /** {@link Tmall.Auto.TwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
2051
2073
  type TmallAutoTwoWheelsReceiptCreate = Message & { content?: MessageContent & { topic?: 'tmall_auto_TwoWheelsReceiptCreate', content?: string | Tmall.Auto.TwoWheelsReceiptCreate } };
2074
+ /** {@link Tmall.Car.AbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
2075
+ type TmallCarAbnormalSettleSeller = Message & { content?: MessageContent & { topic?: 'tmall_car_AbnormalSettleSeller', content?: string | Tmall.Car.AbnormalSettleSeller } };
2052
2076
  /** {@link Tmall.Car.AliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
2053
2077
  type TmallCarAliapayTelRedPacket = Message & { content?: MessageContent & { topic?: 'tmall_car_AliapayTelRedPacket', content?: string | Tmall.Car.AliapayTelRedPacket } };
2054
2078
  /** {@link Tmall.Car.AlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
@@ -2081,6 +2105,8 @@ declare namespace IncomingMessage {
2081
2105
  type TmallFuwuHomeDecorationSupplyRuleUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', content?: string | Tmall.Fuwu.HomeDecorationSupplyRuleUpdate } };
2082
2106
  /** {@link Tmall.Fuwu.LogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
2083
2107
  type TmallFuwuLogisticsInfoMessage = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_LogisticsInfoMessage', content?: string | Tmall.Fuwu.LogisticsInfoMessage } };
2108
+ /** {@link Tmall.Fuwu.NewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
2109
+ type TmallFuwuNewAnomalyRecourseStatusUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', content?: string | Tmall.Fuwu.NewAnomalyRecourseStatusUpdate } };
2084
2110
  /** {@link Tmall.Fuwu.RateMessageTP 天猫服务 > 消费者评价成功top消息} */
2085
2111
  type TmallFuwuRateMessageTP = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_RateMessageTP', content?: string | Tmall.Fuwu.RateMessageTP } };
2086
2112
  /** {@link Tmall.Fuwu.ServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
@@ -2199,7 +2225,7 @@ declare namespace IncomingMessage {
2199
2225
  type TmallSasssignMsg = Message & { content?: MessageContent & { topic?: 'tmall_sasssign_Msg', content?: string | Tmall.Sasssign.Msg } };
2200
2226
  /** {@link Tmall.Scm.SendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
2201
2227
  type TmallScmSendTmcsDistributeSettleFee = Message & { content?: MessageContent & { topic?: 'tmall_scm_SendTmcsDistributeSettleFee', content?: string | Tmall.Scm.SendTmcsDistributeSettleFee } };
2202
- /** {@link Tmall.Service.CycleBillInvoice 天猫 > 服务结算账期账单发票消息} */
2228
+ /** {@link Tmall.Service.CycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
2203
2229
  type TmallServiceCycleBillInvoice = Message & { content?: MessageContent & { topic?: 'tmall_service_CycleBillInvoice', content?: string | Tmall.Service.CycleBillInvoice } };
2204
2230
  /** {@link Tmall.Servicecenter.TaskUpdate 天猫服务 > 天猫服务平台工单更新} */
2205
2231
  type TmallServicecenterTaskUpdate = Message & { content?: MessageContent & { topic?: 'tmall_servicecenter_TaskUpdate', content?: string | Tmall.Servicecenter.TaskUpdate } };
@@ -2275,12 +2301,16 @@ declare namespace IncomingMessage {
2275
2301
  type XianyuAppraiseOrderSyn = Message & { content?: MessageContent & { topic?: 'xianyu_appraise_OrderSyn', content?: string | Xianyu.Appraise.OrderSyn } };
2276
2302
  /** {@link Xianyu.Car.OrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
2277
2303
  type XianyuCarOrderStatusSync = Message & { content?: MessageContent & { topic?: 'xianyu_car_OrderStatusSync', content?: string | Xianyu.Car.OrderStatusSync } };
2304
+ /** {@link Xianyu.Ctox.CommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
2305
+ type XianyuCtoxCommissionStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_CommissionStateSyn', content?: string | Xianyu.Ctox.CommissionStateSyn } };
2278
2306
  /** {@link Xianyu.Ctox.PayDkChange 闲鱼 > c2x代扣协议变更通知} */
2279
2307
  type XianyuCtoxPayDkChange = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_PayDkChange', content?: string | Xianyu.Ctox.PayDkChange } };
2280
2308
  /** {@link Xianyu.Ctox.RateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
2281
2309
  type XianyuCtoxRateStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_RateStateSyn', content?: string | Xianyu.Ctox.RateStateSyn } };
2282
2310
  /** {@link Xianyu.Environment.EventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
2283
2311
  type XianyuEnvironmentEventSyn = Message & { content?: MessageContent & { topic?: 'xianyu_environment_EventSyn', content?: string | Xianyu.Environment.EventSyn } };
2312
+ /** {@link Xianyu.Fishmarket.ItemSyn 闲鱼 > 鱼市商品状态变更} */
2313
+ type XianyuFishmarketItemSyn = Message & { content?: MessageContent & { topic?: 'xianyu_fishmarket_ItemSyn', content?: string | Xianyu.Fishmarket.ItemSyn } };
2284
2314
  /** {@link Xianyu.Isv.OrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
2285
2315
  type XianyuIsvOrderRemind = Message & { content?: MessageContent & { topic?: 'xianyu_isv_OrderRemind', content?: string | Xianyu.Isv.OrderRemind } };
2286
2316
  /** {@link Xianyu.Marketrecycle.OrderStateSyn 闲鱼 > 保卖订单变更通知} */
@@ -2825,6 +2855,10 @@ declare namespace IncomingMessage {
2825
2855
  | AlibabaNlifeBtobTradeRefundNotify
2826
2856
  | AlibabaNlifeInstorageDiffAuditNotify
2827
2857
  | AlibabaNlifeItemUpdate;
2858
+ /**
2859
+ * - {@link AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步}
2860
+ */
2861
+ type AlibabaOkki = AlibabaOkkiSpuStatusSync;
2828
2862
  /**
2829
2863
  * - {@link AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务}
2830
2864
  * - {@link AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息}
@@ -3222,9 +3256,13 @@ declare namespace IncomingMessage {
3222
3256
  */
3223
3257
  type AlipayXiaodai = AlipayXiaodaiSignNotify;
3224
3258
  /**
3259
+ * - {@link AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云}
3260
+ * - {@link AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行}
3225
3261
  * - {@link AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行}
3226
3262
  */
3227
- type AlipicLark = AlipicLarkSchedulesDataDownlink;
3263
+ type AlipicLark = AlipicLarkJiayingDataReport
3264
+ | AlipicLarkResultDataDownlink
3265
+ | AlipicLarkSchedulesDataDownlink;
3228
3266
  /**
3229
3267
  * - {@link AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息}
3230
3268
  */
@@ -3674,7 +3712,7 @@ declare namespace IncomingMessage {
3674
3712
  */
3675
3713
  type IcbuRisk = IcbuRiskZeroersMessage;
3676
3714
  /**
3677
- * - {@link IcbuTradeOrderNotify ICBU > 国际站订单变更消息}
3715
+ * - {@link IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息}
3678
3716
  */
3679
3717
  type IcbuTrade = IcbuTradeOrderNotify;
3680
3718
  /**
@@ -3703,6 +3741,10 @@ declare namespace IncomingMessage {
3703
3741
  * - {@link IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步}
3704
3742
  */
3705
3743
  type IdleConsignmentii = IdleConsignmentiiOrderSyn;
3744
+ /**
3745
+ * - {@link IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息}
3746
+ */
3747
+ type IdleCro = IdleCroPunishMsg;
3706
3748
  /**
3707
3749
  * - {@link IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知}
3708
3750
  * - {@link IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知}
@@ -3753,6 +3795,16 @@ declare namespace IncomingMessage {
3753
3795
  * - {@link JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更}
3754
3796
  */
3755
3797
  type JymOrder = JymOrderBoosterStatusChange;
3798
+ /**
3799
+ * - {@link LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步}
3800
+ */
3801
+ type LarkTrade = LarkTradePosTradeDataTransmit;
3802
+ /**
3803
+ * - {@link LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息}
3804
+ * - {@link LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息}
3805
+ */
3806
+ type LianfanHuiwa = LianfanHuiwaModelStateUpdate
3807
+ | LianfanHuiwaTaskStateUpdate;
3756
3808
  /**
3757
3809
  * - {@link LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息}
3758
3810
  * - {@link LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建}
@@ -4317,10 +4369,12 @@ declare namespace IncomingMessage {
4317
4369
  * - {@link TaobaoOfnCreditPayStatusChange 淘宝交易 > 信用代扣状态变更同步}
4318
4370
  * - {@link TaobaoOfnNewOrderEventSync 淘宝交易 > 以旧换新新机单事件同步}
4319
4371
  * - {@link TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步}
4372
+ * - {@link TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息}
4320
4373
  */
4321
4374
  type TaobaoOfn = TaobaoOfnCreditPayStatusChange
4322
4375
  | TaobaoOfnNewOrderEventSync
4323
- | TaobaoOfnOrderStatusSync;
4376
+ | TaobaoOfnOrderStatusSync
4377
+ | TaobaoOfnRateSync;
4324
4378
  /**
4325
4379
  * - {@link TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步}
4326
4380
  */
@@ -4831,6 +4885,10 @@ declare namespace IncomingMessage {
4831
4885
  | TaobaoWtOpenTradePreauthorizMsg
4832
4886
  | TaobaoWtOpenTradeTaskMsg
4833
4887
  | TaobaoWtVerifyInform;
4888
+ /**
4889
+ * - {@link TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息}
4890
+ */
4891
+ type TaobaoXhotel = TaobaoXhotelDistributionStdInfoChange;
4834
4892
  /**
4835
4893
  * - {@link TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息}
4836
4894
  * - {@link TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付}
@@ -4873,6 +4931,10 @@ declare namespace IncomingMessage {
4873
4931
  * - {@link TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息}
4874
4932
  */
4875
4933
  type TaobaoYichao = TaobaoYichaoWarrantyCodeStatusUpdate;
4934
+ /**
4935
+ * - {@link TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息}
4936
+ */
4937
+ type TaobaoZk = TaobaoZkIdentifyCreate;
4876
4938
  /**
4877
4939
  * - {@link TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步}
4878
4940
  */
@@ -4892,13 +4954,15 @@ declare namespace IncomingMessage {
4892
4954
  | TmallAutoTradeModify
4893
4955
  | TmallAutoTwoWheelsReceiptCreate;
4894
4956
  /**
4957
+ * - {@link TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知}
4895
4958
  * - {@link TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放}
4896
4959
  * - {@link TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖}
4897
4960
  * - {@link TmallCarContractSign 天猫汽车 > 合同签署消息}
4898
4961
  * - {@link TmallCarFinanceMsg 天猫汽车 > 汽车金融消息}
4899
4962
  * - {@link TmallCarTelCoupon 天猫汽车 > 天猫汽车特惠充}
4900
4963
  */
4901
- type TmallCar = TmallCarAliapayTelRedPacket
4964
+ type TmallCar = TmallCarAbnormalSettleSeller
4965
+ | TmallCarAliapayTelRedPacket
4902
4966
  | TmallCarAlipayEvent
4903
4967
  | TmallCarContractSign
4904
4968
  | TmallCarFinanceMsg
@@ -4924,6 +4988,7 @@ declare namespace IncomingMessage {
4924
4988
  * - {@link TmallFuwuElectricWarrantyCodeStatusUpdate 天猫服务 > 天猫服务消电保修码状态变更}
4925
4989
  * - {@link TmallFuwuHomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更}
4926
4990
  * - {@link TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息}
4991
+ * - {@link TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新}
4927
4992
  * - {@link TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息}
4928
4993
  * - {@link TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息}
4929
4994
  * - {@link TmallFuwuServiceMonitorMessage 天猫服务 > 服务预警消息}
@@ -4941,6 +5006,7 @@ declare namespace IncomingMessage {
4941
5006
  | TmallFuwuElectricWarrantyCodeStatusUpdate
4942
5007
  | TmallFuwuHomeDecorationSupplyRuleUpdate
4943
5008
  | TmallFuwuLogisticsInfoMessage
5009
+ | TmallFuwuNewAnomalyRecourseStatusUpdate
4944
5010
  | TmallFuwuRateMessageTP
4945
5011
  | TmallFuwuServiceItemUpdate
4946
5012
  | TmallFuwuServiceMonitorMessage
@@ -5080,7 +5146,7 @@ declare namespace IncomingMessage {
5080
5146
  */
5081
5147
  type TmallScm = TmallScmSendTmcsDistributeSettleFee;
5082
5148
  /**
5083
- * - {@link TmallServiceCycleBillInvoice 天猫 > 服务结算账期账单发票消息}
5149
+ * - {@link TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息}
5084
5150
  */
5085
5151
  type TmallService = TmallServiceCycleBillInvoice;
5086
5152
  /**
@@ -5198,15 +5264,21 @@ declare namespace IncomingMessage {
5198
5264
  */
5199
5265
  type XianyuCar = XianyuCarOrderStatusSync;
5200
5266
  /**
5267
+ * - {@link XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步}
5201
5268
  * - {@link XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知}
5202
5269
  * - {@link XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步}
5203
5270
  */
5204
- type XianyuCtox = XianyuCtoxPayDkChange
5271
+ type XianyuCtox = XianyuCtoxCommissionStateSyn
5272
+ | XianyuCtoxPayDkChange
5205
5273
  | XianyuCtoxRateStateSyn;
5206
5274
  /**
5207
5275
  * - {@link XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步}
5208
5276
  */
5209
5277
  type XianyuEnvironment = XianyuEnvironmentEventSyn;
5278
+ /**
5279
+ * - {@link XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更}
5280
+ */
5281
+ type XianyuFishmarket = XianyuFishmarketItemSyn;
5210
5282
  /**
5211
5283
  * - {@link XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒}
5212
5284
  */
@@ -5311,6 +5383,7 @@ declare namespace IncomingMessage {
5311
5383
  * - {@link AlibabaNazca}
5312
5384
  * - {@link AlibabaNewretail}
5313
5385
  * - {@link AlibabaNlife}
5386
+ * - {@link AlibabaOkki}
5314
5387
  * - {@link AlibabaPaimai}
5315
5388
  * - {@link AlibabaPur}
5316
5389
  * - {@link AlibabaServiceplatform}
@@ -5376,6 +5449,7 @@ declare namespace IncomingMessage {
5376
5449
  | AlibabaNazca
5377
5450
  | AlibabaNewretail
5378
5451
  | AlibabaNlife
5452
+ | AlibabaOkki
5379
5453
  | AlibabaPaimai
5380
5454
  | AlibabaPur
5381
5455
  | AlibabaServiceplatform
@@ -5639,6 +5713,7 @@ declare namespace IncomingMessage {
5639
5713
  * - {@link IdleAutotrade}
5640
5714
  * - {@link IdleConsignment}
5641
5715
  * - {@link IdleConsignmentii}
5716
+ * - {@link IdleCro}
5642
5717
  * - {@link IdleCycleshop}
5643
5718
  * - {@link IdleRecycle}
5644
5719
  * - {@link IdleTopisv}
@@ -5650,6 +5725,7 @@ declare namespace IncomingMessage {
5650
5725
  | IdleAutotrade
5651
5726
  | IdleConsignment
5652
5727
  | IdleConsignmentii
5728
+ | IdleCro
5653
5729
  | IdleCycleshop
5654
5730
  | IdleRecycle
5655
5731
  | IdleTopisv
@@ -5669,6 +5745,14 @@ declare namespace IncomingMessage {
5669
5745
  * - {@link JymOrder}
5670
5746
  */
5671
5747
  type Jym = JymOrder;
5748
+ /**
5749
+ * - {@link LarkTrade}
5750
+ */
5751
+ type Lark = LarkTrade;
5752
+ /**
5753
+ * - {@link LianfanHuiwa}
5754
+ */
5755
+ type Lianfan = LianfanHuiwa;
5672
5756
  /**
5673
5757
  * - {@link LstSupplier}
5674
5758
  */
@@ -5782,10 +5866,12 @@ declare namespace IncomingMessage {
5782
5866
  * - {@link TaobaoWms}
5783
5867
  * - {@link TaobaoWorktable}
5784
5868
  * - {@link TaobaoWt}
5869
+ * - {@link TaobaoXhotel}
5785
5870
  * - {@link TaobaoXianyu}
5786
5871
  * - {@link TaobaoXiaoqu}
5787
5872
  * - {@link TaobaoXiaowei}
5788
5873
  * - {@link TaobaoYichao}
5874
+ * - {@link TaobaoZk}
5789
5875
  */
5790
5876
  type Taobao = TaobaoAg
5791
5877
  | TaobaoAis
@@ -5891,10 +5977,12 @@ declare namespace IncomingMessage {
5891
5977
  | TaobaoWms
5892
5978
  | TaobaoWorktable
5893
5979
  | TaobaoWt
5980
+ | TaobaoXhotel
5894
5981
  | TaobaoXianyu
5895
5982
  | TaobaoXiaoqu
5896
5983
  | TaobaoXiaowei
5897
- | TaobaoYichao;
5984
+ | TaobaoYichao
5985
+ | TaobaoZk;
5898
5986
  /**
5899
5987
  * - {@link TaotaoFilm}
5900
5988
  */
@@ -5995,6 +6083,7 @@ declare namespace IncomingMessage {
5995
6083
  * - {@link XianyuCar}
5996
6084
  * - {@link XianyuCtox}
5997
6085
  * - {@link XianyuEnvironment}
6086
+ * - {@link XianyuFishmarket}
5998
6087
  * - {@link XianyuIsv}
5999
6088
  * - {@link XianyuMarketrecycle}
6000
6089
  * - {@link XianyuRecycle}
@@ -6007,6 +6096,7 @@ declare namespace IncomingMessage {
6007
6096
  | XianyuCar
6008
6097
  | XianyuCtox
6009
6098
  | XianyuEnvironment
6099
+ | XianyuFishmarket
6010
6100
  | XianyuIsv
6011
6101
  | XianyuMarketrecycle
6012
6102
  | XianyuRecycle
package/types/taobao.d.ts CHANGED
@@ -3580,6 +3580,16 @@ declare namespace Taobao.Ofn {
3580
3580
  /** 回收商 appKey */
3581
3581
  supplier_id?: string;
3582
3582
  }
3583
+
3584
+ /** {@link https://open.taobao.com/tmc.htm?docId=2572&docType=9 以旧换新回收单评价消息} */
3585
+ interface RateSync {
3586
+ /** 回收单 ID */
3587
+ biz_order_id: string;
3588
+ /** 评价内容 */
3589
+ rate_content: string;
3590
+ /** 1是好评,0 是差评 */
3591
+ rate_grade: string;
3592
+ }
3583
3593
  }
3584
3594
 
3585
3595
  /** 导购平台 */
@@ -5849,6 +5859,8 @@ declare namespace Taobao.Trade {
5849
5859
 
5850
5860
  /** {@link https://open.taobao.com/tmc.htm?docId=113&docType=9 交易备注修改消息} */
5851
5861
  interface TradeMemoModified {
5862
+ /** buyer:更新买家备注,seller:更新卖家备注,other:其他 */
5863
+ action_type: string;
5852
5864
  /** 买家昵称 */
5853
5865
  buyer_nick: string;
5854
5866
  /** 由buyer_id加密, 可对外开放, 用来替换buyer_nick作为唯一标识 */
@@ -6627,6 +6639,8 @@ declare namespace Taobao.Wt {
6627
6639
  phone?: string;
6628
6640
  /** 阿里侧虚拟产品Id */
6629
6641
  product_id?: string;
6642
+ /** 办理结果描述 */
6643
+ result_desc?: string;
6630
6644
  /** 订单状态: 0-代付款 1-支付成功 2-合约办理成功 3-合约办理失败 */
6631
6645
  status: string;
6632
6646
  /** 淘宝id */
@@ -6688,6 +6702,17 @@ declare namespace Taobao.Wt {
6688
6702
  }
6689
6703
  }
6690
6704
 
6705
+ /** 酒店标准库基础信息变更消息 */
6706
+ declare namespace Taobao.Xhotel {
6707
+ /** {@link https://open.taobao.com/tmc.htm?docId=2569&docType=9 通用分销 标准信息变更消息} */
6708
+ interface DistributionStdInfoChange {
6709
+ /** 消息id */
6710
+ msg_id: string;
6711
+ /** 产生变更的标准酒店id */
6712
+ shids: string;
6713
+ }
6714
+ }
6715
+
6691
6716
  /** 闲鱼 */
6692
6717
  declare namespace Taobao.Xianyu {
6693
6718
  /** {@link https://open.taobao.com/tmc.htm?docId=1633&docType=9 闲鱼房源预约消息} */
@@ -6947,3 +6972,16 @@ declare namespace Taobao.Yichao {
6947
6972
  status: string;
6948
6973
  }
6949
6974
  }
6975
+
6976
+ /** 淘宝真酷 */
6977
+ declare namespace Taobao.Zk {
6978
+ /** {@link https://open.taobao.com/tmc.htm?docId=2571&docType=9 淘宝真酷需求鉴别单创建消息} */
6979
+ interface IdentifyCreate {
6980
+ /** 鉴定机构id */
6981
+ identify_institution_id: string;
6982
+ /** 货品鉴别单id,多个以逗号分隔 */
6983
+ identify_order_id_list: string;
6984
+ /** 需求鉴别单id */
6985
+ identify_request_id: string;
6986
+ }
6987
+ }
package/types/tmall.d.ts CHANGED
@@ -48,6 +48,20 @@ declare namespace Tmall.Auto {
48
48
 
49
49
  /** 天猫汽车 */
50
50
  declare namespace Tmall.Car {
51
+ /** {@link https://open.taobao.com/tmc.htm?docId=2562&docType=9 天猫汽车安装服务-异常商家上下线通知} */
52
+ interface AbnormalSettleSeller {
53
+ /** 业务身份 */
54
+ biz_code: string;
55
+ /** 业务id */
56
+ biz_id: string;
57
+ /** 下线原因 */
58
+ offline_reason: string;
59
+ /** 商家昵称 */
60
+ process_seller_nick: string;
61
+ /** 处理状态:0:下线;1:上线 */
62
+ process_status: string;
63
+ }
64
+
51
65
  /** {@link https://open.taobao.com/tmc.htm?docId=2457&docType=9 天猫汽车-支付宝手机充值红包发放} */
52
66
  interface AliapayTelRedPacket {
53
67
  /** 业务id */
@@ -227,6 +241,16 @@ declare namespace Tmall.Fuwu {
227
241
  stage_type: string;
228
242
  }
229
243
 
244
+ /** {@link https://open.taobao.com/tmc.htm?docId=2560&docType=9 服务管控消息更新} */
245
+ interface NewAnomalyRecourseStatusUpdate {
246
+ /** 一键求助单id */
247
+ anomaly_recourse_id: number;
248
+ /** 状态 1:求助中;2完结(已核销) */
249
+ status: number;
250
+ /** 催促次数,如:3表示催促3次 */
251
+ urges_number: number;
252
+ }
253
+
230
254
  /** {@link https://open.taobao.com/tmc.htm?docId=2409&docType=9 消费者评价成功top消息} */
231
255
  interface RateMessageTP {
232
256
  /** 单据类型 */
@@ -1041,7 +1065,7 @@ declare namespace Tmall.Scm {
1041
1065
  }
1042
1066
  }
1043
1067
 
1044
- /** 天猫 */
1068
+ /** 天猫服务 */
1045
1069
  declare namespace Tmall.Service {
1046
1070
  /** {@link https://open.taobao.com/tmc.htm?docId=2542&docType=9 服务结算账期账单发票消息} */
1047
1071
  interface CycleBillInvoice {
@@ -1050,15 +1074,17 @@ declare namespace Tmall.Service {
1050
1074
  /** 账期 */
1051
1075
  bill_cycle: string;
1052
1076
  /** 账单ID */
1053
- bill_id: string;
1077
+ bill_id: number;
1054
1078
  /** 不含税金额 元 */
1055
1079
  excluding_tax_amount: string;
1056
1080
  /** 发票错误信息 */
1057
1081
  invoice_error_info?: string;
1058
- /** 发票状态 */
1082
+ /** 发票状态 NOT_EXISTS 未上传; NOT_PARSED 待解析; PARSING 解析中; PARSE_FAILED 解析失败 (需重新上传); PARSE_SUCCESS 解析成功; PARSE_INFO_NOT_MATCH 发票信息不匹配(需重新上传); CHECKING 发票验真中; CHECK_FAILED 发票验真不通过(需重新上传); CHECK_PASS 发票验真通过; ATTACHING 发票匹配中; ATTACHED 发票匹配完成; ATTACHE_FAILED 发票匹配失败(需人工处理); ACCEPTED 发票接收完成; */
1059
1083
  invoice_status?: string;
1060
1084
  /** 税额 元 */
1061
1085
  tax_amount: string;
1086
+ /** 税率 */
1087
+ tax_rate: string;
1062
1088
  }
1063
1089
  }
1064
1090
 
package/types/xianyu.d.ts CHANGED
@@ -45,6 +45,18 @@ declare namespace Xianyu.Car {
45
45
 
46
46
  /** 闲鱼 */
47
47
  declare namespace Xianyu.Ctox {
48
+ /** {@link https://open.taobao.com/tmc.htm?docId=2564&docType=9 闲鱼C2X抽佣退佣消息同步} */
49
+ interface CommissionStateSyn {
50
+ /** 订单id */
51
+ biz_order_id: string;
52
+ /** 11-抽佣帮卖卖家服务费;12-抽佣:帮卖买家服务费;21-退佣:帮卖售后 */
53
+ biz_type: string;
54
+ /** 佣金,单位分 */
55
+ fee_commission: string;
56
+ /** 1-正向抽佣;2-逆向退佣 */
57
+ fee_type: string;
58
+ }
59
+
48
60
  /** {@link https://open.taobao.com/tmc.htm?docId=2535&docType=9 c2x代扣协议变更通知} */
49
61
  interface PayDkChange {
50
62
  /** 主订单(保卖订单等) */
@@ -87,6 +99,21 @@ declare namespace Xianyu.Environment {
87
99
  }
88
100
  }
89
101
 
102
+ /** 闲鱼 */
103
+ declare namespace Xianyu.Fishmarket {
104
+ /** {@link https://open.taobao.com/tmc.htm?docId=2574&docType=9 鱼市商品状态变更} */
105
+ interface ItemSyn {
106
+ /** 卖家单id */
107
+ biz_order_id: string;
108
+ /** true-表示有出价 */
109
+ is_bid: string;
110
+ /** 商品ID */
111
+ item_id: string;
112
+ /** 场次 */
113
+ schedule: string;
114
+ }
115
+ }
116
+
90
117
  /** 闲鱼 */
91
118
  declare namespace Xianyu.Isv {
92
119
  /** {@link https://open.taobao.com/tmc.htm?docId=2219&docType=9 闲鱼服务商订单提醒} */