@vrplatform/api 1.2.33-stage.890 → 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.
|
@@ -2297,20 +2297,19 @@ export interface components {
|
|
|
2297
2297
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2298
2298
|
* @enum {string|null}
|
|
2299
2299
|
*/
|
|
2300
|
-
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2300
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2301
2301
|
filter: string | null;
|
|
2302
2302
|
value: components["schemas"]["FlowMappingResolvedEntityValue"];
|
|
2303
2303
|
};
|
|
2304
2304
|
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
2305
2305
|
FlowMappingResolvedEntityValue: {
|
|
2306
|
-
/** Format: uuid */
|
|
2307
2306
|
id: string;
|
|
2308
2307
|
name: string;
|
|
2309
2308
|
/**
|
|
2310
2309
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2311
2310
|
* @enum {string}
|
|
2312
2311
|
*/
|
|
2313
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2312
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2314
2313
|
};
|
|
2315
2314
|
/** @description Collection of settings after mutation with normalized { id, name, type } value payloads. */
|
|
2316
2315
|
FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
|
|
@@ -2329,7 +2328,7 @@ export interface components {
|
|
|
2329
2328
|
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2330
2329
|
* @enum {string|null}
|
|
2331
2330
|
*/
|
|
2332
|
-
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2331
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2333
2332
|
filter: string | null;
|
|
2334
2333
|
value: components["schemas"]["FlowMappingResolvedEntityValue"];
|
|
2335
2334
|
};
|
|
@@ -21763,26 +21762,39 @@ export interface operations {
|
|
|
21763
21762
|
"application/json": {
|
|
21764
21763
|
connectionId: string;
|
|
21765
21764
|
institutionName: string;
|
|
21766
|
-
|
|
21767
|
-
|
|
21768
|
-
|
|
21769
|
-
|
|
21770
|
-
|
|
21771
|
-
|
|
21772
|
-
|
|
21773
|
-
|
|
21774
|
-
|
|
21775
|
-
|
|
21776
|
-
|
|
21777
|
-
|
|
21778
|
-
|
|
21779
|
-
|
|
21780
|
-
|
|
21781
|
-
|
|
21782
|
-
|
|
21783
|
-
/** @enum {string
|
|
21784
|
-
|
|
21785
|
-
|
|
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
|
+
})[];
|
|
21786
21798
|
};
|
|
21787
21799
|
};
|
|
21788
21800
|
};
|
|
@@ -23707,7 +23719,7 @@ export interface operations {
|
|
|
23707
23719
|
* @description Internal semantic type
|
|
23708
23720
|
* @enum {string}
|
|
23709
23721
|
*/
|
|
23710
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23722
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23711
23723
|
/** @description Optional JSONB filter for internal data */
|
|
23712
23724
|
filter?: string;
|
|
23713
23725
|
};
|
|
@@ -23731,7 +23743,7 @@ export interface operations {
|
|
|
23731
23743
|
* @description Semantic type of the setting value
|
|
23732
23744
|
* @enum {string}
|
|
23733
23745
|
*/
|
|
23734
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23746
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23735
23747
|
/** @description Optional JSONB filter for available values */
|
|
23736
23748
|
filter?: string;
|
|
23737
23749
|
};
|
|
@@ -23828,7 +23840,7 @@ export interface operations {
|
|
|
23828
23840
|
* @description Internal semantic type
|
|
23829
23841
|
* @enum {string}
|
|
23830
23842
|
*/
|
|
23831
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23843
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23832
23844
|
/** @description Optional JSONB filter for internal data */
|
|
23833
23845
|
filter?: string;
|
|
23834
23846
|
};
|
|
@@ -23852,7 +23864,7 @@ export interface operations {
|
|
|
23852
23864
|
* @description Semantic type of the setting value
|
|
23853
23865
|
* @enum {string}
|
|
23854
23866
|
*/
|
|
23855
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23867
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23856
23868
|
/** @description Optional JSONB filter for available values */
|
|
23857
23869
|
filter?: string;
|
|
23858
23870
|
};
|
|
@@ -23952,7 +23964,7 @@ export interface operations {
|
|
|
23952
23964
|
* @description Internal semantic type
|
|
23953
23965
|
* @enum {string}
|
|
23954
23966
|
*/
|
|
23955
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23967
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23956
23968
|
/** @description Optional JSONB filter for internal data */
|
|
23957
23969
|
filter?: string;
|
|
23958
23970
|
};
|
|
@@ -23976,7 +23988,7 @@ export interface operations {
|
|
|
23976
23988
|
* @description Semantic type of the setting value
|
|
23977
23989
|
* @enum {string}
|
|
23978
23990
|
*/
|
|
23979
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23991
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23980
23992
|
/** @description Optional JSONB filter for available values */
|
|
23981
23993
|
filter?: string;
|
|
23982
23994
|
};
|
|
@@ -24063,7 +24075,7 @@ export interface operations {
|
|
|
24063
24075
|
* @description Internal semantic type
|
|
24064
24076
|
* @enum {string}
|
|
24065
24077
|
*/
|
|
24066
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24078
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24067
24079
|
/** @description Optional JSONB filter for internal data */
|
|
24068
24080
|
filter?: string;
|
|
24069
24081
|
};
|
|
@@ -24087,7 +24099,7 @@ export interface operations {
|
|
|
24087
24099
|
* @description Semantic type of the setting value
|
|
24088
24100
|
* @enum {string}
|
|
24089
24101
|
*/
|
|
24090
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24102
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24091
24103
|
/** @description Optional JSONB filter for available values */
|
|
24092
24104
|
filter?: string;
|
|
24093
24105
|
};
|
|
@@ -24127,7 +24139,7 @@ export interface operations {
|
|
|
24127
24139
|
* @description Internal semantic type
|
|
24128
24140
|
* @enum {string}
|
|
24129
24141
|
*/
|
|
24130
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24142
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24131
24143
|
/** @description Optional JSONB filter for internal data */
|
|
24132
24144
|
filter?: string;
|
|
24133
24145
|
};
|
|
@@ -24151,7 +24163,7 @@ export interface operations {
|
|
|
24151
24163
|
* @description Semantic type of the setting value
|
|
24152
24164
|
* @enum {string}
|
|
24153
24165
|
*/
|
|
24154
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24166
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24155
24167
|
/** @description Optional JSONB filter for available values */
|
|
24156
24168
|
filter?: string;
|
|
24157
24169
|
};
|