tmc.js 0.3.46 → 0.3.48
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/LICENSE +1 -1
- package/README.md +4 -4
- package/package.json +1 -1
- package/types/alibaba.d.ts +26 -4
- package/types/damai.d.ts +22 -0
- package/types/flyggy.d.ts +14 -0
- package/types/idle.d.ts +28 -0
- package/types/index.d.ts +76 -0
- package/types/lianfan.d.ts +12 -0
- package/types/message.in.d.ts +79 -4
- package/types/taobao.d.ts +50 -10
- package/types/xianyu.d.ts +124 -0
package/LICENSE
CHANGED
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>共计 85+ 类别,
|
|
137
|
+
<details><summary>共计 85+ 类别,521+ 消息数</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
|
-
| 天猫服务 |
|
|
153
|
+
| 天猫服务 | 33 |
|
|
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
|
-
| 闲鱼 |
|
|
173
|
+
| 闲鱼 | 26 |
|
|
174
174
|
| 闲鱼回收商消息 | 7 |
|
|
175
175
|
| 零售通POS开放平台消息 | 4 |
|
|
176
176
|
| DPAAS | 6 |
|
|
@@ -216,7 +216,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
|
|
|
216
216
|
| 阿里健康追溯码 | 1 |
|
|
217
217
|
| 自动驾驶API | 3 |
|
|
218
218
|
| MMC五盘货项目 | 5 |
|
|
219
|
-
| 银泰开放平台消息 |
|
|
219
|
+
| 银泰开放平台消息 | 3 |
|
|
220
220
|
| 阿里智付 | 1 |
|
|
221
221
|
| 代发管理 | 2 |
|
|
222
222
|
| 蚂蚁采购 | 1 |
|
package/package.json
CHANGED
package/types/alibaba.d.ts
CHANGED
|
@@ -1259,6 +1259,18 @@ declare namespace Alibaba.Happytrip {
|
|
|
1259
1259
|
/** 订单当前状态 -1, "未知状态" 1, "预定中" 2, "已取消" 3, "待付款" 4, "已付款" 5, "已删除" 6, "已完成" 7, "已关闭" 8, "已预订" 9, "已变更" 10, "预定失败" */
|
|
1260
1260
|
status: string;
|
|
1261
1261
|
}
|
|
1262
|
+
|
|
1263
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2617&docType=9 差旅申请单状态变更同步} */
|
|
1264
|
+
interface TravelApplyStateNotify {
|
|
1265
|
+
/** 欢行租户id */
|
|
1266
|
+
corp_id: string;
|
|
1267
|
+
/** 消息id */
|
|
1268
|
+
msg_id: string;
|
|
1269
|
+
/** 差旅单审批状态 */
|
|
1270
|
+
state: string;
|
|
1271
|
+
/** 差旅单号 */
|
|
1272
|
+
ta_head_id: string;
|
|
1273
|
+
}
|
|
1262
1274
|
}
|
|
1263
1275
|
|
|
1264
1276
|
/** 汇金销项票 */
|
|
@@ -4616,6 +4628,20 @@ declare namespace Alibaba.Wdktrade {
|
|
|
4616
4628
|
|
|
4617
4629
|
/** 天猫服务 */
|
|
4618
4630
|
declare namespace Alibaba.Yichao {
|
|
4631
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2607&docType=9 蚁巢投保理赔消息} */
|
|
4632
|
+
interface ClaimOrder {
|
|
4633
|
+
/** 行为 */
|
|
4634
|
+
action: string;
|
|
4635
|
+
/** 理赔申请方ID */
|
|
4636
|
+
claimant_id: string;
|
|
4637
|
+
/** 理赔单号 */
|
|
4638
|
+
claim_order_id: string;
|
|
4639
|
+
/** 外部业务单据 报案单 */
|
|
4640
|
+
out_order_id: string;
|
|
4641
|
+
/** 产品码 */
|
|
4642
|
+
product_code: string;
|
|
4643
|
+
}
|
|
4644
|
+
|
|
4619
4645
|
/** {@link https://open.taobao.com/tmc.htm?docId=2549&docType=9 蚁巢保单修改消息} */
|
|
4620
4646
|
interface InsuranceUpdate {
|
|
4621
4647
|
/** 保单生效时间 */
|
|
@@ -4626,10 +4652,6 @@ declare namespace Alibaba.Yichao {
|
|
|
4626
4652
|
insurance_application_no: string;
|
|
4627
4653
|
/** 蚁巢保单号 */
|
|
4628
4654
|
insurance_order_id: string;
|
|
4629
|
-
/** 被保人id */
|
|
4630
|
-
insurant_id: string;
|
|
4631
|
-
/** 被保人姓名 */
|
|
4632
|
-
insurant_name: string;
|
|
4633
4655
|
/** 单据唯一键 */
|
|
4634
4656
|
out_id: string;
|
|
4635
4657
|
/** 工单或者服务单号 */
|
package/types/damai.d.ts
CHANGED
|
@@ -22,6 +22,28 @@ declare namespace Damai.Distribution {
|
|
|
22
22
|
perform_id: number;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2606&docType=9 场次时间变更消息} */
|
|
26
|
+
interface PerformTimeChange {
|
|
27
|
+
/** 结束时间 */
|
|
28
|
+
end_time: string;
|
|
29
|
+
/** 原始结束时间 */
|
|
30
|
+
original_end_time: string;
|
|
31
|
+
/** 原始场次名称 */
|
|
32
|
+
original_perform_name: string;
|
|
33
|
+
/** 原始开始时间 */
|
|
34
|
+
original_start_time: string;
|
|
35
|
+
/** 场次id */
|
|
36
|
+
perform_id: number;
|
|
37
|
+
/** 场次名称 */
|
|
38
|
+
perform_name: string;
|
|
39
|
+
/** 项目id */
|
|
40
|
+
project_id: number;
|
|
41
|
+
/** 变更原因 */
|
|
42
|
+
reason: string;
|
|
43
|
+
/** 开始时间 */
|
|
44
|
+
start_time: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
25
47
|
/** {@link https://open.taobao.com/tmc.htm?docId=1629&docType=9 预售改开票} */
|
|
26
48
|
interface PreSaleToNow {
|
|
27
49
|
/** 场次id */
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/** 飞猪 */
|
|
2
|
+
declare namespace Flyggy.Flight {
|
|
3
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2618&docType=9 飞猪机票国内分销全量报价} */
|
|
4
|
+
interface DomesticDistributionQuotationFull {
|
|
5
|
+
/** 旗舰店报价 */
|
|
6
|
+
flagship?: string;
|
|
7
|
+
/** 消息Id */
|
|
8
|
+
id: string;
|
|
9
|
+
/** 代理商报价 */
|
|
10
|
+
normal_agent?: string;
|
|
11
|
+
/** 自营报价 */
|
|
12
|
+
self_agent?: string;
|
|
13
|
+
}
|
|
14
|
+
}
|
package/types/idle.d.ts
CHANGED
|
@@ -224,6 +224,34 @@ declare namespace Idle.Recycle {
|
|
|
224
224
|
/** 退款状态 */
|
|
225
225
|
refund_status: string;
|
|
226
226
|
}
|
|
227
|
+
|
|
228
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2609&docType=9 黄金回收门店信息变更通知} */
|
|
229
|
+
interface StoreSyn {
|
|
230
|
+
/** 具体地址 */
|
|
231
|
+
address: string;
|
|
232
|
+
/** 区/县名称 */
|
|
233
|
+
area_name: string;
|
|
234
|
+
/** 扩展字段 */
|
|
235
|
+
attributes: string;
|
|
236
|
+
/** 营业信息 */
|
|
237
|
+
business_info: string;
|
|
238
|
+
/** 城市名称 */
|
|
239
|
+
city_name: string;
|
|
240
|
+
/** 纬度 */
|
|
241
|
+
latitude: string;
|
|
242
|
+
/** 经度 */
|
|
243
|
+
longitude: string;
|
|
244
|
+
/** 高德门店id */
|
|
245
|
+
poid: string;
|
|
246
|
+
/** 省名称 */
|
|
247
|
+
province_name: string;
|
|
248
|
+
/** 门店id */
|
|
249
|
+
store_id: number;
|
|
250
|
+
/** 门店名称 */
|
|
251
|
+
store_name: string;
|
|
252
|
+
/** 门店状态 0:下线 1:上线 */
|
|
253
|
+
store_status: number;
|
|
254
|
+
}
|
|
227
255
|
}
|
|
228
256
|
|
|
229
257
|
/** 闲鱼已验货 */
|
package/types/index.d.ts
CHANGED
|
@@ -244,6 +244,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
244
244
|
alibaba_happyfinance_InNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappyfinanceInNotify) => void): TaoMessageConsumer;
|
|
245
245
|
/** {@link IncomingMessage.AlibabaHappytripOrderNotify 欢行开放平台 > 欢行统一订单模型变更通知消息} */
|
|
246
246
|
alibaba_happytrip_OrderNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappytripOrderNotify) => void): TaoMessageConsumer;
|
|
247
|
+
/** {@link IncomingMessage.AlibabaHappytripTravelApplyStateNotify 欢行开放平台 > 差旅申请单状态变更同步} */
|
|
248
|
+
alibaba_happytrip_TravelApplyStateNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappytripTravelApplyStateNotify) => void): TaoMessageConsumer;
|
|
247
249
|
/** {@link IncomingMessage.AlibabaHjInvoiceCancel 汇金销项票 > 汇金销项票作废通知} */
|
|
248
250
|
alibaba_hj_InvoiceCancel(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHjInvoiceCancel) => void): TaoMessageConsumer;
|
|
249
251
|
/** {@link IncomingMessage.AlibabaHjInvoiceFileUpload 汇金销项票 > 汇金销项票文件上传通知} */
|
|
@@ -626,6 +628,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
626
628
|
alibaba_wdkorder_VoucherStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorderVoucherStatus) => void): TaoMessageConsumer;
|
|
627
629
|
/** {@link IncomingMessage.AlibabaWdktradeCouponInstance 五道口营销 > 营销券实例消息} */
|
|
628
630
|
alibaba_wdktrade_CouponInstance(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktradeCouponInstance) => void): TaoMessageConsumer;
|
|
631
|
+
/** {@link IncomingMessage.AlibabaYichaoClaimOrder 天猫服务 > 蚁巢投保理赔消息} */
|
|
632
|
+
alibaba_yichao_ClaimOrder(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoClaimOrder) => void): TaoMessageConsumer;
|
|
629
633
|
/** {@link IncomingMessage.AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
630
634
|
alibaba_yichao_InsuranceUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoInsuranceUpdate) => void): TaoMessageConsumer;
|
|
631
635
|
/** {@link IncomingMessage.AlibabaYunioDataTransfer 平台消息 > YunIO数据流转} */
|
|
@@ -1012,6 +1016,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1012
1016
|
damai_distribution_PerformCancel(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformCancel) => void): TaoMessageConsumer;
|
|
1013
1017
|
/** {@link IncomingMessage.DamaiDistributionPerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送} */
|
|
1014
1018
|
damai_distribution_PerformStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformStatus) => void): TaoMessageConsumer;
|
|
1019
|
+
/** {@link IncomingMessage.DamaiDistributionPerformTimeChange 大麦第三方票务供应商接入 > 场次时间变更消息} */
|
|
1020
|
+
damai_distribution_PerformTimeChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformTimeChange) => void): TaoMessageConsumer;
|
|
1015
1021
|
/** {@link IncomingMessage.DamaiDistributionPreSaleToNow 大麦第三方票务供应商接入 > 预售改开票} */
|
|
1016
1022
|
damai_distribution_PreSaleToNow(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
|
|
1017
1023
|
/** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
@@ -1076,6 +1082,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1076
1082
|
fliggy_visa_StatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaStatusChange) => void): TaoMessageConsumer;
|
|
1077
1083
|
/** {@link IncomingMessage.FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
1078
1084
|
fliggy_xhotel_ComboCreateResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotelComboCreateResult) => void): TaoMessageConsumer;
|
|
1085
|
+
/** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
|
|
1086
|
+
flyggy_flight_DomesticDistributionQuotationFull(fn: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull) => void): TaoMessageConsumer;
|
|
1079
1087
|
/** {@link IncomingMessage.FuwuConfirmFail 服务市场 > 收入确认失败} */
|
|
1080
1088
|
fuwu_confirm_Fail(fn: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirmFail) => void): TaoMessageConsumer;
|
|
1081
1089
|
/** {@link IncomingMessage.FuwuConfirmSuccess 服务市场 > 收入确认成功} */
|
|
@@ -1156,6 +1164,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1156
1164
|
idle_recycle_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleOrderSyn) => void): TaoMessageConsumer;
|
|
1157
1165
|
/** {@link IncomingMessage.IdleRecycleRefundStatusModify 闲鱼回收商消息 > 退款消息} */
|
|
1158
1166
|
idle_recycle_RefundStatusModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleRefundStatusModify) => void): TaoMessageConsumer;
|
|
1167
|
+
/** {@link IncomingMessage.IdleRecycleStoreSyn 闲鱼回收商消息 > 黄金回收门店信息变更通知} */
|
|
1168
|
+
idle_recycle_StoreSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleStoreSyn) => void): TaoMessageConsumer;
|
|
1159
1169
|
/** {@link IncomingMessage.IdleTopisvCompensateNotice 闲鱼已验货 > 闲鱼开放平台-服务赔付单变更消息通知} */
|
|
1160
1170
|
idle_topisv_CompensateNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleTopisvCompensateNotice) => void): TaoMessageConsumer;
|
|
1161
1171
|
/** {@link IncomingMessage.IdleTopisvGlobalProductNotice 闲鱼已验货 > 闲鱼开放平台-国际货品变更消息通知} */
|
|
@@ -1182,6 +1192,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1182
1192
|
lark_trade_PosTradeDataTransmit(fn: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
|
|
1183
1193
|
/** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
1184
1194
|
lianfan_huiwa_ModelStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
|
|
1195
|
+
/** {@link IncomingMessage.LianfanHuiwaRequirementStateUpdate 连凡 > 绘蛙需求状态变更消息} */
|
|
1196
|
+
lianfan_huiwa_RequirementStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaRequirementStateUpdate) => void): TaoMessageConsumer;
|
|
1185
1197
|
/** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
1186
1198
|
lianfan_huiwa_TaskStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
|
|
1187
1199
|
/** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
@@ -2092,12 +2104,18 @@ declare interface TaoTopicsDescriptor {
|
|
|
2092
2104
|
taobao_yichao_WarrantyCodeStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
2093
2105
|
/** {@link IncomingMessage.TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
2094
2106
|
taobao_zk_CloudIdentifyCreateNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyCreateNotify) => void): TaoMessageConsumer;
|
|
2107
|
+
/** {@link IncomingMessage.TaobaoZkCloudIdentifyResaleNotify 淘宝真酷 > 淘宝真酷二次鉴别通知} */
|
|
2108
|
+
taobao_zk_CloudIdentifyResaleNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyResaleNotify) => void): TaoMessageConsumer;
|
|
2095
2109
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2096
2110
|
taobao_zk_FirstLogisticsNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
2097
2111
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
2098
2112
|
taobao_zk_FirstLogisticsReceivedNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
|
|
2113
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
|
|
2114
|
+
taobao_zk_FirstLogisticsUpdateNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify) => void): TaoMessageConsumer;
|
|
2099
2115
|
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2100
2116
|
taobao_zk_IdentifyCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
2117
|
+
/** {@link IncomingMessage.TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
|
|
2118
|
+
taobao_zk_PauseNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPauseNotify) => void): TaoMessageConsumer;
|
|
2101
2119
|
/** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
2102
2120
|
taobao_zk_RefundNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
|
|
2103
2121
|
/** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
@@ -2350,6 +2368,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2350
2368
|
xianyu_appraise_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
|
|
2351
2369
|
/** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
2352
2370
|
xianyu_car_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
|
|
2371
|
+
/** {@link IncomingMessage.XianyuCcoComplain 闲鱼 > 闲鱼投诉消息} */
|
|
2372
|
+
xianyu_cco_Complain(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCcoComplain) => void): TaoMessageConsumer;
|
|
2353
2373
|
/** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
2354
2374
|
xianyu_ctox_CommissionStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
|
|
2355
2375
|
/** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
@@ -2368,6 +2388,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2368
2388
|
xianyu_marketrecycle_OrderStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecycleOrderStateSyn) => void): TaoMessageConsumer;
|
|
2369
2389
|
/** {@link IncomingMessage.XianyuMarketrecyclePlanStateSyn 闲鱼 > 闲鱼保卖计划变更消息} */
|
|
2370
2390
|
xianyu_marketrecycle_PlanStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecyclePlanStateSyn) => void): TaoMessageConsumer;
|
|
2391
|
+
/** {@link IncomingMessage.XianyuOutletCycleBuyVendueCreate 闲鱼 > 闲鱼奥莱周期拍拍品创建} */
|
|
2392
|
+
xianyu_outlet_CycleBuyVendueCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuOutletCycleBuyVendueCreate) => void): TaoMessageConsumer;
|
|
2371
2393
|
/** {@link IncomingMessage.XianyuRecycleOrderStatusSync 闲鱼 > 订单状态同步给回收商} */
|
|
2372
2394
|
xianyu_recycle_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuRecycleOrderStatusSync) => void): TaoMessageConsumer;
|
|
2373
2395
|
/** {@link IncomingMessage.XianyuRecycleSpuModifySync 闲鱼 > 闲鱼回收SPU变更消息} */
|
|
@@ -2380,6 +2402,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
2380
2402
|
xianyu_template_StatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTemplateStatusChange) => void): TaoMessageConsumer;
|
|
2381
2403
|
/** {@link IncomingMessage.XianyuTenderOrderSyn 闲鱼 > 省心卖-暗拍项目订单消息} */
|
|
2382
2404
|
xianyu_tender_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTenderOrderSyn) => void): TaoMessageConsumer;
|
|
2405
|
+
/** {@link IncomingMessage.XianyuYellowboxGpuTemplatePunish 闲鱼 > GPU模版处罚消息通知} */
|
|
2406
|
+
xianyu_yellowbox_GpuTemplatePunish(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYellowboxGpuTemplatePunish) => void): TaoMessageConsumer;
|
|
2407
|
+
/** {@link IncomingMessage.XianyuYushiTsOffShelf 闲鱼 > 闲鱼商品下架消息} */
|
|
2408
|
+
xianyu_yushi_TsOffShelf(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYushiTsOffShelf) => void): TaoMessageConsumer;
|
|
2383
2409
|
/** {@link IncomingMessage.YoukuAigcTrainResultNotify 优酷 > 妙鸭SaaS对外开放-训练结果通知} */
|
|
2384
2410
|
youku_aigc_TrainResultNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.YoukuAigcTrainResultNotify) => void): TaoMessageConsumer;
|
|
2385
2411
|
/** {@link IncomingMessage.YoukuTvosappstoreAppStatusChange TVOS应用审核平台 > TVOS审核平台应用状态变更通知消息} */
|
|
@@ -2692,6 +2718,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2692
2718
|
fliggy_visa(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisa) => void): TaoMessageConsumer;
|
|
2693
2719
|
/** {@link IncomingMessage.FliggyXhotel} */
|
|
2694
2720
|
fliggy_xhotel(fn: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotel) => void): TaoMessageConsumer;
|
|
2721
|
+
/** {@link IncomingMessage.FlyggyFlight} */
|
|
2722
|
+
flyggy_flight(fn: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlight) => void): TaoMessageConsumer;
|
|
2695
2723
|
/** {@link IncomingMessage.FuwuConfirm} */
|
|
2696
2724
|
fuwu_confirm(fn: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirm) => void): TaoMessageConsumer;
|
|
2697
2725
|
/** {@link IncomingMessage.GaodeCaiji} */
|
|
@@ -3066,6 +3094,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3066
3094
|
xianyu_appraise(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraise) => void): TaoMessageConsumer;
|
|
3067
3095
|
/** {@link IncomingMessage.XianyuCar} */
|
|
3068
3096
|
xianyu_car(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCar) => void): TaoMessageConsumer;
|
|
3097
|
+
/** {@link IncomingMessage.XianyuCco} */
|
|
3098
|
+
xianyu_cco(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCco) => void): TaoMessageConsumer;
|
|
3069
3099
|
/** {@link IncomingMessage.XianyuCtox} */
|
|
3070
3100
|
xianyu_ctox(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
|
|
3071
3101
|
/** {@link IncomingMessage.XianyuEnvironment} */
|
|
@@ -3078,6 +3108,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3078
3108
|
xianyu_isv(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
3079
3109
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
|
3080
3110
|
xianyu_marketrecycle(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecycle) => void): TaoMessageConsumer;
|
|
3111
|
+
/** {@link IncomingMessage.XianyuOutlet} */
|
|
3112
|
+
xianyu_outlet(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuOutlet) => void): TaoMessageConsumer;
|
|
3081
3113
|
/** {@link IncomingMessage.XianyuRecycle} */
|
|
3082
3114
|
xianyu_recycle(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuRecycle) => void): TaoMessageConsumer;
|
|
3083
3115
|
/** {@link IncomingMessage.XianyuRegister} */
|
|
@@ -3086,6 +3118,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
3086
3118
|
xianyu_template(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTemplate) => void): TaoMessageConsumer;
|
|
3087
3119
|
/** {@link IncomingMessage.XianyuTender} */
|
|
3088
3120
|
xianyu_tender(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTender) => void): TaoMessageConsumer;
|
|
3121
|
+
/** {@link IncomingMessage.XianyuYellowbox} */
|
|
3122
|
+
xianyu_yellowbox(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYellowbox) => void): TaoMessageConsumer;
|
|
3123
|
+
/** {@link IncomingMessage.XianyuYushi} */
|
|
3124
|
+
xianyu_yushi(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYushi) => void): TaoMessageConsumer;
|
|
3089
3125
|
/** {@link IncomingMessage.YoukuAigc} */
|
|
3090
3126
|
youku_aigc(fn: (this: TaoMessageConsumer, message: IncomingMessage.YoukuAigc) => void): TaoMessageConsumer;
|
|
3091
3127
|
/** {@link IncomingMessage.YoukuTvosappstore} */
|
|
@@ -3136,6 +3172,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3136
3172
|
eleme(fn: (this: TaoMessageConsumer, message: IncomingMessage.Eleme) => void): TaoMessageConsumer;
|
|
3137
3173
|
/** {@link IncomingMessage.Fliggy} */
|
|
3138
3174
|
fliggy(fn: (this: TaoMessageConsumer, message: IncomingMessage.Fliggy) => void): TaoMessageConsumer;
|
|
3175
|
+
/** {@link IncomingMessage.Flyggy} */
|
|
3176
|
+
flyggy(fn: (this: TaoMessageConsumer, message: IncomingMessage.Flyggy) => void): TaoMessageConsumer;
|
|
3139
3177
|
/** {@link IncomingMessage.Fuwu} */
|
|
3140
3178
|
fuwu(fn: (this: TaoMessageConsumer, message: IncomingMessage.Fuwu) => void): TaoMessageConsumer;
|
|
3141
3179
|
/** {@link IncomingMessage.Gaode} */
|
|
@@ -3369,6 +3407,8 @@ declare interface TaoEventsListener {
|
|
|
3369
3407
|
on(topic: 'alibaba_happyfinance_InNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappyfinanceInNotify) => void): TaoMessageConsumer;
|
|
3370
3408
|
/** {@link IncomingMessage.AlibabaHappytripOrderNotify 欢行开放平台 > 欢行统一订单模型变更通知消息} */
|
|
3371
3409
|
on(topic: 'alibaba_happytrip_OrderNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappytripOrderNotify) => void): TaoMessageConsumer;
|
|
3410
|
+
/** {@link IncomingMessage.AlibabaHappytripTravelApplyStateNotify 欢行开放平台 > 差旅申请单状态变更同步} */
|
|
3411
|
+
on(topic: 'alibaba_happytrip_TravelApplyStateNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHappytripTravelApplyStateNotify) => void): TaoMessageConsumer;
|
|
3372
3412
|
/** {@link IncomingMessage.AlibabaHjInvoiceCancel 汇金销项票 > 汇金销项票作废通知} */
|
|
3373
3413
|
on(topic: 'alibaba_hj_InvoiceCancel', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHjInvoiceCancel) => void): TaoMessageConsumer;
|
|
3374
3414
|
/** {@link IncomingMessage.AlibabaHjInvoiceFileUpload 汇金销项票 > 汇金销项票文件上传通知} */
|
|
@@ -3751,6 +3791,8 @@ declare interface TaoEventsListener {
|
|
|
3751
3791
|
on(topic: 'alibaba_wdkorder_VoucherStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorderVoucherStatus) => void): TaoMessageConsumer;
|
|
3752
3792
|
/** {@link IncomingMessage.AlibabaWdktradeCouponInstance 五道口营销 > 营销券实例消息} */
|
|
3753
3793
|
on(topic: 'alibaba_wdktrade_CouponInstance', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktradeCouponInstance) => void): TaoMessageConsumer;
|
|
3794
|
+
/** {@link IncomingMessage.AlibabaYichaoClaimOrder 天猫服务 > 蚁巢投保理赔消息} */
|
|
3795
|
+
on(topic: 'alibaba_yichao_ClaimOrder', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoClaimOrder) => void): TaoMessageConsumer;
|
|
3754
3796
|
/** {@link IncomingMessage.AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
3755
3797
|
on(topic: 'alibaba_yichao_InsuranceUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoInsuranceUpdate) => void): TaoMessageConsumer;
|
|
3756
3798
|
/** {@link IncomingMessage.AlibabaYunioDataTransfer 平台消息 > YunIO数据流转} */
|
|
@@ -4137,6 +4179,8 @@ declare interface TaoEventsListener {
|
|
|
4137
4179
|
on(topic: 'damai_distribution_PerformCancel', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformCancel) => void): TaoMessageConsumer;
|
|
4138
4180
|
/** {@link IncomingMessage.DamaiDistributionPerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送} */
|
|
4139
4181
|
on(topic: 'damai_distribution_PerformStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformStatus) => void): TaoMessageConsumer;
|
|
4182
|
+
/** {@link IncomingMessage.DamaiDistributionPerformTimeChange 大麦第三方票务供应商接入 > 场次时间变更消息} */
|
|
4183
|
+
on(topic: 'damai_distribution_PerformTimeChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPerformTimeChange) => void): TaoMessageConsumer;
|
|
4140
4184
|
/** {@link IncomingMessage.DamaiDistributionPreSaleToNow 大麦第三方票务供应商接入 > 预售改开票} */
|
|
4141
4185
|
on(topic: 'damai_distribution_PreSaleToNow', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
|
|
4142
4186
|
/** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
@@ -4201,6 +4245,8 @@ declare interface TaoEventsListener {
|
|
|
4201
4245
|
on(topic: 'fliggy_visa_StatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisaStatusChange) => void): TaoMessageConsumer;
|
|
4202
4246
|
/** {@link IncomingMessage.FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
4203
4247
|
on(topic: 'fliggy_xhotel_ComboCreateResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotelComboCreateResult) => void): TaoMessageConsumer;
|
|
4248
|
+
/** {@link IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
|
|
4249
|
+
on(topic: 'flyggy_flight_DomesticDistributionQuotationFull', listener: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlightDomesticDistributionQuotationFull) => void): TaoMessageConsumer;
|
|
4204
4250
|
/** {@link IncomingMessage.FuwuConfirmFail 服务市场 > 收入确认失败} */
|
|
4205
4251
|
on(topic: 'fuwu_confirm_Fail', listener: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirmFail) => void): TaoMessageConsumer;
|
|
4206
4252
|
/** {@link IncomingMessage.FuwuConfirmSuccess 服务市场 > 收入确认成功} */
|
|
@@ -4281,6 +4327,8 @@ declare interface TaoEventsListener {
|
|
|
4281
4327
|
on(topic: 'idle_recycle_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleOrderSyn) => void): TaoMessageConsumer;
|
|
4282
4328
|
/** {@link IncomingMessage.IdleRecycleRefundStatusModify 闲鱼回收商消息 > 退款消息} */
|
|
4283
4329
|
on(topic: 'idle_recycle_RefundStatusModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleRefundStatusModify) => void): TaoMessageConsumer;
|
|
4330
|
+
/** {@link IncomingMessage.IdleRecycleStoreSyn 闲鱼回收商消息 > 黄金回收门店信息变更通知} */
|
|
4331
|
+
on(topic: 'idle_recycle_StoreSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleRecycleStoreSyn) => void): TaoMessageConsumer;
|
|
4284
4332
|
/** {@link IncomingMessage.IdleTopisvCompensateNotice 闲鱼已验货 > 闲鱼开放平台-服务赔付单变更消息通知} */
|
|
4285
4333
|
on(topic: 'idle_topisv_CompensateNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleTopisvCompensateNotice) => void): TaoMessageConsumer;
|
|
4286
4334
|
/** {@link IncomingMessage.IdleTopisvGlobalProductNotice 闲鱼已验货 > 闲鱼开放平台-国际货品变更消息通知} */
|
|
@@ -4307,6 +4355,8 @@ declare interface TaoEventsListener {
|
|
|
4307
4355
|
on(topic: 'lark_trade_PosTradeDataTransmit', listener: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
|
|
4308
4356
|
/** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
4309
4357
|
on(topic: 'lianfan_huiwa_ModelStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
|
|
4358
|
+
/** {@link IncomingMessage.LianfanHuiwaRequirementStateUpdate 连凡 > 绘蛙需求状态变更消息} */
|
|
4359
|
+
on(topic: 'lianfan_huiwa_RequirementStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaRequirementStateUpdate) => void): TaoMessageConsumer;
|
|
4310
4360
|
/** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
4311
4361
|
on(topic: 'lianfan_huiwa_TaskStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
|
|
4312
4362
|
/** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
@@ -5217,12 +5267,18 @@ declare interface TaoEventsListener {
|
|
|
5217
5267
|
on(topic: 'taobao_yichao_WarrantyCodeStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
5218
5268
|
/** {@link IncomingMessage.TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
5219
5269
|
on(topic: 'taobao_zk_CloudIdentifyCreateNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyCreateNotify) => void): TaoMessageConsumer;
|
|
5270
|
+
/** {@link IncomingMessage.TaobaoZkCloudIdentifyResaleNotify 淘宝真酷 > 淘宝真酷二次鉴别通知} */
|
|
5271
|
+
on(topic: 'taobao_zk_CloudIdentifyResaleNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyResaleNotify) => void): TaoMessageConsumer;
|
|
5220
5272
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
5221
5273
|
on(topic: 'taobao_zk_FirstLogisticsNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
5222
5274
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
5223
5275
|
on(topic: 'taobao_zk_FirstLogisticsReceivedNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
|
|
5276
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
|
|
5277
|
+
on(topic: 'taobao_zk_FirstLogisticsUpdateNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsUpdateNotify) => void): TaoMessageConsumer;
|
|
5224
5278
|
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
5225
5279
|
on(topic: 'taobao_zk_IdentifyCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
5280
|
+
/** {@link IncomingMessage.TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
|
|
5281
|
+
on(topic: 'taobao_zk_PauseNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkPauseNotify) => void): TaoMessageConsumer;
|
|
5226
5282
|
/** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
5227
5283
|
on(topic: 'taobao_zk_RefundNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
|
|
5228
5284
|
/** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
@@ -5475,6 +5531,8 @@ declare interface TaoEventsListener {
|
|
|
5475
5531
|
on(topic: 'xianyu_appraise_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
|
|
5476
5532
|
/** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
5477
5533
|
on(topic: 'xianyu_car_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
|
|
5534
|
+
/** {@link IncomingMessage.XianyuCcoComplain 闲鱼 > 闲鱼投诉消息} */
|
|
5535
|
+
on(topic: 'xianyu_cco_Complain', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCcoComplain) => void): TaoMessageConsumer;
|
|
5478
5536
|
/** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
5479
5537
|
on(topic: 'xianyu_ctox_CommissionStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
|
|
5480
5538
|
/** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
@@ -5493,6 +5551,8 @@ declare interface TaoEventsListener {
|
|
|
5493
5551
|
on(topic: 'xianyu_marketrecycle_OrderStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecycleOrderStateSyn) => void): TaoMessageConsumer;
|
|
5494
5552
|
/** {@link IncomingMessage.XianyuMarketrecyclePlanStateSyn 闲鱼 > 闲鱼保卖计划变更消息} */
|
|
5495
5553
|
on(topic: 'xianyu_marketrecycle_PlanStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecyclePlanStateSyn) => void): TaoMessageConsumer;
|
|
5554
|
+
/** {@link IncomingMessage.XianyuOutletCycleBuyVendueCreate 闲鱼 > 闲鱼奥莱周期拍拍品创建} */
|
|
5555
|
+
on(topic: 'xianyu_outlet_CycleBuyVendueCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuOutletCycleBuyVendueCreate) => void): TaoMessageConsumer;
|
|
5496
5556
|
/** {@link IncomingMessage.XianyuRecycleOrderStatusSync 闲鱼 > 订单状态同步给回收商} */
|
|
5497
5557
|
on(topic: 'xianyu_recycle_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuRecycleOrderStatusSync) => void): TaoMessageConsumer;
|
|
5498
5558
|
/** {@link IncomingMessage.XianyuRecycleSpuModifySync 闲鱼 > 闲鱼回收SPU变更消息} */
|
|
@@ -5505,6 +5565,10 @@ declare interface TaoEventsListener {
|
|
|
5505
5565
|
on(topic: 'xianyu_template_StatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTemplateStatusChange) => void): TaoMessageConsumer;
|
|
5506
5566
|
/** {@link IncomingMessage.XianyuTenderOrderSyn 闲鱼 > 省心卖-暗拍项目订单消息} */
|
|
5507
5567
|
on(topic: 'xianyu_tender_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTenderOrderSyn) => void): TaoMessageConsumer;
|
|
5568
|
+
/** {@link IncomingMessage.XianyuYellowboxGpuTemplatePunish 闲鱼 > GPU模版处罚消息通知} */
|
|
5569
|
+
on(topic: 'xianyu_yellowbox_GpuTemplatePunish', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYellowboxGpuTemplatePunish) => void): TaoMessageConsumer;
|
|
5570
|
+
/** {@link IncomingMessage.XianyuYushiTsOffShelf 闲鱼 > 闲鱼商品下架消息} */
|
|
5571
|
+
on(topic: 'xianyu_yushi_TsOffShelf', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYushiTsOffShelf) => void): TaoMessageConsumer;
|
|
5508
5572
|
/** {@link IncomingMessage.YoukuAigcTrainResultNotify 优酷 > 妙鸭SaaS对外开放-训练结果通知} */
|
|
5509
5573
|
on(topic: 'youku_aigc_TrainResultNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.YoukuAigcTrainResultNotify) => void): TaoMessageConsumer;
|
|
5510
5574
|
/** {@link IncomingMessage.YoukuTvosappstoreAppStatusChange TVOS应用审核平台 > TVOS审核平台应用状态变更通知消息} */
|
|
@@ -5817,6 +5881,8 @@ declare interface TaoEventsListener {
|
|
|
5817
5881
|
on(topic: 'fliggy_visa', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyVisa) => void): TaoMessageConsumer;
|
|
5818
5882
|
/** {@link IncomingMessage.FliggyXhotel} */
|
|
5819
5883
|
on(topic: 'fliggy_xhotel', listener: (this: TaoMessageConsumer, message: IncomingMessage.FliggyXhotel) => void): TaoMessageConsumer;
|
|
5884
|
+
/** {@link IncomingMessage.FlyggyFlight} */
|
|
5885
|
+
on(topic: 'flyggy_flight', listener: (this: TaoMessageConsumer, message: IncomingMessage.FlyggyFlight) => void): TaoMessageConsumer;
|
|
5820
5886
|
/** {@link IncomingMessage.FuwuConfirm} */
|
|
5821
5887
|
on(topic: 'fuwu_confirm', listener: (this: TaoMessageConsumer, message: IncomingMessage.FuwuConfirm) => void): TaoMessageConsumer;
|
|
5822
5888
|
/** {@link IncomingMessage.GaodeCaiji} */
|
|
@@ -6191,6 +6257,8 @@ declare interface TaoEventsListener {
|
|
|
6191
6257
|
on(topic: 'xianyu_appraise', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraise) => void): TaoMessageConsumer;
|
|
6192
6258
|
/** {@link IncomingMessage.XianyuCar} */
|
|
6193
6259
|
on(topic: 'xianyu_car', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCar) => void): TaoMessageConsumer;
|
|
6260
|
+
/** {@link IncomingMessage.XianyuCco} */
|
|
6261
|
+
on(topic: 'xianyu_cco', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCco) => void): TaoMessageConsumer;
|
|
6194
6262
|
/** {@link IncomingMessage.XianyuCtox} */
|
|
6195
6263
|
on(topic: 'xianyu_ctox', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtox) => void): TaoMessageConsumer;
|
|
6196
6264
|
/** {@link IncomingMessage.XianyuEnvironment} */
|
|
@@ -6203,6 +6271,8 @@ declare interface TaoEventsListener {
|
|
|
6203
6271
|
on(topic: 'xianyu_isv', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
6204
6272
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
|
6205
6273
|
on(topic: 'xianyu_marketrecycle', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuMarketrecycle) => void): TaoMessageConsumer;
|
|
6274
|
+
/** {@link IncomingMessage.XianyuOutlet} */
|
|
6275
|
+
on(topic: 'xianyu_outlet', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuOutlet) => void): TaoMessageConsumer;
|
|
6206
6276
|
/** {@link IncomingMessage.XianyuRecycle} */
|
|
6207
6277
|
on(topic: 'xianyu_recycle', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuRecycle) => void): TaoMessageConsumer;
|
|
6208
6278
|
/** {@link IncomingMessage.XianyuRegister} */
|
|
@@ -6211,6 +6281,10 @@ declare interface TaoEventsListener {
|
|
|
6211
6281
|
on(topic: 'xianyu_template', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTemplate) => void): TaoMessageConsumer;
|
|
6212
6282
|
/** {@link IncomingMessage.XianyuTender} */
|
|
6213
6283
|
on(topic: 'xianyu_tender', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuTender) => void): TaoMessageConsumer;
|
|
6284
|
+
/** {@link IncomingMessage.XianyuYellowbox} */
|
|
6285
|
+
on(topic: 'xianyu_yellowbox', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYellowbox) => void): TaoMessageConsumer;
|
|
6286
|
+
/** {@link IncomingMessage.XianyuYushi} */
|
|
6287
|
+
on(topic: 'xianyu_yushi', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuYushi) => void): TaoMessageConsumer;
|
|
6214
6288
|
/** {@link IncomingMessage.YoukuAigc} */
|
|
6215
6289
|
on(topic: 'youku_aigc', listener: (this: TaoMessageConsumer, message: IncomingMessage.YoukuAigc) => void): TaoMessageConsumer;
|
|
6216
6290
|
/** {@link IncomingMessage.YoukuTvosappstore} */
|
|
@@ -6261,6 +6335,8 @@ declare interface TaoEventsListener {
|
|
|
6261
6335
|
on(topic: 'eleme', listener: (this: TaoMessageConsumer, message: IncomingMessage.Eleme) => void): TaoMessageConsumer;
|
|
6262
6336
|
/** {@link IncomingMessage.Fliggy} */
|
|
6263
6337
|
on(topic: 'fliggy', listener: (this: TaoMessageConsumer, message: IncomingMessage.Fliggy) => void): TaoMessageConsumer;
|
|
6338
|
+
/** {@link IncomingMessage.Flyggy} */
|
|
6339
|
+
on(topic: 'flyggy', listener: (this: TaoMessageConsumer, message: IncomingMessage.Flyggy) => void): TaoMessageConsumer;
|
|
6264
6340
|
/** {@link IncomingMessage.Fuwu} */
|
|
6265
6341
|
on(topic: 'fuwu', listener: (this: TaoMessageConsumer, message: IncomingMessage.Fuwu) => void): TaoMessageConsumer;
|
|
6266
6342
|
/** {@link IncomingMessage.Gaode} */
|
package/types/lianfan.d.ts
CHANGED
|
@@ -10,6 +10,18 @@ declare namespace Lianfan.Huiwa {
|
|
|
10
10
|
model_type: number;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2613&docType=9 绘蛙需求状态变更消息} */
|
|
14
|
+
interface RequirementStateUpdate {
|
|
15
|
+
/** 外部用户ID */
|
|
16
|
+
outer_user: string;
|
|
17
|
+
/** 需求ID */
|
|
18
|
+
requirement_id: number;
|
|
19
|
+
/** 需求名称 */
|
|
20
|
+
requirement_name: string;
|
|
21
|
+
/** 需求状态 */
|
|
22
|
+
requirement_status: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
13
25
|
/** {@link https://open.taobao.com/tmc.htm?docId=2559&docType=9 绘蛙生图任务状态变更消息} */
|
|
14
26
|
interface TaskStateUpdate {
|
|
15
27
|
/** 主任务id */
|
package/types/message.in.d.ts
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
/// <reference path="ele.d.ts" />
|
|
21
21
|
/// <reference path="eleme.d.ts" />
|
|
22
22
|
/// <reference path="fliggy.d.ts" />
|
|
23
|
+
/// <reference path="flyggy.d.ts" />
|
|
23
24
|
/// <reference path="fuwu.d.ts" />
|
|
24
25
|
/// <reference path="gaode.d.ts" />
|
|
25
26
|
/// <reference path="genie.d.ts" />
|
|
@@ -227,6 +228,8 @@ declare namespace IncomingMessage {
|
|
|
227
228
|
type AlibabaHappyfinanceInNotify = Message & { content?: MessageContent & { topic?: 'alibaba_happyfinance_InNotify', content?: string | Alibaba.Happyfinance.InNotify } };
|
|
228
229
|
/** {@link Alibaba.Happytrip.OrderNotify 欢行开放平台 > 欢行统一订单模型变更通知消息} */
|
|
229
230
|
type AlibabaHappytripOrderNotify = Message & { content?: MessageContent & { topic?: 'alibaba_happytrip_OrderNotify', content?: string | Alibaba.Happytrip.OrderNotify } };
|
|
231
|
+
/** {@link Alibaba.Happytrip.TravelApplyStateNotify 欢行开放平台 > 差旅申请单状态变更同步} */
|
|
232
|
+
type AlibabaHappytripTravelApplyStateNotify = Message & { content?: MessageContent & { topic?: 'alibaba_happytrip_TravelApplyStateNotify', content?: string | Alibaba.Happytrip.TravelApplyStateNotify } };
|
|
230
233
|
/** {@link Alibaba.Hj.InvoiceCancel 汇金销项票 > 汇金销项票作废通知} */
|
|
231
234
|
type AlibabaHjInvoiceCancel = Message & { content?: MessageContent & { topic?: 'alibaba_hj_InvoiceCancel', content?: string | Alibaba.Hj.InvoiceCancel } };
|
|
232
235
|
/** {@link Alibaba.Hj.InvoiceFileUpload 汇金销项票 > 汇金销项票文件上传通知} */
|
|
@@ -609,6 +612,8 @@ declare namespace IncomingMessage {
|
|
|
609
612
|
type AlibabaWdkorderVoucherStatus = Message & { content?: MessageContent & { topic?: 'alibaba_wdkorder_VoucherStatus', content?: string | Alibaba.Wdkorder.VoucherStatus } };
|
|
610
613
|
/** {@link Alibaba.Wdktrade.CouponInstance 五道口营销 > 营销券实例消息} */
|
|
611
614
|
type AlibabaWdktradeCouponInstance = Message & { content?: MessageContent & { topic?: 'alibaba_wdktrade_CouponInstance', content?: string | Alibaba.Wdktrade.CouponInstance } };
|
|
615
|
+
/** {@link Alibaba.Yichao.ClaimOrder 天猫服务 > 蚁巢投保理赔消息} */
|
|
616
|
+
type AlibabaYichaoClaimOrder = Message & { content?: MessageContent & { topic?: 'alibaba_yichao_ClaimOrder', content?: string | Alibaba.Yichao.ClaimOrder } };
|
|
612
617
|
/** {@link Alibaba.Yichao.InsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
613
618
|
type AlibabaYichaoInsuranceUpdate = Message & { content?: MessageContent & { topic?: 'alibaba_yichao_InsuranceUpdate', content?: string | Alibaba.Yichao.InsuranceUpdate } };
|
|
614
619
|
/** {@link Alibaba.Yunio.DataTransfer 平台消息 > YunIO数据流转} */
|
|
@@ -995,6 +1000,8 @@ declare namespace IncomingMessage {
|
|
|
995
1000
|
type DamaiDistributionPerformCancel = Message & { content?: MessageContent & { topic?: 'damai_distribution_PerformCancel', content?: string | Damai.Distribution.PerformCancel } };
|
|
996
1001
|
/** {@link Damai.Distribution.PerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送} */
|
|
997
1002
|
type DamaiDistributionPerformStatus = Message & { content?: MessageContent & { topic?: 'damai_distribution_PerformStatus', content?: string | Damai.Distribution.PerformStatus } };
|
|
1003
|
+
/** {@link Damai.Distribution.PerformTimeChange 大麦第三方票务供应商接入 > 场次时间变更消息} */
|
|
1004
|
+
type DamaiDistributionPerformTimeChange = Message & { content?: MessageContent & { topic?: 'damai_distribution_PerformTimeChange', content?: string | Damai.Distribution.PerformTimeChange } };
|
|
998
1005
|
/** {@link Damai.Distribution.PreSaleToNow 大麦第三方票务供应商接入 > 预售改开票} */
|
|
999
1006
|
type DamaiDistributionPreSaleToNow = Message & { content?: MessageContent & { topic?: 'damai_distribution_PreSaleToNow', content?: string | Damai.Distribution.PreSaleToNow } };
|
|
1000
1007
|
/** {@link Damai.Distribution.ProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
@@ -1059,6 +1066,8 @@ declare namespace IncomingMessage {
|
|
|
1059
1066
|
type FliggyVisaStatusChange = Message & { content?: MessageContent & { topic?: 'fliggy_visa_StatusChange', content?: string | Fliggy.Visa.StatusChange } };
|
|
1060
1067
|
/** {@link Fliggy.Xhotel.ComboCreateResult 飞猪 > 套餐创建消息回传} */
|
|
1061
1068
|
type FliggyXhotelComboCreateResult = Message & { content?: MessageContent & { topic?: 'fliggy_xhotel_ComboCreateResult', content?: string | Fliggy.Xhotel.ComboCreateResult } };
|
|
1069
|
+
/** {@link Flyggy.Flight.DomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价} */
|
|
1070
|
+
type FlyggyFlightDomesticDistributionQuotationFull = Message & { content?: MessageContent & { topic?: 'flyggy_flight_DomesticDistributionQuotationFull', content?: string | Flyggy.Flight.DomesticDistributionQuotationFull } };
|
|
1062
1071
|
/** {@link Fuwu.Confirm.Fail 服务市场 > 收入确认失败} */
|
|
1063
1072
|
type FuwuConfirmFail = Message & { content?: MessageContent & { topic?: 'fuwu_confirm_Fail', content?: string | Fuwu.Confirm.Fail } };
|
|
1064
1073
|
/** {@link Fuwu.Confirm.Success 服务市场 > 收入确认成功} */
|
|
@@ -1139,6 +1148,8 @@ declare namespace IncomingMessage {
|
|
|
1139
1148
|
type IdleRecycleOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_recycle_OrderSyn', content?: string | Idle.Recycle.OrderSyn } };
|
|
1140
1149
|
/** {@link Idle.Recycle.RefundStatusModify 闲鱼回收商消息 > 退款消息} */
|
|
1141
1150
|
type IdleRecycleRefundStatusModify = Message & { content?: MessageContent & { topic?: 'idle_recycle_RefundStatusModify', content?: string | Idle.Recycle.RefundStatusModify } };
|
|
1151
|
+
/** {@link Idle.Recycle.StoreSyn 闲鱼回收商消息 > 黄金回收门店信息变更通知} */
|
|
1152
|
+
type IdleRecycleStoreSyn = Message & { content?: MessageContent & { topic?: 'idle_recycle_StoreSyn', content?: string | Idle.Recycle.StoreSyn } };
|
|
1142
1153
|
/** {@link Idle.Topisv.CompensateNotice 闲鱼已验货 > 闲鱼开放平台-服务赔付单变更消息通知} */
|
|
1143
1154
|
type IdleTopisvCompensateNotice = Message & { content?: MessageContent & { topic?: 'idle_topisv_CompensateNotice', content?: string | Idle.Topisv.CompensateNotice } };
|
|
1144
1155
|
/** {@link Idle.Topisv.GlobalProductNotice 闲鱼已验货 > 闲鱼开放平台-国际货品变更消息通知} */
|
|
@@ -1165,6 +1176,8 @@ declare namespace IncomingMessage {
|
|
|
1165
1176
|
type LarkTradePosTradeDataTransmit = Message & { content?: MessageContent & { topic?: 'lark_trade_PosTradeDataTransmit', content?: string | Lark.Trade.PosTradeDataTransmit } };
|
|
1166
1177
|
/** {@link Lianfan.Huiwa.ModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
1167
1178
|
type LianfanHuiwaModelStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_ModelStateUpdate', content?: string | Lianfan.Huiwa.ModelStateUpdate } };
|
|
1179
|
+
/** {@link Lianfan.Huiwa.RequirementStateUpdate 连凡 > 绘蛙需求状态变更消息} */
|
|
1180
|
+
type LianfanHuiwaRequirementStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_RequirementStateUpdate', content?: string | Lianfan.Huiwa.RequirementStateUpdate } };
|
|
1168
1181
|
/** {@link Lianfan.Huiwa.TaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
1169
1182
|
type LianfanHuiwaTaskStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_TaskStateUpdate', content?: string | Lianfan.Huiwa.TaskStateUpdate } };
|
|
1170
1183
|
/** {@link Lst.Supplier.BroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
@@ -2075,12 +2088,18 @@ declare namespace IncomingMessage {
|
|
|
2075
2088
|
type TaobaoYichaoWarrantyCodeStatusUpdate = Message & { content?: MessageContent & { topic?: 'taobao_yichao_WarrantyCodeStatusUpdate', content?: string | Taobao.Yichao.WarrantyCodeStatusUpdate } };
|
|
2076
2089
|
/** {@link Taobao.Zk.CloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
2077
2090
|
type TaobaoZkCloudIdentifyCreateNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_CloudIdentifyCreateNotify', content?: string | Taobao.Zk.CloudIdentifyCreateNotify } };
|
|
2091
|
+
/** {@link Taobao.Zk.CloudIdentifyResaleNotify 淘宝真酷 > 淘宝真酷二次鉴别通知} */
|
|
2092
|
+
type TaobaoZkCloudIdentifyResaleNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_CloudIdentifyResaleNotify', content?: string | Taobao.Zk.CloudIdentifyResaleNotify } };
|
|
2078
2093
|
/** {@link Taobao.Zk.FirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2079
2094
|
type TaobaoZkFirstLogisticsNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsNotify', content?: string | Taobao.Zk.FirstLogisticsNotify } };
|
|
2080
2095
|
/** {@link Taobao.Zk.FirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
2081
2096
|
type TaobaoZkFirstLogisticsReceivedNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsReceivedNotify', content?: string | Taobao.Zk.FirstLogisticsReceivedNotify } };
|
|
2097
|
+
/** {@link Taobao.Zk.FirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息} */
|
|
2098
|
+
type TaobaoZkFirstLogisticsUpdateNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsUpdateNotify', content?: string | Taobao.Zk.FirstLogisticsUpdateNotify } };
|
|
2082
2099
|
/** {@link Taobao.Zk.IdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2083
2100
|
type TaobaoZkIdentifyCreate = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCreate', content?: string | Taobao.Zk.IdentifyCreate } };
|
|
2101
|
+
/** {@link Taobao.Zk.PauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知} */
|
|
2102
|
+
type TaobaoZkPauseNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_PauseNotify', content?: string | Taobao.Zk.PauseNotify } };
|
|
2084
2103
|
/** {@link Taobao.Zk.RefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
2085
2104
|
type TaobaoZkRefundNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_RefundNotify', content?: string | Taobao.Zk.RefundNotify } };
|
|
2086
2105
|
/** {@link Taobao.Zk.SecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
@@ -2333,6 +2352,8 @@ declare namespace IncomingMessage {
|
|
|
2333
2352
|
type XianyuAppraiseOrderSyn = Message & { content?: MessageContent & { topic?: 'xianyu_appraise_OrderSyn', content?: string | Xianyu.Appraise.OrderSyn } };
|
|
2334
2353
|
/** {@link Xianyu.Car.OrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
2335
2354
|
type XianyuCarOrderStatusSync = Message & { content?: MessageContent & { topic?: 'xianyu_car_OrderStatusSync', content?: string | Xianyu.Car.OrderStatusSync } };
|
|
2355
|
+
/** {@link Xianyu.Cco.Complain 闲鱼 > 闲鱼投诉消息} */
|
|
2356
|
+
type XianyuCcoComplain = Message & { content?: MessageContent & { topic?: 'xianyu_cco_Complain', content?: string | Xianyu.Cco.Complain } };
|
|
2336
2357
|
/** {@link Xianyu.Ctox.CommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
2337
2358
|
type XianyuCtoxCommissionStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_CommissionStateSyn', content?: string | Xianyu.Ctox.CommissionStateSyn } };
|
|
2338
2359
|
/** {@link Xianyu.Ctox.PayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
@@ -2351,6 +2372,8 @@ declare namespace IncomingMessage {
|
|
|
2351
2372
|
type XianyuMarketrecycleOrderStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_marketrecycle_OrderStateSyn', content?: string | Xianyu.Marketrecycle.OrderStateSyn } };
|
|
2352
2373
|
/** {@link Xianyu.Marketrecycle.PlanStateSyn 闲鱼 > 闲鱼保卖计划变更消息} */
|
|
2353
2374
|
type XianyuMarketrecyclePlanStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_marketrecycle_PlanStateSyn', content?: string | Xianyu.Marketrecycle.PlanStateSyn } };
|
|
2375
|
+
/** {@link Xianyu.Outlet.CycleBuyVendueCreate 闲鱼 > 闲鱼奥莱周期拍拍品创建} */
|
|
2376
|
+
type XianyuOutletCycleBuyVendueCreate = Message & { content?: MessageContent & { topic?: 'xianyu_outlet_CycleBuyVendueCreate', content?: string | Xianyu.Outlet.CycleBuyVendueCreate } };
|
|
2354
2377
|
/** {@link Xianyu.Recycle.OrderStatusSync 闲鱼 > 订单状态同步给回收商} */
|
|
2355
2378
|
type XianyuRecycleOrderStatusSync = Message & { content?: MessageContent & { topic?: 'xianyu_recycle_OrderStatusSync', content?: string | Xianyu.Recycle.OrderStatusSync } };
|
|
2356
2379
|
/** {@link Xianyu.Recycle.SpuModifySync 闲鱼 > 闲鱼回收SPU变更消息} */
|
|
@@ -2363,6 +2386,10 @@ declare namespace IncomingMessage {
|
|
|
2363
2386
|
type XianyuTemplateStatusChange = Message & { content?: MessageContent & { topic?: 'xianyu_template_StatusChange', content?: string | Xianyu.Template.StatusChange } };
|
|
2364
2387
|
/** {@link Xianyu.Tender.OrderSyn 闲鱼 > 省心卖-暗拍项目订单消息} */
|
|
2365
2388
|
type XianyuTenderOrderSyn = Message & { content?: MessageContent & { topic?: 'xianyu_tender_OrderSyn', content?: string | Xianyu.Tender.OrderSyn } };
|
|
2389
|
+
/** {@link Xianyu.Yellowbox.GpuTemplatePunish 闲鱼 > GPU模版处罚消息通知} */
|
|
2390
|
+
type XianyuYellowboxGpuTemplatePunish = Message & { content?: MessageContent & { topic?: 'xianyu_yellowbox_GpuTemplatePunish', content?: string | Xianyu.Yellowbox.GpuTemplatePunish } };
|
|
2391
|
+
/** {@link Xianyu.Yushi.TsOffShelf 闲鱼 > 闲鱼商品下架消息} */
|
|
2392
|
+
type XianyuYushiTsOffShelf = Message & { content?: MessageContent & { topic?: 'xianyu_yushi_TsOffShelf', content?: string | Xianyu.Yushi.TsOffShelf } };
|
|
2366
2393
|
/** {@link Youku.Aigc.TrainResultNotify 优酷 > 妙鸭SaaS对外开放-训练结果通知} */
|
|
2367
2394
|
type YoukuAigcTrainResultNotify = Message & { content?: MessageContent & { topic?: 'youku_aigc_TrainResultNotify', content?: string | Youku.Aigc.TrainResultNotify } };
|
|
2368
2395
|
/** {@link Youku.Tvosappstore.AppStatusChange TVOS应用审核平台 > TVOS审核平台应用状态变更通知消息} */
|
|
@@ -2603,8 +2630,10 @@ declare namespace IncomingMessage {
|
|
|
2603
2630
|
type AlibabaHappyfinance = AlibabaHappyfinanceInNotify;
|
|
2604
2631
|
/**
|
|
2605
2632
|
* - {@link AlibabaHappytripOrderNotify 欢行开放平台 > 欢行统一订单模型变更通知消息}
|
|
2633
|
+
* - {@link AlibabaHappytripTravelApplyStateNotify 欢行开放平台 > 差旅申请单状态变更同步}
|
|
2606
2634
|
*/
|
|
2607
|
-
type AlibabaHappytrip = AlibabaHappytripOrderNotify
|
|
2635
|
+
type AlibabaHappytrip = AlibabaHappytripOrderNotify
|
|
2636
|
+
| AlibabaHappytripTravelApplyStateNotify;
|
|
2608
2637
|
/**
|
|
2609
2638
|
* - {@link AlibabaHjInvoiceCancel 汇金销项票 > 汇金销项票作废通知}
|
|
2610
2639
|
* - {@link AlibabaHjInvoiceFileUpload 汇金销项票 > 汇金销项票文件上传通知}
|
|
@@ -3070,9 +3099,11 @@ declare namespace IncomingMessage {
|
|
|
3070
3099
|
*/
|
|
3071
3100
|
type AlibabaWdktrade = AlibabaWdktradeCouponInstance;
|
|
3072
3101
|
/**
|
|
3102
|
+
* - {@link AlibabaYichaoClaimOrder 天猫服务 > 蚁巢投保理赔消息}
|
|
3073
3103
|
* - {@link AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息}
|
|
3074
3104
|
*/
|
|
3075
|
-
type AlibabaYichao =
|
|
3105
|
+
type AlibabaYichao = AlibabaYichaoClaimOrder
|
|
3106
|
+
| AlibabaYichaoInsuranceUpdate;
|
|
3076
3107
|
/**
|
|
3077
3108
|
* - {@link AlibabaYunioDataTransfer 平台消息 > YunIO数据流转}
|
|
3078
3109
|
*/
|
|
@@ -3589,6 +3620,7 @@ declare namespace IncomingMessage {
|
|
|
3589
3620
|
* - {@link DamaiDistributionMatchSeat 大麦第三方票务供应商接入 > 履约补选座位成功通知三方}
|
|
3590
3621
|
* - {@link DamaiDistributionPerformCancel 大麦第三方票务供应商接入 > 场次取消消息推送}
|
|
3591
3622
|
* - {@link DamaiDistributionPerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送}
|
|
3623
|
+
* - {@link DamaiDistributionPerformTimeChange 大麦第三方票务供应商接入 > 场次时间变更消息}
|
|
3592
3624
|
* - {@link DamaiDistributionPreSaleToNow 大麦第三方票务供应商接入 > 预售改开票}
|
|
3593
3625
|
* - {@link DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送}
|
|
3594
3626
|
* - {@link DamaiDistributionRefundAuditResult 大麦第三方票务供应商接入 > 分销退票审核结果消息通知}
|
|
@@ -3600,6 +3632,7 @@ declare namespace IncomingMessage {
|
|
|
3600
3632
|
type DamaiDistribution = DamaiDistributionMatchSeat
|
|
3601
3633
|
| DamaiDistributionPerformCancel
|
|
3602
3634
|
| DamaiDistributionPerformStatus
|
|
3635
|
+
| DamaiDistributionPerformTimeChange
|
|
3603
3636
|
| DamaiDistributionPreSaleToNow
|
|
3604
3637
|
| DamaiDistributionProjectStatus
|
|
3605
3638
|
| DamaiDistributionRefundAuditResult
|
|
@@ -3687,6 +3720,10 @@ declare namespace IncomingMessage {
|
|
|
3687
3720
|
* - {@link FliggyXhotelComboCreateResult 飞猪 > 套餐创建消息回传}
|
|
3688
3721
|
*/
|
|
3689
3722
|
type FliggyXhotel = FliggyXhotelComboCreateResult;
|
|
3723
|
+
/**
|
|
3724
|
+
* - {@link FlyggyFlightDomesticDistributionQuotationFull 飞猪 > 飞猪机票国内分销全量报价}
|
|
3725
|
+
*/
|
|
3726
|
+
type FlyggyFlight = FlyggyFlightDomesticDistributionQuotationFull;
|
|
3690
3727
|
/**
|
|
3691
3728
|
* - {@link FuwuConfirmFail 服务市场 > 收入确认失败}
|
|
3692
3729
|
* - {@link FuwuConfirmSuccess 服务市场 > 收入确认成功}
|
|
@@ -3809,10 +3846,12 @@ declare namespace IncomingMessage {
|
|
|
3809
3846
|
* - {@link IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息}
|
|
3810
3847
|
* - {@link IdleRecycleOrderSyn 闲鱼回收商消息 > 回收订单交易消息}
|
|
3811
3848
|
* - {@link IdleRecycleRefundStatusModify 闲鱼回收商消息 > 退款消息}
|
|
3849
|
+
* - {@link IdleRecycleStoreSyn 闲鱼回收商消息 > 黄金回收门店信息变更通知}
|
|
3812
3850
|
*/
|
|
3813
3851
|
type IdleRecycle = IdleRecycleOrderStateSyn
|
|
3814
3852
|
| IdleRecycleOrderSyn
|
|
3815
|
-
| IdleRecycleRefundStatusModify
|
|
3853
|
+
| IdleRecycleRefundStatusModify
|
|
3854
|
+
| IdleRecycleStoreSyn;
|
|
3816
3855
|
/**
|
|
3817
3856
|
* - {@link IdleTopisvCompensateNotice 闲鱼已验货 > 闲鱼开放平台-服务赔付单变更消息通知}
|
|
3818
3857
|
* - {@link IdleTopisvGlobalProductNotice 闲鱼已验货 > 闲鱼开放平台-国际货品变更消息通知}
|
|
@@ -3855,9 +3894,11 @@ declare namespace IncomingMessage {
|
|
|
3855
3894
|
type LarkTrade = LarkTradePosTradeDataTransmit;
|
|
3856
3895
|
/**
|
|
3857
3896
|
* - {@link LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息}
|
|
3897
|
+
* - {@link LianfanHuiwaRequirementStateUpdate 连凡 > 绘蛙需求状态变更消息}
|
|
3858
3898
|
* - {@link LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息}
|
|
3859
3899
|
*/
|
|
3860
3900
|
type LianfanHuiwa = LianfanHuiwaModelStateUpdate
|
|
3901
|
+
| LianfanHuiwaRequirementStateUpdate
|
|
3861
3902
|
| LianfanHuiwaTaskStateUpdate;
|
|
3862
3903
|
/**
|
|
3863
3904
|
* - {@link LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息}
|
|
@@ -4989,17 +5030,23 @@ declare namespace IncomingMessage {
|
|
|
4989
5030
|
type TaobaoYichao = TaobaoYichaoWarrantyCodeStatusUpdate;
|
|
4990
5031
|
/**
|
|
4991
5032
|
* - {@link TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知}
|
|
5033
|
+
* - {@link TaobaoZkCloudIdentifyResaleNotify 淘宝真酷 > 淘宝真酷二次鉴别通知}
|
|
4992
5034
|
* - {@link TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息}
|
|
4993
5035
|
* - {@link TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知}
|
|
5036
|
+
* - {@link TaobaoZkFirstLogisticsUpdateNotify 淘宝真酷 > 淘宝真酷-一段运单号修改消息}
|
|
4994
5037
|
* - {@link TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息}
|
|
5038
|
+
* - {@link TaobaoZkPauseNotify 淘宝真酷 > 淘宝真酷鉴别单暂停通知}
|
|
4995
5039
|
* - {@link TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知}
|
|
4996
5040
|
* - {@link TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构}
|
|
4997
5041
|
* - {@link TaobaoZkSubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知}
|
|
4998
5042
|
*/
|
|
4999
5043
|
type TaobaoZk = TaobaoZkCloudIdentifyCreateNotify
|
|
5044
|
+
| TaobaoZkCloudIdentifyResaleNotify
|
|
5000
5045
|
| TaobaoZkFirstLogisticsNotify
|
|
5001
5046
|
| TaobaoZkFirstLogisticsReceivedNotify
|
|
5047
|
+
| TaobaoZkFirstLogisticsUpdateNotify
|
|
5002
5048
|
| TaobaoZkIdentifyCreate
|
|
5049
|
+
| TaobaoZkPauseNotify
|
|
5003
5050
|
| TaobaoZkRefundNotify
|
|
5004
5051
|
| TaobaoZkSecondLogisticsGotNotify
|
|
5005
5052
|
| TaobaoZkSubmitQuote;
|
|
@@ -5335,6 +5382,10 @@ declare namespace IncomingMessage {
|
|
|
5335
5382
|
* - {@link XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步}
|
|
5336
5383
|
*/
|
|
5337
5384
|
type XianyuCar = XianyuCarOrderStatusSync;
|
|
5385
|
+
/**
|
|
5386
|
+
* - {@link XianyuCcoComplain 闲鱼 > 闲鱼投诉消息}
|
|
5387
|
+
*/
|
|
5388
|
+
type XianyuCco = XianyuCcoComplain;
|
|
5338
5389
|
/**
|
|
5339
5390
|
* - {@link XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步}
|
|
5340
5391
|
* - {@link XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知}
|
|
@@ -5365,6 +5416,10 @@ declare namespace IncomingMessage {
|
|
|
5365
5416
|
*/
|
|
5366
5417
|
type XianyuMarketrecycle = XianyuMarketrecycleOrderStateSyn
|
|
5367
5418
|
| XianyuMarketrecyclePlanStateSyn;
|
|
5419
|
+
/**
|
|
5420
|
+
* - {@link XianyuOutletCycleBuyVendueCreate 闲鱼 > 闲鱼奥莱周期拍拍品创建}
|
|
5421
|
+
*/
|
|
5422
|
+
type XianyuOutlet = XianyuOutletCycleBuyVendueCreate;
|
|
5368
5423
|
/**
|
|
5369
5424
|
* - {@link XianyuRecycleOrderStatusSync 闲鱼 > 订单状态同步给回收商}
|
|
5370
5425
|
* - {@link XianyuRecycleSpuModifySync 闲鱼 > 闲鱼回收SPU变更消息}
|
|
@@ -5385,6 +5440,14 @@ declare namespace IncomingMessage {
|
|
|
5385
5440
|
* - {@link XianyuTenderOrderSyn 闲鱼 > 省心卖-暗拍项目订单消息}
|
|
5386
5441
|
*/
|
|
5387
5442
|
type XianyuTender = XianyuTenderOrderSyn;
|
|
5443
|
+
/**
|
|
5444
|
+
* - {@link XianyuYellowboxGpuTemplatePunish 闲鱼 > GPU模版处罚消息通知}
|
|
5445
|
+
*/
|
|
5446
|
+
type XianyuYellowbox = XianyuYellowboxGpuTemplatePunish;
|
|
5447
|
+
/**
|
|
5448
|
+
* - {@link XianyuYushiTsOffShelf 闲鱼 > 闲鱼商品下架消息}
|
|
5449
|
+
*/
|
|
5450
|
+
type XianyuYushi = XianyuYushiTsOffShelf;
|
|
5388
5451
|
/**
|
|
5389
5452
|
* - {@link YoukuAigcTrainResultNotify 优酷 > 妙鸭SaaS对外开放-训练结果通知}
|
|
5390
5453
|
*/
|
|
@@ -5747,6 +5810,10 @@ declare namespace IncomingMessage {
|
|
|
5747
5810
|
| FliggyTicket
|
|
5748
5811
|
| FliggyVisa
|
|
5749
5812
|
| FliggyXhotel;
|
|
5813
|
+
/**
|
|
5814
|
+
* - {@link FlyggyFlight}
|
|
5815
|
+
*/
|
|
5816
|
+
type Flyggy = FlyggyFlight;
|
|
5750
5817
|
/**
|
|
5751
5818
|
* - {@link FuwuConfirm}
|
|
5752
5819
|
*/
|
|
@@ -6163,30 +6230,38 @@ declare namespace IncomingMessage {
|
|
|
6163
6230
|
* - {@link XianyuAftersale}
|
|
6164
6231
|
* - {@link XianyuAppraise}
|
|
6165
6232
|
* - {@link XianyuCar}
|
|
6233
|
+
* - {@link XianyuCco}
|
|
6166
6234
|
* - {@link XianyuCtox}
|
|
6167
6235
|
* - {@link XianyuEnvironment}
|
|
6168
6236
|
* - {@link XianyuFishmarket}
|
|
6169
6237
|
* - {@link XianyuHjbt}
|
|
6170
6238
|
* - {@link XianyuIsv}
|
|
6171
6239
|
* - {@link XianyuMarketrecycle}
|
|
6240
|
+
* - {@link XianyuOutlet}
|
|
6172
6241
|
* - {@link XianyuRecycle}
|
|
6173
6242
|
* - {@link XianyuRegister}
|
|
6174
6243
|
* - {@link XianyuTemplate}
|
|
6175
6244
|
* - {@link XianyuTender}
|
|
6245
|
+
* - {@link XianyuYellowbox}
|
|
6246
|
+
* - {@link XianyuYushi}
|
|
6176
6247
|
*/
|
|
6177
6248
|
type Xianyu = XianyuAftersale
|
|
6178
6249
|
| XianyuAppraise
|
|
6179
6250
|
| XianyuCar
|
|
6251
|
+
| XianyuCco
|
|
6180
6252
|
| XianyuCtox
|
|
6181
6253
|
| XianyuEnvironment
|
|
6182
6254
|
| XianyuFishmarket
|
|
6183
6255
|
| XianyuHjbt
|
|
6184
6256
|
| XianyuIsv
|
|
6185
6257
|
| XianyuMarketrecycle
|
|
6258
|
+
| XianyuOutlet
|
|
6186
6259
|
| XianyuRecycle
|
|
6187
6260
|
| XianyuRegister
|
|
6188
6261
|
| XianyuTemplate
|
|
6189
|
-
| XianyuTender
|
|
6262
|
+
| XianyuTender
|
|
6263
|
+
| XianyuYellowbox
|
|
6264
|
+
| XianyuYushi;
|
|
6190
6265
|
/**
|
|
6191
6266
|
* - {@link YoukuAigc}
|
|
6192
6267
|
* - {@link YoukuTvosappstore}
|
package/types/taobao.d.ts
CHANGED
|
@@ -7014,13 +7014,13 @@ declare namespace Taobao.Zk {
|
|
|
7014
7014
|
/** 货品鉴别单号 */
|
|
7015
7015
|
biz_identify_order_id: string;
|
|
7016
7016
|
/** 品牌id */
|
|
7017
|
-
brand_id
|
|
7017
|
+
brand_id?: string;
|
|
7018
7018
|
/** 品牌名称 */
|
|
7019
|
-
brand_name
|
|
7019
|
+
brand_name?: string;
|
|
7020
7020
|
/** 检测点 */
|
|
7021
|
-
check_point
|
|
7021
|
+
check_point?: string;
|
|
7022
7022
|
/** 货号 */
|
|
7023
|
-
goods_number
|
|
7023
|
+
goods_number?: string;
|
|
7024
7024
|
/** 机构id */
|
|
7025
7025
|
identify_institution_id: string;
|
|
7026
7026
|
/** 货品鉴别id */
|
|
@@ -7028,21 +7028,35 @@ declare namespace Taobao.Zk {
|
|
|
7028
7028
|
/** 需求鉴别id */
|
|
7029
7029
|
identify_request_id: string;
|
|
7030
7030
|
/** 行业id */
|
|
7031
|
-
industry_id
|
|
7031
|
+
industry_id?: string;
|
|
7032
7032
|
/** 行业名称 */
|
|
7033
|
-
industry_name
|
|
7033
|
+
industry_name?: string;
|
|
7034
7034
|
/** 商品id */
|
|
7035
|
-
item_id
|
|
7035
|
+
item_id?: string;
|
|
7036
|
+
/** 是否二次鉴别 */
|
|
7037
|
+
resale?: boolean;
|
|
7036
7038
|
/** skuId */
|
|
7037
|
-
sku_id
|
|
7039
|
+
sku_id?: string;
|
|
7038
7040
|
/** sku名称 */
|
|
7039
|
-
sku_name
|
|
7041
|
+
sku_name?: string;
|
|
7040
7042
|
/** 商品名称 */
|
|
7041
|
-
title
|
|
7043
|
+
title?: string;
|
|
7042
7044
|
/** 订单号 */
|
|
7043
7045
|
tp_order_id: string;
|
|
7044
7046
|
}
|
|
7045
7047
|
|
|
7048
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2612&docType=9 淘宝真酷二次鉴别通知} */
|
|
7049
|
+
interface CloudIdentifyResaleNotify {
|
|
7050
|
+
/** 货品鉴别单号 */
|
|
7051
|
+
identify_order_id: string;
|
|
7052
|
+
/** 鉴别请求单号 */
|
|
7053
|
+
identify_request_id: string;
|
|
7054
|
+
/** 是否二次鉴别 */
|
|
7055
|
+
resale: boolean;
|
|
7056
|
+
/** 变更时间 */
|
|
7057
|
+
time?: string;
|
|
7058
|
+
}
|
|
7059
|
+
|
|
7046
7060
|
/** {@link https://open.taobao.com/tmc.htm?docId=2581&docType=9 淘宝真酷一段物流发货消息} */
|
|
7047
7061
|
interface FirstLogisticsNotify {
|
|
7048
7062
|
/** 鉴定机构id */
|
|
@@ -7063,6 +7077,20 @@ declare namespace Taobao.Zk {
|
|
|
7063
7077
|
tp_order_id: string;
|
|
7064
7078
|
}
|
|
7065
7079
|
|
|
7080
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2616&docType=9 淘宝真酷-一段运单号修改消息} */
|
|
7081
|
+
interface FirstLogisticsUpdateNotify {
|
|
7082
|
+
/** 货品鉴别单id */
|
|
7083
|
+
identify_order_id: string;
|
|
7084
|
+
/** 需求鉴别单号 */
|
|
7085
|
+
identify_request_id: string;
|
|
7086
|
+
/** 运单号(修改后) */
|
|
7087
|
+
new_mail_no?: string;
|
|
7088
|
+
/** 运单号(修改前) */
|
|
7089
|
+
old_mail_no?: string;
|
|
7090
|
+
/** 订单号 */
|
|
7091
|
+
tp_order_id: string;
|
|
7092
|
+
}
|
|
7093
|
+
|
|
7066
7094
|
/** {@link https://open.taobao.com/tmc.htm?docId=2571&docType=9 淘宝真酷需求鉴别单创建消息} */
|
|
7067
7095
|
interface IdentifyCreate {
|
|
7068
7096
|
/** 鉴定机构id */
|
|
@@ -7073,6 +7101,18 @@ declare namespace Taobao.Zk {
|
|
|
7073
7101
|
identify_request_id: string;
|
|
7074
7102
|
}
|
|
7075
7103
|
|
|
7104
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2620&docType=9 淘宝真酷鉴别单暂停通知} */
|
|
7105
|
+
interface PauseNotify {
|
|
7106
|
+
/** 货品鉴别单号 */
|
|
7107
|
+
biz_identify_order_id: string;
|
|
7108
|
+
/** 需求鉴别单号 */
|
|
7109
|
+
biz_identify_request_id: string;
|
|
7110
|
+
/** 是否暂停 */
|
|
7111
|
+
is_pause: boolean;
|
|
7112
|
+
/** 订单号 */
|
|
7113
|
+
tp_order_id: string;
|
|
7114
|
+
}
|
|
7115
|
+
|
|
7076
7116
|
/** {@link https://open.taobao.com/tmc.htm?docId=2589&docType=9 真酷鉴定用户退款通知} */
|
|
7077
7117
|
interface RefundNotify {
|
|
7078
7118
|
/** 鉴定机构id */
|
package/types/xianyu.d.ts
CHANGED
|
@@ -45,6 +45,41 @@ declare namespace Xianyu.Car {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
/** 闲鱼 */
|
|
49
|
+
declare namespace Xianyu.Cco {
|
|
50
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2621&docType=9 闲鱼投诉消息} */
|
|
51
|
+
interface Complain {
|
|
52
|
+
/** 发起投诉用户id */
|
|
53
|
+
complainant_id: number;
|
|
54
|
+
/** 发起投诉用户类型 seller:卖家;buyer:买家 */
|
|
55
|
+
complainant_role: string;
|
|
56
|
+
/** 资损金额 单位是分 */
|
|
57
|
+
complain_amount?: number;
|
|
58
|
+
/** 投诉id */
|
|
59
|
+
complain_id: number;
|
|
60
|
+
/** 投诉子类型,投诉类型对应的二级类型 */
|
|
61
|
+
complain_sub_type: number;
|
|
62
|
+
/** 投诉类型 */
|
|
63
|
+
complain_type: number;
|
|
64
|
+
/** 投诉单流转前状态的status */
|
|
65
|
+
from_status: number;
|
|
66
|
+
/** 投诉创建时间 2024-01-08 21:41:15 */
|
|
67
|
+
gmt_create: string;
|
|
68
|
+
/** 消息类型:submit创建 statusChange状态变更 */
|
|
69
|
+
msg_type: string;
|
|
70
|
+
/** 订单id */
|
|
71
|
+
order_id: number;
|
|
72
|
+
/** 凭证描述 */
|
|
73
|
+
proof_desc?: string;
|
|
74
|
+
/** 用户上传的凭证图片,多个图片用英文逗号分隔 */
|
|
75
|
+
proof_pic_list?: string;
|
|
76
|
+
/** 被投诉用户id */
|
|
77
|
+
respondent_id: number;
|
|
78
|
+
/** 投诉单流转后状态的status */
|
|
79
|
+
to_status: number;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
48
83
|
/** 闲鱼 */
|
|
49
84
|
declare namespace Xianyu.Ctox {
|
|
50
85
|
/** {@link https://open.taobao.com/tmc.htm?docId=2564&docType=9 闲鱼C2X抽佣退佣消息同步} */
|
|
@@ -67,6 +102,8 @@ declare namespace Xianyu.Ctox {
|
|
|
67
102
|
interface PayDkChange {
|
|
68
103
|
/** 主订单(保卖订单等) */
|
|
69
104
|
biz_order_id: string;
|
|
105
|
+
/** 业务类型 */
|
|
106
|
+
biz_type?: string;
|
|
70
107
|
/** 代扣金额,分 */
|
|
71
108
|
confirm_fee: string;
|
|
72
109
|
/** 代扣流水号 */
|
|
@@ -183,6 +220,55 @@ declare namespace Xianyu.Marketrecycle {
|
|
|
183
220
|
}
|
|
184
221
|
}
|
|
185
222
|
|
|
223
|
+
/** 闲鱼 */
|
|
224
|
+
declare namespace Xianyu.Outlet {
|
|
225
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2605&docType=9 闲鱼奥莱周期拍拍品创建} */
|
|
226
|
+
interface CycleBuyVendueCreate {
|
|
227
|
+
/** 扩展参数 */
|
|
228
|
+
attributes?: string;
|
|
229
|
+
/** 业务类型 */
|
|
230
|
+
biz?: number;
|
|
231
|
+
/** 买家保证金 */
|
|
232
|
+
buyer_deposit?: number;
|
|
233
|
+
/** 描述地址 */
|
|
234
|
+
desc_tfs_url?: string;
|
|
235
|
+
/** 拍卖结束时间 */
|
|
236
|
+
end_time: string;
|
|
237
|
+
/** 创建时间 */
|
|
238
|
+
gmt_create: string;
|
|
239
|
+
/** 修改时间 */
|
|
240
|
+
gmt_modified: string;
|
|
241
|
+
/** 初始结束时间 */
|
|
242
|
+
init_end_time?: string;
|
|
243
|
+
/** 商品id */
|
|
244
|
+
item_id: number;
|
|
245
|
+
/** 最大价格 */
|
|
246
|
+
max_price?: number;
|
|
247
|
+
/** 最小价格 */
|
|
248
|
+
mini_price?: number;
|
|
249
|
+
/** 图片地址 */
|
|
250
|
+
pict_url?: string;
|
|
251
|
+
/** 价格 */
|
|
252
|
+
price_margin?: number;
|
|
253
|
+
/** 卖家id */
|
|
254
|
+
seller_id: number;
|
|
255
|
+
/** 起拍价 */
|
|
256
|
+
start_price: number;
|
|
257
|
+
/** 拍卖开始时间 */
|
|
258
|
+
start_time: string;
|
|
259
|
+
/** 拍品状态 */
|
|
260
|
+
status?: number;
|
|
261
|
+
/** 标题 */
|
|
262
|
+
title?: string;
|
|
263
|
+
/** 拍品id */
|
|
264
|
+
vendue_id: number;
|
|
265
|
+
/** 拍卖状态 */
|
|
266
|
+
vendue_status?: number;
|
|
267
|
+
/** 视频地址 */
|
|
268
|
+
video?: string;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
186
272
|
/** 闲鱼 */
|
|
187
273
|
declare namespace Xianyu.Recycle {
|
|
188
274
|
/** {@link https://open.taobao.com/tmc.htm?docId=1209&docType=9 订单状态同步给回收商} */
|
|
@@ -336,3 +422,41 @@ declare namespace Xianyu.Tender {
|
|
|
336
422
|
order_sub_status: string;
|
|
337
423
|
}
|
|
338
424
|
}
|
|
425
|
+
|
|
426
|
+
/** 闲鱼 */
|
|
427
|
+
declare namespace Xianyu.Yellowbox {
|
|
428
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2608&docType=9 GPU模版处罚消息通知} */
|
|
429
|
+
interface GpuTemplatePunish {
|
|
430
|
+
/** 动作类型, PUNISH处罚, CANCEL撤销 */
|
|
431
|
+
action_code: string;
|
|
432
|
+
/** 模版描述 */
|
|
433
|
+
gpu_desc: string;
|
|
434
|
+
/** GPU主键 */
|
|
435
|
+
gpu_id: number;
|
|
436
|
+
/** 模版id */
|
|
437
|
+
id: number;
|
|
438
|
+
/** 市场价,分为单位 */
|
|
439
|
+
market_price?: number;
|
|
440
|
+
/** 货号 */
|
|
441
|
+
product_code?: string;
|
|
442
|
+
/** 租户 */
|
|
443
|
+
tenant: string;
|
|
444
|
+
/** 标题 */
|
|
445
|
+
title?: string;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
/** 闲鱼 */
|
|
450
|
+
declare namespace Xianyu.Yushi {
|
|
451
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2601&docType=9 闲鱼商品下架消息} */
|
|
452
|
+
interface TsOffShelf {
|
|
453
|
+
/** 卖家订单 */
|
|
454
|
+
biz_order_id: string;
|
|
455
|
+
/** 是否永久删除 */
|
|
456
|
+
is_forever_del: string;
|
|
457
|
+
/** 商品ID */
|
|
458
|
+
item_id: string;
|
|
459
|
+
/** 场次 */
|
|
460
|
+
schedule: string;
|
|
461
|
+
}
|
|
462
|
+
}
|