jp.db.schemas 2.0.21 → 2.0.23
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/repositories/setting.repository.d.ts +2 -2
- package/dist/repositories/setting.repository.d.ts.map +1 -1
- package/dist/repositories/setting.repository.js +3 -3
- package/dist/repositories/setting.repository.js.map +1 -1
- package/dist/schemas/achievement.schema.d.ts +95 -3
- package/dist/schemas/achievement.schema.d.ts.map +1 -1
- package/dist/schemas/admin.schema.d.ts +41 -3
- package/dist/schemas/admin.schema.d.ts.map +1 -1
- package/dist/schemas/article.schema.d.ts +86 -3
- package/dist/schemas/article.schema.d.ts.map +1 -1
- package/dist/schemas/balance_history.schema.d.ts +86 -3
- package/dist/schemas/balance_history.schema.d.ts.map +1 -1
- package/dist/schemas/banner.schema.d.ts +95 -3
- package/dist/schemas/banner.schema.d.ts.map +1 -1
- package/dist/schemas/channel_message.schema.d.ts +68 -3
- package/dist/schemas/channel_message.schema.d.ts.map +1 -1
- package/dist/schemas/complain.schema.d.ts +113 -3
- package/dist/schemas/complain.schema.d.ts.map +1 -1
- package/dist/schemas/daily_bonus.schema.d.ts +64 -3
- package/dist/schemas/daily_bonus.schema.d.ts.map +1 -1
- package/dist/schemas/feature.schema.d.ts +59 -3
- package/dist/schemas/feature.schema.d.ts.map +1 -1
- package/dist/schemas/game_result.schema.d.ts +104 -3
- package/dist/schemas/game_result.schema.d.ts.map +1 -1
- package/dist/schemas/menu.schema.d.ts +95 -3
- package/dist/schemas/menu.schema.d.ts.map +1 -1
- package/dist/schemas/notification.schema.d.ts +158 -3
- package/dist/schemas/notification.schema.d.ts.map +1 -1
- package/dist/schemas/product.schema.d.ts +338 -3
- package/dist/schemas/product.schema.d.ts.map +1 -1
- package/dist/schemas/purchase.schema.d.ts +167 -3
- package/dist/schemas/purchase.schema.d.ts.map +1 -1
- package/dist/schemas/purchase_channel.schema.d.ts +68 -3
- package/dist/schemas/purchase_channel.schema.d.ts.map +1 -1
- package/dist/schemas/rating.schema.d.ts +113 -3
- package/dist/schemas/rating.schema.d.ts.map +1 -1
- package/dist/schemas/rooms.schema.d.ts +149 -3
- package/dist/schemas/rooms.schema.d.ts.map +1 -1
- package/dist/schemas/rule.schema.d.ts +54 -3
- package/dist/schemas/rule.schema.d.ts.map +1 -1
- package/dist/schemas/scheduled_tournament.schema.d.ts +212 -3
- package/dist/schemas/scheduled_tournament.schema.d.ts.map +1 -1
- package/dist/schemas/server.schema.d.ts +41 -3
- package/dist/schemas/server.schema.d.ts.map +1 -1
- package/dist/schemas/setting.schema.d.ts +143 -5
- package/dist/schemas/setting.schema.d.ts.map +1 -1
- package/dist/schemas/setting.schema.js +4 -0
- package/dist/schemas/setting.schema.js.map +1 -1
- package/dist/schemas/simple_rooms.schema.d.ts +113 -3
- package/dist/schemas/simple_rooms.schema.d.ts.map +1 -1
- package/dist/schemas/tournament_many_tables_rooms.schema.d.ts +212 -3
- package/dist/schemas/tournament_many_tables_rooms.schema.d.ts.map +1 -1
- package/dist/schemas/tournament_one_table_rooms.schema.d.ts +203 -3
- package/dist/schemas/tournament_one_table_rooms.schema.d.ts.map +1 -1
- package/dist/schemas/user.fb.schema.d.ts +86 -3
- package/dist/schemas/user.fb.schema.d.ts.map +1 -1
- package/dist/schemas/user.google.schema.d.ts +59 -3
- package/dist/schemas/user.google.schema.d.ts.map +1 -1
- package/dist/schemas/user.ok.schema.d.ts +136 -6
- package/dist/schemas/user.ok.schema.d.ts.map +1 -1
- package/dist/schemas/user.schema.d.ts +320 -3
- package/dist/schemas/user.schema.d.ts.map +1 -1
- package/dist/schemas/user.tg.schema.d.ts +39 -3
- package/dist/schemas/user.tg.schema.d.ts.map +1 -1
- package/dist/schemas/user.vk.schema.d.ts +98 -6
- package/dist/schemas/user.vk.schema.d.ts.map +1 -1
- package/dist/schemas/user.ya.schema.d.ts +59 -3
- package/dist/schemas/user.ya.schema.d.ts.map +1 -1
- package/dist/schemas/welcome.schema.d.ts +54 -3
- package/dist/schemas/welcome.schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/repositories/setting.repository.ts +2 -2
- package/src/schemas/setting.schema.ts +5 -2
|
@@ -18,13 +18,168 @@ export declare class Notification {
|
|
|
18
18
|
channels: string;
|
|
19
19
|
game?: string;
|
|
20
20
|
}
|
|
21
|
-
export declare const NotificationSchema: import("mongoose").Schema<Notification, import("mongoose").Model<Notification, any, any, any, Document<unknown, any, Notification, any> & Notification & {
|
|
21
|
+
export declare const NotificationSchema: import("mongoose").Schema<Notification, import("mongoose").Model<Notification, any, any, any, (Document<unknown, any, Notification, any, import("mongoose").DefaultSchemaOptions> & Notification & {
|
|
22
22
|
_id: import("mongoose").Types.ObjectId;
|
|
23
23
|
} & {
|
|
24
24
|
__v: number;
|
|
25
|
-
}
|
|
25
|
+
} & {
|
|
26
|
+
id: string;
|
|
27
|
+
}) | (Document<unknown, any, Notification, any, import("mongoose").DefaultSchemaOptions> & Notification & {
|
|
28
|
+
_id: import("mongoose").Types.ObjectId;
|
|
29
|
+
} & {
|
|
30
|
+
__v: number;
|
|
31
|
+
}), any, Notification>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Notification, Document<unknown, {}, Notification, {
|
|
32
|
+
id: string;
|
|
33
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
26
34
|
_id: import("mongoose").Types.ObjectId;
|
|
27
35
|
} & {
|
|
28
36
|
__v: number;
|
|
29
|
-
}
|
|
37
|
+
}, "id"> & {
|
|
38
|
+
id: string;
|
|
39
|
+
}, {
|
|
40
|
+
readonly notificationId?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
41
|
+
id: string;
|
|
42
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
43
|
+
_id: import("mongoose").Types.ObjectId;
|
|
44
|
+
} & {
|
|
45
|
+
__v: number;
|
|
46
|
+
}, "id"> & {
|
|
47
|
+
id: string;
|
|
48
|
+
}>;
|
|
49
|
+
title?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
50
|
+
id: string;
|
|
51
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
52
|
+
_id: import("mongoose").Types.ObjectId;
|
|
53
|
+
} & {
|
|
54
|
+
__v: number;
|
|
55
|
+
}, "id"> & {
|
|
56
|
+
id: string;
|
|
57
|
+
}>;
|
|
58
|
+
titleEn?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
59
|
+
id: string;
|
|
60
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
61
|
+
_id: import("mongoose").Types.ObjectId;
|
|
62
|
+
} & {
|
|
63
|
+
__v: number;
|
|
64
|
+
}, "id"> & {
|
|
65
|
+
id: string;
|
|
66
|
+
}>;
|
|
67
|
+
description?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
68
|
+
id: string;
|
|
69
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
70
|
+
_id: import("mongoose").Types.ObjectId;
|
|
71
|
+
} & {
|
|
72
|
+
__v: number;
|
|
73
|
+
}, "id"> & {
|
|
74
|
+
id: string;
|
|
75
|
+
}>;
|
|
76
|
+
descriptionEn?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
77
|
+
id: string;
|
|
78
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
79
|
+
_id: import("mongoose").Types.ObjectId;
|
|
80
|
+
} & {
|
|
81
|
+
__v: number;
|
|
82
|
+
}, "id"> & {
|
|
83
|
+
id: string;
|
|
84
|
+
}>;
|
|
85
|
+
createDate?: import("mongoose").SchemaDefinitionProperty<Date, Notification, Document<unknown, {}, Notification, {
|
|
86
|
+
id: string;
|
|
87
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
88
|
+
_id: import("mongoose").Types.ObjectId;
|
|
89
|
+
} & {
|
|
90
|
+
__v: number;
|
|
91
|
+
}, "id"> & {
|
|
92
|
+
id: string;
|
|
93
|
+
}>;
|
|
94
|
+
likeCount?: import("mongoose").SchemaDefinitionProperty<number, Notification, Document<unknown, {}, Notification, {
|
|
95
|
+
id: string;
|
|
96
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
97
|
+
_id: import("mongoose").Types.ObjectId;
|
|
98
|
+
} & {
|
|
99
|
+
__v: number;
|
|
100
|
+
}, "id"> & {
|
|
101
|
+
id: string;
|
|
102
|
+
}>;
|
|
103
|
+
linkVK?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
104
|
+
id: string;
|
|
105
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
106
|
+
_id: import("mongoose").Types.ObjectId;
|
|
107
|
+
} & {
|
|
108
|
+
__v: number;
|
|
109
|
+
}, "id"> & {
|
|
110
|
+
id: string;
|
|
111
|
+
}>;
|
|
112
|
+
linkOK?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
113
|
+
id: string;
|
|
114
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
115
|
+
_id: import("mongoose").Types.ObjectId;
|
|
116
|
+
} & {
|
|
117
|
+
__v: number;
|
|
118
|
+
}, "id"> & {
|
|
119
|
+
id: string;
|
|
120
|
+
}>;
|
|
121
|
+
linkYA?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
122
|
+
id: string;
|
|
123
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
124
|
+
_id: import("mongoose").Types.ObjectId;
|
|
125
|
+
} & {
|
|
126
|
+
__v: number;
|
|
127
|
+
}, "id"> & {
|
|
128
|
+
id: string;
|
|
129
|
+
}>;
|
|
130
|
+
linkWeb?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
131
|
+
id: string;
|
|
132
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
133
|
+
_id: import("mongoose").Types.ObjectId;
|
|
134
|
+
} & {
|
|
135
|
+
__v: number;
|
|
136
|
+
}, "id"> & {
|
|
137
|
+
id: string;
|
|
138
|
+
}>;
|
|
139
|
+
linkAndroid?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
140
|
+
id: string;
|
|
141
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
142
|
+
_id: import("mongoose").Types.ObjectId;
|
|
143
|
+
} & {
|
|
144
|
+
__v: number;
|
|
145
|
+
}, "id"> & {
|
|
146
|
+
id: string;
|
|
147
|
+
}>;
|
|
148
|
+
linkTG?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
149
|
+
id: string;
|
|
150
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
151
|
+
_id: import("mongoose").Types.ObjectId;
|
|
152
|
+
} & {
|
|
153
|
+
__v: number;
|
|
154
|
+
}, "id"> & {
|
|
155
|
+
id: string;
|
|
156
|
+
}>;
|
|
157
|
+
category?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
158
|
+
id: string;
|
|
159
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
160
|
+
_id: import("mongoose").Types.ObjectId;
|
|
161
|
+
} & {
|
|
162
|
+
__v: number;
|
|
163
|
+
}, "id"> & {
|
|
164
|
+
id: string;
|
|
165
|
+
}>;
|
|
166
|
+
channels?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
167
|
+
id: string;
|
|
168
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
169
|
+
_id: import("mongoose").Types.ObjectId;
|
|
170
|
+
} & {
|
|
171
|
+
__v: number;
|
|
172
|
+
}, "id"> & {
|
|
173
|
+
id: string;
|
|
174
|
+
}>;
|
|
175
|
+
game?: import("mongoose").SchemaDefinitionProperty<string, Notification, Document<unknown, {}, Notification, {
|
|
176
|
+
id: string;
|
|
177
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Notification & {
|
|
178
|
+
_id: import("mongoose").Types.ObjectId;
|
|
179
|
+
} & {
|
|
180
|
+
__v: number;
|
|
181
|
+
}, "id"> & {
|
|
182
|
+
id: string;
|
|
183
|
+
}>;
|
|
184
|
+
}, Notification>;
|
|
30
185
|
//# sourceMappingURL=notification.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/notification.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,YAAY,CAAC,CAAC;AAElE,qBACa,YAAY;IAMrB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAGhC,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,UAAU,EAAE,IAAI,CAAC;IAGjB,SAAS,EAAE,MAAM,CAAC;IAGlB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"notification.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/notification.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,YAAY,CAAC,CAAC;AAElE,qBACa,YAAY;IAMrB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAGhC,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,UAAU,EAAE,IAAI,CAAC;IAGjB,SAAS,EAAE,MAAM,CAAC;IAGlB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAA6C,CAAC"}
|
|
@@ -38,13 +38,348 @@ export declare class Product {
|
|
|
38
38
|
type?: string;
|
|
39
39
|
game?: string;
|
|
40
40
|
}
|
|
41
|
-
export declare const ProductSchema: import("mongoose").Schema<Product, import("mongoose").Model<Product, any, any, any, Document<unknown, any, Product, any> & Product & {
|
|
41
|
+
export declare const ProductSchema: import("mongoose").Schema<Product, import("mongoose").Model<Product, any, any, any, (Document<unknown, any, Product, any, import("mongoose").DefaultSchemaOptions> & Product & {
|
|
42
42
|
_id: import("mongoose").Types.ObjectId;
|
|
43
43
|
} & {
|
|
44
44
|
__v: number;
|
|
45
|
-
}
|
|
45
|
+
} & {
|
|
46
|
+
id: string;
|
|
47
|
+
}) | (Document<unknown, any, Product, any, import("mongoose").DefaultSchemaOptions> & Product & {
|
|
48
|
+
_id: import("mongoose").Types.ObjectId;
|
|
49
|
+
} & {
|
|
50
|
+
__v: number;
|
|
51
|
+
}), any, Product>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Product, Document<unknown, {}, Product, {
|
|
52
|
+
id: string;
|
|
53
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
46
54
|
_id: import("mongoose").Types.ObjectId;
|
|
47
55
|
} & {
|
|
48
56
|
__v: number;
|
|
49
|
-
}
|
|
57
|
+
}, "id"> & {
|
|
58
|
+
id: string;
|
|
59
|
+
}, {
|
|
60
|
+
readonly productId?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
61
|
+
id: string;
|
|
62
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
63
|
+
_id: import("mongoose").Types.ObjectId;
|
|
64
|
+
} & {
|
|
65
|
+
__v: number;
|
|
66
|
+
}, "id"> & {
|
|
67
|
+
id: string;
|
|
68
|
+
}>;
|
|
69
|
+
title?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
70
|
+
id: string;
|
|
71
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
72
|
+
_id: import("mongoose").Types.ObjectId;
|
|
73
|
+
} & {
|
|
74
|
+
__v: number;
|
|
75
|
+
}, "id"> & {
|
|
76
|
+
id: string;
|
|
77
|
+
}>;
|
|
78
|
+
titleEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
79
|
+
id: string;
|
|
80
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
81
|
+
_id: import("mongoose").Types.ObjectId;
|
|
82
|
+
} & {
|
|
83
|
+
__v: number;
|
|
84
|
+
}, "id"> & {
|
|
85
|
+
id: string;
|
|
86
|
+
}>;
|
|
87
|
+
subtitle?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
88
|
+
id: string;
|
|
89
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
90
|
+
_id: import("mongoose").Types.ObjectId;
|
|
91
|
+
} & {
|
|
92
|
+
__v: number;
|
|
93
|
+
}, "id"> & {
|
|
94
|
+
id: string;
|
|
95
|
+
}>;
|
|
96
|
+
subtitleEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
97
|
+
id: string;
|
|
98
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
99
|
+
_id: import("mongoose").Types.ObjectId;
|
|
100
|
+
} & {
|
|
101
|
+
__v: number;
|
|
102
|
+
}, "id"> & {
|
|
103
|
+
id: string;
|
|
104
|
+
}>;
|
|
105
|
+
description?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
106
|
+
id: string;
|
|
107
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
108
|
+
_id: import("mongoose").Types.ObjectId;
|
|
109
|
+
} & {
|
|
110
|
+
__v: number;
|
|
111
|
+
}, "id"> & {
|
|
112
|
+
id: string;
|
|
113
|
+
}>;
|
|
114
|
+
descriptionEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
115
|
+
id: string;
|
|
116
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
117
|
+
_id: import("mongoose").Types.ObjectId;
|
|
118
|
+
} & {
|
|
119
|
+
__v: number;
|
|
120
|
+
}, "id"> & {
|
|
121
|
+
id: string;
|
|
122
|
+
}>;
|
|
123
|
+
descriptionAcquired?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
124
|
+
id: string;
|
|
125
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
126
|
+
_id: import("mongoose").Types.ObjectId;
|
|
127
|
+
} & {
|
|
128
|
+
__v: number;
|
|
129
|
+
}, "id"> & {
|
|
130
|
+
id: string;
|
|
131
|
+
}>;
|
|
132
|
+
descriptionAcquiredEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
133
|
+
id: string;
|
|
134
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
135
|
+
_id: import("mongoose").Types.ObjectId;
|
|
136
|
+
} & {
|
|
137
|
+
__v: number;
|
|
138
|
+
}, "id"> & {
|
|
139
|
+
id: string;
|
|
140
|
+
}>;
|
|
141
|
+
buttonAcquired?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
142
|
+
id: string;
|
|
143
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
144
|
+
_id: import("mongoose").Types.ObjectId;
|
|
145
|
+
} & {
|
|
146
|
+
__v: number;
|
|
147
|
+
}, "id"> & {
|
|
148
|
+
id: string;
|
|
149
|
+
}>;
|
|
150
|
+
buttonAcquiredEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
151
|
+
id: string;
|
|
152
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
153
|
+
_id: import("mongoose").Types.ObjectId;
|
|
154
|
+
} & {
|
|
155
|
+
__v: number;
|
|
156
|
+
}, "id"> & {
|
|
157
|
+
id: string;
|
|
158
|
+
}>;
|
|
159
|
+
button?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
160
|
+
id: string;
|
|
161
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
162
|
+
_id: import("mongoose").Types.ObjectId;
|
|
163
|
+
} & {
|
|
164
|
+
__v: number;
|
|
165
|
+
}, "id"> & {
|
|
166
|
+
id: string;
|
|
167
|
+
}>;
|
|
168
|
+
buttonEn?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
169
|
+
id: string;
|
|
170
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
171
|
+
_id: import("mongoose").Types.ObjectId;
|
|
172
|
+
} & {
|
|
173
|
+
__v: number;
|
|
174
|
+
}, "id"> & {
|
|
175
|
+
id: string;
|
|
176
|
+
}>;
|
|
177
|
+
link?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
178
|
+
id: string;
|
|
179
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
180
|
+
_id: import("mongoose").Types.ObjectId;
|
|
181
|
+
} & {
|
|
182
|
+
__v: number;
|
|
183
|
+
}, "id"> & {
|
|
184
|
+
id: string;
|
|
185
|
+
}>;
|
|
186
|
+
linkVK?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
187
|
+
id: string;
|
|
188
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
189
|
+
_id: import("mongoose").Types.ObjectId;
|
|
190
|
+
} & {
|
|
191
|
+
__v: number;
|
|
192
|
+
}, "id"> & {
|
|
193
|
+
id: string;
|
|
194
|
+
}>;
|
|
195
|
+
channels?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
196
|
+
id: string;
|
|
197
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
198
|
+
_id: import("mongoose").Types.ObjectId;
|
|
199
|
+
} & {
|
|
200
|
+
__v: number;
|
|
201
|
+
}, "id"> & {
|
|
202
|
+
id: string;
|
|
203
|
+
}>;
|
|
204
|
+
code?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
205
|
+
id: string;
|
|
206
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
207
|
+
_id: import("mongoose").Types.ObjectId;
|
|
208
|
+
} & {
|
|
209
|
+
__v: number;
|
|
210
|
+
}, "id"> & {
|
|
211
|
+
id: string;
|
|
212
|
+
}>;
|
|
213
|
+
position?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
214
|
+
id: string;
|
|
215
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
216
|
+
_id: import("mongoose").Types.ObjectId;
|
|
217
|
+
} & {
|
|
218
|
+
__v: number;
|
|
219
|
+
}, "id"> & {
|
|
220
|
+
id: string;
|
|
221
|
+
}>;
|
|
222
|
+
active?: import("mongoose").SchemaDefinitionProperty<boolean, Product, Document<unknown, {}, Product, {
|
|
223
|
+
id: string;
|
|
224
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
225
|
+
_id: import("mongoose").Types.ObjectId;
|
|
226
|
+
} & {
|
|
227
|
+
__v: number;
|
|
228
|
+
}, "id"> & {
|
|
229
|
+
id: string;
|
|
230
|
+
}>;
|
|
231
|
+
image?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
232
|
+
id: string;
|
|
233
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
234
|
+
_id: import("mongoose").Types.ObjectId;
|
|
235
|
+
} & {
|
|
236
|
+
__v: number;
|
|
237
|
+
}, "id"> & {
|
|
238
|
+
id: string;
|
|
239
|
+
}>;
|
|
240
|
+
icon?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
241
|
+
id: string;
|
|
242
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
243
|
+
_id: import("mongoose").Types.ObjectId;
|
|
244
|
+
} & {
|
|
245
|
+
__v: number;
|
|
246
|
+
}, "id"> & {
|
|
247
|
+
id: string;
|
|
248
|
+
}>;
|
|
249
|
+
external?: import("mongoose").SchemaDefinitionProperty<boolean, Product, Document<unknown, {}, Product, {
|
|
250
|
+
id: string;
|
|
251
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
252
|
+
_id: import("mongoose").Types.ObjectId;
|
|
253
|
+
} & {
|
|
254
|
+
__v: number;
|
|
255
|
+
}, "id"> & {
|
|
256
|
+
id: string;
|
|
257
|
+
}>;
|
|
258
|
+
isConsumable?: import("mongoose").SchemaDefinitionProperty<boolean, Product, Document<unknown, {}, Product, {
|
|
259
|
+
id: string;
|
|
260
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
261
|
+
_id: import("mongoose").Types.ObjectId;
|
|
262
|
+
} & {
|
|
263
|
+
__v: number;
|
|
264
|
+
}, "id"> & {
|
|
265
|
+
id: string;
|
|
266
|
+
}>;
|
|
267
|
+
parentId?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
268
|
+
id: string;
|
|
269
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
270
|
+
_id: import("mongoose").Types.ObjectId;
|
|
271
|
+
} & {
|
|
272
|
+
__v: number;
|
|
273
|
+
}, "id"> & {
|
|
274
|
+
id: string;
|
|
275
|
+
}>;
|
|
276
|
+
price?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
277
|
+
id: string;
|
|
278
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
279
|
+
_id: import("mongoose").Types.ObjectId;
|
|
280
|
+
} & {
|
|
281
|
+
__v: number;
|
|
282
|
+
}, "id"> & {
|
|
283
|
+
id: string;
|
|
284
|
+
}>;
|
|
285
|
+
priceVK?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
286
|
+
id: string;
|
|
287
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
288
|
+
_id: import("mongoose").Types.ObjectId;
|
|
289
|
+
} & {
|
|
290
|
+
__v: number;
|
|
291
|
+
}, "id"> & {
|
|
292
|
+
id: string;
|
|
293
|
+
}>;
|
|
294
|
+
priceOK?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
295
|
+
id: string;
|
|
296
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
297
|
+
_id: import("mongoose").Types.ObjectId;
|
|
298
|
+
} & {
|
|
299
|
+
__v: number;
|
|
300
|
+
}, "id"> & {
|
|
301
|
+
id: string;
|
|
302
|
+
}>;
|
|
303
|
+
priceYA?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
304
|
+
id: string;
|
|
305
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
306
|
+
_id: import("mongoose").Types.ObjectId;
|
|
307
|
+
} & {
|
|
308
|
+
__v: number;
|
|
309
|
+
}, "id"> & {
|
|
310
|
+
id: string;
|
|
311
|
+
}>;
|
|
312
|
+
priceGooglePlay?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
313
|
+
id: string;
|
|
314
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
315
|
+
_id: import("mongoose").Types.ObjectId;
|
|
316
|
+
} & {
|
|
317
|
+
__v: number;
|
|
318
|
+
}, "id"> & {
|
|
319
|
+
id: string;
|
|
320
|
+
}>;
|
|
321
|
+
priceFB?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
322
|
+
id: string;
|
|
323
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
324
|
+
_id: import("mongoose").Types.ObjectId;
|
|
325
|
+
} & {
|
|
326
|
+
__v: number;
|
|
327
|
+
}, "id"> & {
|
|
328
|
+
id: string;
|
|
329
|
+
}>;
|
|
330
|
+
priceTG?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
331
|
+
id: string;
|
|
332
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
333
|
+
_id: import("mongoose").Types.ObjectId;
|
|
334
|
+
} & {
|
|
335
|
+
__v: number;
|
|
336
|
+
}, "id"> & {
|
|
337
|
+
id: string;
|
|
338
|
+
}>;
|
|
339
|
+
priceRuStore?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
340
|
+
id: string;
|
|
341
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
342
|
+
_id: import("mongoose").Types.ObjectId;
|
|
343
|
+
} & {
|
|
344
|
+
__v: number;
|
|
345
|
+
}, "id"> & {
|
|
346
|
+
id: string;
|
|
347
|
+
}>;
|
|
348
|
+
value?: import("mongoose").SchemaDefinitionProperty<number, Product, Document<unknown, {}, Product, {
|
|
349
|
+
id: string;
|
|
350
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
351
|
+
_id: import("mongoose").Types.ObjectId;
|
|
352
|
+
} & {
|
|
353
|
+
__v: number;
|
|
354
|
+
}, "id"> & {
|
|
355
|
+
id: string;
|
|
356
|
+
}>;
|
|
357
|
+
period?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
358
|
+
id: string;
|
|
359
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
360
|
+
_id: import("mongoose").Types.ObjectId;
|
|
361
|
+
} & {
|
|
362
|
+
__v: number;
|
|
363
|
+
}, "id"> & {
|
|
364
|
+
id: string;
|
|
365
|
+
}>;
|
|
366
|
+
type?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
367
|
+
id: string;
|
|
368
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
369
|
+
_id: import("mongoose").Types.ObjectId;
|
|
370
|
+
} & {
|
|
371
|
+
__v: number;
|
|
372
|
+
}, "id"> & {
|
|
373
|
+
id: string;
|
|
374
|
+
}>;
|
|
375
|
+
game?: import("mongoose").SchemaDefinitionProperty<string, Product, Document<unknown, {}, Product, {
|
|
376
|
+
id: string;
|
|
377
|
+
}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & Omit<Product & {
|
|
378
|
+
_id: import("mongoose").Types.ObjectId;
|
|
379
|
+
} & {
|
|
380
|
+
__v: number;
|
|
381
|
+
}, "id"> & {
|
|
382
|
+
id: string;
|
|
383
|
+
}>;
|
|
384
|
+
}, Product>;
|
|
50
385
|
//# sourceMappingURL=product.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,mBAAmB,EAAE,MAAM,CAAC;IAG5B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,OAAO,CAAC;IAGhB,KAAK,EAAE,MAAM,CAAC;IAGd,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,YAAY,EAAE,OAAO,CAAC;IAKtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGzB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"product.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/product.schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEtD,MAAM,MAAM,eAAe,GAAG,gBAAgB,CAAC,OAAO,CAAC,CAAC;AAExD,qBACa,OAAO;IAMhB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAG3B,KAAK,EAAE,MAAM,CAAC;IAGd,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,MAAM,CAAC;IAGjB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,aAAa,EAAE,MAAM,CAAC;IAGtB,mBAAmB,EAAE,MAAM,CAAC;IAG5B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,MAAM,EAAE,MAAM,CAAC;IAGf,QAAQ,EAAE,MAAM,CAAC;IAGjB,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,OAAO,CAAC;IAGhB,KAAK,EAAE,MAAM,CAAC;IAGd,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,YAAY,EAAE,OAAO,CAAC;IAKtB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAGzB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,eAAe,CAAC,EAAE,MAAM,CAAC;IAGzB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,IAAI,CAAC,EAAE,MAAM,CAAC;IAGd,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAwC,CAAC"}
|