@rongcloud/engine 5.7.2-enterprise.4 → 5.7.2-enterprise.6
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/index.d.ts +23 -0
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1686,10 +1686,33 @@ interface IAndroidPushConfig {
|
|
|
1686
1686
|
* 小米的 channelId
|
|
1687
1687
|
*/
|
|
1688
1688
|
channelIdMi?: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* 小米 Large icon 链接
|
|
1691
|
+
* Large icon 可以出现在大图版和多字版消息中,显示在右边。
|
|
1692
|
+
* 国内版仅 MIUI12 以上版本支持,以下版本均不支持;国际版支持。
|
|
1693
|
+
* 图片要求:大小 120 * 120px,格式为 png 或者 jpg 格式。
|
|
1694
|
+
*/
|
|
1695
|
+
miLargeIconUrl?: string;
|
|
1689
1696
|
/**
|
|
1690
1697
|
* 华为的 channelId
|
|
1691
1698
|
*/
|
|
1692
1699
|
channelIdHW?: string;
|
|
1700
|
+
/**
|
|
1701
|
+
* 华为推送消息分类
|
|
1702
|
+
* 更多信息请参考华为消息分类标准文档: https://developer.huawei.com/consumer/cn/doc/development/HMSCore-Guides/message-classification-0000001149358835
|
|
1703
|
+
* 5.7.3 版本开始支持
|
|
1704
|
+
*/
|
|
1705
|
+
categoryHW?: string;
|
|
1706
|
+
/**
|
|
1707
|
+
* 华为推送消息级别
|
|
1708
|
+
* LOW: 表示消息为资讯营销
|
|
1709
|
+
* NORMAL: 消息为服务与通讯
|
|
1710
|
+
*/
|
|
1711
|
+
importanceHW?: 'NORMAL' | 'LOW';
|
|
1712
|
+
/**
|
|
1713
|
+
* 华为通知类型的推送所使用的通知图片 url
|
|
1714
|
+
*/
|
|
1715
|
+
imageUrlHW?: string;
|
|
1693
1716
|
/**
|
|
1694
1717
|
* OPPO 的 channelId
|
|
1695
1718
|
*/
|