@vrplatform/api 1.3.0-stage.1145 → 1.3.0-stage.1146

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.0-stage.1145",
6
+ "version": "1.3.0-stage.1146",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2014,7 +2014,7 @@ export interface paths {
2014
2014
  path?: never;
2015
2015
  cookie?: never;
2016
2016
  };
2017
- /** @description List available values/options for a flow setting */
2017
+ /** @description Get a flow setting entry */
2018
2018
  get: operations["getFlowSetting"];
2019
2019
  put?: never;
2020
2020
  /** @description Create, update or delete a flow setting entry */
@@ -2371,52 +2371,6 @@ export interface components {
2371
2371
  type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2372
2372
  };
2373
2373
  };
2374
- /** @description Mapping entry returned from mutation routes with normalized left/right payloads. */
2375
- FlowMappingItemPost: {
2376
- /** Format: uuid */
2377
- id: string;
2378
- /** Format: uuid */
2379
- flowId: string;
2380
- /** Format: uuid */
2381
- connectionId: string;
2382
- mappingKey: string;
2383
- title: string | null;
2384
- description: string | null;
2385
- left: {
2386
- /** Format: uuid */
2387
- sourceId: string;
2388
- };
2389
- right: {
2390
- value: string | number;
2391
- text: string;
2392
- /**
2393
- * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2394
- * @enum {string}
2395
- */
2396
- type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
2397
- };
2398
- };
2399
- /** @description Collection of settings after mutation with normalized { id, name, type } value payloads. */
2400
- FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
2401
- /** @description Setting representation returned from mutation routes with normalized { id, name, type } value payload. */
2402
- FlowSettingItemPost: {
2403
- /** Format: uuid */
2404
- id: string;
2405
- /** Format: uuid */
2406
- flowId: string;
2407
- /** Format: uuid */
2408
- connectionId: string;
2409
- settingKey: string;
2410
- title: string | null;
2411
- description: string | null;
2412
- /**
2413
- * @description Semantic type for mapping/setting entries (entities and primitive kinds).
2414
- * @enum {string|null}
2415
- */
2416
- type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
2417
- filter: string | null;
2418
- value: components["schemas"]["FlowMappingResolvedEntityValue"];
2419
- };
2420
2374
  };
2421
2375
  responses: never;
2422
2376
  parameters: never;
