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