@choiceform/os-client-core 3.4.8 → 3.4.9
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 +10 -0
- package/dist/core.js +1 -1
- package/dist/web-core.js +1 -1
- package/index.d.ts +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2856,6 +2856,10 @@ interface ICFSmallPayload {
|
|
|
2856
2856
|
* 测试用例数据
|
|
2857
2857
|
*/
|
|
2858
2858
|
readonly testCases: ICFTestCase[];
|
|
2859
|
+
/**
|
|
2860
|
+
* 最后发布时间
|
|
2861
|
+
*/
|
|
2862
|
+
readonly publishedAt: string;
|
|
2859
2863
|
}
|
|
2860
2864
|
|
|
2861
2865
|
|
|
@@ -6899,6 +6903,7 @@ interface ICFIntroMeta {
|
|
|
6899
6903
|
readonly payload_digest: string;
|
|
6900
6904
|
readonly diagram_url: string;
|
|
6901
6905
|
readonly langs: ICFRemoteLang[];
|
|
6906
|
+
readonly published_at:string;
|
|
6902
6907
|
}
|
|
6903
6908
|
|
|
6904
6909
|
/**
|
|
@@ -6924,6 +6929,7 @@ interface ICFParsedSmallPayload {
|
|
|
6924
6929
|
readonly langResume: boolean;
|
|
6925
6930
|
readonly testCases: ICFTestCase[];
|
|
6926
6931
|
readonly disabledLangs: string[];
|
|
6932
|
+
readonly publishedAt: string;
|
|
6927
6933
|
}
|
|
6928
6934
|
|
|
6929
6935
|
/**
|
|
@@ -7827,6 +7833,10 @@ interface CFStartState extends ICFTranMiniState, ICFStartMiniIntro, CFStateBase,
|
|
|
7827
7833
|
* 是否正在加载,当该属性为true时,UI需要选人加载中的状态
|
|
7828
7834
|
*/
|
|
7829
7835
|
readonly nextLoading: boolean;
|
|
7836
|
+
/**
|
|
7837
|
+
* 最后发布地址
|
|
7838
|
+
*/
|
|
7839
|
+
readonly publishedAt: string;
|
|
7830
7840
|
}
|
|
7831
7841
|
|
|
7832
7842
|
|