jp.db.schemas 2.0.1 → 2.0.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.
- package/dist/index.d.ts +10 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/models/tournament-participant.interface.d.ts +6 -0
- package/dist/models/tournament-participant.interface.d.ts.map +1 -0
- package/dist/models/tournament-participant.interface.js +3 -0
- package/dist/models/tournament-participant.interface.js.map +1 -0
- package/dist/models/tournament-status.enum.d.ts +7 -0
- package/dist/models/tournament-status.enum.d.ts.map +1 -0
- package/dist/models/tournament-status.enum.js +11 -0
- package/dist/models/tournament-status.enum.js.map +1 -0
- package/dist/models/tournament-winner.interface.d.ts +8 -0
- package/dist/models/tournament-winner.interface.d.ts.map +1 -0
- package/dist/models/tournament-winner.interface.js +3 -0
- package/dist/models/tournament-winner.interface.js.map +1 -0
- package/dist/repositories/index.d.ts +4 -1
- package/dist/repositories/index.d.ts.map +1 -1
- package/dist/repositories/index.js +7 -1
- package/dist/repositories/index.js.map +1 -1
- package/dist/repositories/simple-rooms.repository.d.ts +8 -0
- package/dist/repositories/simple-rooms.repository.d.ts.map +1 -0
- package/dist/repositories/simple-rooms.repository.js +36 -0
- package/dist/repositories/simple-rooms.repository.js.map +1 -0
- package/dist/repositories/tournament-many-tables-rooms.repository.d.ts +18 -0
- package/dist/repositories/tournament-many-tables-rooms.repository.d.ts.map +1 -0
- package/dist/repositories/tournament-many-tables-rooms.repository.js +84 -0
- package/dist/repositories/tournament-many-tables-rooms.repository.js.map +1 -0
- package/dist/repositories/tournament-one-table-rooms.repository.d.ts +16 -0
- package/dist/repositories/tournament-one-table-rooms.repository.d.ts.map +1 -0
- package/dist/repositories/tournament-one-table-rooms.repository.js +76 -0
- package/dist/repositories/tournament-one-table-rooms.repository.js.map +1 -0
- package/dist/schemas/simple_rooms.schema.d.ts +125 -0
- package/dist/schemas/simple_rooms.schema.d.ts.map +1 -0
- package/dist/schemas/simple_rooms.schema.js +65 -0
- package/dist/schemas/simple_rooms.schema.js.map +1 -0
- package/dist/schemas/tournament_many_tables_rooms.schema.d.ts +237 -0
- package/dist/schemas/tournament_many_tables_rooms.schema.d.ts.map +1 -0
- package/dist/schemas/tournament_many_tables_rooms.schema.js +109 -0
- package/dist/schemas/tournament_many_tables_rooms.schema.js.map +1 -0
- package/dist/schemas/tournament_one_table_rooms.schema.d.ts +237 -0
- package/dist/schemas/tournament_one_table_rooms.schema.d.ts.map +1 -0
- package/dist/schemas/tournament_one_table_rooms.schema.js +109 -0
- package/dist/schemas/tournament_one_table_rooms.schema.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/models/tournament-participant.interface.ts +5 -0
- package/src/models/tournament-status.enum.ts +6 -0
- package/src/models/tournament-winner.interface.ts +7 -0
- package/src/repositories/index.ts +6 -0
- package/src/repositories/simple-rooms.repository.ts +17 -0
- package/src/repositories/tournament-many-tables-rooms.repository.ts +89 -0
- package/src/repositories/tournament-one-table-rooms.repository.ts +71 -0
- package/src/schemas/simple_rooms.schema.ts +43 -0
- package/src/schemas/tournament_many_tables_rooms.schema.ts +81 -0
- package/src/schemas/tournament_one_table_rooms.schema.ts +81 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { Document, HydratedDocument } from 'mongoose';
|
|
2
|
+
export type SimpleRoomDocument = HydratedDocument<SimpleRoom>;
|
|
3
|
+
export declare class SimpleRoom {
|
|
4
|
+
readonly roomId: string;
|
|
5
|
+
title: Record<string, string>;
|
|
6
|
+
subtitle: Record<string, string>;
|
|
7
|
+
tableSize: number;
|
|
8
|
+
bet: number;
|
|
9
|
+
ticketPrice: number;
|
|
10
|
+
roomType: string;
|
|
11
|
+
gameType: string;
|
|
12
|
+
rulesType: string;
|
|
13
|
+
deckType?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare const SimpleRoomSchema: import("mongoose").Schema<SimpleRoom, import("mongoose").Model<SimpleRoom, any, any, any, (Document<unknown, any, SimpleRoom, any, import("mongoose").DefaultSchemaOptions> & SimpleRoom & {
|
|
16
|
+
_id: import("mongoose").Types.ObjectId;
|
|
17
|
+
} & {
|
|
18
|
+
__v: number;
|
|
19
|
+
} & {
|
|
20
|
+
id: string;
|
|
21
|
+
}) | (Document<unknown, any, SimpleRoom, any, import("mongoose").DefaultSchemaOptions> & SimpleRoom & {
|
|
22
|
+
_id: import("mongoose").Types.ObjectId;
|
|
23
|
+
} & {
|
|
24
|
+
__v: number;
|
|
25
|
+
}), any, SimpleRoom>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
26
|
+
id: string;
|
|
27
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
28
|
+
_id: import("mongoose").Types.ObjectId;
|
|
29
|
+
} & {
|
|
30
|
+
__v: number;
|
|
31
|
+
}, "id"> & {
|
|
32
|
+
id: string;
|
|
33
|
+
}, {
|
|
34
|
+
readonly roomId?: import("mongoose").SchemaDefinitionProperty<string, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
35
|
+
id: string;
|
|
36
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
37
|
+
_id: import("mongoose").Types.ObjectId;
|
|
38
|
+
} & {
|
|
39
|
+
__v: number;
|
|
40
|
+
}, "id"> & {
|
|
41
|
+
id: string;
|
|
42
|
+
}>;
|
|
43
|
+
title?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
44
|
+
id: string;
|
|
45
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
46
|
+
_id: import("mongoose").Types.ObjectId;
|
|
47
|
+
} & {
|
|
48
|
+
__v: number;
|
|
49
|
+
}, "id"> & {
|
|
50
|
+
id: string;
|
|
51
|
+
}>;
|
|
52
|
+
subtitle?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
53
|
+
id: string;
|
|
54
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
55
|
+
_id: import("mongoose").Types.ObjectId;
|
|
56
|
+
} & {
|
|
57
|
+
__v: number;
|
|
58
|
+
}, "id"> & {
|
|
59
|
+
id: string;
|
|
60
|
+
}>;
|
|
61
|
+
tableSize?: import("mongoose").SchemaDefinitionProperty<number, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
62
|
+
id: string;
|
|
63
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
64
|
+
_id: import("mongoose").Types.ObjectId;
|
|
65
|
+
} & {
|
|
66
|
+
__v: number;
|
|
67
|
+
}, "id"> & {
|
|
68
|
+
id: string;
|
|
69
|
+
}>;
|
|
70
|
+
bet?: import("mongoose").SchemaDefinitionProperty<number, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
71
|
+
id: string;
|
|
72
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
73
|
+
_id: import("mongoose").Types.ObjectId;
|
|
74
|
+
} & {
|
|
75
|
+
__v: number;
|
|
76
|
+
}, "id"> & {
|
|
77
|
+
id: string;
|
|
78
|
+
}>;
|
|
79
|
+
ticketPrice?: import("mongoose").SchemaDefinitionProperty<number, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
80
|
+
id: string;
|
|
81
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
82
|
+
_id: import("mongoose").Types.ObjectId;
|
|
83
|
+
} & {
|
|
84
|
+
__v: number;
|
|
85
|
+
}, "id"> & {
|
|
86
|
+
id: string;
|
|
87
|
+
}>;
|
|
88
|
+
roomType?: import("mongoose").SchemaDefinitionProperty<string, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
89
|
+
id: string;
|
|
90
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
91
|
+
_id: import("mongoose").Types.ObjectId;
|
|
92
|
+
} & {
|
|
93
|
+
__v: number;
|
|
94
|
+
}, "id"> & {
|
|
95
|
+
id: string;
|
|
96
|
+
}>;
|
|
97
|
+
gameType?: import("mongoose").SchemaDefinitionProperty<string, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
98
|
+
id: string;
|
|
99
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
100
|
+
_id: import("mongoose").Types.ObjectId;
|
|
101
|
+
} & {
|
|
102
|
+
__v: number;
|
|
103
|
+
}, "id"> & {
|
|
104
|
+
id: string;
|
|
105
|
+
}>;
|
|
106
|
+
rulesType?: import("mongoose").SchemaDefinitionProperty<string, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
107
|
+
id: string;
|
|
108
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
109
|
+
_id: import("mongoose").Types.ObjectId;
|
|
110
|
+
} & {
|
|
111
|
+
__v: number;
|
|
112
|
+
}, "id"> & {
|
|
113
|
+
id: string;
|
|
114
|
+
}>;
|
|
115
|
+
deckType?: import("mongoose").SchemaDefinitionProperty<string, SimpleRoom, Document<unknown, {}, SimpleRoom, {
|
|
116
|
+
id: string;
|
|
117
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<SimpleRoom & {
|
|
118
|
+
_id: import("mongoose").Types.ObjectId;
|
|
119
|
+
} & {
|
|
120
|
+
__v: number;
|
|
121
|
+
}, "id"> & {
|
|
122
|
+
id: string;
|
|
123
|
+
}>;
|
|
124
|
+
}, SimpleRoom>;
|
|
125
|
+
//# sourceMappingURL=simple_rooms.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple_rooms.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/simple_rooms.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,kBAAkB,GAAG,gBAAgB,CAAC,UAAU,CAAC,CAAC;AAE9D,qBACa,UAAU;IAMnB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAGxB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAG9B,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAGjC,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;CACrB;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAA2C,CAAC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.SimpleRoomSchema = exports.SimpleRoom = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
let SimpleRoom = class SimpleRoom {
|
|
15
|
+
};
|
|
16
|
+
exports.SimpleRoom = SimpleRoom;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, mongoose_1.Virtual)({
|
|
19
|
+
get: function () {
|
|
20
|
+
return this._id.toString();
|
|
21
|
+
},
|
|
22
|
+
}),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], SimpleRoom.prototype, "roomId", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, mongoose_1.Prop)({ type: Object }),
|
|
27
|
+
__metadata("design:type", Object)
|
|
28
|
+
], SimpleRoom.prototype, "title", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, mongoose_1.Prop)({ type: Object }),
|
|
31
|
+
__metadata("design:type", Object)
|
|
32
|
+
], SimpleRoom.prototype, "subtitle", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, mongoose_1.Prop)(),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], SimpleRoom.prototype, "tableSize", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, mongoose_1.Prop)(),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
|
+
], SimpleRoom.prototype, "bet", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, mongoose_1.Prop)(),
|
|
43
|
+
__metadata("design:type", Number)
|
|
44
|
+
], SimpleRoom.prototype, "ticketPrice", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, mongoose_1.Prop)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], SimpleRoom.prototype, "roomType", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, mongoose_1.Prop)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], SimpleRoom.prototype, "gameType", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, mongoose_1.Prop)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], SimpleRoom.prototype, "rulesType", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, mongoose_1.Prop)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], SimpleRoom.prototype, "deckType", void 0);
|
|
61
|
+
exports.SimpleRoom = SimpleRoom = __decorate([
|
|
62
|
+
(0, mongoose_1.Schema)({ collection: 'simple_rooms' })
|
|
63
|
+
], SimpleRoom);
|
|
64
|
+
exports.SimpleRoomSchema = mongoose_1.SchemaFactory.createForClass(SimpleRoom);
|
|
65
|
+
//# sourceMappingURL=simple_rooms.schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple_rooms.schema.js","sourceRoot":"","sources":["../../src/schemas/simple_rooms.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AAMjE,IAAM,UAAU,GAAhB,MAAM,UAAU;CAkCtB,CAAA;AAlCY,gCAAU;AAMV;IALR,IAAA,kBAAO,EAAC;QACL,GAAG,EAAE;YACD,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC/B,CAAC;KACJ,CAAC;;0CACsB;AAGxB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;yCACO;AAG9B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACU;AAGjC;IADC,IAAA,eAAI,GAAE;;6CACW;AAGlB;IADC,IAAA,eAAI,GAAE;;uCACK;AAGZ;IADC,IAAA,eAAI,GAAE;;+CACa;AAGpB;IADC,IAAA,eAAI,GAAE;;4CACU;AAGjB;IADC,IAAA,eAAI,GAAE;;4CACU;AAGjB;IADC,IAAA,eAAI,GAAE;;6CACW;AAGlB;IADC,IAAA,eAAI,GAAE;;4CACW;qBAjCT,UAAU;IADtB,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,cAAc,EAAE,CAAC;GAC1B,UAAU,CAkCtB;AAEY,QAAA,gBAAgB,GAAG,wBAAa,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC"}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import { Document, HydratedDocument } from 'mongoose';
|
|
2
|
+
import { ITournamentParticipant } from '../models/tournament-participant.interface';
|
|
3
|
+
import { ITournamentWinner } from '../models/tournament-winner.interface';
|
|
4
|
+
export type TournamentManyTablesRoomDocument = HydratedDocument<TournamentManyTablesRoom>;
|
|
5
|
+
export declare class TournamentManyTablesRoom {
|
|
6
|
+
readonly tournamentId: string;
|
|
7
|
+
title: Record<string, string>;
|
|
8
|
+
subtitle: Record<string, string>;
|
|
9
|
+
tableSize: number;
|
|
10
|
+
bet: number;
|
|
11
|
+
ticketPrice: number;
|
|
12
|
+
roomType: string;
|
|
13
|
+
gameType: string;
|
|
14
|
+
rulesType: string;
|
|
15
|
+
deckType?: string;
|
|
16
|
+
isTemplate: boolean;
|
|
17
|
+
templateId?: string;
|
|
18
|
+
type: string;
|
|
19
|
+
description: Record<string, string>;
|
|
20
|
+
participants: Array<ITournamentParticipant>;
|
|
21
|
+
maxParticipants: number;
|
|
22
|
+
status: string;
|
|
23
|
+
winners: Array<ITournamentWinner>;
|
|
24
|
+
createDate: Date;
|
|
25
|
+
startDate: Date;
|
|
26
|
+
finishDate: Date;
|
|
27
|
+
}
|
|
28
|
+
export declare const TournamentManyTablesRoomSchema: import("mongoose").Schema<TournamentManyTablesRoom, import("mongoose").Model<TournamentManyTablesRoom, any, any, any, (Document<unknown, any, TournamentManyTablesRoom, any, import("mongoose").DefaultSchemaOptions> & TournamentManyTablesRoom & {
|
|
29
|
+
_id: import("mongoose").Types.ObjectId;
|
|
30
|
+
} & {
|
|
31
|
+
__v: number;
|
|
32
|
+
} & {
|
|
33
|
+
id: string;
|
|
34
|
+
}) | (Document<unknown, any, TournamentManyTablesRoom, any, import("mongoose").DefaultSchemaOptions> & TournamentManyTablesRoom & {
|
|
35
|
+
_id: import("mongoose").Types.ObjectId;
|
|
36
|
+
} & {
|
|
37
|
+
__v: number;
|
|
38
|
+
}), any, TournamentManyTablesRoom>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
39
|
+
id: string;
|
|
40
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
41
|
+
_id: import("mongoose").Types.ObjectId;
|
|
42
|
+
} & {
|
|
43
|
+
__v: number;
|
|
44
|
+
}, "id"> & {
|
|
45
|
+
id: string;
|
|
46
|
+
}, {
|
|
47
|
+
readonly tournamentId?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
48
|
+
id: string;
|
|
49
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
50
|
+
_id: import("mongoose").Types.ObjectId;
|
|
51
|
+
} & {
|
|
52
|
+
__v: number;
|
|
53
|
+
}, "id"> & {
|
|
54
|
+
id: string;
|
|
55
|
+
}>;
|
|
56
|
+
title?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
57
|
+
id: string;
|
|
58
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
59
|
+
_id: import("mongoose").Types.ObjectId;
|
|
60
|
+
} & {
|
|
61
|
+
__v: number;
|
|
62
|
+
}, "id"> & {
|
|
63
|
+
id: string;
|
|
64
|
+
}>;
|
|
65
|
+
subtitle?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
66
|
+
id: string;
|
|
67
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
68
|
+
_id: import("mongoose").Types.ObjectId;
|
|
69
|
+
} & {
|
|
70
|
+
__v: number;
|
|
71
|
+
}, "id"> & {
|
|
72
|
+
id: string;
|
|
73
|
+
}>;
|
|
74
|
+
tableSize?: import("mongoose").SchemaDefinitionProperty<number, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
75
|
+
id: string;
|
|
76
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
77
|
+
_id: import("mongoose").Types.ObjectId;
|
|
78
|
+
} & {
|
|
79
|
+
__v: number;
|
|
80
|
+
}, "id"> & {
|
|
81
|
+
id: string;
|
|
82
|
+
}>;
|
|
83
|
+
bet?: import("mongoose").SchemaDefinitionProperty<number, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
84
|
+
id: string;
|
|
85
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
86
|
+
_id: import("mongoose").Types.ObjectId;
|
|
87
|
+
} & {
|
|
88
|
+
__v: number;
|
|
89
|
+
}, "id"> & {
|
|
90
|
+
id: string;
|
|
91
|
+
}>;
|
|
92
|
+
ticketPrice?: import("mongoose").SchemaDefinitionProperty<number, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
93
|
+
id: string;
|
|
94
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
95
|
+
_id: import("mongoose").Types.ObjectId;
|
|
96
|
+
} & {
|
|
97
|
+
__v: number;
|
|
98
|
+
}, "id"> & {
|
|
99
|
+
id: string;
|
|
100
|
+
}>;
|
|
101
|
+
roomType?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
102
|
+
id: string;
|
|
103
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
104
|
+
_id: import("mongoose").Types.ObjectId;
|
|
105
|
+
} & {
|
|
106
|
+
__v: number;
|
|
107
|
+
}, "id"> & {
|
|
108
|
+
id: string;
|
|
109
|
+
}>;
|
|
110
|
+
gameType?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
111
|
+
id: string;
|
|
112
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
113
|
+
_id: import("mongoose").Types.ObjectId;
|
|
114
|
+
} & {
|
|
115
|
+
__v: number;
|
|
116
|
+
}, "id"> & {
|
|
117
|
+
id: string;
|
|
118
|
+
}>;
|
|
119
|
+
rulesType?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
120
|
+
id: string;
|
|
121
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
122
|
+
_id: import("mongoose").Types.ObjectId;
|
|
123
|
+
} & {
|
|
124
|
+
__v: number;
|
|
125
|
+
}, "id"> & {
|
|
126
|
+
id: string;
|
|
127
|
+
}>;
|
|
128
|
+
deckType?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
129
|
+
id: string;
|
|
130
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
131
|
+
_id: import("mongoose").Types.ObjectId;
|
|
132
|
+
} & {
|
|
133
|
+
__v: number;
|
|
134
|
+
}, "id"> & {
|
|
135
|
+
id: string;
|
|
136
|
+
}>;
|
|
137
|
+
isTemplate?: import("mongoose").SchemaDefinitionProperty<boolean, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
138
|
+
id: string;
|
|
139
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
140
|
+
_id: import("mongoose").Types.ObjectId;
|
|
141
|
+
} & {
|
|
142
|
+
__v: number;
|
|
143
|
+
}, "id"> & {
|
|
144
|
+
id: string;
|
|
145
|
+
}>;
|
|
146
|
+
templateId?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
147
|
+
id: string;
|
|
148
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
149
|
+
_id: import("mongoose").Types.ObjectId;
|
|
150
|
+
} & {
|
|
151
|
+
__v: number;
|
|
152
|
+
}, "id"> & {
|
|
153
|
+
id: string;
|
|
154
|
+
}>;
|
|
155
|
+
type?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
156
|
+
id: string;
|
|
157
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
158
|
+
_id: import("mongoose").Types.ObjectId;
|
|
159
|
+
} & {
|
|
160
|
+
__v: number;
|
|
161
|
+
}, "id"> & {
|
|
162
|
+
id: string;
|
|
163
|
+
}>;
|
|
164
|
+
description?: import("mongoose").SchemaDefinitionProperty<Record<string, string>, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
165
|
+
id: string;
|
|
166
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
167
|
+
_id: import("mongoose").Types.ObjectId;
|
|
168
|
+
} & {
|
|
169
|
+
__v: number;
|
|
170
|
+
}, "id"> & {
|
|
171
|
+
id: string;
|
|
172
|
+
}>;
|
|
173
|
+
participants?: import("mongoose").SchemaDefinitionProperty<ITournamentParticipant[], TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
174
|
+
id: string;
|
|
175
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
176
|
+
_id: import("mongoose").Types.ObjectId;
|
|
177
|
+
} & {
|
|
178
|
+
__v: number;
|
|
179
|
+
}, "id"> & {
|
|
180
|
+
id: string;
|
|
181
|
+
}>;
|
|
182
|
+
maxParticipants?: import("mongoose").SchemaDefinitionProperty<number, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
183
|
+
id: string;
|
|
184
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
185
|
+
_id: import("mongoose").Types.ObjectId;
|
|
186
|
+
} & {
|
|
187
|
+
__v: number;
|
|
188
|
+
}, "id"> & {
|
|
189
|
+
id: string;
|
|
190
|
+
}>;
|
|
191
|
+
status?: import("mongoose").SchemaDefinitionProperty<string, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
192
|
+
id: string;
|
|
193
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
194
|
+
_id: import("mongoose").Types.ObjectId;
|
|
195
|
+
} & {
|
|
196
|
+
__v: number;
|
|
197
|
+
}, "id"> & {
|
|
198
|
+
id: string;
|
|
199
|
+
}>;
|
|
200
|
+
winners?: import("mongoose").SchemaDefinitionProperty<ITournamentWinner[], TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
201
|
+
id: string;
|
|
202
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
203
|
+
_id: import("mongoose").Types.ObjectId;
|
|
204
|
+
} & {
|
|
205
|
+
__v: number;
|
|
206
|
+
}, "id"> & {
|
|
207
|
+
id: string;
|
|
208
|
+
}>;
|
|
209
|
+
createDate?: import("mongoose").SchemaDefinitionProperty<Date, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
210
|
+
id: string;
|
|
211
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
212
|
+
_id: import("mongoose").Types.ObjectId;
|
|
213
|
+
} & {
|
|
214
|
+
__v: number;
|
|
215
|
+
}, "id"> & {
|
|
216
|
+
id: string;
|
|
217
|
+
}>;
|
|
218
|
+
startDate?: import("mongoose").SchemaDefinitionProperty<Date, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
219
|
+
id: string;
|
|
220
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
221
|
+
_id: import("mongoose").Types.ObjectId;
|
|
222
|
+
} & {
|
|
223
|
+
__v: number;
|
|
224
|
+
}, "id"> & {
|
|
225
|
+
id: string;
|
|
226
|
+
}>;
|
|
227
|
+
finishDate?: import("mongoose").SchemaDefinitionProperty<Date, TournamentManyTablesRoom, Document<unknown, {}, TournamentManyTablesRoom, {
|
|
228
|
+
id: string;
|
|
229
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<TournamentManyTablesRoom & {
|
|
230
|
+
_id: import("mongoose").Types.ObjectId;
|
|
231
|
+
} & {
|
|
232
|
+
__v: number;
|
|
233
|
+
}, "id"> & {
|
|
234
|
+
id: string;
|
|
235
|
+
}>;
|
|
236
|
+
}, TournamentManyTablesRoom>;
|
|
237
|
+
//# sourceMappingURL=tournament_many_tables_rooms.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tournament_many_tables_rooms.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/tournament_many_tables_rooms.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAC;AAE1E,MAAM,MAAM,gCAAgC,GAAG,gBAAgB,CAAC,wBAAwB,CAAC,CAAC;AAE1F,qBACa,wBAAwB;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,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,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAGpC,YAAY,EAAE,KAAK,CAAC,sBAAsB,CAAC,CAAC;IAG5C,eAAe,EAAE,MAAM,CAAC;IAGxB,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;CACpB;AAED,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAAyD,CAAC"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.TournamentManyTablesRoomSchema = exports.TournamentManyTablesRoom = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
let TournamentManyTablesRoom = class TournamentManyTablesRoom {
|
|
15
|
+
};
|
|
16
|
+
exports.TournamentManyTablesRoom = TournamentManyTablesRoom;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, mongoose_1.Virtual)({
|
|
19
|
+
get: function () {
|
|
20
|
+
return this._id.toString();
|
|
21
|
+
},
|
|
22
|
+
}),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], TournamentManyTablesRoom.prototype, "tournamentId", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, mongoose_1.Prop)({ type: Object }),
|
|
27
|
+
__metadata("design:type", Object)
|
|
28
|
+
], TournamentManyTablesRoom.prototype, "title", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, mongoose_1.Prop)({ type: Object }),
|
|
31
|
+
__metadata("design:type", Object)
|
|
32
|
+
], TournamentManyTablesRoom.prototype, "subtitle", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, mongoose_1.Prop)(),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], TournamentManyTablesRoom.prototype, "tableSize", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, mongoose_1.Prop)(),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
|
+
], TournamentManyTablesRoom.prototype, "bet", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, mongoose_1.Prop)(),
|
|
43
|
+
__metadata("design:type", Number)
|
|
44
|
+
], TournamentManyTablesRoom.prototype, "ticketPrice", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, mongoose_1.Prop)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], TournamentManyTablesRoom.prototype, "roomType", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, mongoose_1.Prop)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], TournamentManyTablesRoom.prototype, "gameType", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, mongoose_1.Prop)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], TournamentManyTablesRoom.prototype, "rulesType", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, mongoose_1.Prop)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], TournamentManyTablesRoom.prototype, "deckType", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, mongoose_1.Prop)(),
|
|
63
|
+
__metadata("design:type", Boolean)
|
|
64
|
+
], TournamentManyTablesRoom.prototype, "isTemplate", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, mongoose_1.Prop)(),
|
|
67
|
+
__metadata("design:type", String)
|
|
68
|
+
], TournamentManyTablesRoom.prototype, "templateId", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, mongoose_1.Prop)(),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], TournamentManyTablesRoom.prototype, "type", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, mongoose_1.Prop)({ type: Object }),
|
|
75
|
+
__metadata("design:type", Object)
|
|
76
|
+
], TournamentManyTablesRoom.prototype, "description", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, mongoose_1.Prop)(),
|
|
79
|
+
__metadata("design:type", Array)
|
|
80
|
+
], TournamentManyTablesRoom.prototype, "participants", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, mongoose_1.Prop)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], TournamentManyTablesRoom.prototype, "maxParticipants", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, mongoose_1.Prop)(),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], TournamentManyTablesRoom.prototype, "status", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, mongoose_1.Prop)(),
|
|
91
|
+
__metadata("design:type", Array)
|
|
92
|
+
], TournamentManyTablesRoom.prototype, "winners", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, mongoose_1.Prop)(),
|
|
95
|
+
__metadata("design:type", Date)
|
|
96
|
+
], TournamentManyTablesRoom.prototype, "createDate", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, mongoose_1.Prop)(),
|
|
99
|
+
__metadata("design:type", Date)
|
|
100
|
+
], TournamentManyTablesRoom.prototype, "startDate", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, mongoose_1.Prop)(),
|
|
103
|
+
__metadata("design:type", Date)
|
|
104
|
+
], TournamentManyTablesRoom.prototype, "finishDate", void 0);
|
|
105
|
+
exports.TournamentManyTablesRoom = TournamentManyTablesRoom = __decorate([
|
|
106
|
+
(0, mongoose_1.Schema)({ collection: 'tournament_many_tables_rooms' })
|
|
107
|
+
], TournamentManyTablesRoom);
|
|
108
|
+
exports.TournamentManyTablesRoomSchema = mongoose_1.SchemaFactory.createForClass(TournamentManyTablesRoom);
|
|
109
|
+
//# sourceMappingURL=tournament_many_tables_rooms.schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tournament_many_tables_rooms.schema.js","sourceRoot":"","sources":["../../src/schemas/tournament_many_tables_rooms.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAAwE;AASjE,IAAM,wBAAwB,GAA9B,MAAM,wBAAwB;CAqEpC,CAAA;AArEY,4DAAwB;AAMxB;IALR,IAAA,kBAAO,EAAC;QACL,GAAG,EAAE;YACD,OAAO,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC;QAC/B,CAAC;KACJ,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,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,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6DACa;AAGpC;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;mCApER,wBAAwB;IADpC,IAAA,iBAAM,EAAC,EAAE,UAAU,EAAE,8BAA8B,EAAE,CAAC;GAC1C,wBAAwB,CAqEpC;AAEY,QAAA,8BAA8B,GAAG,wBAAa,CAAC,cAAc,CAAC,wBAAwB,CAAC,CAAC"}
|