tickera-angular-components 0.0.1-dev.4 → 0.0.1-dev.41
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/assets/fonts/open-sans-latin-300-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-300-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-400-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-400-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-500-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-500-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-600-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-600-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-700-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-700-normal.woff2 +0 -0
- package/assets/fonts/remixicon.woff2 +0 -0
- package/fesm2022/tickera-angular-components.mjs +3081 -481
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/i18n/en.json +45 -0
- package/i18n/es.json +45 -0
- package/index.d.ts +1184 -419
- package/package.json +1 -1
- package/tickera.styles.css +1 -2
package/index.d.ts
CHANGED
|
@@ -1,33 +1,36 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter, Injector, Type, OnInit,
|
|
3
|
-
import {
|
|
4
|
-
import { HttpClient, HttpInterceptorFn } from '@angular/common/http';
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, WritableSignal, Signal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type, OnInit, ElementRef, AfterViewInit } from '@angular/core';
|
|
3
|
+
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
5
4
|
import * as rxjs from 'rxjs';
|
|
6
5
|
import { Observable, Subject } from 'rxjs';
|
|
7
|
-
import {
|
|
6
|
+
import { ShapeConfig, Shape } from 'konva/lib/Shape';
|
|
7
|
+
import { Context } from 'konva/lib/Context';
|
|
8
|
+
import { ValidatorFn, FormGroup, FormBuilder, ControlValueAccessor, NgControl, Validator, AbstractControl, FormControl } from '@angular/forms';
|
|
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;
|
|
13
18
|
accessTokenKey?: string;
|
|
19
|
+
defaultLang?: string;
|
|
20
|
+
availableLangs?: string[];
|
|
14
21
|
}
|
|
15
22
|
declare const TICKERA_COMPONENTS_CONFIG: InjectionToken<TickeraComponentsConfig>;
|
|
16
23
|
declare function provideTickeraComponents(config: TickeraComponentsConfig): EnvironmentProviders;
|
|
17
24
|
|
|
18
|
-
declare
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
declare
|
|
26
|
-
|
|
27
|
-
sm: string;
|
|
28
|
-
md: string;
|
|
29
|
-
lg: string;
|
|
30
|
-
};
|
|
25
|
+
declare class TickeraTranslocoLoader implements TranslocoLoader {
|
|
26
|
+
getTranslation(lang: string): Observable<Record<string, unknown>>;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare function getStoredLanguage(): string;
|
|
30
|
+
declare function setStoredLanguage(lang: string): void;
|
|
31
|
+
declare function getBrowserLanguage(): string;
|
|
32
|
+
declare function resolveLanguage(): string;
|
|
33
|
+
|
|
31
34
|
declare const ALERT_ICONS: {
|
|
32
35
|
success: string;
|
|
33
36
|
error: string;
|
|
@@ -35,26 +38,6 @@ declare const ALERT_ICONS: {
|
|
|
35
38
|
info: string;
|
|
36
39
|
};
|
|
37
40
|
|
|
38
|
-
declare const BUTTON_VARIANT_CLASSES: {
|
|
39
|
-
primary: string;
|
|
40
|
-
secondary: string;
|
|
41
|
-
terciary: string;
|
|
42
|
-
success: string;
|
|
43
|
-
transparent: string;
|
|
44
|
-
};
|
|
45
|
-
declare const BASE_BUTTON_CLASSES: string;
|
|
46
|
-
declare const BUTTON_SIZES_CLASSES: {
|
|
47
|
-
xs: string;
|
|
48
|
-
sm: string;
|
|
49
|
-
md: string;
|
|
50
|
-
lg: string;
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
54
|
-
|
|
55
|
-
declare const BASE_INPUT_CLASSES: string;
|
|
56
|
-
declare const ERROR_INPUT_CLASSES: string;
|
|
57
|
-
|
|
58
41
|
declare const ADMIN_API_ROUTES: {
|
|
59
42
|
FIND_ALL: string;
|
|
60
43
|
CREATE: string;
|
|
@@ -78,10 +61,10 @@ declare const COUNTRY_API_ENDPOINTS: {
|
|
|
78
61
|
delete: (id: number) => string;
|
|
79
62
|
};
|
|
80
63
|
|
|
81
|
-
declare const
|
|
64
|
+
declare const CUSTOMERS_API_ROUTES: {
|
|
82
65
|
findAll: string;
|
|
83
66
|
create: string;
|
|
84
|
-
|
|
67
|
+
findOne: (id: number) => string;
|
|
85
68
|
update: (id: number) => string;
|
|
86
69
|
delete: (id: number) => string;
|
|
87
70
|
};
|
|
@@ -103,12 +86,49 @@ declare const PERFORMANCES_API_ROUTES: {
|
|
|
103
86
|
publicAvailablePerformances: string;
|
|
104
87
|
};
|
|
105
88
|
|
|
89
|
+
declare const PRICE_ZONES_API_ROUTES: {
|
|
90
|
+
FIND_ALL: string;
|
|
91
|
+
CREATE: string;
|
|
92
|
+
findOneById: (id: number) => string;
|
|
93
|
+
update: (id: number) => string;
|
|
94
|
+
delete: (id: number) => string;
|
|
95
|
+
updateElements: (id: number) => string;
|
|
96
|
+
duplicate: (id: number) => string;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
declare const PRODUCT_CATEGORIES_API_ROUTES: {
|
|
100
|
+
FIND_ALL: string;
|
|
101
|
+
CREATE: string;
|
|
102
|
+
findById: (id: number) => string;
|
|
103
|
+
update: (id: number) => string;
|
|
104
|
+
delete: (id: number) => string;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
declare const PRODUCT_TAGS_API_ROUTES: {
|
|
108
|
+
FIND_ALL: string;
|
|
109
|
+
CREATE: string;
|
|
110
|
+
findById: (id: number) => string;
|
|
111
|
+
update: (id: number) => string;
|
|
112
|
+
delete: (id: number) => string;
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
declare const PRODUCT_TYPES_API_ROUTES: {
|
|
116
|
+
FIND_ALL: string;
|
|
117
|
+
CREATE: string;
|
|
118
|
+
findById: (id: number) => string;
|
|
119
|
+
update: (id: number) => string;
|
|
120
|
+
delete: (id: number) => string;
|
|
121
|
+
};
|
|
122
|
+
|
|
106
123
|
declare const PRODUCTS_API_ROUTES: {
|
|
107
124
|
FIND_ALL: string;
|
|
108
125
|
CREATE: string;
|
|
109
126
|
findOneById: (id: number) => string;
|
|
110
127
|
update: (id: number) => string;
|
|
111
128
|
delete: (id: number) => string;
|
|
129
|
+
fetchImages: (id: number) => string;
|
|
130
|
+
uploadImages: (id: number) => string;
|
|
131
|
+
deleteOneImage: (productId: number, imageId: number) => string;
|
|
112
132
|
};
|
|
113
133
|
|
|
114
134
|
declare const SHOWS_API_ROUTES: {
|
|
@@ -123,22 +143,12 @@ declare const SHOWS_API_ROUTES: {
|
|
|
123
143
|
publicAvailablePerformances: string;
|
|
124
144
|
};
|
|
125
145
|
|
|
126
|
-
declare const
|
|
146
|
+
declare const STATE_API_ENDPOINTS: {
|
|
127
147
|
findAll: string;
|
|
128
148
|
create: string;
|
|
129
|
-
|
|
130
|
-
update: (id: number) => string;
|
|
131
|
-
delete: (id: number) => string;
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
declare const PRICE_ZONES_API_ROUTES: {
|
|
135
|
-
FIND_ALL: string;
|
|
136
|
-
CREATE: string;
|
|
137
|
-
findOneById: (id: number) => string;
|
|
149
|
+
findById: (id: number) => string;
|
|
138
150
|
update: (id: number) => string;
|
|
139
151
|
delete: (id: number) => string;
|
|
140
|
-
updateElements: (id: number) => string;
|
|
141
|
-
duplicate: (id: number) => string;
|
|
142
152
|
};
|
|
143
153
|
|
|
144
154
|
declare const VENUES_API_ROUTES: {
|
|
@@ -152,152 +162,14 @@ declare const VENUES_API_ROUTES: {
|
|
|
152
162
|
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
153
163
|
};
|
|
154
164
|
|
|
155
|
-
declare
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
EXCEL = "excel",
|
|
159
|
-
WORD = "word",
|
|
160
|
-
TEXT = "text",
|
|
161
|
-
DEFAULT = "default"
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
declare enum CouponApplicability {
|
|
165
|
-
GENERAL = "GENERAL",
|
|
166
|
-
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
167
|
-
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
168
|
-
SHOWS = "SHOWS",
|
|
169
|
-
PERFORMANCES = "PERFORMANCES"
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
declare enum CouponDiscountType {
|
|
173
|
-
PERCENTAGE = "PERCENTAGE",
|
|
174
|
-
FIXED = "FIXED"
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
declare enum CorporateBondStatus {
|
|
178
|
-
ACTIVE = "ACTIVE",
|
|
179
|
-
INACTIVE = "INACTIVE",
|
|
180
|
-
EXPIRED = "EXPIRED"
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
declare enum PerformanceStatus {
|
|
184
|
-
ACTIVE = "active",
|
|
185
|
-
CANCELLED = "cancelled",
|
|
186
|
-
FINISHED = "finished",
|
|
187
|
-
POSTPONED = "postponed"
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
declare enum PerformanceTicketStatus {
|
|
191
|
-
AVAILABLE = "available",
|
|
192
|
-
RESERVED = "reserved",
|
|
193
|
-
SOLD = "sold",
|
|
194
|
-
BLOCKED = "blocked"
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
declare enum RoomMapElementOrientation {
|
|
198
|
-
TOP = "top",
|
|
199
|
-
RIGHT = "right",
|
|
200
|
-
BOTTOM = "bottom",
|
|
201
|
-
LEFT = "left",
|
|
202
|
-
CENTER = "center"
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
declare enum RoomMapElementType {
|
|
206
|
-
SEAT_BLOCK = "seat_block",
|
|
207
|
-
TABLE = "table",
|
|
208
|
-
ZONE = "zone",
|
|
209
|
-
EXIT = "exit",
|
|
210
|
-
STAGE = "stage",
|
|
211
|
-
PRODUCTION_AREA = "production_area",
|
|
212
|
-
UNAVAILABLE_SPACE = "unavailable_space",
|
|
213
|
-
STAIR = "stair",
|
|
214
|
-
HALLWAY = "hallway"
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
declare enum OrderItemType {
|
|
218
|
-
TICKET = "TICKET",
|
|
219
|
-
PRODUCT = "PRODUCT"
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
declare enum OrderStatus {
|
|
223
|
-
PENDING = "PENDING",
|
|
224
|
-
COMPLETED = "COMPLETED",
|
|
225
|
-
FAILED = "FAILED",
|
|
226
|
-
CANCELLED = "CANCELLED"
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
interface RoomMapPosition {
|
|
230
|
-
x: number;
|
|
231
|
-
y: number;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
interface RoomMapSize {
|
|
235
|
-
width: number;
|
|
236
|
-
height: number;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
interface RoomMapBaseElement {
|
|
240
|
-
id: string;
|
|
241
|
-
type: RoomMapElementType;
|
|
242
|
-
position: RoomMapPosition;
|
|
243
|
-
size: RoomMapSize;
|
|
244
|
-
rotation: number;
|
|
245
|
-
name?: string;
|
|
246
|
-
isLocked: boolean;
|
|
247
|
-
isVisible: boolean;
|
|
248
|
-
zIndex: number;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
252
|
-
type: RoomMapElementType.EXIT;
|
|
253
|
-
exitName?: string;
|
|
254
|
-
exitType: 'emergency' | 'regular';
|
|
255
|
-
width: number;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
259
|
-
type: RoomMapElementType.PRODUCTION_AREA;
|
|
260
|
-
areaName?: string;
|
|
261
|
-
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
265
|
-
type: RoomMapElementType.SEAT_BLOCK;
|
|
266
|
-
seatNumber?: string;
|
|
267
|
-
isAvailable: boolean;
|
|
268
|
-
priceCategory?: string;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
272
|
-
type: RoomMapElementType.STAGE;
|
|
273
|
-
stageName?: string;
|
|
274
|
-
orientation: RoomMapElementOrientation;
|
|
275
|
-
isMainStage: boolean;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
279
|
-
type: RoomMapElementType.TABLE;
|
|
280
|
-
tableNumber?: string;
|
|
281
|
-
capacity: number;
|
|
282
|
-
shape: 'round' | 'rectangular' | 'square';
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
286
|
-
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
287
|
-
reason?: string;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
291
|
-
type: RoomMapElementType.ZONE;
|
|
292
|
-
zoneName: string;
|
|
293
|
-
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
294
|
-
color: string;
|
|
295
|
-
capacity?: number;
|
|
296
|
-
}
|
|
165
|
+
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
166
|
+
declare const BASE_BUTTON_CLASSES = "btn";
|
|
167
|
+
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
297
168
|
|
|
298
|
-
|
|
169
|
+
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
299
170
|
|
|
300
|
-
|
|
171
|
+
declare const BASE_INPUT_CLASSES: string;
|
|
172
|
+
declare const ERROR_INPUT_CLASSES: string;
|
|
301
173
|
|
|
302
174
|
interface SelectOption {
|
|
303
175
|
value: any;
|
|
@@ -305,7 +177,7 @@ interface SelectOption {
|
|
|
305
177
|
disabled?: boolean;
|
|
306
178
|
}
|
|
307
179
|
|
|
308
|
-
interface Admin {
|
|
180
|
+
interface Admin extends Auditable {
|
|
309
181
|
id: number;
|
|
310
182
|
username: string;
|
|
311
183
|
email: string;
|
|
@@ -321,16 +193,17 @@ interface Admin {
|
|
|
321
193
|
reset_password_expires: Date;
|
|
322
194
|
email_verified_at: Date;
|
|
323
195
|
last_login: Date;
|
|
324
|
-
created_at: Date;
|
|
325
|
-
updated_at: Date;
|
|
326
|
-
deleted_at: Date;
|
|
327
196
|
}
|
|
328
197
|
|
|
329
198
|
interface Auditable {
|
|
330
199
|
created_at: Date;
|
|
331
200
|
updated_at: Date;
|
|
201
|
+
deleted_at?: Date | null;
|
|
332
202
|
is_published?: boolean;
|
|
333
203
|
published_at?: Date;
|
|
204
|
+
published_by?: number;
|
|
205
|
+
deleted_by?: number;
|
|
206
|
+
deleted_by_admin?: Admin;
|
|
334
207
|
created_by_admin?: Admin;
|
|
335
208
|
updated_by_admin?: Admin;
|
|
336
209
|
published_by_admin?: Admin;
|
|
@@ -373,20 +246,20 @@ interface AdminsResponse {
|
|
|
373
246
|
}
|
|
374
247
|
|
|
375
248
|
interface Country {
|
|
376
|
-
id:
|
|
249
|
+
id: number;
|
|
377
250
|
name: string;
|
|
378
251
|
iso2: string;
|
|
379
252
|
}
|
|
380
253
|
|
|
381
254
|
interface State {
|
|
382
|
-
id:
|
|
255
|
+
id: number;
|
|
383
256
|
name: string;
|
|
384
257
|
country_id: number;
|
|
385
258
|
country?: Country;
|
|
386
259
|
}
|
|
387
260
|
|
|
388
261
|
interface City {
|
|
389
|
-
id:
|
|
262
|
+
id: number;
|
|
390
263
|
name: string;
|
|
391
264
|
search_text: string | null;
|
|
392
265
|
state_id: number;
|
|
@@ -425,27 +298,21 @@ interface Venue extends Auditable {
|
|
|
425
298
|
images: VenueImage[];
|
|
426
299
|
}
|
|
427
300
|
|
|
428
|
-
interface HallFloor {
|
|
301
|
+
interface HallFloor extends Auditable {
|
|
429
302
|
id: number;
|
|
430
303
|
name: string;
|
|
431
304
|
level: number;
|
|
432
305
|
max_capacity: number;
|
|
433
306
|
description: string;
|
|
434
307
|
hall_id: number;
|
|
435
|
-
created_at: Date;
|
|
436
|
-
updated_at: Date;
|
|
437
|
-
deleted_at: Date | null;
|
|
438
308
|
}
|
|
439
309
|
|
|
440
|
-
interface Hall {
|
|
310
|
+
interface Hall extends Auditable {
|
|
441
311
|
id: number;
|
|
442
312
|
name: string;
|
|
443
313
|
venue_id: number;
|
|
444
314
|
venue?: Venue;
|
|
445
315
|
hall_floors?: HallFloor[];
|
|
446
|
-
created_at: Date;
|
|
447
|
-
updated_at: Date;
|
|
448
|
-
deleted_at: Date | null;
|
|
449
316
|
}
|
|
450
317
|
|
|
451
318
|
interface CountryResponse {
|
|
@@ -499,7 +366,7 @@ interface FetchCitiesParams {
|
|
|
499
366
|
search?: string;
|
|
500
367
|
}
|
|
501
368
|
|
|
502
|
-
interface Customer {
|
|
369
|
+
interface Customer extends Auditable {
|
|
503
370
|
username: string;
|
|
504
371
|
email: string;
|
|
505
372
|
mobile: string;
|
|
@@ -530,9 +397,6 @@ interface Customer {
|
|
|
530
397
|
membership_expires_at: Date | null;
|
|
531
398
|
id: number;
|
|
532
399
|
is_active: boolean;
|
|
533
|
-
created_at: Date;
|
|
534
|
-
updated_at: Date;
|
|
535
|
-
deleted_at: Date | null;
|
|
536
400
|
}
|
|
537
401
|
|
|
538
402
|
interface CustomerResponse {
|
|
@@ -550,76 +414,291 @@ interface CustomersResponse {
|
|
|
550
414
|
message: string;
|
|
551
415
|
}
|
|
552
416
|
|
|
553
|
-
|
|
417
|
+
declare enum OrderItemType {
|
|
418
|
+
TICKET = "TICKET",
|
|
419
|
+
PRODUCT = "PRODUCT"
|
|
420
|
+
}
|
|
554
421
|
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
width: number;
|
|
564
|
-
height: number;
|
|
565
|
-
show_id: number;
|
|
566
|
-
created_at: Date;
|
|
422
|
+
declare enum OrderStatus {
|
|
423
|
+
ON_HOLD = "on-hold",
|
|
424
|
+
PENDING_PAYMENT = "pending-payment",
|
|
425
|
+
PROCESSING = "processing",
|
|
426
|
+
COMPLETED = "completed",
|
|
427
|
+
FAILED = "failed",
|
|
428
|
+
CANCELLED = "cancelled",
|
|
429
|
+
REFUNDED = "refunded"
|
|
567
430
|
}
|
|
568
431
|
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
minimum_age: number | null;
|
|
580
|
-
show_category_id: number | null;
|
|
581
|
-
default_room_map_id: number | null;
|
|
582
|
-
published_at?: Date;
|
|
583
|
-
is_published: boolean;
|
|
584
|
-
images: ShowImage[];
|
|
585
|
-
terms_and_conditions: string;
|
|
586
|
-
performances_quantity?: number;
|
|
432
|
+
declare enum RoomMapElementType {
|
|
433
|
+
SEAT_BLOCK = "seat_block",
|
|
434
|
+
TABLE = "table",
|
|
435
|
+
ZONE = "zone",
|
|
436
|
+
EXIT = "exit",
|
|
437
|
+
STAGE = "stage",
|
|
438
|
+
PRODUCTION_AREA = "production_area",
|
|
439
|
+
UNAVAILABLE_SPACE = "unavailable_space",
|
|
440
|
+
STAIR = "stair",
|
|
441
|
+
HALLWAY = "hallway"
|
|
587
442
|
}
|
|
588
443
|
|
|
589
|
-
interface
|
|
444
|
+
interface RoomMapPosition {
|
|
445
|
+
x: number;
|
|
446
|
+
y: number;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
interface RoomMapSize {
|
|
450
|
+
width: number;
|
|
451
|
+
height: number;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
interface RoomMapBaseElement {
|
|
455
|
+
id: string;
|
|
456
|
+
type: RoomMapElementType;
|
|
457
|
+
position: RoomMapPosition;
|
|
458
|
+
size: RoomMapSize;
|
|
459
|
+
rotation: number;
|
|
460
|
+
name?: string;
|
|
461
|
+
isLocked: boolean;
|
|
462
|
+
isVisible: boolean;
|
|
463
|
+
zIndex: number;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
467
|
+
type: RoomMapElementType.EXIT;
|
|
468
|
+
exitName?: string;
|
|
469
|
+
exitType: 'emergency' | 'regular';
|
|
470
|
+
width: number;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
474
|
+
type: RoomMapElementType.PRODUCTION_AREA;
|
|
475
|
+
areaName?: string;
|
|
476
|
+
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
480
|
+
type: RoomMapElementType.SEAT_BLOCK;
|
|
481
|
+
seatNumber?: string;
|
|
482
|
+
isAvailable: boolean;
|
|
483
|
+
priceCategory?: string;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
declare enum RoomMapElementOrientation {
|
|
487
|
+
TOP = "top",
|
|
488
|
+
RIGHT = "right",
|
|
489
|
+
BOTTOM = "bottom",
|
|
490
|
+
LEFT = "left",
|
|
491
|
+
CENTER = "center"
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
495
|
+
type: RoomMapElementType.STAGE;
|
|
496
|
+
stageName?: string;
|
|
497
|
+
orientation: RoomMapElementOrientation;
|
|
498
|
+
isMainStage: boolean;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
502
|
+
type: RoomMapElementType.TABLE;
|
|
503
|
+
tableNumber?: string;
|
|
504
|
+
capacity: number;
|
|
505
|
+
shape: 'round' | 'rectangular' | 'square';
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
509
|
+
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
510
|
+
reason?: string;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
514
|
+
type: RoomMapElementType.ZONE;
|
|
515
|
+
zoneName: string;
|
|
516
|
+
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
517
|
+
color: string;
|
|
518
|
+
capacity?: number;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
522
|
+
|
|
523
|
+
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
524
|
+
|
|
525
|
+
type ShowType = 'play' | 'musical' | 'concert' | 'dance' | 'opera' | 'comedy' | 'other';
|
|
526
|
+
|
|
527
|
+
type ModalSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
528
|
+
|
|
529
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
530
|
+
|
|
531
|
+
interface FeedbackModalElement {
|
|
532
|
+
id: string;
|
|
533
|
+
type: FeedbackModalType;
|
|
534
|
+
title: string;
|
|
535
|
+
isOpen: WritableSignal<boolean>;
|
|
536
|
+
message?: string;
|
|
537
|
+
showHeader?: boolean;
|
|
538
|
+
showCloseButton?: boolean;
|
|
539
|
+
showTitle?: boolean;
|
|
540
|
+
closeModal?: void;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
declare enum FileType {
|
|
544
|
+
IMAGE = "image",
|
|
545
|
+
PDF = "pdf",
|
|
546
|
+
EXCEL = "excel",
|
|
547
|
+
WORD = "word",
|
|
548
|
+
TEXT = "text",
|
|
549
|
+
DEFAULT = "default"
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
declare enum CouponApplicability {
|
|
553
|
+
GENERAL = "GENERAL",
|
|
554
|
+
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
555
|
+
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
556
|
+
SHOWS = "SHOWS",
|
|
557
|
+
PERFORMANCES = "PERFORMANCES"
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
declare enum CouponDiscountType {
|
|
561
|
+
PERCENTAGE = "PERCENTAGE",
|
|
562
|
+
FIXED = "FIXED"
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
declare enum CouponStatus {
|
|
566
|
+
ACTIVE = "ACTIVE",
|
|
567
|
+
INACTIVE = "INACTIVE",
|
|
568
|
+
EXPIRED = "EXPIRED",
|
|
569
|
+
CONSUMED = "CONSUMED"
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
declare enum CorporateBondStatus {
|
|
573
|
+
ACTIVE = "ACTIVE",
|
|
574
|
+
INACTIVE = "INACTIVE",
|
|
575
|
+
EXPIRED = "EXPIRED",
|
|
576
|
+
CONSUMED = "CONSUMED"
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
declare enum PerformanceStatus {
|
|
580
|
+
SCHEDULED = "scheduled",
|
|
581
|
+
OPEN = "open",
|
|
582
|
+
CLOSED = "closed",
|
|
583
|
+
CANCELLED = "cancelled",
|
|
584
|
+
COMPLETED = "completed",
|
|
585
|
+
POSTPONED = "postponed"
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
declare enum PerformanceTicketStatus {
|
|
589
|
+
AVAILABLE = "available",
|
|
590
|
+
RESERVED = "reserved",
|
|
591
|
+
SOLD = "sold",
|
|
592
|
+
BLOCKED = "blocked"
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
declare enum GiftBondStatus {
|
|
596
|
+
ACTIVE = "ACTIVE",
|
|
597
|
+
INACTIVE = "INACTIVE",
|
|
598
|
+
EXPIRED = "EXPIRED",
|
|
599
|
+
CONSUMED = "CONSUMED"
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
interface FetchProductCategoriesParams {
|
|
603
|
+
name?: string;
|
|
604
|
+
slug?: string;
|
|
605
|
+
page?: number;
|
|
606
|
+
limit?: number;
|
|
607
|
+
search?: string;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
interface ProductCategory extends Auditable {
|
|
611
|
+
id: number;
|
|
612
|
+
name: string;
|
|
613
|
+
slug: string;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
interface ProductCategoriesResponse {
|
|
590
617
|
statusCode: number;
|
|
591
|
-
data:
|
|
618
|
+
data: {
|
|
619
|
+
categories: ProductCategory[];
|
|
620
|
+
total: number;
|
|
621
|
+
};
|
|
592
622
|
message: string;
|
|
593
623
|
}
|
|
594
624
|
|
|
595
|
-
interface
|
|
625
|
+
interface ProductCategoryResponse {
|
|
626
|
+
statusCode: number;
|
|
627
|
+
data: ProductCategory;
|
|
628
|
+
message: string;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
interface FetchProductTagsParams {
|
|
632
|
+
name?: string;
|
|
633
|
+
slug?: string;
|
|
634
|
+
page?: number;
|
|
635
|
+
limit?: number;
|
|
636
|
+
search?: string;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
interface ProductTag extends Auditable {
|
|
640
|
+
id: number;
|
|
641
|
+
name: string;
|
|
642
|
+
slug: string;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
interface ProductTagResponse {
|
|
646
|
+
statusCode: number;
|
|
647
|
+
data: ProductTag;
|
|
648
|
+
message: string;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
interface ProductTagsResponse {
|
|
596
652
|
statusCode: number;
|
|
597
653
|
data: {
|
|
598
|
-
|
|
654
|
+
tags: ProductTag[];
|
|
599
655
|
total: number;
|
|
600
656
|
};
|
|
601
657
|
message: string;
|
|
602
658
|
}
|
|
603
659
|
|
|
604
|
-
interface
|
|
660
|
+
interface FetchProductTypesParams {
|
|
661
|
+
name?: string;
|
|
662
|
+
slug?: string;
|
|
605
663
|
page?: number;
|
|
606
664
|
limit?: number;
|
|
607
665
|
search?: string;
|
|
608
|
-
date?: string;
|
|
609
666
|
}
|
|
610
667
|
|
|
611
|
-
interface
|
|
668
|
+
interface ProductType extends Auditable {
|
|
612
669
|
id: number;
|
|
613
670
|
name: string;
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
671
|
+
slug: string;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
interface ProductTypeResponse {
|
|
675
|
+
statusCode: number;
|
|
676
|
+
data: ProductType;
|
|
677
|
+
message: string;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
interface ProductTypesResponse {
|
|
681
|
+
statusCode: number;
|
|
682
|
+
data: {
|
|
683
|
+
types: ProductType[];
|
|
684
|
+
total: number;
|
|
685
|
+
};
|
|
686
|
+
message: string;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
interface ProductImage {
|
|
690
|
+
id: number;
|
|
691
|
+
path: string;
|
|
692
|
+
full_url: string;
|
|
693
|
+
original_name: string;
|
|
694
|
+
extension: string;
|
|
695
|
+
size: number;
|
|
696
|
+
mime_type: string;
|
|
697
|
+
width: number;
|
|
698
|
+
height: number;
|
|
699
|
+
product_id: number;
|
|
700
|
+
product: Product;
|
|
619
701
|
created_at: Date;
|
|
620
|
-
updated_at: Date;
|
|
621
|
-
created_by: number;
|
|
622
|
-
updated_by: number;
|
|
623
702
|
}
|
|
624
703
|
|
|
625
704
|
interface Product extends Auditable {
|
|
@@ -634,10 +713,34 @@ interface Product extends Auditable {
|
|
|
634
713
|
is_limited_edition: boolean;
|
|
635
714
|
is_active: boolean;
|
|
636
715
|
deleted_at: Date | null;
|
|
637
|
-
categories?:
|
|
638
|
-
tags?:
|
|
639
|
-
types?:
|
|
640
|
-
images?:
|
|
716
|
+
categories?: ProductCategory[];
|
|
717
|
+
tags?: ProductTag[];
|
|
718
|
+
types?: ProductType[];
|
|
719
|
+
images?: ProductImage[];
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
interface ShowImage {
|
|
723
|
+
id: number;
|
|
724
|
+
path: string;
|
|
725
|
+
full_url: string;
|
|
726
|
+
original_name: string;
|
|
727
|
+
extension: string;
|
|
728
|
+
size: number;
|
|
729
|
+
mime_type: string;
|
|
730
|
+
width: number;
|
|
731
|
+
height: number;
|
|
732
|
+
show_id: number;
|
|
733
|
+
created_at: Date;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
interface PriceZone extends Auditable {
|
|
737
|
+
id: number;
|
|
738
|
+
name: string;
|
|
739
|
+
color: string;
|
|
740
|
+
normal_price: number | null;
|
|
741
|
+
is_active: boolean;
|
|
742
|
+
elements: any[];
|
|
743
|
+
room_map_id: number | null;
|
|
641
744
|
}
|
|
642
745
|
|
|
643
746
|
interface NumerationConfig {
|
|
@@ -675,7 +778,7 @@ interface RoomMapElementTemplate {
|
|
|
675
778
|
price_zone?: PriceZone;
|
|
676
779
|
}
|
|
677
780
|
|
|
678
|
-
interface RoomMap {
|
|
781
|
+
interface RoomMap extends Auditable {
|
|
679
782
|
id: number;
|
|
680
783
|
name: string;
|
|
681
784
|
canvas_settings: {
|
|
@@ -691,8 +794,6 @@ interface RoomMap {
|
|
|
691
794
|
related_product_ids: number[];
|
|
692
795
|
products?: Product[];
|
|
693
796
|
venue_name?: string;
|
|
694
|
-
created_at: Date;
|
|
695
|
-
updated_at: Date;
|
|
696
797
|
}
|
|
697
798
|
|
|
698
799
|
interface RoomMapCanvasConfiguration {
|
|
@@ -734,7 +835,7 @@ interface ElementPropertiesTab {
|
|
|
734
835
|
elements_access: string[];
|
|
735
836
|
}
|
|
736
837
|
|
|
737
|
-
interface Performance {
|
|
838
|
+
interface Performance extends Auditable {
|
|
738
839
|
id: number;
|
|
739
840
|
start_time: Date | string;
|
|
740
841
|
end_time: Date | string;
|
|
@@ -744,26 +845,31 @@ interface Performance {
|
|
|
744
845
|
show?: Show;
|
|
745
846
|
room_map: RoomMap;
|
|
746
847
|
room_map_id: number;
|
|
747
|
-
created_at: Date;
|
|
748
|
-
updated_at: Date;
|
|
749
848
|
}
|
|
750
849
|
|
|
751
|
-
interface
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
850
|
+
interface Show extends Auditable {
|
|
851
|
+
id: number;
|
|
852
|
+
title: string;
|
|
853
|
+
slug: string;
|
|
854
|
+
description: string;
|
|
855
|
+
duration_minutes: number | null;
|
|
856
|
+
type_of_costs: string | null;
|
|
857
|
+
service_fee: number | null;
|
|
858
|
+
show_type: ShowType | null;
|
|
859
|
+
pulep: string | null;
|
|
860
|
+
minimum_age: number | null;
|
|
861
|
+
show_category_id: number | null;
|
|
862
|
+
default_room_map_id: number | null;
|
|
863
|
+
published_at?: Date;
|
|
864
|
+
is_published: boolean;
|
|
865
|
+
images: ShowImage[];
|
|
866
|
+
terms_and_conditions: string;
|
|
867
|
+
performances_quantity?: number;
|
|
868
|
+
performances?: Performance[];
|
|
869
|
+
next_performance?: Performance;
|
|
764
870
|
}
|
|
765
871
|
|
|
766
|
-
interface OrderItem {
|
|
872
|
+
interface OrderItem extends Auditable {
|
|
767
873
|
id: number;
|
|
768
874
|
order: Order;
|
|
769
875
|
item_type: OrderItemType;
|
|
@@ -776,26 +882,21 @@ interface OrderItem {
|
|
|
776
882
|
ticket_id?: number;
|
|
777
883
|
ticket_uuid?: string;
|
|
778
884
|
item: Show | Product;
|
|
779
|
-
created_at: Date;
|
|
780
|
-
updated_at: Date;
|
|
781
|
-
created_by: number;
|
|
782
|
-
updated_by: number;
|
|
783
885
|
}
|
|
784
886
|
|
|
785
887
|
interface Coupon extends Auditable {
|
|
786
888
|
id: number;
|
|
787
889
|
code: string;
|
|
890
|
+
billing_code: string;
|
|
788
891
|
description?: string;
|
|
789
892
|
discount_type: CouponDiscountType;
|
|
790
|
-
discount_type_string?: string;
|
|
791
893
|
discount_value: number;
|
|
792
|
-
discount_value_string?: string;
|
|
793
894
|
start_date: Date | null;
|
|
794
895
|
end_date: Date | null;
|
|
795
896
|
max_uses: number | null;
|
|
796
|
-
|
|
897
|
+
max_uses_per_customer?: number | null;
|
|
797
898
|
uses_count: number;
|
|
798
|
-
|
|
899
|
+
status: CouponStatus;
|
|
799
900
|
applicability_type: CouponApplicability;
|
|
800
901
|
applicable_customer_emails: string[] | null;
|
|
801
902
|
applicable_membership_types: string[] | null;
|
|
@@ -803,9 +904,11 @@ interface Coupon extends Auditable {
|
|
|
803
904
|
applicable_performance_ids?: number[];
|
|
804
905
|
applicable_price_zone_ids?: number[];
|
|
805
906
|
applies_to_service_fee?: boolean;
|
|
907
|
+
orders?: Order[];
|
|
908
|
+
customers?: Customer[];
|
|
806
909
|
}
|
|
807
910
|
|
|
808
|
-
interface CorporateBond {
|
|
911
|
+
interface CorporateBond extends Auditable {
|
|
809
912
|
id: number;
|
|
810
913
|
name: string;
|
|
811
914
|
description?: string;
|
|
@@ -816,10 +919,6 @@ interface CorporateBond {
|
|
|
816
919
|
status: CorporateBondStatus;
|
|
817
920
|
value: number;
|
|
818
921
|
codes: CorporateBondCode[];
|
|
819
|
-
created_at: Date;
|
|
820
|
-
updated_at: Date;
|
|
821
|
-
created_by: number;
|
|
822
|
-
updated_by: number;
|
|
823
922
|
}
|
|
824
923
|
|
|
825
924
|
interface CorporateBondCode {
|
|
@@ -834,92 +933,261 @@ interface CorporateBondCode {
|
|
|
834
933
|
|
|
835
934
|
interface CorporateBondResponse {
|
|
836
935
|
statusCode: number;
|
|
837
|
-
data: CorporateBond;
|
|
936
|
+
data: CorporateBond;
|
|
937
|
+
message: string;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
interface ValidateCorporateBondResponse {
|
|
941
|
+
data: {
|
|
942
|
+
valid: boolean;
|
|
943
|
+
message: string;
|
|
944
|
+
code: string;
|
|
945
|
+
bond?: CorporateBond;
|
|
946
|
+
};
|
|
947
|
+
message: string;
|
|
948
|
+
statusCode: number;
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
interface Order extends Auditable {
|
|
952
|
+
id: number;
|
|
953
|
+
uuid: string;
|
|
954
|
+
customer: Customer;
|
|
955
|
+
customer_name?: string;
|
|
956
|
+
customer_email?: string;
|
|
957
|
+
order_items: OrderItem[];
|
|
958
|
+
order_items_quantity?: number;
|
|
959
|
+
discount_amount: number;
|
|
960
|
+
total: number;
|
|
961
|
+
total_discounted: number;
|
|
962
|
+
sub_total: number;
|
|
963
|
+
sub_total_discounted: number;
|
|
964
|
+
service_fee: number;
|
|
965
|
+
service_fee_discounted: number;
|
|
966
|
+
coupon: Coupon;
|
|
967
|
+
coupon_snapshot: Record<string, any>;
|
|
968
|
+
corporate_bond_code: CorporateBondCode;
|
|
969
|
+
corporate_bond_code_snapshot: Record<string, any>;
|
|
970
|
+
status: OrderStatus;
|
|
971
|
+
show_snapshot: Record<string, any>;
|
|
972
|
+
performance_snapshot: Record<string, any>;
|
|
973
|
+
payment_method: string;
|
|
974
|
+
terms_accepted: boolean;
|
|
975
|
+
data_processing_accepted: boolean;
|
|
976
|
+
billing_info: Partial<Customer>;
|
|
977
|
+
comments: string;
|
|
978
|
+
address_notes: string;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
interface OrderResponse {
|
|
982
|
+
statusCode: number;
|
|
983
|
+
data: Order;
|
|
984
|
+
message: string;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
interface OrdersResponse {
|
|
988
|
+
statusCode: number;
|
|
989
|
+
data: {
|
|
990
|
+
orders: Order[];
|
|
991
|
+
total: number;
|
|
992
|
+
};
|
|
993
|
+
message: string;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
interface PerformanceTicket extends Auditable {
|
|
997
|
+
id: number;
|
|
998
|
+
uuid: string;
|
|
999
|
+
is_accessible: boolean;
|
|
1000
|
+
performance_id: number;
|
|
1001
|
+
room_map_element_id: number;
|
|
1002
|
+
element_type: RoomMapElementType;
|
|
1003
|
+
seat_label: string | null;
|
|
1004
|
+
seat_numeration: string | null;
|
|
1005
|
+
normal_price: number;
|
|
1006
|
+
discount_price: number | null;
|
|
1007
|
+
presale_price: number | null;
|
|
1008
|
+
status: PerformanceTicketStatus;
|
|
1009
|
+
reserved_until: Date | null;
|
|
1010
|
+
order_id: number | null;
|
|
1011
|
+
customer_id: number | null;
|
|
1012
|
+
checked_in: boolean;
|
|
1013
|
+
checked_in_at: Date | null;
|
|
1014
|
+
order_items: OrderItem[];
|
|
1015
|
+
element_qty?: number;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
interface TicketMapSeatPosition {
|
|
1019
|
+
rowIndex: number;
|
|
1020
|
+
colIndex: number;
|
|
1021
|
+
seatLabel: string;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
interface TicketMapTableChairPosition {
|
|
1025
|
+
index: number;
|
|
1026
|
+
angle: number;
|
|
1027
|
+
x: number;
|
|
1028
|
+
y: number;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
interface ElementRenderData {
|
|
1032
|
+
elementId: number;
|
|
1033
|
+
hallFloorId: number | null;
|
|
1034
|
+
type: RoomMapElementType;
|
|
1035
|
+
shapeConfig: Record<string, any>;
|
|
1036
|
+
tickets: PerformanceTicket[];
|
|
1037
|
+
ticketByNumeration: Map<string, PerformanceTicket>;
|
|
1038
|
+
elementName: string;
|
|
1039
|
+
seatPositions?: TicketMapSeatPosition[][];
|
|
1040
|
+
chairPositions?: TicketMapTableChairPosition[];
|
|
1041
|
+
zoneCapacity?: number;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
interface TicketMapTooltipData {
|
|
1045
|
+
x: number;
|
|
1046
|
+
y: number;
|
|
1047
|
+
elementName: string;
|
|
1048
|
+
seatLabel: string | null;
|
|
1049
|
+
price: number;
|
|
1050
|
+
status: PerformanceTicketStatus;
|
|
1051
|
+
statusLabel: string;
|
|
1052
|
+
statusColor: string;
|
|
1053
|
+
isSelected: boolean;
|
|
1054
|
+
ticketId: number;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
interface TicketMapZoneQuantityState {
|
|
1058
|
+
elementId: number;
|
|
1059
|
+
selectedCount: number;
|
|
1060
|
+
maxCapacity: number;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
interface ReservePerformanceDto {
|
|
1064
|
+
ticket_ids: number[];
|
|
1065
|
+
products?: {
|
|
1066
|
+
id: number;
|
|
1067
|
+
quantity: number;
|
|
1068
|
+
}[];
|
|
1069
|
+
coupon_code?: string;
|
|
1070
|
+
gift_bond_code?: string;
|
|
1071
|
+
corporate_bond_code?: string;
|
|
1072
|
+
billing: {
|
|
1073
|
+
first_name: string;
|
|
1074
|
+
last_name: string;
|
|
1075
|
+
email: string;
|
|
1076
|
+
mobile: string;
|
|
1077
|
+
document_type: string;
|
|
1078
|
+
document_number: string;
|
|
1079
|
+
address: string;
|
|
1080
|
+
city_id: number;
|
|
1081
|
+
postal_code?: string;
|
|
1082
|
+
address_notes?: string;
|
|
1083
|
+
payment_method: string;
|
|
1084
|
+
terms_accepted: boolean;
|
|
1085
|
+
data_processing_accepted: boolean;
|
|
1086
|
+
comments?: string;
|
|
1087
|
+
};
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
interface TicketMapZoomConfig {
|
|
1091
|
+
minZoom: number;
|
|
1092
|
+
maxZoom: number;
|
|
1093
|
+
zoomStep: number;
|
|
1094
|
+
scaleBy: number;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
interface HallFloorOption {
|
|
1098
|
+
id: number | null;
|
|
1099
|
+
name: string;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
declare enum SelectedDiscountCardType {
|
|
1103
|
+
COUPON = "COUPON",
|
|
1104
|
+
CORPORATE_BOND = "CORPORATE_BOND",
|
|
1105
|
+
GIFT_BOND = "GIFT_BOND"
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
interface SelectedDiscountCard {
|
|
1109
|
+
name: string;
|
|
1110
|
+
type: SelectedDiscountCardType;
|
|
1111
|
+
value: number;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
interface FetchShowsParams {
|
|
1115
|
+
page?: number;
|
|
1116
|
+
limit?: number;
|
|
1117
|
+
search?: string;
|
|
1118
|
+
date?: string;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
interface ShowResponse {
|
|
1122
|
+
statusCode: number;
|
|
1123
|
+
data: Show;
|
|
1124
|
+
message: string;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
interface ShowsResponseInterface {
|
|
1128
|
+
statusCode: number;
|
|
1129
|
+
data: {
|
|
1130
|
+
shows: Show[];
|
|
1131
|
+
total: number;
|
|
1132
|
+
};
|
|
838
1133
|
message: string;
|
|
839
1134
|
}
|
|
840
1135
|
|
|
841
|
-
interface
|
|
1136
|
+
interface ShowCategory extends Auditable {
|
|
1137
|
+
id: number;
|
|
1138
|
+
name: string;
|
|
1139
|
+
slug: string;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
interface ShowCategoriesResponse {
|
|
1143
|
+
statusCode: number;
|
|
842
1144
|
data: {
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
code: string;
|
|
846
|
-
bond?: CorporateBond;
|
|
1145
|
+
categories: ShowCategory[];
|
|
1146
|
+
total: number;
|
|
847
1147
|
};
|
|
848
1148
|
message: string;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
interface ShowCategoryResponse {
|
|
849
1152
|
statusCode: number;
|
|
1153
|
+
data: ShowCategory;
|
|
1154
|
+
message: string;
|
|
850
1155
|
}
|
|
851
1156
|
|
|
852
|
-
interface
|
|
1157
|
+
interface ShowGender extends Auditable {
|
|
853
1158
|
id: number;
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
customer_name?: string;
|
|
857
|
-
customer_email?: string;
|
|
858
|
-
order_items: OrderItem[];
|
|
859
|
-
order_items_quantity?: number;
|
|
860
|
-
discount_amount: number;
|
|
861
|
-
total: number;
|
|
862
|
-
total_discounted: number;
|
|
863
|
-
sub_total: number;
|
|
864
|
-
sub_total_discounted: number;
|
|
865
|
-
service_fee: number;
|
|
866
|
-
service_fee_discounted: number;
|
|
867
|
-
coupon: Coupon;
|
|
868
|
-
coupon_snapshot: Record<string, any>;
|
|
869
|
-
corporate_bond_code: CorporateBondCode;
|
|
870
|
-
corporate_bond_code_snapshot: Record<string, any>;
|
|
871
|
-
status: OrderStatus;
|
|
872
|
-
show_snapshot: Record<string, any>;
|
|
873
|
-
performance_snapshot: Record<string, any>;
|
|
874
|
-
created_at: Date;
|
|
875
|
-
updated_at: Date;
|
|
876
|
-
payment_method: string;
|
|
877
|
-
terms_accepted: boolean;
|
|
878
|
-
data_processing_accepted: boolean;
|
|
879
|
-
billing_info: Partial<Customer>;
|
|
880
|
-
comments: string;
|
|
881
|
-
address_notes: string;
|
|
882
|
-
created_by: number;
|
|
883
|
-
updated_by: number;
|
|
1159
|
+
name: string;
|
|
1160
|
+
slug: string;
|
|
884
1161
|
}
|
|
885
1162
|
|
|
886
|
-
interface
|
|
1163
|
+
interface ShowGenderResponse {
|
|
887
1164
|
statusCode: number;
|
|
888
|
-
data:
|
|
1165
|
+
data: ShowGender;
|
|
889
1166
|
message: string;
|
|
890
1167
|
}
|
|
891
1168
|
|
|
892
|
-
interface
|
|
1169
|
+
interface ShowGendersResponse {
|
|
893
1170
|
statusCode: number;
|
|
894
1171
|
data: {
|
|
895
|
-
|
|
1172
|
+
genders: ShowGender[];
|
|
896
1173
|
total: number;
|
|
897
1174
|
};
|
|
898
1175
|
message: string;
|
|
899
1176
|
}
|
|
900
1177
|
|
|
901
|
-
interface
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
reserved_until: Date | null;
|
|
915
|
-
order_id: number | null;
|
|
916
|
-
customer_id: number | null;
|
|
917
|
-
checked_in: boolean;
|
|
918
|
-
checked_in_at: Date | null;
|
|
919
|
-
order_items: OrderItem[];
|
|
920
|
-
element_qty?: number;
|
|
921
|
-
created_at: Date;
|
|
922
|
-
updated_at: Date;
|
|
1178
|
+
interface PerformanceResponse {
|
|
1179
|
+
statusCode: number;
|
|
1180
|
+
data: Performance;
|
|
1181
|
+
message: string;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
interface PerformancesResponseInterface {
|
|
1185
|
+
statusCode: number;
|
|
1186
|
+
data: {
|
|
1187
|
+
performances: Performance[];
|
|
1188
|
+
total: number;
|
|
1189
|
+
};
|
|
1190
|
+
message: string;
|
|
923
1191
|
}
|
|
924
1192
|
|
|
925
1193
|
interface PerformanceBookingDataResponse {
|
|
@@ -1003,6 +1271,13 @@ interface ProductResponse {
|
|
|
1003
1271
|
message: string;
|
|
1004
1272
|
}
|
|
1005
1273
|
|
|
1274
|
+
interface ProductTaxonomy extends Auditable {
|
|
1275
|
+
id: number;
|
|
1276
|
+
name: string;
|
|
1277
|
+
slug: string;
|
|
1278
|
+
selected?: boolean;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1006
1281
|
interface ProductsResponseInterface {
|
|
1007
1282
|
statusCode: number;
|
|
1008
1283
|
data: {
|
|
@@ -1043,6 +1318,43 @@ interface FindAllPriceZoneParams {
|
|
|
1043
1318
|
limit?: number;
|
|
1044
1319
|
}
|
|
1045
1320
|
|
|
1321
|
+
interface GiftBond extends Auditable {
|
|
1322
|
+
id: number;
|
|
1323
|
+
uuid: string;
|
|
1324
|
+
name: string;
|
|
1325
|
+
description?: string;
|
|
1326
|
+
status: GiftBondStatus;
|
|
1327
|
+
value: number;
|
|
1328
|
+
customer: Customer;
|
|
1329
|
+
customer_id: number;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
interface GiftBondResponse {
|
|
1333
|
+
statusCode: number;
|
|
1334
|
+
data: GiftBond;
|
|
1335
|
+
message: string;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
interface GiftBondsResponse {
|
|
1339
|
+
statusCode: number;
|
|
1340
|
+
data: {
|
|
1341
|
+
gift_bonds: GiftBond[];
|
|
1342
|
+
total: number;
|
|
1343
|
+
};
|
|
1344
|
+
message: string;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
interface ValidateGiftBondResponse {
|
|
1348
|
+
data: {
|
|
1349
|
+
valid: boolean;
|
|
1350
|
+
message: string;
|
|
1351
|
+
code: string;
|
|
1352
|
+
bond?: GiftBond;
|
|
1353
|
+
};
|
|
1354
|
+
statusCode: number;
|
|
1355
|
+
message: string;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1046
1358
|
interface CouponResponse {
|
|
1047
1359
|
statusCode: number;
|
|
1048
1360
|
data: Coupon;
|
|
@@ -1056,6 +1368,52 @@ interface ValidateCouponResponse {
|
|
|
1056
1368
|
};
|
|
1057
1369
|
}
|
|
1058
1370
|
|
|
1371
|
+
declare const DOCUMENT_TYPES_OPTIONS: SelectOption[];
|
|
1372
|
+
|
|
1373
|
+
declare const PAYMENT_METHODS_OPTIONS: SelectOption[];
|
|
1374
|
+
|
|
1375
|
+
declare const TICKET_ELEMENT_TYPES: RoomMapElementType[];
|
|
1376
|
+
declare const DEFAULT_STAGE_CONFIG: {
|
|
1377
|
+
[x: string]: any;
|
|
1378
|
+
};
|
|
1379
|
+
declare const TICKET_STATUS_COLORS: Record<PerformanceTicketStatus, string>;
|
|
1380
|
+
declare const TICKET_STATUS_FILLS: Record<PerformanceTicketStatus, string>;
|
|
1381
|
+
declare const TICKET_STATUS_LABELS: Record<PerformanceTicketStatus, string>;
|
|
1382
|
+
declare const TICKET_MAP_GRID_SIZE = 30;
|
|
1383
|
+
declare const TICKET_MAP_TITLE_HEIGHT = 30;
|
|
1384
|
+
|
|
1385
|
+
interface KonvaShapeConfig {
|
|
1386
|
+
config: ShapeConfig;
|
|
1387
|
+
layer: 'background' | 'elements' | 'foreground' | 'overlay';
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
declare function drawRoundedRect(con: Context, shape: Shape, x: number, y: number, width: number, height: number, cornerRadius: number): void;
|
|
1391
|
+
|
|
1392
|
+
declare const generateExitScene: (con: Context, shape: Shape) => void;
|
|
1393
|
+
|
|
1394
|
+
declare const generateHallwayScene: (con: Context, shape: Shape) => void;
|
|
1395
|
+
|
|
1396
|
+
declare const generateProductionAreaScene: (con: Context, shape: Shape) => void;
|
|
1397
|
+
|
|
1398
|
+
declare const generateSeatBlockScene: (con: Context, shape: Shape, numerationConfig?: {
|
|
1399
|
+
start_row_letter: string;
|
|
1400
|
+
row_order: "TOP_TO_BOTTOM" | "BOTTOM_TO_TOP";
|
|
1401
|
+
start_column_number: number;
|
|
1402
|
+
column_order: "LEFT_TO_RIGHT" | "RIGHT_TO_LEFT";
|
|
1403
|
+
}) => void;
|
|
1404
|
+
|
|
1405
|
+
declare const generateStageScene: (con: Context, shape: Shape) => void;
|
|
1406
|
+
|
|
1407
|
+
declare const generateStairScene: (con: Context, shape: Shape) => void;
|
|
1408
|
+
|
|
1409
|
+
declare const generateTableScene: (con: Context, shape: Shape) => void;
|
|
1410
|
+
|
|
1411
|
+
declare const generateUnavailableSpaceScene: (con: Context, shape: Shape) => void;
|
|
1412
|
+
|
|
1413
|
+
declare const generateZoneScene: (con: Context, shape: Shape) => void;
|
|
1414
|
+
|
|
1415
|
+
declare const KONVA_SHAPE_MAPPINGS: Record<RoomMapElementType, KonvaShapeConfig>;
|
|
1416
|
+
|
|
1059
1417
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1060
1418
|
|
|
1061
1419
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
@@ -1063,10 +1421,42 @@ declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
|
1063
1421
|
declare const transformImageToFile: (image: ShowImage | VenueImage) => UploadedFile;
|
|
1064
1422
|
|
|
1065
1423
|
declare const formatCitiesResponseToSelect: (res: CitiesResponse) => {
|
|
1066
|
-
value:
|
|
1424
|
+
value: number;
|
|
1067
1425
|
label: string;
|
|
1068
1426
|
}[];
|
|
1069
1427
|
|
|
1428
|
+
declare function tintColor(hex: string, amount?: number): string;
|
|
1429
|
+
|
|
1430
|
+
declare const drawChairIcon: (con: Context, cx: number, cy: number, size: number) => void;
|
|
1431
|
+
|
|
1432
|
+
declare const drawHappyFace: (con: Context, cx: number, cy: number, size: number) => void;
|
|
1433
|
+
|
|
1434
|
+
declare const drawWheelchairIcon: (con: Context, shape: Shape, cx: number, cy: number, size: number, fillColor?: string, strokeColor?: string) => void;
|
|
1435
|
+
|
|
1436
|
+
declare const numberToLetter: (num: number) => string;
|
|
1437
|
+
|
|
1438
|
+
declare const getItemTypeIcon: (ticket: PerformanceTicket) => string;
|
|
1439
|
+
|
|
1440
|
+
declare const generateSeatBlockTicketScene: (con: Context, shape: Shape, numerationConfig?: {
|
|
1441
|
+
start_row_letter: string;
|
|
1442
|
+
row_order: "TOP_TO_BOTTOM" | "BOTTOM_TO_TOP";
|
|
1443
|
+
start_column_number: number;
|
|
1444
|
+
column_order: "LEFT_TO_RIGHT" | "RIGHT_TO_LEFT";
|
|
1445
|
+
}, ticketStatusMap?: Map<string, PerformanceTicketStatus>) => void;
|
|
1446
|
+
|
|
1447
|
+
declare const generateTableTicketScene: (con: Context, shape: Shape, chairTicketStatuses?: PerformanceTicketStatus[], tableSeats?: RoomMapSeatState[][]) => void;
|
|
1448
|
+
|
|
1449
|
+
declare function processElementsToRenderData(elements: RoomMapElementTemplate[], tickets: PerformanceTicket[], priceZones?: {
|
|
1450
|
+
id: number;
|
|
1451
|
+
color: string;
|
|
1452
|
+
}[]): ElementRenderData[];
|
|
1453
|
+
declare function findTicketAtPosition(renderData: ElementRenderData, relX: number, relY: number): PerformanceTicket | null;
|
|
1454
|
+
declare function findElementAtPosition(renderDataList: ElementRenderData[], stageX: number, stageY: number): {
|
|
1455
|
+
element: ElementRenderData;
|
|
1456
|
+
relX: number;
|
|
1457
|
+
relY: number;
|
|
1458
|
+
} | null;
|
|
1459
|
+
|
|
1070
1460
|
declare function MinTodayValidator(controlName: string): ValidatorFn;
|
|
1071
1461
|
declare function EndDateGreaterThanStartValidator(startDateControlName: string, endDateControlName: string): ValidatorFn;
|
|
1072
1462
|
|
|
@@ -1097,16 +1487,6 @@ declare class ToastService {
|
|
|
1097
1487
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1098
1488
|
}
|
|
1099
1489
|
|
|
1100
|
-
declare class LoadingModalService {
|
|
1101
|
-
title: WritableSignal<string>;
|
|
1102
|
-
isOpen: WritableSignal<boolean>;
|
|
1103
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1104
|
-
open(title?: string): void;
|
|
1105
|
-
close(): void;
|
|
1106
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModalService, never>;
|
|
1107
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingModalService>;
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
1490
|
declare class DeleteConfirmationService {
|
|
1111
1491
|
title: WritableSignal<string>;
|
|
1112
1492
|
resourceName: WritableSignal<string>;
|
|
@@ -1235,25 +1615,6 @@ declare class PerformancesListEventsService {
|
|
|
1235
1615
|
static ɵprov: i0.ɵɵInjectableDeclaration<PerformancesListEventsService>;
|
|
1236
1616
|
}
|
|
1237
1617
|
|
|
1238
|
-
declare class ProductService {
|
|
1239
|
-
private apiService;
|
|
1240
|
-
private productsSubject;
|
|
1241
|
-
products$: Observable<Product[]>;
|
|
1242
|
-
constructor(apiService: ApiService);
|
|
1243
|
-
fetchProducts(page: number, search: string): Observable<ProductsResponseInterface>;
|
|
1244
|
-
loadProducts({ page, search }?: {
|
|
1245
|
-
page?: number;
|
|
1246
|
-
search?: string;
|
|
1247
|
-
}): void;
|
|
1248
|
-
getCurrentProducts(): Product[];
|
|
1249
|
-
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1250
|
-
createOne(data: Product): Observable<any>;
|
|
1251
|
-
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1252
|
-
deleteOne(id: number): Observable<any>;
|
|
1253
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1254
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
1618
|
declare class ShowService {
|
|
1258
1619
|
private apiService;
|
|
1259
1620
|
private showsSubject;
|
|
@@ -1334,6 +1695,297 @@ declare class PriceZoneFormModalService {
|
|
|
1334
1695
|
static ɵprov: i0.ɵɵInjectableDeclaration<PriceZoneFormModalService>;
|
|
1335
1696
|
}
|
|
1336
1697
|
|
|
1698
|
+
declare class ProductCategoryService {
|
|
1699
|
+
private apiService;
|
|
1700
|
+
constructor(apiService: ApiService);
|
|
1701
|
+
fetchCategories({ page, search, limit, }: FetchProductCategoriesParams): Observable<ProductCategoriesResponse>;
|
|
1702
|
+
fetchOneById(id: number): Observable<ProductCategoryResponse>;
|
|
1703
|
+
createOne(data: ProductCategory): Observable<any>;
|
|
1704
|
+
updateOne(id: number, data: ProductCategory): Observable<ProductCategoryResponse>;
|
|
1705
|
+
deleteOne(id: number): Observable<any>;
|
|
1706
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCategoryService, never>;
|
|
1707
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductCategoryService>;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
declare class ProductTagService {
|
|
1711
|
+
private apiService;
|
|
1712
|
+
constructor(apiService: ApiService);
|
|
1713
|
+
fetchTags({ page, search, limit }: FetchProductTagsParams): Observable<ProductTagsResponse>;
|
|
1714
|
+
fetchOneById(id: number): Observable<ProductTagResponse>;
|
|
1715
|
+
createOne(data: ProductTag): Observable<any>;
|
|
1716
|
+
updateOne(id: number, data: ProductTag): Observable<ProductTagResponse>;
|
|
1717
|
+
deleteOne(id: number): Observable<any>;
|
|
1718
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTagService, never>;
|
|
1719
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTagService>;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
declare class ProductTypeService {
|
|
1723
|
+
private apiService;
|
|
1724
|
+
constructor(apiService: ApiService);
|
|
1725
|
+
fetchTypes({ page, search, limit }: FetchProductTypesParams): Observable<ProductTypesResponse>;
|
|
1726
|
+
fetchOneById(id: number): Observable<ProductTypeResponse>;
|
|
1727
|
+
createOne(data: ProductType): Observable<any>;
|
|
1728
|
+
updateOne(id: number, data: ProductType): Observable<ProductTypeResponse>;
|
|
1729
|
+
deleteOne(id: number): Observable<any>;
|
|
1730
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTypeService, never>;
|
|
1731
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTypeService>;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
interface FetchProductsParams {
|
|
1735
|
+
page?: number;
|
|
1736
|
+
limit?: number;
|
|
1737
|
+
search?: string;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
declare class ProductService {
|
|
1741
|
+
private apiService;
|
|
1742
|
+
private productsSubject;
|
|
1743
|
+
products$: Observable<Product[]>;
|
|
1744
|
+
constructor(apiService: ApiService);
|
|
1745
|
+
fetchProducts({ page, search, limit, }: FetchProductsParams): Observable<ProductsResponseInterface>;
|
|
1746
|
+
loadProducts(params: FetchProductsParams): void;
|
|
1747
|
+
getCurrentProducts(): Product[];
|
|
1748
|
+
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1749
|
+
createOne(data: Product): Observable<any>;
|
|
1750
|
+
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1751
|
+
deleteOne(id: number): Observable<any>;
|
|
1752
|
+
fetchImages(id: number): Observable<{
|
|
1753
|
+
data: ProductImage[];
|
|
1754
|
+
}>;
|
|
1755
|
+
uploadImages(id: number, files?: FormData): Observable<{
|
|
1756
|
+
data: ProductImage[];
|
|
1757
|
+
}>;
|
|
1758
|
+
deleteOneImage(productId: number, imageId: number): Observable<any>;
|
|
1759
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1760
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
declare class BaseModalService {
|
|
1764
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1765
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1766
|
+
open(): void;
|
|
1767
|
+
close(): void;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
declare class FeedbackModalService {
|
|
1771
|
+
private _modals;
|
|
1772
|
+
readonly modals: i0.Signal<FeedbackModalElement[]>;
|
|
1773
|
+
addModal(modal: FeedbackModalElement): void;
|
|
1774
|
+
removeModal(id: string): void;
|
|
1775
|
+
removeAllModals(): void;
|
|
1776
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1777
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
declare class PerformanceBookingDataService {
|
|
1781
|
+
private _show;
|
|
1782
|
+
private _performance;
|
|
1783
|
+
private _roomMap;
|
|
1784
|
+
private _hallFloors;
|
|
1785
|
+
private _selectedHallFloor;
|
|
1786
|
+
private _selectedTicketIds;
|
|
1787
|
+
private _allRenderData;
|
|
1788
|
+
private _stageConfig;
|
|
1789
|
+
readonly selectedCount: i0.Signal<number>;
|
|
1790
|
+
readonly selectedTicketIds: i0.Signal<Set<number>>;
|
|
1791
|
+
readonly show: i0.Signal<Show | null>;
|
|
1792
|
+
readonly hallFloors: i0.Signal<HallFloor[]>;
|
|
1793
|
+
readonly selectedHallFloor: i0.Signal<HallFloor | null>;
|
|
1794
|
+
readonly performance: i0.Signal<Performance | null>;
|
|
1795
|
+
readonly stageConfig: i0.Signal<{
|
|
1796
|
+
[x: string]: any;
|
|
1797
|
+
}>;
|
|
1798
|
+
readonly roomMap: i0.Signal<RoomMap | null>;
|
|
1799
|
+
readonly renderData: i0.Signal<ElementRenderData[]>;
|
|
1800
|
+
setPerformanceBookingData({ data }: PerformanceBookingDataResponse): void;
|
|
1801
|
+
setSelectedHallFloor(id: number): void;
|
|
1802
|
+
updateStageConfig(data: {
|
|
1803
|
+
[x: string]: any;
|
|
1804
|
+
}): void;
|
|
1805
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceBookingDataService, never>;
|
|
1806
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PerformanceBookingDataService>;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
declare class TicketSelectionDetailsService {
|
|
1810
|
+
private _customerEmail;
|
|
1811
|
+
private _customerId;
|
|
1812
|
+
private _paymentMethod;
|
|
1813
|
+
private _billingInformation;
|
|
1814
|
+
readonly customerEmail: i0.Signal<string | null>;
|
|
1815
|
+
readonly customerId: i0.Signal<number | null>;
|
|
1816
|
+
readonly paymentMethod: i0.Signal<string | null>;
|
|
1817
|
+
readonly billingInformation: i0.Signal<Customer | null>;
|
|
1818
|
+
setCustomerEmail(email: string | null): void;
|
|
1819
|
+
setCustomerId(id: number | null): void;
|
|
1820
|
+
setPaymentMethod(method: string | null): void;
|
|
1821
|
+
setBillingInformation(values: Customer): void;
|
|
1822
|
+
clearSelection(): void;
|
|
1823
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionDetailsService, never>;
|
|
1824
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionDetailsService>;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
declare class TicketSelectionDiscountService {
|
|
1828
|
+
private _coupon;
|
|
1829
|
+
private _corporateBond;
|
|
1830
|
+
private _corporateBondCode;
|
|
1831
|
+
private _giftBond;
|
|
1832
|
+
private _giftBondCode;
|
|
1833
|
+
readonly coupon: Signal<Coupon | null>;
|
|
1834
|
+
readonly corporateBond: Signal<CorporateBond | null>;
|
|
1835
|
+
readonly corporateBondCode: Signal<string | null>;
|
|
1836
|
+
readonly giftBond: Signal<GiftBond | null>;
|
|
1837
|
+
readonly giftBondCode: Signal<string | null>;
|
|
1838
|
+
readonly selectedDiscount: Signal<SelectedDiscountCard | null>;
|
|
1839
|
+
readonly selectedDiscountType: Signal<SelectedDiscountCardType | undefined>;
|
|
1840
|
+
readonly selectedDiscountValue: Signal<number | undefined>;
|
|
1841
|
+
setCoupon(coupon: Coupon | null): void;
|
|
1842
|
+
setCorporateBond(corporateBond: CorporateBond | null): void;
|
|
1843
|
+
setCorporateBondCode(code: string | null): void;
|
|
1844
|
+
setGiftBond(giftBond: GiftBond | null): void;
|
|
1845
|
+
setGiftBondCode(code: string | null): void;
|
|
1846
|
+
clearSelection(): void;
|
|
1847
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionDiscountService, never>;
|
|
1848
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionDiscountService>;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
declare class TicketSelectionTotalsService {
|
|
1852
|
+
private bookingDataService;
|
|
1853
|
+
private selectionService;
|
|
1854
|
+
private selectionDiscountService;
|
|
1855
|
+
readonly selectedProductEntries: i0.Signal<{
|
|
1856
|
+
id: number;
|
|
1857
|
+
quantity: number;
|
|
1858
|
+
}[]>;
|
|
1859
|
+
readonly selectedProductCount: i0.Signal<number>;
|
|
1860
|
+
readonly productSubtotal: i0.Signal<number>;
|
|
1861
|
+
readonly ticketSubtotal: i0.Signal<number>;
|
|
1862
|
+
readonly serviceFee: i0.Signal<number>;
|
|
1863
|
+
subtotalValue(): number;
|
|
1864
|
+
totalValue(): number;
|
|
1865
|
+
totalDiscounted(): number | null;
|
|
1866
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionTotalsService, never>;
|
|
1867
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionTotalsService>;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
declare class TicketSelectionService {
|
|
1871
|
+
private bookingDataService;
|
|
1872
|
+
private selectionDetailsService;
|
|
1873
|
+
private selectionDiscountService;
|
|
1874
|
+
private _zoneQuantities;
|
|
1875
|
+
private _allTickets;
|
|
1876
|
+
private _selectedTickets;
|
|
1877
|
+
private _selectedBlockedTickets;
|
|
1878
|
+
private _products;
|
|
1879
|
+
private _productQuantities;
|
|
1880
|
+
readonly selectedTickets: i0.Signal<PerformanceTicket[]>;
|
|
1881
|
+
readonly selectedBlockedTickets: i0.Signal<PerformanceTicket[]>;
|
|
1882
|
+
readonly selectedCount: i0.Signal<number>;
|
|
1883
|
+
readonly blockedSelectedCount: i0.Signal<number>;
|
|
1884
|
+
readonly selectedTicketIds: i0.Signal<Set<PerformanceTicket>>;
|
|
1885
|
+
readonly selectedBlockedTicketIds: i0.Signal<number[]>;
|
|
1886
|
+
readonly selectedTicketIdList: i0.Signal<number[]>;
|
|
1887
|
+
readonly products: i0.Signal<Product[]>;
|
|
1888
|
+
readonly productQuantities: i0.Signal<Map<number, number>>;
|
|
1889
|
+
readonly selectedProductEntries: i0.Signal<{
|
|
1890
|
+
id: number;
|
|
1891
|
+
quantity: number;
|
|
1892
|
+
}[]>;
|
|
1893
|
+
readonly selectedProductCount: i0.Signal<number>;
|
|
1894
|
+
readonly serviceFee: i0.Signal<number>;
|
|
1895
|
+
setTickets(tickets: PerformanceTicket[]): void;
|
|
1896
|
+
setProducts(products: Product[]): void;
|
|
1897
|
+
updateProductQuantity(productId: number, delta: number): void;
|
|
1898
|
+
getProductQuantity(productId: number): number;
|
|
1899
|
+
private getListByStatus;
|
|
1900
|
+
toggle(ticket: PerformanceTicket): void;
|
|
1901
|
+
select(ticket: PerformanceTicket): void;
|
|
1902
|
+
deselect(ticket: PerformanceTicket): void;
|
|
1903
|
+
clearBlockedSelection(): void;
|
|
1904
|
+
clearSelection(): void;
|
|
1905
|
+
isSelected(ticket: PerformanceTicket): boolean;
|
|
1906
|
+
initZoneQuantity(elementId: number, maxCapacity: number): void;
|
|
1907
|
+
adjustZoneQuantity(elementId: number, delta: number): void;
|
|
1908
|
+
getZoneTickets(elementId: number): PerformanceTicket[];
|
|
1909
|
+
buildTooltipData(ticket: PerformanceTicket, elementName: string, seatLabel: string | null, x: number, y: number): TicketMapTooltipData;
|
|
1910
|
+
buildReservePerformanceDto(paymentMethod?: string, termsAccepted?: boolean, dataProcessingAccepted?: boolean): ReservePerformanceDto;
|
|
1911
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketSelectionService, never>;
|
|
1912
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketSelectionService>;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
declare class TicketMapZoomService {
|
|
1916
|
+
readonly currentZoom: i0.WritableSignal<number>;
|
|
1917
|
+
private stage?;
|
|
1918
|
+
private bookingDataService;
|
|
1919
|
+
private readonly defaultConfig;
|
|
1920
|
+
constructor();
|
|
1921
|
+
/**
|
|
1922
|
+
* Set the Konva stage instance
|
|
1923
|
+
*/
|
|
1924
|
+
setStage(stage: Stage): void;
|
|
1925
|
+
/**
|
|
1926
|
+
* Zoom in by one step
|
|
1927
|
+
*/
|
|
1928
|
+
zoomIn(): void;
|
|
1929
|
+
/**
|
|
1930
|
+
* Zoom out by one step
|
|
1931
|
+
*/
|
|
1932
|
+
zoomOut(): void;
|
|
1933
|
+
/**
|
|
1934
|
+
* Reset zoom to 100%
|
|
1935
|
+
*/
|
|
1936
|
+
resetZoom(): void;
|
|
1937
|
+
/**
|
|
1938
|
+
* Get current zoom as percentage string
|
|
1939
|
+
*/
|
|
1940
|
+
getZoomPercentage(): string;
|
|
1941
|
+
/**
|
|
1942
|
+
* Get current zoom value
|
|
1943
|
+
*/
|
|
1944
|
+
getCurrentZoom(): number;
|
|
1945
|
+
/**
|
|
1946
|
+
* Apply zoom with center point
|
|
1947
|
+
*/
|
|
1948
|
+
private applyZoom;
|
|
1949
|
+
/**
|
|
1950
|
+
* Apply zoom scale with specific center point
|
|
1951
|
+
*/
|
|
1952
|
+
private applyZoomScale;
|
|
1953
|
+
/**
|
|
1954
|
+
* Handle mouse wheel zoom toward the cursor position
|
|
1955
|
+
*/
|
|
1956
|
+
handleWheelZoom(deltaY: number): void;
|
|
1957
|
+
/**
|
|
1958
|
+
* Fit the content bounds to fill the stage container
|
|
1959
|
+
*/
|
|
1960
|
+
fitToContainer(padding?: number): void;
|
|
1961
|
+
/**
|
|
1962
|
+
* Get current stage position
|
|
1963
|
+
*/
|
|
1964
|
+
getStagePosition(): {
|
|
1965
|
+
x: number;
|
|
1966
|
+
y: number;
|
|
1967
|
+
};
|
|
1968
|
+
/**
|
|
1969
|
+
* Set stage position (useful for programmatic panning)
|
|
1970
|
+
*/
|
|
1971
|
+
setStagePosition(position: {
|
|
1972
|
+
x: number;
|
|
1973
|
+
y: number;
|
|
1974
|
+
}): void;
|
|
1975
|
+
/**
|
|
1976
|
+
* Fit the stage content bounds to the container, centering and scaling
|
|
1977
|
+
* to show the full content with optional padding.
|
|
1978
|
+
*/
|
|
1979
|
+
fitToBounds(contentBounds: {
|
|
1980
|
+
x: number;
|
|
1981
|
+
y: number;
|
|
1982
|
+
width: number;
|
|
1983
|
+
height: number;
|
|
1984
|
+
}, containerWidth: number, containerHeight: number, padding?: number): void;
|
|
1985
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapZoomService, never>;
|
|
1986
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TicketMapZoomService>;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1337
1989
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1338
1990
|
|
|
1339
1991
|
declare class AppButtonComponent {
|
|
@@ -1341,7 +1993,7 @@ declare class AppButtonComponent {
|
|
|
1341
1993
|
disabled: boolean;
|
|
1342
1994
|
loading: boolean;
|
|
1343
1995
|
type: 'button' | 'submit';
|
|
1344
|
-
variant: 'primary' | 'secondary' | '
|
|
1996
|
+
variant: 'primary' | 'secondary' | 'tertiary' | 'success' | 'transparent';
|
|
1345
1997
|
text: string;
|
|
1346
1998
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1347
1999
|
loadingText: string;
|
|
@@ -1353,7 +2005,6 @@ declare class AppButtonComponent {
|
|
|
1353
2005
|
}
|
|
1354
2006
|
|
|
1355
2007
|
declare class AppLinkButtonComponent {
|
|
1356
|
-
protected readonly BASE_BUTTON_CLASSES: string;
|
|
1357
2008
|
disabled: boolean;
|
|
1358
2009
|
loading: boolean;
|
|
1359
2010
|
target: '_blank' | '_self' | '_parent' | '_top';
|
|
@@ -1363,7 +2014,7 @@ declare class AppLinkButtonComponent {
|
|
|
1363
2014
|
route: string;
|
|
1364
2015
|
queryParams: Record<string, any>;
|
|
1365
2016
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1366
|
-
variant: 'primary' | 'secondary' | '
|
|
2017
|
+
variant: 'primary' | 'secondary' | 'tertiary' | 'success' | 'transparent';
|
|
1367
2018
|
get buttonClasses(): string;
|
|
1368
2019
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppLinkButtonComponent, never>;
|
|
1369
2020
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppLinkButtonComponent, "app-link-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "target": { "alias": "target"; "required": false; }; "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "route": { "alias": "route"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1374,23 +2025,34 @@ declare class AppAlertComponent {
|
|
|
1374
2025
|
text: string;
|
|
1375
2026
|
closeable: boolean;
|
|
1376
2027
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1377
|
-
get alertColorClasses(): string;
|
|
1378
|
-
get alertSizeClasses(): string;
|
|
1379
|
-
get alertClasses(): string;
|
|
1380
2028
|
get alertIcon(): string;
|
|
1381
2029
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppAlertComponent, never>;
|
|
1382
2030
|
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>;
|
|
1383
2031
|
}
|
|
1384
2032
|
|
|
1385
|
-
declare class
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
2033
|
+
declare class FeedbackModalComponent implements OnChanges, OnDestroy {
|
|
2034
|
+
isOpen: WritableSignal<boolean>;
|
|
2035
|
+
type: FeedbackModalType;
|
|
2036
|
+
title: string;
|
|
2037
|
+
message: string;
|
|
2038
|
+
showHeader: boolean;
|
|
2039
|
+
showCloseButton: boolean;
|
|
2040
|
+
showTitle: boolean;
|
|
2041
|
+
autoClose: boolean;
|
|
2042
|
+
autoCloseDuration: number;
|
|
2043
|
+
buttonText: string;
|
|
2044
|
+
closed: EventEmitter<void>;
|
|
2045
|
+
private autoCloseTimeout;
|
|
2046
|
+
get defaultButtonText(): string;
|
|
2047
|
+
get resolvedButtonText(): string;
|
|
2048
|
+
get buttonVariant(): 'primary' | 'secondary';
|
|
2049
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2050
|
+
ngOnDestroy(): void;
|
|
1390
2051
|
closeModal(): void;
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
static
|
|
2052
|
+
private scheduleAutoClose;
|
|
2053
|
+
private clearAutoClose;
|
|
2054
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalComponent, never>;
|
|
2055
|
+
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>;
|
|
1394
2056
|
}
|
|
1395
2057
|
|
|
1396
2058
|
declare class DeleteConfirmationComponent {
|
|
@@ -1413,14 +2075,16 @@ declare class DeleteConfirmationComponent {
|
|
|
1413
2075
|
declare class AppModalComponent {
|
|
1414
2076
|
title: string;
|
|
1415
2077
|
disableClose: boolean;
|
|
2078
|
+
showHeader: boolean;
|
|
2079
|
+
showCloseButton: boolean;
|
|
2080
|
+
showTitle: boolean;
|
|
1416
2081
|
isOpen: WritableSignal<boolean>;
|
|
1417
|
-
size:
|
|
2082
|
+
size: ModalSize;
|
|
1418
2083
|
closeModal: EventEmitter<void>;
|
|
1419
|
-
private readonly SIZE_CLASSES;
|
|
1420
|
-
get sizeClass(): string;
|
|
1421
2084
|
onCloseModal(): void;
|
|
2085
|
+
onKeydownEscape(): void;
|
|
1422
2086
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
1423
|
-
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>;
|
|
2087
|
+
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>;
|
|
1424
2088
|
}
|
|
1425
2089
|
|
|
1426
2090
|
declare class AuditInformationComponent {
|
|
@@ -1527,7 +2191,6 @@ declare class FormSelectComponent implements ControlValueAccessor {
|
|
|
1527
2191
|
get showError(): boolean;
|
|
1528
2192
|
get errorMessage(): string;
|
|
1529
2193
|
get resolvedDefaultOptionLabel(): string;
|
|
1530
|
-
get selectClasses(): string;
|
|
1531
2194
|
get fieldGroupClasses(): string;
|
|
1532
2195
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectComponent, [{ optional: true; self: true; }, null]>;
|
|
1533
2196
|
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>;
|
|
@@ -1560,7 +2223,6 @@ declare class FormTextareaComponent implements ControlValueAccessor {
|
|
|
1560
2223
|
get inputId(): string;
|
|
1561
2224
|
get showError(): boolean;
|
|
1562
2225
|
get errorMessage(): string;
|
|
1563
|
-
get inputClasses(): string;
|
|
1564
2226
|
get fieldGroupClasses(): string;
|
|
1565
2227
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormTextareaComponent, [{ optional: true; self: true; }, null]>;
|
|
1566
2228
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormTextareaComponent, "form-textarea", 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; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1628,7 +2290,6 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1628
2290
|
selectPresetColor(color: string): void;
|
|
1629
2291
|
get inputId(): string;
|
|
1630
2292
|
get showError(): boolean;
|
|
1631
|
-
get inputClasses(): string;
|
|
1632
2293
|
get fieldGroupClasses(): string;
|
|
1633
2294
|
isValidHexColor(color: string): boolean;
|
|
1634
2295
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, [{ optional: true; self: true; }, null]>;
|
|
@@ -1665,7 +2326,6 @@ declare class DateInputComponent implements ControlValueAccessor {
|
|
|
1665
2326
|
get inputId(): string;
|
|
1666
2327
|
get showError(): boolean;
|
|
1667
2328
|
get errorMessage(): string;
|
|
1668
|
-
get inputClasses(): string;
|
|
1669
2329
|
get fieldGroupClasses(): string;
|
|
1670
2330
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [{ optional: true; self: true; }, null]>;
|
|
1671
2331
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "date-input", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "includeTime": { "alias": "includeTime"; "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; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1692,9 +2352,6 @@ declare class ToggleSwitchComponent implements ControlValueAccessor {
|
|
|
1692
2352
|
setDisabledState(isDisabled: boolean): void;
|
|
1693
2353
|
onToggle(): void;
|
|
1694
2354
|
get inputId(): string;
|
|
1695
|
-
get toggleSizeClasses(): string;
|
|
1696
|
-
get toggleThumbSizeClasses(): string;
|
|
1697
|
-
get toggleThumbTranslateClasses(): string;
|
|
1698
2355
|
get fieldGroupClasses(): string;
|
|
1699
2356
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleSwitchComponent, [{ optional: true; self: true; }]>;
|
|
1700
2357
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleSwitchComponent, "toggle-switch", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, { "toggleClick": "toggleClick"; }, never, never, true, never>;
|
|
@@ -1783,6 +2440,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1783
2440
|
notFoundText: string;
|
|
1784
2441
|
bindLabel: string;
|
|
1785
2442
|
bindValue: string;
|
|
2443
|
+
disabled: boolean;
|
|
1786
2444
|
value: any;
|
|
1787
2445
|
onChange: any;
|
|
1788
2446
|
onTouched: any;
|
|
@@ -1812,7 +2470,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1812
2470
|
registerOnTouched(fn: any): void;
|
|
1813
2471
|
setDisabledState(isDisabled: boolean): void;
|
|
1814
2472
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncSelectComponent, never>;
|
|
1815
|
-
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>;
|
|
2473
|
+
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>;
|
|
1816
2474
|
}
|
|
1817
2475
|
|
|
1818
2476
|
declare class ChangePasswordFormComponent {
|
|
@@ -2336,5 +2994,112 @@ declare class ZonePriceListComponent {
|
|
|
2336
2994
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2337
2995
|
}
|
|
2338
2996
|
|
|
2339
|
-
|
|
2340
|
-
|
|
2997
|
+
declare class TicketMapWidgetComponent {
|
|
2998
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWidgetComponent, never>;
|
|
2999
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetComponent, "ticket-map-widget", never, {}, {}, never, ["*"], true, never>;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
declare class TicketMapWidgetHeaderComponent {
|
|
3003
|
+
title: string;
|
|
3004
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWidgetHeaderComponent, never>;
|
|
3005
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetHeaderComponent, "ticket-map-widget-header", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
declare class TicketMapZoomControlsComponent {
|
|
3009
|
+
private zoomService;
|
|
3010
|
+
readonly currentZoom: i0.Signal<number>;
|
|
3011
|
+
readonly zoomPercentage: i0.Signal<string>;
|
|
3012
|
+
constructor(zoomService: TicketMapZoomService);
|
|
3013
|
+
zoomIn(): void;
|
|
3014
|
+
zoomOut(): void;
|
|
3015
|
+
resetZoom(): void;
|
|
3016
|
+
fitToContainer(): void;
|
|
3017
|
+
handleZoomAction(action: string): void;
|
|
3018
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapZoomControlsComponent, never>;
|
|
3019
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapZoomControlsComponent, "ticket-map-zoom-controls", never, {}, {}, never, never, true, never>;
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
declare class PerformanceTicketMapComponent implements OnDestroy, AfterViewInit {
|
|
3023
|
+
private platformId;
|
|
3024
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3025
|
+
protected feedbackModalService: FeedbackModalService;
|
|
3026
|
+
protected selectionService: TicketSelectionService;
|
|
3027
|
+
protected zoomService: TicketMapZoomService;
|
|
3028
|
+
selectionChange: EventEmitter<PerformanceTicket[]>;
|
|
3029
|
+
readOnly: boolean;
|
|
3030
|
+
stageComponent?: StageComponent;
|
|
3031
|
+
protected tooltipData: i0.WritableSignal<TicketMapTooltipData | null>;
|
|
3032
|
+
private stageReady;
|
|
3033
|
+
private autoFitDone;
|
|
3034
|
+
private resizeObserver?;
|
|
3035
|
+
constructor(platformId: object, bookingDataService: PerformanceBookingDataService, feedbackModalService: FeedbackModalService, selectionService: TicketSelectionService, zoomService: TicketMapZoomService);
|
|
3036
|
+
protected get isBrowser(): boolean;
|
|
3037
|
+
ngAfterViewInit(): void;
|
|
3038
|
+
private setupResizeObserver;
|
|
3039
|
+
private syncStageToContainer;
|
|
3040
|
+
ngOnDestroy(): void;
|
|
3041
|
+
private getInternalPointer;
|
|
3042
|
+
protected selectHallFloor(floorId: number): void;
|
|
3043
|
+
protected handleStageClick(konvaEvent: any): void;
|
|
3044
|
+
protected handleStageMouseMove(konvaEvent: any): void;
|
|
3045
|
+
protected handleStageMouseLeave(): void;
|
|
3046
|
+
protected handleWheel(konvaEvent: any): void;
|
|
3047
|
+
protected trackByElementId(_index: number, item: ElementRenderData): number;
|
|
3048
|
+
protected trackByFloorId(_index: number, floor: HallFloorOption): HallFloorOption;
|
|
3049
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceTicketMapComponent, never>;
|
|
3050
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceTicketMapComponent, "performance-ticket-map", never, { "readOnly": { "alias": "readOnly"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
3051
|
+
}
|
|
3052
|
+
|
|
3053
|
+
declare class TicketMapPriceZonesComponent {
|
|
3054
|
+
title: string;
|
|
3055
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3056
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapPriceZonesComponent, never>;
|
|
3057
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapPriceZonesComponent, "ticket-map-price-zones", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
declare class TicketMapProductSelectionItemComponent {
|
|
3061
|
+
protected selectionService: TicketSelectionService;
|
|
3062
|
+
product: Product;
|
|
3063
|
+
constructor(selectionService: TicketSelectionService);
|
|
3064
|
+
get quantity(): number;
|
|
3065
|
+
get firstImage(): string | undefined;
|
|
3066
|
+
increment(): void;
|
|
3067
|
+
decrement(): void;
|
|
3068
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapProductSelectionItemComponent, never>;
|
|
3069
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapProductSelectionItemComponent, "ticket-map-product-selection-item", never, { "product": { "alias": "product"; "required": true; }; }, {}, never, never, true, never>;
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
declare class TIcketMapProductSelectionComponent {
|
|
3073
|
+
private bookingDataService;
|
|
3074
|
+
readonly products: i0.Signal<tickera_angular_components.Product[]>;
|
|
3075
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TIcketMapProductSelectionComponent, never>;
|
|
3076
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TIcketMapProductSelectionComponent, "ticket-map-product-selection", never, {}, {}, never, never, true, never>;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
declare class TicketMapTotalsComponent {
|
|
3080
|
+
protected bookingDataService: PerformanceBookingDataService;
|
|
3081
|
+
protected selectionDetailsService: TicketSelectionDetailsService;
|
|
3082
|
+
protected selectionDiscountService: TicketSelectionDiscountService;
|
|
3083
|
+
protected selectionTotalsService: TicketSelectionTotalsService;
|
|
3084
|
+
protected selectionService: TicketSelectionService;
|
|
3085
|
+
private activatedRoute;
|
|
3086
|
+
title: string;
|
|
3087
|
+
buttonText: string;
|
|
3088
|
+
loadingButtonText: string;
|
|
3089
|
+
isLoading: boolean;
|
|
3090
|
+
onPurchaseClick: EventEmitter<void>;
|
|
3091
|
+
constructor(bookingDataService: PerformanceBookingDataService, selectionDetailsService: TicketSelectionDetailsService, selectionDiscountService: TicketSelectionDiscountService, selectionTotalsService: TicketSelectionTotalsService, selectionService: TicketSelectionService, activatedRoute: ActivatedRoute);
|
|
3092
|
+
get serviceFee(): number;
|
|
3093
|
+
get performanceId(): number;
|
|
3094
|
+
get selectedTicketIds(): number[];
|
|
3095
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapTotalsComponent, never>;
|
|
3096
|
+
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>;
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
declare class TicketMapWrapperComponent {
|
|
3100
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWrapperComponent, never>;
|
|
3101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWrapperComponent, "ticket-map-wrapper", never, {}, {}, never, never, true, never>;
|
|
3102
|
+
}
|
|
3103
|
+
|
|
3104
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, 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, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, 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, GiftBondStatus, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PerformanceBookingDataService, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketMapComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, SelectedDiscountCardType, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TickeraTranslocoLoader, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, 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, getStoredLanguage, numberToLetter, parseJsonToFormDataAdvanced, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, tintColor, transformImageToFile };
|
|
3105
|
+
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, 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, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, HallFloorOption, KonvaShapeConfig, ModalSize, NumerationConfig, Order, 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, 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, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, TicketMapSeatPosition, TicketMapTableChairPosition, TicketMapTooltipData, TicketMapZoneQuantityState, TicketMapZoomConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|