@vrplatform/api 1.2.40-stage.1063 → 1.2.40-stage.1064

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.2.40-stage.1063",
6
+ "version": "1.2.40-stage.1064",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -4132,8 +4132,8 @@ export interface operations {
4132
4132
  appId: string;
4133
4133
  } | null;
4134
4134
  nights?: number | null;
4135
- /** @enum {string|null} */
4136
- status?: "booked" | "canceled" | "inactive" | null;
4135
+ /** @enum {string} */
4136
+ status: "booked" | "canceled" | "inactive";
4137
4137
  financials: {
4138
4138
  totals: {
4139
4139
  tax: number;
@@ -4152,6 +4152,8 @@ export interface operations {
4152
4152
  /** @enum {string} */
4153
4153
  status: "active" | "inactive";
4154
4154
  amount: number;
4155
+ /** @enum {string|null} */
4156
+ inactiveReason?: "reservationCancelled" | "referenceAccount" | "deferredRevenue" | "system" | null;
4155
4157
  account?: {
4156
4158
  id: string;
4157
4159
  name: string;
@@ -4506,8 +4508,8 @@ export interface operations {
4506
4508
  appId: string;
4507
4509
  } | null;
4508
4510
  nights?: number | null;
4509
- /** @enum {string|null} */
4510
- status?: "booked" | "canceled" | "inactive" | null;
4511
+ /** @enum {string} */
4512
+ status: "booked" | "canceled" | "inactive";
4511
4513
  financials: {
4512
4514
  totals: {
4513
4515
  tax: number;
@@ -4526,6 +4528,8 @@ export interface operations {
4526
4528
  /** @enum {string} */
4527
4529
  status: "active" | "inactive";
4528
4530
  amount: number;
4531
+ /** @enum {string|null} */
4532
+ inactiveReason?: "reservationCancelled" | "referenceAccount" | "deferredRevenue" | "system" | null;
4529
4533
  account?: {
4530
4534
  id: string;
4531
4535
  name: string;
@@ -4960,8 +4964,8 @@ export interface operations {
4960
4964
  appId: string;
4961
4965
  } | null;
4962
4966
  nights?: number | null;
4963
- /** @enum {string|null} */
4964
- status?: "booked" | "canceled" | "inactive" | null;
4967
+ /** @enum {string} */
4968
+ status: "booked" | "canceled" | "inactive";
4965
4969
  financials: {
4966
4970
  totals: {
4967
4971
  tax: number;
@@ -4980,6 +4984,8 @@ export interface operations {
4980
4984
  /** @enum {string} */
4981
4985
  status: "active" | "inactive";
4982
4986
  amount: number;
4987
+ /** @enum {string|null} */
4988
+ inactiveReason?: "reservationCancelled" | "referenceAccount" | "deferredRevenue" | "system" | null;
4983
4989
  account?: {
4984
4990
  id: string;
4985
4991
  name: string;
@@ -5352,8 +5358,8 @@ export interface operations {
5352
5358
  appId: string;
5353
5359
  } | null;
5354
5360
  nights?: number | null;
5355
- /** @enum {string|null} */
5356
- status?: "booked" | "canceled" | "inactive" | null;
5361
+ /** @enum {string} */
5362
+ status: "booked" | "canceled" | "inactive";
5357
5363
  listing?: {
5358
5364
  /** Format: uuid */
5359
5365
  id: string;
@@ -5629,8 +5635,8 @@ export interface operations {
5629
5635
  appId: string;
5630
5636
  } | null;
5631
5637
  nights?: number | null;
5632
- /** @enum {string|null} */
5633
- status?: "booked" | "canceled" | "inactive" | null;
5638
+ /** @enum {string} */
5639
+ status: "booked" | "canceled" | "inactive";
5634
5640
  financials: {
5635
5641
  totals: {
5636
5642
  tax: number;
@@ -5649,6 +5655,8 @@ export interface operations {
5649
5655
  /** @enum {string} */
5650
5656
  status: "active" | "inactive";
5651
5657
  amount: number;
5658
+ /** @enum {string|null} */
5659
+ inactiveReason?: "reservationCancelled" | "referenceAccount" | "deferredRevenue" | "system" | null;
5652
5660
  account?: {
5653
5661
  id: string;
5654
5662
  name: string;
@@ -9004,6 +9012,8 @@ export interface operations {
9004
9012
  /** @enum {string} */
9005
9013
  status: "active" | "inactive";
9006
9014
  amount: number;
9015
+ /** @enum {string|null} */
9016
+ inactiveReason?: "reservationCancelled" | "referenceAccount" | "deferredRevenue" | "system" | null;
9007
9017
  fee: number;
9008
9018
  account?: {
9009
9019
  id: string;