@vrplatform/api 1.3.0-stage.1194 → 1.3.0-stage.1195
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.
|
@@ -25985,9 +25985,18 @@ export interface operations {
|
|
|
25985
25985
|
* @description Semantic type of the setting value
|
|
25986
25986
|
* @enum {string}
|
|
25987
25987
|
*/
|
|
25988
|
-
type
|
|
25988
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
25989
25989
|
/** @description Optional JSONB filter for available values */
|
|
25990
25990
|
filter?: string;
|
|
25991
|
+
/** @description External system setting configuration */
|
|
25992
|
+
external?: {
|
|
25993
|
+
/** @description External type identifier (vendor/system specific) for options */
|
|
25994
|
+
type?: string;
|
|
25995
|
+
/** @description Human readable description of the external source */
|
|
25996
|
+
description?: string;
|
|
25997
|
+
/** @description Optional JSONB filter for external data */
|
|
25998
|
+
filter?: string;
|
|
25999
|
+
};
|
|
25991
26000
|
};
|
|
25992
26001
|
};
|
|
25993
26002
|
/** @enum {string} */
|
|
@@ -26114,9 +26123,18 @@ export interface operations {
|
|
|
26114
26123
|
* @description Semantic type of the setting value
|
|
26115
26124
|
* @enum {string}
|
|
26116
26125
|
*/
|
|
26117
|
-
type
|
|
26126
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
26118
26127
|
/** @description Optional JSONB filter for available values */
|
|
26119
26128
|
filter?: string;
|
|
26129
|
+
/** @description External system setting configuration */
|
|
26130
|
+
external?: {
|
|
26131
|
+
/** @description External type identifier (vendor/system specific) for options */
|
|
26132
|
+
type?: string;
|
|
26133
|
+
/** @description Human readable description of the external source */
|
|
26134
|
+
description?: string;
|
|
26135
|
+
/** @description Optional JSONB filter for external data */
|
|
26136
|
+
filter?: string;
|
|
26137
|
+
};
|
|
26120
26138
|
};
|
|
26121
26139
|
};
|
|
26122
26140
|
/** @enum {string} */
|