@vrplatform/api 1.3.1-stage.4756 → 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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.4756",
6
+ "version": "1.3.1-stage.4758",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -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 */
@@ -24202,18 +24202,18 @@ export interface operations {
24202
24202
  content: {
24203
24203
  "application/json": {
24204
24204
  /** Format: uuid */
24205
- id: string;
24205
+ id?: string;
24206
24206
  /** Format: uuid */
24207
- flowId: string;
24207
+ flowId?: string;
24208
24208
  /** Format: uuid */
24209
- connectionId: string;
24210
- settingKey: string;
24211
- title: string | null;
24212
- description: string | null;
24209
+ connectionId?: string;
24210
+ settingKey?: string;
24211
+ title?: string | null;
24212
+ description?: string | null;
24213
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;
24214
- filter: string | null;
24214
+ filter?: string | null;
24215
24215
  /** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
24216
- value: {
24216
+ value?: {
24217
24217
  id: string | number;
24218
24218
  name: string;
24219
24219
  /**