@vrplatform/api 1.2.33-rel.891 → 1.2.33-rel.898
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
package/src/generated/v1.ts
CHANGED
|
@@ -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
|
};
|
|
@@ -2609,6 +2608,8 @@ export interface operations {
|
|
|
2609
2608
|
type?: string;
|
|
2610
2609
|
date?: string;
|
|
2611
2610
|
expand?: string;
|
|
2611
|
+
description?: string;
|
|
2612
|
+
amount?: number;
|
|
2612
2613
|
};
|
|
2613
2614
|
header?: {
|
|
2614
2615
|
"X-Team-Id"?: string;
|
|
@@ -21764,26 +21765,39 @@ export interface operations {
|
|
|
21764
21765
|
"application/json": {
|
|
21765
21766
|
connectionId: string;
|
|
21766
21767
|
institutionName: string;
|
|
21767
|
-
|
|
21768
|
-
|
|
21769
|
-
|
|
21770
|
-
|
|
21771
|
-
|
|
21772
|
-
|
|
21773
|
-
|
|
21774
|
-
|
|
21775
|
-
|
|
21776
|
-
|
|
21777
|
-
|
|
21778
|
-
|
|
21779
|
-
|
|
21780
|
-
|
|
21781
|
-
|
|
21782
|
-
|
|
21783
|
-
|
|
21784
|
-
/** @enum {string
|
|
21785
|
-
|
|
21786
|
-
|
|
21768
|
+
issues: ({
|
|
21769
|
+
/** @enum {string} */
|
|
21770
|
+
code: "plaidHealthDegraded";
|
|
21771
|
+
/** @enum {string} */
|
|
21772
|
+
severity: "warning";
|
|
21773
|
+
context: {
|
|
21774
|
+
/** @enum {string} */
|
|
21775
|
+
badge: "auth" | "item_logins" | "transactions_updates";
|
|
21776
|
+
title: string;
|
|
21777
|
+
/** @enum {string} */
|
|
21778
|
+
status: "DEGRADED";
|
|
21779
|
+
/** @enum {string} */
|
|
21780
|
+
refreshInterval?: "NORMAL" | "STOPPED" | "DELAYED";
|
|
21781
|
+
description?: string;
|
|
21782
|
+
statusDescription: string;
|
|
21783
|
+
};
|
|
21784
|
+
} | {
|
|
21785
|
+
/** @enum {string} */
|
|
21786
|
+
code: "plaidHealthDown";
|
|
21787
|
+
/** @enum {string} */
|
|
21788
|
+
severity: "error";
|
|
21789
|
+
context: {
|
|
21790
|
+
/** @enum {string} */
|
|
21791
|
+
badge: "auth" | "item_logins" | "transactions_updates";
|
|
21792
|
+
title: string;
|
|
21793
|
+
/** @enum {string} */
|
|
21794
|
+
status: "DOWN";
|
|
21795
|
+
/** @enum {string} */
|
|
21796
|
+
refreshInterval?: "NORMAL" | "STOPPED" | "DELAYED";
|
|
21797
|
+
description?: string;
|
|
21798
|
+
statusDescription: string;
|
|
21799
|
+
};
|
|
21800
|
+
})[];
|
|
21787
21801
|
};
|
|
21788
21802
|
};
|
|
21789
21803
|
};
|
|
@@ -23708,7 +23722,7 @@ export interface operations {
|
|
|
23708
23722
|
* @description Internal semantic type
|
|
23709
23723
|
* @enum {string}
|
|
23710
23724
|
*/
|
|
23711
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23725
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23712
23726
|
/** @description Optional JSONB filter for internal data */
|
|
23713
23727
|
filter?: string;
|
|
23714
23728
|
};
|
|
@@ -23732,7 +23746,7 @@ export interface operations {
|
|
|
23732
23746
|
* @description Semantic type of the setting value
|
|
23733
23747
|
* @enum {string}
|
|
23734
23748
|
*/
|
|
23735
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23749
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23736
23750
|
/** @description Optional JSONB filter for available values */
|
|
23737
23751
|
filter?: string;
|
|
23738
23752
|
};
|
|
@@ -23829,7 +23843,7 @@ export interface operations {
|
|
|
23829
23843
|
* @description Internal semantic type
|
|
23830
23844
|
* @enum {string}
|
|
23831
23845
|
*/
|
|
23832
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23846
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23833
23847
|
/** @description Optional JSONB filter for internal data */
|
|
23834
23848
|
filter?: string;
|
|
23835
23849
|
};
|
|
@@ -23853,7 +23867,7 @@ export interface operations {
|
|
|
23853
23867
|
* @description Semantic type of the setting value
|
|
23854
23868
|
* @enum {string}
|
|
23855
23869
|
*/
|
|
23856
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23870
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23857
23871
|
/** @description Optional JSONB filter for available values */
|
|
23858
23872
|
filter?: string;
|
|
23859
23873
|
};
|
|
@@ -23953,7 +23967,7 @@ export interface operations {
|
|
|
23953
23967
|
* @description Internal semantic type
|
|
23954
23968
|
* @enum {string}
|
|
23955
23969
|
*/
|
|
23956
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23970
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23957
23971
|
/** @description Optional JSONB filter for internal data */
|
|
23958
23972
|
filter?: string;
|
|
23959
23973
|
};
|
|
@@ -23977,7 +23991,7 @@ export interface operations {
|
|
|
23977
23991
|
* @description Semantic type of the setting value
|
|
23978
23992
|
* @enum {string}
|
|
23979
23993
|
*/
|
|
23980
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23994
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
23981
23995
|
/** @description Optional JSONB filter for available values */
|
|
23982
23996
|
filter?: string;
|
|
23983
23997
|
};
|
|
@@ -24064,7 +24078,7 @@ export interface operations {
|
|
|
24064
24078
|
* @description Internal semantic type
|
|
24065
24079
|
* @enum {string}
|
|
24066
24080
|
*/
|
|
24067
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24081
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24068
24082
|
/** @description Optional JSONB filter for internal data */
|
|
24069
24083
|
filter?: string;
|
|
24070
24084
|
};
|
|
@@ -24088,7 +24102,7 @@ export interface operations {
|
|
|
24088
24102
|
* @description Semantic type of the setting value
|
|
24089
24103
|
* @enum {string}
|
|
24090
24104
|
*/
|
|
24091
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24105
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24092
24106
|
/** @description Optional JSONB filter for available values */
|
|
24093
24107
|
filter?: string;
|
|
24094
24108
|
};
|
|
@@ -24128,7 +24142,7 @@ export interface operations {
|
|
|
24128
24142
|
* @description Internal semantic type
|
|
24129
24143
|
* @enum {string}
|
|
24130
24144
|
*/
|
|
24131
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24145
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24132
24146
|
/** @description Optional JSONB filter for internal data */
|
|
24133
24147
|
filter?: string;
|
|
24134
24148
|
};
|
|
@@ -24152,7 +24166,7 @@ export interface operations {
|
|
|
24152
24166
|
* @description Semantic type of the setting value
|
|
24153
24167
|
* @enum {string}
|
|
24154
24168
|
*/
|
|
24155
|
-
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24169
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
24156
24170
|
/** @description Optional JSONB filter for available values */
|
|
24157
24171
|
filter?: string;
|
|
24158
24172
|
};
|