@vibe-flats/booking-engine-common-server 1.0.132 → 1.0.134

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.
@@ -70,6 +70,10 @@ export declare const COMMON_SERVER: {
70
70
  id: string;
71
71
  label: string;
72
72
  };
73
+ declined: {
74
+ id: string;
75
+ label: string;
76
+ };
73
77
  };
74
78
  };
75
79
  quotes: {
@@ -70,8 +70,12 @@ exports.COMMON_SERVER = {
70
70
  label: 'Inquiry Archive'
71
71
  },
72
72
  cancelled: {
73
- id: '190068915',
73
+ id: '255411630',
74
74
  label: 'Cancelled'
75
+ },
76
+ declined: {
77
+ id: '190068915',
78
+ label: 'Declined / Expired'
75
79
  }
76
80
  }
77
81
  },
@@ -106,6 +106,7 @@ export interface UnitDocument extends mongoose.Document {
106
106
  }[];
107
107
  }[];
108
108
  salesBlockWarning: string;
109
+ hasOpenExtensionLink: boolean;
109
110
  }
110
111
  export declare const UnitModel: (connection: mongoose.Connection) => mongoose.Model<UnitDocument, {}, {}, {}, mongoose.Document<unknown, {}, UnitDocument> & UnitDocument & Required<{
111
112
  _id: unknown;
@@ -155,7 +155,8 @@ const schema = new mongoose_1.default.Schema({
155
155
  required: false,
156
156
  _id: false
157
157
  },
158
- salesBlockWarning: { type: String, required: false }
158
+ salesBlockWarning: { type: String, required: false },
159
+ hasOpenExtensionLink: { type: Boolean, required: false }
159
160
  }, {
160
161
  timestamps: true,
161
162
  versionKey: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-flats/booking-engine-common-server",
3
- "version": "1.0.132",
3
+ "version": "1.0.134",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",