@escapenavigator/types 1.10.26 → 1.10.28
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.
package/dist/player/player.ro.js
CHANGED
|
@@ -49,6 +49,14 @@ __decorate([
|
|
|
49
49
|
(0, class_transformer_1.Expose)(),
|
|
50
50
|
__metadata("design:type", Array)
|
|
51
51
|
], PlayerRO.prototype, "favorites", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, class_transformer_1.Expose)(),
|
|
54
|
+
__metadata("design:type", Array)
|
|
55
|
+
], PlayerRO.prototype, "likes", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, class_transformer_1.Expose)(),
|
|
58
|
+
__metadata("design:type", Array)
|
|
59
|
+
], PlayerRO.prototype, "dislikes", void 0);
|
|
52
60
|
__decorate([
|
|
53
61
|
(0, class_transformer_1.Expose)(),
|
|
54
62
|
(0, class_transformer_1.Type)(() => emotion_ro_1.EmotionRO),
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { RO } from '../shared/ro-class';
|
|
2
|
+
import { PlayerCardRO } from '../player/player-card.ro';
|
|
2
3
|
declare class Questroom {
|
|
3
4
|
id: number;
|
|
4
5
|
photo: string;
|
|
@@ -9,6 +10,7 @@ export declare class AggregatorSocialReviewRO extends RO {
|
|
|
9
10
|
language?: string;
|
|
10
11
|
original: boolean;
|
|
11
12
|
response: string;
|
|
13
|
+
player: PlayerCardRO;
|
|
12
14
|
nickname: string;
|
|
13
15
|
accepted: boolean;
|
|
14
16
|
questroom: Questroom;
|
|
@@ -13,6 +13,7 @@ exports.AggregatorSocialReviewRO = void 0;
|
|
|
13
13
|
/* eslint-disable max-classes-per-file */
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
const ro_class_1 = require("../shared/ro-class");
|
|
16
|
+
const player_card_ro_1 = require("../player/player-card.ro");
|
|
16
17
|
class Questroom {
|
|
17
18
|
}
|
|
18
19
|
__decorate([
|
|
@@ -45,6 +46,11 @@ __decorate([
|
|
|
45
46
|
(0, class_transformer_1.Expose)(),
|
|
46
47
|
__metadata("design:type", String)
|
|
47
48
|
], AggregatorSocialReviewRO.prototype, "response", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_transformer_1.Expose)(),
|
|
51
|
+
(0, class_transformer_1.Type)(() => player_card_ro_1.PlayerCardRO),
|
|
52
|
+
__metadata("design:type", player_card_ro_1.PlayerCardRO)
|
|
53
|
+
], AggregatorSocialReviewRO.prototype, "player", void 0);
|
|
48
54
|
__decorate([
|
|
49
55
|
(0, class_transformer_1.Expose)(),
|
|
50
56
|
__metadata("design:type", String)
|