@plasosdk/plaso-electron-sdk 1.3.17-beta.1 → 1.3.17-beta.2
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/js/render.d.ts +13 -13
- package/package.json +1 -1
- package/scripts/install.js +2 -2
package/js/render.d.ts
CHANGED
|
@@ -56,19 +56,19 @@ type BrowserOptionsType = {
|
|
|
56
56
|
| { success: false; message?: string }
|
|
57
57
|
>;
|
|
58
58
|
// 出于鉴权方面考量,收藏功能暂不对外
|
|
59
|
-
/** @deprecated 获取"我的收藏"列表 */
|
|
60
|
-
onFetchFavoritesFn?: () => Promise<
|
|
61
|
-
|
|
62
|
-
>;
|
|
63
|
-
/** @deprecated 添加收藏 */
|
|
64
|
-
onAddFavoriteFn?: (value: {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
}) => Promise<
|
|
68
|
-
|
|
69
|
-
>;
|
|
70
|
-
/** @deprecated 删除收藏 */
|
|
71
|
-
onRemoveFavoriteFn?: (ids: number[]) => Promise<{ success: boolean; message?: string }>;
|
|
59
|
+
// /** @deprecated 获取"我的收藏"列表 */
|
|
60
|
+
// onFetchFavoritesFn?: () => Promise<
|
|
61
|
+
// { success: true; data: { id: number; title: string; url: string; icon: string }[] } | { success: false; message?: string }
|
|
62
|
+
// >;
|
|
63
|
+
// /** @deprecated 添加收藏 */
|
|
64
|
+
// onAddFavoriteFn?: (value: {
|
|
65
|
+
// url: string;
|
|
66
|
+
// title: string;
|
|
67
|
+
// }) => Promise<
|
|
68
|
+
// { success: true; data: { id: number; title: string; url: string; icon: string } } | { success: false; message?: string }
|
|
69
|
+
// >;
|
|
70
|
+
// /** @deprecated 删除收藏 */
|
|
71
|
+
// onRemoveFavoriteFn?: (ids: number[]) => Promise<{ success: boolean; message?: string }>;
|
|
72
72
|
};
|
|
73
73
|
|
|
74
74
|
export interface FileDataObj {
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -53,9 +53,9 @@ const getPluginsZipName = () => {
|
|
|
53
53
|
if (platform === PLATFORM_TYPE.DARWIN) {
|
|
54
54
|
lameZipName = 'lame_mac_x64.zip';
|
|
55
55
|
if (arch.includes('arm')) {
|
|
56
|
-
flameshotZipName = '
|
|
56
|
+
flameshotZipName = 'flameshot_20251218_mac_arm64.zip';
|
|
57
57
|
} else {
|
|
58
|
-
flameshotZipName = '
|
|
58
|
+
flameshotZipName = 'flameshot_20251218_mac_x64.zip';
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
return { flameshotZipName, lameZipName, plasoALDZipName };
|