@vrplatform/api 1.2.33-rel.891 → 1.2.33-rel.896

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-rel.891",
6
+ "version": "1.2.33-rel.896",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2298,20 +2298,19 @@ export interface components {
2298
2298
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2299
2299
  * @enum {string|null}
2300
2300
  */
2301
- type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2301
+ type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2302
2302
  filter: string | null;
2303
2303
  value: components["schemas"]["FlowMappingResolvedEntityValue"];
2304
2304
  };
2305
2305
  /** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
2306
2306
  FlowMappingResolvedEntityValue: {
2307
- /** Format: uuid */
2308
2307
  id: string;
2309
2308
  name: string;
2310
2309
  /**
2311
2310
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2312
2311
  * @enum {string}
2313
2312
  */
2314
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2313
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2315
2314
  };
2316
2315
  /** @description Collection of settings after mutation with normalized { id, name, type } value payloads. */
2317
2316
  FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
@@ -2330,7 +2329,7 @@ export interface components {
2330
2329
  * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2331
2330
  * @enum {string|null}
2332
2331
  */
2333
- type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2332
+ type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2334
2333
  filter: string | null;
2335
2334
  value: components["schemas"]["FlowMappingResolvedEntityValue"];
2336
2335
  };
@@ -21764,26 +21763,39 @@ export interface operations {
21764
21763
  "application/json": {
21765
21764
  connectionId: string;
21766
21765
  institutionName: string;
21767
- auth: {
21768
- last_status_change: string;
21769
- status: string;
21770
- };
21771
- investments_updates: {
21772
- last_status_change: string;
21773
- status: string;
21774
- /** @enum {string|null} */
21775
- refresh_interval?: "NORMAL" | "STOPPED" | "DELAYED" | null;
21776
- };
21777
- item_logins: {
21778
- last_status_change: string;
21779
- status: string;
21780
- };
21781
- transactions_updates: {
21782
- last_status_change: string;
21783
- status: string;
21784
- /** @enum {string|null} */
21785
- refresh_interval?: "NORMAL" | "STOPPED" | "DELAYED" | null;
21786
- };
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
+ })[];
21787
21799
  };
21788
21800
  };
21789
21801
  };
@@ -23708,7 +23720,7 @@ export interface operations {
23708
23720
  * @description Internal semantic type
23709
23721
  * @enum {string}
23710
23722
  */
23711
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23723
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23712
23724
  /** @description Optional JSONB filter for internal data */
23713
23725
  filter?: string;
23714
23726
  };
@@ -23732,7 +23744,7 @@ export interface operations {
23732
23744
  * @description Semantic type of the setting value
23733
23745
  * @enum {string}
23734
23746
  */
23735
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23747
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23736
23748
  /** @description Optional JSONB filter for available values */
23737
23749
  filter?: string;
23738
23750
  };
@@ -23829,7 +23841,7 @@ export interface operations {
23829
23841
  * @description Internal semantic type
23830
23842
  * @enum {string}
23831
23843
  */
23832
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23844
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23833
23845
  /** @description Optional JSONB filter for internal data */
23834
23846
  filter?: string;
23835
23847
  };
@@ -23853,7 +23865,7 @@ export interface operations {
23853
23865
  * @description Semantic type of the setting value
23854
23866
  * @enum {string}
23855
23867
  */
23856
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23868
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23857
23869
  /** @description Optional JSONB filter for available values */
23858
23870
  filter?: string;
23859
23871
  };
@@ -23953,7 +23965,7 @@ export interface operations {
23953
23965
  * @description Internal semantic type
23954
23966
  * @enum {string}
23955
23967
  */
23956
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23968
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23957
23969
  /** @description Optional JSONB filter for internal data */
23958
23970
  filter?: string;
23959
23971
  };
@@ -23977,7 +23989,7 @@ export interface operations {
23977
23989
  * @description Semantic type of the setting value
23978
23990
  * @enum {string}
23979
23991
  */
23980
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23992
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
23981
23993
  /** @description Optional JSONB filter for available values */
23982
23994
  filter?: string;
23983
23995
  };
@@ -24064,7 +24076,7 @@ export interface operations {
24064
24076
  * @description Internal semantic type
24065
24077
  * @enum {string}
24066
24078
  */
24067
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24079
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24068
24080
  /** @description Optional JSONB filter for internal data */
24069
24081
  filter?: string;
24070
24082
  };
@@ -24088,7 +24100,7 @@ export interface operations {
24088
24100
  * @description Semantic type of the setting value
24089
24101
  * @enum {string}
24090
24102
  */
24091
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24103
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24092
24104
  /** @description Optional JSONB filter for available values */
24093
24105
  filter?: string;
24094
24106
  };
@@ -24128,7 +24140,7 @@ export interface operations {
24128
24140
  * @description Internal semantic type
24129
24141
  * @enum {string}
24130
24142
  */
24131
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24143
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24132
24144
  /** @description Optional JSONB filter for internal data */
24133
24145
  filter?: string;
24134
24146
  };
@@ -24152,7 +24164,7 @@ export interface operations {
24152
24164
  * @description Semantic type of the setting value
24153
24165
  * @enum {string}
24154
24166
  */
24155
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24167
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24156
24168
  /** @description Optional JSONB filter for available values */
24157
24169
  filter?: string;
24158
24170
  };