@vrplatform/api 1.2.40-stage.1064 → 1.2.40-stage.1066
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.
|
@@ -2369,7 +2369,7 @@ export interface components {
|
|
|
2369
2369
|
filter: string | null;
|
|
2370
2370
|
value: components["schemas"]["FlowMappingResolvedEntityValue"];
|
|
2371
2371
|
};
|
|
2372
|
-
/** @description Mapping entry returned from GET routes with normalized
|
|
2372
|
+
/** @description Mapping entry returned from GET routes with normalized left/right payloads. */
|
|
2373
2373
|
FlowMappingItemGet: {
|
|
2374
2374
|
/** Format: uuid */
|
|
2375
2375
|
id: string;
|
|
@@ -2378,13 +2378,23 @@ export interface components {
|
|
|
2378
2378
|
/** Format: uuid */
|
|
2379
2379
|
connectionId: string;
|
|
2380
2380
|
mappingKey: string;
|
|
2381
|
-
/** Format: uuid */
|
|
2382
|
-
sourceId: string;
|
|
2383
2381
|
title: string | null;
|
|
2384
2382
|
description: string | null;
|
|
2385
|
-
|
|
2383
|
+
left: {
|
|
2384
|
+
/** Format: uuid */
|
|
2385
|
+
sourceId: string;
|
|
2386
|
+
};
|
|
2387
|
+
right: {
|
|
2388
|
+
value: string | number;
|
|
2389
|
+
text: string;
|
|
2390
|
+
/**
|
|
2391
|
+
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2392
|
+
* @enum {string}
|
|
2393
|
+
*/
|
|
2394
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2395
|
+
};
|
|
2386
2396
|
};
|
|
2387
|
-
/** @description Mapping entry returned from mutation routes with
|
|
2397
|
+
/** @description Mapping entry returned from mutation routes with normalized left/right payloads. */
|
|
2388
2398
|
FlowMappingItemPost: {
|
|
2389
2399
|
/** Format: uuid */
|
|
2390
2400
|
id: string;
|
|
@@ -2393,11 +2403,21 @@ export interface components {
|
|
|
2393
2403
|
/** Format: uuid */
|
|
2394
2404
|
connectionId: string;
|
|
2395
2405
|
mappingKey: string;
|
|
2396
|
-
/** Format: uuid */
|
|
2397
|
-
sourceId: string;
|
|
2398
2406
|
title: string | null;
|
|
2399
2407
|
description: string | null;
|
|
2400
|
-
|
|
2408
|
+
left: {
|
|
2409
|
+
/** Format: uuid */
|
|
2410
|
+
sourceId: string;
|
|
2411
|
+
};
|
|
2412
|
+
right: {
|
|
2413
|
+
value: string | number;
|
|
2414
|
+
text: string;
|
|
2415
|
+
/**
|
|
2416
|
+
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2417
|
+
* @enum {string}
|
|
2418
|
+
*/
|
|
2419
|
+
type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
|
|
2420
|
+
};
|
|
2401
2421
|
};
|
|
2402
2422
|
};
|
|
2403
2423
|
responses: never;
|