@vrplatform/api 1.3.1-stage.3927 → 1.3.1-stage.3944

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