tmc.js 0.3.24 → 0.3.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Event driven and chained Taobao Message Channel(TMC) for NodeJS
4
4
 
5
5
  [![release](https://img.shields.io/npm/v/tmc.js)](https://github.com/TheNorthMemory/tmc.js/releases)
6
- [![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/tmc.js?label=snyk.io)](https://snyk.io/advisor/npm-package/tmc.js)
6
+ [![advisor](https://snyk.io/advisor/npm-package/tmc.js/badge.svg)](https://snyk.io/advisor/npm-package/tmc.js)
7
7
  [![types](https://img.shields.io/badge/types-included-blue)](https://www.npmjs.com/package/tmc.js)
8
8
  [![requirement](https://img.shields.io/node/v/tmc.js)](https://www.npmjs.com/package/tmc.js)
9
9
  [![downloads](https://img.shields.io/npm/dm/tmc.js)](https://www.npmjs.com/package/tmc.js)
@@ -134,14 +134,14 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
134
134
 
135
135
  ## 支持的TOPICS
136
136
 
137
- <details><summary>共计 83+ 类别,462+ 消息数</summary>
137
+ <details><summary>共计 83+ 类别,476+ 消息数</summary>
138
138
 
139
139
  | 类别 | 消息数 |
140
140
  | --- | --- |
141
141
  | 淘宝交易 | 23 |
142
142
  | 淘宝退款 | 13 |
143
143
  | 淘宝商品 | 13 |
144
- | 淘宝分销 | 23 |
144
+ | 淘宝分销 | 24 |
145
145
  | 淘宝点点 | 12 |
146
146
  | 淘宝火车票 | 5 |
147
147
  | 平台消息 | 9 |
@@ -150,7 +150,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
150
150
  | 导购平台 | 21 |
151
151
  | 淘宝汽车票 | 4 |
152
152
  | 服务市场 | 9 |
153
- | 天猫服务 | 21 |
153
+ | 天猫服务 | 23 |
154
154
  | 天猫美妆 | 2 |
155
155
  | 聚石塔 | 9 |
156
156
  | 淘宝物流 | 1 |
@@ -166,11 +166,11 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
166
166
  | 阿里物联 | 2 |
167
167
  | 全球购跨境物流 | 1 |
168
168
  | 零售plus | 8 |
169
- | 客户运营平台API | 13 |
169
+ | 客户运营平台API | 19 |
170
170
  | AE-交易 | 10 |
171
171
  | 五道口配送 | 5 |
172
172
  | 百川 | 2 |
173
- | 闲鱼 | 14 |
173
+ | 闲鱼 | 15 |
174
174
  | 闲鱼回收商消息 | 6 |
175
175
  | 零售通POS开放平台消息 | 4 |
176
176
  | DPAAS | 6 |
@@ -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
- | 大麦第三方票务供应商接入 | 5 |
195
+ | 大麦第三方票务供应商接入 | 6 |
196
196
  | TVOS应用审核平台 | 1 |
197
197
  | Gifting送礼 | 1 |
198
198
  | 五道口商品 | 2 |
@@ -211,7 +211,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
211
211
  | 大资产拍卖Top端拍品消息 | 2 |
212
212
  | AE-任务平台消息 | 1 |
213
213
  | 天猫汽车 | 5 |
214
- | 阿信消息通知前台类目 | 1 |
214
+ | 阿信消息通知前台类目 | 4 |
215
215
  | 阿里健康追溯码 | 1 |
216
216
  | 自动驾驶API | 3 |
217
217
  | MMC五盘货项目 | 5 |
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tmc.js",
3
- "version": "0.3.24",
3
+ "version": "0.3.26",
4
4
  "description": "Event driven and chained Taobao Message Channel(TMC) for NodeJS",
5
5
  "author": "James ZHANG",
6
6
  "license": "MIT",
@@ -1125,6 +1125,24 @@ declare namespace Alibaba.Msfservice {
1125
1125
  /** 师傅名称 */
1126
1126
  worker_name: string;
1127
1127
  }
1128
+
1129
+ /** 催单消息 */
1130
+ interface ReminderCreate {
1131
+ /** 渠道(0:商家端 1消费者端) */
1132
+ channel: number;
1133
+ /** 催单生成时间 */
1134
+ gmt_create: Date | number | string;
1135
+ /** 催单id */
1136
+ reminder_id: string;
1137
+ /** 时间类型 */
1138
+ type: number;
1139
+ /** 工单id(多工单用逗号分隔) */
1140
+ workcard_ids: string;
1141
+ /** 师傅id */
1142
+ worker_id: number;
1143
+ /** 师傅姓名 */
1144
+ worker_name: string;
1145
+ }
1128
1146
  }
1129
1147
 
1130
1148
  /** 网上法庭 */
package/types/damai.d.ts CHANGED
@@ -34,6 +34,22 @@ declare namespace Damai.Distribution {
34
34
  project_id: number;
35
35
  }
36
36
 
37
+ /** 退票通知 */
38
+ interface RefundOrder {
39
+ /** 渠道id */
40
+ channel_id: string;
41
+ /** 大麦订单号 */
42
+ external_order_no: string;
43
+ /** 场次id */
44
+ perform_id: number;
45
+ /** 项目id */
46
+ project_id: number;
47
+ /** 部分退true,整单退false */
48
+ refund_part: boolean;
49
+ /** 票单列表 */
50
+ voucher_ids: number[];
51
+ }
52
+
37
53
  /** 票品状态变更 */
38
54
  interface TicketItemStatus {
39
55
  /** 是否可售 */
package/types/idle.d.ts CHANGED
@@ -54,6 +54,21 @@ declare namespace Idle.Appraiseisv {
54
54
  }
55
55
  }
56
56
 
57
+ /** 闲鱼 */
58
+ declare namespace Idle.Autotrade {
59
+ /** 闲鱼AutoTrade订单状态变更消息 */
60
+ interface OrderStateSync {
61
+ /** 订单id */
62
+ order_id: number;
63
+ /** 订单状态 */
64
+ order_status: string;
65
+ /** 订单子状态 */
66
+ order_sub_status: string;
67
+ /** 交易产品业务标识 */
68
+ x_global_biz_code: string;
69
+ }
70
+ }
71
+
57
72
  /** 闲鱼回收商消息 */
58
73
  declare namespace Idle.Consignment {
59
74
  /** 闲鱼帮卖订单履约状态同步 */
package/types/index.d.ts CHANGED
@@ -202,6 +202,8 @@ declare interface TaoTopicsDescriptor {
202
202
  alibaba_mos_SaleOrderRefund(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMosSaleOrderRefund) => void): TaoMessageConsumer;
203
203
  /** {@link IncomingMessage.AlibabaMsfserviceAuditCreate 天猫服务 > 喵师傅审核单通知} */
204
204
  alibaba_msfservice_AuditCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMsfserviceAuditCreate) => void): TaoMessageConsumer;
205
+ /** {@link IncomingMessage.AlibabaMsfserviceReminderCreate 天猫服务 > 催单消息} */
206
+ alibaba_msfservice_ReminderCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMsfserviceReminderCreate) => void): TaoMessageConsumer;
205
207
  /** {@link IncomingMessage.AlibabaNazcaAbandonCert 网上法庭 > 作废存证消息接口} */
206
208
  alibaba_nazca_AbandonCert(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNazcaAbandonCert) => void): TaoMessageConsumer;
207
209
  /** {@link IncomingMessage.AlibabaNazcaQueryChargeNum 网上法庭 > 查询收费数量} */
@@ -370,6 +372,8 @@ declare interface TaoTopicsDescriptor {
370
372
  damai_distribution_PreSaleToNow(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
371
373
  /** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
372
374
  damai_distribution_ProjectStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionProjectStatus) => void): TaoMessageConsumer;
375
+ /** {@link IncomingMessage.DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知} */
376
+ damai_distribution_RefundOrder(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundOrder) => void): TaoMessageConsumer;
373
377
  /** {@link IncomingMessage.DamaiDistributionTicketItemStatus 大麦第三方票务供应商接入 > 票品状态变更} */
374
378
  damai_distribution_TicketItemStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionTicketItemStatus) => void): TaoMessageConsumer;
375
379
  /** {@link IncomingMessage.DamaiTradeTicketStatusPush 大麦票单状态 > 大麦票单状态推送} */
@@ -400,6 +404,8 @@ declare interface TaoTopicsDescriptor {
400
404
  idle_appraiseisv_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisvOrderSyn) => void): TaoMessageConsumer;
401
405
  /** {@link IncomingMessage.IdleAppraiseisvRefundSyn 闲鱼已验货 > 闲鱼已验货退货/退款事件} */
402
406
  idle_appraiseisv_RefundSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisvRefundSyn) => void): TaoMessageConsumer;
407
+ /** {@link IncomingMessage.IdleAutotradeOrderStateSync 闲鱼 > 闲鱼AutoTrade订单状态变更消息} */
408
+ idle_autotrade_OrderStateSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAutotradeOrderStateSync) => void): TaoMessageConsumer;
403
409
  /** {@link IncomingMessage.IdleConsignmentOrderSyn 闲鱼回收商消息 > 闲鱼帮卖订单履约状态同步} */
404
410
  idle_consignment_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
