@vrplatform/api 1.2.33-stage.892 → 1.2.33-stage.894

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.
@@ -21762,26 +21762,39 @@ export interface operations {
21762
21762
  "application/json": {
21763
21763
  connectionId: string;
21764
21764
  institutionName: string;
21765
- auth: {
21766
- last_status_change: string;
21767
- status: string;
21768
- };
21769
- investments_updates: {
21770
- last_status_change: string;
21771
- status: string;
21772
- /** @enum {string|null} */
21773
- refresh_interval?: "NORMAL" | "STOPPED" | "DELAYED" | null;
21774
- };
21775
- item_logins: {
21776
- last_status_change: string;
21777
- status: string;
21778
- };
21779
- transactions_updates: {
21780
- last_status_change: string;
21781
- status: string;
21782
- /** @enum {string|null} */
21783
- refresh_interval?: "NORMAL" | "STOPPED" | "DELAYED" | null;
21784
- };
21765
+ issues: ({
21766
+ /** @enum {string} */
21767
+ code: "plaidHealthDegraded";
21768
+ /** @enum {string} */
21769
+ severity: "warning";
21770
+ context: {
21771
+ /** @enum {string} */
21772
+ badge: "auth" | "item_logins" | "transactions_updates";
21773
+ title: string;
21774
+ /** @enum {string} */
21775
+ status: "DEGRADED";
21776
+ /** @enum {string} */
21777
+ refreshInterval?: "NORMAL" | "STOPPED" | "DELAYED";
21778
+ description?: string;
21779
+ statusDescription: string;
21780
+ };
21781
+ } | {
21782
+ /** @enum {string} */
21783
+ code: "plaidHealthDown";
21784
+ /** @enum {string} */
21785
+ severity: "error";
21786
+ context: {
21787
+ /** @enum {string} */
21788
+ badge: "auth" | "item_logins" | "transactions_updates";
21789
+ title: string;
21790
+ /** @enum {string} */
21791
+ status: "DOWN";
21792
+ /** @enum {string} */
21793
+ refreshInterval?: "NORMAL" | "STOPPED" | "DELAYED";
21794
+ description?: string;
21795
+ statusDescription: string;
21796
+ };
21797
+ })[];
21785
21798
  };
21786
21799
  };
21787
21800
  };