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

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