405
411
  /** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
@@ -438,6 +444,10 @@ declare interface TaoTopicsDescriptor {
438
444
  taobao_aps_CommentAdd(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoApsCommentAdd) => void): TaoMessageConsumer;
439
445
  /** {@link IncomingMessage.TaobaoApsNewFeedback 平台消息 > 收到舆情} */
440
446
  taobao_aps_NewFeedback(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoApsNewFeedback) => void): TaoMessageConsumer;
447
+ /** {@link IncomingMessage.TaobaoAxinDivisionApplyResult 阿信消息通知前台类目 > 新增行政区划结果通知} */
448
+ taobao_axin_DivisionApplyResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinDivisionApplyResult) => void): TaoMessageConsumer;
449
+ /** {@link IncomingMessage.TaobaoAxinPoiApplyResult 阿信消息通知前台类目 > 新增POI结果通知} */
450
+ taobao_axin_PoiApplyResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinPoiApplyResult) => void): TaoMessageConsumer;
441
451
  /** {@link IncomingMessage.TaobaoAxinRefundCallBack 阿信消息通知前台类目 > 阿信退款回调消息} */
442
452
  taobao_axin_RefundCallBack(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinRefundCallBack) => void): TaoMessageConsumer;
443
453
  /** {@link IncomingMessage.TaobaoBaichuanASODeviceActivate 百川 > 设备APP激活} */
@@ -540,6 +550,8 @@ declare interface TaoTopicsDescriptor {
540
550
  taobao_fliggy_StdHotelModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggyStdHotelModify) => void): TaoMessageConsumer;
541
551
  /** {@link IncomingMessage.TaobaoFliggyStdRoomTypeModify 酒店签约中心消息 > 标准房型领域模型实体变更消息} */
542
552
  taobao_fliggy_StdRoomTypeModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggyStdRoomTypeModify) => void): TaoMessageConsumer;
553
+ /** {@link IncomingMessage.TaobaoFscRouteOrderStatusChange 阿信消息通知前台类目 > 线路订单状态变更通知} */
554
+ taobao_fsc_RouteOrderStatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFscRouteOrderStatusChange) => void): TaoMessageConsumer;
543
555
  /** {@link IncomingMessage.TaobaoFuwuFundsChange 淘宝交易 > 以旧换新资金变更通知消息} */
544
556
  taobao_fuwu_FundsChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFuwuFundsChange) => void): TaoMessageConsumer;
545
557
  /** {@link IncomingMessage.TaobaoFuwuOrderClosed 淘宝交易 > 订单关闭消息} */
@@ -608,6 +620,8 @@ declare interface TaoTopicsDescriptor {
608
620
  taobao_jipiao_SellerOrderNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiaoSellerOrderNotify) => void): TaoMessageConsumer;
609
621
  /** {@link IncomingMessage.TaobaoJipiaoSellerRefundOrderNotify 淘宝机票 > 【机票代理商】退票订单通知} */
610
622
  taobao_jipiao_SellerRefundOrderNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiaoSellerRefundOrderNotify) => void): TaoMessageConsumer;
623
+ /** {@link IncomingMessage.TaobaoJzfxPurchaseOrderCreate 淘宝分销 > 家装分销_采购单创建} */
624
+ taobao_jzfx_PurchaseOrderCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJzfxPurchaseOrderCreate) => void): TaoMessageConsumer;
611
625
  /** {@link IncomingMessage.TaobaoLiveAgencyItemChanged 淘宝直播API > 直播严选机构商品池变化通知} */
612
626
  taobao_live_AgencyItemChanged(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoLiveAgencyItemChanged) => void): TaoMessageConsumer;
613
627
  /** {@link IncomingMessage.TaobaoLiveFeedRelated 淘宝直播API > 淘宝直播上下播消息} */
@@ -632,6 +646,8 @@ declare interface TaoTopicsDescriptor {
632
646
  taobao_opencrm_CardEstTask(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCardEstTask) => void): TaoMessageConsumer;
633
647
  /** {@link IncomingMessage.TaobaoOpencrmCardTplExamine 客户运营平台API > 卡片短信模板审核消息} */
634
648
  taobao_opencrm_CardTplExamine(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCardTplExamine) => void): TaoMessageConsumer;
649
+ /** {@link IncomingMessage.TaobaoOpencrmCouponUseUp 客户运营平台API > 优惠券发完TMC} */
650
+ taobao_opencrm_CouponUseUp(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCouponUseUp) => void): TaoMessageConsumer;
635
651
  /** {@link IncomingMessage.TaobaoOpencrmCrowdInstResult 客户运营平台API > 人群快照生成结果} */
636
652
  taobao_opencrm_CrowdInstResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCrowdInstResult) => void): TaoMessageConsumer;
637
653
  /** {@link IncomingMessage.TaobaoOpencrmCrowdInstSaveResult 客户运营平台API > 人群快照另存为人群结果} */
@@ -640,16 +656,26 @@ declare interface TaoTopicsDescriptor {
640
656
  taobao_opencrm_DigitalTplExamine(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmDigitalTplExamine) => void): TaoMessageConsumer;
641
657
  /** {@link IncomingMessage.TaobaoOpencrmFeedback 客户运营平台API > 反馈tmc} */
642
658
  taobao_opencrm_Feedback(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmFeedback) => void): TaoMessageConsumer;
659
+ /** {@link IncomingMessage.TaobaoOpencrmFullRuleResult 客户运营平台API > 规则全量计算结果通知} */
660
+ taobao_opencrm_FullRuleResult(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmFullRuleResult) => void): TaoMessageConsumer;
643
661
  /** {@link IncomingMessage.TaobaoOpencrmMemberGradeChange 客户运营平台API > 会员等级变更} */
644
662
  taobao_opencrm_MemberGradeChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberGradeChange) => void): TaoMessageConsumer;
663
+ /** {@link IncomingMessage.TaobaoOpencrmMemberJoin 客户运营平台API > 会员入会消息} */
664
+ taobao_opencrm_MemberJoin(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberJoin) => void): TaoMessageConsumer;
665
+ /** {@link IncomingMessage.TaobaoOpencrmMemberJoinPrivate 客户运营平台API > 会员入会消息} */
666
+ taobao_opencrm_MemberJoinPrivate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberJoinPrivate) => void): TaoMessageConsumer;
645
667
  /** {@link IncomingMessage.TaobaoOpencrmNodeExecuteFinished 客户运营平台API > 节点执行完成消息} */
646
668
  taobao_opencrm_NodeExecuteFinished(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmNodeExecuteFinished) => void): TaoMessageConsumer;
647
669
  /** {@link IncomingMessage.TaobaoOpencrmOpenStrategyEvent 客户运营平台API > 开放策略事件类单发短信TMC消息} */
648
670
  taobao_opencrm_OpenStrategyEvent(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmOpenStrategyEvent) => void): TaoMessageConsumer;
671
+ /** {@link IncomingMessage.TaobaoOpencrmSMSOfficaial 客户运营平台API > 官方营销场景短信发送通知} */
672
+ taobao_opencrm_SMSOfficaial(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmSMSOfficaial) => void): TaoMessageConsumer;
649
673
  /** {@link IncomingMessage.TaobaoOpencrmSellerDimensionCharge 客户运营平台API > CRM商业化计费商家维度账单} */
650
674
  taobao_opencrm_SellerDimensionCharge(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmSellerDimensionCharge) => void): TaoMessageConsumer;
651
675
  /** {@link IncomingMessage.TaobaoOpencrmShortMessageBill 客户运营平台API > 短信账单} */
652
676
  taobao_opencrm_ShortMessageBill(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmShortMessageBill) => void): TaoMessageConsumer;
677
+ /** {@link IncomingMessage.TaobaoOpencrmShortMessageSent 客户运营平台API > 短信发送TMC} */
678
+ taobao_opencrm_ShortMessageSent(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmShortMessageSent) => void): TaoMessageConsumer;
653
679
  /** {@link IncomingMessage.TaobaoOpencrmUtouch 客户运营平台API > 智能外呼回执} */
654
680
  taobao_opencrm_Utouch(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmUtouch) => void): TaoMessageConsumer;
655
681
  /** {@link IncomingMessage.TaobaoOpenimOffMsgPush OpenIM消息 > openim 离线消息推送} */
@@ -850,6 +876,8 @@ declare interface TaoTopicsDescriptor {
850
876
  tmall_fuwu_AnomalyRecourseStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
851
877
  /** {@link IncomingMessage.TmallFuwuElectricMaintenanceWorkCardComplete 天猫服务 > 天猫服务消电维修工单完结消息} */
852
878
  tmall_fuwu_ElectricMaintenanceWorkCardComplete(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuElectricMaintenanceWorkCardComplete) => void): TaoMessageConsumer;
879
+ /** {@link IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更} */
880
+ tmall_fuwu_HomeDecorationSupplyRuleUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
853
881
  /** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
854
882
  tmall_fuwu_LogisticsInfoMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
855
883
  /** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
@@ -1048,6 +1076,8 @@ declare interface TaoTopicsDescriptor {
1048
1076
  idle_agreement(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreement) => void): TaoMessageConsumer;
1049
1077
  /** {@link IncomingMessage.IdleAppraiseisv} */
1050
1078
  idle_appraiseisv(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisv) => void): TaoMessageConsumer;
