@rongcloud/engine 4.4.8-enterprise.3 → 4.4.8-enterprise.5
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/dist/index.d.ts +30 -4
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* RCEngine - v4.4.8-enterprise.
|
|
3
|
-
* CommitId -
|
|
4
|
-
*
|
|
2
|
+
* RCEngine - v4.4.8-enterprise.5
|
|
3
|
+
* CommitId - 7496b9b976c2bb3520a971a45d9cbc61aeb87cdf
|
|
4
|
+
* Fri Mar 17 2023 15:58:13 GMT+0800 (China Standard Time)
|
|
5
5
|
* ©2020 RongCloud, Inc. All rights reserved.
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
@@ -441,10 +441,32 @@ interface IAndroidPushConfig {
|
|
|
441
441
|
* 小米的 channelId
|
|
442
442
|
*/
|
|
443
443
|
channelIdMi?: string;
|
|
444
|
+
/**
|
|
445
|
+
* 小米 Large icon 链接
|
|
446
|
+
* Large icon 可以出现在大图版和多字版消息中,显示在右边。
|
|
447
|
+
* 国内版仅 MIUI12 以上版本支持,以下版本均不支持;国际版支持。
|
|
448
|
+
* 图片要求:大小 120 * 120px,格式为 png 或者 jpg 格式。
|
|
449
|
+
*/
|
|
450
|
+
miLargeIconUrl?: string;
|
|
444
451
|
/**
|
|
445
452
|
* 华为的 channelId
|
|
446
453
|
*/
|
|
447
454
|
channelIdHW?: string;
|
|
455
|
+
/**
|
|
456
|
+
* 华为推送消息分类
|
|
457
|
+
* 更多信息请参考华为消息分类标准文档: https://developer.huawei.com/consumer/cn/doc/development/HMSCore-Guides/message-classification-0000001149358835
|
|
458
|
+
*/
|
|
459
|
+
categoryHW?: string;
|
|
460
|
+
/**
|
|
461
|
+
* 华为推送消息级别
|
|
462
|
+
* LOW: 表示消息为资讯营销
|
|
463
|
+
* NORMAL: 消息为服务与通讯
|
|
464
|
+
*/
|
|
465
|
+
importanceHW?: 'NORMAL' | 'LOW';
|
|
466
|
+
/**
|
|
467
|
+
* 华为通知类型的推送所使用的通知图片 url
|
|
468
|
+
*/
|
|
469
|
+
imageUrlHW?: string;
|
|
448
470
|
/**
|
|
449
471
|
* OPPO 的 channelId
|
|
450
472
|
*/
|
|
@@ -1534,7 +1556,11 @@ declare enum ConnectionStatus {
|
|
|
1534
1556
|
/**
|
|
1535
1557
|
* 请求导航超时
|
|
1536
1558
|
*/
|
|
1537
|
-
RESPONSE_NAVI_TIMEOUT = 204
|
|
1559
|
+
RESPONSE_NAVI_TIMEOUT = 204,
|
|
1560
|
+
/**
|
|
1561
|
+
* Token 错误。
|
|
1562
|
+
*/
|
|
1563
|
+
RC_CONN_USER_OR_PASSWD_ERROR = 31004
|
|
1538
1564
|
}
|
|
1539
1565
|
|
|
1540
1566
|
interface IAsyncRes<T = any> {
|