@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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-3907",
6
+ "version": "1.3.1-3948",
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;
@@ -5246,6 +5263,7 @@ export interface operations {
5246
5263
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
5247
5264
  };
5248
5265
  };
5266
+ /** @description Value in cents (100 = 1€) */
5249
5267
  amount: number;
5250
5268
  balance: {
5251
5269
  current: number;
@@ -8027,6 +8045,7 @@ export interface operations {
8027
8045
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
8028
8046
  };
8029
8047
  };
8048
+ /** @description Value in cents (100 = 1€) */
8030
8049
  amount: number;
8031
8050
  balance: {
8032
8051
  current: number;
@@ -8287,6 +8306,7 @@ export interface operations {
8287
8306
  accountId?: string | null;
8288
8307
  /** @enum {string} */
8289
8308
  type?: "transaction" | "balance";
8309
+ /** @description Value in cents (100 = 1€) */
8290
8310
  amount?: number;
8291
8311
  balance?: number | null;
8292
8312
  reconciliation?: {
@@ -8588,6 +8608,7 @@ export interface operations {
8588
8608
  reasons: ("notCsvSource" | "plaidSource" | "reconciled" | "balanceRecord" | "bankRuleMatched")[];
8589
8609
  };
8590
8610
  };
8611
+ /** @description Value in cents (100 = 1€) */
8591
8612
  amount: number;
8592
8613
  balance: {
8593
8614
  current: number;
@@ -48473,6 +48494,8 @@ export interface operations {
48473
48494
  type?: "extract" | "automate" | "webhook";
48474
48495
  status?: "queued" | "started" | "completed" | "failed" | "canceled";
48475
48496
  sort?: "created_asc" | "created_desc" | "updated_asc" | "updated_desc";
48497
+ /** @description Comma-separated sync IDs. */
48498
+ ids?: string;
48476
48499
  limit?: number;
48477
48500
  page?: number;
48478
48501
  };
@@ -49404,6 +49427,141 @@ export interface operations {
49404
49427
  };
49405
49428
  };
49406
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
+ };
49407
49565
  getTeams: {
49408
49566
  parameters: {
49409
49567
  query?: {