1079
+ /** {@link IncomingMessage.IdleAutotrade} */
1080
+ idle_autotrade(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleAutotrade) => void): TaoMessageConsumer;
1051
1081
  /** {@link IncomingMessage.IdleConsignment} */
1052
1082
  idle_consignment(fn: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
1053
1083
  /** {@link IncomingMessage.IdleConsignmentii} */
@@ -1096,6 +1126,8 @@ declare interface TaoTopicsDescriptor {
1096
1126
  taobao_fenxiao(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFenxiao) => void): TaoMessageConsumer;
1097
1127
  /** {@link IncomingMessage.TaobaoFliggy} */
1098
1128
  taobao_fliggy(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggy) => void): TaoMessageConsumer;
1129
+ /** {@link IncomingMessage.TaobaoFsc} */
1130
+ taobao_fsc(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFsc) => void): TaoMessageConsumer;
1099
1131
  /** {@link IncomingMessage.TaobaoFuwu} */
1100
1132
  taobao_fuwu(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFuwu) => void): TaoMessageConsumer;
1101
1133
  /** {@link IncomingMessage.TaobaoGlobalbuys} */
@@ -1110,6 +1142,8 @@ declare interface TaoTopicsDescriptor {
1110
1142
  taobao_item(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItem) => void): TaoMessageConsumer;
1111
1143
  /** {@link IncomingMessage.TaobaoJipiao} */
1112
1144
  taobao_jipiao(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiao) => void): TaoMessageConsumer;
1145
+ /** {@link IncomingMessage.TaobaoJzfx} */
1146
+ taobao_jzfx(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJzfx) => void): TaoMessageConsumer;
1113
1147
  /** {@link IncomingMessage.TaobaoLive} */
1114
1148
  taobao_live(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoLive) => void): TaoMessageConsumer;
1115
1149
  /** {@link IncomingMessage.TaobaoLogistics} */
@@ -1393,6 +1427,8 @@ declare interface TaoEventsListener {
1393
1427
  on(topic: 'alibaba_mos_SaleOrderRefund', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMosSaleOrderRefund) => void): TaoMessageConsumer;
1394
1428
  /** {@link IncomingMessage.AlibabaMsfserviceAuditCreate 天猫服务 > 喵师傅审核单通知} */
1395
1429
  on(topic: 'alibaba_msfservice_AuditCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMsfserviceAuditCreate) => void): TaoMessageConsumer;
1430
+ /** {@link IncomingMessage.AlibabaMsfserviceReminderCreate 天猫服务 > 催单消息} */
1431
+ on(topic: 'alibaba_msfservice_ReminderCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaMsfserviceReminderCreate) => void): TaoMessageConsumer;
1396
1432
  /** {@link IncomingMessage.AlibabaNazcaAbandonCert 网上法庭 > 作废存证消息接口} */
1397
1433
  on(topic: 'alibaba_nazca_AbandonCert', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNazcaAbandonCert) => void): TaoMessageConsumer;
1398
1434
  /** {@link IncomingMessage.AlibabaNazcaQueryChargeNum 网上法庭 > 查询收费数量} */
@@ -1561,6 +1597,8 @@ declare interface TaoEventsListener {
1561
1597
  on(topic: 'damai_distribution_PreSaleToNow', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionPreSaleToNow) => void): TaoMessageConsumer;
1562
1598
  /** {@link IncomingMessage.DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
1563
1599
  on(topic: 'damai_distribution_ProjectStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionProjectStatus) => void): TaoMessageConsumer;
1600
+ /** {@link IncomingMessage.DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知} */
1601
+ on(topic: 'damai_distribution_RefundOrder', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionRefundOrder) => void): TaoMessageConsumer;
1564
1602
  /** {@link IncomingMessage.DamaiDistributionTicketItemStatus 大麦第三方票务供应商接入 > 票品状态变更} */
