Add deprecation notice notification

Summary: Add deprecation notice device icon and notification

Reviewed By: lblasa

Differential Revision: D34582475

fbshipit-source-id: 90fde15caf1925b42f50fbfc77dece88c82833cf
This commit is contained in:
Andrey Goncharov
2022-03-02 09:18:15 -08:00
committed by Facebook GitHub Bot
parent ed6e589bec
commit 5068c8273b
8 changed files with 58 additions and 8 deletions

View File

@@ -80,6 +80,7 @@ export type ClientQuery = {
readonly device: string;
readonly device_id: string;
readonly sdk_version?: number;
rsocket?: boolean;
};
export type ClientDescription = {
@@ -105,7 +106,7 @@ export type FlipperServerEvents = {
'server-state': {state: FlipperServerState; error?: string};
'server-error': any;
notification: {
type: 'error';
type: 'success' | 'info' | 'error' | 'warning';
title: string;
description: string;
};