@escapenavigator/types 1.10.33 → 1.10.34

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.
@@ -2,5 +2,6 @@ export declare enum FinanceitemGroupEnum {
2
2
  ORDER = "order",
3
3
  CERTIFICATE = "certificate",
4
4
  SALARY = "salary",
5
+ MOVE = "move",
5
6
  DEFAULT = "default"
6
7
  }
@@ -6,5 +6,6 @@ var FinanceitemGroupEnum;
6
6
  FinanceitemGroupEnum["ORDER"] = "order";
7
7
  FinanceitemGroupEnum["CERTIFICATE"] = "certificate";
8
8
  FinanceitemGroupEnum["SALARY"] = "salary";
9
+ FinanceitemGroupEnum["MOVE"] = "move";
9
10
  FinanceitemGroupEnum["DEFAULT"] = "default";
10
11
  })(FinanceitemGroupEnum = exports.FinanceitemGroupEnum || (exports.FinanceitemGroupEnum = {}));
@@ -11,8 +11,12 @@ declare class OrderParticipant {
11
11
  orderWaiverId: number;
12
12
  client: Participant;
13
13
  }
14
+ declare class Profile {
15
+ title: string;
16
+ }
14
17
  export declare class OpenapiOrderForOrderServiceRO extends OpenapiOrderRO {
15
18
  participants: OrderParticipant[];
16
19
  needWaiver: boolean;
20
+ profile: Profile;
17
21
  }
18
22
  export {};
@@ -48,6 +48,12 @@ __decorate([
48
48
  (0, class_transformer_1.Type)(() => Participant),
49
49
  __metadata("design:type", Participant)
50
50
  ], OrderParticipant.prototype, "client", void 0);
51
+ class Profile {
52
+ }
53
+ __decorate([
54
+ (0, class_transformer_1.Expose)(),
55
+ __metadata("design:type", String)
56
+ ], Profile.prototype, "title", void 0);
51
57
  class OpenapiOrderForOrderServiceRO extends openapi_order_ro_1.OpenapiOrderRO {
52
58
  }
53
59
  __decorate([
@@ -59,4 +65,9 @@ __decorate([
59
65
  (0, class_transformer_1.Expose)(),
60
66
  __metadata("design:type", Boolean)
61
67
  ], OpenapiOrderForOrderServiceRO.prototype, "needWaiver", void 0);
68
+ __decorate([
69
+ (0, class_transformer_1.Expose)(),
70
+ (0, class_transformer_1.Type)(() => Profile),
71
+ __metadata("design:type", Profile)
72
+ ], OpenapiOrderForOrderServiceRO.prototype, "profile", void 0);
62
73
  exports.OpenapiOrderForOrderServiceRO = OpenapiOrderForOrderServiceRO;
@@ -13,6 +13,10 @@ declare class MetaRO {
13
13
  mk: string;
14
14
  morty: string;
15
15
  nowEscape: string;
16
+ reviews: string;
17
+ }
18
+ declare class AiRO {
19
+ aiSummary: string;
16
20
  }
17
21
  export declare class AdminQuestroomsListRO {
18
22
  id: number;
@@ -26,5 +30,6 @@ export declare class AdminQuestroomsListRO {
26
30
  profile: ProfileRO;
27
31
  location: LocationRO;
28
32
  meta: MetaRO;
33
+ ai: AiRO;
29
34
  }
30
35
  export {};
@@ -54,6 +54,17 @@ __decorate([
54
54
  (0, class_transformer_1.Expose)(),
55
55
  __metadata("design:type", String)
56
56
  ], MetaRO.prototype, "nowEscape", void 0);
57
+ __decorate([
58
+ (0, class_transformer_1.Transform)(({ value }) => (value === null || value === void 0 ? void 0 : value.length) || 0),
59
+ (0, class_transformer_1.Expose)(),
60
+ __metadata("design:type", String)
61
+ ], MetaRO.prototype, "reviews", void 0);
62
+ class AiRO {
63
+ }
64
+ __decorate([
65
+ (0, class_transformer_1.Expose)(),
66
+ __metadata("design:type", String)
67
+ ], AiRO.prototype, "aiSummary", void 0);
57
68
  class AdminQuestroomsListRO {
58
69
  }
59
70
  __decorate([
@@ -103,4 +114,9 @@ __decorate([
103
114
  (0, class_transformer_1.Expose)(),
104
115
  __metadata("design:type", MetaRO)
105
116
  ], AdminQuestroomsListRO.prototype, "meta", void 0);
117
+ __decorate([
118
+ (0, class_transformer_1.Type)(() => AiRO),
119
+ (0, class_transformer_1.Expose)(),
120
+ __metadata("design:type", AiRO)
121
+ ], AdminQuestroomsListRO.prototype, "ai", void 0);
106
122
  exports.AdminQuestroomsListRO = AdminQuestroomsListRO;