@vrplatform/api 1.3.1-3907 → 1.3.1-3948

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;
@@ -5245,6 +5262,7 @@ export interface operations {
5245
5262
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
5246
5263
  };
5247
5264
  };
5265
+ /** @description Value in cents (100 = 1€) */
5248
5266
  amount: number;
5249
5267
  balance: {
5250
5268
  current: number;
@@ -8026,6 +8044,7 @@ export interface operations {
8026
8044
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
8027
8045
  };
8028
8046
  };
8047
+ /** @description Value in cents (100 = 1€) */
8029
8048
  amount: number;
8030
8049
  balance: {
8031
8050
  current: number;
@@ -8286,6 +8305,7 @@ export interface operations {
8286
8305
  accountId?: string | null;
8287
8306
  /** @enum {string} */
8288
8307
  type?: "transaction" | "balance";
8308
+ /** @description Value in cents (100 = 1€) */
8289
8309
  amount?: number;
8290
8310
  balance?: number | null;
8291
8311
  reconciliation?: {
@@ -8587,6 +8607,7 @@ export interface operations {
8587
8607
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
8588
8608
  };
8589
8609
  };
8610
+ /** @description Value in cents (100 = 1€) */
8590
8611
  amount: number;
8591
8612
  balance: {
8592
8613
  current: number;
@@ -48472,6 +48493,8 @@ export interface operations {
48472
48493
  type?: "extract" | "automate" | "webhook";
48473
48494
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
48474
48495
  sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
48496
+ /** @description Comma-separated sync IDs. */
48497
+ ids?: string;
48475
48498
  limit?: number;
48476
48499
  page?: number;
48477
48500
  };
@@ -49403,6 +49426,141 @@ export interface operations {
49403
49426
  };
49404
49427
  };
49405
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
+ };
49406
49564
  getTeams: {
49407
49565
  parameters: {
49408
49566
  query?: {