jp.db.schemas 2.2.11 → 2.2.12
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/index.d.ts +8 -8
- package/dist/index.js +9 -9
- package/dist/repositories/index.d.ts +3 -3
- package/dist/repositories/index.js +5 -5
- package/dist/repositories/many-tables-tournament-rooms.repository.d.ts +21 -0
- package/dist/repositories/many-tables-tournament-rooms.repository.d.ts.map +1 -0
- package/dist/repositories/{tournament-many-tables-rooms.repository.js → many-tables-tournament-rooms.repository.js} +8 -8
- package/dist/repositories/many-tables-tournament-rooms.repository.js.map +1 -0
- package/dist/repositories/one-table-tournament-rooms.repository.d.ts +18 -0
- package/dist/repositories/{tournament-one-table-rooms.repository.d.ts.map → one-table-tournament-rooms.repository.d.ts.map} +1 -1
- package/dist/repositories/{tournament-one-table-rooms.repository.js → one-table-tournament-rooms.repository.js} +8 -8
- package/dist/repositories/{tournament-one-table-rooms.repository.js.map → one-table-tournament-rooms.repository.js.map} +1 -1
- package/dist/schemas/{tournament_many_tables_rooms.schema.d.ts → many_tables_tournament_rooms.schema.d.ts} +52 -52
- package/dist/schemas/{tournament_many_tables_rooms.schema.d.ts.map → many_tables_tournament_rooms.schema.d.ts.map} +1 -1
- package/dist/schemas/{tournament_many_tables_rooms.schema.js → many_tables_tournament_rooms.schema.js} +29 -29
- package/dist/schemas/{tournament_many_tables_rooms.schema.js.map → many_tables_tournament_rooms.schema.js.map} +1 -1
- package/dist/schemas/{tournament_one_table_rooms.schema.d.ts → one_table_tournament_rooms.schema.d.ts} +50 -50
- package/dist/schemas/{tournament_one_table_rooms.schema.d.ts.map → one_table_tournament_rooms.schema.d.ts.map} +1 -1
- package/dist/schemas/{tournament_one_table_rooms.schema.js → one_table_tournament_rooms.schema.js} +28 -28
- package/dist/schemas/{tournament_one_table_rooms.schema.js.map → one_table_tournament_rooms.schema.js.map} +1 -1
- package/dist/schemas/premium.schema.js.map +1 -1
- package/dist/schemas/product.schema.js.map +1 -1
- package/dist/schemas/rule.schema.js.map +1 -1
- package/dist/schemas/setting.schema.js.map +1 -1
- package/dist/schemas/settings_option.schema.js.map +1 -1
- package/dist/schemas/welcome.schema.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +18 -18
- package/src/repositories/index.ts +4 -4
- package/src/repositories/{tournament-many-tables-rooms.repository.ts → many-tables-tournament-rooms.repository.ts} +13 -17
- package/src/repositories/{tournament-one-table-rooms.repository.ts → one-table-tournament-rooms.repository.ts} +11 -11
- package/src/schemas/{tournament_many_tables_rooms.schema.ts → many_tables_tournament_rooms.schema.ts} +5 -5
- package/src/schemas/{tournament_one_table_rooms.schema.ts → one_table_tournament_rooms.schema.ts} +5 -5
- package/src/schemas/premium.schema.ts +1 -1
- package/src/schemas/product.schema.ts +6 -6
- package/src/schemas/rule.schema.ts +2 -2
- package/src/schemas/setting.schema.ts +2 -2
- package/src/schemas/settings_option.schema.ts +1 -1
- package/src/schemas/welcome.schema.ts +2 -2
- package/dist/repositories/tournament-many-tables-rooms.repository.d.ts +0 -21
- package/dist/repositories/tournament-many-tables-rooms.repository.d.ts.map +0 -1
- package/dist/repositories/tournament-many-tables-rooms.repository.js.map +0 -1
- package/dist/repositories/tournament-one-table-rooms.repository.d.ts +0 -18
|
@@ -9,11 +9,11 @@ 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.
|
|
12
|
+
exports.ManyTablesTournamentRoomSchema = exports.ManyTablesTournamentRoom = void 0;
|
|
13
13
|
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
-
let
|
|
14
|
+
let ManyTablesTournamentRoom = class ManyTablesTournamentRoom {
|
|
15
15
|
};
|
|
16
|
-
exports.
|
|
16
|
+
exports.ManyTablesTournamentRoom = ManyTablesTournamentRoom;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, mongoose_1.Virtual)({
|
|
19
19
|
get: function () {
|
|
@@ -21,93 +21,93 @@ __decorate([
|
|
|
21
21
|
},
|
|
22
22
|
}),
|
|
23
23
|
__metadata("design:type", String)
|
|
24
|
-
],
|
|
24
|
+
], ManyTablesTournamentRoom.prototype, "tournamentId", void 0);
|
|
25
25
|
__decorate([
|
|
26
26
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
27
27
|
__metadata("design:type", Object)
|
|
28
|
-
],
|
|
28
|
+
], ManyTablesTournamentRoom.prototype, "title", void 0);
|
|
29
29
|
__decorate([
|
|
30
30
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
31
31
|
__metadata("design:type", Object)
|
|
32
|
-
],
|
|
32
|
+
], ManyTablesTournamentRoom.prototype, "subtitle", void 0);
|
|
33
33
|
__decorate([
|
|
34
34
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
35
35
|
__metadata("design:type", Object)
|
|
36
|
-
],
|
|
36
|
+
], ManyTablesTournamentRoom.prototype, "description", void 0);
|
|
37
37
|
__decorate([
|
|
38
38
|
(0, mongoose_1.Prop)(),
|
|
39
39
|
__metadata("design:type", Number)
|
|
40
|
-
],
|
|
40
|
+
], ManyTablesTournamentRoom.prototype, "tableSize", void 0);
|
|
41
41
|
__decorate([
|
|
42
42
|
(0, mongoose_1.Prop)(),
|
|
43
43
|
__metadata("design:type", Number)
|
|
44
|
-
],
|
|
44
|
+
], ManyTablesTournamentRoom.prototype, "bet", void 0);
|
|
45
45
|
__decorate([
|
|
46
46
|
(0, mongoose_1.Prop)(),
|
|
47
47
|
__metadata("design:type", Number)
|
|
48
|
-
],
|
|
48
|
+
], ManyTablesTournamentRoom.prototype, "ticketPrice", void 0);
|
|
49
49
|
__decorate([
|
|
50
50
|
(0, mongoose_1.Prop)(),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
|
-
],
|
|
52
|
+
], ManyTablesTournamentRoom.prototype, "roomType", void 0);
|
|
53
53
|
__decorate([
|
|
54
54
|
(0, mongoose_1.Prop)(),
|
|
55
55
|
__metadata("design:type", String)
|
|
56
|
-
],
|
|
56
|
+
], ManyTablesTournamentRoom.prototype, "gameType", void 0);
|
|
57
57
|
__decorate([
|
|
58
58
|
(0, mongoose_1.Prop)(),
|
|
59
59
|
__metadata("design:type", String)
|
|
60
|
-
],
|
|
60
|
+
], ManyTablesTournamentRoom.prototype, "rulesType", void 0);
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, mongoose_1.Prop)(),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
|
-
],
|
|
64
|
+
], ManyTablesTournamentRoom.prototype, "deckType", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, mongoose_1.Prop)(),
|
|
67
67
|
__metadata("design:type", Boolean)
|
|
68
|
-
],
|
|
68
|
+
], ManyTablesTournamentRoom.prototype, "isTemplate", void 0);
|
|
69
69
|
__decorate([
|
|
70
70
|
(0, mongoose_1.Prop)(),
|
|
71
71
|
__metadata("design:type", String)
|
|
72
|
-
],
|
|
72
|
+
], ManyTablesTournamentRoom.prototype, "templateId", void 0);
|
|
73
73
|
__decorate([
|
|
74
74
|
(0, mongoose_1.Prop)(),
|
|
75
75
|
__metadata("design:type", String)
|
|
76
|
-
],
|
|
76
|
+
], ManyTablesTournamentRoom.prototype, "type", void 0);
|
|
77
77
|
__decorate([
|
|
78
78
|
(0, mongoose_1.Prop)(),
|
|
79
79
|
__metadata("design:type", Array)
|
|
80
|
-
],
|
|
80
|
+
], ManyTablesTournamentRoom.prototype, "participants", void 0);
|
|
81
81
|
__decorate([
|
|
82
82
|
(0, mongoose_1.Prop)(),
|
|
83
83
|
__metadata("design:type", Number)
|
|
84
|
-
],
|
|
84
|
+
], ManyTablesTournamentRoom.prototype, "maxParticipants", void 0);
|
|
85
85
|
__decorate([
|
|
86
86
|
(0, mongoose_1.Prop)(),
|
|
87
87
|
__metadata("design:type", String)
|
|
88
|
-
],
|
|
88
|
+
], ManyTablesTournamentRoom.prototype, "status", void 0);
|
|
89
89
|
__decorate([
|
|
90
90
|
(0, mongoose_1.Prop)(),
|
|
91
91
|
__metadata("design:type", Array)
|
|
92
|
-
],
|
|
92
|
+
], ManyTablesTournamentRoom.prototype, "winners", void 0);
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, mongoose_1.Prop)(),
|
|
95
95
|
__metadata("design:type", Date)
|
|
96
|
-
],
|
|
96
|
+
], ManyTablesTournamentRoom.prototype, "createDate", void 0);
|
|
97
97
|
__decorate([
|
|
98
98
|
(0, mongoose_1.Prop)(),
|
|
99
99
|
__metadata("design:type", Date)
|
|
100
|
-
],
|
|
100
|
+
], ManyTablesTournamentRoom.prototype, "startDate", void 0);
|
|
101
101
|
__decorate([
|
|
102
102
|
(0, mongoose_1.Prop)(),
|
|
103
103
|
__metadata("design:type", Date)
|
|
104
|
-
],
|
|
104
|
+
], ManyTablesTournamentRoom.prototype, "finishDate", void 0);
|
|
105
105
|
__decorate([
|
|
106
106
|
(0, mongoose_1.Prop)(),
|
|
107
107
|
__metadata("design:type", Date)
|
|
108
|
-
],
|
|
109
|
-
exports.
|
|
108
|
+
], ManyTablesTournamentRoom.prototype, "scheduleDate", void 0);
|
|
109
|
+
exports.ManyTablesTournamentRoom = ManyTablesTournamentRoom = __decorate([
|
|
110
110
|
(0, mongoose_1.Schema)({ collection: 'tournament_many_tables_rooms' })
|
|
111
|
-
],
|
|
112
|
-
exports.
|
|
113
|
-
//# sourceMappingURL=
|
|
111
|
+
], ManyTablesTournamentRoom);
|
|
112
|
+
exports.ManyTablesTournamentRoomSchema = mongoose_1.SchemaFactory.createForClass(ManyTablesTournamentRoom);
|
|
113
|
+
//# sourceMappingURL=many_tables_tournament_rooms.schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"many_tables_tournament_rooms.schema.js","sourceRoot":"","sources":["../../src/schemas/many_tables_tournament_rooms.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAUjE,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAwEpC,CAAA;AAxEY,4DAAwB;AAM1B;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;8DAC4B;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;uDACO;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;0DACU;AAGjC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6DACa;AAGpC;IADC,IAAA,eAAI,GAAE;;2DACW;AAGlB;IADC,IAAA,eAAI,GAAE;;qDACK;AAGZ;IADC,IAAA,eAAI,GAAE;;6DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;0DACU;AAGjB;IADC,IAAA,eAAI,GAAE;;0DACU;AAGjB;IADC,IAAA,eAAI,GAAE;;2DACW;AAGlB;IADC,IAAA,eAAI,GAAE;;0DACW;AAKlB;IADC,IAAA,eAAI,GAAE;;4DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;4DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;sDACM;AAGb;IADC,IAAA,eAAI,GAAE;8BACO,KAAK;8DAAyB;AAG5C;IADC,IAAA,eAAI,GAAE;;iEACiB;AAGxB;IADC,IAAA,eAAI,GAAE;;wDACQ;AAGf;IADC,IAAA,eAAI,GAAE;8BACE,KAAK;yDAAoB;AAGlC;IADC,IAAA,eAAI,GAAE;8BACK,IAAI;4DAAC;AAGjB;IADC,IAAA,eAAI,GAAE;8BACI,IAAI;2DAAC;AAGhB;IADC,IAAA,eAAI,GAAE;8BACK,IAAI;4DAAC;AAGjB;IADC,IAAA,eAAI,GAAE;8BACO,IAAI;8DAAC;mCAvER,wBAAwB;IADpC,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,8BAA8B,EAAE,CAAC;GAC1C,wBAAwB,CAwEpC;AAEY,QAAA,8BAA8B,GAAG,wBAAa,CAAC,cAAc,CACxE,wBAAwB,CACzB,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Document, HydratedDocument } from 'mongoose';
|
|
2
2
|
import { ITournamentWinner } from '../models/tournament-winner.interface';
|
|
3
3
|
import { ITournamentParticipant } from '../models/tournament-participant.interface';
|
|
4
|
-
export type
|
|
5
|
-
export declare class
|
|
4
|
+
export type OneTableTournamentRoomDocument = HydratedDocument<OneTableTournamentRoom>;
|
|
5
|
+
export declare class OneTableTournamentRoom {
|
|
6
6
|
readonly tournamentId: string;
|
|
7
7
|
title: Record<string, string>;
|
|
8
8
|
subtitle: Record<string, string>;
|
|
@@ -25,213 +25,213 @@ export declare class TournamentOneTableRoom {
|
|
|
25
25
|
startDate: Date;
|
|
26
26
|
finishDate: Date;
|
|
27
27
|
}
|
|
28
|
-
export declare const
|
|
28
|
+
export declare const OneTableTournamentRoomSchema: import("mongoose").Schema<OneTableTournamentRoom, import("mongoose").Model<OneTableTournamentRoom, any, any, any, (Document<unknown, any, OneTableTournamentRoom, any, import("mongoose").DefaultSchemaOptions> & OneTableTournamentRoom & {
|
|
29
29
|
_id: import("mongoose").Types.ObjectId;
|
|
30
30
|
} & {
|
|
31
31
|
__v: number;
|
|
32
32
|
} & {
|
|
33
33
|
id: string;
|
|
34
|
-
}) | (Document<unknown, any,
|
|
34
|
+
}) | (Document<unknown, any, OneTableTournamentRoom, any, import("mongoose").DefaultSchemaOptions> & OneTableTournamentRoom & {
|
|
35
35
|
_id: import("mongoose").Types.ObjectId;
|
|
36
36
|
} & {
|
|
37
37
|
__v: number;
|
|
38
|
-
}), any,
|
|
38
|
+
}), any, OneTableTournamentRoom>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
39
39
|
id: string;
|
|
40
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
40
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
41
41
|
_id: import("mongoose").Types.ObjectId;
|
|
42
42
|
} & {
|
|
43
43
|
__v: number;
|
|
44
44
|
}, "id"> & {
|
|
45
45
|
id: string;
|
|
46
46
|
}, {
|
|
47
|
-
readonly tournamentId?: import("mongoose").SchemaDefinitionProperty<string,
|
|
47
|
+
readonly tournamentId?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
48
48
|
id: string;
|
|
49
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
49
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
50
50
|
_id: import("mongoose").Types.ObjectId;
|
|
51
51
|
} & {
|
|
52
52
|
__v: number;
|
|
53
53
|
}, "id"> & {
|
|
54
54
|
id: string;
|
|
55
55
|
}>;
|
|
56
|
-
title?: import("mongoose").SchemaDefinitionProperty<Record<string, string>,
|
|
56
|
+
title?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
57
57
|
id: string;
|
|
58
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
58
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
59
59
|
_id: import("mongoose").Types.ObjectId;
|
|
60
60
|
} & {
|
|
61
61
|
__v: number;
|
|
62
62
|
}, "id"> & {
|
|
63
63
|
id: string;
|
|
64
64
|
}>;
|
|
65
|
-
subtitle?: import("mongoose").SchemaDefinitionProperty<Record<string, string>,
|
|
65
|
+
subtitle?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
66
66
|
id: string;
|
|
67
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
67
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
68
68
|
_id: import("mongoose").Types.ObjectId;
|
|
69
69
|
} & {
|
|
70
70
|
__v: number;
|
|
71
71
|
}, "id"> & {
|
|
72
72
|
id: string;
|
|
73
73
|
}>;
|
|
74
|
-
description?: import("mongoose").SchemaDefinitionProperty<Record<string, string>,
|
|
74
|
+
description?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
75
75
|
id: string;
|
|
76
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
76
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
77
77
|
_id: import("mongoose").Types.ObjectId;
|
|
78
78
|
} & {
|
|
79
79
|
__v: number;
|
|
80
80
|
}, "id"> & {
|
|
81
81
|
id: string;
|
|
82
82
|
}>;
|
|
83
|
-
tableSize?: import("mongoose").SchemaDefinitionProperty<number,
|
|
83
|
+
tableSize?: import("mongoose").SchemaDefinitionProperty<number, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
84
84
|
id: string;
|
|
85
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
85
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
86
86
|
_id: import("mongoose").Types.ObjectId;
|
|
87
87
|
} & {
|
|
88
88
|
__v: number;
|
|
89
89
|
}, "id"> & {
|
|
90
90
|
id: string;
|
|
91
91
|
}>;
|
|
92
|
-
bet?: import("mongoose").SchemaDefinitionProperty<number,
|
|
92
|
+
bet?: import("mongoose").SchemaDefinitionProperty<number, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
93
93
|
id: string;
|
|
94
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
94
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
95
95
|
_id: import("mongoose").Types.ObjectId;
|
|
96
96
|
} & {
|
|
97
97
|
__v: number;
|
|
98
98
|
}, "id"> & {
|
|
99
99
|
id: string;
|
|
100
100
|
}>;
|
|
101
|
-
ticketPrice?: import("mongoose").SchemaDefinitionProperty<number,
|
|
101
|
+
ticketPrice?: import("mongoose").SchemaDefinitionProperty<number, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
102
102
|
id: string;
|
|
103
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
103
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
104
104
|
_id: import("mongoose").Types.ObjectId;
|
|
105
105
|
} & {
|
|
106
106
|
__v: number;
|
|
107
107
|
}, "id"> & {
|
|
108
108
|
id: string;
|
|
109
109
|
}>;
|
|
110
|
-
roomType?: import("mongoose").SchemaDefinitionProperty<string,
|
|
110
|
+
roomType?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
111
111
|
id: string;
|
|
112
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
112
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
113
113
|
_id: import("mongoose").Types.ObjectId;
|
|
114
114
|
} & {
|
|
115
115
|
__v: number;
|
|
116
116
|
}, "id"> & {
|
|
117
117
|
id: string;
|
|
118
118
|
}>;
|
|
119
|
-
gameType?: import("mongoose").SchemaDefinitionProperty<string,
|
|
119
|
+
gameType?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
120
120
|
id: string;
|
|
121
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
121
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
122
122
|
_id: import("mongoose").Types.ObjectId;
|
|
123
123
|
} & {
|
|
124
124
|
__v: number;
|
|
125
125
|
}, "id"> & {
|
|
126
126
|
id: string;
|
|
127
127
|
}>;
|
|
128
|
-
rulesType?: import("mongoose").SchemaDefinitionProperty<string,
|
|
128
|
+
rulesType?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
129
129
|
id: string;
|
|
130
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
130
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
131
131
|
_id: import("mongoose").Types.ObjectId;
|
|
132
132
|
} & {
|
|
133
133
|
__v: number;
|
|
134
134
|
}, "id"> & {
|
|
135
135
|
id: string;
|
|
136
136
|
}>;
|
|
137
|
-
deckType?: import("mongoose").SchemaDefinitionProperty<string,
|
|
137
|
+
deckType?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
138
138
|
id: string;
|
|
139
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
139
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
140
140
|
_id: import("mongoose").Types.ObjectId;
|
|
141
141
|
} & {
|
|
142
142
|
__v: number;
|
|
143
143
|
}, "id"> & {
|
|
144
144
|
id: string;
|
|
145
145
|
}>;
|
|
146
|
-
isTemplate?: import("mongoose").SchemaDefinitionProperty<boolean,
|
|
146
|
+
isTemplate?: import("mongoose").SchemaDefinitionProperty<boolean, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
147
147
|
id: string;
|
|
148
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
148
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
149
149
|
_id: import("mongoose").Types.ObjectId;
|
|
150
150
|
} & {
|
|
151
151
|
__v: number;
|
|
152
152
|
}, "id"> & {
|
|
153
153
|
id: string;
|
|
154
154
|
}>;
|
|
155
|
-
templateId?: import("mongoose").SchemaDefinitionProperty<string,
|
|
155
|
+
templateId?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
156
156
|
id: string;
|
|
157
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
157
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
158
158
|
_id: import("mongoose").Types.ObjectId;
|
|
159
159
|
} & {
|
|
160
160
|
__v: number;
|
|
161
161
|
}, "id"> & {
|
|
162
162
|
id: string;
|
|
163
163
|
}>;
|
|
164
|
-
type?: import("mongoose").SchemaDefinitionProperty<string,
|
|
164
|
+
type?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
165
165
|
id: string;
|
|
166
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
166
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
167
167
|
_id: import("mongoose").Types.ObjectId;
|
|
168
168
|
} & {
|
|
169
169
|
__v: number;
|
|
170
170
|
}, "id"> & {
|
|
171
171
|
id: string;
|
|
172
172
|
}>;
|
|
173
|
-
maxParticipants?: import("mongoose").SchemaDefinitionProperty<number,
|
|
173
|
+
maxParticipants?: import("mongoose").SchemaDefinitionProperty<number, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
174
174
|
id: string;
|
|
175
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
175
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
176
176
|
_id: import("mongoose").Types.ObjectId;
|
|
177
177
|
} & {
|
|
178
178
|
__v: number;
|
|
179
179
|
}, "id"> & {
|
|
180
180
|
id: string;
|
|
181
181
|
}>;
|
|
182
|
-
participants?: import("mongoose").SchemaDefinitionProperty<ITournamentParticipant[],
|
|
182
|
+
participants?: import("mongoose").SchemaDefinitionProperty<ITournamentParticipant[], OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
183
183
|
id: string;
|
|
184
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
184
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
185
185
|
_id: import("mongoose").Types.ObjectId;
|
|
186
186
|
} & {
|
|
187
187
|
__v: number;
|
|
188
188
|
}, "id"> & {
|
|
189
189
|
id: string;
|
|
190
190
|
}>;
|
|
191
|
-
status?: import("mongoose").SchemaDefinitionProperty<string,
|
|
191
|
+
status?: import("mongoose").SchemaDefinitionProperty<string, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
192
192
|
id: string;
|
|
193
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
193
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
194
194
|
_id: import("mongoose").Types.ObjectId;
|
|
195
195
|
} & {
|
|
196
196
|
__v: number;
|
|
197
197
|
}, "id"> & {
|
|
198
198
|
id: string;
|
|
199
199
|
}>;
|
|
200
|
-
winners?: import("mongoose").SchemaDefinitionProperty<ITournamentWinner[],
|
|
200
|
+
winners?: import("mongoose").SchemaDefinitionProperty<ITournamentWinner[], OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
201
201
|
id: string;
|
|
202
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
202
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
203
203
|
_id: import("mongoose").Types.ObjectId;
|
|
204
204
|
} & {
|
|
205
205
|
__v: number;
|
|
206
206
|
}, "id"> & {
|
|
207
207
|
id: string;
|
|
208
208
|
}>;
|
|
209
|
-
createDate?: import("mongoose").SchemaDefinitionProperty<Date,
|
|
209
|
+
createDate?: import("mongoose").SchemaDefinitionProperty<Date, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
210
210
|
id: string;
|
|
211
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
211
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
212
212
|
_id: import("mongoose").Types.ObjectId;
|
|
213
213
|
} & {
|
|
214
214
|
__v: number;
|
|
215
215
|
}, "id"> & {
|
|
216
216
|
id: string;
|
|
217
217
|
}>;
|
|
218
|
-
startDate?: import("mongoose").SchemaDefinitionProperty<Date,
|
|
218
|
+
startDate?: import("mongoose").SchemaDefinitionProperty<Date, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
219
219
|
id: string;
|
|
220
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
220
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
221
221
|
_id: import("mongoose").Types.ObjectId;
|
|
222
222
|
} & {
|
|
223
223
|
__v: number;
|
|
224
224
|
}, "id"> & {
|
|
225
225
|
id: string;
|
|
226
226
|
}>;
|
|
227
|
-
finishDate?: import("mongoose").SchemaDefinitionProperty<Date,
|
|
227
|
+
finishDate?: import("mongoose").SchemaDefinitionProperty<Date, OneTableTournamentRoom, Document<unknown, {}, OneTableTournamentRoom, {
|
|
228
228
|
id: string;
|
|
229
|
-
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<
|
|
229
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<OneTableTournamentRoom & {
|
|
230
230
|
_id: import("mongoose").Types.ObjectId;
|
|
231
231
|
} & {
|
|
232
232
|
__v: number;
|
|
233
233
|
}, "id"> & {
|
|
234
234
|
id: string;
|
|
235
235
|
}>;
|
|
236
|
-
},
|
|
237
|
-
//# sourceMappingURL=
|
|
236
|
+
}, OneTableTournamentRoom>;
|
|
237
|
+
//# sourceMappingURL=one_table_tournament_rooms.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"one_table_tournament_rooms.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/one_table_tournament_rooms.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,MAAM,8BAA8B,GACxC,gBAAgB,CAAC,sBAAsB,CAAC,CAAC;AAE3C,qBACa,sBAAsB;IAMjC,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAG9B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAG9B,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAGjC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAGpC,SAAS,EAAE,MAAM,CAAC;IAGlB,GAAG,EAAE,MAAM,CAAC;IAGZ,WAAW,EAAE,MAAM,CAAC;IAGpB,QAAQ,EAAE,MAAM,CAAC;IAGjB,QAAQ,EAAE,MAAM,CAAC;IAGjB,SAAS,EAAE,MAAM,CAAC;IAGlB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAKlB,UAAU,EAAE,OAAO,CAAC;IAGpB,UAAU,CAAC,EAAE,MAAM,CAAC;IAGpB,IAAI,EAAE,MAAM,CAAC;IAGb,eAAe,EAAE,MAAM,CAAC;IAGxB,YAAY,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC;IAG5C,MAAM,EAAE,MAAM,CAAC;IAGf,OAAO,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAGlC,UAAU,EAAE,IAAI,CAAC;IAGjB,SAAS,EAAE,IAAI,CAAC;IAGhB,UAAU,EAAE,IAAI,CAAC;CAClB;AAED,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAExC,CAAC"}
|
package/dist/schemas/{tournament_one_table_rooms.schema.js → one_table_tournament_rooms.schema.js}
RENAMED
|
@@ -9,11 +9,11 @@ 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.
|
|
12
|
+
exports.OneTableTournamentRoomSchema = exports.OneTableTournamentRoom = void 0;
|
|
13
13
|
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
-
let
|
|
14
|
+
let OneTableTournamentRoom = class OneTableTournamentRoom {
|
|
15
15
|
};
|
|
16
|
-
exports.
|
|
16
|
+
exports.OneTableTournamentRoom = OneTableTournamentRoom;
|
|
17
17
|
__decorate([
|
|
18
18
|
(0, mongoose_1.Virtual)({
|
|
19
19
|
get: function () {
|
|
@@ -21,89 +21,89 @@ __decorate([
|
|
|
21
21
|
},
|
|
22
22
|
}),
|
|
23
23
|
__metadata("design:type", String)
|
|
24
|
-
],
|
|
24
|
+
], OneTableTournamentRoom.prototype, "tournamentId", void 0);
|
|
25
25
|
__decorate([
|
|
26
26
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
27
27
|
__metadata("design:type", Object)
|
|
28
|
-
],
|
|
28
|
+
], OneTableTournamentRoom.prototype, "title", void 0);
|
|
29
29
|
__decorate([
|
|
30
30
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
31
31
|
__metadata("design:type", Object)
|
|
32
|
-
],
|
|
32
|
+
], OneTableTournamentRoom.prototype, "subtitle", void 0);
|
|
33
33
|
__decorate([
|
|
34
34
|
(0, mongoose_1.Prop)({ type: Object }),
|
|
35
35
|
__metadata("design:type", Object)
|
|
36
|
-
],
|
|
36
|
+
], OneTableTournamentRoom.prototype, "description", void 0);
|
|
37
37
|
__decorate([
|
|
38
38
|
(0, mongoose_1.Prop)(),
|
|
39
39
|
__metadata("design:type", Number)
|
|
40
|
-
],
|
|
40
|
+
], OneTableTournamentRoom.prototype, "tableSize", void 0);
|
|
41
41
|
__decorate([
|
|
42
42
|
(0, mongoose_1.Prop)(),
|
|
43
43
|
__metadata("design:type", Number)
|
|
44
|
-
],
|
|
44
|
+
], OneTableTournamentRoom.prototype, "bet", void 0);
|
|
45
45
|
__decorate([
|
|
46
46
|
(0, mongoose_1.Prop)(),
|
|
47
47
|
__metadata("design:type", Number)
|
|
48
|
-
],
|
|
48
|
+
], OneTableTournamentRoom.prototype, "ticketPrice", void 0);
|
|
49
49
|
__decorate([
|
|
50
50
|
(0, mongoose_1.Prop)(),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
|
-
],
|
|
52
|
+
], OneTableTournamentRoom.prototype, "roomType", void 0);
|
|
53
53
|
__decorate([
|
|
54
54
|
(0, mongoose_1.Prop)(),
|
|
55
55
|
__metadata("design:type", String)
|
|
56
|
-
],
|
|
56
|
+
], OneTableTournamentRoom.prototype, "gameType", void 0);
|
|
57
57
|
__decorate([
|
|
58
58
|
(0, mongoose_1.Prop)(),
|
|
59
59
|
__metadata("design:type", String)
|
|
60
|
-
],
|
|
60
|
+
], OneTableTournamentRoom.prototype, "rulesType", void 0);
|
|
61
61
|
__decorate([
|
|
62
62
|
(0, mongoose_1.Prop)(),
|
|
63
63
|
__metadata("design:type", String)
|
|
64
|
-
],
|
|
64
|
+
], OneTableTournamentRoom.prototype, "deckType", void 0);
|
|
65
65
|
__decorate([
|
|
66
66
|
(0, mongoose_1.Prop)(),
|
|
67
67
|
__metadata("design:type", Boolean)
|
|
68
|
-
],
|
|
68
|
+
], OneTableTournamentRoom.prototype, "isTemplate", void 0);
|
|
69
69
|
__decorate([
|
|
70
70
|
(0, mongoose_1.Prop)(),
|
|
71
71
|
__metadata("design:type", String)
|
|
72
|
-
],
|
|
72
|
+
], OneTableTournamentRoom.prototype, "templateId", void 0);
|
|
73
73
|
__decorate([
|
|
74
74
|
(0, mongoose_1.Prop)(),
|
|
75
75
|
__metadata("design:type", String)
|
|
76
|
-
],
|
|
76
|
+
], OneTableTournamentRoom.prototype, "type", void 0);
|
|
77
77
|
__decorate([
|
|
78
78
|
(0, mongoose_1.Prop)(),
|
|
79
79
|
__metadata("design:type", Number)
|
|
80
|
-
],
|
|
80
|
+
], OneTableTournamentRoom.prototype, "maxParticipants", void 0);
|
|
81
81
|
__decorate([
|
|
82
82
|
(0, mongoose_1.Prop)(),
|
|
83
83
|
__metadata("design:type", Array)
|
|
84
|
-
],
|
|
84
|
+
], OneTableTournamentRoom.prototype, "participants", void 0);
|
|
85
85
|
__decorate([
|
|
86
86
|
(0, mongoose_1.Prop)(),
|
|
87
87
|
__metadata("design:type", String)
|
|
88
|
-
],
|
|
88
|
+
], OneTableTournamentRoom.prototype, "status", void 0);
|
|
89
89
|
__decorate([
|
|
90
90
|
(0, mongoose_1.Prop)(),
|
|
91
91
|
__metadata("design:type", Array)
|
|
92
|
-
],
|
|
92
|
+
], OneTableTournamentRoom.prototype, "winners", void 0);
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, mongoose_1.Prop)(),
|
|
95
95
|
__metadata("design:type", Date)
|
|
96
|
-
],
|
|
96
|
+
], OneTableTournamentRoom.prototype, "createDate", void 0);
|
|
97
97
|
__decorate([
|
|
98
98
|
(0, mongoose_1.Prop)(),
|
|
99
99
|
__metadata("design:type", Date)
|
|
100
|
-
],
|
|
100
|
+
], OneTableTournamentRoom.prototype, "startDate", void 0);
|
|
101
101
|
__decorate([
|
|
102
102
|
(0, mongoose_1.Prop)(),
|
|
103
103
|
__metadata("design:type", Date)
|
|
104
|
-
],
|
|
105
|
-
exports.
|
|
104
|
+
], OneTableTournamentRoom.prototype, "finishDate", void 0);
|
|
105
|
+
exports.OneTableTournamentRoom = OneTableTournamentRoom = __decorate([
|
|
106
106
|
(0, mongoose_1.Schema)({ collection: 'tournament_one_table_rooms' })
|
|
107
|
-
],
|
|
108
|
-
exports.
|
|
109
|
-
//# sourceMappingURL=
|
|
107
|
+
], OneTableTournamentRoom);
|
|
108
|
+
exports.OneTableTournamentRoomSchema = mongoose_1.SchemaFactory.createForClass(OneTableTournamentRoom);
|
|
109
|
+
//# sourceMappingURL=one_table_tournament_rooms.schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"one_table_tournament_rooms.schema.js","sourceRoot":"","sources":["../../src/schemas/one_table_tournament_rooms.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAUjE,IAAM,sBAAsB,GAA5B,MAAM,sBAAsB;CAqElC,CAAA;AArEY,wDAAsB;AAMxB;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;4DAC4B;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;qDACO;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;wDACU;AAGjC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;2DACa;AAGpC;IADC,IAAA,eAAI,GAAE;;yDACW;AAGlB;IADC,IAAA,eAAI,GAAE;;mDACK;AAGZ;IADC,IAAA,eAAI,GAAE;;2DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;wDACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wDACU;AAGjB;IADC,IAAA,eAAI,GAAE;;yDACW;AAGlB;IADC,IAAA,eAAI,GAAE;;wDACW;AAKlB;IADC,IAAA,eAAI,GAAE;;0DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;0DACa;AAGpB;IADC,IAAA,eAAI,GAAE;;oDACM;AAGb;IADC,IAAA,eAAI,GAAE;;+DACiB;AAGxB;IADC,IAAA,eAAI,GAAE;8BACO,KAAK;4DAAyB;AAG5C;IADC,IAAA,eAAI,GAAE;;sDACQ;AAGf;IADC,IAAA,eAAI,GAAE;8BACE,KAAK;uDAAoB;AAGlC;IADC,IAAA,eAAI,GAAE;8BACK,IAAI;0DAAC;AAGjB;IADC,IAAA,eAAI,GAAE;8BACI,IAAI;yDAAC;AAGhB;IADC,IAAA,eAAI,GAAE;8BACK,IAAI;0DAAC;iCApEN,sBAAsB;IADlC,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,4BAA4B,EAAE,CAAC;GACxC,sBAAsB,CAqElC;AAEY,QAAA,4BAA4B,GAAG,wBAAa,CAAC,cAAc,CACtE,sBAAsB,CACvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium.schema.js","sourceRoot":"","sources":["../../src/schemas/premium.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CA4BnB,CAAA;AA5BY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;mCACI;AAGX;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACa;AAGpC;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"premium.schema.js","sourceRoot":"","sources":["../../src/schemas/premium.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CA4BnB,CAAA;AA5BY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;mCACI;AAGX;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACa;AAGpC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;qCACM;AAG7B;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;oCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;wCACS;kBA3BL,OAAO;IADnB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;GACtB,OAAO,CA4BnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.schema.js","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAsGnB,CAAA;AAtGY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"product.schema.js","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAsGnB,CAAA;AAtGY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;sCACO;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACU;AAGjC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACa;AAGpC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;oDACqB;AAG5C;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;+CACgB;AAGvC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;uCACQ;AAG/B;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;uCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;uCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;sCACO;AAGd;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;yCACW;AAGlB;IADC,IAAA,eAAI,GAAE;;6CACe;AAKtB;IADC,IAAA,eAAI,GAAE;;yCACkB;AAGzB;IADC,IAAA,eAAI,GAAE;;sCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;gDACkB;AAGzB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;wCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;6CACe;AAGtB;IADC,IAAA,eAAI,GAAE;;sCACQ;AAGf;IADC,IAAA,eAAI,GAAE;;uCACS;AAGhB;IADC,IAAA,eAAI,GAAE;;qCACO;AAGd;IADC,IAAA,eAAI,GAAE;;qCACO;AAGd;IADC,IAAA,eAAI,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;0CACN;AAGnB;IADC,IAAA,eAAI,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;qDACK;kBArGnB,OAAO;IADnB,IAAA,iBAAM,GAAE;GACI,OAAO,CAsGnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rule.schema.js","sourceRoot":"","sources":["../../src/schemas/rule.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,IAAI,GAAV,MAAM,IAAI;CA4BhB,CAAA;AA5BY,oBAAI;AAMN;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;oCACsB;AAGxB;IADC,IAAA,eAAI,GAAE;;gCACI;AAGX;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"rule.schema.js","sourceRoot":"","sources":["../../src/schemas/rule.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,IAAI,GAAV,MAAM,IAAI;CA4BhB,CAAA;AA5BY,oBAAI;AAMN;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;oCACsB;AAGxB;IADC,IAAA,eAAI,GAAE;;gCACI;AAGX;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACa;AAGpC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;kCACM;AAG7B;IADC,IAAA,eAAI,GAAE;;kCACM;AAGb;IADC,IAAA,eAAI,GAAE;;iCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;kCACM;AAGb;IADC,IAAA,eAAI,GAAE;;qCACS;eA3BL,IAAI;IADhB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,OAAO,EAAE,CAAC;GACnB,IAAI,CA4BhB;AAEY,QAAA,UAAU,GAAG,wBAAa,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.schema.js","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAwCnB,CAAA;AAxCY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;0CACY;AAGnB;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"setting.schema.js","sourceRoot":"","sources":["../../src/schemas/setting.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CAwCnB,CAAA;AAxCY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;0CACyB;AAG3B;IADC,IAAA,eAAI,GAAE;;yCACU;AAGjB;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;0CACY;AAGnB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;sCACO;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACU;AAGjC;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;2CACa;AAGpB;IADC,IAAA,eAAI,GAAE;;oCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;wCACS;kBAvCL,OAAO;IADnB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;GACtB,OAAO,CAwCnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings_option.schema.js","sourceRoot":"","sources":["../../src/schemas/settings_option.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,cAAc,GAApB,MAAM,cAAc;CA+B1B,CAAA;AA/BY,wCAAc;AAMhB;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;uDAC+B;AAGjC;IADC,IAAA,eAAI,GAAE;;4CACM;AAGb;IADC,IAAA,eAAI,GAAE;;gDACU;AAGjB;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"settings_option.schema.js","sourceRoot":"","sources":["../../src/schemas/settings_option.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,cAAc,GAApB,MAAM,cAAc;CA+B1B,CAAA;AA/BY,wCAAc;AAMhB;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;uDAC+B;AAGjC;IADC,IAAA,eAAI,GAAE;;4CACM;AAGb;IADC,IAAA,eAAI,GAAE;;gDACU;AAGjB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACO;AAG9B;IADC,IAAA,eAAI,GAAE;;4CACQ;AAGf;IADC,IAAA,eAAI,GAAE;;4CACM;AAGb;IADC,IAAA,eAAI,GAAE;;iDACY;AAGnB;IADC,IAAA,eAAI,GAAE;;+CACW;AAGlB;IADC,IAAA,eAAI,GAAE;;sDACkB;yBA9Bd,cAAc;IAD1B,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,kBAAkB,EAAE,CAAC;GAC9B,cAAc,CA+B1B;AAEY,QAAA,oBAAoB,GAC/B,wBAAa,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"welcome.schema.js","sourceRoot":"","sources":["../../src/schemas/welcome.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CA4BnB,CAAA;AA5BY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;uCACsB;AAGxB;IADC,IAAA,eAAI,GAAE;;mCACI;AAGX;IADC,IAAA,eAAI,EAAC,
|
|
1
|
+
{"version":3,"file":"welcome.schema.js","sourceRoot":"","sources":["../../src/schemas/welcome.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,OAAO,GAAb,MAAM,OAAO;CA4BnB,CAAA;AA5BY,0BAAO;AAMT;IALR,IAAA,kBAAO,EAAC;QACP,GAAG,EAAE;YACH,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC7B,CAAC;KACF,CAAC;;uCACsB;AAGxB;IADC,IAAA,eAAI,GAAE;;mCACI;AAGX;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACa;AAGpC;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;qCACM;AAG7B;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;oCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;qCACM;AAGb;IADC,IAAA,eAAI,GAAE;;wCACS;kBA3BL,OAAO;IADnB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,SAAS,EAAE,CAAC;GACrB,OAAO,CA4BnB;AAEY,QAAA,aAAa,GAAG,wBAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC"}
|