@choiceform/os-client-core 3.6.34 → 3.6.36
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/core.ac6f4de7af727572fe9e.hot-update.js +18 -0
- package/dist/core.js +3100 -1
- package/dist/infer.js +401 -1
- package/dist/support/atcp.ac6f4de7af727572fe9e.hot-update.js +18 -0
- package/dist/support/atcp.js +1428 -2
- package/dist/web-core.ac6f4de7af727572fe9e.hot-update.js +18 -0
- package/dist/web-core.js +3592 -2
- package/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -386,7 +386,7 @@ interface CCEnvAuth {
|
|
|
386
386
|
* @param componentAppId
|
|
387
387
|
* @param params
|
|
388
388
|
*/
|
|
389
|
-
authorizeGift?(appId: string, componentAppId: string, params: CCQueryParams): void;
|
|
389
|
+
authorizeGift?(appId: string, componentAppId: string, params: CCQueryParams, originFrom: WX_REWARD_PAGE_FROM): void;
|
|
390
390
|
/**
|
|
391
391
|
* 普通授权方法,该方法仅用于那些需要在微信浏览器中运行且需要获取微信信息的答题端
|
|
392
392
|
* web核心包中一般需要配置该方法。
|
|
@@ -4961,6 +4961,7 @@ interface CCIRedEnvelopeRewardFrontEnd {
|
|
|
4961
4961
|
amount?: number;
|
|
4962
4962
|
type?: GIFT_TYPE;
|
|
4963
4963
|
gift?: CCIRedEnvelopeRewardGiftFrontEnd;
|
|
4964
|
+
isTemporaryForWXQrcode?: boolean;
|
|
4964
4965
|
}
|
|
4965
4966
|
|
|
4966
4967
|
/**
|
|
@@ -5075,6 +5076,10 @@ interface CCRewardState extends CCStateBase, CCCustomLogo {
|
|
|
5075
5076
|
* 是否获取短信失败
|
|
5076
5077
|
*/
|
|
5077
5078
|
messageGetFailed?: boolean;
|
|
5079
|
+
/**
|
|
5080
|
+
* 是否是微信扫描领取红包的临时页
|
|
5081
|
+
*/
|
|
5082
|
+
isTemporaryForWXQrcode?: boolean;
|
|
5078
5083
|
}
|
|
5079
5084
|
|
|
5080
5085
|
|
|
@@ -6482,6 +6487,10 @@ interface CCQueryParams {
|
|
|
6482
6487
|
* 方便调试真实接口
|
|
6483
6488
|
*/
|
|
6484
6489
|
real_port?: string;
|
|
6490
|
+
/**
|
|
6491
|
+
* 链接来自微信红包分享的扫码
|
|
6492
|
+
*/
|
|
6493
|
+
reward_from_qr_code?: string;
|
|
6485
6494
|
}
|
|
6486
6495
|
|
|
6487
6496
|
/**
|