@peektravel/app-utilities 0.2.7 → 0.2.10

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/dist/index.d.cts CHANGED
@@ -395,6 +395,11 @@ interface Booking {
395
395
  resellerName: string | null;
396
396
  /** The order id this booking belongs to. `""` if absent. */
397
397
  orderId: string;
398
+ /**
399
+ * Deep link into the Peek Pro app for this booking, derived from the order id
400
+ * and booking id. `""` when either id is absent.
401
+ */
402
+ peekProBookingDeepLink: string;
398
403
  /** Custom question answers captured at the booking level. */
399
404
  customQuestionAnswers: CustomQuestionAnswer[];
400
405
  /** Custom question answers captured per guest/ticket. */
@@ -1049,8 +1054,6 @@ interface AssignedResource {
1049
1054
  category: string;
1050
1055
  /** Allocated quantity. */
1051
1056
  quantity: number;
1052
- /** Allocation status (e.g. `"ACTIVE"`). */
1053
- status: string;
1054
1057
  /** Backing account user id, or null. */
1055
1058
  accountUserId: string | null;
1056
1059
  }
package/dist/index.d.ts CHANGED
@@ -395,6 +395,11 @@ interface Booking {
395
395
  resellerName: string | null;
396
396
  /** The order id this booking belongs to. `""` if absent. */
397
397
  orderId: string;
398
+ /**
399
+ * Deep link into the Peek Pro app for this booking, derived from the order id
400
+ * and booking id. `""` when either id is absent.
401
+ */
402
+ peekProBookingDeepLink: string;
398
403
  /** Custom question answers captured at the booking level. */
399
404
  customQuestionAnswers: CustomQuestionAnswer[];
400
405
  /** Custom question answers captured per guest/ticket. */
@@ -1049,8 +1054,6 @@ interface AssignedResource {
1049
1054
  category: string;
1050
1055
  /** Allocated quantity. */
1051
1056
  quantity: number;
1052
- /** Allocation status (e.g. `"ACTIVE"`). */
1053
- status: string;
1054
1057
  /** Backing account user id, or null. */
1055
1058
  accountUserId: string | null;
1056
1059
  }