@vrplatform/api 1.3.1-stage.4754 → 1.3.1-stage.4758
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 */
|
|
@@ -8970,6 +8970,9 @@ export interface operations {
|
|
|
8970
8970
|
type: string;
|
|
8971
8971
|
category: string;
|
|
8972
8972
|
description?: string | null;
|
|
8973
|
+
extension?: {
|
|
8974
|
+
url: string;
|
|
8975
|
+
};
|
|
8973
8976
|
flows: {
|
|
8974
8977
|
/** Format: uuid */
|
|
8975
8978
|
id: string;
|
|
@@ -9179,6 +9182,9 @@ export interface operations {
|
|
|
9179
9182
|
type: string;
|
|
9180
9183
|
category: string;
|
|
9181
9184
|
description?: string | null;
|
|
9185
|
+
extension?: {
|
|
9186
|
+
url: string;
|
|
9187
|
+
};
|
|
9182
9188
|
flows: {
|
|
9183
9189
|
/** Format: uuid */
|
|
9184
9190
|
id: string;
|
|
@@ -24195,18 +24201,18 @@ export interface operations {
|
|
|
24195
24201
|
content: {
|
|
24196
24202
|
"application/json": {
|
|
24197
24203
|
/** Format: uuid */
|
|
24198
|
-
id
|
|
24204
|
+
id?: string;
|
|
24199
24205
|
/** Format: uuid */
|
|
24200
|
-
flowId
|
|
24206
|
+
flowId?: string;
|
|
24201
24207
|
/** Format: uuid */
|
|
24202
|
-
connectionId
|
|
24203
|
-
settingKey
|
|
24204
|
-
title
|
|
24205
|
-
description
|
|
24208
|
+
connectionId?: string;
|
|
24209
|
+
settingKey?: string;
|
|
24210
|
+
title?: string | null;
|
|
24211
|
+
description?: string | null;
|
|
24206
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;
|
|
24207
|
-
filter
|
|
24213
|
+
filter?: string | null;
|
|
24208
24214
|
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
24209
|
-
value
|
|
24215
|
+
value?: {
|
|
24210
24216
|
id: string | number;
|
|
24211
24217
|
name: string;
|
|
24212
24218
|
/**
|