@spash/frontlib 1.2.6 → 1.2.7
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/package.json +1 -1
- package/dist/assets/style.css +0 -11
- package/dist/main.d.ts +0 -1040
- package/dist/main.js +0 -38565
package/dist/main.d.ts
DELETED
|
@@ -1,1040 +0,0 @@
|
|
|
1
|
-
import { App } from 'vue';
|
|
2
|
-
import { AxiosInstance } from 'axios';
|
|
3
|
-
import { Config } from 'tailwindcss/types/config';
|
|
4
|
-
import { DateTime } from 'luxon';
|
|
5
|
-
import { DateTimeUnit } from 'luxon';
|
|
6
|
-
import { MonthNumbers } from 'luxon';
|
|
7
|
-
import { PluginCreator } from 'tailwindcss/types/config';
|
|
8
|
-
import { Ref } from 'vue';
|
|
9
|
-
import { useI18n } from 'vue-i18n';
|
|
10
|
-
import { VueCookies } from 'vue3-cookies/dist/interfaces';
|
|
11
|
-
|
|
12
|
-
declare interface AppOptions {
|
|
13
|
-
autoImport?: {
|
|
14
|
-
components: boolean;
|
|
15
|
-
};
|
|
16
|
-
i18n?: {
|
|
17
|
-
messages: any;
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export declare interface Article {
|
|
22
|
-
'@id': string;
|
|
23
|
-
id: number;
|
|
24
|
-
title: string;
|
|
25
|
-
content: string;
|
|
26
|
-
imageUrl: string;
|
|
27
|
-
createdAt: Date;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export declare interface CameraConfiguration {
|
|
31
|
-
id: number;
|
|
32
|
-
layer: CameraConfigurationLayer[];
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export declare interface CameraConfigurationLayer {
|
|
36
|
-
label: string;
|
|
37
|
-
points: {
|
|
38
|
-
x: number;
|
|
39
|
-
y: number;
|
|
40
|
-
}[];
|
|
41
|
-
width: number;
|
|
42
|
-
height: number;
|
|
43
|
-
color: {
|
|
44
|
-
background: string;
|
|
45
|
-
border: string;
|
|
46
|
-
key: string;
|
|
47
|
-
text: string;
|
|
48
|
-
variable: string;
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export declare interface Competition {
|
|
53
|
-
id: number;
|
|
54
|
-
name: string;
|
|
55
|
-
firstLogoImageUrl: string;
|
|
56
|
-
secondLogoImageUrl: string;
|
|
57
|
-
ngtvId: string;
|
|
58
|
-
Sport: Sport;
|
|
59
|
-
createdAt: string;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export declare interface CompetitionDetail {
|
|
63
|
-
name: string;
|
|
64
|
-
firstLogoImageUrl: string;
|
|
65
|
-
secondLogoImageUrl: string;
|
|
66
|
-
ngtvSessions: CompetitionNgtvSessionDetail[];
|
|
67
|
-
groups: {
|
|
68
|
-
[key: string]: Team[];
|
|
69
|
-
};
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export declare interface CompetitionNgtvSessionDetail {
|
|
73
|
-
homeScore: number;
|
|
74
|
-
homeTeam: Team;
|
|
75
|
-
awayScore: number;
|
|
76
|
-
awayTeam: Team;
|
|
77
|
-
competitionStage: string;
|
|
78
|
-
field: string;
|
|
79
|
-
plannedStartedAt: Date;
|
|
80
|
-
actualStartedAt: Date;
|
|
81
|
-
status: string;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
export declare interface ComputerLog {
|
|
85
|
-
id: string;
|
|
86
|
-
computer_id: string;
|
|
87
|
-
event_type: 'keep_alive' | 'video_loading_timeout';
|
|
88
|
-
data: string;
|
|
89
|
-
created_at: string;
|
|
90
|
-
updated_at: string;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export declare interface ComputerLogPayload {
|
|
94
|
-
eventType: 'keep_alive' | 'video_loading_timeout';
|
|
95
|
-
data: Record<string, unknown>;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
declare const _default: (app: App, options?: AppOptions) => void;
|
|
99
|
-
export default _default;
|
|
100
|
-
|
|
101
|
-
export declare interface Dooh {
|
|
102
|
-
id: number;
|
|
103
|
-
name: string;
|
|
104
|
-
type: 'lite' | 'full';
|
|
105
|
-
theme: string;
|
|
106
|
-
orientation: 'portrait' | 'landscape';
|
|
107
|
-
sports: Sport[];
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export declare interface DoohContent {
|
|
111
|
-
'@id': string;
|
|
112
|
-
id: number;
|
|
113
|
-
contentType: DoohContentContentType;
|
|
114
|
-
competitionId: number;
|
|
115
|
-
duration: number;
|
|
116
|
-
displayDoohContent: boolean;
|
|
117
|
-
isVideo: boolean;
|
|
118
|
-
isSponsoring: boolean;
|
|
119
|
-
filePath: string;
|
|
120
|
-
bookingsSessions: Record<number, (Session & {
|
|
121
|
-
isMainSession: boolean;
|
|
122
|
-
})[]>;
|
|
123
|
-
bookingsData: {
|
|
124
|
-
x: number;
|
|
125
|
-
y: number;
|
|
126
|
-
fieldId: number;
|
|
127
|
-
maxLengthSessionName: number;
|
|
128
|
-
}[];
|
|
129
|
-
article: Article;
|
|
130
|
-
competition: Competition;
|
|
131
|
-
competitionDetails: CompetitionDetail;
|
|
132
|
-
highlight: SessionEvent;
|
|
133
|
-
multiplexEvents: SessionEvent[];
|
|
134
|
-
orientation: 'landscape' | 'portrait';
|
|
135
|
-
type: 'lite' | 'full';
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
declare type DoohContentContentType = 'article' | 'highlights' | 'image' | 'video' | 'competition' | 'multiplex' | 'ads' | 'bookings' | 'error';
|
|
139
|
-
|
|
140
|
-
export declare interface Field {
|
|
141
|
-
id: number;
|
|
142
|
-
name: string;
|
|
143
|
-
theme: string;
|
|
144
|
-
planningAvailable: boolean;
|
|
145
|
-
hi5Available?: boolean;
|
|
146
|
-
competitionAvailable?: boolean;
|
|
147
|
-
scoreCounterAvailable?: boolean;
|
|
148
|
-
easyConnectAvailable?: boolean;
|
|
149
|
-
sport: Sport;
|
|
150
|
-
subscribedOptions: string[];
|
|
151
|
-
camerasTotal: number;
|
|
152
|
-
camerasConfiguration: CameraConfiguration[];
|
|
153
|
-
advertHmiPostMatchImage: string;
|
|
154
|
-
advertHmiLoadingImage: string;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
export declare interface Player {
|
|
158
|
-
id: number;
|
|
159
|
-
name: string;
|
|
160
|
-
email: string;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
declare interface PlayerTeam {
|
|
164
|
-
id: number;
|
|
165
|
-
jerseyNumber?: number;
|
|
166
|
-
player: Player;
|
|
167
|
-
team?: Team;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
declare const Plugin_2: {
|
|
171
|
-
handler: PluginCreator;
|
|
172
|
-
config?: Partial<Config> | undefined;
|
|
173
|
-
};
|
|
174
|
-
export { Plugin_2 as Plugin }
|
|
175
|
-
|
|
176
|
-
export declare interface Session {
|
|
177
|
-
'@id': string;
|
|
178
|
-
id: number;
|
|
179
|
-
name: string;
|
|
180
|
-
plannedStartedAt: string;
|
|
181
|
-
plannedEndedAt: string;
|
|
182
|
-
actualStartedAt: string;
|
|
183
|
-
actualEndedAt: string;
|
|
184
|
-
actualDuration: number;
|
|
185
|
-
actualCompetitionBreakDuration?: number | null;
|
|
186
|
-
plannedDuration: number;
|
|
187
|
-
status: string;
|
|
188
|
-
reference: string;
|
|
189
|
-
bookingProvider: string;
|
|
190
|
-
bookingProviderData?: string;
|
|
191
|
-
gameSheetUrl: string;
|
|
192
|
-
competitionStage: string;
|
|
193
|
-
videoUploadEnable?: boolean;
|
|
194
|
-
competition: Competition;
|
|
195
|
-
sport: Sport;
|
|
196
|
-
ngtvSessionType?: SessionType;
|
|
197
|
-
ngtvSessionHomeTeam: SessionTeam;
|
|
198
|
-
ngtvSessionAwayTeam: SessionTeam;
|
|
199
|
-
field: Field;
|
|
200
|
-
ngtvSessionEvents: SessionEvent[];
|
|
201
|
-
ngtvSessionPlayers: SessionPlayer[];
|
|
202
|
-
exportVideosEnabled?: boolean;
|
|
203
|
-
withStats?: boolean;
|
|
204
|
-
iaStatus?: 'stats_done' | 'error';
|
|
205
|
-
sessionPadelStat: {
|
|
206
|
-
id: number;
|
|
207
|
-
match: {
|
|
208
|
-
avg_rally_duration: number;
|
|
209
|
-
avg_rally: number;
|
|
210
|
-
longest_rally: {
|
|
211
|
-
duration: number;
|
|
212
|
-
};
|
|
213
|
-
};
|
|
214
|
-
createdAt: string;
|
|
215
|
-
updatedAt: string;
|
|
216
|
-
elitePlayer: {
|
|
217
|
-
nomansland: number;
|
|
218
|
-
lob_and_go: {
|
|
219
|
-
net_taking: number;
|
|
220
|
-
lob: number;
|
|
221
|
-
percentage: number;
|
|
222
|
-
coordinates: number[][];
|
|
223
|
-
};
|
|
224
|
-
net_taking: number;
|
|
225
|
-
positioning: {
|
|
226
|
-
attack: number;
|
|
227
|
-
};
|
|
228
|
-
first_serve: number;
|
|
229
|
-
volley_service: {
|
|
230
|
-
value: number;
|
|
231
|
-
percentage: number;
|
|
232
|
-
};
|
|
233
|
-
intensities: {
|
|
234
|
-
details: {
|
|
235
|
-
in_0_3: number;
|
|
236
|
-
in_3_6: number;
|
|
237
|
-
in_6_9: number;
|
|
238
|
-
in_9_12: number;
|
|
239
|
-
in_12_15: number;
|
|
240
|
-
gt_15: number;
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
chain_breaks: {
|
|
244
|
-
details: {
|
|
245
|
-
timestep: number;
|
|
246
|
-
values: number[];
|
|
247
|
-
};
|
|
248
|
-
};
|
|
249
|
-
};
|
|
250
|
-
};
|
|
251
|
-
sessionFootStat: {
|
|
252
|
-
id: number;
|
|
253
|
-
matchIntensity: {
|
|
254
|
-
score: number;
|
|
255
|
-
value: number;
|
|
256
|
-
maximumSpeed: number;
|
|
257
|
-
intensityScore: number;
|
|
258
|
-
averageSpeed: number;
|
|
259
|
-
totalDistance: number;
|
|
260
|
-
totalGoal: number;
|
|
261
|
-
averageGoalDifference: number;
|
|
262
|
-
};
|
|
263
|
-
zoneCoverage: {
|
|
264
|
-
score: number;
|
|
265
|
-
zone1: {
|
|
266
|
-
score: number;
|
|
267
|
-
value: number;
|
|
268
|
-
total: number;
|
|
269
|
-
percentage: number;
|
|
270
|
-
};
|
|
271
|
-
zone2: {
|
|
272
|
-
score: number;
|
|
273
|
-
value: number;
|
|
274
|
-
total: number;
|
|
275
|
-
percentage: number;
|
|
276
|
-
};
|
|
277
|
-
zone3: {
|
|
278
|
-
score: number;
|
|
279
|
-
value: number;
|
|
280
|
-
total: number;
|
|
281
|
-
percentage: number;
|
|
282
|
-
};
|
|
283
|
-
zone4: {
|
|
284
|
-
score: number;
|
|
285
|
-
value: number;
|
|
286
|
-
total: number;
|
|
287
|
-
percentage: number;
|
|
288
|
-
};
|
|
289
|
-
};
|
|
290
|
-
createdAt: string;
|
|
291
|
-
updatedAt: string;
|
|
292
|
-
};
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
export declare interface SessionEvent {
|
|
296
|
-
id: number;
|
|
297
|
-
type: string;
|
|
298
|
-
name: string;
|
|
299
|
-
currentSet: number;
|
|
300
|
-
videoTimecode: number;
|
|
301
|
-
startVideoTimecode: number;
|
|
302
|
-
currentScoreAway: number[];
|
|
303
|
-
currentScoreHome: number[];
|
|
304
|
-
aiCalculated: boolean;
|
|
305
|
-
duration: number;
|
|
306
|
-
ngtvSession: Session;
|
|
307
|
-
ngtvSessionTeam: SessionTeam;
|
|
308
|
-
ngtvSessionPlayer: SessionPlayer;
|
|
309
|
-
secondNgtvSessionPlayer: SessionPlayer;
|
|
310
|
-
ngtvSessionEventType: SessionEventTypes;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
export declare interface SessionEventInput {
|
|
314
|
-
type: string;
|
|
315
|
-
ngtvSession: string;
|
|
316
|
-
ngtvSessionTeam?: string | null;
|
|
317
|
-
ngtvSessionPlayer?: string | null;
|
|
318
|
-
secondNgtvSessionPlayer?: string | null;
|
|
319
|
-
matchTimecode: number;
|
|
320
|
-
videoTimecode: number;
|
|
321
|
-
ngtvSessionEventType?: string | null;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
export declare interface SessionEventTypes {
|
|
325
|
-
id: number;
|
|
326
|
-
type: string;
|
|
327
|
-
name: string;
|
|
328
|
-
color: string;
|
|
329
|
-
duration?: number;
|
|
330
|
-
imageUrl?: string;
|
|
331
|
-
position?: number;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
export declare interface SessionInput {
|
|
335
|
-
name?: string;
|
|
336
|
-
status?: string;
|
|
337
|
-
plannedStartedAt?: string | null;
|
|
338
|
-
plannedEndedAt?: string | null;
|
|
339
|
-
field?: string;
|
|
340
|
-
ngtvSessionType?: string;
|
|
341
|
-
bookingProvider?: string;
|
|
342
|
-
bookingProviderData?: string;
|
|
343
|
-
videoUploadEnable?: boolean;
|
|
344
|
-
aiEnabled: boolean;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
export declare interface SessionPlayer {
|
|
348
|
-
'@id': string;
|
|
349
|
-
id: number;
|
|
350
|
-
jerseyNumber: number | null;
|
|
351
|
-
reference: string;
|
|
352
|
-
manOfTheMatch: boolean;
|
|
353
|
-
globalRating: number;
|
|
354
|
-
concededGoalsTotal: number;
|
|
355
|
-
concededGoalsTotalAsPlayer: number;
|
|
356
|
-
goalkeeperDuration: number;
|
|
357
|
-
distanceTotal: number;
|
|
358
|
-
speedsAverage: number[] | null;
|
|
359
|
-
attackerOfTheMatch: boolean;
|
|
360
|
-
defenderOfTheMatch: boolean;
|
|
361
|
-
goalkeeperOfTheMatch: boolean;
|
|
362
|
-
physicalOfTheMatch: boolean;
|
|
363
|
-
physicalRating: number;
|
|
364
|
-
defenseRating: number;
|
|
365
|
-
attackRating: number;
|
|
366
|
-
goalkeeperRating: number;
|
|
367
|
-
defendingDuration: number;
|
|
368
|
-
defendingReturnTotal: number;
|
|
369
|
-
attackingDuration: number;
|
|
370
|
-
attackedPhaseTotal: number;
|
|
371
|
-
createdAttackTotal: number;
|
|
372
|
-
defendingPhaseTotal: number;
|
|
373
|
-
defendersNumberAverage: number;
|
|
374
|
-
walkDuration: number;
|
|
375
|
-
runDuration: number;
|
|
376
|
-
defendingHeightAverage: number;
|
|
377
|
-
consecutiveGoalsTotal: number;
|
|
378
|
-
goalkeeperMaxInvincibilityDuration: number;
|
|
379
|
-
goalkeeperOccurrencesTotal: number;
|
|
380
|
-
heatmap: any[] | null;
|
|
381
|
-
ngtvSession: Session | null;
|
|
382
|
-
ngtvSessionTeam: SessionTeam | null;
|
|
383
|
-
runRatio: number;
|
|
384
|
-
averageSpeed: number;
|
|
385
|
-
goalkeeperRatio: number;
|
|
386
|
-
numberOfGoalScored: number;
|
|
387
|
-
numberOfAssists: number;
|
|
388
|
-
numberOfFouls: number;
|
|
389
|
-
numberOfOwngoals: number;
|
|
390
|
-
lastMinuteWinnersEventsTotal: number;
|
|
391
|
-
hatTricksEventsTotal: number;
|
|
392
|
-
player: Player;
|
|
393
|
-
playerPadelStat: SessionPlayerPadelStats;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
declare interface SessionPlayerPadelStats {
|
|
397
|
-
id: number;
|
|
398
|
-
name: string;
|
|
399
|
-
video_path: string;
|
|
400
|
-
sentence: string;
|
|
401
|
-
positioning: {
|
|
402
|
-
score: number;
|
|
403
|
-
nomansland: {
|
|
404
|
-
score: number;
|
|
405
|
-
percentage: number;
|
|
406
|
-
};
|
|
407
|
-
attack: {
|
|
408
|
-
score: number;
|
|
409
|
-
percentage: number;
|
|
410
|
-
};
|
|
411
|
-
defense: {
|
|
412
|
-
score: number;
|
|
413
|
-
percentage: number;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
movement: {
|
|
417
|
-
score: number;
|
|
418
|
-
lob_and_go: {
|
|
419
|
-
score: number;
|
|
420
|
-
value: number;
|
|
421
|
-
total: number;
|
|
422
|
-
percentage: number;
|
|
423
|
-
coordinates: number[][];
|
|
424
|
-
average_distance: number;
|
|
425
|
-
average_position: number;
|
|
426
|
-
};
|
|
427
|
-
net_taking: {
|
|
428
|
-
score: number;
|
|
429
|
-
value: number;
|
|
430
|
-
percentage: number;
|
|
431
|
-
sync_total: number;
|
|
432
|
-
sync_percentage: number;
|
|
433
|
-
average_distance: number;
|
|
434
|
-
average_position: number;
|
|
435
|
-
};
|
|
436
|
-
attack_position: {
|
|
437
|
-
score: number;
|
|
438
|
-
value: number;
|
|
439
|
-
};
|
|
440
|
-
hit_and_move: {
|
|
441
|
-
score: number;
|
|
442
|
-
value: number;
|
|
443
|
-
};
|
|
444
|
-
};
|
|
445
|
-
tactical: {
|
|
446
|
-
score: number;
|
|
447
|
-
first_serve: {
|
|
448
|
-
score: number;
|
|
449
|
-
percentage: number;
|
|
450
|
-
};
|
|
451
|
-
volley_service: {
|
|
452
|
-
score: number;
|
|
453
|
-
value: number;
|
|
454
|
-
percentage: number;
|
|
455
|
-
average_distance: number;
|
|
456
|
-
average_position: number;
|
|
457
|
-
};
|
|
458
|
-
services: {
|
|
459
|
-
score: number;
|
|
460
|
-
};
|
|
461
|
-
diagonal: {
|
|
462
|
-
score: number;
|
|
463
|
-
percentage: number;
|
|
464
|
-
};
|
|
465
|
-
top_lob: {
|
|
466
|
-
score: number;
|
|
467
|
-
value: number;
|
|
468
|
-
total: number;
|
|
469
|
-
percentage: number;
|
|
470
|
-
coordinates: number[][];
|
|
471
|
-
};
|
|
472
|
-
divorce_zone: {
|
|
473
|
-
score: number;
|
|
474
|
-
coordinates: number[][];
|
|
475
|
-
team_percentage: number;
|
|
476
|
-
};
|
|
477
|
-
safe_ball: {
|
|
478
|
-
score: number;
|
|
479
|
-
safe_balls: {
|
|
480
|
-
coordinates: number[][];
|
|
481
|
-
};
|
|
482
|
-
unsafe_balls: {
|
|
483
|
-
coordinates: number[][];
|
|
484
|
-
};
|
|
485
|
-
};
|
|
486
|
-
lobs: {
|
|
487
|
-
score: number;
|
|
488
|
-
nb_lob: number;
|
|
489
|
-
nb_team_lob: number;
|
|
490
|
-
percentage_lob_in_team: number;
|
|
491
|
-
};
|
|
492
|
-
};
|
|
493
|
-
tacticalZoningServicesCoordinates: {
|
|
494
|
-
left: number[][];
|
|
495
|
-
right: number[][];
|
|
496
|
-
};
|
|
497
|
-
physical: {
|
|
498
|
-
score: number;
|
|
499
|
-
distance: {
|
|
500
|
-
score: number;
|
|
501
|
-
total: number;
|
|
502
|
-
details: {
|
|
503
|
-
[key: string]: number;
|
|
504
|
-
};
|
|
505
|
-
};
|
|
506
|
-
calories: {
|
|
507
|
-
score: number;
|
|
508
|
-
value: number;
|
|
509
|
-
};
|
|
510
|
-
intensities: {
|
|
511
|
-
score: number;
|
|
512
|
-
max_speed: number;
|
|
513
|
-
details: {
|
|
514
|
-
gt_15: number;
|
|
515
|
-
in_0_3: number;
|
|
516
|
-
in_3_6: number;
|
|
517
|
-
in_6_9: number;
|
|
518
|
-
in_9_12: number;
|
|
519
|
-
in_12_15: number;
|
|
520
|
-
};
|
|
521
|
-
};
|
|
522
|
-
};
|
|
523
|
-
badges: {
|
|
524
|
-
value: number;
|
|
525
|
-
top_badge: boolean;
|
|
526
|
-
badge_type: string;
|
|
527
|
-
}[];
|
|
528
|
-
teamStat: {
|
|
529
|
-
id: number;
|
|
530
|
-
score: number;
|
|
531
|
-
chain_breaks: {
|
|
532
|
-
score: number;
|
|
533
|
-
details: {
|
|
534
|
-
score: number | null;
|
|
535
|
-
values: number[];
|
|
536
|
-
timestep: number;
|
|
537
|
-
};
|
|
538
|
-
};
|
|
539
|
-
checks: {
|
|
540
|
-
score: number;
|
|
541
|
-
value: number;
|
|
542
|
-
};
|
|
543
|
-
createdAt: string;
|
|
544
|
-
updatedAt: string;
|
|
545
|
-
};
|
|
546
|
-
createdAt: string;
|
|
547
|
-
updatedAt: string;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
export declare enum SessionStatus {
|
|
551
|
-
NOT_PLAYED = "not_played",
|
|
552
|
-
PLAYING = "playing",
|
|
553
|
-
PLAYED = "played",
|
|
554
|
-
DELETED = "deleted",
|
|
555
|
-
PROCESSING = "processing",
|
|
556
|
-
PROCESSING_ERROR = "processing_error",
|
|
557
|
-
PROCESSED = "processed",
|
|
558
|
-
EXPORTING = "exporting",
|
|
559
|
-
EXPORTING_ERROR = "exporting_error",
|
|
560
|
-
EXPORTED = "exported",
|
|
561
|
-
EXPORTED_DELETED = "exported_deleted",
|
|
562
|
-
ERROR = "error",
|
|
563
|
-
FAKE = "fake",
|
|
564
|
-
FAKE_DELETED = "fake_deleted"
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
export declare interface SessionTeam {
|
|
568
|
-
id: number;
|
|
569
|
-
home: boolean;
|
|
570
|
-
score: number[];
|
|
571
|
-
team: Team;
|
|
572
|
-
maxConsecutiveGoals?: number;
|
|
573
|
-
color: string;
|
|
574
|
-
name: string;
|
|
575
|
-
maxInvincibilityDuration?: number;
|
|
576
|
-
teamFootStat: TeamFootStat | null;
|
|
577
|
-
teamPadelStat: {
|
|
578
|
-
id: number;
|
|
579
|
-
score: number;
|
|
580
|
-
};
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
export declare interface SessionType {
|
|
584
|
-
id?: number;
|
|
585
|
-
reference: string;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
export declare type SIZES = 'md' | 'lg' | 'xl';
|
|
589
|
-
|
|
590
|
-
export declare enum SpashVideoControls {
|
|
591
|
-
'fullscreen' = "fullscreen",
|
|
592
|
-
'readingSpeed' = "reading-speed",
|
|
593
|
-
'videoTimecode' = "video-timecode",
|
|
594
|
-
'playPause' = "play-pause",
|
|
595
|
-
'changeTimecode' = "change-timecode"
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
export declare enum SpashVideoOptions {
|
|
599
|
-
'buzz' = "buzz",
|
|
600
|
-
'layer' = "layer",
|
|
601
|
-
'draw' = "draw",
|
|
602
|
-
'field2D' = "field2D",
|
|
603
|
-
'resumeAuto' = "resumeAuto",
|
|
604
|
-
'filterPlayers' = "filterPlayers",
|
|
605
|
-
'qrCode' = "qrCode"
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
export declare interface SpashVideoPlayer {
|
|
609
|
-
destroyPlayer: () => void;
|
|
610
|
-
onUpdateVideoPlayerBarTimecode: (v: number) => void;
|
|
611
|
-
setControlWidth: (v: string) => void;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
declare interface SponsoringAttributes {
|
|
615
|
-
fieldId: number;
|
|
616
|
-
sportName: string;
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
declare interface SponsoringOptions {
|
|
620
|
-
attributes: SponsoringAttributes | null;
|
|
621
|
-
siteId: number;
|
|
622
|
-
pageId: number;
|
|
623
|
-
formatIds: string;
|
|
624
|
-
formatId: number;
|
|
625
|
-
classes?: string;
|
|
626
|
-
element?: string;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
export declare interface Sport {
|
|
630
|
-
id: number;
|
|
631
|
-
name: string;
|
|
632
|
-
racketSport: boolean;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
export declare interface SportCenter {
|
|
636
|
-
id: number;
|
|
637
|
-
durationChoices: number[];
|
|
638
|
-
language: string;
|
|
639
|
-
computers: {
|
|
640
|
-
boxId: string;
|
|
641
|
-
createdAt: string;
|
|
642
|
-
id: number;
|
|
643
|
-
name: string;
|
|
644
|
-
sponsoringPlayerId: string;
|
|
645
|
-
sponsoringScreenId: string;
|
|
646
|
-
type: string;
|
|
647
|
-
updatedAt: string;
|
|
648
|
-
vpnIp: string;
|
|
649
|
-
interactive: boolean;
|
|
650
|
-
extraTimeEnabled: boolean;
|
|
651
|
-
keepAliveInterval: number;
|
|
652
|
-
}[];
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
declare interface SseCallback {
|
|
656
|
-
onOpen?: (event: any) => void;
|
|
657
|
-
onMessage?: (event?: any) => void;
|
|
658
|
-
onError?: (event: any) => void;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
export declare interface Team {
|
|
662
|
-
id: number;
|
|
663
|
-
name: string;
|
|
664
|
-
primaryColor: string;
|
|
665
|
-
secondaryColor: string;
|
|
666
|
-
maxConsecutiveGoals: number;
|
|
667
|
-
logoImageUrl?: string;
|
|
668
|
-
playerTeams?: PlayerTeam[];
|
|
669
|
-
ngtvId?: number;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
declare interface TeamFootStat {
|
|
673
|
-
id: number;
|
|
674
|
-
goals: number;
|
|
675
|
-
score: number;
|
|
676
|
-
side: 'left' | 'right';
|
|
677
|
-
color: 'orange' | 'blue';
|
|
678
|
-
distanceValue: number;
|
|
679
|
-
distanceScore: number;
|
|
680
|
-
maxSpeedValue: number;
|
|
681
|
-
maxSpeedScore: number;
|
|
682
|
-
leadingScore: {
|
|
683
|
-
percentage: number;
|
|
684
|
-
score: number;
|
|
685
|
-
total: number;
|
|
686
|
-
value: number;
|
|
687
|
-
};
|
|
688
|
-
distance: {
|
|
689
|
-
score: number;
|
|
690
|
-
total: number;
|
|
691
|
-
byInterval: Record<string, number>;
|
|
692
|
-
bySpeed: {
|
|
693
|
-
'0-3': number;
|
|
694
|
-
'3-6': number;
|
|
695
|
-
'6-9': number;
|
|
696
|
-
'9-12': number;
|
|
697
|
-
'12-15': number;
|
|
698
|
-
'>15': number;
|
|
699
|
-
};
|
|
700
|
-
};
|
|
701
|
-
scoreByTime: {
|
|
702
|
-
[key: string]: number;
|
|
703
|
-
};
|
|
704
|
-
attack: {
|
|
705
|
-
score: number;
|
|
706
|
-
realism: {
|
|
707
|
-
score: number;
|
|
708
|
-
goalXgRatio: {
|
|
709
|
-
score: number;
|
|
710
|
-
value: number;
|
|
711
|
-
};
|
|
712
|
-
goalShotsRatio: {
|
|
713
|
-
score: number;
|
|
714
|
-
value: number;
|
|
715
|
-
};
|
|
716
|
-
goalAttackPresRatio: {
|
|
717
|
-
score: number;
|
|
718
|
-
value: number;
|
|
719
|
-
};
|
|
720
|
-
realism: {
|
|
721
|
-
score: number;
|
|
722
|
-
value: number;
|
|
723
|
-
};
|
|
724
|
-
};
|
|
725
|
-
expectedGoals: {
|
|
726
|
-
score: number;
|
|
727
|
-
value: number;
|
|
728
|
-
};
|
|
729
|
-
globalShots: {
|
|
730
|
-
score: number;
|
|
731
|
-
shotsTried: {
|
|
732
|
-
score: number;
|
|
733
|
-
value: number;
|
|
734
|
-
};
|
|
735
|
-
shots: {
|
|
736
|
-
score: number;
|
|
737
|
-
shotsNumber: {
|
|
738
|
-
score: number;
|
|
739
|
-
value: number;
|
|
740
|
-
};
|
|
741
|
-
shotsPosition: {
|
|
742
|
-
coordinates: number[][];
|
|
743
|
-
};
|
|
744
|
-
};
|
|
745
|
-
shotsOnTarget: {
|
|
746
|
-
score: number;
|
|
747
|
-
shotsOnTargetNumber: {
|
|
748
|
-
score: number;
|
|
749
|
-
value: number;
|
|
750
|
-
};
|
|
751
|
-
shotsOnTargetPosition: {
|
|
752
|
-
coordinates: number[][];
|
|
753
|
-
};
|
|
754
|
-
};
|
|
755
|
-
};
|
|
756
|
-
attacksInitiated: {
|
|
757
|
-
score: number;
|
|
758
|
-
value: number;
|
|
759
|
-
};
|
|
760
|
-
assists: {
|
|
761
|
-
score: number;
|
|
762
|
-
value: number;
|
|
763
|
-
};
|
|
764
|
-
goalsStreak: {
|
|
765
|
-
score: number;
|
|
766
|
-
value: number;
|
|
767
|
-
};
|
|
768
|
-
timeInAttack: {
|
|
769
|
-
score: number;
|
|
770
|
-
timeInAttackValue: {
|
|
771
|
-
score: number;
|
|
772
|
-
value: number;
|
|
773
|
-
};
|
|
774
|
-
positionHeatmap: number[][];
|
|
775
|
-
};
|
|
776
|
-
attackHeight: {
|
|
777
|
-
score: number;
|
|
778
|
-
value: number;
|
|
779
|
-
};
|
|
780
|
-
attackPressure: {
|
|
781
|
-
score: number;
|
|
782
|
-
value: number;
|
|
783
|
-
};
|
|
784
|
-
};
|
|
785
|
-
defense: {
|
|
786
|
-
score: number;
|
|
787
|
-
goalsConceded: {
|
|
788
|
-
score: number;
|
|
789
|
-
value: number;
|
|
790
|
-
};
|
|
791
|
-
timeInDefense: {
|
|
792
|
-
score: number;
|
|
793
|
-
timeInDefenseValue: {
|
|
794
|
-
score: number;
|
|
795
|
-
value: number;
|
|
796
|
-
};
|
|
797
|
-
positionHeatmap: number[][];
|
|
798
|
-
};
|
|
799
|
-
defenseHeight: {
|
|
800
|
-
score: number;
|
|
801
|
-
value: number;
|
|
802
|
-
};
|
|
803
|
-
defensePressure: {
|
|
804
|
-
score: number;
|
|
805
|
-
value: number;
|
|
806
|
-
};
|
|
807
|
-
attacksUnderPressure: {
|
|
808
|
-
score: number;
|
|
809
|
-
value: number;
|
|
810
|
-
};
|
|
811
|
-
immuneTime: {
|
|
812
|
-
score: number;
|
|
813
|
-
value: number;
|
|
814
|
-
};
|
|
815
|
-
goalSolidity: {
|
|
816
|
-
score: number;
|
|
817
|
-
value: number;
|
|
818
|
-
total: number;
|
|
819
|
-
percentage: number;
|
|
820
|
-
};
|
|
821
|
-
};
|
|
822
|
-
game: {
|
|
823
|
-
score: number;
|
|
824
|
-
possession: {
|
|
825
|
-
score: number;
|
|
826
|
-
total: {
|
|
827
|
-
score: number;
|
|
828
|
-
value: number;
|
|
829
|
-
total: number;
|
|
830
|
-
percentage: number;
|
|
831
|
-
};
|
|
832
|
-
details: any[];
|
|
833
|
-
};
|
|
834
|
-
longestPossession: {
|
|
835
|
-
score: number;
|
|
836
|
-
value: number;
|
|
837
|
-
};
|
|
838
|
-
successfulPass: {
|
|
839
|
-
score: number;
|
|
840
|
-
total: {
|
|
841
|
-
score: number;
|
|
842
|
-
value: number;
|
|
843
|
-
};
|
|
844
|
-
forwardPass: {
|
|
845
|
-
score: number;
|
|
846
|
-
value: number;
|
|
847
|
-
total: number;
|
|
848
|
-
percentage: number;
|
|
849
|
-
};
|
|
850
|
-
};
|
|
851
|
-
ballSteal: {
|
|
852
|
-
score: number;
|
|
853
|
-
ballStealNumber: {
|
|
854
|
-
score: number;
|
|
855
|
-
value: number;
|
|
856
|
-
};
|
|
857
|
-
ballStealPosition: {
|
|
858
|
-
coordinates: number[][];
|
|
859
|
-
};
|
|
860
|
-
};
|
|
861
|
-
gameOrientation: {
|
|
862
|
-
score: number;
|
|
863
|
-
corridorLeft: {
|
|
864
|
-
score: number;
|
|
865
|
-
value: number;
|
|
866
|
-
total: number;
|
|
867
|
-
percentage: number;
|
|
868
|
-
};
|
|
869
|
-
corridorMid: {
|
|
870
|
-
score: number;
|
|
871
|
-
value: number;
|
|
872
|
-
total: number;
|
|
873
|
-
percentage: number;
|
|
874
|
-
};
|
|
875
|
-
corridorRight: {
|
|
876
|
-
score: number;
|
|
877
|
-
value: number;
|
|
878
|
-
total: number;
|
|
879
|
-
percentage: number;
|
|
880
|
-
};
|
|
881
|
-
};
|
|
882
|
-
fouls: {
|
|
883
|
-
score: number;
|
|
884
|
-
value: number;
|
|
885
|
-
};
|
|
886
|
-
};
|
|
887
|
-
physical: {
|
|
888
|
-
score: number;
|
|
889
|
-
meanSpeed: {
|
|
890
|
-
score: number;
|
|
891
|
-
value: number;
|
|
892
|
-
};
|
|
893
|
-
};
|
|
894
|
-
badges: {
|
|
895
|
-
value: number;
|
|
896
|
-
badge_type: string;
|
|
897
|
-
}[];
|
|
898
|
-
createdAt: string;
|
|
899
|
-
updatedAt: string;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
declare interface Toast {
|
|
903
|
-
id: number;
|
|
904
|
-
type?: 'success' | 'error' | 'warning' | 'info';
|
|
905
|
-
message: string;
|
|
906
|
-
timeout: number;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
declare interface ToastOptions {
|
|
910
|
-
type?: 'success' | 'error' | 'warning' | 'info';
|
|
911
|
-
message: string;
|
|
912
|
-
timeout: number;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
export declare const useAdServer: () => {
|
|
916
|
-
hasAdServerContent: Ref<boolean, boolean>;
|
|
917
|
-
initAdServer: () => void;
|
|
918
|
-
callAdServer: (attributes: SponsoringAttributes | null, siteId: number, pageId: number, formats: string) => void;
|
|
919
|
-
addAdvertising: (advertId: number, divClasses?: string, divStyles?: string, target?: string, el?: any) => void;
|
|
920
|
-
resetAdServerAdvertising: () => void;
|
|
921
|
-
addSponsoringContent: ({ attributes, siteId, pageId, formatIds, formatId, classes, element, }: SponsoringOptions) => void;
|
|
922
|
-
};
|
|
923
|
-
|
|
924
|
-
export declare const useAxios: (apiUrl: string) => {
|
|
925
|
-
axiosInstance: () => AxiosInstance;
|
|
926
|
-
};
|
|
927
|
-
|
|
928
|
-
export declare const useCompetition: ({ t }?: {
|
|
929
|
-
t?: any;
|
|
930
|
-
}) => {
|
|
931
|
-
groupsOptions: (groupsTotal?: number) => {
|
|
932
|
-
id: string;
|
|
933
|
-
name: any;
|
|
934
|
-
}[];
|
|
935
|
-
};
|
|
936
|
-
|
|
937
|
-
/**
|
|
938
|
-
* It imports all the components in the `components` and `modules` directories, and registers them with
|
|
939
|
-
* the Vue instance
|
|
940
|
-
* @param {App} app - App - The app object that is passed to the plugin function.
|
|
941
|
-
*/
|
|
942
|
-
export declare const useComponent: (app: App, components: any, moduleComponents: any) => void;
|
|
943
|
-
|
|
944
|
-
export declare const useCookies: () => VueCookies;
|
|
945
|
-
|
|
946
|
-
export declare const useDisplayImage: () => {
|
|
947
|
-
logoInline: Ref<any, any>;
|
|
948
|
-
logoSmall: Ref<any, any>;
|
|
949
|
-
homeBackgroundLeft: string;
|
|
950
|
-
homeBackgroundRight: string;
|
|
951
|
-
matchBackground: string;
|
|
952
|
-
reloadImages: (theme: string) => void;
|
|
953
|
-
};
|
|
954
|
-
|
|
955
|
-
export declare const useHelper: ({ t, router }?: {
|
|
956
|
-
t?: any;
|
|
957
|
-
router?: any;
|
|
958
|
-
}) => {
|
|
959
|
-
timeout: Ref<any, any>;
|
|
960
|
-
getAndParseObjectFromLocalStorage: (key: string) => any;
|
|
961
|
-
timecodeToString: (timecode: any, mode?: string, displayEmpty?: boolean) => string;
|
|
962
|
-
dynamicSort: (property: any, sortType?: string) => (a: any, b: any) => number;
|
|
963
|
-
redirectToUrl: (redirectUrl: string) => void;
|
|
964
|
-
timeoutRedirectToPage: (routeName: string, timeoutMinutes?: number) => void;
|
|
965
|
-
buildQueryParams: (queryParams: any) => string;
|
|
966
|
-
groupBy: <T, K extends keyof T>(items: T[], key: K) => Record<string, T[]>;
|
|
967
|
-
timecodeToTimeObject: (timecode: any) => {
|
|
968
|
-
hours: number;
|
|
969
|
-
minutes: number;
|
|
970
|
-
seconds: number;
|
|
971
|
-
};
|
|
972
|
-
arrayUniqueValue: (array: any[], key: string) => any[];
|
|
973
|
-
sleep: (ms: number) => Promise<unknown>;
|
|
974
|
-
checkIfComponentExists: (componentName: string) => boolean;
|
|
975
|
-
};
|
|
976
|
-
|
|
977
|
-
export { useI18n }
|
|
978
|
-
|
|
979
|
-
export declare const useIdle: (time: number, callback?: () => void) => {
|
|
980
|
-
isIdle: Ref<boolean, boolean>;
|
|
981
|
-
cleanup: () => void;
|
|
982
|
-
};
|
|
983
|
-
|
|
984
|
-
export declare const useLuxon: () => {
|
|
985
|
-
DateTime: typeof DateTime;
|
|
986
|
-
currentDate: DateTime<true>;
|
|
987
|
-
currentMonth: MonthNumbers;
|
|
988
|
-
currentMonthName: string;
|
|
989
|
-
currentMonthFormated: string;
|
|
990
|
-
currentTime: string;
|
|
991
|
-
nextMonth: MonthNumbers;
|
|
992
|
-
nextMonthName: string;
|
|
993
|
-
prevMonth: MonthNumbers;
|
|
994
|
-
prevMonthName: string;
|
|
995
|
-
currentYear: number;
|
|
996
|
-
prevYear: number;
|
|
997
|
-
dateStartOf: (date: Date | string, of?: DateTimeUnit) => string | null;
|
|
998
|
-
dateEndOf: (date: Date | string, of?: DateTimeUnit) => string | null;
|
|
999
|
-
dateEndSession: (date: any, plannedDuration: number) => any;
|
|
1000
|
-
formatDateTime: (date: any) => any;
|
|
1001
|
-
isSameDate: (date1: DateTime, date2: DateTime, filters: string) => boolean;
|
|
1002
|
-
};
|
|
1003
|
-
|
|
1004
|
-
export declare const useSse: (apiUrl?: string) => {
|
|
1005
|
-
eventSource: Ref<EventSource | undefined, EventSource | undefined>;
|
|
1006
|
-
addSubscriber: (topics: string[] | string, callback?: SseCallback) => EventSource;
|
|
1007
|
-
getActiveSseConnections: () => EventSource[];
|
|
1008
|
-
closeAllConnections: () => void;
|
|
1009
|
-
};
|
|
1010
|
-
|
|
1011
|
-
export declare const useStats: () => {
|
|
1012
|
-
defaultPadelStatEventsName: string[];
|
|
1013
|
-
matchEvent: (eventName: string) => string;
|
|
1014
|
-
};
|
|
1015
|
-
|
|
1016
|
-
export declare const useTheme: () => {
|
|
1017
|
-
defaultTheme: Ref<string, string>;
|
|
1018
|
-
currentTheme: Ref<string, string>;
|
|
1019
|
-
setTheme: (newTheme: string) => void;
|
|
1020
|
-
};
|
|
1021
|
-
|
|
1022
|
-
export declare const useTimeout: () => void;
|
|
1023
|
-
|
|
1024
|
-
export declare const useToaster: () => {
|
|
1025
|
-
toasts: Ref< {
|
|
1026
|
-
id: number;
|
|
1027
|
-
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
1028
|
-
message: string;
|
|
1029
|
-
timeout: number;
|
|
1030
|
-
}[], Toast[] | {
|
|
1031
|
-
id: number;
|
|
1032
|
-
type?: "error" | "success" | "warning" | "info" | undefined;
|
|
1033
|
-
message: string;
|
|
1034
|
-
timeout: number;
|
|
1035
|
-
}[]>;
|
|
1036
|
-
addToast: (options: ToastOptions) => void;
|
|
1037
|
-
removeToast: (id: number) => void;
|
|
1038
|
-
};
|
|
1039
|
-
|
|
1040
|
-
export { }
|