tmc.js 0.3.41 → 0.3.43
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 +4 -3
- package/package.json +1 -1
- package/types/alibaba.d.ts +2 -0
- package/types/fliggy.d.ts +14 -0
- package/types/icbu.d.ts +15 -1
- package/types/idle.d.ts +42 -0
- package/types/index.d.ts +62 -2
- package/types/message.in.d.ts +66 -6
- package/types/taobao.d.ts +68 -0
- package/types/xianyu.d.ts +20 -7
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>共计
|
|
137
|
+
<details><summary>共计 85+ 类别,509+ 消息数</summary>
|
|
138
138
|
|
|
139
139
|
| 类别 | 消息数 |
|
|
140
140
|
| --- | --- |
|
|
@@ -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
|
-
| 闲鱼 |
|
|
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
|
-
| 酒店标准库基础信息变更消息 |
|
|
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
package/types/alibaba.d.ts
CHANGED
|
@@ -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
|
}
|
package/types/fliggy.d.ts
CHANGED
|
@@ -161,6 +161,20 @@ declare namespace Fliggy.Ticket {
|
|
|
161
161
|
|
|
162
162
|
/** 飞猪 */
|
|
163
163
|
declare namespace Fliggy.Visa {
|
|
164
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2582&docType=9 签证申请人状态变更消息} */
|
|
165
|
+
interface ApplicantStatusChanged {
|
|
166
|
+
/** 申请人id */
|
|
167
|
+
apply_id: string;
|
|
168
|
+
/** 办理模式 */
|
|
169
|
+
apply_mode: number;
|
|
170
|
+
/** 申请人状态 */
|
|
171
|
+
apply_status: number;
|
|
172
|
+
/** 订单id */
|
|
173
|
+
order_id: string;
|
|
174
|
+
/** 办签进度流程类型 */
|
|
175
|
+
process_type: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
164
178
|
/** {@link https://open.taobao.com/tmc.htm?docId=1867&docType=9 签证状态变化消息} */
|
|
165
179
|
interface StatusChange {
|
|
166
180
|
/** 申请人id */
|
package/types/icbu.d.ts
CHANGED
|
@@ -84,6 +84,20 @@ declare namespace Icbu.Chat {
|
|
|
84
84
|
|
|
85
85
|
/** ICBU */
|
|
86
86
|
declare namespace Icbu.Crm {
|
|
87
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2576&docType=9 ICBU CRM小满订单状态变更通知(GGS港台)} */
|
|
88
|
+
interface GgsXMOrderChange {
|
|
89
|
+
/** 2支付订单 3取消订单 */
|
|
90
|
+
action: string;
|
|
91
|
+
/** 阿里gid */
|
|
92
|
+
ali_gid: string;
|
|
93
|
+
/** 阿里订单号 */
|
|
94
|
+
ali_order_no: string;
|
|
95
|
+
/** 付款时间 */
|
|
96
|
+
ali_paid_time: string;
|
|
97
|
+
/** 付款金额 */
|
|
98
|
+
amout: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
87
101
|
/** {@link https://open.taobao.com/tmc.htm?docId=1797&docType=9 ICBU CRM小满订单状态变更通知} */
|
|
88
102
|
interface XMOrderChange {
|
|
89
103
|
/** 2支付订单 3取消订单 */
|
|
@@ -131,7 +145,7 @@ declare namespace Icbu.Risk {
|
|
|
131
145
|
}
|
|
132
146
|
}
|
|
133
147
|
|
|
134
|
-
/** ICBU */
|
|
148
|
+
/** ICBU-交易 */
|
|
135
149
|
declare namespace Icbu.Trade {
|
|
136
150
|
/** {@link https://open.taobao.com/tmc.htm?docId=1754&docType=9 国际站订单变更消息} */
|
|
137
151
|
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 闲鱼循环商店-货品变更通知} */
|
|
@@ -140,6 +163,25 @@ declare namespace Idle.Cycleshop {
|
|
|
140
163
|
}
|
|
141
164
|
}
|
|
142
165
|
|
|
166
|
+
/** 闲鱼 */
|
|
167
|
+
declare namespace Idle.Newoutlets {
|
|
168
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2584&docType=9 闲鱼用户身份变更消息} */
|
|
169
|
+
interface UserTagNotice {
|
|
170
|
+
/** 商家所在的业务类型("new_outlets"-新奥莱,"flash_sale"-特卖) */
|
|
171
|
+
biz_line: string;
|
|
172
|
+
/** 业务所涉及的商家鱼小铺能力("nfr_policy"-描述不符包邮退,"sdr_policy"-七天无理由退款) */
|
|
173
|
+
idle_shop_ability: string;
|
|
174
|
+
/** 商家身份变化类型("user_entrance_pass"-商家入驻通过,"user_entrance_clear"-商家清退) */
|
|
175
|
+
operation_type: string;
|
|
176
|
+
/** 业务所涉及的商品类型,通过","分隔。例如(新奥莱):"15,16,26" */
|
|
177
|
+
sp_item_type: string;
|
|
178
|
+
/** 商家ID */
|
|
179
|
+
user_id: number;
|
|
180
|
+
/** 商家名称 */
|
|
181
|
+
user_name: string;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
143
185
|
/** 闲鱼回收商消息 */
|
|
144
186
|
declare namespace Idle.Recycle {
|
|
145
187
|
/** {@link https://open.taobao.com/tmc.htm?docId=2385&docType=9 闲鱼回收业务订单消息} */
|
package/types/index.d.ts
CHANGED
|
@@ -1064,6 +1064,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1064
1064
|
fliggy_ticket_OrderStatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyTicketOrderStatusChange) => void): TaoMessageConsumer;
|
|
1065
1065
|
/** {@link IncomingMessage.FliggyTicketVerifyNotify 航旅度假交易 > 域外分销订单码核销消息} */
|
|
1066
1066
|
fliggy_ticket_VerifyNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyTicketVerifyNotify) => void): TaoMessageConsumer;
|
|
1067
|
+
/** {@link IncomingMessage.FliggyVisaApplicantStatusChanged 飞猪 > 签证申请人状态变更消息} */
|
|
1068
|
+
fliggy_visa_ApplicantStatusChanged(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaApplicantStatusChanged) => void): TaoMessageConsumer;
|
|
1067
1069
|
/** {@link IncomingMessage.FliggyVisaStatusChange 飞猪 > 签证状态变化消息} */
|
|
1068
1070
|
fliggy_visa_StatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaStatusChange) => void): TaoMessageConsumer;
|
|
1069
1071
|
/** {@link IncomingMessage.FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
@@ -1106,13 +1108,15 @@ declare interface TaoTopicsDescriptor {
|
|
|
1106
1108
|
icbu_alicrm_OfflineDataChanged(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuAlicrmOfflineDataChanged) => void): TaoMessageConsumer;
|
|
1107
1109
|
/** {@link IncomingMessage.IcbuChatMessageTipForXiaoMan ICBU > ICBU沟通消息推送给小满提醒} */
|
|
1108
1110
|
icbu_chat_MessageTipForXiaoMan(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuChatMessageTipForXiaoMan) => void): TaoMessageConsumer;
|
|
1111
|
+
/** {@link IncomingMessage.IcbuCrmGgsXMOrderChange ICBU > ICBU CRM小满订单状态变更通知(GGS港台)} */
|
|
1112
|
+
icbu_crm_GgsXMOrderChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuCrmGgsXMOrderChange) => void): TaoMessageConsumer;
|
|
1109
1113
|
/** {@link IncomingMessage.IcbuCrmXMOrderChange ICBU > ICBU CRM小满订单状态变更通知} */
|
|
1110
1114
|
icbu_crm_XMOrderChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuCrmXMOrderChange) => void): TaoMessageConsumer;
|
|
1111
1115
|
/** {@link IncomingMessage.IcbuMemberXmUnBind ICBU > icbu国际站账号解绑小满账号} */
|
|
1112
1116
|
icbu_member_XmUnBind(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuMemberXmUnBind) => void): TaoMessageConsumer;
|
|
1113
1117
|
/** {@link IncomingMessage.IcbuRiskZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
|
|
1114
1118
|
icbu_risk_ZeroersMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuRiskZeroersMessage) => void): TaoMessageConsumer;
|
|
1115
|
-
/** {@link IncomingMessage.IcbuTradeOrderNotify ICBU > 国际站订单变更消息} */
|
|
1119
|
+
/** {@link IncomingMessage.IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息} */
|
|
1116
1120
|
icbu_trade_OrderNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.IcbuTradeOrderNotify) => void): TaoMessageConsumer;
|
|
1117
1121
|
/** {@link IncomingMessage.IdleAgreementStatusChange 闲鱼 > 闲鱼代扣消息通知} */
|
|
1118
1122
|
idle_agreement_StatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreementStatusChange) => void): TaoMessageConsumer;
|
|
@@ -1130,10 +1134,14 @@ declare interface TaoTopicsDescriptor {
|
|
|
1130
1134
|
idle_consignment_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
|
|
1131
1135
|
/** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
|
|
1132
1136
|
idle_consignmentii_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentiiOrderSyn) => void): TaoMessageConsumer;
|
|
1137
|
+
/** {@link IncomingMessage.IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息} */
|
|
1138
|
+
idle_cro_PunishMsg(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCroPunishMsg) => void): TaoMessageConsumer;
|
|
1133
1139
|
/** {@link IncomingMessage.IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
|
|
1134
1140
|
idle_cycleshop_GoodsNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
|
|
1135
1141
|
/** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
1136
1142
|
idle_cycleshop_SaleOrderNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopSaleOrderNotice) => void): TaoMessageConsumer;
|
|
1143
|
+
/** {@link IncomingMessage.IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
1144
|
+
idle_newoutlets_UserTagNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutletsUserTagNotice) => void): TaoMessageConsumer;
|
|
1137
1145
|
/** {@link IncomingMessage.IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
1138
1146
|
idle_recycle_OrderStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleOrderStateSyn) => void): TaoMessageConsumer;
|
|
1139
1147
|
/** {@link IncomingMessage.IdleRecycleOrderSyn 闲鱼回收商消息 > 回收订单交易消息} */
|
|
@@ -1304,6 +1312,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1304
1312
|
taobao_dispute_ExchangeModified(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeModified) => void): TaoMessageConsumer;
|
|
1305
1313
|
/** {@link IncomingMessage.TaobaoDisputeExchangeSellerConfirmed 淘宝 > 卖家确认收货} */
|
|
1306
1314
|
taobao_dispute_ExchangeSellerConfirmed(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSellerConfirmed) => void): TaoMessageConsumer;
|
|
1315
|
+
/** {@link IncomingMessage.TaobaoDisputeExchangeSellerGoodsConsigned 淘宝 > 换货-卖家寄出商品} */
|
|
1316
|
+
taobao_dispute_ExchangeSellerGoodsConsigned(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSellerGoodsConsigned) => void): TaoMessageConsumer;
|
|
1307
1317
|
/** {@link IncomingMessage.TaobaoDisputeExchangeSuccess 淘宝 > 买家确认收货,换货成功} */
|
|
1308
1318
|
taobao_dispute_ExchangeSuccess(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSuccess) => void): TaoMessageConsumer;
|
|
1309
1319
|
/** {@link IncomingMessage.TaobaoDisputeExchangeTurnToRefund 淘宝 > 卖家换货转退款} */
|
|
@@ -1620,6 +1630,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1620
1630
|
taobao_ofn_NewOrderEventSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnNewOrderEventSync) => void): TaoMessageConsumer;
|
|
1621
1631
|
/** {@link IncomingMessage.TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
|
|
1622
1632
|
taobao_ofn_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnOrderStatusSync) => void): TaoMessageConsumer;
|
|
1633
|
+
/** {@link IncomingMessage.TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息} */
|
|
1634
|
+
taobao_ofn_RateSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnRateSync) => void): TaoMessageConsumer;
|
|
1623
1635
|
/** {@link IncomingMessage.TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步} */
|
|
1624
1636
|
taobao_openaccount_DataSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpenaccountDataSync) => void): TaoMessageConsumer;
|
|
1625
1637
|
/** {@link IncomingMessage.TaobaoOpencrmAuthTouchMessage 客户运营平台API > 营销短信授权消息} */
|
|
@@ -2034,6 +2046,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2034
2046
|
taobao_wt_OpenTradeTaskMsg(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtOpenTradeTaskMsg) => void): TaoMessageConsumer;
|
|
2035
2047
|
/** {@link IncomingMessage.TaobaoWtVerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
|
|
2036
2048
|
taobao_wt_VerifyInform(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtVerifyInform) => void): TaoMessageConsumer;
|
|
2049
|
+
/** {@link IncomingMessage.TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
|
|
2050
|
+
taobao_xhotel_DistributionStdInfoChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotelDistributionStdInfoChange) => void): TaoMessageConsumer;
|
|
2037
2051
|
/** {@link IncomingMessage.TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息} */
|
|
2038
2052
|
taobao_xianyu_HouseBooking(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyuHouseBooking) => void): TaoMessageConsumer;
|
|
2039
2053
|
/** {@link IncomingMessage.TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付} */
|
|
@@ -2068,6 +2082,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
2068
2082
|
taobao_xiaowei_Test(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
|
|
2069
2083
|
/** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
2070
2084
|
taobao_yichao_WarrantyCodeStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
2085
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2086
|
+
taobao_zk_FirstLogisticsNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
2087
|
+
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2088
|
+
taobao_zk_IdentifyCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
2071
2089
|
/** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
2072
2090
|
taotao_film_ThirdPartyRefundPush(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
|
|
2073
2091
|
/** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -2318,6 +2336,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2318
2336
|
xianyu_ctox_RateStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxRateStateSyn) => void): TaoMessageConsumer;
|
|
2319
2337
|
/** {@link IncomingMessage.XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
|
|
2320
2338
|
xianyu_environment_EventSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
|
|
2339
|
+
/** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
2340
|
+
xianyu_fishmarket_ItemSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
|
|
2321
2341
|
/** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
2322
2342
|
xianyu_isv_OrderRemind(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
|
|
2323
2343
|
/** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -2682,8 +2702,12 @@ declare interface TaoTopicsDescriptor {
|
|
|
2682
2702
|
idle_consignment(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
|
|
2683
2703
|
/** {@link IncomingMessage.IdleConsignmentii} */
|
|
2684
2704
|
idle_consignmentii(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentii) => void): TaoMessageConsumer;
|
|
2705
|
+
/** {@link IncomingMessage.IdleCro} */
|
|
2706
|
+
idle_cro(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
|
|
2685
2707
|
/** {@link IncomingMessage.IdleCycleshop} */
|
|
2686
2708
|
idle_cycleshop(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
|
|
2709
|
+
/** {@link IncomingMessage.IdleNewoutlets} */
|
|
2710
|
+
idle_newoutlets(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutlets) => void): TaoMessageConsumer;
|
|
2687
2711
|
/** {@link IncomingMessage.IdleRecycle} */
|
|
2688
2712
|
idle_recycle(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycle) => void): TaoMessageConsumer;
|
|
2689
2713
|
/** {@link IncomingMessage.IdleTopisv} */
|
|
@@ -2916,6 +2940,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2916
2940
|
taobao_worktable(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWorktable) => void): TaoMessageConsumer;
|
|
2917
2941
|
/** {@link IncomingMessage.TaobaoWt} */
|
|
2918
2942
|
taobao_wt(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWt) => void): TaoMessageConsumer;
|
|
2943
|
+
/** {@link IncomingMessage.TaobaoXhotel} */
|
|
2944
|
+
taobao_xhotel(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotel) => void): TaoMessageConsumer;
|
|
2919
2945
|
/** {@link IncomingMessage.TaobaoXianyu} */
|
|
2920
2946
|
taobao_xianyu(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyu) => void): TaoMessageConsumer;
|
|
2921
2947
|
/** {@link IncomingMessage.TaobaoXiaoqu} */
|
|
@@ -2924,6 +2950,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2924
2950
|
taobao_xiaowei(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaowei) => void): TaoMessageConsumer;
|
|
2925
2951
|
/** {@link IncomingMessage.TaobaoYichao} */
|
|
2926
2952
|
taobao_yichao(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichao) => void): TaoMessageConsumer;
|
|
2953
|
+
/** {@link IncomingMessage.TaobaoZk} */
|
|
2954
|
+
taobao_zk(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZk) => void): TaoMessageConsumer;
|
|
2927
2955
|
/** {@link IncomingMessage.TaotaoFilm} */
|
|
2928
2956
|
taotao_film(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilm) => void): TaoMessageConsumer;
|
|
2929
2957
|
/** {@link IncomingMessage.TmallAliauto} */
|
|
@@ -3014,6 +3042,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3014
3042
|
xianyu_ctox(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
|
|
3015
3043
|
/** {@link IncomingMessage.XianyuEnvironment} */
|
|
3016
3044
|
xianyu_environment(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
|
|
3045
|
+
/** {@link IncomingMessage.XianyuFishmarket} */
|
|
3046
|
+
xianyu_fishmarket(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
|
|
3017
3047
|
/** {@link IncomingMessage.XianyuIsv} */
|
|
3018
3048
|
xianyu_isv(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
3019
3049
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
|
@@ -4129,6 +4159,8 @@ declare interface TaoEventsListener {
|
|
|
4129
4159
|
on(topic: 'fliggy_ticket_OrderStatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyTicketOrderStatusChange) => void): TaoMessageConsumer;
|
|
4130
4160
|
/** {@link IncomingMessage.FliggyTicketVerifyNotify 航旅度假交易 > 域外分销订单码核销消息} */
|
|
4131
4161
|
on(topic: 'fliggy_ticket_VerifyNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyTicketVerifyNotify) => void): TaoMessageConsumer;
|
|
4162
|
+
/** {@link IncomingMessage.FliggyVisaApplicantStatusChanged 飞猪 > 签证申请人状态变更消息} */
|
|
4163
|
+
on(topic: 'fliggy_visa_ApplicantStatusChanged', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaApplicantStatusChanged) => void): TaoMessageConsumer;
|
|
4132
4164
|
/** {@link IncomingMessage.FliggyVisaStatusChange 飞猪 > 签证状态变化消息} */
|
|
4133
4165
|
on(topic: 'fliggy_visa_StatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaStatusChange) => void): TaoMessageConsumer;
|
|
4134
4166
|
/** {@link IncomingMessage.FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
@@ -4171,13 +4203,15 @@ declare interface TaoEventsListener {
|
|
|
4171
4203
|
on(topic: 'icbu_alicrm_OfflineDataChanged', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuAlicrmOfflineDataChanged) => void): TaoMessageConsumer;
|
|
4172
4204
|
/** {@link IncomingMessage.IcbuChatMessageTipForXiaoMan ICBU > ICBU沟通消息推送给小满提醒} */
|
|
4173
4205
|
on(topic: 'icbu_chat_MessageTipForXiaoMan', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuChatMessageTipForXiaoMan) => void): TaoMessageConsumer;
|
|
4206
|
+
/** {@link IncomingMessage.IcbuCrmGgsXMOrderChange ICBU > ICBU CRM小满订单状态变更通知(GGS港台)} */
|
|
4207
|
+
on(topic: 'icbu_crm_GgsXMOrderChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuCrmGgsXMOrderChange) => void): TaoMessageConsumer;
|
|
4174
4208
|
/** {@link IncomingMessage.IcbuCrmXMOrderChange ICBU > ICBU CRM小满订单状态变更通知} */
|
|
4175
4209
|
on(topic: 'icbu_crm_XMOrderChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuCrmXMOrderChange) => void): TaoMessageConsumer;
|
|
4176
4210
|
/** {@link IncomingMessage.IcbuMemberXmUnBind ICBU > icbu国际站账号解绑小满账号} */
|
|
4177
4211
|
on(topic: 'icbu_member_XmUnBind', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuMemberXmUnBind) => void): TaoMessageConsumer;
|
|
4178
4212
|
/** {@link IncomingMessage.IcbuRiskZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
|
|
4179
4213
|
on(topic: 'icbu_risk_ZeroersMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuRiskZeroersMessage) => void): TaoMessageConsumer;
|
|
4180
|
-
/** {@link IncomingMessage.IcbuTradeOrderNotify ICBU > 国际站订单变更消息} */
|
|
4214
|
+
/** {@link IncomingMessage.IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息} */
|
|
4181
4215
|
on(topic: 'icbu_trade_OrderNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.IcbuTradeOrderNotify) => void): TaoMessageConsumer;
|
|
4182
4216
|
/** {@link IncomingMessage.IdleAgreementStatusChange 闲鱼 > 闲鱼代扣消息通知} */
|
|
4183
4217
|
on(topic: 'idle_agreement_StatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreementStatusChange) => void): TaoMessageConsumer;
|
|
@@ -4195,10 +4229,14 @@ declare interface TaoEventsListener {
|
|
|
4195
4229
|
on(topic: 'idle_consignment_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
|
|
4196
4230
|
/** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
|
|
4197
4231
|
on(topic: 'idle_consignmentii_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentiiOrderSyn) => void): TaoMessageConsumer;
|
|
4232
|
+
/** {@link IncomingMessage.IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息} */
|
|
4233
|
+
on(topic: 'idle_cro_PunishMsg', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCroPunishMsg) => void): TaoMessageConsumer;
|
|
4198
4234
|
/** {@link IncomingMessage.IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
|
|
4199
4235
|
on(topic: 'idle_cycleshop_GoodsNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
|
|
4200
4236
|
/** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
4201
4237
|
on(topic: 'idle_cycleshop_SaleOrderNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopSaleOrderNotice) => void): TaoMessageConsumer;
|
|
4238
|
+
/** {@link IncomingMessage.IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
4239
|
+
on(topic: 'idle_newoutlets_UserTagNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutletsUserTagNotice) => void): TaoMessageConsumer;
|
|
4202
4240
|
/** {@link IncomingMessage.IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
4203
4241
|
on(topic: 'idle_recycle_OrderStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleOrderStateSyn) => void): TaoMessageConsumer;
|
|
4204
4242
|
/** {@link IncomingMessage.IdleRecycleOrderSyn 闲鱼回收商消息 > 回收订单交易消息} */
|
|
@@ -4369,6 +4407,8 @@ declare interface TaoEventsListener {
|
|
|
4369
4407
|
on(topic: 'taobao_dispute_ExchangeModified', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeModified) => void): TaoMessageConsumer;
|
|
4370
4408
|
/** {@link IncomingMessage.TaobaoDisputeExchangeSellerConfirmed 淘宝 > 卖家确认收货} */
|
|
4371
4409
|
on(topic: 'taobao_dispute_ExchangeSellerConfirmed', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSellerConfirmed) => void): TaoMessageConsumer;
|
|
4410
|
+
/** {@link IncomingMessage.TaobaoDisputeExchangeSellerGoodsConsigned 淘宝 > 换货-卖家寄出商品} */
|
|
4411
|
+
on(topic: 'taobao_dispute_ExchangeSellerGoodsConsigned', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSellerGoodsConsigned) => void): TaoMessageConsumer;
|
|
4372
4412
|
/** {@link IncomingMessage.TaobaoDisputeExchangeSuccess 淘宝 > 买家确认收货,换货成功} */
|
|
4373
4413
|
on(topic: 'taobao_dispute_ExchangeSuccess', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoDisputeExchangeSuccess) => void): TaoMessageConsumer;
|
|
4374
4414
|
/** {@link IncomingMessage.TaobaoDisputeExchangeTurnToRefund 淘宝 > 卖家换货转退款} */
|
|
@@ -4685,6 +4725,8 @@ declare interface TaoEventsListener {
|
|
|
4685
4725
|
on(topic: 'taobao_ofn_NewOrderEventSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnNewOrderEventSync) => void): TaoMessageConsumer;
|
|
4686
4726
|
/** {@link IncomingMessage.TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
|
|
4687
4727
|
on(topic: 'taobao_ofn_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnOrderStatusSync) => void): TaoMessageConsumer;
|
|
4728
|
+
/** {@link IncomingMessage.TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息} */
|
|
4729
|
+
on(topic: 'taobao_ofn_RateSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOfnRateSync) => void): TaoMessageConsumer;
|
|
4688
4730
|
/** {@link IncomingMessage.TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步} */
|
|
4689
4731
|
on(topic: 'taobao_openaccount_DataSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpenaccountDataSync) => void): TaoMessageConsumer;
|
|
4690
4732
|
/** {@link IncomingMessage.TaobaoOpencrmAuthTouchMessage 客户运营平台API > 营销短信授权消息} */
|
|
@@ -5099,6 +5141,8 @@ declare interface TaoEventsListener {
|
|
|
5099
5141
|
on(topic: 'taobao_wt_OpenTradeTaskMsg', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtOpenTradeTaskMsg) => void): TaoMessageConsumer;
|
|
5100
5142
|
/** {@link IncomingMessage.TaobaoWtVerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
|
|
5101
5143
|
on(topic: 'taobao_wt_VerifyInform', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWtVerifyInform) => void): TaoMessageConsumer;
|
|
5144
|
+
/** {@link IncomingMessage.TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
|
|
5145
|
+
on(topic: 'taobao_xhotel_DistributionStdInfoChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotelDistributionStdInfoChange) => void): TaoMessageConsumer;
|
|
5102
5146
|
/** {@link IncomingMessage.TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息} */
|
|
5103
5147
|
on(topic: 'taobao_xianyu_HouseBooking', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyuHouseBooking) => void): TaoMessageConsumer;
|
|
5104
5148
|
/** {@link IncomingMessage.TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付} */
|
|
@@ -5133,6 +5177,10 @@ declare interface TaoEventsListener {
|
|
|
5133
5177
|
on(topic: 'taobao_xiaowei_Test', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
|
|
5134
5178
|
/** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
5135
5179
|
on(topic: 'taobao_yichao_WarrantyCodeStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
5180
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
5181
|
+
on(topic: 'taobao_zk_FirstLogisticsNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
5182
|
+
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
5183
|
+
on(topic: 'taobao_zk_IdentifyCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
5136
5184
|
/** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
5137
5185
|
on(topic: 'taotao_film_ThirdPartyRefundPush', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
|
|
5138
5186
|
/** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -5383,6 +5431,8 @@ declare interface TaoEventsListener {
|
|
|
5383
5431
|
on(topic: 'xianyu_ctox_RateStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxRateStateSyn) => void): TaoMessageConsumer;
|
|
5384
5432
|
/** {@link IncomingMessage.XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
|
|
5385
5433
|
on(topic: 'xianyu_environment_EventSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
|
|
5434
|
+
/** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
5435
|
+
on(topic: 'xianyu_fishmarket_ItemSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
|
|
5386
5436
|
/** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
5387
5437
|
on(topic: 'xianyu_isv_OrderRemind', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
|
|
5388
5438
|
/** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -5747,8 +5797,12 @@ declare interface TaoEventsListener {
|
|
|
5747
5797
|
on(topic: 'idle_consignment', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
|
|
5748
5798
|
/** {@link IncomingMessage.IdleConsignmentii} */
|
|
5749
5799
|
on(topic: 'idle_consignmentii', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentii) => void): TaoMessageConsumer;
|
|
5800
|
+
/** {@link IncomingMessage.IdleCro} */
|
|
5801
|
+
on(topic: 'idle_cro', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
|
|
5750
5802
|
/** {@link IncomingMessage.IdleCycleshop} */
|
|
5751
5803
|
on(topic: 'idle_cycleshop', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
|
|
5804
|
+
/** {@link IncomingMessage.IdleNewoutlets} */
|
|
5805
|
+
on(topic: 'idle_newoutlets', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutlets) => void): TaoMessageConsumer;
|
|
5752
5806
|
/** {@link IncomingMessage.IdleRecycle} */
|
|
5753
5807
|
on(topic: 'idle_recycle', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycle) => void): TaoMessageConsumer;
|
|
5754
5808
|
/** {@link IncomingMessage.IdleTopisv} */
|
|
@@ -5981,6 +6035,8 @@ declare interface TaoEventsListener {
|
|
|
5981
6035
|
on(topic: 'taobao_worktable', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWorktable) => void): TaoMessageConsumer;
|
|
5982
6036
|
/** {@link IncomingMessage.TaobaoWt} */
|
|
5983
6037
|
on(topic: 'taobao_wt', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoWt) => void): TaoMessageConsumer;
|
|
6038
|
+
/** {@link IncomingMessage.TaobaoXhotel} */
|
|
6039
|
+
on(topic: 'taobao_xhotel', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXhotel) => void): TaoMessageConsumer;
|
|
5984
6040
|
/** {@link IncomingMessage.TaobaoXianyu} */
|
|
5985
6041
|
on(topic: 'taobao_xianyu', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXianyu) => void): TaoMessageConsumer;
|
|
5986
6042
|
/** {@link IncomingMessage.TaobaoXiaoqu} */
|
|
@@ -5989,6 +6045,8 @@ declare interface TaoEventsListener {
|
|
|
5989
6045
|
on(topic: 'taobao_xiaowei', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaowei) => void): TaoMessageConsumer;
|
|
5990
6046
|
/** {@link IncomingMessage.TaobaoYichao} */
|
|
5991
6047
|
on(topic: 'taobao_yichao', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichao) => void): TaoMessageConsumer;
|
|
6048
|
+
/** {@link IncomingMessage.TaobaoZk} */
|
|
6049
|
+
on(topic: 'taobao_zk', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZk) => void): TaoMessageConsumer;
|
|
5992
6050
|
/** {@link IncomingMessage.TaotaoFilm} */
|
|
5993
6051
|
on(topic: 'taotao_film', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilm) => void): TaoMessageConsumer;
|
|
5994
6052
|
/** {@link IncomingMessage.TmallAliauto} */
|
|
@@ -6079,6 +6137,8 @@ declare interface TaoEventsListener {
|
|
|
6079
6137
|
on(topic: 'xianyu_ctox', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
|
|
6080
6138
|
/** {@link IncomingMessage.XianyuEnvironment} */
|
|
6081
6139
|
on(topic: 'xianyu_environment', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
|
|
6140
|
+
/** {@link IncomingMessage.XianyuFishmarket} */
|
|
6141
|
+
on(topic: 'xianyu_fishmarket', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
|
|
6082
6142
|
/** {@link IncomingMessage.XianyuIsv} */
|
|
6083
6143
|
on(topic: 'xianyu_isv', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
6084
6144
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
package/types/message.in.d.ts
CHANGED
|
@@ -1047,6 +1047,8 @@ declare namespace IncomingMessage {
|
|
|
1047
1047
|
type FliggyTicketOrderStatusChange = Message & { content?: MessageContent & { topic?: 'fliggy_ticket_OrderStatusChange', content?: string | Fliggy.Ticket.OrderStatusChange } };
|
|
1048
1048
|
/** {@link Fliggy.Ticket.VerifyNotify 航旅度假交易 > 域外分销订单码核销消息} */
|
|
1049
1049
|
type FliggyTicketVerifyNotify = Message & { content?: MessageContent & { topic?: 'fliggy_ticket_VerifyNotify', content?: string | Fliggy.Ticket.VerifyNotify } };
|
|
1050
|
+
/** {@link Fliggy.Visa.ApplicantStatusChanged 飞猪 > 签证申请人状态变更消息} */
|
|
1051
|
+
type FliggyVisaApplicantStatusChanged = Message & { content?: MessageContent & { topic?: 'fliggy_visa_ApplicantStatusChanged', content?: string | Fliggy.Visa.ApplicantStatusChanged } };
|
|
1050
1052
|
/** {@link Fliggy.Visa.StatusChange 飞猪 > 签证状态变化消息} */
|
|
1051
1053
|
type FliggyVisaStatusChange = Message & { content?: MessageContent & { topic?: 'fliggy_visa_StatusChange', content?: string | Fliggy.Visa.StatusChange } };
|
|
1052
1054
|
/** {@link Fliggy.Xhotel.ComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
@@ -1089,13 +1091,15 @@ declare namespace IncomingMessage {
|
|
|
1089
1091
|
type IcbuAlicrmOfflineDataChanged = Message & { content?: MessageContent & { topic?: 'icbu_alicrm_OfflineDataChanged', content?: string | Icbu.Alicrm.OfflineDataChanged } };
|
|
1090
1092
|
/** {@link Icbu.Chat.MessageTipForXiaoMan ICBU > ICBU沟通消息推送给小满提醒} */
|
|
1091
1093
|
type IcbuChatMessageTipForXiaoMan = Message & { content?: MessageContent & { topic?: 'icbu_chat_MessageTipForXiaoMan', content?: string | Icbu.Chat.MessageTipForXiaoMan } };
|
|
1094
|
+
/** {@link Icbu.Crm.GgsXMOrderChange ICBU > ICBU CRM小满订单状态变更通知(GGS港台)} */
|
|
1095
|
+
type IcbuCrmGgsXMOrderChange = Message & { content?: MessageContent & { topic?: 'icbu_crm_GgsXMOrderChange', content?: string | Icbu.Crm.GgsXMOrderChange } };
|
|
1092
1096
|
/** {@link Icbu.Crm.XMOrderChange ICBU > ICBU CRM小满订单状态变更通知} */
|
|
1093
1097
|
type IcbuCrmXMOrderChange = Message & { content?: MessageContent & { topic?: 'icbu_crm_XMOrderChange', content?: string | Icbu.Crm.XMOrderChange } };
|
|
1094
1098
|
/** {@link Icbu.Member.XmUnBind ICBU > icbu国际站账号解绑小满账号} */
|
|
1095
1099
|
type IcbuMemberXmUnBind = Message & { content?: MessageContent & { topic?: 'icbu_member_XmUnBind', content?: string | Icbu.Member.XmUnBind } };
|
|
1096
1100
|
/** {@link Icbu.Risk.ZeroersMessage ICBU > 天鹿风控事件异步消息结果} */
|
|
1097
1101
|
type IcbuRiskZeroersMessage = Message & { content?: MessageContent & { topic?: 'icbu_risk_ZeroersMessage', content?: string | Icbu.Risk.ZeroersMessage } };
|
|
1098
|
-
/** {@link Icbu.Trade.OrderNotify ICBU > 国际站订单变更消息} */
|
|
1102
|
+
/** {@link Icbu.Trade.OrderNotify ICBU-交易 > 国际站订单变更消息} */
|
|
1099
1103
|
type IcbuTradeOrderNotify = Message & { content?: MessageContent & { topic?: 'icbu_trade_OrderNotify', content?: string | Icbu.Trade.OrderNotify } };
|
|
1100
1104
|
/** {@link Idle.Agreement.StatusChange 闲鱼 > 闲鱼代扣消息通知} */
|
|
1101
1105
|
type IdleAgreementStatusChange = Message & { content?: MessageContent & { topic?: 'idle_agreement_StatusChange', content?: string | Idle.Agreement.StatusChange } };
|
|
@@ -1113,10 +1117,14 @@ declare namespace IncomingMessage {
|
|
|
1113
1117
|
type IdleConsignmentOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_consignment_OrderSyn', content?: string | Idle.Consignment.OrderSyn } };
|
|
1114
1118
|
/** {@link Idle.Consignmentii.OrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
|
|
1115
1119
|
type IdleConsignmentiiOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_consignmentii_OrderSyn', content?: string | Idle.Consignmentii.OrderSyn } };
|
|
1120
|
+
/** {@link Idle.Cro.PunishMsg 闲鱼 > 闲鱼安全处罚消息} */
|
|
1121
|
+
type IdleCroPunishMsg = Message & { content?: MessageContent & { topic?: 'idle_cro_PunishMsg', content?: string | Idle.Cro.PunishMsg } };
|
|
1116
1122
|
/** {@link Idle.Cycleshop.GoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知} */
|
|
1117
1123
|
type IdleCycleshopGoodsNotice = Message & { content?: MessageContent & { topic?: 'idle_cycleshop_GoodsNotice', content?: string | Idle.Cycleshop.GoodsNotice } };
|
|
1118
1124
|
/** {@link Idle.Cycleshop.SaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
1119
1125
|
type IdleCycleshopSaleOrderNotice = Message & { content?: MessageContent & { topic?: 'idle_cycleshop_SaleOrderNotice', content?: string | Idle.Cycleshop.SaleOrderNotice } };
|
|
1126
|
+
/** {@link Idle.Newoutlets.UserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
1127
|
+
type IdleNewoutletsUserTagNotice = Message & { content?: MessageContent & { topic?: 'idle_newoutlets_UserTagNotice', content?: string | Idle.Newoutlets.UserTagNotice } };
|
|
1120
1128
|
/** {@link Idle.Recycle.OrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
1121
1129
|
type IdleRecycleOrderStateSyn = Message & { content?: MessageContent & { topic?: 'idle_recycle_OrderStateSyn', content?: string | Idle.Recycle.OrderStateSyn } };
|
|
1122
1130
|
/** {@link Idle.Recycle.OrderSyn 闲鱼回收商消息 > 回收订单交易消息} */
|
|
@@ -1287,6 +1295,8 @@ declare namespace IncomingMessage {
|
|
|
1287
1295
|
type TaobaoDisputeExchangeModified = Message & { content?: MessageContent & { topic?: 'taobao_dispute_ExchangeModified', content?: string | Taobao.Dispute.ExchangeModified } };
|
|
1288
1296
|
/** {@link Taobao.Dispute.ExchangeSellerConfirmed 淘宝 > 卖家确认收货} */
|
|
1289
1297
|
type TaobaoDisputeExchangeSellerConfirmed = Message & { content?: MessageContent & { topic?: 'taobao_dispute_ExchangeSellerConfirmed', content?: string | Taobao.Dispute.ExchangeSellerConfirmed } };
|
|
1298
|
+
/** {@link Taobao.Dispute.ExchangeSellerGoodsConsigned 淘宝 > 换货-卖家寄出商品} */
|
|
1299
|
+
type TaobaoDisputeExchangeSellerGoodsConsigned = Message & { content?: MessageContent & { topic?: 'taobao_dispute_ExchangeSellerGoodsConsigned', content?: string | Taobao.Dispute.ExchangeSellerGoodsConsigned } };
|
|
1290
1300
|
/** {@link Taobao.Dispute.ExchangeSuccess 淘宝 > 买家确认收货,换货成功} */
|
|
1291
1301
|
type TaobaoDisputeExchangeSuccess = Message & { content?: MessageContent & { topic?: 'taobao_dispute_ExchangeSuccess', content?: string | Taobao.Dispute.ExchangeSuccess } };
|
|
1292
1302
|
/** {@link Taobao.Dispute.ExchangeTurnToRefund 淘宝 > 卖家换货转退款} */
|
|
@@ -1603,6 +1613,8 @@ declare namespace IncomingMessage {
|
|
|
1603
1613
|
type TaobaoOfnNewOrderEventSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_NewOrderEventSync', content?: string | Taobao.Ofn.NewOrderEventSync } };
|
|
1604
1614
|
/** {@link Taobao.Ofn.OrderStatusSync 淘宝交易 > 以旧换新回收单状态同步} */
|
|
1605
1615
|
type TaobaoOfnOrderStatusSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_OrderStatusSync', content?: string | Taobao.Ofn.OrderStatusSync } };
|
|
1616
|
+
/** {@link Taobao.Ofn.RateSync 淘宝交易 > 以旧换新回收单评价消息} */
|
|
1617
|
+
type TaobaoOfnRateSync = Message & { content?: MessageContent & { topic?: 'taobao_ofn_RateSync', content?: string | Taobao.Ofn.RateSync } };
|
|
1606
1618
|
/** {@link Taobao.Openaccount.DataSync 导购平台 > openaccount数据同步} */
|
|
1607
1619
|
type TaobaoOpenaccountDataSync = Message & { content?: MessageContent & { topic?: 'taobao_openaccount_DataSync', content?: string | Taobao.Openaccount.DataSync } };
|
|
1608
1620
|
/** {@link Taobao.Opencrm.AuthTouchMessage 客户运营平台API > 营销短信授权消息} */
|
|
@@ -2017,6 +2029,8 @@ declare namespace IncomingMessage {
|
|
|
2017
2029
|
type TaobaoWtOpenTradeTaskMsg = Message & { content?: MessageContent & { topic?: 'taobao_wt_OpenTradeTaskMsg', content?: string | Taobao.Wt.OpenTradeTaskMsg } };
|
|
2018
2030
|
/** {@link Taobao.Wt.VerifyInform 淘宝 > 阿里通信实人认证主动通知运营商} */
|
|
2019
2031
|
type TaobaoWtVerifyInform = Message & { content?: MessageContent & { topic?: 'taobao_wt_VerifyInform', content?: string | Taobao.Wt.VerifyInform } };
|
|
2032
|
+
/** {@link Taobao.Xhotel.DistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息} */
|
|
2033
|
+
type TaobaoXhotelDistributionStdInfoChange = Message & { content?: MessageContent & { topic?: 'taobao_xhotel_DistributionStdInfoChange', content?: string | Taobao.Xhotel.DistributionStdInfoChange } };
|
|
2020
2034
|
/** {@link Taobao.Xianyu.HouseBooking 闲鱼 > 闲鱼房源预约消息} */
|
|
2021
2035
|
type TaobaoXianyuHouseBooking = Message & { content?: MessageContent & { topic?: 'taobao_xianyu_HouseBooking', content?: string | Taobao.Xianyu.HouseBooking } };
|
|
2022
2036
|
/** {@link Taobao.Xianyu.RentBillPaid 闲鱼 > 闲鱼租房订单支付} */
|
|
@@ -2051,6 +2065,10 @@ declare namespace IncomingMessage {
|
|
|
2051
2065
|
type TaobaoXiaoweiTest = Message & { content?: MessageContent & { topic?: 'taobao_xiaowei_Test', content?: string | Taobao.Xiaowei.Test } };
|
|
2052
2066
|
/** {@link Taobao.Yichao.WarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
2053
2067
|
type TaobaoYichaoWarrantyCodeStatusUpdate = Message & { content?: MessageContent & { topic?: 'taobao_yichao_WarrantyCodeStatusUpdate', content?: string | Taobao.Yichao.WarrantyCodeStatusUpdate } };
|
|
2068
|
+
/** {@link Taobao.Zk.FirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2069
|
+
type TaobaoZkFirstLogisticsNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsNotify', content?: string | Taobao.Zk.FirstLogisticsNotify } };
|
|
2070
|
+
/** {@link Taobao.Zk.IdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2071
|
+
type TaobaoZkIdentifyCreate = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCreate', content?: string | Taobao.Zk.IdentifyCreate } };
|
|
2054
2072
|
/** {@link Taotao.Film.ThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
2055
2073
|
type TaotaoFilmThirdPartyRefundPush = Message & { content?: MessageContent & { topic?: 'taotao_film_ThirdPartyRefundPush', content?: string | Taotao.Film.ThirdPartyRefundPush } };
|
|
2056
2074
|
/** {@link Tmall.Aliauto.StepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -2301,6 +2319,8 @@ declare namespace IncomingMessage {
|
|
|
2301
2319
|
type XianyuCtoxRateStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_RateStateSyn', content?: string | Xianyu.Ctox.RateStateSyn } };
|
|
2302
2320
|
/** {@link Xianyu.Environment.EventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步} */
|
|
2303
2321
|
type XianyuEnvironmentEventSyn = Message & { content?: MessageContent & { topic?: 'xianyu_environment_EventSyn', content?: string | Xianyu.Environment.EventSyn } };
|
|
2322
|
+
/** {@link Xianyu.Fishmarket.ItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
2323
|
+
type XianyuFishmarketItemSyn = Message & { content?: MessageContent & { topic?: 'xianyu_fishmarket_ItemSyn', content?: string | Xianyu.Fishmarket.ItemSyn } };
|
|
2304
2324
|
/** {@link Xianyu.Isv.OrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
2305
2325
|
type XianyuIsvOrderRemind = Message & { content?: MessageContent & { topic?: 'xianyu_isv_OrderRemind', content?: string | Xianyu.Isv.OrderRemind } };
|
|
2306
2326
|
/** {@link Xianyu.Marketrecycle.OrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -3626,9 +3646,11 @@ declare namespace IncomingMessage {
|
|
|
3626
3646
|
| FliggyTicketOrderStatusChange
|
|
3627
3647
|
| FliggyTicketVerifyNotify;
|
|
3628
3648
|
/**
|
|
3649
|
+
* - {@link FliggyVisaApplicantStatusChanged 飞猪 > 签证申请人状态变更消息}
|
|
3629
3650
|
* - {@link FliggyVisaStatusChange 飞猪 > 签证状态变化消息}
|
|
3630
3651
|
*/
|
|
3631
|
-
type FliggyVisa =
|
|
3652
|
+
type FliggyVisa = FliggyVisaApplicantStatusChanged
|
|
3653
|
+
| FliggyVisaStatusChange;
|
|
3632
3654
|
/**
|
|
3633
3655
|
* - {@link FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传}
|
|
3634
3656
|
*/
|
|
@@ -3690,9 +3712,11 @@ declare namespace IncomingMessage {
|
|
|
3690
3712
|
*/
|
|
3691
3713
|
type IcbuChat = IcbuChatMessageTipForXiaoMan;
|
|
3692
3714
|
/**
|
|
3715
|
+
* - {@link IcbuCrmGgsXMOrderChange ICBU > ICBU CRM小满订单状态变更通知(GGS港台)}
|
|
3693
3716
|
* - {@link IcbuCrmXMOrderChange ICBU > ICBU CRM小满订单状态变更通知}
|
|
3694
3717
|
*/
|
|
3695
|
-
type IcbuCrm =
|
|
3718
|
+
type IcbuCrm = IcbuCrmGgsXMOrderChange
|
|
3719
|
+
| IcbuCrmXMOrderChange;
|
|
3696
3720
|
/**
|
|
3697
3721
|
* - {@link IcbuMemberXmUnBind ICBU > icbu国际站账号解绑小满账号}
|
|
3698
3722
|
*/
|
|
@@ -3702,7 +3726,7 @@ declare namespace IncomingMessage {
|
|
|
3702
3726
|
*/
|
|
3703
3727
|
type IcbuRisk = IcbuRiskZeroersMessage;
|
|
3704
3728
|
/**
|
|
3705
|
-
* - {@link IcbuTradeOrderNotify ICBU > 国际站订单变更消息}
|
|
3729
|
+
* - {@link IcbuTradeOrderNotify ICBU-交易 > 国际站订单变更消息}
|
|
3706
3730
|
*/
|
|
3707
3731
|
type IcbuTrade = IcbuTradeOrderNotify;
|
|
3708
3732
|
/**
|
|
@@ -3731,12 +3755,20 @@ declare namespace IncomingMessage {
|
|
|
3731
3755
|
* - {@link IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步}
|
|
3732
3756
|
*/
|
|
3733
3757
|
type IdleConsignmentii = IdleConsignmentiiOrderSyn;
|
|
3758
|
+
/**
|
|
3759
|
+
* - {@link IdleCroPunishMsg 闲鱼 > 闲鱼安全处罚消息}
|
|
3760
|
+
*/
|
|
3761
|
+
type IdleCro = IdleCroPunishMsg;
|
|
3734
3762
|
/**
|
|
3735
3763
|
* - {@link IdleCycleshopGoodsNotice 闲鱼 > 闲鱼循环商店-货品变更通知}
|
|
3736
3764
|
* - {@link IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知}
|
|
3737
3765
|
*/
|
|
3738
3766
|
type IdleCycleshop = IdleCycleshopGoodsNotice
|
|
3739
3767
|
| IdleCycleshopSaleOrderNotice;
|
|
3768
|
+
/**
|
|
3769
|
+
* - {@link IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息}
|
|
3770
|
+
*/
|
|
3771
|
+
type IdleNewoutlets = IdleNewoutletsUserTagNotice;
|
|
3740
3772
|
/**
|
|
3741
3773
|
* - {@link IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息}
|
|
3742
3774
|
* - {@link IdleRecycleOrderSyn 闲鱼回收商消息 > 回收订单交易消息}
|
|
@@ -3966,6 +3998,7 @@ declare namespace IncomingMessage {
|
|
|
3966
3998
|
* - {@link TaobaoDisputeExchangeClosed 淘宝 > 买家关闭换货协议}
|
|
3967
3999
|
* - {@link TaobaoDisputeExchangeModified 淘宝 > 买家修改换货申请}
|
|
3968
4000
|
* - {@link TaobaoDisputeExchangeSellerConfirmed 淘宝 > 卖家确认收货}
|
|
4001
|
+
* - {@link TaobaoDisputeExchangeSellerGoodsConsigned 淘宝 > 换货-卖家寄出商品}
|
|
3969
4002
|
* - {@link TaobaoDisputeExchangeSuccess 淘宝 > 买家确认收货,换货成功}
|
|
3970
4003
|
* - {@link TaobaoDisputeExchangeTurnToRefund 淘宝 > 卖家换货转退款}
|
|
3971
4004
|
* - {@link TaobaoDisputeRefundCreated 淘宝 > 新退款创建}
|
|
@@ -3977,6 +4010,7 @@ declare namespace IncomingMessage {
|
|
|
3977
4010
|
| TaobaoDisputeExchangeClosed
|
|
3978
4011
|
| TaobaoDisputeExchangeModified
|
|
3979
4012
|
| TaobaoDisputeExchangeSellerConfirmed
|
|
4013
|
+
| TaobaoDisputeExchangeSellerGoodsConsigned
|
|
3980
4014
|
| TaobaoDisputeExchangeSuccess
|
|
3981
4015
|
| TaobaoDisputeExchangeTurnToRefund
|
|
3982
4016
|
| TaobaoDisputeRefundCreated
|
|
@@ -4355,10 +4389,12 @@ declare namespace IncomingMessage {
|
|
|
4355
4389
|
* - {@link TaobaoOfnCreditPayStatusChange 淘宝交易 > 信用代扣状态变更同步}
|
|
4356
4390
|
* - {@link TaobaoOfnNewOrderEventSync 淘宝交易 > 以旧换新新机单事件同步}
|
|
4357
4391
|
* - {@link TaobaoOfnOrderStatusSync 淘宝交易 > 以旧换新回收单状态同步}
|
|
4392
|
+
* - {@link TaobaoOfnRateSync 淘宝交易 > 以旧换新回收单评价消息}
|
|
4358
4393
|
*/
|
|
4359
4394
|
type TaobaoOfn = TaobaoOfnCreditPayStatusChange
|
|
4360
4395
|
| TaobaoOfnNewOrderEventSync
|
|
4361
|
-
| TaobaoOfnOrderStatusSync
|
|
4396
|
+
| TaobaoOfnOrderStatusSync
|
|
4397
|
+
| TaobaoOfnRateSync;
|
|
4362
4398
|
/**
|
|
4363
4399
|
* - {@link TaobaoOpenaccountDataSync 导购平台 > openaccount数据同步}
|
|
4364
4400
|
*/
|
|
@@ -4869,6 +4905,10 @@ declare namespace IncomingMessage {
|
|
|
4869
4905
|
| TaobaoWtOpenTradePreauthorizMsg
|
|
4870
4906
|
| TaobaoWtOpenTradeTaskMsg
|
|
4871
4907
|
| TaobaoWtVerifyInform;
|
|
4908
|
+
/**
|
|
4909
|
+
* - {@link TaobaoXhotelDistributionStdInfoChange 酒店标准库基础信息变更消息 > 通用分销 标准信息变更消息}
|
|
4910
|
+
*/
|
|
4911
|
+
type TaobaoXhotel = TaobaoXhotelDistributionStdInfoChange;
|
|
4872
4912
|
/**
|
|
4873
4913
|
* - {@link TaobaoXianyuHouseBooking 闲鱼 > 闲鱼房源预约消息}
|
|
4874
4914
|
* - {@link TaobaoXianyuRentBillPaid 闲鱼 > 闲鱼租房订单支付}
|
|
@@ -4911,6 +4951,12 @@ declare namespace IncomingMessage {
|
|
|
4911
4951
|
* - {@link TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息}
|
|
4912
4952
|
*/
|
|
4913
4953
|
type TaobaoYichao = TaobaoYichaoWarrantyCodeStatusUpdate;
|
|
4954
|
+
/**
|
|
4955
|
+
* - {@link TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息}
|
|
4956
|
+
* - {@link TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息}
|
|
4957
|
+
*/
|
|
4958
|
+
type TaobaoZk = TaobaoZkFirstLogisticsNotify
|
|
4959
|
+
| TaobaoZkIdentifyCreate;
|
|
4914
4960
|
/**
|
|
4915
4961
|
* - {@link TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步}
|
|
4916
4962
|
*/
|
|
@@ -5251,6 +5297,10 @@ declare namespace IncomingMessage {
|
|
|
5251
5297
|
* - {@link XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步}
|
|
5252
5298
|
*/
|
|
5253
5299
|
type XianyuEnvironment = XianyuEnvironmentEventSyn;
|
|
5300
|
+
/**
|
|
5301
|
+
* - {@link XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更}
|
|
5302
|
+
*/
|
|
5303
|
+
type XianyuFishmarket = XianyuFishmarketItemSyn;
|
|
5254
5304
|
/**
|
|
5255
5305
|
* - {@link XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒}
|
|
5256
5306
|
*/
|
|
@@ -5685,7 +5735,9 @@ declare namespace IncomingMessage {
|
|
|
5685
5735
|
* - {@link IdleAutotrade}
|
|
5686
5736
|
* - {@link IdleConsignment}
|
|
5687
5737
|
* - {@link IdleConsignmentii}
|
|
5738
|
+
* - {@link IdleCro}
|
|
5688
5739
|
* - {@link IdleCycleshop}
|
|
5740
|
+
* - {@link IdleNewoutlets}
|
|
5689
5741
|
* - {@link IdleRecycle}
|
|
5690
5742
|
* - {@link IdleTopisv}
|
|
5691
5743
|
* - {@link IdleTranferpay}
|
|
@@ -5696,7 +5748,9 @@ declare namespace IncomingMessage {
|
|
|
5696
5748
|
| IdleAutotrade
|
|
5697
5749
|
| IdleConsignment
|
|
5698
5750
|
| IdleConsignmentii
|
|
5751
|
+
| IdleCro
|
|
5699
5752
|
| IdleCycleshop
|
|
5753
|
+
| IdleNewoutlets
|
|
5700
5754
|
| IdleRecycle
|
|
5701
5755
|
| IdleTopisv
|
|
5702
5756
|
| IdleTranferpay
|
|
@@ -5836,10 +5890,12 @@ declare namespace IncomingMessage {
|
|
|
5836
5890
|
* - {@link TaobaoWms}
|
|
5837
5891
|
* - {@link TaobaoWorktable}
|
|
5838
5892
|
* - {@link TaobaoWt}
|
|
5893
|
+
* - {@link TaobaoXhotel}
|
|
5839
5894
|
* - {@link TaobaoXianyu}
|
|
5840
5895
|
* - {@link TaobaoXiaoqu}
|
|
5841
5896
|
* - {@link TaobaoXiaowei}
|
|
5842
5897
|
* - {@link TaobaoYichao}
|
|
5898
|
+
* - {@link TaobaoZk}
|
|
5843
5899
|
*/
|
|
5844
5900
|
type Taobao = TaobaoAg
|
|
5845
5901
|
| TaobaoAis
|
|
@@ -5945,10 +6001,12 @@ declare namespace IncomingMessage {
|
|
|
5945
6001
|
| TaobaoWms
|
|
5946
6002
|
| TaobaoWorktable
|
|
5947
6003
|
| TaobaoWt
|
|
6004
|
+
| TaobaoXhotel
|
|
5948
6005
|
| TaobaoXianyu
|
|
5949
6006
|
| TaobaoXiaoqu
|
|
5950
6007
|
| TaobaoXiaowei
|
|
5951
|
-
| TaobaoYichao
|
|
6008
|
+
| TaobaoYichao
|
|
6009
|
+
| TaobaoZk;
|
|
5952
6010
|
/**
|
|
5953
6011
|
* - {@link TaotaoFilm}
|
|
5954
6012
|
*/
|
|
@@ -6049,6 +6107,7 @@ declare namespace IncomingMessage {
|
|
|
6049
6107
|
* - {@link XianyuCar}
|
|
6050
6108
|
* - {@link XianyuCtox}
|
|
6051
6109
|
* - {@link XianyuEnvironment}
|
|
6110
|
+
* - {@link XianyuFishmarket}
|
|
6052
6111
|
* - {@link XianyuIsv}
|
|
6053
6112
|
* - {@link XianyuMarketrecycle}
|
|
6054
6113
|
* - {@link XianyuRecycle}
|
|
@@ -6061,6 +6120,7 @@ declare namespace IncomingMessage {
|
|
|
6061
6120
|
| XianyuCar
|
|
6062
6121
|
| XianyuCtox
|
|
6063
6122
|
| XianyuEnvironment
|
|
6123
|
+
| XianyuFishmarket
|
|
6064
6124
|
| XianyuIsv
|
|
6065
6125
|
| XianyuMarketrecycle
|
|
6066
6126
|
| XianyuRecycle
|
package/types/taobao.d.ts
CHANGED
|
@@ -991,6 +991,28 @@ declare namespace Taobao.Dispute {
|
|
|
991
991
|
tid: number | bigint;
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2583&docType=9 换货-卖家寄出商品} */
|
|
995
|
+
interface ExchangeSellerGoodsConsigned {
|
|
996
|
+
/** 1/2:退款,3:退货退款,4/6:换货,其他请调api获取详细信息 */
|
|
997
|
+
biz_claim_type: number;
|
|
998
|
+
/** 涉及金额 */
|
|
999
|
+
buyer_refund_fee: number;
|
|
1000
|
+
/** 创建时间 */
|
|
1001
|
+
create: Date | number | string;
|
|
1002
|
+
/** 1:售中, 2:售后 */
|
|
1003
|
+
dispute_type: number;
|
|
1004
|
+
/** 更新时间 */
|
|
1005
|
+
modified: Date | number | string;
|
|
1006
|
+
/** 子订单ID */
|
|
1007
|
+
oid: number | bigint;
|
|
1008
|
+
/** 退款id(Long)或消息id(字符串) */
|
|
1009
|
+
refund_id: number;
|
|
1010
|
+
/** 卖家openUid */
|
|
1011
|
+
seller_open_uid: string;
|
|
1012
|
+
/** 支付单ID */
|
|
1013
|
+
tid: number | bigint;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
994
1016
|
/** {@link https://open.taobao.com/tmc.htm?docId=2510&docType=9 买家确认收货,换货成功} */
|
|
995
1017
|
interface ExchangeSuccess {
|
|
996
1018
|
/** 1/2:退款,3:退货退款,4/6:换货,其他请调api获取详细信息 */
|
|
@@ -1818,6 +1840,8 @@ declare namespace Taobao.Fuwu {
|
|
|
1818
1840
|
|
|
1819
1841
|
/** {@link https://open.taobao.com/tmc.htm?docId=2384&docType=9 以旧换新资金变更通知消息} */
|
|
1820
1842
|
interface FundsChange {
|
|
1843
|
+
/** 资金类型 */
|
|
1844
|
+
funds_type?: string;
|
|
1821
1845
|
/** 新机单ID */
|
|
1822
1846
|
new_order_id?: string;
|
|
1823
1847
|
/** 回收单ID */
|
|
@@ -3580,6 +3604,16 @@ declare namespace Taobao.Ofn {
|
|
|
3580
3604
|
/** 回收商 appKey */
|
|
3581
3605
|
supplier_id?: string;
|
|
3582
3606
|
}
|
|
3607
|
+
|
|
3608
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2572&docType=9 以旧换新回收单评价消息} */
|
|
3609
|
+
interface RateSync {
|
|
3610
|
+
/** 回收单 ID */
|
|
3611
|
+
biz_order_id: string;
|
|
3612
|
+
/** 评价内容 */
|
|
3613
|
+
rate_content: string;
|
|
3614
|
+
/** 1是好评,0 是差评 */
|
|
3615
|
+
rate_grade: string;
|
|
3616
|
+
}
|
|
3583
3617
|
}
|
|
3584
3618
|
|
|
3585
3619
|
/** 导购平台 */
|
|
@@ -6629,6 +6663,8 @@ declare namespace Taobao.Wt {
|
|
|
6629
6663
|
phone?: string;
|
|
6630
6664
|
/** 阿里侧虚拟产品Id */
|
|
6631
6665
|
product_id?: string;
|
|
6666
|
+
/** 办理结果描述 */
|
|
6667
|
+
result_desc?: string;
|
|
6632
6668
|
/** 订单状态: 0-代付款 1-支付成功 2-合约办理成功 3-合约办理失败 */
|
|
6633
6669
|
status: string;
|
|
6634
6670
|
/** 淘宝id */
|
|
@@ -6690,6 +6726,17 @@ declare namespace Taobao.Wt {
|
|
|
6690
6726
|
}
|
|
6691
6727
|
}
|
|
6692
6728
|
|
|
6729
|
+
/** 酒店标准库基础信息变更消息 */
|
|
6730
|
+
declare namespace Taobao.Xhotel {
|
|
6731
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2569&docType=9 通用分销 标准信息变更消息} */
|
|
6732
|
+
interface DistributionStdInfoChange {
|
|
6733
|
+
/** 消息id */
|
|
6734
|
+
msg_id: string;
|
|
6735
|
+
/** 产生变更的标准酒店id */
|
|
6736
|
+
shids: string;
|
|
6737
|
+
}
|
|
6738
|
+
}
|
|
6739
|
+
|
|
6693
6740
|
/** 闲鱼 */
|
|
6694
6741
|
declare namespace Taobao.Xianyu {
|
|
6695
6742
|
/** {@link https://open.taobao.com/tmc.htm?docId=1633&docType=9 闲鱼房源预约消息} */
|
|
@@ -6949,3 +6996,24 @@ declare namespace Taobao.Yichao {
|
|
|
6949
6996
|
status: string;
|
|
6950
6997
|
}
|
|
6951
6998
|
}
|
|
6999
|
+
|
|
7000
|
+
/** 淘宝真酷 */
|
|
7001
|
+
declare namespace Taobao.Zk {
|
|
7002
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2581&docType=9 淘宝真酷一段物流发货消息} */
|
|
7003
|
+
interface FirstLogisticsNotify {
|
|
7004
|
+
/** 鉴定机构id */
|
|
7005
|
+
identify_institution_id: string;
|
|
7006
|
+
/** 一段物流单号 */
|
|
7007
|
+
identify_logistics_id: string;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2571&docType=9 淘宝真酷需求鉴别单创建消息} */
|
|
7011
|
+
interface IdentifyCreate {
|
|
7012
|
+
/** 鉴定机构id */
|
|
7013
|
+
identify_institution_id: string;
|
|
7014
|
+
/** 货品鉴别单id,多个以逗号分隔 */
|
|
7015
|
+
identify_order_id_list: string;
|
|
7016
|
+
/** 需求鉴别单id */
|
|
7017
|
+
identify_request_id: string;
|
|
7018
|
+
}
|
|
7019
|
+
}
|
package/types/xianyu.d.ts
CHANGED
|
@@ -6,12 +6,14 @@ declare namespace Xianyu.Aftersale {
|
|
|
6
6
|
after_sale_order_id: string;
|
|
7
7
|
/** 推进到当前状态的事件 */
|
|
8
8
|
event: string;
|
|
9
|
-
/**
|
|
9
|
+
/** 正向交易买家单订单号 */
|
|
10
10
|
main_order_id: string;
|
|
11
11
|
/** 当前主状态 */
|
|
12
12
|
main_status: string;
|
|
13
13
|
/** 当前子状态 */
|
|
14
14
|
sub_status: string;
|
|
15
|
+
/** 帮卖卖家单单号 */
|
|
16
|
+
tender_order_id?: string;
|
|
15
17
|
}
|
|
16
18
|
}
|
|
17
19
|
|
|
@@ -49,16 +51,12 @@ declare namespace Xianyu.Ctox {
|
|
|
49
51
|
interface CommissionStateSyn {
|
|
50
52
|
/** 订单id */
|
|
51
53
|
biz_order_id: string;
|
|
52
|
-
/** 11
|
|
54
|
+
/** 11-抽佣帮卖卖家服务费;12-抽佣:帮卖买家服务费;21-退佣:帮卖售后 */
|
|
53
55
|
biz_type: string;
|
|
54
|
-
/** 成交金额,单位分 */
|
|
55
|
-
deal_price: string;
|
|
56
56
|
/** 佣金,单位分 */
|
|
57
57
|
fee_commission: string;
|
|
58
|
-
/**
|
|
58
|
+
/** 1-正向抽佣;2-逆向退佣 */
|
|
59
59
|
fee_type: string;
|
|
60
|
-
/** 服务费,单位分 */
|
|
61
|
-
service_fee: string;
|
|
62
60
|
}
|
|
63
61
|
|
|
64
62
|
/** {@link https://open.taobao.com/tmc.htm?docId=2535&docType=9 c2x代扣协议变更通知} */
|
|
@@ -103,6 +101,21 @@ declare namespace Xianyu.Environment {
|
|
|
103
101
|
}
|
|
104
102
|
}
|
|
105
103
|
|
|
104
|
+
/** 闲鱼 */
|
|
105
|
+
declare namespace Xianyu.Fishmarket {
|
|
106
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2574&docType=9 鱼市商品状态变更} */
|
|
107
|
+
interface ItemSyn {
|
|
108
|
+
/** 卖家单id */
|
|
109
|
+
biz_order_id: string;
|
|
110
|
+
/** true-表示有出价 */
|
|
111
|
+
is_bid: string;
|
|
112
|
+
/** 商品ID */
|
|
113
|
+
item_id: string;
|
|
114
|
+
/** 场次 */
|
|
115
|
+
schedule: string;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
106
119
|
/** 闲鱼 */
|
|
107
120
|
declare namespace Xianyu.Isv {
|
|
108
121
|
/** {@link https://open.taobao.com/tmc.htm?docId=2219&docType=9 闲鱼服务商订单提醒} */
|