@vibe-flats/booking-engine-common-external 1.0.91 → 1.0.93

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.
@@ -18,11 +18,14 @@ export interface VibeHubspotSalesInquiryContact {
18
18
  firstname: string | null;
19
19
  lastname: string | null;
20
20
  stage: string | null;
21
+ reservationKycDeclined: boolean;
21
22
  kyc: {
22
23
  date: string | null;
23
24
  status: string | null;
24
25
  user: string | null;
25
26
  description: string | null;
27
+ currentlyReside: string | null;
28
+ purposeOfStay: string | null;
26
29
  };
27
30
  }
28
31
  export interface VibeHubspotSalesInquiryReservation {
@@ -38,6 +41,12 @@ export interface VibeHubspotSalesInquiryReservation {
38
41
  isPreApproved: boolean;
39
42
  guests: number;
40
43
  pets: number;
44
+ kyc?: {
45
+ decision: string | null;
46
+ user: string | null;
47
+ notes: string | null;
48
+ date: string | null;
49
+ };
41
50
  unit?: {
42
51
  title: string | null;
43
52
  };
@@ -118,6 +127,7 @@ export interface VibeHubspotSalesInquiryOption {
118
127
  gym: boolean;
119
128
  parking: string;
120
129
  pool: boolean;
130
+ lengthOfStayType: 'monthly' | 'hybrid' | 'nightly';
121
131
  beds: {
122
132
  type: string;
123
133
  qty: number;
@@ -79,6 +79,7 @@ export interface HubspotQuotesSearchResponse {
79
79
  qty: number;
80
80
  }[];
81
81
  deal: number;
82
+ lengthOfStayType: 'monthly' | 'hybrid' | 'nightly';
82
83
  salesBlockWarning?: string;
83
84
  availableFrom: string;
84
85
  urls: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-flats/booking-engine-common-external",
3
- "version": "1.0.91",
3
+ "version": "1.0.93",
4
4
  "description": "Common external utilities and types for the Vibe Flats booking engine",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",