@choiceform/os-client-core 3.6.71 → 3.6.72
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/changelog.md +6 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -710,7 +710,7 @@ interface CCSetupOptions {
|
|
710
710
|
*
|
711
711
|
* @param message 消息内容
|
712
712
|
*/
|
713
|
-
notify: (message: string) => void;
|
713
|
+
notify: (message: string, extra?: CCIValidateResult) => void;
|
714
714
|
/**
|
715
715
|
* 弹框方式提示消息,比提示消息更重要一些,需要弹框,并且用户点击后才消失
|
716
716
|
* @param message
|
@@ -2183,6 +2183,10 @@ interface CCIValidateResult extends CCIRequestResult {
|
|
2183
2183
|
* 验证未通过归咎的选项
|
2184
2184
|
*/
|
2185
2185
|
dueToOption?: CCOption;
|
2186
|
+
/**
|
2187
|
+
* 一些消息对应的唯一标识,方便篡改提示消息
|
2188
|
+
*/
|
2189
|
+
messageCode?: string;
|
2186
2190
|
}
|
2187
2191
|
|
2188
2192
|
interface RequestArbitraryParams {
|