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