@@ -24145,11 +24099,7 @@ export interface operations {
24145
24099
  /** Format: uuid */
24146
24100
  id: string;
24147
24101
  title: string;
24148
- app: {
24149
- id: string;
24150
- name: string;
24151
- icon?: string | null;
24152
- };
24102
+ appId: string;
24153
24103
  description?: string | null;
24154
24104
  /** @description Mapping schema configuration for this flow */
24155
24105
  mappingSchema: {
@@ -24278,11 +24228,7 @@ export interface operations {
24278
24228
  /** Format: uuid */
24279
24229
  id: string;
24280
24230
  title: string;
24281
- app: {
24282
- id: string;
24283
- name: string;
24284
- icon?: string | null;
24285
- };
24231
+ appId: string;
24286
24232
  description?: string | null;
24287
24233
  /** @description Mapping schema configuration for this flow */
24288
24234
  mappingSchema: {
@@ -24620,8 +24566,8 @@ export interface operations {
24620
24566
  };
24621
24567
  getFlowMapping: {
24622
24568
  parameters: {
24623
- query?: {
24624
- sourceId?: string;
24569
+ query: {
24570
+ sourceId: string;
24625
24571
  limit?: number;
24626
24572
  page?: number;
24627
24573
  };
@@ -24722,11 +24668,9 @@ export interface operations {
24722
24668
  "application/json": {
24723
24669
  /** Format: uuid */
24724
24670
  sourceId: string;
24725
- value?: unknown;
24726
- /** @default 100 */
24727
- limit?: number;
24728
- /** @default 1 */
24729
- page?: number;
24671
+ value: ((string | number | boolean | null) | (string | number | boolean | null)[] | {
24672
+ [key: string]: string | number | boolean | null;
24673
+ }) | null;
24730
24674
  };
24731
24675
  };
24732
24676
  };
@@ -24738,15 +24682,27 @@ export interface operations {
24738
24682
  };
24739
24683
  content: {
24740
24684
  "application/json": {
24741
- data: components["schemas"]["FlowMappingItemPost"][];
24742
- pagination: {
24743
- /** @default 100 */
24744
- limit: number;
24745
- /** @default 1 */
24746
- page: number;
24747
- total: number;
24748
- totalPage: number;
24749
- nextPage?: number;
24685
+ /** Format: uuid */
24686
+ id?: string;
24687
+ /** Format: uuid */
24688
+ flowId?: string;
24689
+ /** Format: uuid */
24690
+ connectionId?: string;
24691
+ mappingKey?: string;
24692
+ title?: string | null;
24693
+ description?: string | null;
24694
+ left?: {
24695
+ /** Format: uuid */
24696
+ sourceId: string;
24697
+ };
24698
+ right?: {
24699
+ value: string | number;
24700
+ text: string;
24701
+ /**
24702
+ * @description Semantic type for mapping/setting entries (entities and primitive kinds).
24703
+ * @enum {string}
24704
+ */
24705
+ type: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date";
24750
24706
  };
24751
24707
  };
24752
24708
  };
@@ -24973,8 +24929,6 @@ export interface operations {
24973
24929
  parameters: {
24974
24930
  query?: {
24975
24931
  search?: string;
24976
- limit?: number;
24977
- page?: number;
24978
24932
  };
24979
24933
  header?: {
24980
24934
  "X-Team-Id"?: string;
@@ -24994,23 +24948,7 @@ export interface operations {
24994
24948
  [name: string]: unknown;
24995
24949
  };
24996
24950
  content: {
24997
- "application/json": {
24998
- data: {
24999
- id: string;
25000
- name: string;
25001
- description: string | null;
25002
- value?: unknown;
25003
- }[];
25004
- pagination: {
25005
- /** @default 100 */
25006
- limit: number;
25007
- /** @default 1 */
25008
- page: number;
25009
- total: number;
25010
- totalPage: number;
25011
- nextPage?: number;
25012
- };
25013
- };
24951
+ "application/json": components["schemas"]["FlowSettingItemGet"];
25014
24952
  };
25015
24953
  };
25016
24954
  /** @description Invalid input data */
@@ -25076,7 +25014,9 @@ export interface operations {
25076
25014
  requestBody: {
25077
25015
  content: {
25078
25016
  "application/json": {
25079
- value?: unknown;
25017
+ value: ((string | number | boolean | null) | (string | number | boolean | null)[] | {
25018
+ [key: string]: string | number | boolean | null;
25019
+ }) | null;
25080
25020
  };
25081
25021
  };
25082
25022
  };
@@ -25089,14 +25029,21 @@ export interface operations {
25089
25029
  content: {
25090
25030
  "application/json": {
25091
25031
  /** Format: uuid */
25092
- id: string;
25032
+ id?: string;
25093
25033
  /** Format: uuid */
25094
- connectionId: string;
25095
- title: string;
25096
- description: string | null;
25097
- /** @enum {string} */
25098
- status: "active" | "inactive";
25099
- settings: components["schemas"]["FlowSettingItemsPost"];
25034
+ flowId?: string;
25035
+ /** Format: uuid */
25036
+ connectionId?: string;
25037
+ settingKey?: string;
25038
+ title?: string | null;
25039
+ description?: string | null;
25040
+ /**
25041
+ * @description Semantic type for mapping/setting entries (entities and primitive kinds).
25042
+ * @enum {string|null}
25043
+ */
25044
+ type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
25045
+ filter?: string | null;
25046
+ value?: components["schemas"]["FlowMappingResolvedEntityValue"];
25100
25047
  };
25101
25048
  };
25102
25049
  };