whitelabel-db 1.0.45 → 1.0.47

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.
@@ -73,6 +73,8 @@ export interface RoomTypeV3 {
73
73
  supplier: string;
74
74
  supplierId: number;
75
75
  mappedRoomId?: string;
76
+ offerRetailRate: AmountV3;
77
+ priceType: string;
76
78
  }
77
79
  export interface FullRateAvailabilityResultV3 {
78
80
  hotelId: string;
@@ -7,4 +7,5 @@ export declare class Agency extends Model<Partial<Agency>> {
7
7
  users?: User[];
8
8
  projects?: Project[];
9
9
  parentAgencyId?: string;
10
+ getManagedAgencyIds(): Promise<string[]>;
10
11
  }
@@ -8,12 +8,33 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
8
  var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
12
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
13
+ return new (P || (P = Promise))(function (resolve, reject) {
14
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
15
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
16
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
17
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
18
+ });
19
+ };
20
+ var Agency_1;
11
21
  Object.defineProperty(exports, "__esModule", { value: true });
12
22
  exports.Agency = void 0;
13
23
  const sequelize_typescript_1 = require("sequelize-typescript");
14
24
  const User_1 = require("./User");
15
25
  const Project_1 = require("./Project");
16
- let Agency = class Agency extends sequelize_typescript_1.Model {
26
+ let Agency = Agency_1 = class Agency extends sequelize_typescript_1.Model {
27
+ getManagedAgencyIds() {
28
+ return __awaiter(this, void 0, void 0, function* () {
29
+ const agencies = yield Agency_1.findAll({
30
+ attributes: ['id'],
31
+ where: {
32
+ parentAgencyId: this.id,
33
+ },
34
+ });
35
+ return agencies.map((agency) => agency.id);
36
+ });
37
+ }
17
38
  };
18
39
  exports.Agency = Agency;
19
40
  __decorate([
@@ -48,7 +69,7 @@ __decorate([
48
69
  }),
49
70
  __metadata("design:type", String)
50
71
  ], Agency.prototype, "parentAgencyId", void 0);
51
- exports.Agency = Agency = __decorate([
72
+ exports.Agency = Agency = Agency_1 = __decorate([
52
73
  (0, sequelize_typescript_1.Table)({
53
74
  tableName: 'agencies',
54
75
  })
@@ -0,0 +1,6 @@
1
+ import { Model } from 'sequelize-typescript';
2
+ export declare class UserRole extends Model<Partial<UserRole>> {
3
+ id: string;
4
+ name: string;
5
+ description?: string;
6
+ }
@@ -9,53 +9,38 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.Search = void 0;
12
+ exports.UserRole = void 0;
13
+ const sequelize_1 = require("sequelize");
13
14
  const sequelize_typescript_1 = require("sequelize-typescript");
14
- let Search = class Search extends sequelize_typescript_1.Model {
15
+ let UserRole = class UserRole extends sequelize_typescript_1.Model {
15
16
  };
16
- exports.Search = Search;
17
+ exports.UserRole = UserRole;
17
18
  __decorate([
18
19
  sequelize_typescript_1.PrimaryKey,
19
- sequelize_typescript_1.Index,
20
20
  (0, sequelize_typescript_1.Column)({
21
- type: sequelize_typescript_1.DataType.STRING(32),
22
- }),
23
- __metadata("design:type", String)
24
- ], Search.prototype, "id", void 0);
25
- __decorate([
26
- (0, sequelize_typescript_1.Column)({
27
- type: sequelize_typescript_1.DataType.INTEGER,
21
+ type: sequelize_1.NUMBER,
28
22
  allowNull: false,
29
- defaultValue: 0,
23
+ autoIncrement: true,
30
24
  }),
31
- __metadata("design:type", Number)
32
- ], Search.prototype, "hits", void 0);
33
- __decorate([
34
- sequelize_typescript_1.Unique,
35
- sequelize_typescript_1.Index,
36
- (0, sequelize_typescript_1.Column)({
37
- type: sequelize_typescript_1.DataType.DATE,
38
- }),
39
- __metadata("design:type", Date)
40
- ], Search.prototype, "cacheUpdatedAt", void 0);
25
+ __metadata("design:type", String)
26
+ ], UserRole.prototype, "id", void 0);
41
27
  __decorate([
42
28
  sequelize_typescript_1.Unique,
43
- sequelize_typescript_1.Index,
44
29
  (0, sequelize_typescript_1.Column)({
45
- type: sequelize_typescript_1.DataType.DATE,
30
+ type: sequelize_typescript_1.DataType.STRING,
31
+ allowNull: false,
46
32
  }),
47
- __metadata("design:type", Date)
48
- ], Search.prototype, "cacheQueuedAt", void 0);
33
+ __metadata("design:type", String)
34
+ ], UserRole.prototype, "name", void 0);
49
35
  __decorate([
50
36
  (0, sequelize_typescript_1.Column)({
51
- type: sequelize_typescript_1.DataType.JSONB,
52
- allowNull: false,
53
- defaultValue: {},
37
+ type: sequelize_typescript_1.DataType.STRING,
38
+ allowNull: true,
54
39
  }),
55
- __metadata("design:type", Object)
56
- ], Search.prototype, "data", void 0);
57
- exports.Search = Search = __decorate([
40
+ __metadata("design:type", String)
41
+ ], UserRole.prototype, "description", void 0);
42
+ exports.UserRole = UserRole = __decorate([
58
43
  (0, sequelize_typescript_1.Table)({
59
- tableName: 'searches',
44
+ tableName: 'user_roles',
60
45
  })
61
- ], Search);
46
+ ], UserRole);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whitelabel-db",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,8 +0,0 @@
1
- import { Model } from 'sequelize-typescript';
2
- export declare class Search extends Model<Partial<Search>> {
3
- id: string;
4
- hits: number;
5
- cacheUpdatedAt?: Date;
6
- cacheQueuedAt?: Date;
7
- data?: object;
8
- }