@vrplatform/api 1.3.1-stage.3927 → 1.3.1-stage.3941
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.
|
@@ -3026,6 +3026,23 @@ export interface paths {
|
|
|
3026
3026
|
patch?: never;
|
|
3027
3027
|
trace?: never;
|
|
3028
3028
|
};
|
|
3029
|
+
"/syncs/{id}/changes": {
|
|
3030
|
+
parameters: {
|
|
3031
|
+
query?: never;
|
|
3032
|
+
header?: never;
|
|
3033
|
+
path?: never;
|
|
3034
|
+
cookie?: never;
|
|
3035
|
+
};
|
|
3036
|
+
/** @description Get sync changes */
|
|
3037
|
+
get: operations["getSyncChanges"];
|
|
3038
|
+
put?: never;
|
|
3039
|
+
post?: never;
|
|
3040
|
+
delete?: never;
|
|
3041
|
+
options?: never;
|
|
3042
|
+
head?: never;
|
|
3043
|
+
patch?: never;
|
|
3044
|
+
trace?: never;
|
|
3045
|
+
};
|
|
3029
3046
|
"/teams": {
|
|
3030
3047
|
parameters: {
|
|
3031
3048
|
query?: never;
|
|
@@ -49409,6 +49426,141 @@ export interface operations {
|
|
|
49409
49426
|
};
|
|
49410
49427
|
};
|
|
49411
49428
|
};
|
|
49429
|
+
getSyncChanges: {
|
|
49430
|
+
parameters: {
|
|
49431
|
+
query?: {
|
|
49432
|
+
search?: string;
|
|
49433
|
+
type?: "pull" | "push";
|
|
49434
|
+
status?: "completed" | "failed" | "queued" | "skipped";
|
|
49435
|
+
limit?: number;
|
|
49436
|
+
page?: number;
|
|
49437
|
+
};
|
|
49438
|
+
header?: never;
|
|
49439
|
+
path: {
|
|
49440
|
+
id: string;
|
|
49441
|
+
};
|
|
49442
|
+
cookie?: never;
|
|
49443
|
+
};
|
|
49444
|
+
requestBody?: never;
|
|
49445
|
+
responses: {
|
|
49446
|
+
/** @description Successful response */
|
|
49447
|
+
200: {
|
|
49448
|
+
headers: {
|
|
49449
|
+
[name: string]: unknown;
|
|
49450
|
+
};
|
|
49451
|
+
content: {
|
|
49452
|
+
"application/json": {
|
|
49453
|
+
data: {
|
|
49454
|
+
/** Format: uuid */
|
|
49455
|
+
id: string;
|
|
49456
|
+
status: ("completed" | "failed" | "queued" | "skipped") | null;
|
|
49457
|
+
syncSubtaskRef: string | null;
|
|
49458
|
+
externalHref: string | null;
|
|
49459
|
+
type: string | null;
|
|
49460
|
+
message: string | null;
|
|
49461
|
+
title: string | null;
|
|
49462
|
+
uniqueRef: string | null;
|
|
49463
|
+
inputJson: unknown | null;
|
|
49464
|
+
outputJson: unknown | null;
|
|
49465
|
+
links: {
|
|
49466
|
+
reservationId: string | null;
|
|
49467
|
+
listingId: string | null;
|
|
49468
|
+
};
|
|
49469
|
+
}[];
|
|
49470
|
+
pagination: {
|
|
49471
|
+
/** @default 100 */
|
|
49472
|
+
limit: number;
|
|
49473
|
+
/** @default 1 */
|
|
49474
|
+
page: number;
|
|
49475
|
+
total: number;
|
|
49476
|
+
totalPage: number;
|
|
49477
|
+
nextPage?: number;
|
|
49478
|
+
};
|
|
49479
|
+
};
|
|
49480
|
+
};
|
|
49481
|
+
};
|
|
49482
|
+
/** @description Bad request */
|
|
49483
|
+
400: {
|
|
49484
|
+
headers: {
|
|
49485
|
+
[name: string]: unknown;
|
|
49486
|
+
};
|
|
49487
|
+
content: {
|
|
49488
|
+
"application/json": {
|
|
49489
|
+
code: string;
|
|
49490
|
+
message: string;
|
|
49491
|
+
issues?: {
|
|
49492
|
+
message: string;
|
|
49493
|
+
}[];
|
|
49494
|
+
context?: unknown;
|
|
49495
|
+
};
|
|
49496
|
+
};
|
|
49497
|
+
};
|
|
49498
|
+
/** @description Unauthorized */
|
|
49499
|
+
401: {
|
|
49500
|
+
headers: {
|
|
49501
|
+
[name: string]: unknown;
|
|
49502
|
+
};
|
|
49503
|
+
content: {
|
|
49504
|
+
"application/json": {
|
|
49505
|
+
code: string;
|
|
49506
|
+
message: string;
|
|
49507
|
+
issues?: {
|
|
49508
|
+
message: string;
|
|
49509
|
+
}[];
|
|
49510
|
+
context?: unknown;
|
|
49511
|
+
};
|
|
49512
|
+
};
|
|
49513
|
+
};
|
|
49514
|
+
/** @description Forbidden */
|
|
49515
|
+
403: {
|
|
49516
|
+
headers: {
|
|
49517
|
+
[name: string]: unknown;
|
|
49518
|
+
};
|
|
49519
|
+
content: {
|
|
49520
|
+
"application/json": {
|
|
49521
|
+
code: string;
|
|
49522
|
+
message: string;
|
|
49523
|
+
issues?: {
|
|
49524
|
+
message: string;
|
|
49525
|
+
}[];
|
|
49526
|
+
context?: unknown;
|
|
49527
|
+
};
|
|
49528
|
+
};
|
|
49529
|
+
};
|
|
49530
|
+
/** @description Not found */
|
|
49531
|
+
404: {
|
|
49532
|
+
headers: {
|
|
49533
|
+
[name: string]: unknown;
|
|
49534
|
+
};
|
|
49535
|
+
content: {
|
|
49536
|
+
"application/json": {
|
|
49537
|
+
code: string;
|
|
49538
|
+
message: string;
|
|
49539
|
+
issues?: {
|
|
49540
|
+
message: string;
|
|
49541
|
+
}[];
|
|
49542
|
+
context?: unknown;
|
|
49543
|
+
};
|
|
49544
|
+
};
|
|
49545
|
+
};
|
|
49546
|
+
/** @description Internal server error */
|
|
49547
|
+
500: {
|
|
49548
|
+
headers: {
|
|
49549
|
+
[name: string]: unknown;
|
|
49550
|
+
};
|
|
49551
|
+
content: {
|
|
49552
|
+
"application/json": {
|
|
49553
|
+
code: string;
|
|
49554
|
+
message: string;
|
|
49555
|
+
issues?: {
|
|
49556
|
+
message: string;
|
|
49557
|
+
}[];
|
|
49558
|
+
context?: unknown;
|
|
49559
|
+
};
|
|
49560
|
+
};
|
|
49561
|
+
};
|
|
49562
|
+
};
|
|
49563
|
+
};
|
|
49412
49564
|
getTeams: {
|
|
49413
49565
|
parameters: {
|
|
49414
49566
|
query?: {
|