@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -933,7 +933,7 @@ export interface paths {
|
|
|
933
933
|
*/
|
|
934
934
|
get: operations["getContactsById"];
|
|
935
935
|
/**
|
|
936
|
-
* @description Update Contact By ID
|
|
936
|
+
* @description Update Contact By ID. An empty body leaves the contact unchanged.
|
|
937
937
|
*
|
|
938
938
|
* Required scope: contacts:write
|
|
939
939
|
*/
|
|
@@ -1276,7 +1276,7 @@ export interface paths {
|
|
|
1276
1276
|
path?: never;
|
|
1277
1277
|
cookie?: never;
|
|
1278
1278
|
};
|
|
1279
|
-
/** @description Get a flow setting entry */
|
|
1279
|
+
/** @description Get a flow setting entry. Returns an empty object when the setting is not set. */
|
|
1280
1280
|
get: operations["getFlowSetting"];
|
|
1281
1281
|
put?: never;
|
|
1282
1282
|
/** @description Create, update or delete a flow setting entry */
|
|
@@ -8971,6 +8971,9 @@ export interface operations {
|
|
|
8971
8971
|
type: string;
|
|
8972
8972
|
category: string;
|
|
8973
8973
|
description?: string | null;
|
|
8974
|
+
extension?: {
|
|
8975
|
+
url: string;
|
|
8976
|
+
};
|
|
8974
8977
|
flows: {
|
|
8975
8978
|
/** Format: uuid */
|
|
8976
8979
|
id: string;
|
|
@@ -9180,6 +9183,9 @@ export interface operations {
|
|
|
9180
9183
|
type: string;
|
|
9181
9184
|
category: string;
|
|
9182
9185
|
description?: string | null;
|
|
9186
|
+
extension?: {
|
|
9187
|
+
url: string;
|
|
9188
|
+
};
|
|
9183
9189
|
flows: {
|
|
9184
9190
|
/** Format: uuid */
|
|
9185
9191
|
id: string;
|
|
@@ -24196,18 +24202,18 @@ export interface operations {
|
|
|
24196
24202
|
content: {
|
|
24197
24203
|
"application/json": {
|
|
24198
24204
|
/** Format: uuid */
|
|
24199
|
-
id
|
|
24205
|
+
id?: string;
|
|
24200
24206
|
/** Format: uuid */
|
|
24201
|
-
flowId
|
|
24207
|
+
flowId?: string;
|
|
24202
24208
|
/** Format: uuid */
|
|
24203
|
-
connectionId
|
|
24204
|
-
settingKey
|
|
24205
|
-
title
|
|
24206
|
-
description
|
|
24209
|
+
connectionId?: string;
|
|
24210
|
+
settingKey?: string;
|
|
24211
|
+
title?: string | null;
|
|
24212
|
+
description?: string | null;
|
|
24207
24213
|
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;
|
|
24208
|
-
filter
|
|
24214
|
+
filter?: string | null;
|
|
24209
24215
|
/** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
|
|
24210
|
-
value
|
|
24216
|
+
value?: {
|
|
24211
24217
|
id: string | number;
|
|
24212
24218
|
name: string;
|
|
24213
24219
|
/**
|