@vrplatform/api 1.3.1-stage.2502 → 1.3.1-stage.2504

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.
@@ -807,7 +807,8 @@ export interface paths {
807
807
  };
808
808
  /** @description Get flow configuration for a connection */
809
809
  get: operations["getFlowConnection"];
810
- put?: never;
810
+ /** @description Update flow status for a connection */
811
+ put: operations["setFlowStatus"];
811
812
  post?: never;
812
813
  delete?: never;
813
814
  options?: never;
@@ -11566,6 +11567,16 @@ export interface operations {
11566
11567
  startAt?: string | null;
11567
11568
  endAt?: string | null;
11568
11569
  }[];
11570
+ access?: {
11571
+ /** Format: uuid */
11572
+ userId: string;
11573
+ /** Format: email */
11574
+ email: string;
11575
+ /** @enum {string} */
11576
+ status: "active" | "inactive" | "unconfirmed";
11577
+ lastSeen?: string | null;
11578
+ lastInvitedAt?: string | null;
11579
+ } | null;
11569
11580
  }[];
11570
11581
  pagination: {
11571
11582
  /** @default 100 */
@@ -11756,6 +11767,16 @@ export interface operations {
11756
11767
  startAt?: string | null;
11757
11768
  endAt?: string | null;
11758
11769
  }[];
11770
+ access?: {
11771
+ /** Format: uuid */
11772
+ userId: string;
11773
+ /** Format: email */
11774
+ email: string;
11775
+ /** @enum {string} */
11776
+ status: "active" | "inactive" | "unconfirmed";
11777
+ lastSeen?: string | null;
11778
+ lastInvitedAt?: string | null;
11779
+ } | null;
11759
11780
  };
11760
11781
  };
11761
11782
  };
@@ -12167,6 +12188,16 @@ export interface operations {
12167
12188
  startAt?: string | null;
12168
12189
  endAt?: string | null;
12169
12190
  }[];
12191
+ access?: {
12192
+ /** Format: uuid */
12193
+ userId: string;
12194
+ /** Format: email */
12195
+ email: string;
12196
+ /** @enum {string} */
12197
+ status: "active" | "inactive" | "unconfirmed";
12198
+ lastSeen?: string | null;
12199
+ lastInvitedAt?: string | null;
12200
+ } | null;
12170
12201
  };
12171
12202
  };
12172
12203
  };
@@ -12348,6 +12379,16 @@ export interface operations {
12348
12379
  startAt?: string | null;
12349
12380
  endAt?: string | null;
12350
12381
  }[];
12382
+ access?: {
12383
+ /** Format: uuid */
12384
+ userId: string;
12385
+ /** Format: email */
12386
+ email: string;
12387
+ /** @enum {string} */
12388
+ status: "active" | "inactive" | "unconfirmed";
12389
+ lastSeen?: string | null;
12390
+ lastInvitedAt?: string | null;
12391
+ } | null;
12351
12392
  };
12352
12393
  };
12353
12394
  };
