@widget-js/core 0.11.9 → 0.11.10
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1586,11 +1586,21 @@ interface ReadDirOptions {
|
|
|
1586
1586
|
ignoreDir?: boolean;
|
|
1587
1587
|
traverseDir?: boolean;
|
|
1588
1588
|
}
|
|
1589
|
+
interface DownloadUrlOptions {
|
|
1590
|
+
url: string;
|
|
1591
|
+
savePath: string;
|
|
1592
|
+
fileName: string;
|
|
1593
|
+
/**
|
|
1594
|
+
* true - overwrite existing
|
|
1595
|
+
* false - ignore
|
|
1596
|
+
*/
|
|
1597
|
+
overwrite?: boolean;
|
|
1598
|
+
}
|
|
1589
1599
|
interface IFileApi {
|
|
1590
1600
|
readDirectory(path: string, options?: ReadDirOptions): Promise<SystemFile[]>;
|
|
1591
1601
|
isDirectory(filePath: string): Promise<boolean>;
|
|
1592
1602
|
getFileType(filePath: string): Promise<FileTypeResult>;
|
|
1593
|
-
downloadUrl(
|
|
1603
|
+
downloadUrl(option: DownloadUrlOptions): Promise<string>;
|
|
1594
1604
|
exists(filePath: string): Promise<boolean>;
|
|
1595
1605
|
delete(filePath: string): Promise<boolean>;
|
|
1596
1606
|
/**
|
|
@@ -1621,4 +1631,4 @@ interface IFileApi {
|
|
|
1621
1631
|
type FileApiMethods = keyof IFileApi;
|
|
1622
1632
|
declare const FileApi: IFileApi;
|
|
1623
1633
|
|
|
1624
|
-
export { AlignPosition, ApiConstants, AppApi, AppApiConstants, AppApiEvent, AppApiMethods, AppMouseEvent, AppNotification, BaseApi, BroadcastApi, BroadcastApiMethods, BroadcastEvent, BroadcastEventType, BrowserWindowApi, BrowserWindowApiEvent, BrowserWindowApiMethods, Channel, ClipboardApi, ClipboardApiEvent, ClipboardApiMethods, DeployMode, DeployedPage, DeployedWidget, DeployedWidgetApi, DeployedWidgetApiMethods, DevOptions, DeviceApi, DeviceApiMethods, DialogApi, DialogApiMethods, ElectronApi, ElectronUtils, FileApi, FileApiMethods, Gravity, GridRect, GridSystem, HostedMode, IGridRect, IPage, IPageOptions, IWidgetDataApi, IWidgetOptions, IWindowSize, LanguageCode, LanguageTextMap, LocalPackageUrlInfo, LocationQuery, LocationQueryRaw, LocationQueryValue, LocationQueryValueRaw, LogApi, LogApiMethods, MetaInfo, Metadata, NativeKeyboardEvent, NormalizeOptions, NotificationApi, NotificationApiEvent, NotificationApiMethods, NotificationOption, NotificationSize, NotificationType, OpenUrlOptions, Page, Point, Position, ProcessApi, ProcessApiMethods, ReadDirOptions, Rectangle, RemotePackageUrlInfo, SaveWidgetOption, SetPositionOptions, ShortcutApi, ShortcutApiEvent, ShortcutApiMethods, StoreApi, StoreApiMethods, SystemFile, ThemeMode, WebSocketEvent, WebSocketEventType, Widget, WidgetApi, WidgetApiEvent, WidgetApiMethods, WidgetData, WidgetDataApi, WidgetDataApiMethods, WidgetKeyword, WidgetPackage, WidgetPackageOptions, WidgetParams, WidgetPermission, WidgetRoute, WidgetUrlUtils, getTextByLanguageCode, normalizeUrl, parseQuery, stringifyQuery };
|
|
1634
|
+
export { AlignPosition, ApiConstants, AppApi, AppApiConstants, AppApiEvent, AppApiMethods, AppMouseEvent, AppNotification, BaseApi, BroadcastApi, BroadcastApiMethods, BroadcastEvent, BroadcastEventType, BrowserWindowApi, BrowserWindowApiEvent, BrowserWindowApiMethods, Channel, ClipboardApi, ClipboardApiEvent, ClipboardApiMethods, DeployMode, DeployedPage, DeployedWidget, DeployedWidgetApi, DeployedWidgetApiMethods, DevOptions, DeviceApi, DeviceApiMethods, DialogApi, DialogApiMethods, DownloadUrlOptions, ElectronApi, ElectronUtils, FileApi, FileApiMethods, Gravity, GridRect, GridSystem, HostedMode, IGridRect, IPage, IPageOptions, IWidgetDataApi, IWidgetOptions, IWindowSize, LanguageCode, LanguageTextMap, LocalPackageUrlInfo, LocationQuery, LocationQueryRaw, LocationQueryValue, LocationQueryValueRaw, LogApi, LogApiMethods, MetaInfo, Metadata, NativeKeyboardEvent, NormalizeOptions, NotificationApi, NotificationApiEvent, NotificationApiMethods, NotificationOption, NotificationSize, NotificationType, OpenUrlOptions, Page, Point, Position, ProcessApi, ProcessApiMethods, ReadDirOptions, Rectangle, RemotePackageUrlInfo, SaveWidgetOption, SetPositionOptions, ShortcutApi, ShortcutApiEvent, ShortcutApiMethods, StoreApi, StoreApiMethods, SystemFile, ThemeMode, WebSocketEvent, WebSocketEventType, Widget, WidgetApi, WidgetApiEvent, WidgetApiMethods, WidgetData, WidgetDataApi, WidgetDataApiMethods, WidgetKeyword, WidgetPackage, WidgetPackageOptions, WidgetParams, WidgetPermission, WidgetRoute, WidgetUrlUtils, getTextByLanguageCode, normalizeUrl, parseQuery, stringifyQuery };
|
package/dist/index.js
CHANGED
|
@@ -2040,8 +2040,8 @@ var FileApiImpl = class extends BaseApi {
|
|
|
2040
2040
|
delete(filePath) {
|
|
2041
2041
|
return this.invokeMethod("delete", filePath);
|
|
2042
2042
|
}
|
|
2043
|
-
downloadUrl(
|
|
2044
|
-
return this.invokeMethod("downloadUrl",
|
|
2043
|
+
downloadUrl(options) {
|
|
2044
|
+
return this.invokeMethod("downloadUrl", options);
|
|
2045
2045
|
}
|
|
2046
2046
|
exists(filePath) {
|
|
2047
2047
|
return this.invokeMethod("exists", filePath);
|