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