Re-integrate bug report traces after Sandy Migration

Summary:
The migration to Sandy (D28060888) breaks the existing integration we have with importing Flipper traces from bug reports. Given that, I broke this diff out from that one just to highlight the changes.

`pluginStates2` appears to be the field to use for Sandy traces (rather than `store`, which we were using before)

Differential Revision: D28209561

fbshipit-source-id: 9803e1a60b1b1deba6403b50b4079aac2a19efa6
This commit is contained in:
Anthony Dubis
2021-05-05 07:38:52 -07:00
committed by Facebook GitHub Bot
parent 8a5b2c5981
commit bb2342a2b9

View File

@@ -75,6 +75,8 @@ export type ExportType = {
pluginStates: PluginStatesExportState;
activeNotifications: Array<PluginNotification>;
};
// The GraphQL plugin relies on this format for generating
// Flipper traces from employee dogfooding. See D28209561.
pluginStates2: SandyPluginStates;
supportRequestDetails?: SupportFormRequestDetailsState;
};