tmc.js 0.3.39 → 0.3.41
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 +55 -0
- package/types/alipic.d.ts +28 -0
- package/types/alsc.d.ts +10 -0
- package/types/index.d.ts +100 -0
- package/types/lark.d.ts +10 -0
- package/types/lianfan.d.ts +26 -0
- package/types/message.in.d.ts +100 -3
- package/types/taobao.d.ts +14 -0
- package/types/tmall.d.ts +47 -0
- package/types/xianyu.d.ts +16 -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>共计 84+ 类别,
|
|
137
|
+
<details><summary>共计 84+ 类别,506+ 消息数</summary>
|
|
138
138
|
|
|
139
139
|
| 类别 | 消息数 |
|
|
140
140
|
| --- | --- |
|
|
@@ -150,11 +150,11 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
|
|
|
150
150
|
| 导购平台 | 21 |
|
|
151
151
|
| 淘宝汽车票 | 4 |
|
|
152
152
|
| 服务市场 | 9 |
|
|
153
|
-
| 天猫服务 |
|
|
153
|
+
| 天猫服务 | 30 |
|
|
154
154
|
| 天猫美妆 | 2 |
|
|
155
155
|
| 聚石塔 | 9 |
|
|
156
156
|
| 淘宝物流 | 1 |
|
|
157
|
-
| 阿里通信 |
|
|
157
|
+
| 阿里通信 | 20 |
|
|
158
158
|
| 天猫魔盒 | 2 |
|
|
159
159
|
| 营销平台 | 1 |
|
|
160
160
|
| OpenIM消息 | 1 |
|
|
@@ -170,7 +170,7 @@ new Tmc('your_app_key', 'your_app_secret', { autoReplyConfirmation: false })
|
|
|
170
170
|
| AE-交易 | 10 |
|
|
171
171
|
| 五道口配送 | 5 |
|
|
172
172
|
| 百川 | 2 |
|
|
173
|
-
| 闲鱼 |
|
|
173
|
+
| 闲鱼 | 22 |
|
|
174
174
|
| 闲鱼回收商消息 | 6 |
|
|
175
175
|
| 零售通POS开放平台消息 | 4 |
|
|
176
176
|
| DPAAS | 6 |
|
package/package.json
CHANGED
package/types/alibaba.d.ts
CHANGED
|
@@ -1429,6 +1429,17 @@ declare namespace Alibaba.Icbulive {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
}
|
|
1431
1431
|
|
|
1432
|
+
/** 闲鱼 */
|
|
1433
|
+
declare namespace Alibaba.Idle {
|
|
1434
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2555&docType=9 闲鱼房源状态变更通知} */
|
|
1435
|
+
interface HouseStatusNotify {
|
|
1436
|
+
/** 房源状态 0:上架,-1:删除,-2:下架 */
|
|
1437
|
+
house_status: number;
|
|
1438
|
+
/** 房源id */
|
|
1439
|
+
item_id: number;
|
|
1440
|
+
}
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1432
1443
|
/** 五道口配送 */
|
|
1433
1444
|
declare namespace Alibaba.Ifp {
|
|
1434
1445
|
/** {@link https://open.taobao.com/tmc.htm?docId=2386&docType=9 同城履约包裹状态变更消息} */
|
|
@@ -3432,6 +3443,19 @@ declare namespace Alibaba.Nlife {
|
|
|
3432
3443
|
}
|
|
3433
3444
|
}
|
|
3434
3445
|
|
|
3446
|
+
/** 小满 */
|
|
3447
|
+
declare namespace Alibaba.Okki {
|
|
3448
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2557&docType=9 小满商品服务状态同步} */
|
|
3449
|
+
interface SpuStatusSync {
|
|
3450
|
+
/** 小满客户id */
|
|
3451
|
+
client_id: string;
|
|
3452
|
+
/** 先富客户id */
|
|
3453
|
+
global_id: string;
|
|
3454
|
+
/** 小满商品服务状态 */
|
|
3455
|
+
spu_status: string;
|
|
3456
|
+
}
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3435
3459
|
/** 阿里拍卖 */
|
|
3436
3460
|
declare namespace Alibaba.Paimai {
|
|
3437
3461
|
/** {@link https://open.taobao.com/tmc.htm?docId=2111&docType=9 支付宝用户完成消费金任务} */
|
|
@@ -4563,6 +4587,37 @@ declare namespace Alibaba.Wdktrade {
|
|
|
4563
4587
|
}
|
|
4564
4588
|
}
|
|
4565
4589
|
|
|
4590
|
+
/** 天猫服务 */
|
|
4591
|
+
declare namespace Alibaba.Yichao {
|
|
4592
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2549&docType=9 蚁巢保单修改消息} */
|
|
4593
|
+
interface InsuranceUpdate {
|
|
4594
|
+
/** 保单生效时间 */
|
|
4595
|
+
gmt_effect: string;
|
|
4596
|
+
/** 保单失效时间 */
|
|
4597
|
+
gmt_expiry: string;
|
|
4598
|
+
/** 保司保单号 */
|
|
4599
|
+
insurance_application_no: string;
|
|
4600
|
+
/** 蚁巢保单号 */
|
|
4601
|
+
insurance_order_id: string;
|
|
4602
|
+
/** 被保人id */
|
|
4603
|
+
insurant_id: string;
|
|
4604
|
+
/** 被保人姓名 */
|
|
4605
|
+
insurant_name: string;
|
|
4606
|
+
/** 单据唯一键 */
|
|
4607
|
+
out_id: string;
|
|
4608
|
+
/** 工单或者服务单号 */
|
|
4609
|
+
out_order_id: string;
|
|
4610
|
+
/** 关联单据类型 */
|
|
4611
|
+
out_order_type: string;
|
|
4612
|
+
/** 保单类型 */
|
|
4613
|
+
product_code: string;
|
|
4614
|
+
/** 蚁巢保单状态 */
|
|
4615
|
+
status: string;
|
|
4616
|
+
/** 蚁巢保单状态 */
|
|
4617
|
+
status_code: string;
|
|
4618
|
+
}
|
|
4619
|
+
}
|
|
4620
|
+
|
|
4566
4621
|
/** 平台消息 */
|
|
4567
4622
|
declare namespace Alibaba.Yunio {
|
|
4568
4623
|
/** {@link https://open.taobao.com/tmc.htm?docId=1063&docType=9 YunIO数据流转} */
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/** ALIPIC */
|
|
2
|
+
declare namespace Alipic.Lark {
|
|
3
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2563&docType=9 佳影数据上云} */
|
|
4
|
+
interface JiayingDataReport {
|
|
5
|
+
/** 数据内容 */
|
|
6
|
+
data_content: string;
|
|
7
|
+
/** 唯一键 */
|
|
8
|
+
data_id: string;
|
|
9
|
+
/** 数据类型 */
|
|
10
|
+
data_type: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2558&docType=9 POS配置态数据增量下行} */
|
|
14
|
+
interface ResultDataDownlink {
|
|
15
|
+
/** 消息业务唯一id */
|
|
16
|
+
pos_bus_data_id: string;
|
|
17
|
+
/** 消息类型:1 订单类型 -1 其他类型 */
|
|
18
|
+
pos_bus_data_type?: number;
|
|
19
|
+
/** pos-bus接口返回参数 */
|
|
20
|
+
pos_bus_result_data: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2556&docType=9 排期列表数据增量下行} */
|
|
24
|
+
interface SchedulesDataDownlink {
|
|
25
|
+
/** 发送业务消息 */
|
|
26
|
+
schedules_data: string;
|
|
27
|
+
}
|
|
28
|
+
}
|
package/types/alsc.d.ts
CHANGED
|
@@ -243,6 +243,16 @@ declare namespace Alsc.Reviewbwc {
|
|
|
243
243
|
/** 消息类型 */
|
|
244
244
|
type: string;
|
|
245
245
|
}
|
|
246
|
+
|
|
247
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2552&docType=9 评价有礼渠道用户身份SID绑定通知} */
|
|
248
|
+
interface SidBindSync {
|
|
249
|
+
/** 推广位 */
|
|
250
|
+
pid: string;
|
|
251
|
+
/** 短码 */
|
|
252
|
+
scene: string;
|
|
253
|
+
/** 用户侧会员ID */
|
|
254
|
+
sid: string;
|
|
255
|
+
}
|
|
246
256
|
}
|
|
247
257
|
|
|
248
258
|
/** 口碑 */
|
package/types/index.d.ts
CHANGED
|
@@ -264,6 +264,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
264
264
|
alibaba_icbulive_CommentNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbuliveCommentNotice) => void): TaoMessageConsumer;
|
|
265
265
|
/** {@link IncomingMessage.AlibabaIcbuliveEnterNotice ICBU > 直播观众进场通知} */
|
|
266
266
|
alibaba_icbulive_EnterNotice(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbuliveEnterNotice) => void): TaoMessageConsumer;
|
|
267
|
+
/** {@link IncomingMessage.AlibabaIdleHouseStatusNotify 闲鱼 > 闲鱼房源状态变更通知} */
|
|
268
|
+
alibaba_idle_HouseStatusNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIdleHouseStatusNotify) => void): TaoMessageConsumer;
|
|
267
269
|
/** {@link IncomingMessage.AlibabaIfpPackageCfcContainer 五道口配送 > 同城履约包裹状态变更消息} */
|
|
268
270
|
alibaba_ifp_PackageCfcContainer(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIfpPackageCfcContainer) => void): TaoMessageConsumer;
|
|
269
271
|
/** {@link IncomingMessage.AlibabaInfopGoodsChange 采购系统 > 采购系统商品消息变更消息} */
|
|
@@ -482,6 +484,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
482
484
|
alibaba_nlife_InstorageDiffAuditNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeInstorageDiffAuditNotify) => void): TaoMessageConsumer;
|
|
483
485
|
/** {@link IncomingMessage.AlibabaNlifeItemUpdate 零售plus > 零售+商品变动消息} */
|
|
484
486
|
alibaba_nlife_ItemUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeItemUpdate) => void): TaoMessageConsumer;
|
|
487
|
+
/** {@link IncomingMessage.AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步} */
|
|
488
|
+
alibaba_okki_SpuStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkkiSpuStatusSync) => void): TaoMessageConsumer;
|
|
485
489
|
/** {@link IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
|
|
486
490
|
alibaba_paimai_AlipayConsumeGoldTaskFinish(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish) => void): TaoMessageConsumer;
|
|
487
491
|
/** {@link IncomingMessage.AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
|
|
@@ -618,6 +622,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
618
622
|
alibaba_wdkorder_VoucherStatus(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorderVoucherStatus) => void): TaoMessageConsumer;
|
|
619
623
|
/** {@link IncomingMessage.AlibabaWdktradeCouponInstance 五道口营销 > 营销券实例消息} */
|
|
620
624
|
alibaba_wdktrade_CouponInstance(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktradeCouponInstance) => void): TaoMessageConsumer;
|
|
625
|
+
/** {@link IncomingMessage.AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
626
|
+
alibaba_yichao_InsuranceUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoInsuranceUpdate) => void): TaoMessageConsumer;
|
|
621
627
|
/** {@link IncomingMessage.AlibabaYunioDataTransfer 平台消息 > YunIO数据流转} */
|
|
622
628
|
alibaba_yunio_DataTransfer(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYunioDataTransfer) => void): TaoMessageConsumer;
|
|
623
629
|
/** {@link IncomingMessage.AlicomAxbSubsEventSync 阿里通信 > 绑定事件同步} */
|
|
@@ -784,6 +790,12 @@ declare interface TaoTopicsDescriptor {
|
|
|
784
790
|
alipay_update_Seller(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdateSeller) => void): TaoMessageConsumer;
|
|
785
791
|
/** {@link IncomingMessage.AlipayXiaodaiSignNotify 阿里金融 > 阿里金融签约通知} */
|
|
786
792
|
alipay_xiaodai_SignNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodaiSignNotify) => void): TaoMessageConsumer;
|
|
793
|
+
/** {@link IncomingMessage.AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云} */
|
|
794
|
+
alipic_lark_JiayingDataReport(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkJiayingDataReport) => void): TaoMessageConsumer;
|
|
795
|
+
/** {@link IncomingMessage.AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行} */
|
|
796
|
+
alipic_lark_ResultDataDownlink(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkResultDataDownlink) => void): TaoMessageConsumer;
|
|
797
|
+
/** {@link IncomingMessage.AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
|
|
798
|
+
alipic_lark_SchedulesDataDownlink(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkSchedulesDataDownlink) => void): TaoMessageConsumer;
|
|
787
799
|
/** {@link IncomingMessage.AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
|
|
788
800
|
alisports_bank_Alipayattention(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlisportsBankAlipayattention) => void): TaoMessageConsumer;
|
|
789
801
|
/** {@link IncomingMessage.AlitripAgentNotify 淘宝机票 > 商家机票业务通知} */
|
|
@@ -888,6 +900,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
888
900
|
alsc_kbbbt_ProductChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlscKbbbtProductChange) => void): TaoMessageConsumer;
|
|
889
901
|
/** {@link IncomingMessage.AlscReviewbwcActivityEnrollSync 口碑 > 本地联盟饿了么评价有礼门店活动消息} */
|
|
890
902
|
alsc_reviewbwc_ActivityEnrollSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlscReviewbwcActivityEnrollSync) => void): TaoMessageConsumer;
|
|
903
|
+
/** {@link IncomingMessage.AlscReviewbwcSidBindSync 口碑 > 评价有礼渠道用户身份SID绑定通知} */
|
|
904
|
+
alsc_reviewbwc_SidBindSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlscReviewbwcSidBindSync) => void): TaoMessageConsumer;
|
|
891
905
|
/** {@link IncomingMessage.AlscRiskPunishSend 口碑 > 本地生活处罚中心处罚下发} */
|
|
892
906
|
alsc_risk_PunishSend(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlscRiskPunishSend) => void): TaoMessageConsumer;
|
|
893
907
|
/** {@link IncomingMessage.AlscSalesadaptorShopAuditingNotify 口碑 > 饿了么开店状态通知接口} */
|
|
@@ -1148,6 +1162,12 @@ declare interface TaoTopicsDescriptor {
|
|
|
1148
1162
|
jae_trade_PaidSuccessed(fn: (this: TaoMessageConsumer, message: IncomingMessage.JaeTradePaidSuccessed) => void): TaoMessageConsumer;
|
|
1149
1163
|
/** {@link IncomingMessage.JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
|
|
1150
1164
|
jym_order_BoosterStatusChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.JymOrderBoosterStatusChange) => void): TaoMessageConsumer;
|
|
1165
|
+
/** {@link IncomingMessage.LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
|
|
1166
|
+
lark_trade_PosTradeDataTransmit(fn: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
|
|
1167
|
+
/** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
1168
|
+
lianfan_huiwa_ModelStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
|
|
1169
|
+
/** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
1170
|
+
lianfan_huiwa_TaskStateUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
|
|
1151
1171
|
/** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
1152
1172
|
lst_supplier_BroadcastFastRefundMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplierBroadcastFastRefundMessage) => void): TaoMessageConsumer;
|
|
1153
1173
|
/** {@link IncomingMessage.LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
|
|
@@ -1460,6 +1480,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
1460
1480
|
taobao_istore_GiftingMsg(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoIstoreGiftingMsg) => void): TaoMessageConsumer;
|
|
1461
1481
|
/** {@link IncomingMessage.TaobaoItemAuditResultNotify 淘宝商品 > 淘宝商品审核结果消息通知} */
|
|
1462
1482
|
taobao_item_AuditResultNotify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemAuditResultNotify) => void): TaoMessageConsumer;
|
|
1483
|
+
/** {@link IncomingMessage.TaobaoItemDistributeItemEdit 淘宝商品 > 商品变更消息通知} */
|
|
1484
|
+
taobao_item_DistributeItemEdit(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemDistributeItemEdit) => void): TaoMessageConsumer;
|
|
1463
1485
|
/** {@link IncomingMessage.TaobaoItemItemAdd 淘宝商品 > 商品新增消息} */
|
|
1464
1486
|
taobao_item_ItemAdd(fn: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemItemAdd) => void): TaoMessageConsumer;
|
|
1465
1487
|
/** {@link IncomingMessage.TaobaoItemItemDelete 淘宝商品 > 商品删除消息} */
|
|
@@ -2058,6 +2080,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2058
2080
|
tmall_auto_TradeModify(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTradeModify) => void): TaoMessageConsumer;
|
|
2059
2081
|
/** {@link IncomingMessage.TmallAutoTwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
|
|
2060
2082
|
tmall_auto_TwoWheelsReceiptCreate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTwoWheelsReceiptCreate) => void): TaoMessageConsumer;
|
|
2083
|
+
/** {@link IncomingMessage.TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
|
|
2084
|
+
tmall_car_AbnormalSettleSeller(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAbnormalSettleSeller) => void): TaoMessageConsumer;
|
|
2061
2085
|
/** {@link IncomingMessage.TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
|
|
2062
2086
|
tmall_car_AliapayTelRedPacket(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAliapayTelRedPacket) => void): TaoMessageConsumer;
|
|
2063
2087
|
/** {@link IncomingMessage.TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
|
|
@@ -2090,6 +2114,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2090
2114
|
tmall_fuwu_HomeDecorationSupplyRuleUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
|
|
2091
2115
|
/** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
|
|
2092
2116
|
tmall_fuwu_LogisticsInfoMessage(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
|
|
2117
|
+
/** {@link IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
|
|
2118
|
+
tmall_fuwu_NewAnomalyRecourseStatusUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
|
|
2093
2119
|
/** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
2094
2120
|
tmall_fuwu_RateMessageTP(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
|
|
2095
2121
|
/** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
@@ -2208,6 +2234,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2208
2234
|
tmall_sasssign_Msg(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssignMsg) => void): TaoMessageConsumer;
|
|
2209
2235
|
/** {@link IncomingMessage.TmallScmSendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
|
|
2210
2236
|
tmall_scm_SendTmcsDistributeSettleFee(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
|
|
2237
|
+
/** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
2238
|
+
tmall_service_CycleBillInvoice(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
|
|
2211
2239
|
/** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
2212
2240
|
tmall_servicecenter_TaskUpdate(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
|
|
2213
2241
|
/** {@link IncomingMessage.TmallServiceplatformServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -2282,6 +2310,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2282
2310
|
xianyu_appraise_OrderSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
|
|
2283
2311
|
/** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
2284
2312
|
xianyu_car_OrderStatusSync(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
|
|
2313
|
+
/** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
2314
|
+
xianyu_ctox_CommissionStateSyn(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
|
|
2285
2315
|
/** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
2286
2316
|
xianyu_ctox_PayDkChange(fn: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxPayDkChange) => void): TaoMessageConsumer;
|
|
2287
2317
|
/** {@link IncomingMessage.XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
|
|
@@ -2372,6 +2402,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2372
2402
|
alibaba_homestyler(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHomestyler) => void): TaoMessageConsumer;
|
|
2373
2403
|
/** {@link IncomingMessage.AlibabaIcbulive} */
|
|
2374
2404
|
alibaba_icbulive(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbulive) => void): TaoMessageConsumer;
|
|
2405
|
+
/** {@link IncomingMessage.AlibabaIdle} */
|
|
2406
|
+
alibaba_idle(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIdle) => void): TaoMessageConsumer;
|
|
2375
2407
|
/** {@link IncomingMessage.AlibabaIfp} */
|
|
2376
2408
|
alibaba_ifp(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIfp) => void): TaoMessageConsumer;
|
|
2377
2409
|
/** {@link IncomingMessage.AlibabaInfop} */
|
|
@@ -2410,6 +2442,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2410
2442
|
alibaba_newretail(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNewretail) => void): TaoMessageConsumer;
|
|
2411
2443
|
/** {@link IncomingMessage.AlibabaNlife} */
|
|
2412
2444
|
alibaba_nlife(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlife) => void): TaoMessageConsumer;
|
|
2445
|
+
/** {@link IncomingMessage.AlibabaOkki} */
|
|
2446
|
+
alibaba_okki(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkki) => void): TaoMessageConsumer;
|
|
2413
2447
|
/** {@link IncomingMessage.AlibabaPaimai} */
|
|
2414
2448
|
alibaba_paimai(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimai) => void): TaoMessageConsumer;
|
|
2415
2449
|
/** {@link IncomingMessage.AlibabaPur} */
|
|
@@ -2444,6 +2478,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2444
2478
|
alibaba_wdkorder(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorder) => void): TaoMessageConsumer;
|
|
2445
2479
|
/** {@link IncomingMessage.AlibabaWdktrade} */
|
|
2446
2480
|
alibaba_wdktrade(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktrade) => void): TaoMessageConsumer;
|
|
2481
|
+
/** {@link IncomingMessage.AlibabaYichao} */
|
|
2482
|
+
alibaba_yichao(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichao) => void): TaoMessageConsumer;
|
|
2447
2483
|
/** {@link IncomingMessage.AlibabaYunio} */
|
|
2448
2484
|
alibaba_yunio(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYunio) => void): TaoMessageConsumer;
|
|
2449
2485
|
/** {@link IncomingMessage.AlicomAxb} */
|
|
@@ -2500,6 +2536,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2500
2536
|
alipay_update(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdate) => void): TaoMessageConsumer;
|
|
2501
2537
|
/** {@link IncomingMessage.AlipayXiaodai} */
|
|
2502
2538
|
alipay_xiaodai(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodai) => void): TaoMessageConsumer;
|
|
2539
|
+
/** {@link IncomingMessage.AlipicLark} */
|
|
2540
|
+
alipic_lark(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLark) => void): TaoMessageConsumer;
|
|
2503
2541
|
/** {@link IncomingMessage.AlisportsBank} */
|
|
2504
2542
|
alisports_bank(fn: (this: TaoMessageConsumer, message: IncomingMessage.AlisportsBank) => void): TaoMessageConsumer;
|
|
2505
2543
|
/** {@link IncomingMessage.AlitripAgent} */
|
|
@@ -2662,6 +2700,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
2662
2700
|
jae_trade(fn: (this: TaoMessageConsumer, message: IncomingMessage.JaeTrade) => void): TaoMessageConsumer;
|
|
2663
2701
|
/** {@link IncomingMessage.JymOrder} */
|
|
2664
2702
|
jym_order(fn: (this: TaoMessageConsumer, message: IncomingMessage.JymOrder) => void): TaoMessageConsumer;
|
|
2703
|
+
/** {@link IncomingMessage.LarkTrade} */
|
|
2704
|
+
lark_trade(fn: (this: TaoMessageConsumer, message: IncomingMessage.LarkTrade) => void): TaoMessageConsumer;
|
|
2705
|
+
/** {@link IncomingMessage.LianfanHuiwa} */
|
|
2706
|
+
lianfan_huiwa(fn: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwa) => void): TaoMessageConsumer;
|
|
2665
2707
|
/** {@link IncomingMessage.LstSupplier} */
|
|
2666
2708
|
lst_supplier(fn: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplier) => void): TaoMessageConsumer;
|
|
2667
2709
|
/** {@link IncomingMessage.NiaochaoTccompass} */
|
|
@@ -2926,6 +2968,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
2926
2968
|
tmall_sasssign(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssign) => void): TaoMessageConsumer;
|
|
2927
2969
|
/** {@link IncomingMessage.TmallScm} */
|
|
2928
2970
|
tmall_scm(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallScm) => void): TaoMessageConsumer;
|
|
2971
|
+
/** {@link IncomingMessage.TmallService} */
|
|
2972
|
+
tmall_service(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallService) => void): TaoMessageConsumer;
|
|
2929
2973
|
/** {@link IncomingMessage.TmallServicecenter} */
|
|
2930
2974
|
tmall_servicecenter(fn: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenter) => void): TaoMessageConsumer;
|
|
2931
2975
|
/** {@link IncomingMessage.TmallServiceplatform} */
|
|
@@ -3008,6 +3052,8 @@ declare interface TaoTopicsDescriptor {
|
|
|
3008
3052
|
alios(fn: (this: TaoMessageConsumer, message: IncomingMessage.Alios) => void): TaoMessageConsumer;
|
|
3009
3053
|
/** {@link IncomingMessage.Alipay} */
|
|
3010
3054
|
alipay(fn: (this: TaoMessageConsumer, message: IncomingMessage.Alipay) => void): TaoMessageConsumer;
|
|
3055
|
+
/** {@link IncomingMessage.Alipic} */
|
|
3056
|
+
alipic(fn: (this: TaoMessageConsumer, message: IncomingMessage.Alipic) => void): TaoMessageConsumer;
|
|
3011
3057
|
/** {@link IncomingMessage.Alisports} */
|
|
3012
3058
|
alisports(fn: (this: TaoMessageConsumer, message: IncomingMessage.Alisports) => void): TaoMessageConsumer;
|
|
3013
3059
|
/** {@link IncomingMessage.Alitrip} */
|
|
@@ -3050,6 +3096,10 @@ declare interface TaoTopicsDescriptor {
|
|
|
3050
3096
|
jae(fn: (this: TaoMessageConsumer, message: IncomingMessage.Jae) => void): TaoMessageConsumer;
|
|
3051
3097
|
/** {@link IncomingMessage.Jym} */
|
|
3052
3098
|
jym(fn: (this: TaoMessageConsumer, message: IncomingMessage.Jym) => void): TaoMessageConsumer;
|
|
3099
|
+
/** {@link IncomingMessage.Lark} */
|
|
3100
|
+
lark(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lark) => void): TaoMessageConsumer;
|
|
3101
|
+
/** {@link IncomingMessage.Lianfan} */
|
|
3102
|
+
lianfan(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lianfan) => void): TaoMessageConsumer;
|
|
3053
3103
|
/** {@link IncomingMessage.Lst} */
|
|
3054
3104
|
lst(fn: (this: TaoMessageConsumer, message: IncomingMessage.Lst) => void): TaoMessageConsumer;
|
|
3055
3105
|
/** {@link IncomingMessage.Niaochao} */
|
|
@@ -3279,6 +3329,8 @@ declare interface TaoEventsListener {
|
|
|
3279
3329
|
on(topic: 'alibaba_icbulive_CommentNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbuliveCommentNotice) => void): TaoMessageConsumer;
|
|
3280
3330
|
/** {@link IncomingMessage.AlibabaIcbuliveEnterNotice ICBU > 直播观众进场通知} */
|
|
3281
3331
|
on(topic: 'alibaba_icbulive_EnterNotice', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbuliveEnterNotice) => void): TaoMessageConsumer;
|
|
3332
|
+
/** {@link IncomingMessage.AlibabaIdleHouseStatusNotify 闲鱼 > 闲鱼房源状态变更通知} */
|
|
3333
|
+
on(topic: 'alibaba_idle_HouseStatusNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIdleHouseStatusNotify) => void): TaoMessageConsumer;
|
|
3282
3334
|
/** {@link IncomingMessage.AlibabaIfpPackageCfcContainer 五道口配送 > 同城履约包裹状态变更消息} */
|
|
3283
3335
|
on(topic: 'alibaba_ifp_PackageCfcContainer', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIfpPackageCfcContainer) => void): TaoMessageConsumer;
|
|
3284
3336
|
/** {@link IncomingMessage.AlibabaInfopGoodsChange 采购系统 > 采购系统商品消息变更消息} */
|
|
@@ -3497,6 +3549,8 @@ declare interface TaoEventsListener {
|
|
|
3497
3549
|
on(topic: 'alibaba_nlife_InstorageDiffAuditNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeInstorageDiffAuditNotify) => void): TaoMessageConsumer;
|
|
3498
3550
|
/** {@link IncomingMessage.AlibabaNlifeItemUpdate 零售plus > 零售+商品变动消息} */
|
|
3499
3551
|
on(topic: 'alibaba_nlife_ItemUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlifeItemUpdate) => void): TaoMessageConsumer;
|
|
3552
|
+
/** {@link IncomingMessage.AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步} */
|
|
3553
|
+
on(topic: 'alibaba_okki_SpuStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkkiSpuStatusSync) => void): TaoMessageConsumer;
|
|
3500
3554
|
/** {@link IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
|
|
3501
3555
|
on(topic: 'alibaba_paimai_AlipayConsumeGoldTaskFinish', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimaiAlipayConsumeGoldTaskFinish) => void): TaoMessageConsumer;
|
|
3502
3556
|
/** {@link IncomingMessage.AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
|
|
@@ -3633,6 +3687,8 @@ declare interface TaoEventsListener {
|
|
|
3633
3687
|
on(topic: 'alibaba_wdkorder_VoucherStatus', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorderVoucherStatus) => void): TaoMessageConsumer;
|
|
3634
3688
|
/** {@link IncomingMessage.AlibabaWdktradeCouponInstance 五道口营销 > 营销券实例消息} */
|
|
3635
3689
|
on(topic: 'alibaba_wdktrade_CouponInstance', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktradeCouponInstance) => void): TaoMessageConsumer;
|
|
3690
|
+
/** {@link IncomingMessage.AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
3691
|
+
on(topic: 'alibaba_yichao_InsuranceUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichaoInsuranceUpdate) => void): TaoMessageConsumer;
|
|
3636
3692
|
/** {@link IncomingMessage.AlibabaYunioDataTransfer 平台消息 > YunIO数据流转} */
|
|
3637
3693
|
on(topic: 'alibaba_yunio_DataTransfer', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYunioDataTransfer) => void): TaoMessageConsumer;
|
|
3638
3694
|
/** {@link IncomingMessage.AlicomAxbSubsEventSync 阿里通信 > 绑定事件同步} */
|
|
@@ -3799,6 +3855,12 @@ declare interface TaoEventsListener {
|
|
|
3799
3855
|
on(topic: 'alipay_update_Seller', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdateSeller) => void): TaoMessageConsumer;
|
|
3800
3856
|
/** {@link IncomingMessage.AlipayXiaodaiSignNotify 阿里金融 > 阿里金融签约通知} */
|
|
3801
3857
|
on(topic: 'alipay_xiaodai_SignNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodaiSignNotify) => void): TaoMessageConsumer;
|
|
3858
|
+
/** {@link IncomingMessage.AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云} */
|
|
3859
|
+
on(topic: 'alipic_lark_JiayingDataReport', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkJiayingDataReport) => void): TaoMessageConsumer;
|
|
3860
|
+
/** {@link IncomingMessage.AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行} */
|
|
3861
|
+
on(topic: 'alipic_lark_ResultDataDownlink', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkResultDataDownlink) => void): TaoMessageConsumer;
|
|
3862
|
+
/** {@link IncomingMessage.AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
|
|
3863
|
+
on(topic: 'alipic_lark_SchedulesDataDownlink', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLarkSchedulesDataDownlink) => void): TaoMessageConsumer;
|
|
3802
3864
|
/** {@link IncomingMessage.AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
|
|
3803
3865
|
on(topic: 'alisports_bank_Alipayattention', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlisportsBankAlipayattention) => void): TaoMessageConsumer;
|
|
3804
3866
|
/** {@link IncomingMessage.AlitripAgentNotify 淘宝机票 > 商家机票业务通知} */
|
|
@@ -3903,6 +3965,8 @@ declare interface TaoEventsListener {
|
|
|
3903
3965
|
on(topic: 'alsc_kbbbt_ProductChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlscKbbbtProductChange) => void): TaoMessageConsumer;
|
|
3904
3966
|
/** {@link IncomingMessage.AlscReviewbwcActivityEnrollSync 口碑 > 本地联盟饿了么评价有礼门店活动消息} */
|
|
3905
3967
|
on(topic: 'alsc_reviewbwc_ActivityEnrollSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlscReviewbwcActivityEnrollSync) => void): TaoMessageConsumer;
|
|
3968
|
+
/** {@link IncomingMessage.AlscReviewbwcSidBindSync 口碑 > 评价有礼渠道用户身份SID绑定通知} */
|
|
3969
|
+
on(topic: 'alsc_reviewbwc_SidBindSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlscReviewbwcSidBindSync) => void): TaoMessageConsumer;
|
|
3906
3970
|
/** {@link IncomingMessage.AlscRiskPunishSend 口碑 > 本地生活处罚中心处罚下发} */
|
|
3907
3971
|
on(topic: 'alsc_risk_PunishSend', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlscRiskPunishSend) => void): TaoMessageConsumer;
|
|
3908
3972
|
/** {@link IncomingMessage.AlscSalesadaptorShopAuditingNotify 口碑 > 饿了么开店状态通知接口} */
|
|
@@ -4163,6 +4227,12 @@ declare interface TaoEventsListener {
|
|
|
4163
4227
|
on(topic: 'jae_trade_PaidSuccessed', listener: (this: TaoMessageConsumer, message: IncomingMessage.JaeTradePaidSuccessed) => void): TaoMessageConsumer;
|
|
4164
4228
|
/** {@link IncomingMessage.JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
|
|
4165
4229
|
on(topic: 'jym_order_BoosterStatusChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.JymOrderBoosterStatusChange) => void): TaoMessageConsumer;
|
|
4230
|
+
/** {@link IncomingMessage.LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
|
|
4231
|
+
on(topic: 'lark_trade_PosTradeDataTransmit', listener: (this: TaoMessageConsumer, message: IncomingMessage.LarkTradePosTradeDataTransmit) => void): TaoMessageConsumer;
|
|
4232
|
+
/** {@link IncomingMessage.LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
4233
|
+
on(topic: 'lianfan_huiwa_ModelStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaModelStateUpdate) => void): TaoMessageConsumer;
|
|
4234
|
+
/** {@link IncomingMessage.LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
4235
|
+
on(topic: 'lianfan_huiwa_TaskStateUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwaTaskStateUpdate) => void): TaoMessageConsumer;
|
|
4166
4236
|
/** {@link IncomingMessage.LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
4167
4237
|
on(topic: 'lst_supplier_BroadcastFastRefundMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplierBroadcastFastRefundMessage) => void): TaoMessageConsumer;
|
|
4168
4238
|
/** {@link IncomingMessage.LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
|
|
@@ -4475,6 +4545,8 @@ declare interface TaoEventsListener {
|
|
|
4475
4545
|
on(topic: 'taobao_istore_GiftingMsg', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoIstoreGiftingMsg) => void): TaoMessageConsumer;
|
|
4476
4546
|
/** {@link IncomingMessage.TaobaoItemAuditResultNotify 淘宝商品 > 淘宝商品审核结果消息通知} */
|
|
4477
4547
|
on(topic: 'taobao_item_AuditResultNotify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemAuditResultNotify) => void): TaoMessageConsumer;
|
|
4548
|
+
/** {@link IncomingMessage.TaobaoItemDistributeItemEdit 淘宝商品 > 商品变更消息通知} */
|
|
4549
|
+
on(topic: 'taobao_item_DistributeItemEdit', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemDistributeItemEdit) => void): TaoMessageConsumer;
|
|
4478
4550
|
/** {@link IncomingMessage.TaobaoItemItemAdd 淘宝商品 > 商品新增消息} */
|
|
4479
4551
|
on(topic: 'taobao_item_ItemAdd', listener: (this: TaoMessageConsumer, message: IncomingMessage.TaobaoItemItemAdd) => void): TaoMessageConsumer;
|
|
4480
4552
|
/** {@link IncomingMessage.TaobaoItemItemDelete 淘宝商品 > 商品删除消息} */
|
|
@@ -5073,6 +5145,8 @@ declare interface TaoEventsListener {
|
|
|
5073
5145
|
on(topic: 'tmall_auto_TradeModify', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTradeModify) => void): TaoMessageConsumer;
|
|
5074
5146
|
/** {@link IncomingMessage.TmallAutoTwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
|
|
5075
5147
|
on(topic: 'tmall_auto_TwoWheelsReceiptCreate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallAutoTwoWheelsReceiptCreate) => void): TaoMessageConsumer;
|
|
5148
|
+
/** {@link IncomingMessage.TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
|
|
5149
|
+
on(topic: 'tmall_car_AbnormalSettleSeller', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAbnormalSettleSeller) => void): TaoMessageConsumer;
|
|
5076
5150
|
/** {@link IncomingMessage.TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
|
|
5077
5151
|
on(topic: 'tmall_car_AliapayTelRedPacket', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallCarAliapayTelRedPacket) => void): TaoMessageConsumer;
|
|
5078
5152
|
/** {@link IncomingMessage.TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
|
|
@@ -5105,6 +5179,8 @@ declare interface TaoEventsListener {
|
|
|
5105
5179
|
on(topic: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuHomeDecorationSupplyRuleUpdate) => void): TaoMessageConsumer;
|
|
5106
5180
|
/** {@link IncomingMessage.TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
|
|
5107
5181
|
on(topic: 'tmall_fuwu_LogisticsInfoMessage', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuLogisticsInfoMessage) => void): TaoMessageConsumer;
|
|
5182
|
+
/** {@link IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
|
|
5183
|
+
on(topic: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuNewAnomalyRecourseStatusUpdate) => void): TaoMessageConsumer;
|
|
5108
5184
|
/** {@link IncomingMessage.TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
5109
5185
|
on(topic: 'tmall_fuwu_RateMessageTP', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallFuwuRateMessageTP) => void): TaoMessageConsumer;
|
|
5110
5186
|
/** {@link IncomingMessage.TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
@@ -5223,6 +5299,8 @@ declare interface TaoEventsListener {
|
|
|
5223
5299
|
on(topic: 'tmall_sasssign_Msg', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssignMsg) => void): TaoMessageConsumer;
|
|
5224
5300
|
/** {@link IncomingMessage.TmallScmSendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
|
|
5225
5301
|
on(topic: 'tmall_scm_SendTmcsDistributeSettleFee', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallScmSendTmcsDistributeSettleFee) => void): TaoMessageConsumer;
|
|
5302
|
+
/** {@link IncomingMessage.TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
5303
|
+
on(topic: 'tmall_service_CycleBillInvoice', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServiceCycleBillInvoice) => void): TaoMessageConsumer;
|
|
5226
5304
|
/** {@link IncomingMessage.TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
5227
5305
|
on(topic: 'tmall_servicecenter_TaskUpdate', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenterTaskUpdate) => void): TaoMessageConsumer;
|
|
5228
5306
|
/** {@link IncomingMessage.TmallServiceplatformServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -5297,6 +5375,8 @@ declare interface TaoEventsListener {
|
|
|
5297
5375
|
on(topic: 'xianyu_appraise_OrderSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuAppraiseOrderSyn) => void): TaoMessageConsumer;
|
|
5298
5376
|
/** {@link IncomingMessage.XianyuCarOrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
5299
5377
|
on(topic: 'xianyu_car_OrderStatusSync', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCarOrderStatusSync) => void): TaoMessageConsumer;
|
|
5378
|
+
/** {@link IncomingMessage.XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
5379
|
+
on(topic: 'xianyu_ctox_CommissionStateSyn', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxCommissionStateSyn) => void): TaoMessageConsumer;
|
|
5300
5380
|
/** {@link IncomingMessage.XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
5301
5381
|
on(topic: 'xianyu_ctox_PayDkChange', listener: (this: TaoMessageConsumer, message: IncomingMessage.XianyuCtoxPayDkChange) => void): TaoMessageConsumer;
|
|
5302
5382
|
/** {@link IncomingMessage.XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
|
|
@@ -5387,6 +5467,8 @@ declare interface TaoEventsListener {
|
|
|
5387
5467
|
on(topic: 'alibaba_homestyler', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaHomestyler) => void): TaoMessageConsumer;
|
|
5388
5468
|
/** {@link IncomingMessage.AlibabaIcbulive} */
|
|
5389
5469
|
on(topic: 'alibaba_icbulive', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIcbulive) => void): TaoMessageConsumer;
|
|
5470
|
+
/** {@link IncomingMessage.AlibabaIdle} */
|
|
5471
|
+
on(topic: 'alibaba_idle', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIdle) => void): TaoMessageConsumer;
|
|
5390
5472
|
/** {@link IncomingMessage.AlibabaIfp} */
|
|
5391
5473
|
on(topic: 'alibaba_ifp', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaIfp) => void): TaoMessageConsumer;
|
|
5392
5474
|
/** {@link IncomingMessage.AlibabaInfop} */
|
|
@@ -5425,6 +5507,8 @@ declare interface TaoEventsListener {
|
|
|
5425
5507
|
on(topic: 'alibaba_newretail', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNewretail) => void): TaoMessageConsumer;
|
|
5426
5508
|
/** {@link IncomingMessage.AlibabaNlife} */
|
|
5427
5509
|
on(topic: 'alibaba_nlife', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaNlife) => void): TaoMessageConsumer;
|
|
5510
|
+
/** {@link IncomingMessage.AlibabaOkki} */
|
|
5511
|
+
on(topic: 'alibaba_okki', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaOkki) => void): TaoMessageConsumer;
|
|
5428
5512
|
/** {@link IncomingMessage.AlibabaPaimai} */
|
|
5429
5513
|
on(topic: 'alibaba_paimai', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaPaimai) => void): TaoMessageConsumer;
|
|
5430
5514
|
/** {@link IncomingMessage.AlibabaPur} */
|
|
@@ -5459,6 +5543,8 @@ declare interface TaoEventsListener {
|
|
|
5459
5543
|
on(topic: 'alibaba_wdkorder', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdkorder) => void): TaoMessageConsumer;
|
|
5460
5544
|
/** {@link IncomingMessage.AlibabaWdktrade} */
|
|
5461
5545
|
on(topic: 'alibaba_wdktrade', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaWdktrade) => void): TaoMessageConsumer;
|
|
5546
|
+
/** {@link IncomingMessage.AlibabaYichao} */
|
|
5547
|
+
on(topic: 'alibaba_yichao', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYichao) => void): TaoMessageConsumer;
|
|
5462
5548
|
/** {@link IncomingMessage.AlibabaYunio} */
|
|
5463
5549
|
on(topic: 'alibaba_yunio', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlibabaYunio) => void): TaoMessageConsumer;
|
|
5464
5550
|
/** {@link IncomingMessage.AlicomAxb} */
|
|
@@ -5515,6 +5601,8 @@ declare interface TaoEventsListener {
|
|
|
5515
5601
|
on(topic: 'alipay_update', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayUpdate) => void): TaoMessageConsumer;
|
|
5516
5602
|
/** {@link IncomingMessage.AlipayXiaodai} */
|
|
5517
5603
|
on(topic: 'alipay_xiaodai', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipayXiaodai) => void): TaoMessageConsumer;
|
|
5604
|
+
/** {@link IncomingMessage.AlipicLark} */
|
|
5605
|
+
on(topic: 'alipic_lark', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlipicLark) => void): TaoMessageConsumer;
|
|
5518
5606
|
/** {@link IncomingMessage.AlisportsBank} */
|
|
5519
5607
|
on(topic: 'alisports_bank', listener: (this: TaoMessageConsumer, message: IncomingMessage.AlisportsBank) => void): TaoMessageConsumer;
|
|
5520
5608
|
/** {@link IncomingMessage.AlitripAgent} */
|
|
@@ -5677,6 +5765,10 @@ declare interface TaoEventsListener {
|
|
|
5677
5765
|
on(topic: 'jae_trade', listener: (this: TaoMessageConsumer, message: IncomingMessage.JaeTrade) => void): TaoMessageConsumer;
|
|
5678
5766
|
/** {@link IncomingMessage.JymOrder} */
|
|
5679
5767
|
on(topic: 'jym_order', listener: (this: TaoMessageConsumer, message: IncomingMessage.JymOrder) => void): TaoMessageConsumer;
|
|
5768
|
+
/** {@link IncomingMessage.LarkTrade} */
|
|
5769
|
+
on(topic: 'lark_trade', listener: (this: TaoMessageConsumer, message: IncomingMessage.LarkTrade) => void): TaoMessageConsumer;
|
|
5770
|
+
/** {@link IncomingMessage.LianfanHuiwa} */
|
|
5771
|
+
on(topic: 'lianfan_huiwa', listener: (this: TaoMessageConsumer, message: IncomingMessage.LianfanHuiwa) => void): TaoMessageConsumer;
|
|
5680
5772
|
/** {@link IncomingMessage.LstSupplier} */
|
|
5681
5773
|
on(topic: 'lst_supplier', listener: (this: TaoMessageConsumer, message: IncomingMessage.LstSupplier) => void): TaoMessageConsumer;
|
|
5682
5774
|
/** {@link IncomingMessage.NiaochaoTccompass} */
|
|
@@ -5941,6 +6033,8 @@ declare interface TaoEventsListener {
|
|
|
5941
6033
|
on(topic: 'tmall_sasssign', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallSasssign) => void): TaoMessageConsumer;
|
|
5942
6034
|
/** {@link IncomingMessage.TmallScm} */
|
|
5943
6035
|
on(topic: 'tmall_scm', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallScm) => void): TaoMessageConsumer;
|
|
6036
|
+
/** {@link IncomingMessage.TmallService} */
|
|
6037
|
+
on(topic: 'tmall_service', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallService) => void): TaoMessageConsumer;
|
|
5944
6038
|
/** {@link IncomingMessage.TmallServicecenter} */
|
|
5945
6039
|
on(topic: 'tmall_servicecenter', listener: (this: TaoMessageConsumer, message: IncomingMessage.TmallServicecenter) => void): TaoMessageConsumer;
|
|
5946
6040
|
/** {@link IncomingMessage.TmallServiceplatform} */
|
|
@@ -6023,6 +6117,8 @@ declare interface TaoEventsListener {
|
|
|
6023
6117
|
on(topic: 'alios', listener: (this: TaoMessageConsumer, message: IncomingMessage.Alios) => void): TaoMessageConsumer;
|
|
6024
6118
|
/** {@link IncomingMessage.Alipay} */
|
|
6025
6119
|
on(topic: 'alipay', listener: (this: TaoMessageConsumer, message: IncomingMessage.Alipay) => void): TaoMessageConsumer;
|
|
6120
|
+
/** {@link IncomingMessage.Alipic} */
|
|
6121
|
+
on(topic: 'alipic', listener: (this: TaoMessageConsumer, message: IncomingMessage.Alipic) => void): TaoMessageConsumer;
|
|
6026
6122
|
/** {@link IncomingMessage.Alisports} */
|
|
6027
6123
|
on(topic: 'alisports', listener: (this: TaoMessageConsumer, message: IncomingMessage.Alisports) => void): TaoMessageConsumer;
|
|
6028
6124
|
/** {@link IncomingMessage.Alitrip} */
|
|
@@ -6065,6 +6161,10 @@ declare interface TaoEventsListener {
|
|
|
6065
6161
|
on(topic: 'jae', listener: (this: TaoMessageConsumer, message: IncomingMessage.Jae) => void): TaoMessageConsumer;
|
|
6066
6162
|
/** {@link IncomingMessage.Jym} */
|
|
6067
6163
|
on(topic: 'jym', listener: (this: TaoMessageConsumer, message: IncomingMessage.Jym) => void): TaoMessageConsumer;
|
|
6164
|
+
/** {@link IncomingMessage.Lark} */
|
|
6165
|
+
on(topic: 'lark', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lark) => void): TaoMessageConsumer;
|
|
6166
|
+
/** {@link IncomingMessage.Lianfan} */
|
|
6167
|
+
on(topic: 'lianfan', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lianfan) => void): TaoMessageConsumer;
|
|
6068
6168
|
/** {@link IncomingMessage.Lst} */
|
|
6069
6169
|
on(topic: 'lst', listener: (this: TaoMessageConsumer, message: IncomingMessage.Lst) => void): TaoMessageConsumer;
|
|
6070
6170
|
/** {@link IncomingMessage.Niaochao} */
|
package/types/lark.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/** 云智POS */
|
|
2
|
+
declare namespace Lark.Trade {
|
|
3
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2547&docType=9 云智POS离线交易信息同步} */
|
|
4
|
+
interface PosTradeDataTransmit {
|
|
5
|
+
/** 消息业务ID */
|
|
6
|
+
pos_bus_data_id: string;
|
|
7
|
+
/** 消息主体 */
|
|
8
|
+
pos_bus_result_data: string;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/** 连凡 */
|
|
2
|
+
declare namespace Lianfan.Huiwa {
|
|
3
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2561&docType=9 绘蛙模型状态变更消息} */
|
|
4
|
+
interface ModelStateUpdate {
|
|
5
|
+
/** 模型id */
|
|
6
|
+
model_id: number;
|
|
7
|
+
/** 模型状态 */
|
|
8
|
+
model_status: number;
|
|
9
|
+
/** 模型类型 */
|
|
10
|
+
model_type: number;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2559&docType=9 绘蛙生图任务状态变更消息} */
|
|
14
|
+
interface TaskStateUpdate {
|
|
15
|
+
/** 主任务id */
|
|
16
|
+
main_task_id: number;
|
|
17
|
+
/** 扩展字段 */
|
|
18
|
+
pass_through?: string;
|
|
19
|
+
/** 任务类型 */
|
|
20
|
+
task_biz_type: number;
|
|
21
|
+
/** 任务id */
|
|
22
|
+
task_id: number;
|
|
23
|
+
/** 任务状态 */
|
|
24
|
+
task_status: number;
|
|
25
|
+
}
|
|
26
|
+
}
|
package/types/message.in.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
/// <reference path="alihouse.d.ts" />
|
|
9
9
|
/// <reference path="alios.d.ts" />
|
|
10
10
|
/// <reference path="alipay.d.ts" />
|
|
11
|
+
/// <reference path="alipic.d.ts" />
|
|
11
12
|
/// <reference path="alisports.d.ts" />
|
|
12
13
|
/// <reference path="alitrip.d.ts" />
|
|
13
14
|
/// <reference path="aliyun.d.ts" />
|
|
@@ -29,6 +30,8 @@
|
|
|
29
30
|
/// <reference path="intime.d.ts" />
|
|
30
31
|
/// <reference path="jae.d.ts" />
|
|
31
32
|
/// <reference path="jym.d.ts" />
|
|
33
|
+
/// <reference path="lark.d.ts" />
|
|
34
|
+
/// <reference path="lianfan.d.ts" />
|
|
32
35
|
/// <reference path="lst.d.ts" />
|
|
33
36
|
/// <reference path="niaochao.d.ts" />
|
|
34
37
|
/// <reference path="taobao.d.ts" />
|
|
@@ -244,6 +247,8 @@ declare namespace IncomingMessage {
|
|
|
244
247
|
type AlibabaIcbuliveCommentNotice = Message & { content?: MessageContent & { topic?: 'alibaba_icbulive_CommentNotice', content?: string | Alibaba.Icbulive.CommentNotice } };
|
|
245
248
|
/** {@link Alibaba.Icbulive.EnterNotice ICBU > 直播观众进场通知} */
|
|
246
249
|
type AlibabaIcbuliveEnterNotice = Message & { content?: MessageContent & { topic?: 'alibaba_icbulive_EnterNotice', content?: string | Alibaba.Icbulive.EnterNotice } };
|
|
250
|
+
/** {@link Alibaba.Idle.HouseStatusNotify 闲鱼 > 闲鱼房源状态变更通知} */
|
|
251
|
+
type AlibabaIdleHouseStatusNotify = Message & { content?: MessageContent & { topic?: 'alibaba_idle_HouseStatusNotify', content?: string | Alibaba.Idle.HouseStatusNotify } };
|
|
247
252
|
/** {@link Alibaba.Ifp.PackageCfcContainer 五道口配送 > 同城履约包裹状态变更消息} */
|
|
248
253
|
type AlibabaIfpPackageCfcContainer = Message & { content?: MessageContent & { topic?: 'alibaba_ifp_PackageCfcContainer', content?: string | Alibaba.Ifp.PackageCfcContainer } };
|
|
249
254
|
/** {@link Alibaba.Infop.GoodsChange 采购系统 > 采购系统商品消息变更消息} */
|
|
@@ -462,6 +467,8 @@ declare namespace IncomingMessage {
|
|
|
462
467
|
type AlibabaNlifeInstorageDiffAuditNotify = Message & { content?: MessageContent & { topic?: 'alibaba_nlife_InstorageDiffAuditNotify', content?: string | Alibaba.Nlife.InstorageDiffAuditNotify } };
|
|
463
468
|
/** {@link Alibaba.Nlife.ItemUpdate 零售plus > 零售+商品变动消息} */
|
|
464
469
|
type AlibabaNlifeItemUpdate = Message & { content?: MessageContent & { topic?: 'alibaba_nlife_ItemUpdate', content?: string | Alibaba.Nlife.ItemUpdate } };
|
|
470
|
+
/** {@link Alibaba.Okki.SpuStatusSync 小满 > 小满商品服务状态同步} */
|
|
471
|
+
type AlibabaOkkiSpuStatusSync = Message & { content?: MessageContent & { topic?: 'alibaba_okki_SpuStatusSync', content?: string | Alibaba.Okki.SpuStatusSync } };
|
|
465
472
|
/** {@link Alibaba.Paimai.AlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务} */
|
|
466
473
|
type AlibabaPaimaiAlipayConsumeGoldTaskFinish = Message & { content?: MessageContent & { topic?: 'alibaba_paimai_AlipayConsumeGoldTaskFinish', content?: string | Alibaba.Paimai.AlipayConsumeGoldTaskFinish } };
|
|
467
474
|
/** {@link Alibaba.Paimai.CommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息} */
|
|
@@ -598,6 +605,8 @@ declare namespace IncomingMessage {
|
|
|
598
605
|
type AlibabaWdkorderVoucherStatus = Message & { content?: MessageContent & { topic?: 'alibaba_wdkorder_VoucherStatus', content?: string | Alibaba.Wdkorder.VoucherStatus } };
|
|
599
606
|
/** {@link Alibaba.Wdktrade.CouponInstance 五道口营销 > 营销券实例消息} */
|
|
600
607
|
type AlibabaWdktradeCouponInstance = Message & { content?: MessageContent & { topic?: 'alibaba_wdktrade_CouponInstance', content?: string | Alibaba.Wdktrade.CouponInstance } };
|
|
608
|
+
/** {@link Alibaba.Yichao.InsuranceUpdate 天猫服务 > 蚁巢保单修改消息} */
|
|
609
|
+
type AlibabaYichaoInsuranceUpdate = Message & { content?: MessageContent & { topic?: 'alibaba_yichao_InsuranceUpdate', content?: string | Alibaba.Yichao.InsuranceUpdate } };
|
|
601
610
|
/** {@link Alibaba.Yunio.DataTransfer 平台消息 > YunIO数据流转} */
|
|
602
611
|
type AlibabaYunioDataTransfer = Message & { content?: MessageContent & { topic?: 'alibaba_yunio_DataTransfer', content?: string | Alibaba.Yunio.DataTransfer } };
|
|
603
612
|
/** {@link Alicom.Axb.SubsEventSync 阿里通信 > 绑定事件同步} */
|
|
@@ -764,6 +773,12 @@ declare namespace IncomingMessage {
|
|
|
764
773
|
type AlipayUpdateSeller = Message & { content?: MessageContent & { topic?: 'alipay_update_Seller', content?: string | Alipay.Update.Seller } };
|
|
765
774
|
/** {@link Alipay.Xiaodai.SignNotify 阿里金融 > 阿里金融签约通知} */
|
|
766
775
|
type AlipayXiaodaiSignNotify = Message & { content?: MessageContent & { topic?: 'alipay_xiaodai_SignNotify', content?: string | Alipay.Xiaodai.SignNotify } };
|
|
776
|
+
/** {@link Alipic.Lark.JiayingDataReport ALIPIC > 佳影数据上云} */
|
|
777
|
+
type AlipicLarkJiayingDataReport = Message & { content?: MessageContent & { topic?: 'alipic_lark_JiayingDataReport', content?: string | Alipic.Lark.JiayingDataReport } };
|
|
778
|
+
/** {@link Alipic.Lark.ResultDataDownlink ALIPIC > POS配置态数据增量下行} */
|
|
779
|
+
type AlipicLarkResultDataDownlink = Message & { content?: MessageContent & { topic?: 'alipic_lark_ResultDataDownlink', content?: string | Alipic.Lark.ResultDataDownlink } };
|
|
780
|
+
/** {@link Alipic.Lark.SchedulesDataDownlink ALIPIC > 排期列表数据增量下行} */
|
|
781
|
+
type AlipicLarkSchedulesDataDownlink = Message & { content?: MessageContent & { topic?: 'alipic_lark_SchedulesDataDownlink', content?: string | Alipic.Lark.SchedulesDataDownlink } };
|
|
767
782
|
/** {@link Alisports.Bank.Alipayattention 支付宝体育 > 支付宝体育服务小程序关注消息} */
|
|
768
783
|
type AlisportsBankAlipayattention = Message & { content?: MessageContent & { topic?: 'alisports_bank_Alipayattention', content?: string | Alisports.Bank.Alipayattention } };
|
|
769
784
|
/** {@link Alitrip.Agent.Notify 淘宝机票 > 商家机票业务通知} */
|
|
@@ -868,6 +883,8 @@ declare namespace IncomingMessage {
|
|
|
868
883
|
type AlscKbbbtProductChange = Message & { content?: MessageContent & { topic?: 'alsc_kbbbt_ProductChange', content?: string | Alsc.Kbbbt.ProductChange } };
|
|
869
884
|
/** {@link Alsc.Reviewbwc.ActivityEnrollSync 口碑 > 本地联盟饿了么评价有礼门店活动消息} */
|
|
870
885
|
type AlscReviewbwcActivityEnrollSync = Message & { content?: MessageContent & { topic?: 'alsc_reviewbwc_ActivityEnrollSync', content?: string | Alsc.Reviewbwc.ActivityEnrollSync } };
|
|
886
|
+
/** {@link Alsc.Reviewbwc.SidBindSync 口碑 > 评价有礼渠道用户身份SID绑定通知} */
|
|
887
|
+
type AlscReviewbwcSidBindSync = Message & { content?: MessageContent & { topic?: 'alsc_reviewbwc_SidBindSync', content?: string | Alsc.Reviewbwc.SidBindSync } };
|
|
871
888
|
/** {@link Alsc.Risk.PunishSend 口碑 > 本地生活处罚中心处罚下发} */
|
|
872
889
|
type AlscRiskPunishSend = Message & { content?: MessageContent & { topic?: 'alsc_risk_PunishSend', content?: string | Alsc.Risk.PunishSend } };
|
|
873
890
|
/** {@link Alsc.Salesadaptor.ShopAuditingNotify 口碑 > 饿了么开店状态通知接口} */
|
|
@@ -1128,6 +1145,12 @@ declare namespace IncomingMessage {
|
|
|
1128
1145
|
type JaeTradePaidSuccessed = Message & { content?: MessageContent & { topic?: 'jae_trade_PaidSuccessed', content?: string | Jae.Trade.PaidSuccessed } };
|
|
1129
1146
|
/** {@link Jym.Order.BoosterStatusChange 交易猫 > 交易猫代练订单状态变更} */
|
|
1130
1147
|
type JymOrderBoosterStatusChange = Message & { content?: MessageContent & { topic?: 'jym_order_BoosterStatusChange', content?: string | Jym.Order.BoosterStatusChange } };
|
|
1148
|
+
/** {@link Lark.Trade.PosTradeDataTransmit 云智POS > 云智POS离线交易信息同步} */
|
|
1149
|
+
type LarkTradePosTradeDataTransmit = Message & { content?: MessageContent & { topic?: 'lark_trade_PosTradeDataTransmit', content?: string | Lark.Trade.PosTradeDataTransmit } };
|
|
1150
|
+
/** {@link Lianfan.Huiwa.ModelStateUpdate 连凡 > 绘蛙模型状态变更消息} */
|
|
1151
|
+
type LianfanHuiwaModelStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_ModelStateUpdate', content?: string | Lianfan.Huiwa.ModelStateUpdate } };
|
|
1152
|
+
/** {@link Lianfan.Huiwa.TaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息} */
|
|
1153
|
+
type LianfanHuiwaTaskStateUpdate = Message & { content?: MessageContent & { topic?: 'lianfan_huiwa_TaskStateUpdate', content?: string | Lianfan.Huiwa.TaskStateUpdate } };
|
|
1131
1154
|
/** {@link Lst.Supplier.BroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息} */
|
|
1132
1155
|
type LstSupplierBroadcastFastRefundMessage = Message & { content?: MessageContent & { topic?: 'lst_supplier_BroadcastFastRefundMessage', content?: string | Lst.Supplier.BroadcastFastRefundMessage } };
|
|
1133
1156
|
/** {@link Lst.Supplier.FastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建} */
|
|
@@ -1440,6 +1463,8 @@ declare namespace IncomingMessage {
|
|
|
1440
1463
|
type TaobaoIstoreGiftingMsg = Message & { content?: MessageContent & { topic?: 'taobao_istore_GiftingMsg', content?: string | Taobao.Istore.GiftingMsg } };
|
|
1441
1464
|
/** {@link Taobao.Item.AuditResultNotify 淘宝商品 > 淘宝商品审核结果消息通知} */
|
|
1442
1465
|
type TaobaoItemAuditResultNotify = Message & { content?: MessageContent & { topic?: 'taobao_item_AuditResultNotify', content?: string | Taobao.Item.AuditResultNotify } };
|
|
1466
|
+
/** {@link Taobao.Item.DistributeItemEdit 淘宝商品 > 商品变更消息通知} */
|
|
1467
|
+
type TaobaoItemDistributeItemEdit = Message & { content?: MessageContent & { topic?: 'taobao_item_DistributeItemEdit', content?: string | Taobao.Item.DistributeItemEdit } };
|
|
1443
1468
|
/** {@link Taobao.Item.ItemAdd 淘宝商品 > 商品新增消息} */
|
|
1444
1469
|
type TaobaoItemItemAdd = Message & { content?: MessageContent & { topic?: 'taobao_item_ItemAdd', content?: string | Taobao.Item.ItemAdd } };
|
|
1445
1470
|
/** {@link Taobao.Item.ItemDelete 淘宝商品 > 商品删除消息} */
|
|
@@ -2038,6 +2063,8 @@ declare namespace IncomingMessage {
|
|
|
2038
2063
|
type TmallAutoTradeModify = Message & { content?: MessageContent & { topic?: 'tmall_auto_TradeModify', content?: string | Tmall.Auto.TradeModify } };
|
|
2039
2064
|
/** {@link Tmall.Auto.TwoWheelsReceiptCreate 天猫汽车 > 天猫二轮车服务工单创建开放} */
|
|
2040
2065
|
type TmallAutoTwoWheelsReceiptCreate = Message & { content?: MessageContent & { topic?: 'tmall_auto_TwoWheelsReceiptCreate', content?: string | Tmall.Auto.TwoWheelsReceiptCreate } };
|
|
2066
|
+
/** {@link Tmall.Car.AbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知} */
|
|
2067
|
+
type TmallCarAbnormalSettleSeller = Message & { content?: MessageContent & { topic?: 'tmall_car_AbnormalSettleSeller', content?: string | Tmall.Car.AbnormalSettleSeller } };
|
|
2041
2068
|
/** {@link Tmall.Car.AliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放} */
|
|
2042
2069
|
type TmallCarAliapayTelRedPacket = Message & { content?: MessageContent & { topic?: 'tmall_car_AliapayTelRedPacket', content?: string | Tmall.Car.AliapayTelRedPacket } };
|
|
2043
2070
|
/** {@link Tmall.Car.AlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖} */
|
|
@@ -2070,6 +2097,8 @@ declare namespace IncomingMessage {
|
|
|
2070
2097
|
type TmallFuwuHomeDecorationSupplyRuleUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_HomeDecorationSupplyRuleUpdate', content?: string | Tmall.Fuwu.HomeDecorationSupplyRuleUpdate } };
|
|
2071
2098
|
/** {@link Tmall.Fuwu.LogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息} */
|
|
2072
2099
|
type TmallFuwuLogisticsInfoMessage = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_LogisticsInfoMessage', content?: string | Tmall.Fuwu.LogisticsInfoMessage } };
|
|
2100
|
+
/** {@link Tmall.Fuwu.NewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新} */
|
|
2101
|
+
type TmallFuwuNewAnomalyRecourseStatusUpdate = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_NewAnomalyRecourseStatusUpdate', content?: string | Tmall.Fuwu.NewAnomalyRecourseStatusUpdate } };
|
|
2073
2102
|
/** {@link Tmall.Fuwu.RateMessageTP 天猫服务 > 消费者评价成功top消息} */
|
|
2074
2103
|
type TmallFuwuRateMessageTP = Message & { content?: MessageContent & { topic?: 'tmall_fuwu_RateMessageTP', content?: string | Tmall.Fuwu.RateMessageTP } };
|
|
2075
2104
|
/** {@link Tmall.Fuwu.ServiceItemUpdate 天猫服务 > 服务商品信息变更消息} */
|
|
@@ -2188,6 +2217,8 @@ declare namespace IncomingMessage {
|
|
|
2188
2217
|
type TmallSasssignMsg = Message & { content?: MessageContent & { topic?: 'tmall_sasssign_Msg', content?: string | Tmall.Sasssign.Msg } };
|
|
2189
2218
|
/** {@link Tmall.Scm.SendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息} */
|
|
2190
2219
|
type TmallScmSendTmcsDistributeSettleFee = Message & { content?: MessageContent & { topic?: 'tmall_scm_SendTmcsDistributeSettleFee', content?: string | Tmall.Scm.SendTmcsDistributeSettleFee } };
|
|
2220
|
+
/** {@link Tmall.Service.CycleBillInvoice 天猫服务 > 服务结算账期账单发票消息} */
|
|
2221
|
+
type TmallServiceCycleBillInvoice = Message & { content?: MessageContent & { topic?: 'tmall_service_CycleBillInvoice', content?: string | Tmall.Service.CycleBillInvoice } };
|
|
2191
2222
|
/** {@link Tmall.Servicecenter.TaskUpdate 天猫服务 > 天猫服务平台工单更新} */
|
|
2192
2223
|
type TmallServicecenterTaskUpdate = Message & { content?: MessageContent & { topic?: 'tmall_servicecenter_TaskUpdate', content?: string | Tmall.Servicecenter.TaskUpdate } };
|
|
2193
2224
|
/** {@link Tmall.Serviceplatform.ServiceProductChanged 天猫服务 > 天猫服务产品变更消息} */
|
|
@@ -2262,6 +2293,8 @@ declare namespace IncomingMessage {
|
|
|
2262
2293
|
type XianyuAppraiseOrderSyn = Message & { content?: MessageContent & { topic?: 'xianyu_appraise_OrderSyn', content?: string | Xianyu.Appraise.OrderSyn } };
|
|
2263
2294
|
/** {@link Xianyu.Car.OrderStatusSync 闲鱼回收商消息 > 闲鱼二手车寄卖订单状态同步} */
|
|
2264
2295
|
type XianyuCarOrderStatusSync = Message & { content?: MessageContent & { topic?: 'xianyu_car_OrderStatusSync', content?: string | Xianyu.Car.OrderStatusSync } };
|
|
2296
|
+
/** {@link Xianyu.Ctox.CommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步} */
|
|
2297
|
+
type XianyuCtoxCommissionStateSyn = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_CommissionStateSyn', content?: string | Xianyu.Ctox.CommissionStateSyn } };
|
|
2265
2298
|
/** {@link Xianyu.Ctox.PayDkChange 闲鱼 > c2x代扣协议变更通知} */
|
|
2266
2299
|
type XianyuCtoxPayDkChange = Message & { content?: MessageContent & { topic?: 'xianyu_ctox_PayDkChange', content?: string | Xianyu.Ctox.PayDkChange } };
|
|
2267
2300
|
/** {@link Xianyu.Ctox.RateStateSyn 闲鱼 > c2x业务订单评价消息同步} */
|
|
@@ -2552,6 +2585,10 @@ declare namespace IncomingMessage {
|
|
|
2552
2585
|
*/
|
|
2553
2586
|
type AlibabaIcbulive = AlibabaIcbuliveCommentNotice
|
|
2554
2587
|
| AlibabaIcbuliveEnterNotice;
|
|
2588
|
+
/**
|
|
2589
|
+
* - {@link AlibabaIdleHouseStatusNotify 闲鱼 > 闲鱼房源状态变更通知}
|
|
2590
|
+
*/
|
|
2591
|
+
type AlibabaIdle = AlibabaIdleHouseStatusNotify;
|
|
2555
2592
|
/**
|
|
2556
2593
|
* - {@link AlibabaIfpPackageCfcContainer 五道口配送 > 同城履约包裹状态变更消息}
|
|
2557
2594
|
*/
|
|
@@ -2808,6 +2845,10 @@ declare namespace IncomingMessage {
|
|
|
2808
2845
|
| AlibabaNlifeBtobTradeRefundNotify
|
|
2809
2846
|
| AlibabaNlifeInstorageDiffAuditNotify
|
|
2810
2847
|
| AlibabaNlifeItemUpdate;
|
|
2848
|
+
/**
|
|
2849
|
+
* - {@link AlibabaOkkiSpuStatusSync 小满 > 小满商品服务状态同步}
|
|
2850
|
+
*/
|
|
2851
|
+
type AlibabaOkki = AlibabaOkkiSpuStatusSync;
|
|
2811
2852
|
/**
|
|
2812
2853
|
* - {@link AlibabaPaimaiAlipayConsumeGoldTaskFinish 阿里拍卖 > 支付宝用户完成消费金任务}
|
|
2813
2854
|
* - {@link AlibabaPaimaiCommonPromoTask 阿里拍卖 > 拍卖支付宝营销通用消息}
|
|
@@ -2978,6 +3019,10 @@ declare namespace IncomingMessage {
|
|
|
2978
3019
|
* - {@link AlibabaWdktradeCouponInstance 五道口营销 > 营销券实例消息}
|
|
2979
3020
|
*/
|
|
2980
3021
|
type AlibabaWdktrade = AlibabaWdktradeCouponInstance;
|
|
3022
|
+
/**
|
|
3023
|
+
* - {@link AlibabaYichaoInsuranceUpdate 天猫服务 > 蚁巢保单修改消息}
|
|
3024
|
+
*/
|
|
3025
|
+
type AlibabaYichao = AlibabaYichaoInsuranceUpdate;
|
|
2981
3026
|
/**
|
|
2982
3027
|
* - {@link AlibabaYunioDataTransfer 平台消息 > YunIO数据流转}
|
|
2983
3028
|
*/
|
|
@@ -3200,6 +3245,14 @@ declare namespace IncomingMessage {
|
|
|
3200
3245
|
* - {@link AlipayXiaodaiSignNotify 阿里金融 > 阿里金融签约通知}
|
|
3201
3246
|
*/
|
|
3202
3247
|
type AlipayXiaodai = AlipayXiaodaiSignNotify;
|
|
3248
|
+
/**
|
|
3249
|
+
* - {@link AlipicLarkJiayingDataReport ALIPIC > 佳影数据上云}
|
|
3250
|
+
* - {@link AlipicLarkResultDataDownlink ALIPIC > POS配置态数据增量下行}
|
|
3251
|
+
* - {@link AlipicLarkSchedulesDataDownlink ALIPIC > 排期列表数据增量下行}
|
|
3252
|
+
*/
|
|
3253
|
+
type AlipicLark = AlipicLarkJiayingDataReport
|
|
3254
|
+
| AlipicLarkResultDataDownlink
|
|
3255
|
+
| AlipicLarkSchedulesDataDownlink;
|
|
3203
3256
|
/**
|
|
3204
3257
|
* - {@link AlisportsBankAlipayattention 支付宝体育 > 支付宝体育服务小程序关注消息}
|
|
3205
3258
|
*/
|
|
@@ -3352,8 +3405,10 @@ declare namespace IncomingMessage {
|
|
|
3352
3405
|
| AlscKbbbtProductChange;
|
|
3353
3406
|
/**
|
|
3354
3407
|
* - {@link AlscReviewbwcActivityEnrollSync 口碑 > 本地联盟饿了么评价有礼门店活动消息}
|
|
3408
|
+
* - {@link AlscReviewbwcSidBindSync 口碑 > 评价有礼渠道用户身份SID绑定通知}
|
|
3355
3409
|
*/
|
|
3356
|
-
type AlscReviewbwc = AlscReviewbwcActivityEnrollSync
|
|
3410
|
+
type AlscReviewbwc = AlscReviewbwcActivityEnrollSync
|
|
3411
|
+
| AlscReviewbwcSidBindSync;
|
|
3357
3412
|
/**
|
|
3358
3413
|
* - {@link AlscRiskPunishSend 口碑 > 本地生活处罚中心处罚下发}
|
|
3359
3414
|
*/
|
|
@@ -3726,6 +3781,16 @@ declare namespace IncomingMessage {
|
|
|
3726
3781
|
* - {@link JymOrderBoosterStatusChange 交易猫 > 交易猫代练订单状态变更}
|
|
3727
3782
|
*/
|
|
3728
3783
|
type JymOrder = JymOrderBoosterStatusChange;
|
|
3784
|
+
/**
|
|
3785
|
+
* - {@link LarkTradePosTradeDataTransmit 云智POS > 云智POS离线交易信息同步}
|
|
3786
|
+
*/
|
|
3787
|
+
type LarkTrade = LarkTradePosTradeDataTransmit;
|
|
3788
|
+
/**
|
|
3789
|
+
* - {@link LianfanHuiwaModelStateUpdate 连凡 > 绘蛙模型状态变更消息}
|
|
3790
|
+
* - {@link LianfanHuiwaTaskStateUpdate 连凡 > 绘蛙生图任务状态变更消息}
|
|
3791
|
+
*/
|
|
3792
|
+
type LianfanHuiwa = LianfanHuiwaModelStateUpdate
|
|
3793
|
+
| LianfanHuiwaTaskStateUpdate;
|
|
3729
3794
|
/**
|
|
3730
3795
|
* - {@link LstSupplierBroadcastFastRefundMessage 零售通_公共 > 零售通广播极速退款消息}
|
|
3731
3796
|
* - {@link LstSupplierFastRefundMessageCreate 零售通_公共 > 品牌商极速退款消息创建}
|
|
@@ -4116,6 +4181,7 @@ declare namespace IncomingMessage {
|
|
|
4116
4181
|
type TaobaoIstore = TaobaoIstoreGiftingMsg;
|
|
4117
4182
|
/**
|
|
4118
4183
|
* - {@link TaobaoItemAuditResultNotify 淘宝商品 > 淘宝商品审核结果消息通知}
|
|
4184
|
+
* - {@link TaobaoItemDistributeItemEdit 淘宝商品 > 商品变更消息通知}
|
|
4119
4185
|
* - {@link TaobaoItemItemAdd 淘宝商品 > 商品新增消息}
|
|
4120
4186
|
* - {@link TaobaoItemItemDelete 淘宝商品 > 商品删除消息}
|
|
4121
4187
|
* - {@link TaobaoItemItemDownshelf 淘宝商品 > 商品下架消息}
|
|
@@ -4133,6 +4199,7 @@ declare namespace IncomingMessage {
|
|
|
4133
4199
|
* - {@link TaobaoItemItemZeroStock 淘宝商品 > 商品卖空消息}
|
|
4134
4200
|
*/
|
|
4135
4201
|
type TaobaoItem = TaobaoItemAuditResultNotify
|
|
4202
|
+
| TaobaoItemDistributeItemEdit
|
|
4136
4203
|
| TaobaoItemItemAdd
|
|
4137
4204
|
| TaobaoItemItemDelete
|
|
4138
4205
|
| TaobaoItemItemDownshelf
|
|
@@ -4863,13 +4930,15 @@ declare namespace IncomingMessage {
|
|
|
4863
4930
|
| TmallAutoTradeModify
|
|
4864
4931
|
| TmallAutoTwoWheelsReceiptCreate;
|
|
4865
4932
|
/**
|
|
4933
|
+
* - {@link TmallCarAbnormalSettleSeller 天猫汽车 > 天猫汽车安装服务-异常商家上下线通知}
|
|
4866
4934
|
* - {@link TmallCarAliapayTelRedPacket 天猫汽车 > 天猫汽车-支付宝手机充值红包发放}
|
|
4867
4935
|
* - {@link TmallCarAlipayEvent 天猫汽车 > 天猫汽车触发支付宝事件发奖}
|
|
4868
4936
|
* - {@link TmallCarContractSign 天猫汽车 > 合同签署消息}
|
|
4869
4937
|
* - {@link TmallCarFinanceMsg 天猫汽车 > 汽车金融消息}
|
|
4870
4938
|
* - {@link TmallCarTelCoupon 天猫汽车 > 天猫汽车特惠充}
|
|
4871
4939
|
*/
|
|
4872
|
-
type TmallCar =
|
|
4940
|
+
type TmallCar = TmallCarAbnormalSettleSeller
|
|
4941
|
+
| TmallCarAliapayTelRedPacket
|
|
4873
4942
|
| TmallCarAlipayEvent
|
|
4874
4943
|
| TmallCarContractSign
|
|
4875
4944
|
| TmallCarFinanceMsg
|
|
@@ -4895,6 +4964,7 @@ declare namespace IncomingMessage {
|
|
|
4895
4964
|
* - {@link TmallFuwuElectricWarrantyCodeStatusUpdate 天猫服务 > 天猫服务消电保修码状态变更}
|
|
4896
4965
|
* - {@link TmallFuwuHomeDecorationSupplyRuleUpdate 天猫服务 > 天猫服务家装优质供给规则变更}
|
|
4897
4966
|
* - {@link TmallFuwuLogisticsInfoMessage 天猫服务 > 服务供应链物流业务消息}
|
|
4967
|
+
* - {@link TmallFuwuNewAnomalyRecourseStatusUpdate 天猫服务 > 服务管控消息更新}
|
|
4898
4968
|
* - {@link TmallFuwuRateMessageTP 天猫服务 > 消费者评价成功top消息}
|
|
4899
4969
|
* - {@link TmallFuwuServiceItemUpdate 天猫服务 > 服务商品信息变更消息}
|
|
4900
4970
|
* - {@link TmallFuwuServiceMonitorMessage 天猫服务 > 服务预警消息}
|
|
@@ -4912,6 +4982,7 @@ declare namespace IncomingMessage {
|
|
|
4912
4982
|
| TmallFuwuElectricWarrantyCodeStatusUpdate
|
|
4913
4983
|
| TmallFuwuHomeDecorationSupplyRuleUpdate
|
|
4914
4984
|
| TmallFuwuLogisticsInfoMessage
|
|
4985
|
+
| TmallFuwuNewAnomalyRecourseStatusUpdate
|
|
4915
4986
|
| TmallFuwuRateMessageTP
|
|
4916
4987
|
| TmallFuwuServiceItemUpdate
|
|
4917
4988
|
| TmallFuwuServiceMonitorMessage
|
|
@@ -5050,6 +5121,10 @@ declare namespace IncomingMessage {
|
|
|
5050
5121
|
* - {@link TmallScmSendTmcsDistributeSettleFee 天猫 > 猫超经销结算打款消息}
|
|
5051
5122
|
*/
|
|
5052
5123
|
type TmallScm = TmallScmSendTmcsDistributeSettleFee;
|
|
5124
|
+
/**
|
|
5125
|
+
* - {@link TmallServiceCycleBillInvoice 天猫服务 > 服务结算账期账单发票消息}
|
|
5126
|
+
*/
|
|
5127
|
+
type TmallService = TmallServiceCycleBillInvoice;
|
|
5053
5128
|
/**
|
|
5054
5129
|
* - {@link TmallServicecenterTaskUpdate 天猫服务 > 天猫服务平台工单更新}
|
|
5055
5130
|
*/
|
|
@@ -5165,10 +5240,12 @@ declare namespace IncomingMessage {
|
|
|
5165
5240
|
*/
|
|
5166
5241
|
type XianyuCar = XianyuCarOrderStatusSync;
|
|
5167
5242
|
/**
|
|
5243
|
+
* - {@link XianyuCtoxCommissionStateSyn 闲鱼 > 闲鱼C2X抽佣退佣消息同步}
|
|
5168
5244
|
* - {@link XianyuCtoxPayDkChange 闲鱼 > c2x代扣协议变更通知}
|
|
5169
5245
|
* - {@link XianyuCtoxRateStateSyn 闲鱼 > c2x业务订单评价消息同步}
|
|
5170
5246
|
*/
|
|
5171
|
-
type XianyuCtox =
|
|
5247
|
+
type XianyuCtox = XianyuCtoxCommissionStateSyn
|
|
5248
|
+
| XianyuCtoxPayDkChange
|
|
5172
5249
|
| XianyuCtoxRateStateSyn;
|
|
5173
5250
|
/**
|
|
5174
5251
|
* - {@link XianyuEnvironmentEventSyn 闲鱼 > 闲鱼双11公益游戏任务事件同步}
|
|
@@ -5258,6 +5335,7 @@ declare namespace IncomingMessage {
|
|
|
5258
5335
|
* - {@link AlibabaHj}
|
|
5259
5336
|
* - {@link AlibabaHomestyler}
|
|
5260
5337
|
* - {@link AlibabaIcbulive}
|
|
5338
|
+
* - {@link AlibabaIdle}
|
|
5261
5339
|
* - {@link AlibabaIfp}
|
|
5262
5340
|
* - {@link AlibabaInfop}
|
|
5263
5341
|
* - {@link AlibabaIntime}
|
|
@@ -5277,6 +5355,7 @@ declare namespace IncomingMessage {
|
|
|
5277
5355
|
* - {@link AlibabaNazca}
|
|
5278
5356
|
* - {@link AlibabaNewretail}
|
|
5279
5357
|
* - {@link AlibabaNlife}
|
|
5358
|
+
* - {@link AlibabaOkki}
|
|
5280
5359
|
* - {@link AlibabaPaimai}
|
|
5281
5360
|
* - {@link AlibabaPur}
|
|
5282
5361
|
* - {@link AlibabaServiceplatform}
|
|
@@ -5294,6 +5373,7 @@ declare namespace IncomingMessage {
|
|
|
5294
5373
|
* - {@link AlibabaWdkopen}
|
|
5295
5374
|
* - {@link AlibabaWdkorder}
|
|
5296
5375
|
* - {@link AlibabaWdktrade}
|
|
5376
|
+
* - {@link AlibabaYichao}
|
|
5297
5377
|
* - {@link AlibabaYunio}
|
|
5298
5378
|
*/
|
|
5299
5379
|
type Alibaba = AlibabaAdlab
|
|
@@ -5321,6 +5401,7 @@ declare namespace IncomingMessage {
|
|
|
5321
5401
|
| AlibabaHj
|
|
5322
5402
|
| AlibabaHomestyler
|
|
5323
5403
|
| AlibabaIcbulive
|
|
5404
|
+
| AlibabaIdle
|
|
5324
5405
|
| AlibabaIfp
|
|
5325
5406
|
| AlibabaInfop
|
|
5326
5407
|
| AlibabaIntime
|
|
@@ -5340,6 +5421,7 @@ declare namespace IncomingMessage {
|
|
|
5340
5421
|
| AlibabaNazca
|
|
5341
5422
|
| AlibabaNewretail
|
|
5342
5423
|
| AlibabaNlife
|
|
5424
|
+
| AlibabaOkki
|
|
5343
5425
|
| AlibabaPaimai
|
|
5344
5426
|
| AlibabaPur
|
|
5345
5427
|
| AlibabaServiceplatform
|
|
@@ -5357,6 +5439,7 @@ declare namespace IncomingMessage {
|
|
|
5357
5439
|
| AlibabaWdkopen
|
|
5358
5440
|
| AlibabaWdkorder
|
|
5359
5441
|
| AlibabaWdktrade
|
|
5442
|
+
| AlibabaYichao
|
|
5360
5443
|
| AlibabaYunio;
|
|
5361
5444
|
/**
|
|
5362
5445
|
* - {@link AlicomAxb}
|
|
@@ -5424,6 +5507,10 @@ declare namespace IncomingMessage {
|
|
|
5424
5507
|
| AlipayTrade
|
|
5425
5508
|
| AlipayUpdate
|
|
5426
5509
|
| AlipayXiaodai;
|
|
5510
|
+
/**
|
|
5511
|
+
* - {@link AlipicLark}
|
|
5512
|
+
*/
|
|
5513
|
+
type Alipic = AlipicLark;
|
|
5427
5514
|
/**
|
|
5428
5515
|
* - {@link AlisportsBank}
|
|
5429
5516
|
*/
|
|
@@ -5628,6 +5715,14 @@ declare namespace IncomingMessage {
|
|
|
5628
5715
|
* - {@link JymOrder}
|
|
5629
5716
|
*/
|
|
5630
5717
|
type Jym = JymOrder;
|
|
5718
|
+
/**
|
|
5719
|
+
* - {@link LarkTrade}
|
|
5720
|
+
*/
|
|
5721
|
+
type Lark = LarkTrade;
|
|
5722
|
+
/**
|
|
5723
|
+
* - {@link LianfanHuiwa}
|
|
5724
|
+
*/
|
|
5725
|
+
type Lianfan = LianfanHuiwa;
|
|
5631
5726
|
/**
|
|
5632
5727
|
* - {@link LstSupplier}
|
|
5633
5728
|
*/
|
|
@@ -5880,6 +5975,7 @@ declare namespace IncomingMessage {
|
|
|
5880
5975
|
* - {@link TmallRetail}
|
|
5881
5976
|
* - {@link TmallSasssign}
|
|
5882
5977
|
* - {@link TmallScm}
|
|
5978
|
+
* - {@link TmallService}
|
|
5883
5979
|
* - {@link TmallServicecenter}
|
|
5884
5980
|
* - {@link TmallServiceplatform}
|
|
5885
5981
|
* - {@link TmallSupermarket}
|
|
@@ -5911,6 +6007,7 @@ declare namespace IncomingMessage {
|
|
|
5911
6007
|
| TmallRetail
|
|
5912
6008
|
| TmallSasssign
|
|
5913
6009
|
| TmallScm
|
|
6010
|
+
| TmallService
|
|
5914
6011
|
| TmallServicecenter
|
|
5915
6012
|
| TmallServiceplatform
|
|
5916
6013
|
| TmallSupermarket
|
package/types/taobao.d.ts
CHANGED
|
@@ -2449,6 +2449,18 @@ declare namespace Taobao.Item {
|
|
|
2449
2449
|
user_nick: string;
|
|
2450
2450
|
}
|
|
2451
2451
|
|
|
2452
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2551&docType=9 商品变更消息通知} */
|
|
2453
|
+
interface DistributeItemEdit {
|
|
2454
|
+
/** 业务类型 */
|
|
2455
|
+
biz_type: string;
|
|
2456
|
+
/** 变更类型 */
|
|
2457
|
+
message_type?: string;
|
|
2458
|
+
/** 消息主键id */
|
|
2459
|
+
msg_id: string;
|
|
2460
|
+
/** 平台商品id */
|
|
2461
|
+
platform_item_id?: string;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2452
2464
|
/** {@link https://open.taobao.com/tmc.htm?docId=128&docType=9 商品新增消息} */
|
|
2453
2465
|
interface ItemAdd {
|
|
2454
2466
|
/** 卖家昵称 */
|
|
@@ -5837,6 +5849,8 @@ declare namespace Taobao.Trade {
|
|
|
5837
5849
|
|
|
5838
5850
|
/** {@link https://open.taobao.com/tmc.htm?docId=113&docType=9 交易备注修改消息} */
|
|
5839
5851
|
interface TradeMemoModified {
|
|
5852
|
+
/** buyer:更新买家备注,seller:更新卖家备注,other:其他 */
|
|
5853
|
+
action_type: string;
|
|
5840
5854
|
/** 买家昵称 */
|
|
5841
5855
|
buyer_nick: string;
|
|
5842
5856
|
/** 由buyer_id加密, 可对外开放, 用来替换buyer_nick作为唯一标识 */
|
package/types/tmall.d.ts
CHANGED
|
@@ -48,6 +48,20 @@ declare namespace Tmall.Auto {
|
|
|
48
48
|
|
|
49
49
|
/** 天猫汽车 */
|
|
50
50
|
declare namespace Tmall.Car {
|
|
51
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2562&docType=9 天猫汽车安装服务-异常商家上下线通知} */
|
|
52
|
+
interface AbnormalSettleSeller {
|
|
53
|
+
/** 业务身份 */
|
|
54
|
+
biz_code: string;
|
|
55
|
+
/** 业务id */
|
|
56
|
+
biz_id: string;
|
|
57
|
+
/** 下线原因 */
|
|
58
|
+
offline_reason: string;
|
|
59
|
+
/** 商家昵称 */
|
|
60
|
+
process_seller_nick: string;
|
|
61
|
+
/** 处理状态:0:下线;1:上线 */
|
|
62
|
+
process_status: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
51
65
|
/** {@link https://open.taobao.com/tmc.htm?docId=2457&docType=9 天猫汽车-支付宝手机充值红包发放} */
|
|
52
66
|
interface AliapayTelRedPacket {
|
|
53
67
|
/** 业务id */
|
|
@@ -227,6 +241,16 @@ declare namespace Tmall.Fuwu {
|
|
|
227
241
|
stage_type: string;
|
|
228
242
|
}
|
|
229
243
|
|
|
244
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2560&docType=9 服务管控消息更新} */
|
|
245
|
+
interface NewAnomalyRecourseStatusUpdate {
|
|
246
|
+
/** 一键求助单id */
|
|
247
|
+
anomaly_recourse_id: number;
|
|
248
|
+
/** 状态 1:求助中;2完结(已核销) */
|
|
249
|
+
status: number;
|
|
250
|
+
/** 催促次数,如:3表示催促3次 */
|
|
251
|
+
urges_number: number;
|
|
252
|
+
}
|
|
253
|
+
|
|
230
254
|
/** {@link https://open.taobao.com/tmc.htm?docId=2409&docType=9 消费者评价成功top消息} */
|
|
231
255
|
interface RateMessageTP {
|
|
232
256
|
/** 单据类型 */
|
|
@@ -1041,6 +1065,29 @@ declare namespace Tmall.Scm {
|
|
|
1041
1065
|
}
|
|
1042
1066
|
}
|
|
1043
1067
|
|
|
1068
|
+
/** 天猫服务 */
|
|
1069
|
+
declare namespace Tmall.Service {
|
|
1070
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2542&docType=9 服务结算账期账单发票消息} */
|
|
1071
|
+
interface CycleBillInvoice {
|
|
1072
|
+
/** 含税金额 元 */
|
|
1073
|
+
amount: string;
|
|
1074
|
+
/** 账期 */
|
|
1075
|
+
bill_cycle: string;
|
|
1076
|
+
/** 账单ID */
|
|
1077
|
+
bill_id: number;
|
|
1078
|
+
/** 不含税金额 元 */
|
|
1079
|
+
excluding_tax_amount: string;
|
|
1080
|
+
/** 发票错误信息 */
|
|
1081
|
+
invoice_error_info?: string;
|
|
1082
|
+
/** 发票状态 NOT_EXISTS 未上传; NOT_PARSED 待解析; PARSING 解析中; PARSE_FAILED 解析失败 (需重新上传); PARSE_SUCCESS 解析成功; PARSE_INFO_NOT_MATCH 发票信息不匹配(需重新上传); CHECKING 发票验真中; CHECK_FAILED 发票验真不通过(需重新上传); CHECK_PASS 发票验真通过; ATTACHING 发票匹配中; ATTACHED 发票匹配完成; ATTACHE_FAILED 发票匹配失败(需人工处理); ACCEPTED 发票接收完成; */
|
|
1083
|
+
invoice_status?: string;
|
|
1084
|
+
/** 税额 元 */
|
|
1085
|
+
tax_amount: string;
|
|
1086
|
+
/** 税率 */
|
|
1087
|
+
tax_rate: string;
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1044
1091
|
/** 天猫服务 */
|
|
1045
1092
|
declare namespace Tmall.Servicecenter {
|
|
1046
1093
|
/** {@link https://open.taobao.com/tmc.htm?docId=905&docType=9 天猫服务平台工单更新} */
|
package/types/xianyu.d.ts
CHANGED
|
@@ -45,6 +45,22 @@ declare namespace Xianyu.Car {
|
|
|
45
45
|
|
|
46
46
|
/** 闲鱼 */
|
|
47
47
|
declare namespace Xianyu.Ctox {
|
|
48
|
+
/** {@link https://open.taobao.com/tmc.htm?docId=2564&docType=9 闲鱼C2X抽佣退佣消息同步} */
|
|
49
|
+
interface CommissionStateSyn {
|
|
50
|
+
/** 订单id */
|
|
51
|
+
biz_order_id: string;
|
|
52
|
+
/** 11-抽佣帮卖卖家单;12-抽佣:帮卖买家服务费单;21-退佣:帮卖售后 */
|
|
53
|
+
biz_type: string;
|
|
54
|
+
/** 成交金额,单位分 */
|
|
55
|
+
deal_price: string;
|
|
56
|
+
/** 佣金,单位分 */
|
|
57
|
+
fee_commission: string;
|
|
58
|
+
/** 0-正向抽佣;1-逆向退佣 */
|
|
59
|
+
fee_type: string;
|
|
60
|
+
/** 服务费,单位分 */
|
|
61
|
+
service_fee: string;
|
|
62
|
+
}
|
|
63
|
+
|
|
48
64
|
/** {@link https://open.taobao.com/tmc.htm?docId=2535&docType=9 c2x代扣协议变更通知} */
|
|
49
65
|
interface PayDkChange {
|
|
50
66
|
/** 主订单(保卖订单等) */
|