@the-inkwell/shared 0.2.189 → 0.2.191
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/constants.d.ts +28 -24
- package/dist/constants.js +25 -24
- package/dist/constants.js.map +1 -1
- package/dist/schema/admin/actions/index.d.ts +7 -6
- package/dist/schema/admin/candidacies/index.d.ts +1 -0
- package/dist/schema/admin/matches/index.d.ts +3 -383
- package/dist/schema/admin/matches/index.js +17 -23
- package/dist/schema/admin/matches/index.js.map +1 -1
- package/dist/schema/admin/matches/matches.d.ts +384 -0
- package/dist/schema/admin/matches/matches.js +27 -0
- package/dist/schema/admin/matches/matches.js.map +1 -0
- package/dist/schema/admin/matches/positions.d.ts +25 -0
- package/dist/schema/admin/matches/positions.js +20 -0
- package/dist/schema/admin/matches/positions.js.map +1 -0
- package/dist/schema/admin/matches/previews.d.ts +75 -0
- package/dist/schema/admin/matches/previews.js +62 -0
- package/dist/schema/admin/matches/previews.js.map +1 -0
- package/dist/schema/admin/matches/utils.d.ts +9 -0
- package/dist/schema/admin/matches/utils.js +22 -0
- package/dist/schema/admin/matches/utils.js.map +1 -0
- package/dist/schema/core.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,383 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
5
|
-
name: "id";
|
|
6
|
-
tableName: "matches";
|
|
7
|
-
dataType: "string";
|
|
8
|
-
columnType: "PgUUID";
|
|
9
|
-
data: string;
|
|
10
|
-
driverParam: string;
|
|
11
|
-
notNull: true;
|
|
12
|
-
hasDefault: true;
|
|
13
|
-
isPrimaryKey: true;
|
|
14
|
-
isAutoincrement: false;
|
|
15
|
-
hasRuntimeDefault: false;
|
|
16
|
-
enumValues: undefined;
|
|
17
|
-
baseColumn: never;
|
|
18
|
-
identity: undefined;
|
|
19
|
-
generated: undefined;
|
|
20
|
-
}, {}, {}>;
|
|
21
|
-
personId: import("drizzle-orm/pg-core").PgColumn<{
|
|
22
|
-
name: "personId";
|
|
23
|
-
tableName: "matches";
|
|
24
|
-
dataType: "string";
|
|
25
|
-
columnType: "PgUUID";
|
|
26
|
-
data: string;
|
|
27
|
-
driverParam: string;
|
|
28
|
-
notNull: true;
|
|
29
|
-
hasDefault: false;
|
|
30
|
-
isPrimaryKey: false;
|
|
31
|
-
isAutoincrement: false;
|
|
32
|
-
hasRuntimeDefault: false;
|
|
33
|
-
enumValues: undefined;
|
|
34
|
-
baseColumn: never;
|
|
35
|
-
identity: undefined;
|
|
36
|
-
generated: undefined;
|
|
37
|
-
}, {}, {}>;
|
|
38
|
-
positionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
39
|
-
name: "positionId";
|
|
40
|
-
tableName: "matches";
|
|
41
|
-
dataType: "string";
|
|
42
|
-
columnType: "PgUUID";
|
|
43
|
-
data: string;
|
|
44
|
-
driverParam: string;
|
|
45
|
-
notNull: true;
|
|
46
|
-
hasDefault: false;
|
|
47
|
-
isPrimaryKey: false;
|
|
48
|
-
isAutoincrement: false;
|
|
49
|
-
hasRuntimeDefault: false;
|
|
50
|
-
enumValues: undefined;
|
|
51
|
-
baseColumn: never;
|
|
52
|
-
identity: undefined;
|
|
53
|
-
generated: undefined;
|
|
54
|
-
}, {}, {}>;
|
|
55
|
-
campaignId: import("drizzle-orm/pg-core").PgColumn<{
|
|
56
|
-
name: "campaignId";
|
|
57
|
-
tableName: "matches";
|
|
58
|
-
dataType: "string";
|
|
59
|
-
columnType: "PgUUID";
|
|
60
|
-
data: string;
|
|
61
|
-
driverParam: string;
|
|
62
|
-
notNull: false;
|
|
63
|
-
hasDefault: false;
|
|
64
|
-
isPrimaryKey: false;
|
|
65
|
-
isAutoincrement: false;
|
|
66
|
-
hasRuntimeDefault: false;
|
|
67
|
-
enumValues: undefined;
|
|
68
|
-
baseColumn: never;
|
|
69
|
-
identity: undefined;
|
|
70
|
-
generated: undefined;
|
|
71
|
-
}, {}, {}>;
|
|
72
|
-
criteria: import("drizzle-orm/pg-core").PgColumn<{
|
|
73
|
-
name: "criteria";
|
|
74
|
-
tableName: "matches";
|
|
75
|
-
dataType: "json";
|
|
76
|
-
columnType: "PgJsonb";
|
|
77
|
-
data: {
|
|
78
|
-
person: import("../../../utils").MatchCriteria;
|
|
79
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
80
|
-
};
|
|
81
|
-
driverParam: unknown;
|
|
82
|
-
notNull: false;
|
|
83
|
-
hasDefault: false;
|
|
84
|
-
isPrimaryKey: false;
|
|
85
|
-
isAutoincrement: false;
|
|
86
|
-
hasRuntimeDefault: false;
|
|
87
|
-
enumValues: undefined;
|
|
88
|
-
baseColumn: never;
|
|
89
|
-
identity: undefined;
|
|
90
|
-
generated: undefined;
|
|
91
|
-
}, {}, {
|
|
92
|
-
$type: {
|
|
93
|
-
person: import("../../../utils").MatchCriteria;
|
|
94
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
95
|
-
};
|
|
96
|
-
}>;
|
|
97
|
-
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
98
|
-
name: "createdAt";
|
|
99
|
-
tableName: "matches";
|
|
100
|
-
dataType: "date";
|
|
101
|
-
columnType: "PgTimestamp";
|
|
102
|
-
data: Date;
|
|
103
|
-
driverParam: string;
|
|
104
|
-
notNull: true;
|
|
105
|
-
hasDefault: true;
|
|
106
|
-
isPrimaryKey: false;
|
|
107
|
-
isAutoincrement: false;
|
|
108
|
-
hasRuntimeDefault: false;
|
|
109
|
-
enumValues: undefined;
|
|
110
|
-
baseColumn: never;
|
|
111
|
-
identity: undefined;
|
|
112
|
-
generated: undefined;
|
|
113
|
-
}, {}, {}>;
|
|
114
|
-
}, undefined, undefined>;
|
|
115
|
-
export declare const AdminMatchSelectSchema: import("drizzle-zod").BuildSchema<"select", {
|
|
116
|
-
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
117
|
-
name: "id";
|
|
118
|
-
tableName: "matches";
|
|
119
|
-
dataType: "string";
|
|
120
|
-
columnType: "PgUUID";
|
|
121
|
-
data: string;
|
|
122
|
-
driverParam: string;
|
|
123
|
-
notNull: true;
|
|
124
|
-
hasDefault: true;
|
|
125
|
-
isPrimaryKey: true;
|
|
126
|
-
isAutoincrement: false;
|
|
127
|
-
hasRuntimeDefault: false;
|
|
128
|
-
enumValues: undefined;
|
|
129
|
-
baseColumn: never;
|
|
130
|
-
identity: undefined;
|
|
131
|
-
generated: undefined;
|
|
132
|
-
}, {}, {}>;
|
|
133
|
-
personId: import("drizzle-orm/pg-core").PgColumn<{
|
|
134
|
-
name: "personId";
|
|
135
|
-
tableName: "matches";
|
|
136
|
-
dataType: "string";
|
|
137
|
-
columnType: "PgUUID";
|
|
138
|
-
data: string;
|
|
139
|
-
driverParam: string;
|
|
140
|
-
notNull: true;
|
|
141
|
-
hasDefault: false;
|
|
142
|
-
isPrimaryKey: false;
|
|
143
|
-
isAutoincrement: false;
|
|
144
|
-
hasRuntimeDefault: false;
|
|
145
|
-
enumValues: undefined;
|
|
146
|
-
baseColumn: never;
|
|
147
|
-
identity: undefined;
|
|
148
|
-
generated: undefined;
|
|
149
|
-
}, {}, {}>;
|
|
150
|
-
positionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
151
|
-
name: "positionId";
|
|
152
|
-
tableName: "matches";
|
|
153
|
-
dataType: "string";
|
|
154
|
-
columnType: "PgUUID";
|
|
155
|
-
data: string;
|
|
156
|
-
driverParam: string;
|
|
157
|
-
notNull: true;
|
|
158
|
-
hasDefault: false;
|
|
159
|
-
isPrimaryKey: false;
|
|
160
|
-
isAutoincrement: false;
|
|
161
|
-
hasRuntimeDefault: false;
|
|
162
|
-
enumValues: undefined;
|
|
163
|
-
baseColumn: never;
|
|
164
|
-
identity: undefined;
|
|
165
|
-
generated: undefined;
|
|
166
|
-
}, {}, {}>;
|
|
167
|
-
campaignId: import("drizzle-orm/pg-core").PgColumn<{
|
|
168
|
-
name: "campaignId";
|
|
169
|
-
tableName: "matches";
|
|
170
|
-
dataType: "string";
|
|
171
|
-
columnType: "PgUUID";
|
|
172
|
-
data: string;
|
|
173
|
-
driverParam: string;
|
|
174
|
-
notNull: false;
|
|
175
|
-
hasDefault: false;
|
|
176
|
-
isPrimaryKey: false;
|
|
177
|
-
isAutoincrement: false;
|
|
178
|
-
hasRuntimeDefault: false;
|
|
179
|
-
enumValues: undefined;
|
|
180
|
-
baseColumn: never;
|
|
181
|
-
identity: undefined;
|
|
182
|
-
generated: undefined;
|
|
183
|
-
}, {}, {}>;
|
|
184
|
-
criteria: import("drizzle-orm/pg-core").PgColumn<{
|
|
185
|
-
name: "criteria";
|
|
186
|
-
tableName: "matches";
|
|
187
|
-
dataType: "json";
|
|
188
|
-
columnType: "PgJsonb";
|
|
189
|
-
data: {
|
|
190
|
-
person: import("../../../utils").MatchCriteria;
|
|
191
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
192
|
-
};
|
|
193
|
-
driverParam: unknown;
|
|
194
|
-
notNull: false;
|
|
195
|
-
hasDefault: false;
|
|
196
|
-
isPrimaryKey: false;
|
|
197
|
-
isAutoincrement: false;
|
|
198
|
-
hasRuntimeDefault: false;
|
|
199
|
-
enumValues: undefined;
|
|
200
|
-
baseColumn: never;
|
|
201
|
-
identity: undefined;
|
|
202
|
-
generated: undefined;
|
|
203
|
-
}, {}, {
|
|
204
|
-
$type: {
|
|
205
|
-
person: import("../../../utils").MatchCriteria;
|
|
206
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
207
|
-
};
|
|
208
|
-
}>;
|
|
209
|
-
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
210
|
-
name: "createdAt";
|
|
211
|
-
tableName: "matches";
|
|
212
|
-
dataType: "date";
|
|
213
|
-
columnType: "PgTimestamp";
|
|
214
|
-
data: Date;
|
|
215
|
-
driverParam: string;
|
|
216
|
-
notNull: true;
|
|
217
|
-
hasDefault: true;
|
|
218
|
-
isPrimaryKey: false;
|
|
219
|
-
isAutoincrement: false;
|
|
220
|
-
hasRuntimeDefault: false;
|
|
221
|
-
enumValues: undefined;
|
|
222
|
-
baseColumn: never;
|
|
223
|
-
identity: undefined;
|
|
224
|
-
generated: undefined;
|
|
225
|
-
}, {}, {}>;
|
|
226
|
-
}, undefined, undefined>;
|
|
227
|
-
export declare const AdminMatchUpdateSchema: import("drizzle-zod").BuildSchema<"update", {
|
|
228
|
-
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
229
|
-
name: "id";
|
|
230
|
-
tableName: "matches";
|
|
231
|
-
dataType: "string";
|
|
232
|
-
columnType: "PgUUID";
|
|
233
|
-
data: string;
|
|
234
|
-
driverParam: string;
|
|
235
|
-
notNull: true;
|
|
236
|
-
hasDefault: true;
|
|
237
|
-
isPrimaryKey: true;
|
|
238
|
-
isAutoincrement: false;
|
|
239
|
-
hasRuntimeDefault: false;
|
|
240
|
-
enumValues: undefined;
|
|
241
|
-
baseColumn: never;
|
|
242
|
-
identity: undefined;
|
|
243
|
-
generated: undefined;
|
|
244
|
-
}, {}, {}>;
|
|
245
|
-
personId: import("drizzle-orm/pg-core").PgColumn<{
|
|
246
|
-
name: "personId";
|
|
247
|
-
tableName: "matches";
|
|
248
|
-
dataType: "string";
|
|
249
|
-
columnType: "PgUUID";
|
|
250
|
-
data: string;
|
|
251
|
-
driverParam: string;
|
|
252
|
-
notNull: true;
|
|
253
|
-
hasDefault: false;
|
|
254
|
-
isPrimaryKey: false;
|
|
255
|
-
isAutoincrement: false;
|
|
256
|
-
hasRuntimeDefault: false;
|
|
257
|
-
enumValues: undefined;
|
|
258
|
-
baseColumn: never;
|
|
259
|
-
identity: undefined;
|
|
260
|
-
generated: undefined;
|
|
261
|
-
}, {}, {}>;
|
|
262
|
-
positionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
263
|
-
name: "positionId";
|
|
264
|
-
tableName: "matches";
|
|
265
|
-
dataType: "string";
|
|
266
|
-
columnType: "PgUUID";
|
|
267
|
-
data: string;
|
|
268
|
-
driverParam: string;
|
|
269
|
-
notNull: true;
|
|
270
|
-
hasDefault: false;
|
|
271
|
-
isPrimaryKey: false;
|
|
272
|
-
isAutoincrement: false;
|
|
273
|
-
hasRuntimeDefault: false;
|
|
274
|
-
enumValues: undefined;
|
|
275
|
-
baseColumn: never;
|
|
276
|
-
identity: undefined;
|
|
277
|
-
generated: undefined;
|
|
278
|
-
}, {}, {}>;
|
|
279
|
-
campaignId: import("drizzle-orm/pg-core").PgColumn<{
|
|
280
|
-
name: "campaignId";
|
|
281
|
-
tableName: "matches";
|
|
282
|
-
dataType: "string";
|
|
283
|
-
columnType: "PgUUID";
|
|
284
|
-
data: string;
|
|
285
|
-
driverParam: string;
|
|
286
|
-
notNull: false;
|
|
287
|
-
hasDefault: false;
|
|
288
|
-
isPrimaryKey: false;
|
|
289
|
-
isAutoincrement: false;
|
|
290
|
-
hasRuntimeDefault: false;
|
|
291
|
-
enumValues: undefined;
|
|
292
|
-
baseColumn: never;
|
|
293
|
-
identity: undefined;
|
|
294
|
-
generated: undefined;
|
|
295
|
-
}, {}, {}>;
|
|
296
|
-
criteria: import("drizzle-orm/pg-core").PgColumn<{
|
|
297
|
-
name: "criteria";
|
|
298
|
-
tableName: "matches";
|
|
299
|
-
dataType: "json";
|
|
300
|
-
columnType: "PgJsonb";
|
|
301
|
-
data: {
|
|
302
|
-
person: import("../../../utils").MatchCriteria;
|
|
303
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
304
|
-
};
|
|
305
|
-
driverParam: unknown;
|
|
306
|
-
notNull: false;
|
|
307
|
-
hasDefault: false;
|
|
308
|
-
isPrimaryKey: false;
|
|
309
|
-
isAutoincrement: false;
|
|
310
|
-
hasRuntimeDefault: false;
|
|
311
|
-
enumValues: undefined;
|
|
312
|
-
baseColumn: never;
|
|
313
|
-
identity: undefined;
|
|
314
|
-
generated: undefined;
|
|
315
|
-
}, {}, {
|
|
316
|
-
$type: {
|
|
317
|
-
person: import("../../../utils").MatchCriteria;
|
|
318
|
-
referrer: import("../../../utils").MatchCriteria;
|
|
319
|
-
};
|
|
320
|
-
}>;
|
|
321
|
-
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
322
|
-
name: "createdAt";
|
|
323
|
-
tableName: "matches";
|
|
324
|
-
dataType: "date";
|
|
325
|
-
columnType: "PgTimestamp";
|
|
326
|
-
data: Date;
|
|
327
|
-
driverParam: string;
|
|
328
|
-
notNull: true;
|
|
329
|
-
hasDefault: true;
|
|
330
|
-
isPrimaryKey: false;
|
|
331
|
-
isAutoincrement: false;
|
|
332
|
-
hasRuntimeDefault: false;
|
|
333
|
-
enumValues: undefined;
|
|
334
|
-
baseColumn: never;
|
|
335
|
-
identity: undefined;
|
|
336
|
-
generated: undefined;
|
|
337
|
-
}, {}, {}>;
|
|
338
|
-
}, undefined, undefined>;
|
|
339
|
-
export declare const AdminMatchParamsSchema: z.ZodObject<{
|
|
340
|
-
id: z.ZodUUID;
|
|
341
|
-
}, {
|
|
342
|
-
out: {};
|
|
343
|
-
in: {};
|
|
344
|
-
}>;
|
|
345
|
-
export declare const AdminMatchListQuerySchema: z.ZodObject<{
|
|
346
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
347
|
-
offset: z.ZodOptional<z.ZodNumber>;
|
|
348
|
-
sort: z.ZodOptional<z.ZodObject<{
|
|
349
|
-
field: z.ZodString;
|
|
350
|
-
direction: z.ZodEnum<{
|
|
351
|
-
asc: "asc";
|
|
352
|
-
desc: "desc";
|
|
353
|
-
}>;
|
|
354
|
-
}, z.core.$strip>>;
|
|
355
|
-
filter: z.ZodOptional<z.ZodObject<{
|
|
356
|
-
personId: z.ZodOptional<z.ZodString>;
|
|
357
|
-
positionId: z.ZodOptional<z.ZodString>;
|
|
358
|
-
campaignId: z.ZodOptional<z.ZodString>;
|
|
359
|
-
}, z.core.$strip>>;
|
|
360
|
-
}, z.core.$strip>;
|
|
361
|
-
export declare const AdminMatchUpdateParamsSchema: z.ZodObject<{
|
|
362
|
-
id: z.ZodUUID;
|
|
363
|
-
}, {
|
|
364
|
-
out: {};
|
|
365
|
-
in: {};
|
|
366
|
-
}>;
|
|
367
|
-
export declare const AdminMatchDeleteParamsSchema: z.ZodObject<{
|
|
368
|
-
id: z.ZodUUID;
|
|
369
|
-
}, {
|
|
370
|
-
out: {};
|
|
371
|
-
in: {};
|
|
372
|
-
}>;
|
|
373
|
-
type AdminMatch = z.infer<typeof AdminMatchSelectSchema>;
|
|
374
|
-
export type AdminMatchParams = z.infer<typeof AdminMatchParamsSchema>;
|
|
375
|
-
export type AdminMatchResult = AdminMatch;
|
|
376
|
-
export type AdminMatchListQuery = z.infer<typeof AdminMatchListQuerySchema>;
|
|
377
|
-
export type AdminMatchListResult = ListResponse<z.infer<typeof AdminMatchSelectSchema>>;
|
|
378
|
-
export type AdminMatchCreateInput = z.infer<typeof AdminMatchCreateSchema>;
|
|
379
|
-
export type AdminMatchCreateResult = Pick<AdminMatch, 'id'>;
|
|
380
|
-
export type AdminMatchUpdateParams = z.infer<typeof AdminMatchUpdateParamsSchema>;
|
|
381
|
-
export type AdminMatchUpdateInput = z.infer<typeof AdminMatchUpdateSchema>;
|
|
382
|
-
export type AdminMatchDeleteParams = z.infer<typeof AdminMatchDeleteParamsSchema>;
|
|
383
|
-
export {};
|
|
1
|
+
export * from './matches';
|
|
2
|
+
export * from './positions';
|
|
3
|
+
export * from './previews';
|
|
@@ -1,26 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const utils_1 = require("../../../utils");
|
|
7
|
-
const v4_1 = require("zod/v4");
|
|
8
|
-
//// validators
|
|
9
|
-
exports.AdminMatchCreateSchema = (0, drizzle_zod_1.createInsertSchema)(core_1.match);
|
|
10
|
-
exports.AdminMatchSelectSchema = (0, drizzle_zod_1.createSelectSchema)(core_1.match);
|
|
11
|
-
exports.AdminMatchUpdateSchema = (0, drizzle_zod_1.createUpdateSchema)(core_1.match);
|
|
12
|
-
exports.AdminMatchParamsSchema = exports.AdminMatchSelectSchema.pick({
|
|
13
|
-
id: true
|
|
14
|
-
});
|
|
15
|
-
exports.AdminMatchListQuerySchema = utils_1.ListQuerySchema.extend({
|
|
16
|
-
filter: v4_1.z
|
|
17
|
-
.object({
|
|
18
|
-
personId: v4_1.z.string().optional(),
|
|
19
|
-
positionId: v4_1.z.string().optional(),
|
|
20
|
-
campaignId: v4_1.z.string().optional()
|
|
21
|
-
})
|
|
22
|
-
.optional()
|
|
23
|
-
});
|
|
24
|
-
exports.AdminMatchUpdateParamsSchema = exports.AdminMatchParamsSchema;
|
|
25
|
-
exports.AdminMatchDeleteParamsSchema = exports.AdminMatchParamsSchema;
|
|
17
|
+
__exportStar(require("./matches"), exports);
|
|
18
|
+
__exportStar(require("./positions"), exports);
|
|
19
|
+
__exportStar(require("./previews"), exports);
|
|
26
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/matches/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/admin/matches/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,8CAA2B;AAC3B,6CAA0B","sourcesContent":["export * from './matches'\nexport * from './positions'\nexport * from './previews'\n"]}
|