flipper-common
Advanced tools
Comparing version 0.203.0 to 0.205.0
@@ -42,2 +42,18 @@ /** | ||
export type DeviceLogLevel = 'unknown' | 'verbose' | 'debug' | 'info' | 'warn' | 'error' | 'fatal'; | ||
export type ConnectionRecordEntry = { | ||
time: Date; | ||
type: 'cmd' | 'info' | 'error'; | ||
device: string; | ||
app: string; | ||
message: string; | ||
medium: CertificateExchangeMedium; | ||
}; | ||
export type CommandRecordEntry = ConnectionRecordEntry & { | ||
cmd: string; | ||
description: string; | ||
success: boolean; | ||
stdout?: string; | ||
stderr?: string; | ||
troubleshoot?: string; | ||
}; | ||
export type UninitializedClient = { | ||
@@ -57,2 +73,6 @@ os: string; | ||
}; | ||
export type SecureClientQuery = ClientQuery & { | ||
csr?: string | undefined; | ||
csr_path?: string | undefined; | ||
}; | ||
export type ClientDescription = { | ||
@@ -106,2 +126,4 @@ readonly id: string; | ||
}; | ||
'connectivity-troubleshoot-cmd': CommandRecordEntry; | ||
'connectivity-troubleshoot-log': ConnectionRecordEntry; | ||
'plugins-server-add-on-message': ExecuteMessage; | ||
@@ -108,0 +130,0 @@ 'download-file-update': DownloadFileUpdate; |
{ | ||
"name": "flipper-common", | ||
"version": "0.203.0", | ||
"version": "0.205.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
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
144780
2375