tickera-angular-components 0.0.1-dev.9 → 0.0.1-dev.90
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/fesm2022/tickera-angular-components.mjs +4573 -817
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/i18n/en.json +99 -1
- package/i18n/es.json +99 -1
- package/index.d.ts +1676 -338
- package/package.json +3 -2
package/index.d.ts
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter, Injector, Type, OnInit,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, WritableSignal, Signal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type, OnInit, ElementRef, AfterViewInit } from '@angular/core';
|
|
3
3
|
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject } from 'rxjs';
|
|
6
|
+
import { ShapeConfig, Shape } from 'konva/lib/Shape';
|
|
7
|
+
import { Context } from 'konva/lib/Context';
|
|
6
8
|
import { ValidatorFn, FormGroup, FormBuilder, ControlValueAccessor, NgControl, Validator, AbstractControl, FormControl } from '@angular/forms';
|
|
7
9
|
import { HttpClient, HttpInterceptorFn } from '@angular/common/http';
|
|
10
|
+
import { Stage } from 'konva/lib/Stage';
|
|
8
11
|
import { Toolbar, Editor } from 'ngx-editor';
|
|
9
|
-
import { Router } from '@angular/router';
|
|
12
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
13
|
+
import { StageComponent } from 'ng2-konva';
|
|
14
|
+
import * as tickera_angular_components from 'tickera-angular-components';
|
|
10
15
|
|
|
11
16
|
interface TickeraComponentsConfig {
|
|
12
17
|
apiUrl: string;
|
|
@@ -14,6 +19,7 @@ interface TickeraComponentsConfig {
|
|
|
14
19
|
defaultLang?: string;
|
|
15
20
|
availableLangs?: string[];
|
|
16
21
|
}
|
|
22
|
+
|
|
17
23
|
declare const TICKERA_COMPONENTS_CONFIG: InjectionToken<TickeraComponentsConfig>;
|
|
18
24
|
declare function provideTickeraComponents(config: TickeraComponentsConfig): EnvironmentProviders;
|
|
19
25
|
|
|
@@ -33,15 +39,6 @@ declare const ALERT_ICONS: {
|
|
|
33
39
|
info: string;
|
|
34
40
|
};
|
|
35
41
|
|
|
36
|
-
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
37
|
-
declare const BASE_BUTTON_CLASSES = "btn";
|
|
38
|
-
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
39
|
-
|
|
40
|
-
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
41
|
-
|
|
42
|
-
declare const BASE_INPUT_CLASSES: string;
|
|
43
|
-
declare const ERROR_INPUT_CLASSES: string;
|
|
44
|
-
|
|
45
42
|
declare const ADMIN_API_ROUTES: {
|
|
46
43
|
FIND_ALL: string;
|
|
47
44
|
CREATE: string;
|
|
@@ -65,10 +62,10 @@ declare const COUNTRY_API_ENDPOINTS: {
|
|
|
65
62
|
delete: (id: number) => string;
|
|
66
63
|
};
|
|
67
64
|
|
|
68
|
-
declare const
|
|
65
|
+
declare const CUSTOMERS_API_ROUTES: {
|
|
69
66
|
findAll: string;
|
|
70
67
|
create: string;
|
|
71
|
-
|
|
68
|
+
findOne: (id: number) => string;
|
|
72
69
|
update: (id: number) => string;
|
|
73
70
|
delete: (id: number) => string;
|
|
74
71
|
};
|
|
@@ -90,12 +87,49 @@ declare const PERFORMANCES_API_ROUTES: {
|
|
|
90
87
|
publicAvailablePerformances: string;
|
|
91
88
|
};
|
|
92
89
|
|
|
90
|
+
declare const PRICE_ZONES_API_ROUTES: {
|
|
91
|
+
FIND_ALL: string;
|
|
92
|
+
CREATE: string;
|
|
93
|
+
findOneById: (id: number) => string;
|
|
94
|
+
update: (id: number) => string;
|
|
95
|
+
delete: (id: number) => string;
|
|
96
|
+
updateElements: (id: number) => string;
|
|
97
|
+
duplicate: (id: number) => string;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
declare const PRODUCT_CATEGORIES_API_ROUTES: {
|
|
101
|
+
FIND_ALL: string;
|
|
102
|
+
CREATE: string;
|
|
103
|
+
findById: (id: number) => string;
|
|
104
|
+
update: (id: number) => string;
|
|
105
|
+
delete: (id: number) => string;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
declare const PRODUCT_TAGS_API_ROUTES: {
|
|
109
|
+
FIND_ALL: string;
|
|
110
|
+
CREATE: string;
|
|
111
|
+
findById: (id: number) => string;
|
|
112
|
+
update: (id: number) => string;
|
|
113
|
+
delete: (id: number) => string;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
declare const PRODUCT_TYPES_API_ROUTES: {
|
|
117
|
+
FIND_ALL: string;
|
|
118
|
+
CREATE: string;
|
|
119
|
+
findById: (id: number) => string;
|
|
120
|
+
update: (id: number) => string;
|
|
121
|
+
delete: (id: number) => string;
|
|
122
|
+
};
|
|
123
|
+
|
|
93
124
|
declare const PRODUCTS_API_ROUTES: {
|
|
94
125
|
FIND_ALL: string;
|
|
95
126
|
CREATE: string;
|
|
96
127
|
findOneById: (id: number) => string;
|
|
97
128
|
update: (id: number) => string;
|
|
98
129
|
delete: (id: number) => string;
|
|
130
|
+
fetchImages: (id: number) => string;
|
|
131
|
+
uploadImages: (id: number) => string;
|
|
132
|
+
deleteOneImage: (productId: number, imageId: number) => string;
|
|
99
133
|
};
|
|
100
134
|
|
|
101
135
|
declare const SHOWS_API_ROUTES: {
|
|
@@ -110,22 +144,12 @@ declare const SHOWS_API_ROUTES: {
|
|
|
110
144
|
publicAvailablePerformances: string;
|
|
111
145
|
};
|
|
112
146
|
|
|
113
|
-
declare const
|
|
147
|
+
declare const STATE_API_ENDPOINTS: {
|
|
114
148
|
findAll: string;
|
|
115
149
|
create: string;
|
|
116
|
-
|
|
117
|
-
update: (id: number) => string;
|
|
118
|
-
delete: (id: number) => string;
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
declare const PRICE_ZONES_API_ROUTES: {
|
|
122
|
-
FIND_ALL: string;
|
|
123
|
-
CREATE: string;
|
|
124
|
-
findOneById: (id: number) => string;
|
|
150
|
+
findById: (id: number) => string;
|
|
125
151
|
update: (id: number) => string;
|
|
126
152
|
delete: (id: number) => string;
|
|
127
|
-
updateElements: (id: number) => string;
|
|
128
|
-
duplicate: (id: number) => string;
|
|
129
153
|
};
|
|
130
154
|
|
|
131
155
|
declare const VENUES_API_ROUTES: {
|
|
@@ -139,155 +163,14 @@ declare const VENUES_API_ROUTES: {
|
|
|
139
163
|
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
140
164
|
};
|
|
141
165
|
|
|
142
|
-
declare
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
EXCEL = "excel",
|
|
146
|
-
WORD = "word",
|
|
147
|
-
TEXT = "text",
|
|
148
|
-
DEFAULT = "default"
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
declare enum CouponApplicability {
|
|
152
|
-
GENERAL = "GENERAL",
|
|
153
|
-
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
154
|
-
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
155
|
-
SHOWS = "SHOWS",
|
|
156
|
-
PERFORMANCES = "PERFORMANCES"
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
declare enum CouponDiscountType {
|
|
160
|
-
PERCENTAGE = "PERCENTAGE",
|
|
161
|
-
FIXED = "FIXED"
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
declare enum CorporateBondStatus {
|
|
165
|
-
ACTIVE = "ACTIVE",
|
|
166
|
-
INACTIVE = "INACTIVE",
|
|
167
|
-
EXPIRED = "EXPIRED"
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
declare enum PerformanceStatus {
|
|
171
|
-
ACTIVE = "active",
|
|
172
|
-
CANCELLED = "cancelled",
|
|
173
|
-
FINISHED = "finished",
|
|
174
|
-
POSTPONED = "postponed"
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
declare enum PerformanceTicketStatus {
|
|
178
|
-
AVAILABLE = "available",
|
|
179
|
-
RESERVED = "reserved",
|
|
180
|
-
SOLD = "sold",
|
|
181
|
-
BLOCKED = "blocked"
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
declare enum RoomMapElementOrientation {
|
|
185
|
-
TOP = "top",
|
|
186
|
-
RIGHT = "right",
|
|
187
|
-
BOTTOM = "bottom",
|
|
188
|
-
LEFT = "left",
|
|
189
|
-
CENTER = "center"
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
declare enum RoomMapElementType {
|
|
193
|
-
SEAT_BLOCK = "seat_block",
|
|
194
|
-
TABLE = "table",
|
|
195
|
-
ZONE = "zone",
|
|
196
|
-
EXIT = "exit",
|
|
197
|
-
STAGE = "stage",
|
|
198
|
-
PRODUCTION_AREA = "production_area",
|
|
199
|
-
UNAVAILABLE_SPACE = "unavailable_space",
|
|
200
|
-
STAIR = "stair",
|
|
201
|
-
HALLWAY = "hallway"
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
declare enum OrderItemType {
|
|
205
|
-
TICKET = "TICKET",
|
|
206
|
-
PRODUCT = "PRODUCT"
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
declare enum OrderStatus {
|
|
210
|
-
ON_HOLD = "on-hold",
|
|
211
|
-
PENDING_PAYMENT = "pending-payment",
|
|
212
|
-
PROCESSING = "processing",
|
|
213
|
-
COMPLETED = "completed",
|
|
214
|
-
FAILED = "failed",
|
|
215
|
-
CANCELLED = "cancelled",
|
|
216
|
-
REFUNDED = "refunded"
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
interface RoomMapPosition {
|
|
220
|
-
x: number;
|
|
221
|
-
y: number;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
interface RoomMapSize {
|
|
225
|
-
width: number;
|
|
226
|
-
height: number;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
interface RoomMapBaseElement {
|
|
230
|
-
id: string;
|
|
231
|
-
type: RoomMapElementType;
|
|
232
|
-
position: RoomMapPosition;
|
|
233
|
-
size: RoomMapSize;
|
|
234
|
-
rotation: number;
|
|
235
|
-
name?: string;
|
|
236
|
-
isLocked: boolean;
|
|
237
|
-
isVisible: boolean;
|
|
238
|
-
zIndex: number;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
242
|
-
type: RoomMapElementType.EXIT;
|
|
243
|
-
exitName?: string;
|
|
244
|
-
exitType: 'emergency' | 'regular';
|
|
245
|
-
width: number;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
249
|
-
type: RoomMapElementType.PRODUCTION_AREA;
|
|
250
|
-
areaName?: string;
|
|
251
|
-
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
255
|
-
type: RoomMapElementType.SEAT_BLOCK;
|
|
256
|
-
seatNumber?: string;
|
|
257
|
-
isAvailable: boolean;
|
|
258
|
-
priceCategory?: string;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
262
|
-
type: RoomMapElementType.STAGE;
|
|
263
|
-
stageName?: string;
|
|
264
|
-
orientation: RoomMapElementOrientation;
|
|
265
|
-
isMainStage: boolean;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
269
|
-
type: RoomMapElementType.TABLE;
|
|
270
|
-
tableNumber?: string;
|
|
271
|
-
capacity: number;
|
|
272
|
-
shape: 'round' | 'rectangular' | 'square';
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
276
|
-
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
277
|
-
reason?: string;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
281
|
-
type: RoomMapElementType.ZONE;
|
|
282
|
-
zoneName: string;
|
|
283
|
-
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
284
|
-
color: string;
|
|
285
|
-
capacity?: number;
|
|
286
|
-
}
|
|
166
|
+
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
167
|
+
declare const BASE_BUTTON_CLASSES = "btn";
|
|
168
|
+
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
287
169
|
|
|
288
|
-
|
|
170
|
+
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
289
171
|
|
|
290
|
-
|
|
172
|
+
declare const BASE_INPUT_CLASSES: string;
|
|
173
|
+
declare const ERROR_INPUT_CLASSES: string;
|
|
291
174
|
|
|
292
175
|
interface SelectOption {
|
|
293
176
|
value: any;
|
|
@@ -295,7 +178,7 @@ interface SelectOption {
|
|
|
295
178
|
disabled?: boolean;
|
|
296
179
|
}
|
|
297
180
|
|
|
298
|
-
interface Admin {
|
|
181
|
+
interface Admin extends Auditable {
|
|
299
182
|
id: number;
|
|
300
183
|
username: string;
|
|
301
184
|
email: string;
|
|
@@ -311,16 +194,17 @@ interface Admin {
|
|
|
311
194
|
reset_password_expires: Date;
|
|
312
195
|
email_verified_at: Date;
|
|
313
196
|
last_login: Date;
|
|
314
|
-
created_at: Date;
|
|
315
|
-
updated_at: Date;
|
|
316
|
-
deleted_at: Date;
|
|
317
197
|
}
|
|
318
198
|
|
|
319
199
|
interface Auditable {
|
|
320
200
|
created_at: Date;
|
|
321
201
|
updated_at: Date;
|
|
202
|
+
deleted_at?: Date | null;
|
|
322
203
|
is_published?: boolean;
|
|
323
204
|
published_at?: Date;
|
|
205
|
+
published_by?: number;
|
|
206
|
+
deleted_by?: number;
|
|
207
|
+
deleted_by_admin?: Admin;
|
|
324
208
|
created_by_admin?: Admin;
|
|
325
209
|
updated_by_admin?: Admin;
|
|
326
210
|
published_by_admin?: Admin;
|
|
@@ -363,20 +247,20 @@ interface AdminsResponse {
|
|
|
363
247
|
}
|
|
364
248
|
|
|
365
249
|
interface Country {
|
|
366
|
-
id:
|
|
250
|
+
id: number;
|
|
367
251
|
name: string;
|
|
368
252
|
iso2: string;
|
|
369
253
|
}
|
|
370
254
|
|
|
371
255
|
interface State {
|
|
372
|
-
id:
|
|
256
|
+
id: number;
|
|
373
257
|
name: string;
|
|
374
258
|
country_id: number;
|
|
375
259
|
country?: Country;
|
|
376
260
|
}
|
|
377
261
|
|
|
378
262
|
interface City {
|
|
379
|
-
id:
|
|
263
|
+
id: number;
|
|
380
264
|
name: string;
|
|
381
265
|
search_text: string | null;
|
|
382
266
|
state_id: number;
|
|
@@ -415,27 +299,21 @@ interface Venue extends Auditable {
|
|
|
415
299
|
images: VenueImage[];
|
|
416
300
|
}
|
|
417
301
|
|
|
418
|
-
interface HallFloor {
|
|
302
|
+
interface HallFloor extends Auditable {
|
|
419
303
|
id: number;
|
|
420
304
|
name: string;
|
|
421
305
|
level: number;
|
|
422
306
|
max_capacity: number;
|
|
423
307
|
description: string;
|
|
424
308
|
hall_id: number;
|
|
425
|
-
created_at: Date;
|
|
426
|
-
updated_at: Date;
|
|
427
|
-
deleted_at: Date | null;
|
|
428
309
|
}
|
|
429
310
|
|
|
430
|
-
interface Hall {
|
|
311
|
+
interface Hall extends Auditable {
|
|
431
312
|
id: number;
|
|
432
313
|
name: string;
|
|
433
314
|
venue_id: number;
|
|
434
315
|
venue?: Venue;
|
|
435
316
|
hall_floors?: HallFloor[];
|
|
436
|
-
created_at: Date;
|
|
437
|
-
updated_at: Date;
|
|
438
|
-
deleted_at: Date | null;
|
|
439
317
|
}
|
|
440
318
|
|
|
441
319
|
interface CountryResponse {
|
|
@@ -489,7 +367,7 @@ interface FetchCitiesParams {
|
|
|
489
367
|
search?: string;
|
|
490
368
|
}
|
|
491
369
|
|
|
492
|
-
interface Customer {
|
|
370
|
+
interface Customer extends Auditable {
|
|
493
371
|
username: string;
|
|
494
372
|
email: string;
|
|
495
373
|
mobile: string;
|
|
@@ -520,9 +398,6 @@ interface Customer {
|
|
|
520
398
|
membership_expires_at: Date | null;
|
|
521
399
|
id: number;
|
|
522
400
|
is_active: boolean;
|
|
523
|
-
created_at: Date;
|
|
524
|
-
updated_at: Date;
|
|
525
|
-
deleted_at: Date | null;
|
|
526
401
|
}
|
|
527
402
|
|
|
528
403
|
interface CustomerResponse {
|
|
@@ -540,76 +415,342 @@ interface CustomersResponse {
|
|
|
540
415
|
message: string;
|
|
541
416
|
}
|
|
542
417
|
|
|
543
|
-
|
|
418
|
+
interface BreadcrumbStep {
|
|
419
|
+
label: string;
|
|
420
|
+
href?: string;
|
|
421
|
+
icon?: string;
|
|
422
|
+
}
|
|
544
423
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
original_name: string;
|
|
550
|
-
extension: string;
|
|
551
|
-
size: number;
|
|
552
|
-
mime_type: string;
|
|
553
|
-
width: number;
|
|
554
|
-
height: number;
|
|
555
|
-
show_id: number;
|
|
556
|
-
created_at: Date;
|
|
424
|
+
declare enum OrderItemType {
|
|
425
|
+
TICKET = "TICKET",
|
|
426
|
+
PRODUCT = "PRODUCT",
|
|
427
|
+
GIFT_BOND = "GIFT_BOND"
|
|
557
428
|
}
|
|
558
429
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
show_type: ShowType | null;
|
|
568
|
-
pulep: string | null;
|
|
569
|
-
minimum_age: number | null;
|
|
570
|
-
show_category_id: number | null;
|
|
571
|
-
default_room_map_id: number | null;
|
|
572
|
-
published_at?: Date;
|
|
573
|
-
is_published: boolean;
|
|
574
|
-
images: ShowImage[];
|
|
575
|
-
terms_and_conditions: string;
|
|
576
|
-
performances_quantity?: number;
|
|
430
|
+
declare enum OrderStatus {
|
|
431
|
+
ON_HOLD = "on-hold",
|
|
432
|
+
PENDING_PAYMENT = "pending-payment",
|
|
433
|
+
PROCESSING = "processing",
|
|
434
|
+
COMPLETED = "completed",
|
|
435
|
+
FAILED = "failed",
|
|
436
|
+
CANCELLED = "cancelled",
|
|
437
|
+
REFUNDED = "refunded"
|
|
577
438
|
}
|
|
578
439
|
|
|
579
|
-
|
|
440
|
+
declare enum CreatorType {
|
|
441
|
+
ADMIN = "admin",
|
|
442
|
+
CUSTOMER = "customer"
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
declare enum PaymentMethod {
|
|
446
|
+
PAYROLL = "payroll",
|
|
447
|
+
CASH = "cash",
|
|
448
|
+
DATAFONO = "datafono",
|
|
449
|
+
INTERNAL_EXCHANGE = "internal_exchange",
|
|
450
|
+
CLIENT_EXCHANGE = "client_exchange",
|
|
451
|
+
MERCADO_PAGO = "mercado_pago"
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
declare enum RoomMapElementType {
|
|
455
|
+
SEAT_BLOCK = "seat_block",
|
|
456
|
+
TABLE = "table",
|
|
457
|
+
ZONE = "zone",
|
|
458
|
+
EXIT = "exit",
|
|
459
|
+
STAGE = "stage",
|
|
460
|
+
PRODUCTION_AREA = "production_area",
|
|
461
|
+
UNAVAILABLE_SPACE = "unavailable_space",
|
|
462
|
+
STAIR = "stair",
|
|
463
|
+
HALLWAY = "hallway"
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
interface RoomMapPosition {
|
|
467
|
+
x: number;
|
|
468
|
+
y: number;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
interface RoomMapSize {
|
|
472
|
+
width: number;
|
|
473
|
+
height: number;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
interface RoomMapBaseElement {
|
|
477
|
+
id: string;
|
|
478
|
+
type: RoomMapElementType;
|
|
479
|
+
position: RoomMapPosition;
|
|
480
|
+
size: RoomMapSize;
|
|
481
|
+
rotation: number;
|
|
482
|
+
name?: string;
|
|
483
|
+
isLocked: boolean;
|
|
484
|
+
isVisible: boolean;
|
|
485
|
+
zIndex: number;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
489
|
+
type: RoomMapElementType.EXIT;
|
|
490
|
+
exitName?: string;
|
|
491
|
+
exitType: 'emergency' | 'regular';
|
|
492
|
+
width: number;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
496
|
+
type: RoomMapElementType.PRODUCTION_AREA;
|
|
497
|
+
areaName?: string;
|
|
498
|
+
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
502
|
+
type: RoomMapElementType.SEAT_BLOCK;
|
|
503
|
+
seatNumber?: string;
|
|
504
|
+
isAvailable: boolean;
|
|
505
|
+
priceCategory?: string;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
declare enum RoomMapElementOrientation {
|
|
509
|
+
TOP = "top",
|
|
510
|
+
RIGHT = "right",
|
|
511
|
+
BOTTOM = "bottom",
|
|
512
|
+
LEFT = "left",
|
|
513
|
+
CENTER = "center"
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
517
|
+
type: RoomMapElementType.STAGE;
|
|
518
|
+
stageName?: string;
|
|
519
|
+
orientation: RoomMapElementOrientation;
|
|
520
|
+
isMainStage: boolean;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
524
|
+
type: RoomMapElementType.TABLE;
|
|
525
|
+
tableNumber?: string;
|
|
526
|
+
capacity: number;
|
|
527
|
+
shape: 'round' | 'rectangular' | 'square';
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
531
|
+
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
532
|
+
reason?: string;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
536
|
+
type: RoomMapElementType.ZONE;
|
|
537
|
+
zoneName: string;
|
|
538
|
+
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
539
|
+
color: string;
|
|
540
|
+
capacity?: number;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
544
|
+
|
|
545
|
+
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
546
|
+
|
|
547
|
+
declare enum ShowType {
|
|
548
|
+
PLAY = "PLAY",
|
|
549
|
+
CONCERT = "CONCERT",
|
|
550
|
+
STAND_UP_COMEDY = "STAND_UP_COMEDY",
|
|
551
|
+
OPERA = "OPERA",
|
|
552
|
+
MUSICAL = "MUSICAL",
|
|
553
|
+
DANCE = "DANCE",
|
|
554
|
+
SPORT = "SPORT",
|
|
555
|
+
OTHER = "OTHER",
|
|
556
|
+
DEFAULT = "DEFAULT"
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
type ModalSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
560
|
+
|
|
561
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
562
|
+
|
|
563
|
+
type BadgeSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
564
|
+
|
|
565
|
+
type BadgeColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
|
|
566
|
+
|
|
567
|
+
type BreadcrumbTheme = 'light' | 'dark';
|
|
568
|
+
|
|
569
|
+
type TextFontSize = 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl';
|
|
570
|
+
|
|
571
|
+
interface FeedbackModalElement {
|
|
572
|
+
id: string;
|
|
573
|
+
type: FeedbackModalType;
|
|
574
|
+
title: string;
|
|
575
|
+
isOpen: WritableSignal<boolean>;
|
|
576
|
+
message?: string;
|
|
577
|
+
showHeader?: boolean;
|
|
578
|
+
showCloseButton?: boolean;
|
|
579
|
+
showTitle?: boolean;
|
|
580
|
+
closeModal?: void;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
declare enum FileType {
|
|
584
|
+
IMAGE = "image",
|
|
585
|
+
PDF = "pdf",
|
|
586
|
+
EXCEL = "excel",
|
|
587
|
+
WORD = "word",
|
|
588
|
+
TEXT = "text",
|
|
589
|
+
DEFAULT = "default"
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
declare enum CouponApplicability {
|
|
593
|
+
GENERAL = "GENERAL",
|
|
594
|
+
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
595
|
+
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
596
|
+
SHOWS = "SHOWS",
|
|
597
|
+
PERFORMANCES = "PERFORMANCES"
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
declare enum CouponDiscountType {
|
|
601
|
+
PERCENTAGE = "PERCENTAGE",
|
|
602
|
+
FIXED = "FIXED"
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
declare enum CouponStatus {
|
|
606
|
+
ACTIVE = "ACTIVE",
|
|
607
|
+
INACTIVE = "INACTIVE",
|
|
608
|
+
EXPIRED = "EXPIRED",
|
|
609
|
+
CONSUMED = "CONSUMED"
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
declare enum CorporateBondStatus {
|
|
613
|
+
ACTIVE = "ACTIVE",
|
|
614
|
+
INACTIVE = "INACTIVE",
|
|
615
|
+
EXPIRED = "EXPIRED",
|
|
616
|
+
CONSUMED = "CONSUMED"
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
declare enum PerformanceStatus {
|
|
620
|
+
SCHEDULED = "scheduled",
|
|
621
|
+
OPEN = "open",
|
|
622
|
+
CLOSED = "closed",
|
|
623
|
+
CANCELLED = "cancelled",
|
|
624
|
+
COMPLETED = "completed",
|
|
625
|
+
POSTPONED = "postponed"
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
declare enum PerformanceTicketStatus {
|
|
629
|
+
AVAILABLE = "available",
|
|
630
|
+
RESERVED = "reserved",
|
|
631
|
+
SOLD = "sold",
|
|
632
|
+
BLOCKED = "blocked"
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
declare enum GiftBondStatus {
|
|
636
|
+
ACTIVE = "ACTIVE",
|
|
637
|
+
INACTIVE = "INACTIVE"
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
declare enum GiftBondPurchaseStatus {
|
|
641
|
+
AVAILABLE = "AVAILABLE",
|
|
642
|
+
REDEEMED = "REDEEMED",
|
|
643
|
+
EXPIRED = "EXPIRED",
|
|
644
|
+
CANCELLED = "CANCELLED"
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
declare enum TransactionStatus {
|
|
648
|
+
PENDING = "PENDING",
|
|
649
|
+
APPROVED = "APPROVED",
|
|
650
|
+
REJECTED = "REJECTED",
|
|
651
|
+
ERROR = "ERROR"
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
interface FetchProductCategoriesParams {
|
|
655
|
+
name?: string;
|
|
656
|
+
slug?: string;
|
|
657
|
+
page?: number;
|
|
658
|
+
limit?: number;
|
|
659
|
+
search?: string;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
interface ProductCategory extends Auditable {
|
|
663
|
+
id: number;
|
|
664
|
+
name: string;
|
|
665
|
+
slug: string;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
interface ProductCategoriesResponse {
|
|
580
669
|
statusCode: number;
|
|
581
|
-
data:
|
|
670
|
+
data: {
|
|
671
|
+
categories: ProductCategory[];
|
|
672
|
+
total: number;
|
|
673
|
+
};
|
|
582
674
|
message: string;
|
|
583
675
|
}
|
|
584
676
|
|
|
585
|
-
interface
|
|
677
|
+
interface ProductCategoryResponse {
|
|
678
|
+
statusCode: number;
|
|
679
|
+
data: ProductCategory;
|
|
680
|
+
message: string;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
interface FetchProductTagsParams {
|
|
684
|
+
name?: string;
|
|
685
|
+
slug?: string;
|
|
686
|
+
page?: number;
|
|
687
|
+
limit?: number;
|
|
688
|
+
search?: string;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
interface ProductTag extends Auditable {
|
|
692
|
+
id: number;
|
|
693
|
+
name: string;
|
|
694
|
+
slug: string;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
interface ProductTagResponse {
|
|
698
|
+
statusCode: number;
|
|
699
|
+
data: ProductTag;
|
|
700
|
+
message: string;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
interface ProductTagsResponse {
|
|
586
704
|
statusCode: number;
|
|
587
705
|
data: {
|
|
588
|
-
|
|
706
|
+
tags: ProductTag[];
|
|
589
707
|
total: number;
|
|
590
708
|
};
|
|
591
709
|
message: string;
|
|
592
710
|
}
|
|
593
711
|
|
|
594
|
-
interface
|
|
712
|
+
interface FetchProductTypesParams {
|
|
713
|
+
name?: string;
|
|
714
|
+
slug?: string;
|
|
595
715
|
page?: number;
|
|
596
716
|
limit?: number;
|
|
597
717
|
search?: string;
|
|
598
|
-
date?: string;
|
|
599
718
|
}
|
|
600
719
|
|
|
601
|
-
interface
|
|
720
|
+
interface ProductType extends Auditable {
|
|
602
721
|
id: number;
|
|
603
722
|
name: string;
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
723
|
+
slug: string;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
interface ProductTypeResponse {
|
|
727
|
+
statusCode: number;
|
|
728
|
+
data: ProductType;
|
|
729
|
+
message: string;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
interface ProductTypesResponse {
|
|
733
|
+
statusCode: number;
|
|
734
|
+
data: {
|
|
735
|
+
types: ProductType[];
|
|
736
|
+
total: number;
|
|
737
|
+
};
|
|
738
|
+
message: string;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
interface ProductImage {
|
|
742
|
+
id: number;
|
|
743
|
+
path: string;
|
|
744
|
+
full_url: string;
|
|
745
|
+
original_name: string;
|
|
746
|
+
extension: string;
|
|
747
|
+
size: number;
|
|
748
|
+
mime_type: string;
|
|
749
|
+
width: number;
|
|
750
|
+
height: number;
|
|
751
|
+
product_id: number;
|
|
752
|
+
product: Product;
|
|
609
753
|
created_at: Date;
|
|
610
|
-
updated_at: Date;
|
|
611
|
-
created_by: number;
|
|
612
|
-
updated_by: number;
|
|
613
754
|
}
|
|
614
755
|
|
|
615
756
|
interface Product extends Auditable {
|
|
@@ -624,10 +765,34 @@ interface Product extends Auditable {
|
|
|
624
765
|
is_limited_edition: boolean;
|
|
625
766
|
is_active: boolean;
|
|
626
767
|
deleted_at: Date | null;
|
|
627
|
-
categories?:
|
|
628
|
-
tags?:
|
|
629
|
-
types?:
|
|
630
|
-
images?:
|
|
768
|
+
categories?: ProductCategory[];
|
|
769
|
+
tags?: ProductTag[];
|
|
770
|
+
types?: ProductType[];
|
|
771
|
+
images?: ProductImage[];
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
interface ShowImage {
|
|
775
|
+
id: number;
|
|
776
|
+
path: string;
|
|
777
|
+
full_url: string;
|
|
778
|
+
original_name: string;
|
|
779
|
+
extension: string;
|
|
780
|
+
size: number;
|
|
781
|
+
mime_type: string;
|
|
782
|
+
width: number;
|
|
783
|
+
height: number;
|
|
784
|
+
show_id: number;
|
|
785
|
+
created_at: Date;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
interface PriceZone extends Auditable {
|
|
789
|
+
id: number;
|
|
790
|
+
name: string;
|
|
791
|
+
color: string;
|
|
792
|
+
normal_price: number | null;
|
|
793
|
+
is_active: boolean;
|
|
794
|
+
elements: any[];
|
|
795
|
+
room_map_id: number | null;
|
|
631
796
|
}
|
|
632
797
|
|
|
633
798
|
interface NumerationConfig {
|
|
@@ -665,7 +830,7 @@ interface RoomMapElementTemplate {
|
|
|
665
830
|
price_zone?: PriceZone;
|
|
666
831
|
}
|
|
667
832
|
|
|
668
|
-
interface RoomMap {
|
|
833
|
+
interface RoomMap extends Auditable {
|
|
669
834
|
id: number;
|
|
670
835
|
name: string;
|
|
671
836
|
canvas_settings: {
|
|
@@ -681,8 +846,6 @@ interface RoomMap {
|
|
|
681
846
|
related_product_ids: number[];
|
|
682
847
|
products?: Product[];
|
|
683
848
|
venue_name?: string;
|
|
684
|
-
created_at: Date;
|
|
685
|
-
updated_at: Date;
|
|
686
849
|
}
|
|
687
850
|
|
|
688
851
|
interface RoomMapCanvasConfiguration {
|
|
@@ -724,7 +887,7 @@ interface ElementPropertiesTab {
|
|
|
724
887
|
elements_access: string[];
|
|
725
888
|
}
|
|
726
889
|
|
|
727
|
-
interface Performance {
|
|
890
|
+
interface Performance extends Auditable {
|
|
728
891
|
id: number;
|
|
729
892
|
start_time: Date | string;
|
|
730
893
|
end_time: Date | string;
|
|
@@ -734,26 +897,79 @@ interface Performance {
|
|
|
734
897
|
show?: Show;
|
|
735
898
|
room_map: RoomMap;
|
|
736
899
|
room_map_id: number;
|
|
737
|
-
|
|
738
|
-
updated_at: Date;
|
|
900
|
+
performance_tickets?: PerformanceTicket[];
|
|
739
901
|
}
|
|
740
902
|
|
|
741
|
-
interface
|
|
903
|
+
interface ShowCategory extends Auditable {
|
|
904
|
+
id: number;
|
|
905
|
+
name: string;
|
|
906
|
+
slug: string;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
interface ShowCategoriesResponse {
|
|
742
910
|
statusCode: number;
|
|
743
|
-
data:
|
|
911
|
+
data: {
|
|
912
|
+
categories: ShowCategory[];
|
|
913
|
+
total: number;
|
|
914
|
+
};
|
|
744
915
|
message: string;
|
|
745
916
|
}
|
|
746
917
|
|
|
747
|
-
interface
|
|
918
|
+
interface ShowCategoryResponse {
|
|
919
|
+
statusCode: number;
|
|
920
|
+
data: ShowCategory;
|
|
921
|
+
message: string;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
interface ShowGender extends Auditable {
|
|
925
|
+
id: number;
|
|
926
|
+
name: string;
|
|
927
|
+
slug: string;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
interface ShowGenderResponse {
|
|
931
|
+
statusCode: number;
|
|
932
|
+
data: ShowGender;
|
|
933
|
+
message: string;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
interface ShowGendersResponse {
|
|
748
937
|
statusCode: number;
|
|
749
938
|
data: {
|
|
750
|
-
|
|
939
|
+
genders: ShowGender[];
|
|
751
940
|
total: number;
|
|
752
941
|
};
|
|
753
942
|
message: string;
|
|
754
943
|
}
|
|
755
944
|
|
|
756
|
-
interface
|
|
945
|
+
interface Show extends Auditable {
|
|
946
|
+
id: number;
|
|
947
|
+
title: string;
|
|
948
|
+
slug: string;
|
|
949
|
+
description: string;
|
|
950
|
+
duration_minutes: number | null;
|
|
951
|
+
type_of_costs: string | null;
|
|
952
|
+
service_fee: number | null;
|
|
953
|
+
show_type: ShowType | null;
|
|
954
|
+
pulep: string | null;
|
|
955
|
+
minimum_age: number | null;
|
|
956
|
+
show_gender?: ShowGender | null;
|
|
957
|
+
show_gender_id: number | null;
|
|
958
|
+
show_category?: ShowCategory | null;
|
|
959
|
+
show_category_id: number | null;
|
|
960
|
+
default_room_map?: RoomMap | null;
|
|
961
|
+
default_room_map_id: number | null;
|
|
962
|
+
is_published: boolean;
|
|
963
|
+
images: ShowImage[];
|
|
964
|
+
terms_and_conditions: string | null;
|
|
965
|
+
performances_quantity?: number;
|
|
966
|
+
performances?: Performance[];
|
|
967
|
+
next_performance?: Performance;
|
|
968
|
+
days_of_week?: number[];
|
|
969
|
+
unique_start_times?: string[];
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
interface OrderItem extends Auditable {
|
|
757
973
|
id: number;
|
|
758
974
|
order: Order;
|
|
759
975
|
item_type: OrderItemType;
|
|
@@ -766,26 +982,21 @@ interface OrderItem {
|
|
|
766
982
|
ticket_id?: number;
|
|
767
983
|
ticket_uuid?: string;
|
|
768
984
|
item: Show | Product;
|
|
769
|
-
created_at: Date;
|
|
770
|
-
updated_at: Date;
|
|
771
|
-
created_by: number;
|
|
772
|
-
updated_by: number;
|
|
773
985
|
}
|
|
774
986
|
|
|
775
987
|
interface Coupon extends Auditable {
|
|
776
988
|
id: number;
|
|
777
989
|
code: string;
|
|
990
|
+
billing_code: string;
|
|
778
991
|
description?: string;
|
|
779
992
|
discount_type: CouponDiscountType;
|
|
780
|
-
discount_type_string?: string;
|
|
781
993
|
discount_value: number;
|
|
782
|
-
discount_value_string?: string;
|
|
783
994
|
start_date: Date | null;
|
|
784
995
|
end_date: Date | null;
|
|
785
996
|
max_uses: number | null;
|
|
786
|
-
|
|
997
|
+
max_uses_per_customer?: number | null;
|
|
787
998
|
uses_count: number;
|
|
788
|
-
|
|
999
|
+
status: CouponStatus;
|
|
789
1000
|
applicability_type: CouponApplicability;
|
|
790
1001
|
applicable_customer_emails: string[] | null;
|
|
791
1002
|
applicable_membership_types: string[] | null;
|
|
@@ -793,9 +1004,11 @@ interface Coupon extends Auditable {
|
|
|
793
1004
|
applicable_performance_ids?: number[];
|
|
794
1005
|
applicable_price_zone_ids?: number[];
|
|
795
1006
|
applies_to_service_fee?: boolean;
|
|
1007
|
+
orders?: Order[];
|
|
1008
|
+
customers?: Customer[];
|
|
796
1009
|
}
|
|
797
1010
|
|
|
798
|
-
interface CorporateBond {
|
|
1011
|
+
interface CorporateBond extends Auditable {
|
|
799
1012
|
id: number;
|
|
800
1013
|
name: string;
|
|
801
1014
|
description?: string;
|
|
@@ -806,10 +1019,6 @@ interface CorporateBond {
|
|
|
806
1019
|
status: CorporateBondStatus;
|
|
807
1020
|
value: number;
|
|
808
1021
|
codes: CorporateBondCode[];
|
|
809
|
-
created_at: Date;
|
|
810
|
-
updated_at: Date;
|
|
811
|
-
created_by: number;
|
|
812
|
-
updated_by: number;
|
|
813
1022
|
}
|
|
814
1023
|
|
|
815
1024
|
interface CorporateBondCode {
|
|
@@ -839,38 +1048,167 @@ interface ValidateCorporateBondResponse {
|
|
|
839
1048
|
statusCode: number;
|
|
840
1049
|
}
|
|
841
1050
|
|
|
842
|
-
interface
|
|
1051
|
+
interface GiftBondImage {
|
|
1052
|
+
id: number;
|
|
1053
|
+
path: string;
|
|
1054
|
+
full_url: string;
|
|
1055
|
+
original_name: string;
|
|
1056
|
+
extension: string;
|
|
1057
|
+
size: number;
|
|
1058
|
+
mime_type: string;
|
|
1059
|
+
width: number;
|
|
1060
|
+
height: number;
|
|
1061
|
+
is_featured: boolean;
|
|
1062
|
+
gift_bond_id: number;
|
|
1063
|
+
gift_bond: GiftBond;
|
|
1064
|
+
created_at: Date;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
interface GiftBond extends Auditable {
|
|
1068
|
+
id: number;
|
|
1069
|
+
name: string;
|
|
1070
|
+
description?: string;
|
|
1071
|
+
slug?: string;
|
|
1072
|
+
status: GiftBondStatus;
|
|
1073
|
+
value: number;
|
|
1074
|
+
page_content?: string;
|
|
1075
|
+
images?: GiftBondImage[];
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
interface GiftBondResponse {
|
|
1079
|
+
statusCode: number;
|
|
1080
|
+
data: GiftBond;
|
|
1081
|
+
message: string;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
interface GiftBondsResponse {
|
|
1085
|
+
statusCode: number;
|
|
1086
|
+
data: {
|
|
1087
|
+
gift_bonds: GiftBond[];
|
|
1088
|
+
total: number;
|
|
1089
|
+
};
|
|
1090
|
+
message: string;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
interface GiftBondPurchase extends Auditable {
|
|
1094
|
+
id: number;
|
|
1095
|
+
code: string;
|
|
1096
|
+
original_value: number;
|
|
1097
|
+
used_value: number | null;
|
|
1098
|
+
lost_value: number | null;
|
|
1099
|
+
beneficiary_email: string;
|
|
1100
|
+
beneficiary: Customer | null;
|
|
1101
|
+
personalized_message: string | null;
|
|
1102
|
+
status: GiftBondPurchaseStatus;
|
|
1103
|
+
purchased_at: string;
|
|
1104
|
+
expires_at: string;
|
|
1105
|
+
redeemed_at: string | null;
|
|
1106
|
+
gift_bond_id: number;
|
|
1107
|
+
buyer_customer_id: number;
|
|
1108
|
+
buyer: Customer;
|
|
1109
|
+
order: Order | null;
|
|
1110
|
+
order_id: number;
|
|
1111
|
+
redemption_order_id: number | null;
|
|
1112
|
+
redemption_order: Order | null;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
interface ValidateGiftBondResponse {
|
|
1116
|
+
data: {
|
|
1117
|
+
valid: boolean;
|
|
1118
|
+
message: string;
|
|
1119
|
+
code: string;
|
|
1120
|
+
bond?: GiftBondPurchase;
|
|
1121
|
+
};
|
|
1122
|
+
statusCode: number;
|
|
1123
|
+
message: string;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
interface GiftBondPurchaseResponse {
|
|
1127
|
+
statusCode: number;
|
|
1128
|
+
data: GiftBondPurchase;
|
|
1129
|
+
message: string;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
interface GiftBondPurchasesResponse {
|
|
1133
|
+
statusCode: number;
|
|
1134
|
+
data: {
|
|
1135
|
+
items: GiftBondPurchase[];
|
|
1136
|
+
total: number;
|
|
1137
|
+
};
|
|
1138
|
+
message: string;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
interface Transaction extends Auditable {
|
|
1142
|
+
id: number;
|
|
1143
|
+
status: TransactionStatus;
|
|
1144
|
+
amount: number;
|
|
1145
|
+
currency: string;
|
|
1146
|
+
payment_gateway: string;
|
|
1147
|
+
gateway_transaction_id: string;
|
|
1148
|
+
gateway_response: any;
|
|
1149
|
+
order: Order;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
interface OrderBillingInfo {
|
|
1153
|
+
first_name: string;
|
|
1154
|
+
last_name: string;
|
|
1155
|
+
email: string;
|
|
1156
|
+
mobile: string;
|
|
1157
|
+
document_type: string;
|
|
1158
|
+
document_number: string;
|
|
1159
|
+
address: string;
|
|
1160
|
+
city_id: number;
|
|
1161
|
+
postal_code?: string;
|
|
1162
|
+
address_notes?: string;
|
|
1163
|
+
payment_method: PaymentMethod;
|
|
1164
|
+
terms_accepted: boolean;
|
|
1165
|
+
data_processing_accepted: boolean;
|
|
1166
|
+
comments?: string;
|
|
1167
|
+
products?: Array<{
|
|
1168
|
+
id: number;
|
|
1169
|
+
quantity: number;
|
|
1170
|
+
}>;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
interface Order extends Auditable {
|
|
843
1174
|
id: number;
|
|
844
1175
|
uuid: string;
|
|
845
|
-
|
|
1176
|
+
customer_id: number | null;
|
|
1177
|
+
customer: Customer | null;
|
|
846
1178
|
customer_name?: string;
|
|
847
1179
|
customer_email?: string;
|
|
848
1180
|
order_items: OrderItem[];
|
|
849
1181
|
order_items_quantity?: number;
|
|
850
|
-
|
|
1182
|
+
transactions: Transaction[];
|
|
1183
|
+
sub_total: number;
|
|
1184
|
+
discount_amount: number | null;
|
|
851
1185
|
total: number;
|
|
1186
|
+
sub_total_discounted: number | null;
|
|
852
1187
|
total_discounted: number;
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
coupon: Coupon;
|
|
858
|
-
coupon_snapshot: Record<string, any>;
|
|
859
|
-
corporate_bond_code: CorporateBondCode;
|
|
860
|
-
corporate_bond_code_snapshot: Record<string, any>;
|
|
1188
|
+
service_fee: number | null;
|
|
1189
|
+
service_fee_discounted: number | null;
|
|
1190
|
+
coupon: Coupon | null;
|
|
1191
|
+
coupon_snapshot: Record<string, any> | null;
|
|
861
1192
|
status: OrderStatus;
|
|
862
|
-
show_snapshot: Record<string, any
|
|
863
|
-
performance_snapshot: Record<string, any
|
|
864
|
-
|
|
865
|
-
updated_at: Date;
|
|
866
|
-
payment_method: string;
|
|
1193
|
+
show_snapshot: Record<string, any> | null;
|
|
1194
|
+
performance_snapshot: Record<string, any> | null;
|
|
1195
|
+
payment_method: PaymentMethod | null;
|
|
867
1196
|
terms_accepted: boolean;
|
|
868
1197
|
data_processing_accepted: boolean;
|
|
869
|
-
billing_info:
|
|
870
|
-
|
|
871
|
-
|
|
1198
|
+
billing_info: OrderBillingInfo | null;
|
|
1199
|
+
corporate_bond_code_snapshot: Record<string, any> | null;
|
|
1200
|
+
gift_bond_snapshot: Record<string, any> | null;
|
|
1201
|
+
corporate_bond_code: CorporateBondCode | null;
|
|
1202
|
+
corporate_bond_code_id: number | null;
|
|
1203
|
+
gift_bond: GiftBond | null;
|
|
1204
|
+
gift_bond_id: number | null;
|
|
1205
|
+
comments: string | null;
|
|
1206
|
+
address_notes: string | null;
|
|
1207
|
+
mercado_pago_preference_id: string;
|
|
872
1208
|
created_by: number;
|
|
1209
|
+
created_by_type: CreatorType;
|
|
873
1210
|
updated_by: number;
|
|
1211
|
+
updated_by_type: CreatorType;
|
|
874
1212
|
}
|
|
875
1213
|
|
|
876
1214
|
interface OrderResponse {
|
|
@@ -888,7 +1226,7 @@ interface OrdersResponse {
|
|
|
888
1226
|
message: string;
|
|
889
1227
|
}
|
|
890
1228
|
|
|
891
|
-
interface PerformanceTicket {
|
|
1229
|
+
interface PerformanceTicket extends Auditable {
|
|
892
1230
|
id: number;
|
|
893
1231
|
uuid: string;
|
|
894
1232
|
is_accessible: boolean;
|
|
@@ -908,8 +1246,139 @@ interface PerformanceTicket {
|
|
|
908
1246
|
checked_in_at: Date | null;
|
|
909
1247
|
order_items: OrderItem[];
|
|
910
1248
|
element_qty?: number;
|
|
911
|
-
|
|
912
|
-
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
interface TicketMapSeatPosition {
|
|
1252
|
+
rowIndex: number;
|
|
1253
|
+
colIndex: number;
|
|
1254
|
+
seatLabel: string;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
interface TicketMapTableChairPosition {
|
|
1258
|
+
index: number;
|
|
1259
|
+
angle: number;
|
|
1260
|
+
x: number;
|
|
1261
|
+
y: number;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
interface ElementRenderData {
|
|
1265
|
+
elementId: number;
|
|
1266
|
+
hallFloorId: number | null;
|
|
1267
|
+
type: RoomMapElementType;
|
|
1268
|
+
shapeConfig: Record<string, any>;
|
|
1269
|
+
tickets: PerformanceTicket[];
|
|
1270
|
+
ticketByNumeration: Map<string, PerformanceTicket>;
|
|
1271
|
+
elementName: string;
|
|
1272
|
+
seatPositions?: TicketMapSeatPosition[][];
|
|
1273
|
+
chairPositions?: TicketMapTableChairPosition[];
|
|
1274
|
+
zoneCapacity?: number;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
interface TicketMapTooltipData {
|
|
1278
|
+
x: number;
|
|
1279
|
+
y: number;
|
|
1280
|
+
elementName: string;
|
|
1281
|
+
seatLabel: string | null;
|
|
1282
|
+
price: number;
|
|
1283
|
+
status: PerformanceTicketStatus;
|
|
1284
|
+
statusLabel: string;
|
|
1285
|
+
statusColor: string;
|
|
1286
|
+
isSelected: boolean;
|
|
1287
|
+
ticketId: number;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
interface TicketMapZoneQuantityState {
|
|
1291
|
+
elementId: number;
|
|
1292
|
+
selectedCount: number;
|
|
1293
|
+
maxCapacity: number;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
interface ReservePerformanceDto {
|
|
1297
|
+
ticket_ids: number[];
|
|
1298
|
+
products?: {
|
|
1299
|
+
id: number;
|
|
1300
|
+
quantity: number;
|
|
1301
|
+
}[];
|
|
1302
|
+
coupon_code?: string;
|
|
1303
|
+
gift_bond_code?: string;
|
|
1304
|
+
corporate_bond_code?: string;
|
|
1305
|
+
payment_method?: string;
|
|
1306
|
+
billing?: {
|
|
1307
|
+
first_name: string;
|
|
1308
|
+
last_name: string;
|
|
1309
|
+
email: string;
|
|
1310
|
+
mobile: string;
|
|
1311
|
+
document_type: string;
|
|
1312
|
+
document_number: string;
|
|
1313
|
+
address: string;
|
|
1314
|
+
city_id: number;
|
|
1315
|
+
postal_code?: string;
|
|
1316
|
+
address_notes?: string;
|
|
1317
|
+
terms_accepted: boolean;
|
|
1318
|
+
data_processing_accepted: boolean;
|
|
1319
|
+
comments?: string;
|
|
1320
|
+
};
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
interface TicketMapZoomConfig {
|
|
1324
|
+
minZoom: number;
|
|
1325
|
+
maxZoom: number;
|
|
1326
|
+
zoomStep: number;
|
|
1327
|
+
scaleBy: number;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
interface HallFloorOption {
|
|
1331
|
+
id: number | null;
|
|
1332
|
+
name: string;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
declare enum SelectedDiscountCardType {
|
|
1336
|
+
COUPON = "COUPON",
|
|
1337
|
+
CORPORATE_BOND = "CORPORATE_BOND",
|
|
1338
|
+
GIFT_BOND = "GIFT_BOND"
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
interface SelectedDiscountCard {
|
|
1342
|
+
name: string;
|
|
1343
|
+
type: SelectedDiscountCardType;
|
|
1344
|
+
value: number;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
interface FetchShowsParams {
|
|
1348
|
+
page?: number;
|
|
1349
|
+
limit?: number;
|
|
1350
|
+
search?: string;
|
|
1351
|
+
date?: string;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
interface ShowResponse {
|
|
1355
|
+
statusCode: number;
|
|
1356
|
+
data: Show;
|
|
1357
|
+
message: string;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
interface ShowsResponseInterface {
|
|
1361
|
+
statusCode: number;
|
|
1362
|
+
data: {
|
|
1363
|
+
shows: Show[];
|
|
1364
|
+
total: number;
|
|
1365
|
+
};
|
|
1366
|
+
message: string;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
interface PerformanceResponse {
|
|
1370
|
+
statusCode: number;
|
|
1371
|
+
data: Performance;
|
|
1372
|
+
message: string;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
interface PerformancesResponseInterface {
|
|
1376
|
+
statusCode: number;
|
|
1377
|
+
data: {
|
|
1378
|
+
performances: Performance[];
|
|
1379
|
+
total: number;
|
|
1380
|
+
};
|
|
1381
|
+
message: string;
|
|
913
1382
|
}
|
|
914
1383
|
|
|
915
1384
|
interface PerformanceBookingDataResponse {
|
|
@@ -993,6 +1462,13 @@ interface ProductResponse {
|
|
|
993
1462
|
message: string;
|
|
994
1463
|
}
|
|
995
1464
|
|
|
1465
|
+
interface ProductTaxonomy extends Auditable {
|
|
1466
|
+
id: number;
|
|
1467
|
+
name: string;
|
|
1468
|
+
slug: string;
|
|
1469
|
+
selected?: boolean;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
996
1472
|
interface ProductsResponseInterface {
|
|
997
1473
|
statusCode: number;
|
|
998
1474
|
data: {
|
|
@@ -1046,17 +1522,162 @@ interface ValidateCouponResponse {
|
|
|
1046
1522
|
};
|
|
1047
1523
|
}
|
|
1048
1524
|
|
|
1525
|
+
interface RecentOrder {
|
|
1526
|
+
id: number;
|
|
1527
|
+
customer_name: string;
|
|
1528
|
+
event: string;
|
|
1529
|
+
total: number;
|
|
1530
|
+
status: string;
|
|
1531
|
+
uuid: string;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
interface RecentRoomMap {
|
|
1535
|
+
id: number;
|
|
1536
|
+
name: string;
|
|
1537
|
+
capacity: number;
|
|
1538
|
+
created_at: Date;
|
|
1539
|
+
updated_at: Date;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
interface QrTokenData {
|
|
1543
|
+
token: string;
|
|
1544
|
+
expires_at: string;
|
|
1545
|
+
refresh_in: number;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
interface QrTokenResponse {
|
|
1549
|
+
statusCode: number;
|
|
1550
|
+
data: QrTokenData;
|
|
1551
|
+
message: string;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
declare const DOCUMENT_TYPES_OPTIONS: SelectOption[];
|
|
1555
|
+
|
|
1556
|
+
declare const PAYMENT_METHODS_OPTIONS: SelectOption[];
|
|
1557
|
+
declare const ORDER_STATUS_COLORS: Record<OrderStatus, {
|
|
1558
|
+
text: string;
|
|
1559
|
+
bg: string;
|
|
1560
|
+
}>;
|
|
1561
|
+
declare const ORDER_ITEM_TYPES_COLORS: Record<OrderItemType, {
|
|
1562
|
+
text: string;
|
|
1563
|
+
bg: string;
|
|
1564
|
+
}>;
|
|
1565
|
+
declare const ORDER_DISCOUNT_COLORS: Record<string, {
|
|
1566
|
+
text: string;
|
|
1567
|
+
bg: string;
|
|
1568
|
+
}>;
|
|
1569
|
+
declare const TRANSACTION_STATUS_COLORS: Record<TransactionStatus, {
|
|
1570
|
+
text: string;
|
|
1571
|
+
bg: string;
|
|
1572
|
+
}>;
|
|
1573
|
+
|
|
1574
|
+
declare const PERFORMANCE_STATUS_COLORS: Record<PerformanceStatus, {
|
|
1575
|
+
text: string;
|
|
1576
|
+
bg: string;
|
|
1577
|
+
}>;
|
|
1578
|
+
|
|
1579
|
+
declare const TICKET_MAP_LAST_TICKETS_LIMIT = 10;
|
|
1580
|
+
declare const TICKET_ELEMENT_TYPES: RoomMapElementType[];
|
|
1581
|
+
declare const DEFAULT_STAGE_CONFIG: {
|
|
1582
|
+
[x: string]: any;
|
|
1583
|
+
};
|
|
1584
|
+
declare const TICKET_STATUS_COLORS: Record<PerformanceTicketStatus, string>;
|
|
1585
|
+
declare const TICKET_STATUS_FILLS: Record<PerformanceTicketStatus, string>;
|
|
1586
|
+
declare const TICKET_STATUS_LABELS: Record<PerformanceTicketStatus, string>;
|
|
1587
|
+
declare const TICKET_MAP_GRID_SIZE = 30;
|
|
1588
|
+
declare const TICKET_MAP_TITLE_HEIGHT = 30;
|
|
1589
|
+
|
|
1590
|
+
interface KonvaShapeConfig {
|
|
1591
|
+
config: ShapeConfig;
|
|
1592
|
+
layer: 'background' | 'elements' | 'foreground' | 'overlay';
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
declare function drawRoundedRect(con: Context, shape: Shape, x: number, y: number, width: number, height: number, cornerRadius: number): void;
|
|
1596
|
+
|
|
1597
|
+
declare const generateExitScene: (con: Context, shape: Shape) => void;
|
|
1598
|
+
|
|
1599
|
+
declare const generateHallwayScene: (con: Context, shape: Shape) => void;
|
|
1600
|
+
|
|
1601
|
+
declare const generateProductionAreaScene: (con: Context, shape: Shape) => void;
|
|
1602
|
+
|
|
1603
|
+
declare const generateSeatBlockScene: (con: Context, shape: Shape, numerationConfig?: {
|
|
1604
|
+
start_row_letter: string;
|
|
1605
|
+
row_order: "TOP_TO_BOTTOM" | "BOTTOM_TO_TOP";
|
|
1606
|
+
start_column_number: number;
|
|
1607
|
+
column_order: "LEFT_TO_RIGHT" | "RIGHT_TO_LEFT";
|
|
1608
|
+
}) => void;
|
|
1609
|
+
|
|
1610
|
+
declare const generateStageScene: (con: Context, shape: Shape) => void;
|
|
1611
|
+
|
|
1612
|
+
declare const generateStairScene: (con: Context, shape: Shape) => void;
|
|
1613
|
+
|
|
1614
|
+
declare const generateTableScene: (con: Context, shape: Shape) => void;
|
|
1615
|
+
|
|
1616
|
+
declare const generateUnavailableSpaceScene: (con: Context, shape: Shape) => void;
|
|
1617
|
+
|
|
1618
|
+
declare const generateZoneScene: (con: Context, shape: Shape) => void;
|
|
1619
|
+
|
|
1620
|
+
declare const KONVA_SHAPE_MAPPINGS: Record<RoomMapElementType, KonvaShapeConfig>;
|
|
1621
|
+
|
|
1622
|
+
declare const SHOW_TYPE_COLORS: Record<ShowType, {
|
|
1623
|
+
bg: string;
|
|
1624
|
+
text: string;
|
|
1625
|
+
}>;
|
|
1626
|
+
|
|
1049
1627
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1050
1628
|
|
|
1629
|
+
type OrderDiscountType = 'coupon' | 'corporate_bond' | 'gift_bond';
|
|
1630
|
+
interface OrderDiscountInfo {
|
|
1631
|
+
type: OrderDiscountType | null;
|
|
1632
|
+
code: string | null;
|
|
1633
|
+
name: string | null;
|
|
1634
|
+
value: number;
|
|
1635
|
+
discountType: 'percentage' | 'fixed' | null;
|
|
1636
|
+
icon: string;
|
|
1637
|
+
}
|
|
1638
|
+
declare function getOrderDiscount(order: Order): OrderDiscountInfo;
|
|
1639
|
+
|
|
1051
1640
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
1052
1641
|
|
|
1053
1642
|
declare const transformImageToFile: (image: ShowImage | VenueImage) => UploadedFile;
|
|
1054
1643
|
|
|
1055
1644
|
declare const formatCitiesResponseToSelect: (res: CitiesResponse) => {
|
|
1056
|
-
value:
|
|
1645
|
+
value: number;
|
|
1057
1646
|
label: string;
|
|
1058
1647
|
}[];
|
|
1059
1648
|
|
|
1649
|
+
declare function tintColor(hex: string, amount?: number): string;
|
|
1650
|
+
|
|
1651
|
+
declare const drawChairIcon: (con: Context, cx: number, cy: number, size: number) => void;
|
|
1652
|
+
|
|
1653
|
+
declare const drawHappyFace: (con: Context, cx: number, cy: number, size: number) => void;
|
|
1654
|
+
|
|
1655
|
+
declare const drawWheelchairIcon: (con: Context, shape: Shape, cx: number, cy: number, size: number, fillColor?: string, strokeColor?: string) => void;
|
|
1656
|
+
|
|
1657
|
+
declare const numberToLetter: (num: number) => string;
|
|
1658
|
+
|
|
1659
|
+
declare const getItemTypeIcon: (ticket: PerformanceTicket) => string;
|
|
1660
|
+
|
|
1661
|
+
declare const generateSeatBlockTicketScene: (con: Context, shape: Shape, numerationConfig?: {
|
|
1662
|
+
start_row_letter: string;
|
|
1663
|
+
row_order: "TOP_TO_BOTTOM" | "BOTTOM_TO_TOP";
|
|
1664
|
+
start_column_number: number;
|
|
1665
|
+
column_order: "LEFT_TO_RIGHT" | "RIGHT_TO_LEFT";
|
|
1666
|
+
}, ticketStatusMap?: Map<string, PerformanceTicketStatus>) => void;
|
|
1667
|
+
|
|
1668
|
+
declare const generateTableTicketScene: (con: Context, shape: Shape, chairTicketStatuses?: PerformanceTicketStatus[], tableSeats?: RoomMapSeatState[][]) => void;
|
|
1669
|
+
|
|
1670
|
+
declare function processElementsToRenderData(elements: RoomMapElementTemplate[], tickets: PerformanceTicket[], priceZones?: {
|
|
1671
|
+
id: number;
|
|
1672
|
+
color: string;
|
|
1673
|
+
}[]): ElementRenderData[];
|
|
1674
|
+
declare function findTicketAtPosition(renderData: ElementRenderData, relX: number, relY: number): PerformanceTicket | null;
|
|
1675
|
+
declare function findElementAtPosition(renderDataList: ElementRenderData[], stageX: number, stageY: number): {
|
|
1676
|
+
element: ElementRenderData;
|
|
1677
|
+
relX: number;
|
|
1678
|
+
relY: number;
|
|
1679
|
+
} | null;
|
|
1680
|
+
|
|
1060
1681
|
declare function MinTodayValidator(controlName: string): ValidatorFn;
|
|
1061
1682
|
declare function EndDateGreaterThanStartValidator(startDateControlName: string, endDateControlName: string): ValidatorFn;
|
|
1062
1683
|
|
|
@@ -1087,16 +1708,6 @@ declare class ToastService {
|
|
|
1087
1708
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1088
1709
|
}
|
|
1089
1710
|
|
|
1090
|
-
declare class LoadingModalService {
|
|
1091
|
-
title: WritableSignal<string>;
|
|
1092
|
-
isOpen: WritableSignal<boolean>;
|
|
1093
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1094
|
-
open(title?: string): void;
|
|
1095
|
-
close(): void;
|
|
1096
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModalService, never>;
|
|
1097
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingModalService>;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
1711
|
declare class DeleteConfirmationService {
|
|
1101
1712
|
title: WritableSignal<string>;
|
|
1102
1713
|
resourceName: WritableSignal<string>;
|
|
@@ -1225,25 +1836,6 @@ declare class PerformancesListEventsService {
|
|
|
1225
1836
|
static ɵprov: i0.ɵɵInjectableDeclaration<PerformancesListEventsService>;
|
|
1226
1837
|
}
|
|
1227
1838
|
|
|
1228
|
-
declare class ProductService {
|
|
1229
|
-
private apiService;
|
|
1230
|
-
private productsSubject;
|
|
1231
|
-
products$: Observable<Product[]>;
|
|
1232
|
-
constructor(apiService: ApiService);
|
|
1233
|
-
fetchProducts(page: number, search: string): Observable<ProductsResponseInterface>;
|
|
1234
|
-
loadProducts({ page, search }?: {
|
|
1235
|
-
page?: number;
|
|
1236
|
-
search?: string;
|
|
1237
|
-
}): void;
|
|
1238
|
-
getCurrentProducts(): Product[];
|
|
1239
|
-
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1240
|
-
createOne(data: Product): Observable<any>;
|
|
1241
|
-
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1242
|
-
deleteOne(id: number): Observable<any>;
|
|
1243
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1244
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
1839
|
declare class ShowService {
|
|
1248
1840
|
private apiService;
|
|
1249
1841
|
private showsSubject;
|
|
@@ -1324,6 +1916,332 @@ declare class PriceZoneFormModalService {
|
|
|
1324
1916
|
static ɵprov: i0.ɵɵInjectableDeclaration<PriceZoneFormModalService>;
|
|
1325
1917
|
}
|
|
1326
1918
|
|
|
1919
|
+
declare class ProductCategoryService {
|
|
1920
|
+
private apiService;
|
|
1921
|
+
constructor(apiService: ApiService);
|
|
1922
|
+
fetchCategories({ page, search, limit, }: FetchProductCategoriesParams): Observable<ProductCategoriesResponse>;
|
|
1923
|
+
fetchOneById(id: number): Observable<ProductCategoryResponse>;
|
|
1924
|
+
createOne(data: ProductCategory): Observable<any>;
|
|
1925
|
+
updateOne(id: number, data: ProductCategory): Observable<ProductCategoryResponse>;
|
|
1926
|
+
deleteOne(id: number): Observable<any>;
|
|
1927
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCategoryService, never>;
|
|
1928
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductCategoryService>;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
declare class ProductTagService {
|
|
1932
|
+
private apiService;
|
|
1933
|
+
constructor(apiService: ApiService);
|
|
1934
|
+
fetchTags({ page, search, limit }: FetchProductTagsParams): Observable<ProductTagsResponse>;
|
|
1935
|
+
fetchOneById(id: number): Observable<ProductTagResponse>;
|
|
1936
|
+
createOne(data: ProductTag): Observable<any>;
|
|
1937
|
+
updateOne(id: number, data: ProductTag): Observable<ProductTagResponse>;
|
|
1938
|
+
deleteOne(id: number): Observable<any>;
|
|
1939
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTagService, never>;
|
|
1940
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTagService>;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
declare class ProductTypeService {
|
|
1944
|
+
private apiService;
|
|
1945
|
+
constructor(apiService: ApiService);
|
|
1946
|
+
fetchTypes({ page, search, limit }: FetchProductTypesParams): Observable<ProductTypesResponse>;
|
|
1947
|
+
fetchOneById(id: number): Observable<ProductTypeResponse>;
|
|
1948
|
+
createOne(data: ProductType): Observable<any>;
|
|
1949
|
+
updateOne(id: number, data: ProductType): Observable<ProductTypeResponse>;
|
|
1950
|
+
deleteOne(id: number): Observable<any>;
|
|
1951
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTypeService, never>;
|
|
1952
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTypeService>;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
interface FetchProductsParams {
|
|
1956
|
+
page?: number;
|
|
1957
|
+
limit?: number;
|
|
1958
|
+
search?: string;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
declare class ProductService {
|
|
1962
|
+
private apiService;
|
|
1963
|
+
private productsSubject;
|
|
1964
|
+
products$: Observable<Product[]>;
|
|
1965
|
+
constructor(apiService: ApiService);
|
|
1966
|
+
fetchProducts({ page, search, limit, }: FetchProductsParams): Observable<ProductsResponseInterface>;
|
|
1967
|
+
loadProducts(params: FetchProductsParams): void;
|
|
1968
|
+
getCurrentProducts(): Product[];
|
|
1969
|
+
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1970
|
+
createOne(data: Product): Observable<any>;
|
|
1971
|
+
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1972
|
+
deleteOne(id: number): Observable<any>;
|
|
1973
|
+
fetchImages(id: number): Observable<{
|
|
1974
|
+
data: ProductImage[];
|
|
1975
|
+
}>;
|
|
1976
|
+
uploadImages(id: number, files?: FormData): Observable<{
|
|
1977
|
+
data: ProductImage[];
|
|
1978
|
+
}>;
|
|
1979
|
+
deleteOneImage(productId: number, imageId: number): Observable<any>;
|
|
1980
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1981
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
declare class BaseModalService {
|
|
1985
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1986
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1987
|
+
open(): void;
|
|
1988
|
+
close(): void;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
declare class FeedbackModalService {
|
|
1992
|
+
private _modals;
|
|
1993
|
+
readonly modals: i0.Signal<FeedbackModalElement[]>;
|
|
1994
|
+
addModal(modal: FeedbackModalElement): void;
|
|
1995
|
+
removeModal(id: string): void;
|
|
1996
|
+
removeAllModals(): void;
|
|
1997
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1998
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
declare class OrderTransactionDetailsModalService {
|
|
2002
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
2003
|
+
transaction: WritableSignal<Transaction | null>;
|
|
2004
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
2005
|
+
open(transaction: Transaction): void;
|
|
2006
|
+
close(): void;
|
|
2007
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionDetailsModalService, never>;
|
|
2008
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrderTransactionDetailsModalService>;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
declare class PerformanceBookingDataService {
|
|
2012
|
+
private _show;
|
|
2013
|
+
private _performance;
|
|
2014
|
+
private _roomMap;
|
|
2015
|
+
private _hallFloors;
|
|
2016
|
+
private _selectedHallFloor;
|
|
2017
|
+
private _allRenderData;
|
|
2018
|
+
private _stageConfig;
|
|
2019
|
+
readonly show: i0.Signal<Show | null>;
|
|
2020
|
+
readonly hallFloors: i0.Signal<HallFloor[]>;
|
|
2021
|
+
readonly selectedHallFloor: i0.Signal<HallFloor | null>;
|
|
2022
|
+
readonly performance: i0.Signal<Performance | null>;
|
|
2023
|
+
readonly stageConfig: i0.Signal<{
|
|
2024
|
+
[x: string]: any;
|
|
2025
|
+
}>;
|
|
2026
|
+
readonly roomMap: i0.Signal<RoomMap | null>;
|
|
2027
|
+
readonly renderData: i0.Signal<ElementRenderData[]>;
|
|
2028
|
+
setPerformanceBookingData({ data }: PerformanceBookingDataResponse): void;
|
|
2029
|
+
setRoomMap(roomMap: RoomMap | null): void;
|
|
2030
|
+
setPerformance(performance: Performance | null): void;
|
|
2031
|
+
setShow(show: Show | null): void;
|
|
2032
|
+
setSelectedHallFloor(id: number): void;
|
|
2033
|
+
updateStageConfig(data: {
|
|
2034
|
+
[x: string]: any;
|
|
2035
|
+
}): void;
|
|
2036
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceBookingDataService, never>;
|
|
2037
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PerformanceBookingDataService>;
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
declare class TicketSelectionDetailsService {
|
|
2041
|
+
private _customerEmail;
|
|
2042
|
+
private _customerId;
|
|
2043
|
+
private _paymentMethod;
|
|
2044
|
+
private _billingInformation;
|
|
2045
|
+
readonly customerEmail: i0.Signal<string | null>;
|
|
2046
|
+
readonly customerId: i0.Signal<number | null>;
|
|
2047
|
+
readonly paymentMethod: i0.Signal<string | null>;
|
|
2048
|
+
readonly billingInformation: i0.Signal<Customer | null>;
|
|
2049
|
+
setCustomerEmail(email: string | null): void;
|
|
2050
|
+
setCustomerId(id: number | null): void;
|
|
2051
|
+
setPaymentMethod(method: string | null): void;
|
|
2052
|
+
setBillingInformation(values: Customer): void;
|
|
2053
|
+
clearSelection(): void;
|
|
2054
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionDetailsService, never>;
|
|
2055
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionDetailsService>;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
declare class TicketSelectionDiscountService {
|
|
2059
|
+
private _coupon;
|
|
2060
|
+
private _corporateBond;
|
|
2061
|
+
private _corporateBondCode;
|
|
2062
|
+
private _giftBond;
|
|
2063
|
+
private _giftBondCode;
|
|
2064
|
+
readonly coupon: Signal<Coupon | null>;
|
|
2065
|
+
readonly corporateBond: Signal<CorporateBond | null>;
|
|
2066
|
+
readonly corporateBondCode: Signal<string | null>;
|
|
2067
|
+
readonly giftBond: Signal<GiftBondPurchase | null>;
|
|
2068
|
+
readonly giftBondCode: Signal<string | null>;
|
|
2069
|
+
readonly selectedDiscount: Signal<SelectedDiscountCard | null>;
|
|
2070
|
+
readonly selectedDiscountType: Signal<SelectedDiscountCardType | undefined>;
|
|
2071
|
+
readonly selectedDiscountValue: Signal<number | undefined>;
|
|
2072
|
+
setCoupon(coupon: Coupon | null): void;
|
|
2073
|
+
setCorporateBond(corporateBond: CorporateBond | null): void;
|
|
2074
|
+
setCorporateBondCode(code: string | null): void;
|
|
2075
|
+
setGiftBond(giftBond: GiftBondPurchase | null): void;
|
|
2076
|
+
setGiftBondCode(code: string | null): void;
|
|
2077
|
+
clearSelection(): void;
|
|
2078
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionDiscountService, never>;
|
|
2079
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionDiscountService>;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
declare class TicketSelectionTotalsService {
|
|
2083
|
+
private bookingDataService;
|
|
2084
|
+
private selectionService;
|
|
2085
|
+
private selectionDiscountService;
|
|
2086
|
+
readonly selectedProductEntries: i0.Signal<{
|
|
2087
|
+
id: number;
|
|
2088
|
+
quantity: number;
|
|
2089
|
+
}[]>;
|
|
2090
|
+
readonly selectedProductCount: i0.Signal<number>;
|
|
2091
|
+
readonly productSubtotal: i0.Signal<number>;
|
|
2092
|
+
readonly ticketSubtotal: i0.Signal<number>;
|
|
2093
|
+
readonly serviceFee: i0.Signal<number>;
|
|
2094
|
+
subtotalValue(): number;
|
|
2095
|
+
totalValue(): number;
|
|
2096
|
+
totalDiscounted(): number | null;
|
|
2097
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionTotalsService, never>;
|
|
2098
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionTotalsService>;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
declare class TicketSelectionService {
|
|
2102
|
+
private bookingDataService;
|
|
2103
|
+
private feedbackModalService;
|
|
2104
|
+
private selectionDetailsService;
|
|
2105
|
+
private selectionDiscountService;
|
|
2106
|
+
private _zoneQuantities;
|
|
2107
|
+
private _allTickets;
|
|
2108
|
+
private _selectedTickets;
|
|
2109
|
+
private _selectedBlockedTickets;
|
|
2110
|
+
private _products;
|
|
2111
|
+
private _productQuantities;
|
|
2112
|
+
readonly selectedTickets: i0.Signal<PerformanceTicket[]>;
|
|
2113
|
+
readonly selectedBlockedTickets: i0.Signal<PerformanceTicket[]>;
|
|
2114
|
+
readonly selectedCount: i0.Signal<number>;
|
|
2115
|
+
readonly blockedSelectedCount: i0.Signal<number>;
|
|
2116
|
+
readonly selectedTicketIds: i0.Signal<Set<PerformanceTicket>>;
|
|
2117
|
+
readonly selectedBlockedTicketIds: i0.Signal<number[]>;
|
|
2118
|
+
readonly selectedTicketIdList: i0.Signal<number[]>;
|
|
2119
|
+
readonly products: i0.Signal<Product[]>;
|
|
2120
|
+
readonly productQuantities: i0.Signal<Map<number, number>>;
|
|
2121
|
+
readonly selectedProductEntries: i0.Signal<{
|
|
2122
|
+
id: number;
|
|
2123
|
+
quantity: number;
|
|
2124
|
+
}[]>;
|
|
2125
|
+
readonly selectedProductCount: i0.Signal<number>;
|
|
2126
|
+
readonly serviceFee: i0.Signal<number>;
|
|
2127
|
+
setTickets(tickets: PerformanceTicket[]): void;
|
|
2128
|
+
setProducts(products: Product[]): void;
|
|
2129
|
+
updateProductQuantity(productId: number, delta: number): void;
|
|
2130
|
+
getProductQuantity(productId: number): number;
|
|
2131
|
+
private getListByStatus;
|
|
2132
|
+
setSelectedTickets(tickets: PerformanceTicket[]): void;
|
|
2133
|
+
toggle(ticket: PerformanceTicket): void;
|
|
2134
|
+
select(ticket: PerformanceTicket): void;
|
|
2135
|
+
deselect(ticket: PerformanceTicket): void;
|
|
2136
|
+
clearBlockedSelection(): void;
|
|
2137
|
+
clearSelection(): void;
|
|
2138
|
+
isSelected(ticket: PerformanceTicket): boolean;
|
|
2139
|
+
initZoneQuantity(elementId: number, maxCapacity: number): void;
|
|
2140
|
+
adjustZoneQuantity(elementId: number, delta: number): void;
|
|
2141
|
+
getZoneTickets(elementId: number): PerformanceTicket[];
|
|
2142
|
+
buildTooltipData(ticket: PerformanceTicket, elementName: string, seatLabel: string | null, x: number, y: number): TicketMapTooltipData;
|
|
2143
|
+
buildReservePerformanceDto(paymentMethod?: string, termsAccepted?: boolean, dataProcessingAccepted?: boolean): ReservePerformanceDto;
|
|
2144
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionService, never>;
|
|
2145
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionService>;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
declare class TicketMapZoomService {
|
|
2149
|
+
readonly currentZoom: i0.WritableSignal<number>;
|
|
2150
|
+
private stage?;
|
|
2151
|
+
private bookingDataService;
|
|
2152
|
+
private readonly defaultConfig;
|
|
2153
|
+
constructor();
|
|
2154
|
+
/**
|
|
2155
|
+
* Set the Konva stage instance
|
|
2156
|
+
*/
|
|
2157
|
+
setStage(stage: Stage): void;
|
|
2158
|
+
/**
|
|
2159
|
+
* Zoom in by one step
|
|
2160
|
+
*/
|
|
2161
|
+
zoomIn(): void;
|
|
2162
|
+
/**
|
|
2163
|
+
* Zoom out by one step
|
|
2164
|
+
*/
|
|
2165
|
+
zoomOut(): void;
|
|
2166
|
+
/**
|
|
2167
|
+
* Reset zoom to 100%
|
|
2168
|
+
*/
|
|
2169
|
+
resetZoom(): void;
|
|
2170
|
+
/**
|
|
2171
|
+
* Get current zoom as percentage string
|
|
2172
|
+
*/
|
|
2173
|
+
getZoomPercentage(): string;
|
|
2174
|
+
/**
|
|
2175
|
+
* Get current zoom value
|
|
2176
|
+
*/
|
|
2177
|
+
getCurrentZoom(): number;
|
|
2178
|
+
/**
|
|
2179
|
+
* Apply zoom with center point
|
|
2180
|
+
*/
|
|
2181
|
+
private applyZoom;
|
|
2182
|
+
/**
|
|
2183
|
+
* Apply zoom scale with specific center point
|
|
2184
|
+
*/
|
|
2185
|
+
private applyZoomScale;
|
|
2186
|
+
/**
|
|
2187
|
+
* Handle mouse wheel zoom toward the cursor position
|
|
2188
|
+
*/
|
|
2189
|
+
handleWheelZoom(deltaY: number): void;
|
|
2190
|
+
/**
|
|
2191
|
+
* Fit the content bounds to fill the stage container
|
|
2192
|
+
*/
|
|
2193
|
+
fitToContainer(padding?: number): void;
|
|
2194
|
+
/**
|
|
2195
|
+
* Get current stage position
|
|
2196
|
+
*/
|
|
2197
|
+
getStagePosition(): {
|
|
2198
|
+
x: number;
|
|
2199
|
+
y: number;
|
|
2200
|
+
};
|
|
2201
|
+
/**
|
|
2202
|
+
* Set stage position (useful for programmatic panning)
|
|
2203
|
+
*/
|
|
2204
|
+
setStagePosition(position: {
|
|
2205
|
+
x: number;
|
|
2206
|
+
y: number;
|
|
2207
|
+
}): void;
|
|
2208
|
+
/**
|
|
2209
|
+
* Fit the stage content bounds to the container, centering and scaling
|
|
2210
|
+
* to show the full content with optional padding.
|
|
2211
|
+
*/
|
|
2212
|
+
fitToBounds(contentBounds: {
|
|
2213
|
+
x: number;
|
|
2214
|
+
y: number;
|
|
2215
|
+
width: number;
|
|
2216
|
+
height: number;
|
|
2217
|
+
}, containerWidth: number, containerHeight: number, padding?: number): void;
|
|
2218
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapZoomService, never>;
|
|
2219
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketMapZoomService>;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
declare class ConfirmationOrderModalService extends BaseModalService {
|
|
2223
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationOrderModalService, never>;
|
|
2224
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmationOrderModalService>;
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
declare class TicketQrService {
|
|
2228
|
+
private apiService;
|
|
2229
|
+
constructor(apiService: ApiService);
|
|
2230
|
+
fetchQrToken(ticketUuid: string): Observable<QrTokenResponse>;
|
|
2231
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrService, never>;
|
|
2232
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketQrService>;
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
declare class TicketQrModalService {
|
|
2236
|
+
isOpen: WritableSignal<boolean>;
|
|
2237
|
+
ticketUuid: WritableSignal<string | null>;
|
|
2238
|
+
ticketDescription: WritableSignal<string | null>;
|
|
2239
|
+
open(ticketUuid: string, description?: string): void;
|
|
2240
|
+
close(): void;
|
|
2241
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrModalService, never>;
|
|
2242
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketQrModalService>;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
1327
2245
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1328
2246
|
|
|
1329
2247
|
declare class AppButtonComponent {
|
|
@@ -1368,15 +2286,29 @@ declare class AppAlertComponent {
|
|
|
1368
2286
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppAlertComponent, "app-alert", never, { "type": { "alias": "type"; "required": false; }; "text": { "alias": "text"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
1369
2287
|
}
|
|
1370
2288
|
|
|
1371
|
-
declare class
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
2289
|
+
declare class FeedbackModalComponent implements OnChanges, OnDestroy {
|
|
2290
|
+
isOpen: WritableSignal<boolean>;
|
|
2291
|
+
type: FeedbackModalType;
|
|
2292
|
+
title: string;
|
|
2293
|
+
message: string;
|
|
2294
|
+
showHeader: boolean;
|
|
2295
|
+
showCloseButton: boolean;
|
|
2296
|
+
showTitle: boolean;
|
|
2297
|
+
autoClose: boolean;
|
|
2298
|
+
autoCloseDuration: number;
|
|
2299
|
+
buttonText: string;
|
|
2300
|
+
closed: EventEmitter<void>;
|
|
2301
|
+
private autoCloseTimeout;
|
|
2302
|
+
get defaultButtonText(): string;
|
|
2303
|
+
get resolvedButtonText(): string;
|
|
2304
|
+
get buttonVariant(): 'primary' | 'secondary';
|
|
2305
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2306
|
+
ngOnDestroy(): void;
|
|
1376
2307
|
closeModal(): void;
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
static
|
|
2308
|
+
private scheduleAutoClose;
|
|
2309
|
+
private clearAutoClose;
|
|
2310
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalComponent, never>;
|
|
2311
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackModalComponent, "feedback-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; }, { "closed": "closed"; }, never, never, true, never>;
|
|
1380
2312
|
}
|
|
1381
2313
|
|
|
1382
2314
|
declare class DeleteConfirmationComponent {
|
|
@@ -1399,12 +2331,27 @@ declare class DeleteConfirmationComponent {
|
|
|
1399
2331
|
declare class AppModalComponent {
|
|
1400
2332
|
title: string;
|
|
1401
2333
|
disableClose: boolean;
|
|
2334
|
+
showHeader: boolean;
|
|
2335
|
+
showCloseButton: boolean;
|
|
2336
|
+
showTitle: boolean;
|
|
1402
2337
|
isOpen: WritableSignal<boolean>;
|
|
1403
|
-
size:
|
|
2338
|
+
size: ModalSize;
|
|
1404
2339
|
closeModal: EventEmitter<void>;
|
|
1405
2340
|
onCloseModal(): void;
|
|
2341
|
+
onKeydownEscape(): void;
|
|
1406
2342
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
1407
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
2343
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
declare class AppBadgeComponent {
|
|
2347
|
+
text: string;
|
|
2348
|
+
color: BadgeColor;
|
|
2349
|
+
size: BadgeSize;
|
|
2350
|
+
bordered: boolean;
|
|
2351
|
+
backgroundColor: string;
|
|
2352
|
+
textColor: string;
|
|
2353
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBadgeComponent, never>;
|
|
2354
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppBadgeComponent, "app-badge", never, { "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
1408
2355
|
}
|
|
1409
2356
|
|
|
1410
2357
|
declare class AuditInformationComponent {
|
|
@@ -1439,6 +2386,63 @@ declare class DynamicTableComponent {
|
|
|
1439
2386
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "columnComponents": { "alias": "columnComponents"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, { "pageChange": "pageChange"; "searchChange": "searchChange"; }, never, never, true, never>;
|
|
1440
2387
|
}
|
|
1441
2388
|
|
|
2389
|
+
declare class TextExpandableComponent implements OnChanges {
|
|
2390
|
+
text: string;
|
|
2391
|
+
maxLength: number;
|
|
2392
|
+
fontSize: TextFontSize;
|
|
2393
|
+
allowHtml: boolean;
|
|
2394
|
+
maxLines?: number;
|
|
2395
|
+
protected expanded: boolean;
|
|
2396
|
+
ngOnChanges(): void;
|
|
2397
|
+
get plainText(): string;
|
|
2398
|
+
get truncated(): boolean;
|
|
2399
|
+
get visibleText(): string;
|
|
2400
|
+
get lines(): number;
|
|
2401
|
+
toggleExpanded(): void;
|
|
2402
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextExpandableComponent, never>;
|
|
2403
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextExpandableComponent, "text-expandable", never, { "text": { "alias": "text"; "required": true; }; "maxLength": { "alias": "maxLength"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "allowHtml": { "alias": "allowHtml"; "required": false; }; "maxLines": { "alias": "maxLines"; "required": false; }; }, {}, never, never, true, never>;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
declare class ShowCardComponent {
|
|
2407
|
+
show: Show;
|
|
2408
|
+
linkText: string;
|
|
2409
|
+
linkUrlFn?: (show: Show) => string;
|
|
2410
|
+
linkQueryParams?: Record<string, any>;
|
|
2411
|
+
transloco: TranslocoService;
|
|
2412
|
+
dateService: DateService;
|
|
2413
|
+
get showTypeColor(): {
|
|
2414
|
+
bg: string;
|
|
2415
|
+
text: string;
|
|
2416
|
+
};
|
|
2417
|
+
formatTimeDate(date: string): Date;
|
|
2418
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowCardComponent, never>;
|
|
2419
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShowCardComponent, "show-card", never, { "show": { "alias": "show"; "required": true; }; "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; }, {}, never, never, true, never>;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
declare class ShowTypeBadgeComponent {
|
|
2423
|
+
show: Show;
|
|
2424
|
+
size: BadgeSize;
|
|
2425
|
+
transloco: TranslocoService;
|
|
2426
|
+
get showTypeColor(): {
|
|
2427
|
+
bg: string;
|
|
2428
|
+
text: string;
|
|
2429
|
+
};
|
|
2430
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowTypeBadgeComponent, never>;
|
|
2431
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShowTypeBadgeComponent, "show-type-badge", never, { "show": { "alias": "show"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
declare class ShowCardSkeletonComponent {
|
|
2435
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowCardSkeletonComponent, never>;
|
|
2436
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShowCardSkeletonComponent, "show-card-skeleton", never, {}, {}, never, never, true, never>;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
declare class AppBreadcumbComponent {
|
|
2440
|
+
steps: BreadcrumbStep[];
|
|
2441
|
+
theme: BreadcrumbTheme;
|
|
2442
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBreadcumbComponent, never>;
|
|
2443
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppBreadcumbComponent, "app-breadcrumb", never, { "steps": { "alias": "steps"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, never, never, true, never>;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
1442
2446
|
declare class LanguageSwitcherComponent {
|
|
1443
2447
|
protected transloco: TranslocoService;
|
|
1444
2448
|
availableLangs: string[];
|
|
@@ -1486,7 +2490,7 @@ declare class FormInputComponent implements ControlValueAccessor {
|
|
|
1486
2490
|
|
|
1487
2491
|
declare class FormSelectComponent implements ControlValueAccessor {
|
|
1488
2492
|
ngControl: NgControl;
|
|
1489
|
-
|
|
2493
|
+
protected transloco: TranslocoService;
|
|
1490
2494
|
label: string;
|
|
1491
2495
|
name: string;
|
|
1492
2496
|
id: string;
|
|
@@ -1510,7 +2514,6 @@ declare class FormSelectComponent implements ControlValueAccessor {
|
|
|
1510
2514
|
get inputId(): string;
|
|
1511
2515
|
get showError(): boolean;
|
|
1512
2516
|
get errorMessage(): string;
|
|
1513
|
-
get resolvedDefaultOptionLabel(): string;
|
|
1514
2517
|
get fieldGroupClasses(): string;
|
|
1515
2518
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectComponent, [{ optional: true; self: true; }, null]>;
|
|
1516
2519
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectComponent, "form-select", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "options": { "alias": "options"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "showDefaultOption": { "alias": "showDefaultOption"; "required": false; }; "defaultOptionLabel": { "alias": "defaultOptionLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1565,7 +2568,8 @@ declare class FormEditorComponent implements ControlValueAccessor, OnInit, OnDes
|
|
|
1565
2568
|
onChange: any;
|
|
1566
2569
|
onTouched: any;
|
|
1567
2570
|
private subscription;
|
|
1568
|
-
|
|
2571
|
+
isBrowser: boolean;
|
|
2572
|
+
constructor(ngControl: NgControl, transloco: TranslocoService, platformId: object);
|
|
1569
2573
|
ngOnInit(): void;
|
|
1570
2574
|
ngOnDestroy(): void;
|
|
1571
2575
|
writeValue(value: any): void;
|
|
@@ -1576,7 +2580,7 @@ declare class FormEditorComponent implements ControlValueAccessor, OnInit, OnDes
|
|
|
1576
2580
|
get showError(): boolean;
|
|
1577
2581
|
get errorMessage(): string;
|
|
1578
2582
|
get fieldGroupClasses(): string;
|
|
1579
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormEditorComponent, [{ optional: true; self: true; }, null]>;
|
|
2583
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormEditorComponent, [{ optional: true; self: true; }, null, null]>;
|
|
1580
2584
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormEditorComponent, "form-editor", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
1581
2585
|
}
|
|
1582
2586
|
|
|
@@ -1760,6 +2764,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1760
2764
|
notFoundText: string;
|
|
1761
2765
|
bindLabel: string;
|
|
1762
2766
|
bindValue: string;
|
|
2767
|
+
disabled: boolean;
|
|
1763
2768
|
value: any;
|
|
1764
2769
|
onChange: any;
|
|
1765
2770
|
onTouched: any;
|
|
@@ -1789,7 +2794,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1789
2794
|
registerOnTouched(fn: any): void;
|
|
1790
2795
|
setDisabledState(isDisabled: boolean): void;
|
|
1791
2796
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncSelectComponent, never>;
|
|
1792
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AsyncSelectComponent, "async-select", never, { "config": { "alias": "config"; "required": false; }; "items": { "alias": "items"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
2797
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AsyncSelectComponent, "async-select", never, { "config": { "alias": "config"; "required": false; }; "items": { "alias": "items"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
1793
2798
|
}
|
|
1794
2799
|
|
|
1795
2800
|
declare class ChangePasswordFormComponent {
|
|
@@ -2226,6 +3231,17 @@ declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValu
|
|
|
2226
3231
|
static ɵcmp: i0.ɵɵComponentDeclaration<PriceZoneSelectComponent, "price-zone-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "priceZoneChange": "priceZoneChange"; }, never, never, true, never>;
|
|
2227
3232
|
}
|
|
2228
3233
|
|
|
3234
|
+
declare class PerformanceStatusBadgeComponent {
|
|
3235
|
+
performance: Performance;
|
|
3236
|
+
size: BadgeSize;
|
|
3237
|
+
protected get statusColors(): {
|
|
3238
|
+
text: string;
|
|
3239
|
+
bg: string;
|
|
3240
|
+
};
|
|
3241
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceStatusBadgeComponent, never>;
|
|
3242
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceStatusBadgeComponent, "performance-status-badge", never, { "performance": { "alias": "performance"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
2229
3245
|
declare class DaySelectorGridComponent {
|
|
2230
3246
|
private platformId;
|
|
2231
3247
|
protected performanceService: PerformanceService;
|
|
@@ -2247,11 +3263,15 @@ declare class DaySelectorGridComponent {
|
|
|
2247
3263
|
declare class PerformanceCardComponent {
|
|
2248
3264
|
protected listEventService: PerformancesListEventsService;
|
|
2249
3265
|
card: DailyPerformanceItem;
|
|
3266
|
+
linkText: string;
|
|
3267
|
+
linkUrlFn?: (card: DailyPerformanceItem) => string;
|
|
3268
|
+
linkQueryParams?: Record<string, any>;
|
|
2250
3269
|
constructor(listEventService: PerformancesListEventsService);
|
|
3270
|
+
get badgeColor(): 'success' | 'error';
|
|
2251
3271
|
onSelect(): void;
|
|
2252
3272
|
isSelected(): boolean;
|
|
2253
3273
|
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardComponent, never>;
|
|
2254
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardComponent, "performance-card", never, { "card": { "alias": "card"; "required": true; }; }, {}, never, never, true, never>;
|
|
3274
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardComponent, "performance-card", never, { "card": { "alias": "card"; "required": true; }; "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; }, {}, never, never, true, never>;
|
|
2255
3275
|
}
|
|
2256
3276
|
|
|
2257
3277
|
declare class PerformanceCardListComponent {
|
|
@@ -2259,6 +3279,9 @@ declare class PerformanceCardListComponent {
|
|
|
2259
3279
|
protected performanceService: PerformanceService;
|
|
2260
3280
|
protected listEventService: PerformancesListEventsService;
|
|
2261
3281
|
protected toastService: ToastService;
|
|
3282
|
+
linkText: string;
|
|
3283
|
+
linkUrlFn?: (card: DailyPerformanceItem) => string;
|
|
3284
|
+
linkQueryParams?: Record<string, any>;
|
|
2262
3285
|
loadingData: WritableSignal<boolean>;
|
|
2263
3286
|
performances: WritableSignal<DailyPerformanceItem[]>;
|
|
2264
3287
|
constructor(platformId: object, performanceService: PerformanceService, listEventService: PerformancesListEventsService, toastService: ToastService);
|
|
@@ -2266,7 +3289,7 @@ declare class PerformanceCardListComponent {
|
|
|
2266
3289
|
private loadData;
|
|
2267
3290
|
get selectedDayDate(): string | null;
|
|
2268
3291
|
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardListComponent, never>;
|
|
2269
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, {}, {}, never, never, true, never>;
|
|
3292
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, { "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; }, {}, never, never, true, never>;
|
|
2270
3293
|
}
|
|
2271
3294
|
|
|
2272
3295
|
declare class PerformanceStepperComponent {
|
|
@@ -2295,9 +3318,9 @@ declare class ShowsFilterComponent {
|
|
|
2295
3318
|
}
|
|
2296
3319
|
|
|
2297
3320
|
interface PriceZoneItem {
|
|
2298
|
-
|
|
3321
|
+
color: string;
|
|
2299
3322
|
name: string;
|
|
2300
|
-
|
|
3323
|
+
available_seats: number;
|
|
2301
3324
|
price: string;
|
|
2302
3325
|
}
|
|
2303
3326
|
|
|
@@ -2313,5 +3336,320 @@ declare class ZonePriceListComponent {
|
|
|
2313
3336
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2314
3337
|
}
|
|
2315
3338
|
|
|
2316
|
-
|
|
2317
|
-
|
|
3339
|
+
declare class TicketMapWidgetComponent {
|
|
3340
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWidgetComponent, never>;
|
|
3341
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetComponent, "ticket-map-widget", never, {}, {}, never, ["*"], true, never>;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
declare class TicketMapWidgetHeaderComponent {
|
|
3345
|
+
title: string;
|
|
3346
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWidgetHeaderComponent, never>;
|
|
3347
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetHeaderComponent, "ticket-map-widget-header", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
declare class TicketMapZoomControlsComponent {
|
|
3351
|
+
private zoomService;
|
|
3352
|
+
readonly currentZoom: i0.Signal<number>;
|
|
3353
|
+
readonly zoomPercentage: i0.Signal<string>;
|
|
3354
|
+
constructor(zoomService: TicketMapZoomService);
|
|
3355
|
+
zoomIn(): void;
|
|
3356
|
+
zoomOut(): void;
|
|
3357
|
+
resetZoom(): void;
|
|
3358
|
+
fitToContainer(): void;
|
|
3359
|
+
handleZoomAction(action: string): void;
|
|
3360
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapZoomControlsComponent, never>;
|
|
3361
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapZoomControlsComponent, "ticket-map-zoom-controls", never, {}, {}, never, never, true, never>;
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
declare class PerformanceTicketMapComponent implements OnDestroy, AfterViewInit {
|
|
3365
|
+
private platformId;
|
|
3366
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3367
|
+
protected feedbackModalService: FeedbackModalService;
|
|
3368
|
+
protected selectionService: TicketSelectionService;
|
|
3369
|
+
protected zoomService: TicketMapZoomService;
|
|
3370
|
+
selectionChange: EventEmitter<PerformanceTicket[]>;
|
|
3371
|
+
needsLoginError: EventEmitter<any>;
|
|
3372
|
+
readOnly: boolean;
|
|
3373
|
+
needsLogin: boolean;
|
|
3374
|
+
isLoggedIn: boolean;
|
|
3375
|
+
stageComponent?: StageComponent;
|
|
3376
|
+
protected tooltipData: i0.WritableSignal<TicketMapTooltipData | null>;
|
|
3377
|
+
private stageReady;
|
|
3378
|
+
private autoFitDone;
|
|
3379
|
+
private resizeObserver?;
|
|
3380
|
+
constructor(platformId: object, bookingDataService: PerformanceBookingDataService, feedbackModalService: FeedbackModalService, selectionService: TicketSelectionService, zoomService: TicketMapZoomService);
|
|
3381
|
+
protected get isBrowser(): boolean;
|
|
3382
|
+
ngAfterViewInit(): void;
|
|
3383
|
+
private setupResizeObserver;
|
|
3384
|
+
private syncStageToContainer;
|
|
3385
|
+
ngOnDestroy(): void;
|
|
3386
|
+
private getInternalPointer;
|
|
3387
|
+
protected selectHallFloor(floorId: number): void;
|
|
3388
|
+
protected handleStageClick(konvaEvent: any): void;
|
|
3389
|
+
protected handleStageMouseMove(konvaEvent: any): void;
|
|
3390
|
+
protected handleStageMouseLeave(): void;
|
|
3391
|
+
protected handleWheel(konvaEvent: any): void;
|
|
3392
|
+
protected trackByElementId(_index: number, item: ElementRenderData): number;
|
|
3393
|
+
protected trackByFloorId(_index: number, floor: HallFloorOption): HallFloorOption;
|
|
3394
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceTicketMapComponent, never>;
|
|
3395
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceTicketMapComponent, "performance-ticket-map", never, { "readOnly": { "alias": "readOnly"; "required": false; }; "needsLogin": { "alias": "needsLogin"; "required": false; }; "isLoggedIn": { "alias": "isLoggedIn"; "required": false; }; }, { "selectionChange": "selectionChange"; "needsLoginError": "needsLoginError"; }, never, never, true, never>;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
declare class TicketMapPriceZonesComponent {
|
|
3399
|
+
title: string;
|
|
3400
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3401
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapPriceZonesComponent, never>;
|
|
3402
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapPriceZonesComponent, "ticket-map-price-zones", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
declare class TicketMapProductSelectionItemComponent {
|
|
3406
|
+
protected selectionService: TicketSelectionService;
|
|
3407
|
+
product: Product;
|
|
3408
|
+
constructor(selectionService: TicketSelectionService);
|
|
3409
|
+
get quantity(): number;
|
|
3410
|
+
get firstImage(): string | undefined;
|
|
3411
|
+
increment(): void;
|
|
3412
|
+
decrement(): void;
|
|
3413
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapProductSelectionItemComponent, never>;
|
|
3414
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapProductSelectionItemComponent, "ticket-map-product-selection-item", never, { "product": { "alias": "product"; "required": true; }; }, {}, never, never, true, never>;
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
declare class TIcketMapProductSelectionComponent {
|
|
3418
|
+
private bookingDataService;
|
|
3419
|
+
readonly products: i0.Signal<tickera_angular_components.Product[]>;
|
|
3420
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TIcketMapProductSelectionComponent, never>;
|
|
3421
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TIcketMapProductSelectionComponent, "ticket-map-product-selection", never, {}, {}, never, never, true, never>;
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
declare class TicketMapTotalsComponent {
|
|
3425
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3426
|
+
protected selectionDetailsService: TicketSelectionDetailsService;
|
|
3427
|
+
protected selectionDiscountService: TicketSelectionDiscountService;
|
|
3428
|
+
protected selectionTotalsService: TicketSelectionTotalsService;
|
|
3429
|
+
protected selectionService: TicketSelectionService;
|
|
3430
|
+
private activatedRoute;
|
|
3431
|
+
title: string;
|
|
3432
|
+
buttonText: string;
|
|
3433
|
+
loadingButtonText: string;
|
|
3434
|
+
isLoading: boolean;
|
|
3435
|
+
onPurchaseClick: EventEmitter<void>;
|
|
3436
|
+
constructor(bookingDataService: PerformanceBookingDataService, selectionDetailsService: TicketSelectionDetailsService, selectionDiscountService: TicketSelectionDiscountService, selectionTotalsService: TicketSelectionTotalsService, selectionService: TicketSelectionService, activatedRoute: ActivatedRoute);
|
|
3437
|
+
get serviceFee(): number;
|
|
3438
|
+
get performanceId(): number;
|
|
3439
|
+
get selectedTicketIds(): number[];
|
|
3440
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapTotalsComponent, never>;
|
|
3441
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapTotalsComponent, "ticket-map-totals", never, { "title": { "alias": "title"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "loadingButtonText": { "alias": "loadingButtonText"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, { "onPurchaseClick": "onPurchaseClick"; }, never, never, true, never>;
|
|
3442
|
+
}
|
|
3443
|
+
|
|
3444
|
+
declare class TicketMapWrapperComponent {
|
|
3445
|
+
selectionChange: EventEmitter<PerformanceTicket[]>;
|
|
3446
|
+
needsLoginError: EventEmitter<any>;
|
|
3447
|
+
readOnly: boolean;
|
|
3448
|
+
needsLogin: boolean;
|
|
3449
|
+
isLoggedIn: boolean;
|
|
3450
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWrapperComponent, never>;
|
|
3451
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWrapperComponent, "ticket-map-wrapper", never, { "readOnly": { "alias": "readOnly"; "required": false; }; "needsLogin": { "alias": "needsLogin"; "required": false; }; "isLoggedIn": { "alias": "isLoggedIn"; "required": false; }; }, { "selectionChange": "selectionChange"; "needsLoginError": "needsLoginError"; }, never, never, true, never>;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
declare class SeatSelectionEmptySummaryComponent {
|
|
3455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeatSelectionEmptySummaryComponent, never>;
|
|
3456
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeatSelectionEmptySummaryComponent, "seat-selection-empty-summary", never, {}, {}, never, never, true, never>;
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
declare class SeatSelectionSummaryComponent {
|
|
3460
|
+
protected selectionService: TicketSelectionService;
|
|
3461
|
+
title: string;
|
|
3462
|
+
clearButtonText: string;
|
|
3463
|
+
constructor(selectionService: TicketSelectionService);
|
|
3464
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeatSelectionSummaryComponent, never>;
|
|
3465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeatSelectionSummaryComponent, "seat-selection-summary", never, { "title": { "alias": "title"; "required": false; }; "clearButtonText": { "alias": "clearButtonText"; "required": false; }; }, {}, never, never, true, never>;
|
|
3466
|
+
}
|
|
3467
|
+
|
|
3468
|
+
declare class SeatSelectionSummaryItemComponent {
|
|
3469
|
+
protected selectionService: TicketSelectionService;
|
|
3470
|
+
item: PerformanceTicket;
|
|
3471
|
+
constructor(selectionService: TicketSelectionService);
|
|
3472
|
+
getItemTypeIcon: (ticket: PerformanceTicket) => string;
|
|
3473
|
+
removeItem(ticket: PerformanceTicket): void;
|
|
3474
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeatSelectionSummaryItemComponent, never>;
|
|
3475
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeatSelectionSummaryItemComponent, "seat-selection-summary-item", never, { "item": { "alias": "item"; "required": true; }; }, {}, never, never, true, never>;
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
declare class ConfirmationOrderModalComponent {
|
|
3479
|
+
private confirmationOrderModalService;
|
|
3480
|
+
private selectionDiscountService;
|
|
3481
|
+
private selectionTotalsService;
|
|
3482
|
+
private selectionService;
|
|
3483
|
+
private bookingDataService;
|
|
3484
|
+
modalTitle: string;
|
|
3485
|
+
confirmButtonText: string;
|
|
3486
|
+
confirmButtonTextLoading: string;
|
|
3487
|
+
loading: boolean;
|
|
3488
|
+
onConfirm: EventEmitter<any>;
|
|
3489
|
+
constructor(confirmationOrderModalService: ConfirmationOrderModalService, selectionDiscountService: TicketSelectionDiscountService, selectionTotalsService: TicketSelectionTotalsService, selectionService: TicketSelectionService, bookingDataService: PerformanceBookingDataService);
|
|
3490
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
3491
|
+
get selectedCount(): number;
|
|
3492
|
+
get serviceFee(): number;
|
|
3493
|
+
get subtotalValue(): number;
|
|
3494
|
+
get ticketSubtotal(): number;
|
|
3495
|
+
get productSubtotal(): number;
|
|
3496
|
+
get productCount(): number;
|
|
3497
|
+
get totalValue(): number;
|
|
3498
|
+
get totalDiscounted(): number | null;
|
|
3499
|
+
get coupon(): tickera_angular_components.Coupon | null;
|
|
3500
|
+
get corporateBond(): tickera_angular_components.CorporateBond | null;
|
|
3501
|
+
get giftBond(): tickera_angular_components.GiftBondPurchase | null;
|
|
3502
|
+
onClose(): void;
|
|
3503
|
+
confirmOrder(): void;
|
|
3504
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationOrderModalComponent, never>;
|
|
3505
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationOrderModalComponent, "confirmation-order-modal", never, { "modalTitle": { "alias": "modalTitle"; "required": false; }; "confirmButtonText": { "alias": "confirmButtonText"; "required": false; }; "confirmButtonTextLoading": { "alias": "confirmButtonTextLoading"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "onConfirm": "onConfirm"; }, never, never, true, never>;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
declare class OrderInformationComponent {
|
|
3509
|
+
readonly transloco: TranslocoService;
|
|
3510
|
+
order: Order;
|
|
3511
|
+
constructor(transloco: TranslocoService);
|
|
3512
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderInformationComponent, never>;
|
|
3513
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderInformationComponent, "order-information", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
declare class OrderStatusBadgeComponent {
|
|
3517
|
+
protected transloco: TranslocoService;
|
|
3518
|
+
order: Order | RecentOrder;
|
|
3519
|
+
size: BadgeSize;
|
|
3520
|
+
constructor(transloco: TranslocoService);
|
|
3521
|
+
protected get statusColors(): {
|
|
3522
|
+
text: string;
|
|
3523
|
+
bg: string;
|
|
3524
|
+
};
|
|
3525
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderStatusBadgeComponent, never>;
|
|
3526
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderStatusBadgeComponent, "order-status-badge", never, { "order": { "alias": "order"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
declare class OrderItemTypeBadgeComponent {
|
|
3530
|
+
protected transloco: TranslocoService;
|
|
3531
|
+
item: OrderItem;
|
|
3532
|
+
size: BadgeSize;
|
|
3533
|
+
constructor(transloco: TranslocoService);
|
|
3534
|
+
protected get statusColors(): {
|
|
3535
|
+
text: string;
|
|
3536
|
+
bg: string;
|
|
3537
|
+
};
|
|
3538
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderItemTypeBadgeComponent, never>;
|
|
3539
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderItemTypeBadgeComponent, "order-item-type-badge", never, { "item": { "alias": "item"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
declare class OrderItemsComponent {
|
|
3543
|
+
private ticketQrModalService;
|
|
3544
|
+
order: Order;
|
|
3545
|
+
constructor(ticketQrModalService: TicketQrModalService);
|
|
3546
|
+
protected get orderItems(): Order['order_items'];
|
|
3547
|
+
protected get products(): Order['order_items'];
|
|
3548
|
+
protected get tickets(): Order['order_items'];
|
|
3549
|
+
protected get giftBonds(): Order['order_items'];
|
|
3550
|
+
protected get showActionColumn(): boolean;
|
|
3551
|
+
protected itemTotal(quantity: number, price: number): number;
|
|
3552
|
+
protected hasDiscount(): boolean;
|
|
3553
|
+
protected get totals(): {
|
|
3554
|
+
giftBonds: number;
|
|
3555
|
+
products: number;
|
|
3556
|
+
tickets: number;
|
|
3557
|
+
};
|
|
3558
|
+
openTicketQr(ticketUuid: string, description: string): void;
|
|
3559
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderItemsComponent, never>;
|
|
3560
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderItemsComponent, "order-items", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
declare class OrderDiscountAppliedComponent {
|
|
3564
|
+
order: Order;
|
|
3565
|
+
protected get discountInfo(): OrderDiscountInfo;
|
|
3566
|
+
protected get hasDiscount(): boolean;
|
|
3567
|
+
protected get discountPct(): number | null;
|
|
3568
|
+
protected get badgeColors(): {
|
|
3569
|
+
text: string;
|
|
3570
|
+
bg: string;
|
|
3571
|
+
};
|
|
3572
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderDiscountAppliedComponent, never>;
|
|
3573
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderDiscountAppliedComponent, "order-discount-applied", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
interface BillingField {
|
|
3577
|
+
label: string;
|
|
3578
|
+
value: string | number | null;
|
|
3579
|
+
}
|
|
3580
|
+
declare class OrderBillingInfoComponent {
|
|
3581
|
+
order: Order;
|
|
3582
|
+
protected get fields(): BillingField[];
|
|
3583
|
+
protected get hasFields(): boolean;
|
|
3584
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderBillingInfoComponent, never>;
|
|
3585
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderBillingInfoComponent, "order-billing-info", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
declare class OrderTransactionsComponent {
|
|
3589
|
+
private transactionDetailsModalService;
|
|
3590
|
+
order: Order;
|
|
3591
|
+
constructor(transactionDetailsModalService: OrderTransactionDetailsModalService);
|
|
3592
|
+
protected get transactions(): Transaction[];
|
|
3593
|
+
protected get hasTransactions(): boolean;
|
|
3594
|
+
protected get txColors(): Record<string, {
|
|
3595
|
+
text: string;
|
|
3596
|
+
bg: string;
|
|
3597
|
+
}>;
|
|
3598
|
+
protected openTransaction(transaction: Transaction): void;
|
|
3599
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionsComponent, never>;
|
|
3600
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderTransactionsComponent, "order-transactions", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
declare class OrderTransactionDetailsModalComponent {
|
|
3604
|
+
private modalService;
|
|
3605
|
+
isOpen: WritableSignal<boolean> | null;
|
|
3606
|
+
transaction: Transaction | null;
|
|
3607
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
3608
|
+
get selectedTransaction(): WritableSignal<Transaction | null>;
|
|
3609
|
+
protected get txColors(): Record<TransactionStatus, {
|
|
3610
|
+
text: string;
|
|
3611
|
+
bg: string;
|
|
3612
|
+
}>;
|
|
3613
|
+
protected get gatewayResponse(): string;
|
|
3614
|
+
onClose(): void;
|
|
3615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionDetailsModalComponent, never>;
|
|
3616
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderTransactionDetailsModalComponent, "order-transaction-details-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; }, {}, never, never, true, never>;
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
declare class TicketQrComponent implements OnInit, OnDestroy {
|
|
3620
|
+
private ticketQrService;
|
|
3621
|
+
ticketUuid: string;
|
|
3622
|
+
qrCanvas: ElementRef<HTMLCanvasElement>;
|
|
3623
|
+
loading: i0.WritableSignal<boolean>;
|
|
3624
|
+
error: i0.WritableSignal<boolean>;
|
|
3625
|
+
refreshing: i0.WritableSignal<boolean>;
|
|
3626
|
+
countdown: i0.WritableSignal<number>;
|
|
3627
|
+
private destroy$;
|
|
3628
|
+
private refreshTimeout;
|
|
3629
|
+
private countdownInterval;
|
|
3630
|
+
constructor(ticketQrService: TicketQrService);
|
|
3631
|
+
ngOnInit(): void;
|
|
3632
|
+
ngOnDestroy(): void;
|
|
3633
|
+
retry(): void;
|
|
3634
|
+
private clearTimers;
|
|
3635
|
+
private fetchAndRender;
|
|
3636
|
+
private scheduleRefresh;
|
|
3637
|
+
private startCountdown;
|
|
3638
|
+
private renderQr;
|
|
3639
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrComponent, never>;
|
|
3640
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrComponent, "performance-ticket-qr", never, { "ticketUuid": { "alias": "ticketUuid"; "required": true; }; }, {}, never, never, true, never>;
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
declare class TicketQrModalComponent {
|
|
3644
|
+
private ticketQrModalService;
|
|
3645
|
+
constructor(ticketQrModalService: TicketQrModalService);
|
|
3646
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
3647
|
+
get ticketUuid(): i0.WritableSignal<string | null>;
|
|
3648
|
+
get ticketDescription(): i0.WritableSignal<string | null>;
|
|
3649
|
+
onClose(): void;
|
|
3650
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrModalComponent, never>;
|
|
3651
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrModalComponent, "ticket-qr-modal", never, {}, {}, never, never, true, never>;
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppBadgeComponent, AppBreadcumbComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, ConfirmationOrderModalComponent, ConfirmationOrderModalService, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CreatorType, CustomerSelectComponent, CustomerService, DEFAULT_STAGE_CONFIG, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondPurchaseStatus, GiftBondStatus, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MinTodayValidator, MustMatchValidator, ORDER_DISCOUNT_COLORS, ORDER_ITEM_TYPES_COLORS, ORDER_STATUS_COLORS, OrderBillingInfoComponent, OrderDiscountAppliedComponent, OrderInformationComponent, OrderItemType, OrderItemTypeBadgeComponent, OrderItemsComponent, OrderStatus, OrderStatusBadgeComponent, OrderTransactionDetailsModalComponent, OrderTransactionDetailsModalService, OrderTransactionsComponent, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PERFORMANCE_STATUS_COLORS, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PaymentMethod, PerformanceBookingDataService, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStatusBadgeComponent, PerformanceStepperComponent, PerformanceTicketMapComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, SHOW_TYPE_COLORS, STATE_API_ENDPOINTS, SeatSelectionEmptySummaryComponent, SeatSelectionSummaryComponent, SeatSelectionSummaryItemComponent, SelectedDiscountCardType, ShowCardComponent, ShowCardSkeletonComponent, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowType, ShowTypeBadgeComponent, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_LAST_TICKETS_LIMIT, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TRANSACTION_STATUS_COLORS, TextExpandableComponent, TickeraTranslocoLoader, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketQrComponent, TicketQrModalComponent, TicketQrModalService, TicketQrService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, TransactionStatus, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, drawChairIcon, drawHappyFace, drawRoundedRect, drawWheelchairIcon, findElementAtPosition, findTicketAtPosition, formatCitiesResponseToSelect, generateExitScene, generateHallwayScene, generateProductionAreaScene, generateSeatBlockScene, generateSeatBlockTicketScene, generateStageScene, generateStairScene, generateTableScene, generateTableTicketScene, generateUnavailableSpaceScene, generateZoneScene, getBrowserLanguage, getCustomerFullname, getItemTypeIcon, getOrderDiscount, getStoredLanguage, numberToLetter, parseJsonToFormDataAdvanced, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, tintColor, transformImageToFile };
|
|
3655
|
+
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, BadgeColor, BadgeSize, BreadcrumbStep, BreadcrumbTheme, CitiesResponse, City, CityResponse, CorporateBond, CorporateBondCode, CorporateBondResponse, CountriesResponse, Country, CountryResponse, Coupon, CouponResponse, Customer, CustomerResponse, CustomersResponse, DailyPerformanceHall, DailyPerformanceItem, DailyPerformancePriceZone, DailyPerformanceShow, DailyPerformanceVenue, DailyPerformancesResponse, DeleteConfirmationOpen, DragDropEvent, DynamicTableHeader, ElementPropertiesTab, ElementRenderData, FeedbackModalElement, FeedbackModalType, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondImage, GiftBondPurchase, GiftBondPurchaseResponse, GiftBondPurchasesResponse, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, HallFloorOption, KonvaShapeConfig, ModalSize, NumerationConfig, Order, OrderBillingInfo, OrderDiscountInfo, OrderDiscountType, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductCategoriesResponse, ProductCategory, ProductCategoryResponse, ProductImage, ProductResponse, ProductTag, ProductTagResponse, ProductTagsResponse, ProductTaxonomy, ProductType, ProductTypeResponse, ProductTypesResponse, ProductsResponseInterface, QrTokenData, QrTokenResponse, RecentOrder, RecentRoomMap, ReservePerformanceDto, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, SelectedDiscountCard, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowsResponseInterface, State, StateResponse, StatesResponse, TextFontSize, TickeraComponentsConfig, TicketMapSeatPosition, TicketMapTableChairPosition, TicketMapTooltipData, TicketMapZoneQuantityState, TicketMapZoomConfig, Transaction, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|