@vrplatform/api 1.3.1-stage.2060 → 1.3.1-stage.2061

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.2060",
6
+ "version": "1.3.1-stage.2061",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -34495,7 +34495,16 @@ export interface operations {
34495
34495
  affected: number;
34496
34496
  /** @constant */
34497
34497
  code: "brokenConnections";
34498
- context: Record<string, never>;
34498
+ context: {
34499
+ connections: {
34500
+ /** Format: uuid */
34501
+ id: string;
34502
+ name: string;
34503
+ appId: string;
34504
+ fetchStatus: string;
34505
+ lastFetch: string | null;
34506
+ }[];
34507
+ };
34499
34508
  } | {
34500
34509
  /** @enum {string} */
34501
34510
  severity: "error" | "warning";
@@ -34505,7 +34514,16 @@ export interface operations {
34505
34514
  affected: number;
34506
34515
  /** @constant */
34507
34516
  code: "outdatedConnections";
34508
- context: Record<string, never>;
34517
+ context: {
34518
+ connections: {
34519
+ /** Format: uuid */
34520
+ id: string;
34521
+ name: string;
34522
+ appId: string;
34523
+ currentVersion: number;
34524
+ latestVersion: number;
34525
+ }[];
34526
+ };
34509
34527
  } | {
34510
34528
  /** @enum {string} */
34511
34529
  severity: "error" | "warning";
@@ -34583,7 +34601,14 @@ export interface operations {
34583
34601
  affected: number;
34584
34602
  /** @constant */
34585
34603
  code: "cancelledReservationPaidWithoutAdjustment";
34586
- context: Record<string, never>;
34604
+ context: {
34605
+ reservations: {
34606
+ /** Format: uuid */
34607
+ reservationId: string;
34608
+ confirmationCode: string | null;
34609
+ centPaid: number;
34610
+ }[];
34611
+ };
34587
34612
  } | {
34588
34613
  /** @enum {string} */
34589
34614
  severity: "error" | "warning";
@@ -34593,7 +34618,19 @@ export interface operations {
34593
34618
  affected: number;
34594
34619
  /** @constant */
34595
34620
  code: "publishedStatementUnpaid";
34596
- context: Record<string, never>;
34621
+ context: {
34622
+ statements: {
34623
+ /** Format: uuid */
34624
+ id: string;
34625
+ uniqueRef: string | null;
34626
+ listingId: string | null;
34627
+ listingOwnershipPeriodId: string | null;
34628
+ startAt: string;
34629
+ endAt: string;
34630
+ centTotal: number;
34631
+ centTransfer: number | null;
34632
+ }[];
34633
+ };
34597
34634
  } | {
34598
34635
  /** @enum {string} */
34599
34636
  severity: "error" | "warning";
@@ -34603,7 +34640,18 @@ export interface operations {
34603
34640
  affected: number;
34604
34641
  /** @constant */
34605
34642
  code: "reservationPaymentProjectionMismatch";
34606
- context: Record<string, never>;
34643
+ context: {
34644
+ reservations: {
34645
+ /** Format: uuid */
34646
+ reservationId: string;
34647
+ centTotal: number | null;
34648
+ storedCentPaid: number | null;
34649
+ correctedCentPaid: number;
34650
+ storedPaidStatus: string | null;
34651
+ /** @enum {string} */
34652
+ correctedPaidStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
34653
+ }[];
34654
+ };
34607
34655
  } | {
34608
34656
  /** @enum {string} */
34609
34657
  severity: "error" | "warning";
@@ -34623,7 +34671,15 @@ export interface operations {
34623
34671
  affected: number;
34624
34672
  /** @constant */
34625
34673
  code: "reservationGuestTotalsMismatch";
34626
- context: Record<string, never>;
34674
+ context: {
34675
+ reservations: {
34676
+ /** Format: uuid */
34677
+ reservationId: string;
34678
+ arCentTotal: number;
34679
+ reservationCentTotal: number;
34680
+ difference: number;
34681
+ }[];
34682
+ };
34627
34683
  })[];
34628
34684
  summary: {
34629
34685
  total: number;
@@ -36454,7 +36510,16 @@ export interface operations {
36454
36510
  affected: number;
36455
36511
  /** @constant */
36456
36512
  code: "brokenConnections";
36457
- context: Record<string, never>;
36513
+ context: {
36514
+ connections: {
36515
+ /** Format: uuid */
36516
+ id: string;
36517
+ name: string;
36518
+ appId: string;
36519
+ fetchStatus: string;
36520
+ lastFetch: string | null;
36521
+ }[];
36522
+ };
36458
36523
  } | {
36459
36524
  /** @enum {string} */
36460
36525
  severity: "error" | "warning";
@@ -36464,7 +36529,16 @@ export interface operations {
36464
36529
  affected: number;
36465
36530
  /** @constant */
36466
36531
  code: "outdatedConnections";
36467
- context: Record<string, never>;
36532
+ context: {
36533
+ connections: {
36534
+ /** Format: uuid */
36535
+ id: string;
36536
+ name: string;
36537
+ appId: string;
36538
+ currentVersion: number;
36539
+ latestVersion: number;
36540
+ }[];
36541
+ };
36468
36542
  } | {
36469
36543
  /** @enum {string} */
36470
36544
  severity: "error" | "warning";
@@ -36542,7 +36616,14 @@ export interface operations {
36542
36616
  affected: number;
36543
36617
  /** @constant */
36544
36618
  code: "cancelledReservationPaidWithoutAdjustment";
36545
- context: Record<string, never>;
36619
+ context: {
36620
+ reservations: {
36621
+ /** Format: uuid */
36622
+ reservationId: string;
36623
+ confirmationCode: string | null;
36624
+ centPaid: number;
36625
+ }[];
36626
+ };
36546
36627
  } | {
36547
36628
  /** @enum {string} */
36548
36629
  severity: "error" | "warning";
@@ -36552,7 +36633,19 @@ export interface operations {
36552
36633
  affected: number;
36553
36634
  /** @constant */
36554
36635
  code: "publishedStatementUnpaid";
36555
- context: Record<string, never>;
36636
+ context: {
36637
+ statements: {
36638
+ /** Format: uuid */
36639
+ id: string;
36640
+ uniqueRef: string | null;
36641
+ listingId: string | null;
36642
+ listingOwnershipPeriodId: string | null;
36643
+ startAt: string;
36644
+ endAt: string;
36645
+ centTotal: number;
36646
+ centTransfer: number | null;
36647
+ }[];
36648
+ };
36556
36649
  } | {
36557
36650
  /** @enum {string} */
36558
36651
  severity: "error" | "warning";
@@ -36562,7 +36655,18 @@ export interface operations {
36562
36655
  affected: number;
36563
36656
  /** @constant */
36564
36657
  code: "reservationPaymentProjectionMismatch";
36565
- context: Record<string, never>;
36658
+ context: {
36659
+ reservations: {
36660
+ /** Format: uuid */
36661
+ reservationId: string;
36662
+ centTotal: number | null;
36663
+ storedCentPaid: number | null;
36664
+ correctedCentPaid: number;
36665
+ storedPaidStatus: string | null;
36666
+ /** @enum {string} */
36667
+ correctedPaidStatus: "unpaid" | "underpaid" | "overpaid" | "paid";
36668
+ }[];
36669
+ };
36566
36670
  } | {
36567
36671
  /** @enum {string} */
36568
36672
  severity: "error" | "warning";
@@ -36582,7 +36686,15 @@ export interface operations {
36582
36686
  affected: number;
36583
36687
  /** @constant */
36584
36688
  code: "reservationGuestTotalsMismatch";
36585
- context: Record<string, never>;
36689
+ context: {
36690
+ reservations: {
36691
+ /** Format: uuid */
36692
+ reservationId: string;
36693
+ arCentTotal: number;
36694
+ reservationCentTotal: number;
36695
+ difference: number;
36696
+ }[];
36697
+ };
36586
36698
  })[];
36587
36699
  summary: {
36588
36700
  total: number;