tmc.js 0.3.43 → 0.3.45
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 -4
- package/package.json +1 -1
- package/types/alibaba.d.ts +25 -0
- package/types/damai.d.ts +20 -0
- package/types/fliggy.d.ts +2 -0
- package/types/idle.d.ts +11 -0
- package/types/index.d.ts +60 -0
- package/types/message.in.d.ts +64 -4
- package/types/message.out.d.ts +1 -1
- package/types/taobao.d.ts +92 -8
- package/types/tmall.d.ts +34 -0
- package/types/xianyu.d.ts +15 -0
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+ 类别,514+ 消息数</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
|
+
| 天猫服务 | 32 |
|
|
154
154
|
| 天猫美妆 | 2 |
|
|
155
155
|
| 聚石塔 | 9 |
|
|
156
156
|
| 淘宝物流 | 1 |
|
|
@@ -192,7 +192,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
|
|
|
192
192
|
| 商旅API | 3 |
|
|
193
193
|
| 阿里健康-O2O中台 | 2 |
|
|
194
194
|
| 业务平台新零售-消息上行 | 2 |
|
|
195
|
-
| 大麦第三方票务供应商接入 |
|
|
195
|
+
| 大麦第三方票务供应商接入 | 10 |
|
|
196
196
|
| TVOS应用审核平台 | 1 |
|
|
197
197
|
| Gifting送礼 | 1 |
|
|
198
198
|
| 五道口商品 | 2 |
|
|
@@ -212,7 +212,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
|
|
|
212
212
|
| 大资产拍卖Top端拍品消息 | 2 |
|
|
213
213
|
| AE-任务平台消息 | 1 |
|
|
214
214
|
| 天猫汽车 | 5 |
|
|
215
|
-
| 阿信消息通知前台类目 |
|
|
215
|
+
| 阿信消息通知前台类目 | 6 |
|
|
216
216
|
| 阿里健康追溯码 | 1 |
|
|
217
217
|
| 自动驾驶API | 3 |
|
|
218
218
|
| MMC五盘货项目 | 5 |
|
package/package.json
CHANGED
package/types/alibaba.d.ts
CHANGED
|
@@ -964,6 +964,31 @@ declare namespace Alibaba.Crowdsourcing {
|
|
|
964
964
|
}
|
|
965
965
|
}
|
|
966
966
|
|
|
967
|
+
/** 三小时公益 */
|
|
968
|
+
declare namespace Alibaba.Csr {
|
|
969
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2596&docType=9 公益三小时积分捐行为同步} */
|
|
970
|
+
interface DonatePointSync {
|
|
971
|
+
/** 捐赠积分数量 */
|
|
972
|
+
donate_point_num: string;
|
|
973
|
+
/** 捐赠时间毫秒级时间戳 */
|
|
974
|
+
donate_time: string;
|
|
975
|
+
/** 消息幂等id */
|
|
976
|
+
msg_id: string;
|
|
977
|
+
/** 合作方绑定三小时账户时传递的用户标识 */
|
|
978
|
+
user_account_code: string;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2594&docType=9 3小时积分捐同步活力值到志愿汇} */
|
|
982
|
+
interface ZhiyuanhuiSyncEnergy {
|
|
983
|
+
/** 捐赠爱能数量 */
|
|
984
|
+
donate_love_bean_num: string;
|
|
985
|
+
/** 用户3小时id#用户捐赠记录id */
|
|
986
|
+
msg_id: string;
|
|
987
|
+
/** 用户志愿汇侧用户标识 */
|
|
988
|
+
zyh_user_account_code: string;
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
|
|
967
992
|
/** 阿里楼盘 */
|
|
968
993
|
declare namespace Alibaba.Decoration {
|
|
969
994
|
/** {@link https://open.taobao.com/tmc.htm?docId=2014&docType=9 AI设计方案状态变更通知} */
|
package/types/damai.d.ts
CHANGED
|
@@ -40,6 +40,26 @@ declare namespace Damai.Distribution {
|
|
|
40
40
|
project_id: number;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2597&docType=9 分销退票审核结果消息通知} */
|
|
44
|
+
interface RefundAuditResult {
|
|
45
|
+
/** 退票申请主键ID */
|
|
46
|
+
audit_id: number;
|
|
47
|
+
/** 审核人 */
|
|
48
|
+
audit_staffer_name: string;
|
|
49
|
+
/** 审核状态:10=提交审核状态;30=审核通过状态;40=驳回状态 */
|
|
50
|
+
audit_status: number;
|
|
51
|
+
/** 审核时间时间戳 */
|
|
52
|
+
audit_time: number;
|
|
53
|
+
/** 外部订单号 */
|
|
54
|
+
outoid: string;
|
|
55
|
+
/** 大麦主订单ID */
|
|
56
|
+
poid: number;
|
|
57
|
+
/** 项目名称 */
|
|
58
|
+
project_name: string;
|
|
59
|
+
/** 退票理由或描述 */
|
|
60
|
+
refund_describe: string;
|
|
61
|
+
}
|
|
62
|
+
|
|
43
63
|
/** {@link https://open.taobao.com/tmc.htm?docId=2334&docType=9 退票通知} */
|
|
44
64
|
interface RefundOrder {
|
|
45
65
|
/** 渠道id */
|
package/types/fliggy.d.ts
CHANGED
|
@@ -169,6 +169,8 @@ declare namespace Fliggy.Visa {
|
|
|
169
169
|
apply_mode: number;
|
|
170
170
|
/** 申请人状态 */
|
|
171
171
|
apply_status: number;
|
|
172
|
+
/** 订单拓展信息,详情见[签证对接文档](https://open.alitrip.com/docs/doc.htm?docType=1&articleId=121404) */
|
|
173
|
+
biz_exts: string;
|
|
172
174
|
/** 订单id */
|
|
173
175
|
order_id: string;
|
|
174
176
|
/** 办签进度流程类型 */
|
package/types/idle.d.ts
CHANGED
|
@@ -163,6 +163,17 @@ declare namespace Idle.Cycleshop {
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
/** 闲鱼 */
|
|
167
|
+
declare namespace Idle.Distribution {
|
|
168
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2598&docType=9 分销闲管家消息通道} */
|
|
169
|
+
interface ItemChange {
|
|
170
|
+
/** 消息类型 */
|
|
171
|
+
event_type: string;
|
|
172
|
+
/** 发生变更的消息列表 */
|
|
173
|
+
item_change_info: string;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
166
177
|
/** 闲鱼 */
|
|
167
178
|
declare namespace Idle.Newoutlets {
|
|
168
179
|
/** {@link https://open.taobao.com/tmc.htm?docId=2584&docType=9 闲鱼用户身份变更消息} */
|
package/types/index.d.ts
CHANGED
|
@@ -198,6 +198,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
198
198
|
alibaba_crm_OutboundInfoMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrmOutboundInfoMessage) => void): TaoMessageConsumer;
|
|
199
199
|
/** {@link IncomingMessage.AlibabaCrowdsourcingMaterial - > 素材生成通知} */
|
|
200
200
|
alibaba_crowdsourcing_Material(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrowdsourcingMaterial) => void): TaoMessageConsumer;
|
|
201
|
+
/** {@link IncomingMessage.AlibabaCsrDonatePointSync 三小时公益 > 公益三小时积分捐行为同步} */
|
|
202
|
+
alibaba_csr_DonatePointSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsrDonatePointSync) => void): TaoMessageConsumer;
|
|
203
|
+
/** {@link IncomingMessage.AlibabaCsrZhiyuanhuiSyncEnergy 三小时公益 > 3小时积分捐同步活力值到志愿汇} */
|
|
204
|
+
alibaba_csr_ZhiyuanhuiSyncEnergy(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsrZhiyuanhuiSyncEnergy) => void): TaoMessageConsumer;
|
|
201
205
|
/** {@link IncomingMessage.AlibabaDecorationAidesignFinish 阿里楼盘 > AI设计方案状态变更通知} */
|
|
202
206
|
alibaba_decoration_AidesignFinish(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaDecorationAidesignFinish) => void): TaoMessageConsumer;
|
|
203
207
|
/** {@link IncomingMessage.AlibabaDecorationApartmentExport 阿里楼盘 > 生成户型图消息} */
|
|
@@ -1012,6 +1016,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1012
1016
|
damai_distribution_PreSaleToNow(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
|
|
1013
1017
|
/** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
1014
1018
|
damai_distribution_ProjectStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionProjectStatus) => void): TaoMessageConsumer;
|
|
1019
|
+
/** {@link IncomingMessage.DamaiDistributionRefundAuditResult 大麦第三方票务供应商接入 > 分销退票审核结果消息通知} */
|
|
1020
|
+
damai_distribution_RefundAuditResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundAuditResult) => void): TaoMessageConsumer;
|
|
1015
1021
|
/** {@link IncomingMessage.DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知} */
|
|
1016
1022
|
damai_distribution_RefundOrder(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundOrder) => void): TaoMessageConsumer;
|
|
1017
1023
|
/** {@link IncomingMessage.DamaiDistributionRefundRule 大麦第三方票务供应商接入 > 项目退款规则} */
|
|
@@ -1140,6 +1146,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1140
1146
|
idle_cycleshop_GoodsNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
|
|
1141
1147
|
/** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
1142
1148
|
idle_cycleshop_SaleOrderNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopSaleOrderNotice) => void): TaoMessageConsumer;
|
|
1149
|
+
/** {@link IncomingMessage.IdleDistributionItemChange 闲鱼 > 分销闲管家消息通道} */
|
|
1150
|
+
idle_distribution_ItemChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleDistributionItemChange) => void): TaoMessageConsumer;
|
|
1143
1151
|
/** {@link IncomingMessage.IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
1144
1152
|
idle_newoutlets_UserTagNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutletsUserTagNotice) => void): TaoMessageConsumer;
|
|
1145
1153
|
/** {@link IncomingMessage.IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
@@ -2082,10 +2090,20 @@ declare interface TaoTopicsDescriptor {
|
|
|
2082
2090
|
taobao_xiaowei_Test(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
|
|
2083
2091
|
/** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
2084
2092
|
taobao_yichao_WarrantyCodeStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
2093
|
+
/** {@link IncomingMessage.TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
2094
|
+
taobao_zk_CloudIdentifyCreateNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyCreateNotify) => void): TaoMessageConsumer;
|
|
2085
2095
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2086
2096
|
taobao_zk_FirstLogisticsNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
2097
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
2098
|
+
taobao_zk_FirstLogisticsReceivedNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
|
|
2087
2099
|
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2088
2100
|
taobao_zk_IdentifyCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
2101
|
+
/** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
2102
|
+
taobao_zk_RefundNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
|
|
2103
|
+
/** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
2104
|
+
taobao_zk_SecondLogisticsGotNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkSecondLogisticsGotNotify) => void): TaoMessageConsumer;
|
|
2105
|
+
/** {@link IncomingMessage.TaobaoZkSubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知} */
|
|
2106
|
+
taobao_zk_SubmitQuote(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkSubmitQuote) => void): TaoMessageConsumer;
|
|
2089
2107
|
/** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
2090
2108
|
taotao_film_ThirdPartyRefundPush(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
|
|
2091
2109
|
/** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -2136,6 +2154,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2136
2154
|
tmall_fuwu_NewAnomalyRecourseStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
|
|
2137
2155
|
/** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
2138
2156
|
tmall_fuwu_RateMessageTP(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
|
|
2157
|
+
/** {@link IncomingMessage.TmallFuwuSendCallRecord 天猫服务 > 发送通话记录} */
|
|
2158
|
+
tmall_fuwu_SendCallRecord(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuSendCallRecord) => void): TaoMessageConsumer;
|
|
2139
2159
|
/** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
2140
2160
|
tmall_fuwu_ServiceItemUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuServiceItemUpdate) => void): TaoMessageConsumer;
|
|
2141
2161
|
/** {@link IncomingMessage.TmallFuwuServiceMonitorMessage 天猫服务 > 服务预警消息} */
|
|
@@ -2254,6 +2274,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2254
2274
|
tmall_scm_SendTmcsDistributeSettleFee(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
|
|
2255
2275
|
/** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
2256
2276
|
tmall_service_CycleBillInvoice(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
|
|
2277
|
+
/** {@link IncomingMessage.TmallServicecenterConsultationMessage 天猫服务 > 咨询工单消息} */
|
|
2278
|
+
tmall_servicecenter_ConsultationMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterConsultationMessage) => void): TaoMessageConsumer;
|
|
2257
2279
|
/** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
2258
2280
|
tmall_servicecenter_TaskUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
|
|
2259
2281
|
/** {@link IncomingMessage.TmallServiceplatformServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -2338,6 +2360,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2338
2360
|
xianyu_environment_EventSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
|
|
2339
2361
|
/** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
2340
2362
|
xianyu_fishmarket_ItemSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
|
|
2363
|
+
/** {@link IncomingMessage.XianyuHjbtPaymentStatus 闲鱼 > 换机补贴打款消息} */
|
|
2364
|
+
xianyu_hjbt_PaymentStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuHjbtPaymentStatus) => void): TaoMessageConsumer;
|
|
2341
2365
|
/** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
2342
2366
|
xianyu_isv_OrderRemind(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
|
|
2343
2367
|
/** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -2404,6 +2428,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2404
2428
|
alibaba_crm(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrm) => void): TaoMessageConsumer;
|
|
2405
2429
|
/** {@link IncomingMessage.AlibabaCrowdsourcing} */
|
|
2406
2430
|
alibaba_crowdsourcing(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrowdsourcing) => void): TaoMessageConsumer;
|
|
2431
|
+
/** {@link IncomingMessage.AlibabaCsr} */
|
|
2432
|
+
alibaba_csr(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsr) => void): TaoMessageConsumer;
|
|
2407
2433
|
/** {@link IncomingMessage.AlibabaDecoration} */
|
|
2408
2434
|
alibaba_decoration(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaDecoration) => void): TaoMessageConsumer;
|
|
2409
2435
|
/** {@link IncomingMessage.AlibabaEinvoice} */
|
|
@@ -2706,6 +2732,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2706
2732
|
idle_cro(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
|
|
2707
2733
|
/** {@link IncomingMessage.IdleCycleshop} */
|
|
2708
2734
|
idle_cycleshop(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
|
|
2735
|
+
/** {@link IncomingMessage.IdleDistribution} */
|
|
2736
|
+
idle_distribution(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleDistribution) => void): TaoMessageConsumer;
|
|
2709
2737
|
/** {@link IncomingMessage.IdleNewoutlets} */
|
|
2710
2738
|
idle_newoutlets(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutlets) => void): TaoMessageConsumer;
|
|
2711
2739
|
/** {@link IncomingMessage.IdleRecycle} */
|
|
@@ -3044,6 +3072,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3044
3072
|
xianyu_environment(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
|
|
3045
3073
|
/** {@link IncomingMessage.XianyuFishmarket} */
|
|
3046
3074
|
xianyu_fishmarket(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
|
|
3075
|
+
/** {@link IncomingMessage.XianyuHjbt} */
|
|
3076
|
+
xianyu_hjbt(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuHjbt) => void): TaoMessageConsumer;
|
|
3047
3077
|
/** {@link IncomingMessage.XianyuIsv} */
|
|
3048
3078
|
xianyu_isv(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
3049
3079
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
|
@@ -3293,6 +3323,10 @@ declare interface TaoEventsListener {
|
|
|
3293
3323
|
on(topic: 'alibaba_crm_OutboundInfoMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrmOutboundInfoMessage) => void): TaoMessageConsumer;
|
|
3294
3324
|
/** {@link IncomingMessage.AlibabaCrowdsourcingMaterial - > 素材生成通知} */
|
|
3295
3325
|
on(topic: 'alibaba_crowdsourcing_Material', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrowdsourcingMaterial) => void): TaoMessageConsumer;
|
|
3326
|
+
/** {@link IncomingMessage.AlibabaCsrDonatePointSync 三小时公益 > 公益三小时积分捐行为同步} */
|
|
3327
|
+
on(topic: 'alibaba_csr_DonatePointSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsrDonatePointSync) => void): TaoMessageConsumer;
|
|
3328
|
+
/** {@link IncomingMessage.AlibabaCsrZhiyuanhuiSyncEnergy 三小时公益 > 3小时积分捐同步活力值到志愿汇} */
|
|
3329
|
+
on(topic: 'alibaba_csr_ZhiyuanhuiSyncEnergy', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsrZhiyuanhuiSyncEnergy) => void): TaoMessageConsumer;
|
|
3296
3330
|
/** {@link IncomingMessage.AlibabaDecorationAidesignFinish 阿里楼盘 > AI设计方案状态变更通知} */
|
|
3297
3331
|
on(topic: 'alibaba_decoration_AidesignFinish', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaDecorationAidesignFinish) => void): TaoMessageConsumer;
|
|
3298
3332
|
/** {@link IncomingMessage.AlibabaDecorationApartmentExport 阿里楼盘 > 生成户型图消息} */
|
|
@@ -4107,6 +4141,8 @@ declare interface TaoEventsListener {
|
|
|
4107
4141
|
on(topic: 'damai_distribution_PreSaleToNow', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
|
|
4108
4142
|
/** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
4109
4143
|
on(topic: 'damai_distribution_ProjectStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionProjectStatus) => void): TaoMessageConsumer;
|
|
4144
|
+
/** {@link IncomingMessage.DamaiDistributionRefundAuditResult 大麦第三方票务供应商接入 > 分销退票审核结果消息通知} */
|
|
4145
|
+
on(topic: 'damai_distribution_RefundAuditResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundAuditResult) => void): TaoMessageConsumer;
|
|
4110
4146
|
/** {@link IncomingMessage.DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知} */
|
|
4111
4147
|
on(topic: 'damai_distribution_RefundOrder', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundOrder) => void): TaoMessageConsumer;
|
|
4112
4148
|
/** {@link IncomingMessage.DamaiDistributionRefundRule 大麦第三方票务供应商接入 > 项目退款规则} */
|
|
@@ -4235,6 +4271,8 @@ declare interface TaoEventsListener {
|
|
|
4235
4271
|
on(topic: 'idle_cycleshop_GoodsNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopGoodsNotice) => void): TaoMessageConsumer;
|
|
4236
4272
|
/** {@link IncomingMessage.IdleCycleshopSaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
4237
4273
|
on(topic: 'idle_cycleshop_SaleOrderNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshopSaleOrderNotice) => void): TaoMessageConsumer;
|
|
4274
|
+
/** {@link IncomingMessage.IdleDistributionItemChange 闲鱼 > 分销闲管家消息通道} */
|
|
4275
|
+
on(topic: 'idle_distribution_ItemChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleDistributionItemChange) => void): TaoMessageConsumer;
|
|
4238
4276
|
/** {@link IncomingMessage.IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
4239
4277
|
on(topic: 'idle_newoutlets_UserTagNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutletsUserTagNotice) => void): TaoMessageConsumer;
|
|
4240
4278
|
/** {@link IncomingMessage.IdleRecycleOrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
@@ -5177,10 +5215,20 @@ declare interface TaoEventsListener {
|
|
|
5177
5215
|
on(topic: 'taobao_xiaowei_Test', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoXiaoweiTest) => void): TaoMessageConsumer;
|
|
5178
5216
|
/** {@link IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
5179
5217
|
on(topic: 'taobao_yichao_WarrantyCodeStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoYichaoWarrantyCodeStatusUpdate) => void): TaoMessageConsumer;
|
|
5218
|
+
/** {@link IncomingMessage.TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
5219
|
+
on(topic: 'taobao_zk_CloudIdentifyCreateNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkCloudIdentifyCreateNotify) => void): TaoMessageConsumer;
|
|
5180
5220
|
/** {@link IncomingMessage.TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
5181
5221
|
on(topic: 'taobao_zk_FirstLogisticsNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsNotify) => void): TaoMessageConsumer;
|
|
5222
|
+
/** {@link IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
5223
|
+
on(topic: 'taobao_zk_FirstLogisticsReceivedNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkFirstLogisticsReceivedNotify) => void): TaoMessageConsumer;
|
|
5182
5224
|
/** {@link IncomingMessage.TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
5183
5225
|
on(topic: 'taobao_zk_IdentifyCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkIdentifyCreate) => void): TaoMessageConsumer;
|
|
5226
|
+
/** {@link IncomingMessage.TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
5227
|
+
on(topic: 'taobao_zk_RefundNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkRefundNotify) => void): TaoMessageConsumer;
|
|
5228
|
+
/** {@link IncomingMessage.TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
5229
|
+
on(topic: 'taobao_zk_SecondLogisticsGotNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkSecondLogisticsGotNotify) => void): TaoMessageConsumer;
|
|
5230
|
+
/** {@link IncomingMessage.TaobaoZkSubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知} */
|
|
5231
|
+
on(topic: 'taobao_zk_SubmitQuote', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoZkSubmitQuote) => void): TaoMessageConsumer;
|
|
5184
5232
|
/** {@link IncomingMessage.TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
5185
5233
|
on(topic: 'taotao_film_ThirdPartyRefundPush', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaotaoFilmThirdPartyRefundPush) => void): TaoMessageConsumer;
|
|
5186
5234
|
/** {@link IncomingMessage.TmallAliautoStepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -5231,6 +5279,8 @@ declare interface TaoEventsListener {
|
|
|
5231
5279
|
on(topic: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
|
|
5232
5280
|
/** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
5233
5281
|
on(topic: 'tmall_fuwu_RateMessageTP', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
|
|
5282
|
+
/** {@link IncomingMessage.TmallFuwuSendCallRecord 天猫服务 > 发送通话记录} */
|
|
5283
|
+
on(topic: 'tmall_fuwu_SendCallRecord', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuSendCallRecord) => void): TaoMessageConsumer;
|
|
5234
5284
|
/** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
5235
5285
|
on(topic: 'tmall_fuwu_ServiceItemUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuServiceItemUpdate) => void): TaoMessageConsumer;
|
|
5236
5286
|
/** {@link IncomingMessage.TmallFuwuServiceMonitorMessage 天猫服务 > 服务预警消息} */
|
|
@@ -5349,6 +5399,8 @@ declare interface TaoEventsListener {
|
|
|
5349
5399
|
on(topic: 'tmall_scm_SendTmcsDistributeSettleFee', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
|
|
5350
5400
|
/** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
5351
5401
|
on(topic: 'tmall_service_CycleBillInvoice', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
|
|
5402
|
+
/** {@link IncomingMessage.TmallServicecenterConsultationMessage 天猫服务 > 咨询工单消息} */
|
|
5403
|
+
on(topic: 'tmall_servicecenter_ConsultationMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterConsultationMessage) => void): TaoMessageConsumer;
|
|
5352
5404
|
/** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
5353
5405
|
on(topic: 'tmall_servicecenter_TaskUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
|
|
5354
5406
|
/** {@link IncomingMessage.TmallServiceplatformServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -5433,6 +5485,8 @@ declare interface TaoEventsListener {
|
|
|
5433
5485
|
on(topic: 'xianyu_environment_EventSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironmentEventSyn) => void): TaoMessageConsumer;
|
|
5434
5486
|
/** {@link IncomingMessage.XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
5435
5487
|
on(topic: 'xianyu_fishmarket_ItemSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarketItemSyn) => void): TaoMessageConsumer;
|
|
5488
|
+
/** {@link IncomingMessage.XianyuHjbtPaymentStatus 闲鱼 > 换机补贴打款消息} */
|
|
5489
|
+
on(topic: 'xianyu_hjbt_PaymentStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuHjbtPaymentStatus) => void): TaoMessageConsumer;
|
|
5436
5490
|
/** {@link IncomingMessage.XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
5437
5491
|
on(topic: 'xianyu_isv_OrderRemind', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsvOrderRemind) => void): TaoMessageConsumer;
|
|
5438
5492
|
/** {@link IncomingMessage.XianyuMarketrecycleOrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -5499,6 +5553,8 @@ declare interface TaoEventsListener {
|
|
|
5499
5553
|
on(topic: 'alibaba_crm', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrm) => void): TaoMessageConsumer;
|
|
5500
5554
|
/** {@link IncomingMessage.AlibabaCrowdsourcing} */
|
|
5501
5555
|
on(topic: 'alibaba_crowdsourcing', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCrowdsourcing) => void): TaoMessageConsumer;
|
|
5556
|
+
/** {@link IncomingMessage.AlibabaCsr} */
|
|
5557
|
+
on(topic: 'alibaba_csr', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaCsr) => void): TaoMessageConsumer;
|
|
5502
5558
|
/** {@link IncomingMessage.AlibabaDecoration} */
|
|
5503
5559
|
on(topic: 'alibaba_decoration', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaDecoration) => void): TaoMessageConsumer;
|
|
5504
5560
|
/** {@link IncomingMessage.AlibabaEinvoice} */
|
|
@@ -5801,6 +5857,8 @@ declare interface TaoEventsListener {
|
|
|
5801
5857
|
on(topic: 'idle_cro', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCro) => void): TaoMessageConsumer;
|
|
5802
5858
|
/** {@link IncomingMessage.IdleCycleshop} */
|
|
5803
5859
|
on(topic: 'idle_cycleshop', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleCycleshop) => void): TaoMessageConsumer;
|
|
5860
|
+
/** {@link IncomingMessage.IdleDistribution} */
|
|
5861
|
+
on(topic: 'idle_distribution', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleDistribution) => void): TaoMessageConsumer;
|
|
5804
5862
|
/** {@link IncomingMessage.IdleNewoutlets} */
|
|
5805
5863
|
on(topic: 'idle_newoutlets', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleNewoutlets) => void): TaoMessageConsumer;
|
|
5806
5864
|
/** {@link IncomingMessage.IdleRecycle} */
|
|
@@ -6139,6 +6197,8 @@ declare interface TaoEventsListener {
|
|
|
6139
6197
|
on(topic: 'xianyu_environment', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuEnvironment) => void): TaoMessageConsumer;
|
|
6140
6198
|
/** {@link IncomingMessage.XianyuFishmarket} */
|
|
6141
6199
|
on(topic: 'xianyu_fishmarket', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuFishmarket) => void): TaoMessageConsumer;
|
|
6200
|
+
/** {@link IncomingMessage.XianyuHjbt} */
|
|
6201
|
+
on(topic: 'xianyu_hjbt', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuHjbt) => void): TaoMessageConsumer;
|
|
6142
6202
|
/** {@link IncomingMessage.XianyuIsv} */
|
|
6143
6203
|
on(topic: 'xianyu_isv', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuIsv) => void): TaoMessageConsumer;
|
|
6144
6204
|
/** {@link IncomingMessage.XianyuMarketrecycle} */
|
package/types/message.in.d.ts
CHANGED
|
@@ -181,6 +181,10 @@ declare namespace IncomingMessage {
|
|
|
181
181
|
type AlibabaCrmOutboundInfoMessage = Message & { content?: MessageContent & { topic?: 'alibaba_crm_OutboundInfoMessage', content?: string | Alibaba.Crm.OutboundInfoMessage } };
|
|
182
182
|
/** {@link Alibaba.Crowdsourcing.Material - > 素材生成通知} */
|
|
183
183
|
type AlibabaCrowdsourcingMaterial = Message & { content?: MessageContent & { topic?: 'alibaba_crowdsourcing_Material', content?: string | Alibaba.Crowdsourcing.Material } };
|
|
184
|
+
/** {@link Alibaba.Csr.DonatePointSync 三小时公益 > 公益三小时积分捐行为同步} */
|
|
185
|
+
type AlibabaCsrDonatePointSync = Message & { content?: MessageContent & { topic?: 'alibaba_csr_DonatePointSync', content?: string | Alibaba.Csr.DonatePointSync } };
|
|
186
|
+
/** {@link Alibaba.Csr.ZhiyuanhuiSyncEnergy 三小时公益 > 3小时积分捐同步活力值到志愿汇} */
|
|
187
|
+
type AlibabaCsrZhiyuanhuiSyncEnergy = Message & { content?: MessageContent & { topic?: 'alibaba_csr_ZhiyuanhuiSyncEnergy', content?: string | Alibaba.Csr.ZhiyuanhuiSyncEnergy } };
|
|
184
188
|
/** {@link Alibaba.Decoration.AidesignFinish 阿里楼盘 > AI设计方案状态变更通知} */
|
|
185
189
|
type AlibabaDecorationAidesignFinish = Message & { content?: MessageContent & { topic?: 'alibaba_decoration_AidesignFinish', content?: string | Alibaba.Decoration.AidesignFinish } };
|
|
186
190
|
/** {@link Alibaba.Decoration.ApartmentExport 阿里楼盘 > 生成户型图消息} */
|
|
@@ -995,6 +999,8 @@ declare namespace IncomingMessage {
|
|
|
995
999
|
type DamaiDistributionPreSaleToNow = Message & { content?: MessageContent & { topic?: 'damai_distribution_PreSaleToNow', content?: string | Damai.Distribution.PreSaleToNow } };
|
|
996
1000
|
/** {@link Damai.Distribution.ProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
|
|
997
1001
|
type DamaiDistributionProjectStatus = Message & { content?: MessageContent & { topic?: 'damai_distribution_ProjectStatus', content?: string | Damai.Distribution.ProjectStatus } };
|
|
1002
|
+
/** {@link Damai.Distribution.RefundAuditResult 大麦第三方票务供应商接入 > 分销退票审核结果消息通知} */
|
|
1003
|
+
type DamaiDistributionRefundAuditResult = Message & { content?: MessageContent & { topic?: 'damai_distribution_RefundAuditResult', content?: string | Damai.Distribution.RefundAuditResult } };
|
|
998
1004
|
/** {@link Damai.Distribution.RefundOrder 大麦第三方票务供应商接入 > 退票通知} */
|
|
999
1005
|
type DamaiDistributionRefundOrder = Message & { content?: MessageContent & { topic?: 'damai_distribution_RefundOrder', content?: string | Damai.Distribution.RefundOrder } };
|
|
1000
1006
|
/** {@link Damai.Distribution.RefundRule 大麦第三方票务供应商接入 > 项目退款规则} */
|
|
@@ -1123,6 +1129,8 @@ declare namespace IncomingMessage {
|
|
|
1123
1129
|
type IdleCycleshopGoodsNotice = Message & { content?: MessageContent & { topic?: 'idle_cycleshop_GoodsNotice', content?: string | Idle.Cycleshop.GoodsNotice } };
|
|
1124
1130
|
/** {@link Idle.Cycleshop.SaleOrderNotice 闲鱼 > 闲鱼循环商店-销售单变更通知} */
|
|
1125
1131
|
type IdleCycleshopSaleOrderNotice = Message & { content?: MessageContent & { topic?: 'idle_cycleshop_SaleOrderNotice', content?: string | Idle.Cycleshop.SaleOrderNotice } };
|
|
1132
|
+
/** {@link Idle.Distribution.ItemChange 闲鱼 > 分销闲管家消息通道} */
|
|
1133
|
+
type IdleDistributionItemChange = Message & { content?: MessageContent & { topic?: 'idle_distribution_ItemChange', content?: string | Idle.Distribution.ItemChange } };
|
|
1126
1134
|
/** {@link Idle.Newoutlets.UserTagNotice 闲鱼 > 闲鱼用户身份变更消息} */
|
|
1127
1135
|
type IdleNewoutletsUserTagNotice = Message & { content?: MessageContent & { topic?: 'idle_newoutlets_UserTagNotice', content?: string | Idle.Newoutlets.UserTagNotice } };
|
|
1128
1136
|
/** {@link Idle.Recycle.OrderStateSyn 闲鱼回收商消息 > 闲鱼回收业务订单消息} */
|
|
@@ -2065,10 +2073,20 @@ declare namespace IncomingMessage {
|
|
|
2065
2073
|
type TaobaoXiaoweiTest = Message & { content?: MessageContent & { topic?: 'taobao_xiaowei_Test', content?: string | Taobao.Xiaowei.Test } };
|
|
2066
2074
|
/** {@link Taobao.Yichao.WarrantyCodeStatusUpdate 淘宝 > 蚁巢保修码状态变更消息} */
|
|
2067
2075
|
type TaobaoYichaoWarrantyCodeStatusUpdate = Message & { content?: MessageContent & { topic?: 'taobao_yichao_WarrantyCodeStatusUpdate', content?: string | Taobao.Yichao.WarrantyCodeStatusUpdate } };
|
|
2076
|
+
/** {@link Taobao.Zk.CloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知} */
|
|
2077
|
+
type TaobaoZkCloudIdentifyCreateNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_CloudIdentifyCreateNotify', content?: string | Taobao.Zk.CloudIdentifyCreateNotify } };
|
|
2068
2078
|
/** {@link Taobao.Zk.FirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息} */
|
|
2069
2079
|
type TaobaoZkFirstLogisticsNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsNotify', content?: string | Taobao.Zk.FirstLogisticsNotify } };
|
|
2080
|
+
/** {@link Taobao.Zk.FirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知} */
|
|
2081
|
+
type TaobaoZkFirstLogisticsReceivedNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_FirstLogisticsReceivedNotify', content?: string | Taobao.Zk.FirstLogisticsReceivedNotify } };
|
|
2070
2082
|
/** {@link Taobao.Zk.IdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息} */
|
|
2071
2083
|
type TaobaoZkIdentifyCreate = Message & { content?: MessageContent & { topic?: 'taobao_zk_IdentifyCreate', content?: string | Taobao.Zk.IdentifyCreate } };
|
|
2084
|
+
/** {@link Taobao.Zk.RefundNotify 淘宝真酷 > 真酷鉴定用户退款通知} */
|
|
2085
|
+
type TaobaoZkRefundNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_RefundNotify', content?: string | Taobao.Zk.RefundNotify } };
|
|
2086
|
+
/** {@link Taobao.Zk.SecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构} */
|
|
2087
|
+
type TaobaoZkSecondLogisticsGotNotify = Message & { content?: MessageContent & { topic?: 'taobao_zk_SecondLogisticsGotNotify', content?: string | Taobao.Zk.SecondLogisticsGotNotify } };
|
|
2088
|
+
/** {@link Taobao.Zk.SubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知} */
|
|
2089
|
+
type TaobaoZkSubmitQuote = Message & { content?: MessageContent & { topic?: 'taobao_zk_SubmitQuote', content?: string | Taobao.Zk.SubmitQuote } };
|
|
2072
2090
|
/** {@link Taotao.Film.ThirdPartyRefundPush 淘宝 > 退款消息同步} */
|
|
2073
2091
|
type TaotaoFilmThirdPartyRefundPush = Message & { content?: MessageContent & { topic?: 'taotao_film_ThirdPartyRefundPush', content?: string | Taotao.Film.ThirdPartyRefundPush } };
|
|
2074
2092
|
/** {@link Tmall.Aliauto.StepOrderPartConfirm 天猫汽车 > 天猫汽车分阶段订单打款消息} */
|
|
@@ -2119,6 +2137,8 @@ declare namespace IncomingMessage {
|
|
|
2119
2137
|
type TmallFuwuNewAnomalyRecourseStatusUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', content?: string | Tmall.Fuwu.NewAnomalyRecourseStatusUpdate } };
|
|
2120
2138
|
/** {@link Tmall.Fuwu.RateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
2121
2139
|
type TmallFuwuRateMessageTP = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_RateMessageTP', content?: string | Tmall.Fuwu.RateMessageTP } };
|
|
2140
|
+
/** {@link Tmall.Fuwu.SendCallRecord 天猫服务 > 发送通话记录} */
|
|
2141
|
+
type TmallFuwuSendCallRecord = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_SendCallRecord', content?: string | Tmall.Fuwu.SendCallRecord } };
|
|
2122
2142
|
/** {@link Tmall.Fuwu.ServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
2123
2143
|
type TmallFuwuServiceItemUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_ServiceItemUpdate', content?: string | Tmall.Fuwu.ServiceItemUpdate } };
|
|
2124
2144
|
/** {@link Tmall.Fuwu.ServiceMonitorMessage 天猫服务 > 服务预警消息} */
|
|
@@ -2237,6 +2257,8 @@ declare namespace IncomingMessage {
|
|
|
2237
2257
|
type TmallScmSendTmcsDistributeSettleFee = Message & { content?: MessageContent & { topic?: 'tmall_scm_SendTmcsDistributeSettleFee', content?: string | Tmall.Scm.SendTmcsDistributeSettleFee } };
|
|
2238
2258
|
/** {@link Tmall.Service.CycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
2239
2259
|
type TmallServiceCycleBillInvoice = Message & { content?: MessageContent & { topic?: 'tmall_service_CycleBillInvoice', content?: string | Tmall.Service.CycleBillInvoice } };
|
|
2260
|
+
/** {@link Tmall.Servicecenter.ConsultationMessage 天猫服务 > 咨询工单消息} */
|
|
2261
|
+
type TmallServicecenterConsultationMessage = Message & { content?: MessageContent & { topic?: 'tmall_servicecenter_ConsultationMessage', content?: string | Tmall.Servicecenter.ConsultationMessage } };
|
|
2240
2262
|
/** {@link Tmall.Servicecenter.TaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
2241
2263
|
type TmallServicecenterTaskUpdate = Message & { content?: MessageContent & { topic?: 'tmall_servicecenter_TaskUpdate', content?: string | Tmall.Servicecenter.TaskUpdate } };
|
|
2242
2264
|
/** {@link Tmall.Serviceplatform.ServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -2321,6 +2343,8 @@ declare namespace IncomingMessage {
|
|
|
2321
2343
|
type XianyuEnvironmentEventSyn = Message & { content?: MessageContent & { topic?: 'xianyu_environment_EventSyn', content?: string | Xianyu.Environment.EventSyn } };
|
|
2322
2344
|
/** {@link Xianyu.Fishmarket.ItemSyn 闲鱼 > 鱼市商品状态变更} */
|
|
2323
2345
|
type XianyuFishmarketItemSyn = Message & { content?: MessageContent & { topic?: 'xianyu_fishmarket_ItemSyn', content?: string | Xianyu.Fishmarket.ItemSyn } };
|
|
2346
|
+
/** {@link Xianyu.Hjbt.PaymentStatus 闲鱼 > 换机补贴打款消息} */
|
|
2347
|
+
type XianyuHjbtPaymentStatus = Message & { content?: MessageContent & { topic?: 'xianyu_hjbt_PaymentStatus', content?: string | Xianyu.Hjbt.PaymentStatus } };
|
|
2324
2348
|
/** {@link Xianyu.Isv.OrderRemind 闲鱼 > 闲鱼服务商订单提醒} */
|
|
2325
2349
|
type XianyuIsvOrderRemind = Message & { content?: MessageContent & { topic?: 'xianyu_isv_OrderRemind', content?: string | Xianyu.Isv.OrderRemind } };
|
|
2326
2350
|
/** {@link Xianyu.Marketrecycle.OrderStateSyn 闲鱼 > 保卖订单变更通知} */
|
|
@@ -2521,6 +2545,12 @@ declare namespace IncomingMessage {
|
|
|
2521
2545
|
* - {@link AlibabaCrowdsourcingMaterial - > 素材生成通知}
|
|
2522
2546
|
*/
|
|
2523
2547
|
type AlibabaCrowdsourcing = AlibabaCrowdsourcingMaterial;
|
|
2548
|
+
/**
|
|
2549
|
+
* - {@link AlibabaCsrDonatePointSync 三小时公益 > 公益三小时积分捐行为同步}
|
|
2550
|
+
* - {@link AlibabaCsrZhiyuanhuiSyncEnergy 三小时公益 > 3小时积分捐同步活力值到志愿汇}
|
|
2551
|
+
*/
|
|
2552
|
+
type AlibabaCsr = AlibabaCsrDonatePointSync
|
|
2553
|
+
| AlibabaCsrZhiyuanhuiSyncEnergy;
|
|
2524
2554
|
/**
|
|
2525
2555
|
* - {@link AlibabaDecorationAidesignFinish 阿里楼盘 > AI设计方案状态变更通知}
|
|
2526
2556
|
* - {@link AlibabaDecorationApartmentExport 阿里楼盘 > 生成户型图消息}
|
|
@@ -3561,6 +3591,7 @@ declare namespace IncomingMessage {
|
|
|
3561
3591
|
* - {@link DamaiDistributionPerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送}
|
|
3562
3592
|
* - {@link DamaiDistributionPreSaleToNow 大麦第三方票务供应商接入 > 预售改开票}
|
|
3563
3593
|
* - {@link DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送}
|
|
3594
|
+
* - {@link DamaiDistributionRefundAuditResult 大麦第三方票务供应商接入 > 分销退票审核结果消息通知}
|
|
3564
3595
|
* - {@link DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知}
|
|
3565
3596
|
* - {@link DamaiDistributionRefundRule 大麦第三方票务供应商接入 > 项目退款规则}
|
|
3566
3597
|
* - {@link DamaiDistributionSendExpress 大麦第三方票务供应商接入 > 履约发快递成功通知三方}
|
|
@@ -3571,6 +3602,7 @@ declare namespace IncomingMessage {
|
|
|
3571
3602
|
| DamaiDistributionPerformStatus
|
|
3572
3603
|
| DamaiDistributionPreSaleToNow
|
|
3573
3604
|
| DamaiDistributionProjectStatus
|
|
3605
|
+
| DamaiDistributionRefundAuditResult
|
|
3574
3606
|
| DamaiDistributionRefundOrder
|
|
3575
3607
|
| DamaiDistributionRefundRule
|
|
3576
3608
|
| DamaiDistributionSendExpress
|
|
@@ -3765,6 +3797,10 @@ declare namespace IncomingMessage {
|
|
|
3765
3797
|
*/
|
|
3766
3798
|
type IdleCycleshop = IdleCycleshopGoodsNotice
|
|
3767
3799
|
| IdleCycleshopSaleOrderNotice;
|
|
3800
|
+
/**
|
|
3801
|
+
* - {@link IdleDistributionItemChange 闲鱼 > 分销闲管家消息通道}
|
|
3802
|
+
*/
|
|
3803
|
+
type IdleDistribution = IdleDistributionItemChange;
|
|
3768
3804
|
/**
|
|
3769
3805
|
* - {@link IdleNewoutletsUserTagNotice 闲鱼 > 闲鱼用户身份变更消息}
|
|
3770
3806
|
*/
|
|
@@ -4952,11 +4988,21 @@ declare namespace IncomingMessage {
|
|
|
4952
4988
|
*/
|
|
4953
4989
|
type TaobaoYichao = TaobaoYichaoWarrantyCodeStatusUpdate;
|
|
4954
4990
|
/**
|
|
4991
|
+
* - {@link TaobaoZkCloudIdentifyCreateNotify 淘宝真酷 > 淘宝真酷-云鉴定创建通知}
|
|
4955
4992
|
* - {@link TaobaoZkFirstLogisticsNotify 淘宝真酷 > 淘宝真酷一段物流发货消息}
|
|
4993
|
+
* - {@link TaobaoZkFirstLogisticsReceivedNotify 淘宝真酷 > 一段物流签收通知}
|
|
4956
4994
|
* - {@link TaobaoZkIdentifyCreate 淘宝真酷 > 淘宝真酷需求鉴别单创建消息}
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4995
|
+
* - {@link TaobaoZkRefundNotify 淘宝真酷 > 真酷鉴定用户退款通知}
|
|
4996
|
+
* - {@link TaobaoZkSecondLogisticsGotNotify 淘宝真酷 > 淘宝真酷二段寄出后揽收通知机构}
|
|
4997
|
+
* - {@link TaobaoZkSubmitQuote 淘宝真酷 > 真酷供应商提交报价结果通知}
|
|
4998
|
+
*/
|
|
4999
|
+
type TaobaoZk = TaobaoZkCloudIdentifyCreateNotify
|
|
5000
|
+
| TaobaoZkFirstLogisticsNotify
|
|
5001
|
+
| TaobaoZkFirstLogisticsReceivedNotify
|
|
5002
|
+
| TaobaoZkIdentifyCreate
|
|
5003
|
+
| TaobaoZkRefundNotify
|
|
5004
|
+
| TaobaoZkSecondLogisticsGotNotify
|
|
5005
|
+
| TaobaoZkSubmitQuote;
|
|
4960
5006
|
/**
|
|
4961
5007
|
* - {@link TaotaoFilmThirdPartyRefundPush 淘宝 > 退款消息同步}
|
|
4962
5008
|
*/
|
|
@@ -5012,6 +5058,7 @@ declare namespace IncomingMessage {
|
|
|
5012
5058
|
* - {@link TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息}
|
|
5013
5059
|
* - {@link TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新}
|
|
5014
5060
|
* - {@link TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息}
|
|
5061
|
+
* - {@link TmallFuwuSendCallRecord 天猫服务 > 发送通话记录}
|
|
5015
5062
|
* - {@link TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息}
|
|
5016
5063
|
* - {@link TmallFuwuServiceMonitorMessage 天猫服务 > 服务预警消息}
|
|
5017
5064
|
* - {@link TmallFuwuServiceStoreRegister 天猫服务 > 服务网点注册消息}
|
|
@@ -5030,6 +5077,7 @@ declare namespace IncomingMessage {
|
|
|
5030
5077
|
| TmallFuwuLogisticsInfoMessage
|
|
5031
5078
|
| TmallFuwuNewAnomalyRecourseStatusUpdate
|
|
5032
5079
|
| TmallFuwuRateMessageTP
|
|
5080
|
+
| TmallFuwuSendCallRecord
|
|
5033
5081
|
| TmallFuwuServiceItemUpdate
|
|
5034
5082
|
| TmallFuwuServiceMonitorMessage
|
|
5035
5083
|
| TmallFuwuServiceStoreRegister
|
|
@@ -5172,9 +5220,11 @@ declare namespace IncomingMessage {
|
|
|
5172
5220
|
*/
|
|
5173
5221
|
type TmallService = TmallServiceCycleBillInvoice;
|
|
5174
5222
|
/**
|
|
5223
|
+
* - {@link TmallServicecenterConsultationMessage 天猫服务 > 咨询工单消息}
|
|
5175
5224
|
* - {@link TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新}
|
|
5176
5225
|
*/
|
|
5177
|
-
type TmallServicecenter =
|
|
5226
|
+
type TmallServicecenter = TmallServicecenterConsultationMessage
|
|
5227
|
+
| TmallServicecenterTaskUpdate;
|
|
5178
5228
|
/**
|
|
5179
5229
|
* - {@link TmallServiceplatformServiceProductChanged 天猫服务 > 天猫服务产品变更消息}
|
|
5180
5230
|
* - {@link TmallServiceplatformSignCreate 天猫服务 > 签到消息}
|
|
@@ -5301,6 +5351,10 @@ declare namespace IncomingMessage {
|
|
|
5301
5351
|
* - {@link XianyuFishmarketItemSyn 闲鱼 > 鱼市商品状态变更}
|
|
5302
5352
|
*/
|
|
5303
5353
|
type XianyuFishmarket = XianyuFishmarketItemSyn;
|
|
5354
|
+
/**
|
|
5355
|
+
* - {@link XianyuHjbtPaymentStatus 闲鱼 > 换机补贴打款消息}
|
|
5356
|
+
*/
|
|
5357
|
+
type XianyuHjbt = XianyuHjbtPaymentStatus;
|
|
5304
5358
|
/**
|
|
5305
5359
|
* - {@link XianyuIsvOrderRemind 闲鱼 > 闲鱼服务商订单提醒}
|
|
5306
5360
|
*/
|
|
@@ -5376,6 +5430,7 @@ declare namespace IncomingMessage {
|
|
|
5376
5430
|
* - {@link AlibabaCoupon}
|
|
5377
5431
|
* - {@link AlibabaCrm}
|
|
5378
5432
|
* - {@link AlibabaCrowdsourcing}
|
|
5433
|
+
* - {@link AlibabaCsr}
|
|
5379
5434
|
* - {@link AlibabaDecoration}
|
|
5380
5435
|
* - {@link AlibabaEinvoice}
|
|
5381
5436
|
* - {@link AlibabaEsl}
|
|
@@ -5442,6 +5497,7 @@ declare namespace IncomingMessage {
|
|
|
5442
5497
|
| AlibabaCoupon
|
|
5443
5498
|
| AlibabaCrm
|
|
5444
5499
|
| AlibabaCrowdsourcing
|
|
5500
|
+
| AlibabaCsr
|
|
5445
5501
|
| AlibabaDecoration
|
|
5446
5502
|
| AlibabaEinvoice
|
|
5447
5503
|
| AlibabaEsl
|
|
@@ -5737,6 +5793,7 @@ declare namespace IncomingMessage {
|
|
|
5737
5793
|
* - {@link IdleConsignmentii}
|
|
5738
5794
|
* - {@link IdleCro}
|
|
5739
5795
|
* - {@link IdleCycleshop}
|
|
5796
|
+
* - {@link IdleDistribution}
|
|
5740
5797
|
* - {@link IdleNewoutlets}
|
|
5741
5798
|
* - {@link IdleRecycle}
|
|
5742
5799
|
* - {@link IdleTopisv}
|
|
@@ -5750,6 +5807,7 @@ declare namespace IncomingMessage {
|
|
|
5750
5807
|
| IdleConsignmentii
|
|
5751
5808
|
| IdleCro
|
|
5752
5809
|
| IdleCycleshop
|
|
5810
|
+
| IdleDistribution
|
|
5753
5811
|
| IdleNewoutlets
|
|
5754
5812
|
| IdleRecycle
|
|
5755
5813
|
| IdleTopisv
|
|
@@ -6108,6 +6166,7 @@ declare namespace IncomingMessage {
|
|
|
6108
6166
|
* - {@link XianyuCtox}
|
|
6109
6167
|
* - {@link XianyuEnvironment}
|
|
6110
6168
|
* - {@link XianyuFishmarket}
|
|
6169
|
+
* - {@link XianyuHjbt}
|
|
6111
6170
|
* - {@link XianyuIsv}
|
|
6112
6171
|
* - {@link XianyuMarketrecycle}
|
|
6113
6172
|
* - {@link XianyuRecycle}
|
|
@@ -6121,6 +6180,7 @@ declare namespace IncomingMessage {
|
|
|
6121
6180
|
| XianyuCtox
|
|
6122
6181
|
| XianyuEnvironment
|
|
6123
6182
|
| XianyuFishmarket
|
|
6183
|
+
| XianyuHjbt
|
|
6124
6184
|
| XianyuIsv
|
|
6125
6185
|
| XianyuMarketrecycle
|
|
6126
6186
|
| XianyuRecycle
|
package/types/message.out.d.ts
CHANGED
package/types/taobao.d.ts
CHANGED
|
@@ -5539,14 +5539,24 @@ declare namespace Taobao.Top {
|
|
|
5539
5539
|
declare namespace Taobao.Topadmin {
|
|
5540
5540
|
/** {@link https://open.taobao.com/tmc.htm?docId=2383&docType=9 友仔消息测试} */
|
|
5541
5541
|
interface HelloWorld {
|
|
5542
|
-
/**
|
|
5543
|
-
|
|
5544
|
-
/**
|
|
5545
|
-
|
|
5546
|
-
/**
|
|
5547
|
-
|
|
5548
|
-
/**
|
|
5549
|
-
|
|
5542
|
+
/** 1/2:退款,3:退货退款,4/6:换货,其他请调api获取详细信息 */
|
|
5543
|
+
biz_claim_type: number;
|
|
5544
|
+
/** 涉及金额 */
|
|
5545
|
+
buyer_refund_fee: number;
|
|
5546
|
+
/** 创建时间 */
|
|
5547
|
+
create: Date | number | string;
|
|
5548
|
+
/** 1:售中, 2:售后 */
|
|
5549
|
+
dispute_type: number;
|
|
5550
|
+
/** 更新时间 */
|
|
5551
|
+
modified: Date | number | string;
|
|
5552
|
+
/** 子订单ID */
|
|
5553
|
+
oid: number | bigint;
|
|
5554
|
+
/** 退款id(Long)或消息id(字符串) */
|
|
5555
|
+
refund_id: number;
|
|
5556
|
+
/** 卖家openUid */
|
|
5557
|
+
seller_open_uid: string;
|
|
5558
|
+
/** 支付单ID */
|
|
5559
|
+
tid: number | bigint;
|
|
5550
5560
|
}
|
|
5551
5561
|
}
|
|
5552
5562
|
|
|
@@ -6999,12 +7009,58 @@ declare namespace Taobao.Yichao {
|
|
|
6999
7009
|
|
|
7000
7010
|
/** 淘宝真酷 */
|
|
7001
7011
|
declare namespace Taobao.Zk {
|
|
7012
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2599&docType=9 淘宝真酷-云鉴定创建通知} */
|
|
7013
|
+
interface CloudIdentifyCreateNotify {
|
|
7014
|
+
/** 货品鉴别单号 */
|
|
7015
|
+
biz_identify_order_id: string;
|
|
7016
|
+
/** 品牌id */
|
|
7017
|
+
brand_id: string;
|
|
7018
|
+
/** 品牌名称 */
|
|
7019
|
+
brand_name: string;
|
|
7020
|
+
/** 检测点 */
|
|
7021
|
+
check_point: string;
|
|
7022
|
+
/** 货号 */
|
|
7023
|
+
goods_number: string;
|
|
7024
|
+
/** 机构id */
|
|
7025
|
+
identify_institution_id: string;
|
|
7026
|
+
/** 货品鉴别id */
|
|
7027
|
+
identify_order_id: string;
|
|
7028
|
+
/** 需求鉴别id */
|
|
7029
|
+
identify_request_id: string;
|
|
7030
|
+
/** 行业id */
|
|
7031
|
+
industry_id: string;
|
|
7032
|
+
/** 行业名称 */
|
|
7033
|
+
industry_name: string;
|
|
7034
|
+
/** 商品id */
|
|
7035
|
+
item_id: string;
|
|
7036
|
+
/** skuId */
|
|
7037
|
+
sku_id: string;
|
|
7038
|
+
/** sku名称 */
|
|
7039
|
+
sku_name: string;
|
|
7040
|
+
/** 商品名称 */
|
|
7041
|
+
title: string;
|
|
7042
|
+
/** 订单号 */
|
|
7043
|
+
tp_order_id: string;
|
|
7044
|
+
}
|
|
7045
|
+
|
|
7002
7046
|
/** {@link https://open.taobao.com/tmc.htm?docId=2581&docType=9 淘宝真酷一段物流发货消息} */
|
|
7003
7047
|
interface FirstLogisticsNotify {
|
|
7004
7048
|
/** 鉴定机构id */
|
|
7005
7049
|
identify_institution_id: string;
|
|
7006
7050
|
/** 一段物流单号 */
|
|
7007
7051
|
identify_logistics_id: string;
|
|
7052
|
+
/** 订单id */
|
|
7053
|
+
tp_order_id: string;
|
|
7054
|
+
}
|
|
7055
|
+
|
|
7056
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2588&docType=9 一段物流签收通知} */
|
|
7057
|
+
interface FirstLogisticsReceivedNotify {
|
|
7058
|
+
/** 鉴定机构id */
|
|
7059
|
+
identify_institution_id: string;
|
|
7060
|
+
/** 一段物流单号 */
|
|
7061
|
+
identify_logistics_id: string;
|
|
7062
|
+
/** 订单id */
|
|
7063
|
+
tp_order_id: string;
|
|
7008
7064
|
}
|
|
7009
7065
|
|
|
7010
7066
|
/** {@link https://open.taobao.com/tmc.htm?docId=2571&docType=9 淘宝真酷需求鉴别单创建消息} */
|
|
@@ -7016,4 +7072,32 @@ declare namespace Taobao.Zk {
|
|
|
7016
7072
|
/** 需求鉴别单id */
|
|
7017
7073
|
identify_request_id: string;
|
|
7018
7074
|
}
|
|
7075
|
+
|
|
7076
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2589&docType=9 真酷鉴定用户退款通知} */
|
|
7077
|
+
interface RefundNotify {
|
|
7078
|
+
/** 鉴定机构id */
|
|
7079
|
+
identify_institution_id: string;
|
|
7080
|
+
/** 物流单号 */
|
|
7081
|
+
identify_logistics_id: string;
|
|
7082
|
+
/** 订单id */
|
|
7083
|
+
tp_order_id: string;
|
|
7084
|
+
}
|
|
7085
|
+
|
|
7086
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2590&docType=9 淘宝真酷二段寄出后揽收通知机构} */
|
|
7087
|
+
interface SecondLogisticsGotNotify {
|
|
7088
|
+
/** 鉴定机构id */
|
|
7089
|
+
identify_institution_id: string;
|
|
7090
|
+
/** 物流单号 */
|
|
7091
|
+
identify_logistics_id: string;
|
|
7092
|
+
/** 订单id */
|
|
7093
|
+
tp_order_id: string;
|
|
7094
|
+
}
|
|
7095
|
+
|
|
7096
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2593&docType=9 真酷供应商提交报价结果通知} */
|
|
7097
|
+
interface SubmitQuote {
|
|
7098
|
+
/** 返回结果 */
|
|
7099
|
+
data: string;
|
|
7100
|
+
/** 用户id */
|
|
7101
|
+
user_id: string;
|
|
7102
|
+
}
|
|
7019
7103
|
}
|
package/types/tmall.d.ts
CHANGED
|
@@ -263,6 +263,16 @@ declare namespace Tmall.Fuwu {
|
|
|
263
263
|
work_order_id: number;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2592&docType=9 发送通话记录} */
|
|
267
|
+
interface SendCallRecord {
|
|
268
|
+
/** 工单号 */
|
|
269
|
+
biz_identify: string;
|
|
270
|
+
/** */
|
|
271
|
+
call_id?: string;
|
|
272
|
+
/** */
|
|
273
|
+
record_link?: string;
|
|
274
|
+
}
|
|
275
|
+
|
|
266
276
|
/** {@link https://open.taobao.com/tmc.htm?docId=1290&docType=9 服务商品信息变更消息} */
|
|
267
277
|
interface ServiceItemUpdate {
|
|
268
278
|
/** 服务商品id */
|
|
@@ -1090,6 +1100,30 @@ declare namespace Tmall.Service {
|
|
|
1090
1100
|
|
|
1091
1101
|
/** 天猫服务 */
|
|
1092
1102
|
declare namespace Tmall.Servicecenter {
|
|
1103
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2585&docType=9 咨询工单消息} */
|
|
1104
|
+
interface ConsultationMessage {
|
|
1105
|
+
/** create,response,append,close */
|
|
1106
|
+
action: string;
|
|
1107
|
+
/** 本次操作角色 */
|
|
1108
|
+
action_role: string;
|
|
1109
|
+
/** 追加时间 */
|
|
1110
|
+
append_time: string;
|
|
1111
|
+
/** 咨询单 id */
|
|
1112
|
+
consultation_id: string;
|
|
1113
|
+
/** 内容 */
|
|
1114
|
+
content: string;
|
|
1115
|
+
/** 问题编码 */
|
|
1116
|
+
issue_code: string;
|
|
1117
|
+
/** 问题名称 */
|
|
1118
|
+
issue_name: string;
|
|
1119
|
+
/** 发起角色, home_xiaoer , supplier, seller, buyer */
|
|
1120
|
+
launch_role: string;
|
|
1121
|
+
/** 附件链接 */
|
|
1122
|
+
notes: string;
|
|
1123
|
+
/** 工单 */
|
|
1124
|
+
work_card_id: number;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1093
1127
|
/** {@link https://open.taobao.com/tmc.htm?docId=905&docType=9 天猫服务平台工单更新} */
|
|
1094
1128
|
interface TaskUpdate {
|
|
1095
1129
|
/** 属性字符串。使用;隔开,key:value格式保存。 */
|
package/types/xianyu.d.ts
CHANGED
|
@@ -116,6 +116,21 @@ declare namespace Xianyu.Fishmarket {
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
/** 闲鱼 */
|
|
120
|
+
declare namespace Xianyu.Hjbt {
|
|
121
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2600&docType=9 换机补贴打款消息} */
|
|
122
|
+
interface PaymentStatus {
|
|
123
|
+
/** 成交金额 */
|
|
124
|
+
deal_amount: number;
|
|
125
|
+
/** 订单ID */
|
|
126
|
+
order_id: string;
|
|
127
|
+
/** 补贴金额 */
|
|
128
|
+
subsidy_amount: number;
|
|
129
|
+
/** 补贴时间 */
|
|
130
|
+
subsidy_time: string;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
119
134
|
/** 闲鱼 */
|
|
120
135
|
declare namespace Xianyu.Isv {
|
|
121
136
|
/** {@link https://open.taobao.com/tmc.htm?docId=2219&docType=9 闲鱼服务商订单提醒} */
|