1565
1603
  on(topic: 'damai_distribution_TicketItemStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.DamaiDistributionTicketItemStatus) => void): TaoMessageConsumer;
1566
1604
  /** {@link IncomingMessage.DamaiTradeTicketStatusPush 大麦票单状态 > 大麦票单状态推送} */
@@ -1591,6 +1629,8 @@ declare interface TaoEventsListener {
1591
1629
  on(topic: 'idle_appraiseisv_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisvOrderSyn) => void): TaoMessageConsumer;
1592
1630
  /** {@link IncomingMessage.IdleAppraiseisvRefundSyn 闲鱼已验货 > 闲鱼已验货退货/退款事件} */
1593
1631
  on(topic: 'idle_appraiseisv_RefundSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisvRefundSyn) => void): TaoMessageConsumer;
1632
+ /** {@link IncomingMessage.IdleAutotradeOrderStateSync 闲鱼 > 闲鱼AutoTrade订单状态变更消息} */
1633
+ on(topic: 'idle_autotrade_OrderStateSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAutotradeOrderStateSync) => void): TaoMessageConsumer;
1594
1634
  /** {@link IncomingMessage.IdleConsignmentOrderSyn 闲鱼回收商消息 > 闲鱼帮卖订单履约状态同步} */
1595
1635
  on(topic: 'idle_consignment_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignmentOrderSyn) => void): TaoMessageConsumer;
1596
1636
  /** {@link IncomingMessage.IdleConsignmentiiOrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
@@ -1629,6 +1669,10 @@ declare interface TaoEventsListener {
1629
1669
  on(topic: 'taobao_aps_CommentAdd', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoApsCommentAdd) => void): TaoMessageConsumer;
1630
1670
  /** {@link IncomingMessage.TaobaoApsNewFeedback 平台消息 > 收到舆情} */
1631
1671
  on(topic: 'taobao_aps_NewFeedback', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoApsNewFeedback) => void): TaoMessageConsumer;
1672
+ /** {@link IncomingMessage.TaobaoAxinDivisionApplyResult 阿信消息通知前台类目 > 新增行政区划结果通知} */
1673
+ on(topic: 'taobao_axin_DivisionApplyResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinDivisionApplyResult) => void): TaoMessageConsumer;
1674
+ /** {@link IncomingMessage.TaobaoAxinPoiApplyResult 阿信消息通知前台类目 > 新增POI结果通知} */
1675
+ on(topic: 'taobao_axin_PoiApplyResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinPoiApplyResult) => void): TaoMessageConsumer;
1632
1676
  /** {@link IncomingMessage.TaobaoAxinRefundCallBack 阿信消息通知前台类目 > 阿信退款回调消息} */
1633
1677
  on(topic: 'taobao_axin_RefundCallBack', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoAxinRefundCallBack) => void): TaoMessageConsumer;
1634
1678
  /** {@link IncomingMessage.TaobaoBaichuanASODeviceActivate 百川 > 设备APP激活} */
@@ -1731,6 +1775,8 @@ declare interface TaoEventsListener {
1731
1775
  on(topic: 'taobao_fliggy_StdHotelModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggyStdHotelModify) => void): TaoMessageConsumer;
1732
1776
  /** {@link IncomingMessage.TaobaoFliggyStdRoomTypeModify 酒店签约中心消息 > 标准房型领域模型实体变更消息} */
1733
1777
  on(topic: 'taobao_fliggy_StdRoomTypeModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggyStdRoomTypeModify) => void): TaoMessageConsumer;
1778
+ /** {@link IncomingMessage.TaobaoFscRouteOrderStatusChange 阿信消息通知前台类目 > 线路订单状态变更通知} */
1779
+ on(topic: 'taobao_fsc_RouteOrderStatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFscRouteOrderStatusChange) => void): TaoMessageConsumer;
1734
1780
  /** {@link IncomingMessage.TaobaoFuwuFundsChange 淘宝交易 > 以旧换新资金变更通知消息} */
1735
1781
  on(topic: 'taobao_fuwu_FundsChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFuwuFundsChange) => void): TaoMessageConsumer;
1736
1782
  /** {@link IncomingMessage.TaobaoFuwuOrderClosed 淘宝交易 > 订单关闭消息} */
@@ -1799,6 +1845,8 @@ declare interface TaoEventsListener {
1799
1845
  on(topic: 'taobao_jipiao_SellerOrderNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiaoSellerOrderNotify) => void): TaoMessageConsumer;
1800
1846
  /** {@link IncomingMessage.TaobaoJipiaoSellerRefundOrderNotify 淘宝机票 > 【机票代理商】退票订单通知} */
1801
1847
  on(topic: 'taobao_jipiao_SellerRefundOrderNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiaoSellerRefundOrderNotify) => void): TaoMessageConsumer;
1848
+ /** {@link IncomingMessage.TaobaoJzfxPurchaseOrderCreate 淘宝分销 > 家装分销_采购单创建} */
1849
+ on(topic: 'taobao_jzfx_PurchaseOrderCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJzfxPurchaseOrderCreate) => void): TaoMessageConsumer;
1802
1850
  /** {@link IncomingMessage.TaobaoLiveAgencyItemChanged 淘宝直播API > 直播严选机构商品池变化通知} */
1803
1851
  on(topic: 'taobao_live_AgencyItemChanged', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoLiveAgencyItemChanged) => void): TaoMessageConsumer;
1804
1852
  /** {@link IncomingMessage.TaobaoLiveFeedRelated 淘宝直播API > 淘宝直播上下播消息} */
@@ -1823,6 +1871,8 @@ declare interface TaoEventsListener {
1823
1871
  on(topic: 'taobao_opencrm_CardEstTask', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCardEstTask) => void): TaoMessageConsumer;
1824
1872
  /** {@link IncomingMessage.TaobaoOpencrmCardTplExamine 客户运营平台API > 卡片短信模板审核消息} */
1825
1873
  on(topic: 'taobao_opencrm_CardTplExamine', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCardTplExamine) => void): TaoMessageConsumer;
1874
+ /** {@link IncomingMessage.TaobaoOpencrmCouponUseUp 客户运营平台API > 优惠券发完TMC} */
1875
+ on(topic: 'taobao_opencrm_CouponUseUp', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCouponUseUp) => void): TaoMessageConsumer;
1826
1876
  /** {@link IncomingMessage.TaobaoOpencrmCrowdInstResult 客户运营平台API > 人群快照生成结果} */
1827
1877
  on(topic: 'taobao_opencrm_CrowdInstResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmCrowdInstResult) => void): TaoMessageConsumer;
1828
1878
  /** {@link IncomingMessage.TaobaoOpencrmCrowdInstSaveResult 客户运营平台API > 人群快照另存为人群结果} */
@@ -1831,16 +1881,26 @@ declare interface TaoEventsListener {
1831
1881
  on(topic: 'taobao_opencrm_DigitalTplExamine', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmDigitalTplExamine) => void): TaoMessageConsumer;
1832
1882
  /** {@link IncomingMessage.TaobaoOpencrmFeedback 客户运营平台API > 反馈tmc} */
1833
1883
  on(topic: 'taobao_opencrm_Feedback', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmFeedback) => void): TaoMessageConsumer;
1884
+ /** {@link IncomingMessage.TaobaoOpencrmFullRuleResult 客户运营平台API > 规则全量计算结果通知} */
1885
+ on(topic: 'taobao_opencrm_FullRuleResult', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmFullRuleResult) => void): TaoMessageConsumer;
1834
1886
  /** {@link IncomingMessage.TaobaoOpencrmMemberGradeChange 客户运营平台API > 会员等级变更} */
1835
1887
  on(topic: 'taobao_opencrm_MemberGradeChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberGradeChange) => void): TaoMessageConsumer;
1888
+ /** {@link IncomingMessage.TaobaoOpencrmMemberJoin 客户运营平台API > 会员入会消息} */
1889
+ on(topic: 'taobao_opencrm_MemberJoin', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberJoin) => void): TaoMessageConsumer;
1890
+ /** {@link IncomingMessage.TaobaoOpencrmMemberJoinPrivate 客户运营平台API > 会员入会消息} */
1891
+ on(topic: 'taobao_opencrm_MemberJoinPrivate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmMemberJoinPrivate) => void): TaoMessageConsumer;
1836
1892
  /** {@link IncomingMessage.TaobaoOpencrmNodeExecuteFinished 客户运营平台API > 节点执行完成消息} */
1837
1893
  on(topic: 'taobao_opencrm_NodeExecuteFinished', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmNodeExecuteFinished) => void): TaoMessageConsumer;
1838
1894
  /** {@link IncomingMessage.TaobaoOpencrmOpenStrategyEvent 客户运营平台API > 开放策略事件类单发短信TMC消息} */
1839
1895
  on(topic: 'taobao_opencrm_OpenStrategyEvent', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmOpenStrategyEvent) => void): TaoMessageConsumer;
1896
+ /** {@link IncomingMessage.TaobaoOpencrmSMSOfficaial 客户运营平台API > 官方营销场景短信发送通知} */
1897
+ on(topic: 'taobao_opencrm_SMSOfficaial', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmSMSOfficaial) => void): TaoMessageConsumer;
1840
1898
  /** {@link IncomingMessage.TaobaoOpencrmSellerDimensionCharge 客户运营平台API > CRM商业化计费商家维度账单} */
1841
1899
  on(topic: 'taobao_opencrm_SellerDimensionCharge', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmSellerDimensionCharge) => void): TaoMessageConsumer;
1842
1900
  /** {@link IncomingMessage.TaobaoOpencrmShortMessageBill 客户运营平台API > 短信账单} */
1843
1901
  on(topic: 'taobao_opencrm_ShortMessageBill', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmShortMessageBill) => void): TaoMessageConsumer;
1902
+ /** {@link IncomingMessage.TaobaoOpencrmShortMessageSent 客户运营平台API > 短信发送TMC} */
1903
+ on(topic: 'taobao_opencrm_ShortMessageSent', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmShortMessageSent) => void): TaoMessageConsumer;
1844
1904
  /** {@link IncomingMessage.TaobaoOpencrmUtouch 客户运营平台API > 智能外呼回执} */
1845
1905
  on(topic: 'taobao_opencrm_Utouch', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoOpencrmUtouch) => void): TaoMessageConsumer;
1846
1906
  /** {@link IncomingMessage.TaobaoOpenimOffMsgPush OpenIM消息 > openim 离线消息推送} */
@@ -2041,6 +2101,8 @@ declare interface TaoEventsListener {
2041
2101
  on(topic: 'tmall_fuwu_AnomalyRecourseStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
2042
2102
  /** {@link IncomingMessage.TmallFuwuElectricMaintenanceWorkCardComplete 天猫服务 > 天猫服务消电维修工单完结消息} */
2043
2103
  on(topic: 'tmall_fuwu_ElectricMaintenanceWorkCardComplete', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuElectricMaintenanceWorkCardComplete) => void): TaoMessageConsumer;
2104
+ /** {@link IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更} */
2105
+ on(topic: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
2044
2106
  /** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
2045
2107
  on(topic: 'tmall_fuwu_LogisticsInfoMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
2046
2108
  /** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
@@ -2239,6 +2301,8 @@ declare interface TaoEventsListener {
2239
2301
  on(topic: 'idle_agreement', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAgreement) => void): TaoMessageConsumer;
2240
2302
  /** {@link IncomingMessage.IdleAppraiseisv} */
2241
2303
  on(topic: 'idle_appraiseisv', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAppraiseisv) => void): TaoMessageConsumer;
2304
+ /** {@link IncomingMessage.IdleAutotrade} */
2305
+ on(topic: 'idle_autotrade', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleAutotrade) => void): TaoMessageConsumer;
2242
2306
  /** {@link IncomingMessage.IdleConsignment} */
2243
2307
  on(topic: 'idle_consignment', listener: (this: TaoMessageConsumer, message: IncomingMessage.IdleConsignment) => void): TaoMessageConsumer;
2244
2308
  /** {@link IncomingMessage.IdleConsignmentii} */
@@ -2287,6 +2351,8 @@ declare interface TaoEventsListener {
2287
2351
  on(topic: 'taobao_fenxiao', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFenxiao) => void): TaoMessageConsumer;
2288
2352
  /** {@link IncomingMessage.TaobaoFliggy} */
2289
2353
  on(topic: 'taobao_fliggy', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFliggy) => void): TaoMessageConsumer;
2354
+ /** {@link IncomingMessage.TaobaoFsc} */
2355
+ on(topic: 'taobao_fsc', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFsc) => void): TaoMessageConsumer;
2290
2356
  /** {@link IncomingMessage.TaobaoFuwu} */
2291
2357
  on(topic: 'taobao_fuwu', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoFuwu) => void): TaoMessageConsumer;
2292
2358
  /** {@link IncomingMessage.TaobaoGlobalbuys} */
@@ -2301,6 +2367,8 @@ declare interface TaoEventsListener {
2301
2367
  on(topic: 'taobao_item', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItem) => void): TaoMessageConsumer;
2302
2368
  /** {@link IncomingMessage.TaobaoJipiao} */
2303
2369
  on(topic: 'taobao_jipiao', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJipiao) => void): TaoMessageConsumer;
2370
+ /** {@link IncomingMessage.TaobaoJzfx} */
2371
+ on(topic: 'taobao_jzfx', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoJzfx) => void): TaoMessageConsumer;
2304
2372
  /** {@link IncomingMessage.TaobaoLive} */
2305
2373
  on(topic: 'taobao_live', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoLive) => void): TaoMessageConsumer;
2306
2374
  /** {@link IncomingMessage.TaobaoLogistics} */
