@vrplatform/api 1.3.1-stage.4756 → 1.3.1-stage.4760
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.
|
@@ -932,7 +932,7 @@ export interface paths {
|
|
|
932
932
|
*/
|
|
933
933
|
get: operations["getContactsById"];
|
|
934
934
|
/**
|
|
935
|
-
* @description Update Contact By ID
|
|
935
|
+
* @description Update Contact By ID. An empty body leaves the contact unchanged.
|
|
936
936
|
*
|
|
937
937
|
* Required scope: contacts:write
|
|
938
938
|
*/
|
|
@@ -1275,7 +1275,7 @@ export interface paths {
|
|
|
1275
1275
|
path?: never;
|
|
1276
1276
|
cookie?: never;
|
|
1277
1277
|
};
|
|
1278
|
-
/** @description Get a flow setting entry */
|
|
1278
|
+
/** @description Get a flow setting entry. Returns an empty object when the setting is not set. */
|
|
1279
1279
|
get: operations["getFlowSetting"];
|
|
1280
1280
|
put?: never;
|
|
1281
1281
|
/** @description Create, update or delete a flow setting entry */
|
|
@@ -24201,18 +24201,18 @@ export interface operations {
|
|
|
24201
24201
|
content: {
|
|
24202
24202
|
"application/json": {
|
|
24203
24203
|
/** Format: uuid */
|
|
24204
|
-
id
|
|
24204
|
+
id?: string;
|
|
24205
24205
|
/** Format: uuid */
|
|
24206
|
-
flowId
|
|
24206
|
+
flowId?: string;
|
|
24207
24207
|
/** Format: uuid */
|
|
24208
|
-
connectionId
|
|
24209
|
-
settingKey
|
|
24210
|
-
title
|
|
24211
|
-
description
|
|
24208
|
+
connectionId?: string;
|
|
24209
|
+
settingKey?: string;
|
|
24210
|
+
title?: string | null;
|
|
24211
|
+
description?: string | null;
|
|
24212
24212
|
type?: ("listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date") | null;
|
|
24213
|
-
filter
|
|
24213
|
+
filter?: string | null;
|
|
24214
24214
|
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
24215
|
-
value
|
|
24215
|
+
value?: {
|
|
24216
24216
|
id: string | number;
|
|
24217
24217
|
name: string;
|
|
24218
24218
|
/**
|