whitelabel-db 1.1.1 → 1.1.3

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.
@@ -184,6 +184,7 @@ export interface BookingInfoV3 {
184
184
  type: string;
185
185
  };
186
186
  holder: UserV3;
187
+ guestId: number;
187
188
  }
188
189
  export interface BookingConfirmationV3 {
189
190
  prebookId: string;
@@ -7,7 +7,7 @@ export declare class Guest extends Model<Partial<Guest>> {
7
7
  email: string;
8
8
  password: string;
9
9
  projectId?: string;
10
- liteApiGuestId: string;
10
+ liteApiGuestId: number;
11
11
  socialId: string;
12
12
  socialProvider: string;
13
13
  project?: Project;
@@ -91,10 +91,10 @@ __decorate([
91
91
  ], Guest.prototype, "projectId", void 0);
92
92
  __decorate([
93
93
  (0, sequelize_typescript_1.Column)({
94
- type: sequelize_typescript_1.DataType.STRING,
94
+ type: sequelize_typescript_1.DataType.INTEGER,
95
95
  allowNull: true,
96
96
  }),
97
- __metadata("design:type", String)
97
+ __metadata("design:type", Number)
98
98
  ], Guest.prototype, "liteApiGuestId", void 0);
99
99
  __decorate([
100
100
  (0, sequelize_typescript_1.Column)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whitelabel-db",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",