flipper-common
Advanced tools
Comparing version 0.153.0 to 0.154.0
@@ -22,2 +22,3 @@ export { Logger, LoggerExtractError, LoggerFormat, LoggerInfo, LoggerPerformanceEntry, LoggerTrackType, LoggerTypes, LoggerArgs, getLogger, setLoggerInstance, NoopLogger, } from './utils/Logger'; | ||
export * from './transport'; | ||
export * from './User'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -73,2 +73,3 @@ "use strict"; | ||
__exportStar(require("./transport"), exports); | ||
__exportStar(require("./User"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -71,2 +71,5 @@ export interface PluginDetails { | ||
} | ||
export interface MarketplacePluginDetails extends DownloadablePluginDetails { | ||
availableVersions?: DownloadablePluginDetails[]; | ||
} | ||
export declare type UpdateResult = { | ||
@@ -73,0 +76,0 @@ kind: 'not-installed'; |
import { FlipperDoctor } from './doctor'; | ||
import { BundledPluginDetails, DeviceSpec, DeviceType, DownloadablePluginDetails, InstalledPluginDetails, OS as PluginOS, UpdatablePluginDetails } from './PluginDetails'; | ||
import { BundledPluginDetails, DeviceSpec, DeviceType, DownloadablePluginDetails, InstalledPluginDetails, MarketplacePluginDetails, OS as PluginOS, UpdatablePluginDetails } from './PluginDetails'; | ||
import { ServerAddOnStartDetails } from './ServerAddOn'; | ||
@@ -153,2 +153,3 @@ import { EnvironmentInfo, LauncherSettings, ProcessConfig, Settings } from './settings'; | ||
'device-shell-exec': (serial: string, command: string) => Promise<string>; | ||
'device-install-app': (serial: string, appBundlePath: string) => Promise<void>; | ||
'device-forward-port': (serial: string, local: string, remote: string) => Promise<boolean>; | ||
@@ -172,2 +173,3 @@ 'device-clear-logs': (serial: string) => Promise<void>; | ||
'plugins-load-dynamic-plugins': () => Promise<InstalledPluginDetails[]>; | ||
'plugins-load-marketplace-plugins': () => Promise<MarketplacePluginDetails[]>; | ||
'plugins-get-bundled-plugins': () => Promise<BundledPluginDetails[]>; | ||
@@ -178,2 +180,3 @@ 'plugins-get-installed-plugins': () => Promise<InstalledPluginDetails[]>; | ||
'plugin-source': (path: string) => Promise<string>; | ||
'plugins-install-from-marketplace': (name: string) => Promise<InstalledPluginDetails>; | ||
'plugins-install-from-npm': (name: string) => Promise<InstalledPluginDetails>; | ||
@@ -180,0 +183,0 @@ 'plugins-install-from-file': (path: string) => Promise<InstalledPluginDetails>; |
{ | ||
"name": "flipper-common", | ||
"version": "0.153.0", | ||
"version": "0.154.0", | ||
"description": "Server & UI shared Flipper utilities", | ||
@@ -5,0 +5,0 @@ "repository": "facebook/flipper", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
123022
90
1771