@@ -163,6 +163,8 @@ declare namespace IncomingMessage {
163
163
  type AlibabaMosSaleOrderRefund = Message & { content?: MessageContent & { topic?: 'alibaba_mos_SaleOrderRefund', content?: string | Alibaba.Mos.SaleOrderRefund } };
164
164
  /** {@link Alibaba.Msfservice.AuditCreate 天猫服务 > 喵师傅审核单通知} */
165
165
  type AlibabaMsfserviceAuditCreate = Message & { content?: MessageContent & { topic?: 'alibaba_msfservice_AuditCreate', content?: string | Alibaba.Msfservice.AuditCreate } };
166
+ /** {@link Alibaba.Msfservice.ReminderCreate 天猫服务 > 催单消息} */
167
+ type AlibabaMsfserviceReminderCreate = Message & { content?: MessageContent & { topic?: 'alibaba_msfservice_ReminderCreate', content?: string | Alibaba.Msfservice.ReminderCreate } };
166
168
  /** {@link Alibaba.Nazca.AbandonCert 网上法庭 > 作废存证消息接口} */
167
169
  type AlibabaNazcaAbandonCert = Message & { content?: MessageContent & { topic?: 'alibaba_nazca_AbandonCert', content?: string | Alibaba.Nazca.AbandonCert } };
168
170
  /** {@link Alibaba.Nazca.QueryChargeNum 网上法庭 > 查询收费数量} */
@@ -331,6 +333,8 @@ declare namespace IncomingMessage {
331
333
  type DamaiDistributionPreSaleToNow = Message & { content?: MessageContent & { topic?: 'damai_distribution_PreSaleToNow', content?: string | Damai.Distribution.PreSaleToNow } };
332
334
  /** {@link Damai.Distribution.ProjectStatus 大麦第三方票务供应商接入 > 项目状态推送} */
333
335
  type DamaiDistributionProjectStatus = Message & { content?: MessageContent & { topic?: 'damai_distribution_ProjectStatus', content?: string | Damai.Distribution.ProjectStatus } };
336
+ /** {@link Damai.Distribution.RefundOrder 大麦第三方票务供应商接入 > 退票通知} */
337
+ type DamaiDistributionRefundOrder = Message & { content?: MessageContent & { topic?: 'damai_distribution_RefundOrder', content?: string | Damai.Distribution.RefundOrder } };
334
338
  /** {@link Damai.Distribution.TicketItemStatus 大麦第三方票务供应商接入 > 票品状态变更} */
335
339
  type DamaiDistributionTicketItemStatus = Message & { content?: MessageContent & { topic?: 'damai_distribution_TicketItemStatus', content?: string | Damai.Distribution.TicketItemStatus } };
336
340
  /** {@link Damai.Trade.TicketStatusPush 大麦票单状态 > 大麦票单状态推送} */
@@ -361,6 +365,8 @@ declare namespace IncomingMessage {
361
365
  type IdleAppraiseisvOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_appraiseisv_OrderSyn', content?: string | Idle.Appraiseisv.OrderSyn } };
362
366
  /** {@link Idle.Appraiseisv.RefundSyn 闲鱼已验货 > 闲鱼已验货退货/退款事件} */
363
367
  type IdleAppraiseisvRefundSyn = Message & { content?: MessageContent & { topic?: 'idle_appraiseisv_RefundSyn', content?: string | Idle.Appraiseisv.RefundSyn } };
368
+ /** {@link Idle.Autotrade.OrderStateSync 闲鱼 > 闲鱼AutoTrade订单状态变更消息} */
369
+ type IdleAutotradeOrderStateSync = Message & { content?: MessageContent & { topic?: 'idle_autotrade_OrderStateSync', content?: string | Idle.Autotrade.OrderStateSync } };
364
370
  /** {@link Idle.Consignment.OrderSyn 闲鱼回收商消息 > 闲鱼帮卖订单履约状态同步} */
365
371
  type IdleConsignmentOrderSyn = Message & { content?: MessageContent & { topic?: 'idle_consignment_OrderSyn', content?: string | Idle.Consignment.OrderSyn } };
366
372
  /** {@link Idle.Consignmentii.OrderSyn 闲鱼回收商消息 > 闲鱼寄卖V2订单履约状态同步} */
@@ -399,6 +405,10 @@ declare namespace IncomingMessage {
399
405
  type TaobaoApsCommentAdd = Message & { content?: MessageContent & { topic?: 'taobao_aps_CommentAdd', content?: string | Taobao.Aps.CommentAdd } };
400
406
  /** {@link Taobao.Aps.NewFeedback 平台消息 > 收到舆情} */
401
407
  type TaobaoApsNewFeedback = Message & { content?: MessageContent & { topic?: 'taobao_aps_NewFeedback', content?: string | Taobao.Aps.NewFeedback } };
408
+ /** {@link Taobao.Axin.DivisionApplyResult 阿信消息通知前台类目 > 新增行政区划结果通知} */
409
+ type TaobaoAxinDivisionApplyResult = Message & { content?: MessageContent & { topic?: 'taobao_axin_DivisionApplyResult', content?: string | Taobao.Axin.DivisionApplyResult } };
410
+ /** {@link Taobao.Axin.PoiApplyResult 阿信消息通知前台类目 > 新增POI结果通知} */
411
+ type TaobaoAxinPoiApplyResult = Message & { content?: MessageContent & { topic?: 'taobao_axin_PoiApplyResult', content?: string | Taobao.Axin.PoiApplyResult } };
402
412
  /** {@link Taobao.Axin.RefundCallBack 阿信消息通知前台类目 > 阿信退款回调消息} */
403
413
  type TaobaoAxinRefundCallBack = Message & { content?: MessageContent & { topic?: 'taobao_axin_RefundCallBack', content?: string | Taobao.Axin.RefundCallBack } };
404
414
  /** {@link Taobao.Baichuan.ASODeviceActivate 百川 > 设备APP激活} */
@@ -501,6 +511,8 @@ declare namespace IncomingMessage {
501
511
  type TaobaoFliggyStdHotelModify = Message & { content?: MessageContent & { topic?: 'taobao_fliggy_StdHotelModify', content?: string | Taobao.Fliggy.StdHotelModify } };
502
512
  /** {@link Taobao.Fliggy.StdRoomTypeModify 酒店签约中心消息 > 标准房型领域模型实体变更消息} */
503
513
  type TaobaoFliggyStdRoomTypeModify = Message & { content?: MessageContent & { topic?: 'taobao_fliggy_StdRoomTypeModify', content?: string | Taobao.Fliggy.StdRoomTypeModify } };
514
+ /** {@link Taobao.Fsc.RouteOrderStatusChange 阿信消息通知前台类目 > 线路订单状态变更通知} */
515
+ type TaobaoFscRouteOrderStatusChange = Message & { content?: MessageContent & { topic?: 'taobao_fsc_RouteOrderStatusChange', content?: string | Taobao.Fsc.RouteOrderStatusChange } };
504
516
  /** {@link Taobao.Fuwu.FundsChange 淘宝交易 > 以旧换新资金变更通知消息} */
505
517
  type TaobaoFuwuFundsChange = Message & { content?: MessageContent & { topic?: 'taobao_fuwu_FundsChange', content?: string | Taobao.Fuwu.FundsChange } };
506
518
  /** {@link Taobao.Fuwu.OrderClosed 淘宝交易 > 订单关闭消息} */
@@ -569,6 +581,8 @@ declare namespace IncomingMessage {
569
581
  type TaobaoJipiaoSellerOrderNotify = Message & { content?: MessageContent & { topic?: 'taobao_jipiao_SellerOrderNotify', content?: string | Taobao.Jipiao.SellerOrderNotify } };
570
582
  /** {@link Taobao.Jipiao.SellerRefundOrderNotify 淘宝机票 > 【机票代理商】退票订单通知} */
571
583
  type TaobaoJipiaoSellerRefundOrderNotify = Message & { content?: MessageContent & { topic?: 'taobao_jipiao_SellerRefundOrderNotify', content?: string | Taobao.Jipiao.SellerRefundOrderNotify } };
584
+ /** {@link Taobao.Jzfx.PurchaseOrderCreate 淘宝分销 > 家装分销_采购单创建} */
585
+ type TaobaoJzfxPurchaseOrderCreate = Message & { content?: MessageContent & { topic?: 'taobao_jzfx_PurchaseOrderCreate', content?: string | Taobao.Jzfx.PurchaseOrderCreate } };
572
586
  /** {@link Taobao.Live.AgencyItemChanged 淘宝直播API > 直播严选机构商品池变化通知} */
573
587
  type TaobaoLiveAgencyItemChanged = Message & { content?: MessageContent & { topic?: 'taobao_live_AgencyItemChanged', content?: string | Taobao.Live.AgencyItemChanged } };
574
588
  /** {@link Taobao.Live.FeedRelated 淘宝直播API > 淘宝直播上下播消息} */
@@ -593,6 +607,8 @@ declare namespace IncomingMessage {
593
607
  type TaobaoOpencrmCardEstTask = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_CardEstTask', content?: string | Taobao.Opencrm.CardEstTask } };
594
608
  /** {@link Taobao.Opencrm.CardTplExamine 客户运营平台API > 卡片短信模板审核消息} */
595
609
  type TaobaoOpencrmCardTplExamine = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_CardTplExamine', content?: string | Taobao.Opencrm.CardTplExamine } };
610
+ /** {@link Taobao.Opencrm.CouponUseUp 客户运营平台API > 优惠券发完TMC} */
611
+ type TaobaoOpencrmCouponUseUp = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_CouponUseUp', content?: string | Taobao.Opencrm.CouponUseUp } };
596
612
  /** {@link Taobao.Opencrm.CrowdInstResult 客户运营平台API > 人群快照生成结果} */
597
613
  type TaobaoOpencrmCrowdInstResult = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_CrowdInstResult', content?: string | Taobao.Opencrm.CrowdInstResult } };
598
614
  /** {@link Taobao.Opencrm.CrowdInstSaveResult 客户运营平台API > 人群快照另存为人群结果} */
@@ -601,16 +617,26 @@ declare namespace IncomingMessage {
601
617
  type TaobaoOpencrmDigitalTplExamine = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_DigitalTplExamine', content?: string | Taobao.Opencrm.DigitalTplExamine } };
602
618
  /** {@link Taobao.Opencrm.Feedback 客户运营平台API > 反馈tmc} */
603
619
  type TaobaoOpencrmFeedback = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_Feedback', content?: string | Taobao.Opencrm.Feedback } };
620
+ /** {@link Taobao.Opencrm.FullRuleResult 客户运营平台API > 规则全量计算结果通知} */
621
+ type TaobaoOpencrmFullRuleResult = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_FullRuleResult', content?: string | Taobao.Opencrm.FullRuleResult } };
604
622
  /** {@link Taobao.Opencrm.MemberGradeChange 客户运营平台API > 会员等级变更} */
605
623
  type TaobaoOpencrmMemberGradeChange = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_MemberGradeChange', content?: string | Taobao.Opencrm.MemberGradeChange } };
624
+ /** {@link Taobao.Opencrm.MemberJoin 客户运营平台API > 会员入会消息} */
625
+ type TaobaoOpencrmMemberJoin = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_MemberJoin', content?: string | Taobao.Opencrm.MemberJoin } };
626
+ /** {@link Taobao.Opencrm.MemberJoinPrivate 客户运营平台API > 会员入会消息} */
627
+ type TaobaoOpencrmMemberJoinPrivate = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_MemberJoinPrivate', content?: string | Taobao.Opencrm.MemberJoinPrivate } };
606
628
  /** {@link Taobao.Opencrm.NodeExecuteFinished 客户运营平台API > 节点执行完成消息} */
607
629
  type TaobaoOpencrmNodeExecuteFinished = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_NodeExecuteFinished', content?: string | Taobao.Opencrm.NodeExecuteFinished } };
608
630
  /** {@link Taobao.Opencrm.OpenStrategyEvent 客户运营平台API > 开放策略事件类单发短信TMC消息} */
609
631
  type TaobaoOpencrmOpenStrategyEvent = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_OpenStrategyEvent', content?: string | Taobao.Opencrm.OpenStrategyEvent } };
632
+ /** {@link Taobao.Opencrm.SMSOfficaial 客户运营平台API > 官方营销场景短信发送通知} */
633
+ type TaobaoOpencrmSMSOfficaial = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_SMSOfficaial', content?: string | Taobao.Opencrm.SMSOfficaial } };
610
634
  /** {@link Taobao.Opencrm.SellerDimensionCharge 客户运营平台API > CRM商业化计费商家维度账单} */
611
635
  type TaobaoOpencrmSellerDimensionCharge = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_SellerDimensionCharge', content?: string | Taobao.Opencrm.SellerDimensionCharge } };
612
636
  /** {@link Taobao.Opencrm.ShortMessageBill 客户运营平台API > 短信账单} */
613
637
  type TaobaoOpencrmShortMessageBill = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_ShortMessageBill', content?: string | Taobao.Opencrm.ShortMessageBill } };
638
+ /** {@link Taobao.Opencrm.ShortMessageSent 客户运营平台API > 短信发送TMC} */
639
+ type TaobaoOpencrmShortMessageSent = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_ShortMessageSent', content?: string | Taobao.Opencrm.ShortMessageSent } };
614
640
  /** {@link Taobao.Opencrm.Utouch 客户运营平台API > 智能外呼回执} */
615
641
  type TaobaoOpencrmUtouch = Message & { content?: MessageContent & { topic?: 'taobao_opencrm_Utouch', content?: string | Taobao.Opencrm.Utouch } };
616
642
  /** {@link Taobao.Openim.OffMsgPush OpenIM消息 > openim 离线消息推送} */
@@ -811,6 +837,8 @@ declare namespace IncomingMessage {
811
837
  type TmallFuwuAnomalyRecourseStatusUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_AnomalyRecourseStatusUpdate', content?: string | Tmall.Fuwu.AnomalyRecourseStatusUpdate } };
812
838
  /** {@link Tmall.Fuwu.ElectricMaintenanceWorkCardComplete 天猫服务 > 天猫服务消电维修工单完结消息} */
813
839
  type TmallFuwuElectricMaintenanceWorkCardComplete = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_ElectricMaintenanceWorkCardComplete', content?: string | Tmall.Fuwu.ElectricMaintenanceWorkCardComplete } };
840
+ /** {@link Tmall.Fuwu.HomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更} */
841
+ type TmallFuwuHomeDecorationSupplyRuleUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', content?: string | Tmall.Fuwu.HomeDecorationSupplyRuleUpdate } };
814
842
  /** {@link Tmall.Fuwu.LogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
815
843
  type TmallFuwuLogisticsInfoMessage = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_LogisticsInfoMessage', content?: string | Tmall.Fuwu.LogisticsInfoMessage } };
816
844
  /** {@link Tmall.Fuwu.RateMessageTP 天猫服务 > 消费者评价成功top消息} */
@@ -1063,8 +1091,10 @@ declare namespace IncomingMessage {
1063
1091
  | AlibabaMosSaleOrderRefund;
1064
1092
  /**
1065
1093
  * - {@link AlibabaMsfserviceAuditCreate 天猫服务 > 喵师傅审核单通知}
1094
+ * - {@link AlibabaMsfserviceReminderCreate 天猫服务 > 催单消息}
1066
1095
  */
1067
- type AlibabaMsfservice = AlibabaMsfserviceAuditCreate;
1096
+ type AlibabaMsfservice = AlibabaMsfserviceAuditCreate
1097
+ | AlibabaMsfserviceReminderCreate;
1068
1098
  /**
1069
1099
  * - {@link AlibabaNazcaAbandonCert 网上法庭 > 作废存证消息接口}
1070
1100
  * - {@link AlibabaNazcaQueryChargeNum 网上法庭 > 查询收费数量}
@@ -1294,12 +1324,14 @@ declare namespace IncomingMessage {
1294
1324
  * - {@link DamaiDistributionPerformStatus 大麦第三方票务供应商接入 > 场次状态变更推送}
1295
1325
  * - {@link DamaiDistributionPreSaleToNow 大麦第三方票务供应商接入 > 预售改开票}
1296
1326
  * - {@link DamaiDistributionProjectStatus 大麦第三方票务供应商接入 > 项目状态推送}
1327
+ * - {@link DamaiDistributionRefundOrder 大麦第三方票务供应商接入 > 退票通知}
1297
1328
  * - {@link DamaiDistributionTicketItemStatus 大麦第三方票务供应商接入 > 票品状态变更}
1298
1329
  */
1299
1330
  type DamaiDistribution = DamaiDistributionPerformCancel
1300
1331
  | DamaiDistributionPerformStatus
1301
1332
  | DamaiDistributionPreSaleToNow
1302
1333
  | DamaiDistributionProjectStatus
1334
+ | DamaiDistributionRefundOrder
1303
1335
  | DamaiDistributionTicketItemStatus;
1304
1336
  /**
1305
1337
  * - {@link DamaiTradeTicketStatusPush 大麦票单状态 > 大麦票单状态推送}
@@ -1345,6 +1377,10 @@ declare namespace IncomingMessage {
1345
1377
  type IdleAppraiseisv = IdleAppraiseisvItemSyn
1346
1378
  | IdleAppraiseisvOrderSyn
1347
1379
  | IdleAppraiseisvRefundSyn;
1380
+ /**
1381
+ * - {@link IdleAutotradeOrderStateSync 闲鱼 > 闲鱼AutoTrade订单状态变更消息}
1382
+ */
1383
+ type IdleAutotrade = IdleAutotradeOrderStateSync;
1348
1384
  /**
1349
1385
  * - {@link IdleConsignmentOrderSyn 闲鱼回收商消息 > 闲鱼帮卖订单履约状态同步}
1350
1386
  */
@@ -1404,9 +1440,13 @@ declare namespace IncomingMessage {
1404
1440
  type TaobaoAps = TaobaoApsCommentAdd
1405
1441
  | TaobaoApsNewFeedback;
1406
1442
  /**
1443
+ * - {@link TaobaoAxinDivisionApplyResult 阿信消息通知前台类目 > 新增行政区划结果通知}
1444
+ * - {@link TaobaoAxinPoiApplyResult 阿信消息通知前台类目 > 新增POI结果通知}
1407
1445
  * - {@link TaobaoAxinRefundCallBack 阿信消息通知前台类目 > 阿信退款回调消息}
1408
1446
  */
1409
- type TaobaoAxin = TaobaoAxinRefundCallBack;
1447
+ type TaobaoAxin = TaobaoAxinDivisionApplyResult
1448
+ | TaobaoAxinPoiApplyResult
1449
+ | TaobaoAxinRefundCallBack;
1410
1450
  /**
1411
1451
  * - {@link TaobaoBaichuanASODeviceActivate 百川 > 设备APP激活}
1412
1452
  * - {@link TaobaoBaichuanPasswordRuleChange 百川 > 口令规则变化消息}
@@ -1533,6 +1573,10 @@ declare namespace IncomingMessage {
1533
1573
  | TaobaoFliggySignStatus
1534
1574
  | TaobaoFliggyStdHotelModify
1535
1575
  | TaobaoFliggyStdRoomTypeModify;
1576
+ /**
1577
+ * - {@link TaobaoFscRouteOrderStatusChange 阿信消息通知前台类目 > 线路订单状态变更通知}
1578
+ */
1579
+ type TaobaoFsc = TaobaoFscRouteOrderStatusChange;
1536
1580
  /**
1537
1581
  * - {@link TaobaoFuwuFundsChange 淘宝交易 > 以旧换新资金变更通知消息}
1538
1582
  * - {@link TaobaoFuwuOrderClosed 淘宝交易 > 订单关闭消息}
@@ -1615,6 +1659,10 @@ declare namespace IncomingMessage {
1615
1659
  | TaobaoJipiaoJipiaoRefundOrderNotify
1616
1660
  | TaobaoJipiaoSellerOrderNotify
1617
1661
  | TaobaoJipiaoSellerRefundOrderNotify;
1662
+ /**
1663
+ * - {@link TaobaoJzfxPurchaseOrderCreate 淘宝分销 > 家装分销_采购单创建}
1664
+ */
1665
+ type TaobaoJzfx = TaobaoJzfxPurchaseOrderCreate;
1618
1666
  /**
1619
1667
  * - {@link TaobaoLiveAgencyItemChanged 淘宝直播API > 直播严选机构商品池变化通知}
1620
1668
  * - {@link TaobaoLiveFeedRelated 淘宝直播API > 淘宝直播上下播消息}
@@ -1651,29 +1699,41 @@ declare namespace IncomingMessage {
1651
1699
  * - {@link TaobaoOpencrmAuthTouchMessage 客户运营平台API > 营销短信授权消息}
1652
1700
  * - {@link TaobaoOpencrmCardEstTask 客户运营平台API > 卡片短信发送预估消息}
1653
1701
  * - {@link TaobaoOpencrmCardTplExamine 客户运营平台API > 卡片短信模板审核消息}
1702
+ * - {@link TaobaoOpencrmCouponUseUp 客户运营平台API > 优惠券发完TMC}
1654
1703
  * - {@link TaobaoOpencrmCrowdInstResult 客户运营平台API > 人群快照生成结果}
1655
1704
  * - {@link TaobaoOpencrmCrowdInstSaveResult 客户运营平台API > 人群快照另存为人群结果}
1656
1705
  * - {@link TaobaoOpencrmDigitalTplExamine 客户运营平台API > 数字短信模板审核消息}
1657
1706
  * - {@link TaobaoOpencrmFeedback 客户运营平台API > 反馈tmc}
1707
+ * - {@link TaobaoOpencrmFullRuleResult 客户运营平台API > 规则全量计算结果通知}
1658
1708
  * - {@link TaobaoOpencrmMemberGradeChange 客户运营平台API > 会员等级变更}
1709
+ * - {@link TaobaoOpencrmMemberJoin 客户运营平台API > 会员入会消息}
1710
+ * - {@link TaobaoOpencrmMemberJoinPrivate 客户运营平台API > 会员入会消息}
1659
1711
  * - {@link TaobaoOpencrmNodeExecuteFinished 客户运营平台API > 节点执行完成消息}
1660
1712
  * - {@link TaobaoOpencrmOpenStrategyEvent 客户运营平台API > 开放策略事件类单发短信TMC消息}
1713
+ * - {@link TaobaoOpencrmSMSOfficaial 客户运营平台API > 官方营销场景短信发送通知}
1661
1714
  * - {@link TaobaoOpencrmSellerDimensionCharge 客户运营平台API > CRM商业化计费商家维度账单}
1662
1715
  * - {@link TaobaoOpencrmShortMessageBill 客户运营平台API > 短信账单}
1716
+ * - {@link TaobaoOpencrmShortMessageSent 客户运营平台API > 短信发送TMC}
1663
1717
  * - {@link TaobaoOpencrmUtouch 客户运营平台API > 智能外呼回执}
1664
1718
  */
1665
1719
  type TaobaoOpencrm = TaobaoOpencrmAuthTouchMessage
1666
1720
  | TaobaoOpencrmCardEstTask
1667
1721
  | TaobaoOpencrmCardTplExamine
1722
+ | TaobaoOpencrmCouponUseUp
1668
1723
  | TaobaoOpencrmCrowdInstResult
1669
1724
  | TaobaoOpencrmCrowdInstSaveResult
1670
1725
  | TaobaoOpencrmDigitalTplExamine
1671
1726
  | TaobaoOpencrmFeedback
1727
+ | TaobaoOpencrmFullRuleResult
1672
1728
  | TaobaoOpencrmMemberGradeChange
1729
+ | TaobaoOpencrmMemberJoin
1730
+ | TaobaoOpencrmMemberJoinPrivate
1673
1731
  | TaobaoOpencrmNodeExecuteFinished
1674
1732
  | TaobaoOpencrmOpenStrategyEvent
1733
+ | TaobaoOpencrmSMSOfficaial
1675
1734
  | TaobaoOpencrmSellerDimensionCharge
1676
1735
  | TaobaoOpencrmShortMessageBill
1736
+ | TaobaoOpencrmShortMessageSent
1677
1737
  | TaobaoOpencrmUtouch;
1678
1738
  /**
1679
1739
  * - {@link TaobaoOpenimOffMsgPush OpenIM消息 > openim 离线消息推送}
@@ -1915,6 +1975,7 @@ declare namespace IncomingMessage {
1915
1975
  * - {@link TmallFuwuAnomalyRecourse 天猫服务 > 天猫服务平台一键求助单消息队列}
1916
1976
  * - {@link TmallFuwuAnomalyRecourseStatusUpdate 天猫服务 > 一键求助状态变更消息}
1917
1977
  * - {@link TmallFuwuElectricMaintenanceWorkCardComplete 天猫服务 > 天猫服务消电维修工单完结消息}
1978
+ * - {@link TmallFuwuHomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更}
1918
1979
  * - {@link TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息}
1919
1980
  * - {@link TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息}
1920
1981
  * - {@link TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息}
@@ -1929,6 +1990,7 @@ declare namespace IncomingMessage {
1929
1990
  type TmallFuwu = TmallFuwuAnomalyRecourse
1930
1991
  | TmallFuwuAnomalyRecourseStatusUpdate
1931
1992
  | TmallFuwuElectricMaintenanceWorkCardComplete
1993
+ | TmallFuwuHomeDecorationSupplyRuleUpdate
1932
1994
  | TmallFuwuLogisticsInfoMessage
1933
1995
  | TmallFuwuRateMessageTP
1934
1996
  | TmallFuwuServiceItemUpdate
@@ -2174,6 +2236,7 @@ declare namespace IncomingMessage {
2174
2236
  /**
2175
2237
  * - {@link IdleAgreement}
2176
2238
  * - {@link IdleAppraiseisv}
2239
+ * - {@link IdleAutotrade}
2177
2240
  * - {@link IdleConsignment}
2178
2241
  * - {@link IdleConsignmentii}
2179
2242
  * - {@link IdleRecycle}
@@ -2182,6 +2245,7 @@ declare namespace IncomingMessage {
2182
2245
  */
2183
2246
  type Idle = IdleAgreement
2184
2247
  | IdleAppraiseisv
2248
+ | IdleAutotrade
2185
2249
  | IdleConsignment
2186
2250
  | IdleConsignmentii
2187
2251
  | IdleRecycle
@@ -2216,6 +2280,7 @@ declare namespace IncomingMessage {
2216
2280
  * - {@link TaobaoEinvoice}
2217
2281
  * - {@link TaobaoFenxiao}
2218
2282
  * - {@link TaobaoFliggy}
2283
+ * - {@link TaobaoFsc}
2219
2284
  * - {@link TaobaoFuwu}
2220
2285
  * - {@link TaobaoGlobalbuys}
2221
2286
  * - {@link TaobaoHomeai}
@@ -2223,6 +2288,7 @@ declare namespace IncomingMessage {
2223
2288
  * - {@link TaobaoIstore}
2224
2289
  * - {@link TaobaoItem}
2225
2290
  * - {@link TaobaoJipiao}
2291
+ * - {@link TaobaoJzfx}
2226
2292
  * - {@link TaobaoLive}
2227
2293
  * - {@link TaobaoLogistics}
2228
2294
  * - {@link TaobaoModifyaddress}
@@ -2266,6 +2332,7 @@ declare namespace IncomingMessage {
2266
2332
  | TaobaoEinvoice
2267
2333
  | TaobaoFenxiao
2268
2334
  | TaobaoFliggy
2335
+ | TaobaoFsc
2269
2336
  | TaobaoFuwu
2270
2337
  | TaobaoGlobalbuys
2271
2338
  | TaobaoHomeai
@@ -2273,6 +2340,7 @@ declare namespace IncomingMessage {
2273
2340
  | TaobaoIstore
2274
2341
  | TaobaoItem
2275
2342
  | TaobaoJipiao
2343
+ | TaobaoJzfx
2276
2344
  | TaobaoLive
2277
2345
  | TaobaoLogistics
2278
2346
  | TaobaoModifyaddress
package/types/taobao.d.ts CHANGED
@@ -72,6 +72,26 @@ declare namespace Taobao.Aps {
72
72
 
73
73
  /** 阿信消息通知前台类目 */
74
74
  declare namespace Taobao.Axin {
75
+ /** 新增行政区划结果通知 */
76
+ interface DivisionApplyResult {
77
+ /** 行政区划编号 */
78
+ divisionId: string;
79
+ /** 行政区划外部编号(供应商侧编号) */
80
+ divisionOuterId: string;
81
+ /** 新增结果 */
82
+ result: string;
83
+ }
84
+
85
+ /** 新增POI结果通知 */
86
+ interface PoiApplyResult {
87
+ /** POI编号 */
88
+ poiId: string;
89
+ /** POI外部编号(供应商侧编号) */
90
+ poiOuterId: string;
91
+ /** 新增结果 */
92
+ result: string;
93
+ }
94
+
75
95
  /** 阿信退款回调消息 */
76
96
  interface RefundCallBack {
77
97
  /** 外部订单号 */
@@ -656,6 +676,25 @@ declare namespace Taobao.Fliggy {
656
676
  }
657
677
  }
658
678
 
679
+ /** 阿信消息通知前台类目 */
680
+ declare namespace Taobao.Fsc {
681
+ /** 线路订单状态变更通知 */
682
+ interface RouteOrderStatusChange {
683
+ /** 阿信订单id */
684
+ orderId: string;
685
+ /** 1-已下单 2-已确认 3-已退团 4-已取消 5-拒绝确认,驳回 14-交易成功 */
686
+ orderStatus: string;
687
+ /** 外部团id String */
688
+ outProjectId: string;
689
+ /** 付款状态1-未付款 2-已付定金3-已付款(代表全部付款完成) 4-已结算完成 5-已关闭 */
690
+ payStatus: string;
691
+ /** 供应商id */
692
+ supplierId: string;
693
+ /** 供应商订单号id */
694
+ supplierOrderId: string;
695
+ }
696
+ }
697
+
659
698
  /** 淘宝交易 */
660
699
  declare namespace Taobao.Fuwu {
661
700
  /** 以旧换新资金变更通知消息 */
@@ -1011,17 +1050,17 @@ declare namespace Taobao.Item {
1011
1050
 
1012
1051
  /** 商品下架消息 */
1013
1052
  interface ItemDownshelf {
1014
- /** 卖家昵称 */
1015
- nick: string;
1016
- /** 商品数字ID */
1053
+ /** 卖家昵称(不发送) */
1054
+ nick?: string;
1055
+ /** 商品ID */
1017
1056
  readonly num_iid: number | bigint;
1018
- /** 商品价格 */
1057
+ /** 商品价格(不发送) */
1019
1058
  price?: string;
1020
- /** 商品SKU ID */
1059
+ /** 商品SKU ID(不发送) */
1021
1060
  sku_id?: number | bigint;
1022
- /** 商品SKU数量 */
1061
+ /** 商品SKU数量(不发送) */
1023
1062
  sku_num?: number;
1024
- /** 商品状态 */
1063
+ /** 商品状态(不发送) */
1025
1064
  status?: string;
1026
1065
  }
1027
1066
 
@@ -1361,6 +1400,29 @@ declare namespace Taobao.Jipiao {
1361
1400
  }
1362
1401
  }
1363
1402
 
1403
+ /** 淘宝分销 */
1404
+ declare namespace Taobao.Jzfx {
1405
+ /** 家装分销_采购单创建 */
1406
+ interface PurchaseOrderCreate {
1407
+ /** 采购单创建时间 */
1408
+ created: Date | number | string;
1409
+ /** 分销商店铺昵称 */
1410
+ distributor_nick: string;
1411
+ /** 采购单修改时间 */
1412
+ modified: Date | number | string;
1413
+ /** 采购单号 */
1414
+ purchase_id: number;
1415
+ /** 采购单状态 */
1416
+ status: string;
1417
+ /** 供应商店铺昵称 */
1418
+ supplier_nick: string;
1419
+ /** 交易主订单号 */
1420
+ tc_order_id: number;
1421
+ /** 交易子订单号 */
1422
+ tc_sub_order_id: number;
1423
+ }
1424
+ }
1425
+
1364
1426
  /** 淘宝直播API */
1365
1427
  declare namespace Taobao.Live {
1366
1428
  /** 直播严选机构商品池变化通知 */
@@ -1542,6 +1604,16 @@ declare namespace Taobao.Opencrm {
1542
1604
  template_id: number;
1543
1605
  }
1544
1606
 
1607
+ /** 优惠券发完TMC */
1608
+ interface CouponUseUp {
1609
+ /** 规则实例ID */
1610
+ rule_inst_id: number;
1611
+ /** 卖家ID */
1612
+ seller_id: number;
1613
+ /** 优惠券唯一ID */
1614
+ uuid: string;
1615
+ }
1616
+
1545
1617
  /** 人群快照生成结果 */
1546
1618
  interface CrowdInstResult {
1547
1619
  /** 营销活动ID */
@@ -1604,6 +1676,18 @@ declare namespace Taobao.Opencrm {
1604
1676
  type: number;
1605
1677
  }
1606
1678
 
1679
+ /** 规则全量计算结果通知 */
1680
+ interface FullRuleResult {
1681
+ /** 业务id,时间戳 */
1682
+ id: string;
1683
+ /** 描述信息 */
1684
+ msg_info: string;
1685
+ /** 全部成功:0,其他1 */
1686
+ result: string;
1687
+ /** 卖家昵称 */
1688
+ seller_nick: string;
1689
+ }
1690
+
1607
1691
  /** 会员等级变更 */
1608
1692
  interface MemberGradeChange {
1609
1693
  /** 扩展字段 bizOrderId:付费会员订单ID */
@@ -1622,6 +1706,34 @@ declare namespace Taobao.Opencrm {
1622
1706
  seller_id: number;
1623
1707
  }
1624
1708
 
1709
+ /** 会员入会消息 */
1710
+ interface MemberJoin {
1711
+ /** 首次入会时间 */
1712
+ first_join_time: Date | number | string;
1713
+ /** 本次入会时间 */
1714
+ join_time: Date | number | string;
1715
+ /** 消息id,无实际意义 */
1716
+ msg_id: string;
1717
+ /** 卖家昵称 */
1718
+ seller: string;
1719
+ /** 买家昵称 */
1720
+ user: string;
1721
+ }
1722
+
1723
+ /** 会员入会消息 */
1724
+ interface MemberJoinPrivate {
1725
+ /** 首次入会时间 */
1726
+ first_join_time: Date | number | string;
1727
+ /** 本次入会时间 */
1728
+ join_time: Date | number | string;
1729
+ /** 消息id,无实际意义 */
1730
+ msg_id: string;
1731
+ /** 卖家昵称 */
1732
+ seller: string;
1733
+ /** ouid */
1734
+ user: string;
1735
+ }
1736
+
1625
1737
  /** 节点执行完成消息 */
1626
1738
  interface NodeExecuteFinished {
1627
1739
  /** 节点实例ID */
@@ -1644,6 +1756,20 @@ declare namespace Taobao.Opencrm {
1644
1756
  task_inst_id: string;
1645
1757
  }
1646
1758
 
1759
+ /** 官方营销场景短信发送通知 */
1760
+ interface SMSOfficaial {
1761
+ /** 通知内容,发送失败通知内容为空 */
1762
+ content: string;
1763
+ /** 错误描述 */
1764
+ error_msg: string;
1765
+ /** 商家主账号nick */
1766
+ seller: string;
1767
+ /** 任务id */
1768
+ task_id: number;
1769
+ /** 通知类型:0-发送失败,1-发送成功 */
1770
+ type: string;
1771
+ }
1772
+
1647
1773
  /** CRM商业化计费商家维度账单 */
1648
1774
  interface SellerDimensionCharge {
1649
1775
  /** isv appkey */
@@ -1680,6 +1806,18 @@ declare namespace Taobao.Opencrm {
1680
1806
  unknown_status_count: number;
1681
1807
  }
1682
1808
 
1809
+ /** 短信发送TMC */
1810
+ interface ShortMessageSent {
1811
+ /** 计费条数 */
1812
+ bill_count: number;
1813
+ /** 短信流水唯一ID */
1814
+ biz_id: number;
1815
+ /** 卖家ID */
1816
+ seller_id: number;
1817
+ /** 短信发送时间 */
1818
+ send_time: Date | number | string;
1819
+ }
1820
+
1683
1821
  /** 智能外呼回执 */
1684
1822
  interface Utouch {
1685
1823
  /** 外呼通话时长,单位:秒。接通时>0;未接通=0。注:没有振铃等异常不存在当前值。 */
package/types/tmall.d.ts CHANGED
@@ -106,6 +106,22 @@ declare namespace Tmall.Fuwu {
106
106
  workcard_id: string;
107
107
  }
108
108
 
109
+ /** 天猫服务家装优质供给规则变更 */
110
+ interface HomeDecorationSupplyRuleUpdate {
111
+ /** 叶子类目名称 */
112
+ category_name?: string;
113
+ /** 商家名称 */
114
+ seller_nick?: string;
115
+ /** servicecode名称 */
116
+ service_name: string;
117
+ /** 规则唯一编号 */
118
+ unique_no: string;
119
+ /** 更新时间 */
120
+ update_date: Date | number | string;
121
+ /** 工人校验类型(高级工人/品牌品类工人) */
122
+ worker_check_type_list: string;
123
+ }
124
+
109
125
  /** 服务供应链物流业务消息 */
110
126
  interface LogisticsInfoMessage {
111
127
  /** 物流创建 :create 物流取消 :cancel 分派小件员:assign 已经分派小件员: assigned 包裹上门揽收: pickup_door 包裹已揽收完成: pickup_finished 包裹派送中: dispatching 包裹已签收: signed */