@@ -13257,6 +13298,150 @@ export interface operations {
13257
13298
  connectionId: string;
13258
13299
  title: string;
13259
13300
  description: string | null;
13301
+ /** @enum {string} */
13302
+ status: "active" | "inactive";
13303
+ settings: {
13304
+ /** Format: uuid */
13305
+ id: string;
13306
+ /** Format: uuid */
13307
+ flowId: string;
13308
+ /** Format: uuid */
13309
+ connectionId: string;
13310
+ settingKey: string;
13311
+ title: string | null;
13312
+ description: string | null;
13313
+ 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;
13314
+ filter: string | null;
13315
+ /** @description Resolved mapping entity summary ({ id, name, type }) returned by endpoints. */
13316
+ value: {
13317
+ id: string | number;
13318
+ name: string;
13319
+ /**
13320
+ * @description Semantic type for mapping/setting entries (entities and primitive kinds).
13321
+ * @enum {string}
13322
+ */
13323
+ type: "listing" | "account" | "bank_account" | "booking_channel" | "contact_vendor" | "contact_owner" | "rate" | "value_number" | "value_boolean" | "value_percentage" | "value_string" | "value_currency" | "value_date";
13324
+ };
13325
+ }[];
13326
+ };
13327
+ };
13328
+ };
13329
+ /** @description Bad request */
13330
+ 400: {
13331
+ headers: {
13332
+ [name: string]: unknown;
13333
+ };
13334
+ content: {
13335
+ "application/json": {
13336
+ code: string;
13337
+ message: string;
13338
+ issues?: {
13339
+ message: string;
13340
+ }[];
13341
+ context?: unknown;
13342
+ };
13343
+ };
13344
+ };
13345
+ /** @description Unauthorized */
13346
+ 401: {
13347
+ headers: {
13348
+ [name: string]: unknown;
13349
+ };
13350
+ content: {
13351
+ "application/json": {
13352
+ code: string;
13353
+ message: string;
13354
+ issues?: {
13355
+ message: string;
13356
+ }[];
13357
+ context?: unknown;
13358
+ };
13359
+ };
13360
+ };
13361
+ /** @description Forbidden */
13362
+ 403: {
13363
+ headers: {
13364
+ [name: string]: unknown;
13365
+ };
13366
+ content: {
13367
+ "application/json": {
13368
+ code: string;
13369
+ message: string;
13370
+ issues?: {
13371
+ message: string;
13372
+ }[];
13373
+ context?: unknown;
13374
+ };
13375
+ };
13376
+ };
13377
+ /** @description Not found */
13378
+ 404: {
13379
+ headers: {
13380
+ [name: string]: unknown;
13381
+ };
13382
+ content: {
13383
+ "application/json": {
13384
+ code: string;
13385
+ message: string;
13386
+ issues?: {
13387
+ message: string;
13388
+ }[];
13389
+ context?: unknown;
13390
+ };
13391
+ };
13392
+ };
13393
+ /** @description Internal server error */
13394
+ 500: {
13395
+ headers: {
13396
+ [name: string]: unknown;
13397
+ };
13398
+ content: {
13399
+ "application/json": {
13400
+ code: string;
13401
+ message: string;
13402
+ issues?: {
13403
+ message: string;
13404
+ }[];
13405
+ context?: unknown;
13406
+ };
13407
+ };
13408
+ };
13409
+ };
13410
+ };
13411
+ setFlowStatus: {
13412
+ parameters: {
13413
+ query?: never;
13414
+ header?: never;
13415
+ path: {
13416
+ id: string;
13417
+ connectionId: string;
13418
+ };
13419
+ cookie?: never;
13420
+ };
13421
+ requestBody?: {
13422
+ content: {
13423
+ "application/json": {
13424
+ /** @enum {string} */
13425
+ status: "active" | "inactive";
13426
+ };
13427
+ };
13428
+ };
13429
+ responses: {
13430
+ /** @description Successful response */
13431
+ 200: {
13432
+ headers: {
13433
+ [name: string]: unknown;
13434
+ };
13435
+ content: {
13436
+ "application/json": {
13437
+ /** Format: uuid */
13438
+ id: string;
13439
+ /** Format: uuid */
13440
+ connectionId: string;
13441
+ title: string;
13442
+ description: string | null;
13443
+ /** @enum {string} */
13444
+ status: "active" | "inactive";
13260
13445
  settings: {
13261
13446
  /** Format: uuid */
13262
13447
  id: string;
@@ -15917,6 +16102,7 @@ export interface operations {
15917
16102
  /** Format: uuid */
15918
16103
  id: string;
15919
16104
  shortRef?: string | null;
16105
+ pmsName?: string | null;
15920
16106
  /** @enum {string} */
15921
16107
  status: "active" | "inactive";
15922
16108
  activeOwnership?: {
@@ -16195,6 +16381,7 @@ export interface operations {
16195
16381
  /** Format: uuid */
16196
16382
  id: string;
16197
16383
  shortRef?: string | null;
16384
+ pmsName?: string | null;
16198
16385
  /** @enum {string} */
16199
16386
  status: "active" | "inactive";
16200
16387
  activeOwnership?: {
@@ -17496,6 +17683,7 @@ export interface operations {
17496
17683
  /** Format: uuid */
17497
17684
  id: string;
17498
17685
  shortRef?: string | null;
17686
+ pmsName?: string | null;
17499
17687
  /** @enum {string} */
17500
17688
  status: "active" | "inactive";
17501
17689
  activeOwnership?: {
@@ -17766,6 +17954,7 @@ export interface operations {
17766
17954
  /** Format: uuid */
17767
17955
  id: string;
17768
17956
  shortRef?: string | null;
17957
+ pmsName?: string | null;
17769
17958
  /** @enum {string} */
17770
17959
  status: "active" | "inactive";
17771
17960
  activeOwnership?: {