tickera-angular-components 0.0.1-dev.25 → 0.0.1-dev.26
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/index.d.ts
CHANGED
|
@@ -33,15 +33,6 @@ declare const ALERT_ICONS: {
|
|
|
33
33
|
info: string;
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
37
|
-
declare const BASE_BUTTON_CLASSES = "btn";
|
|
38
|
-
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
39
|
-
|
|
40
|
-
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
41
|
-
|
|
42
|
-
declare const BASE_INPUT_CLASSES: string;
|
|
43
|
-
declare const ERROR_INPUT_CLASSES: string;
|
|
44
|
-
|
|
45
36
|
declare const ADMIN_API_ROUTES: {
|
|
46
37
|
FIND_ALL: string;
|
|
47
38
|
CREATE: string;
|
|
@@ -166,174 +157,14 @@ declare const VENUES_API_ROUTES: {
|
|
|
166
157
|
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
167
158
|
};
|
|
168
159
|
|
|
169
|
-
declare
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
EXCEL = "excel",
|
|
173
|
-
WORD = "word",
|
|
174
|
-
TEXT = "text",
|
|
175
|
-
DEFAULT = "default"
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
declare enum CouponApplicability {
|
|
179
|
-
GENERAL = "GENERAL",
|
|
180
|
-
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
181
|
-
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
182
|
-
SHOWS = "SHOWS",
|
|
183
|
-
PERFORMANCES = "PERFORMANCES"
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
declare enum CouponDiscountType {
|
|
187
|
-
PERCENTAGE = "PERCENTAGE",
|
|
188
|
-
FIXED = "FIXED"
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
declare enum CouponStatus {
|
|
192
|
-
ACTIVE = "ACTIVE",
|
|
193
|
-
INACTIVE = "INACTIVE",
|
|
194
|
-
EXPIRED = "EXPIRED",
|
|
195
|
-
CONSUMED = "CONSUMED"
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
declare enum CorporateBondStatus {
|
|
199
|
-
ACTIVE = "ACTIVE",
|
|
200
|
-
INACTIVE = "INACTIVE",
|
|
201
|
-
EXPIRED = "EXPIRED",
|
|
202
|
-
CONSUMED = "CONSUMED"
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
declare enum PerformanceStatus {
|
|
206
|
-
SCHEDULED = "scheduled",
|
|
207
|
-
OPEN = "open",
|
|
208
|
-
CLOSED = "closed",
|
|
209
|
-
CANCELLED = "cancelled",
|
|
210
|
-
COMPLETED = "completed",
|
|
211
|
-
POSTPONED = "postponed"
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
declare enum PerformanceTicketStatus {
|
|
215
|
-
AVAILABLE = "available",
|
|
216
|
-
RESERVED = "reserved",
|
|
217
|
-
SOLD = "sold",
|
|
218
|
-
BLOCKED = "blocked"
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
declare enum RoomMapElementOrientation {
|
|
222
|
-
TOP = "top",
|
|
223
|
-
RIGHT = "right",
|
|
224
|
-
BOTTOM = "bottom",
|
|
225
|
-
LEFT = "left",
|
|
226
|
-
CENTER = "center"
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
declare enum RoomMapElementType {
|
|
230
|
-
SEAT_BLOCK = "seat_block",
|
|
231
|
-
TABLE = "table",
|
|
232
|
-
ZONE = "zone",
|
|
233
|
-
EXIT = "exit",
|
|
234
|
-
STAGE = "stage",
|
|
235
|
-
PRODUCTION_AREA = "production_area",
|
|
236
|
-
UNAVAILABLE_SPACE = "unavailable_space",
|
|
237
|
-
STAIR = "stair",
|
|
238
|
-
HALLWAY = "hallway"
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
declare enum GiftBondStatus {
|
|
242
|
-
ACTIVE = "ACTIVE",
|
|
243
|
-
INACTIVE = "INACTIVE",
|
|
244
|
-
EXPIRED = "EXPIRED",
|
|
245
|
-
CONSUMED = "CONSUMED"
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
declare enum OrderItemType {
|
|
249
|
-
TICKET = "TICKET",
|
|
250
|
-
PRODUCT = "PRODUCT"
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
declare enum OrderStatus {
|
|
254
|
-
ON_HOLD = "on-hold",
|
|
255
|
-
PENDING_PAYMENT = "pending-payment",
|
|
256
|
-
PROCESSING = "processing",
|
|
257
|
-
COMPLETED = "completed",
|
|
258
|
-
FAILED = "failed",
|
|
259
|
-
CANCELLED = "cancelled",
|
|
260
|
-
REFUNDED = "refunded"
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
interface RoomMapPosition {
|
|
264
|
-
x: number;
|
|
265
|
-
y: number;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
interface RoomMapSize {
|
|
269
|
-
width: number;
|
|
270
|
-
height: number;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
interface RoomMapBaseElement {
|
|
274
|
-
id: string;
|
|
275
|
-
type: RoomMapElementType;
|
|
276
|
-
position: RoomMapPosition;
|
|
277
|
-
size: RoomMapSize;
|
|
278
|
-
rotation: number;
|
|
279
|
-
name?: string;
|
|
280
|
-
isLocked: boolean;
|
|
281
|
-
isVisible: boolean;
|
|
282
|
-
zIndex: number;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
286
|
-
type: RoomMapElementType.EXIT;
|
|
287
|
-
exitName?: string;
|
|
288
|
-
exitType: 'emergency' | 'regular';
|
|
289
|
-
width: number;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
293
|
-
type: RoomMapElementType.PRODUCTION_AREA;
|
|
294
|
-
areaName?: string;
|
|
295
|
-
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
299
|
-
type: RoomMapElementType.SEAT_BLOCK;
|
|
300
|
-
seatNumber?: string;
|
|
301
|
-
isAvailable: boolean;
|
|
302
|
-
priceCategory?: string;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
306
|
-
type: RoomMapElementType.STAGE;
|
|
307
|
-
stageName?: string;
|
|
308
|
-
orientation: RoomMapElementOrientation;
|
|
309
|
-
isMainStage: boolean;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
313
|
-
type: RoomMapElementType.TABLE;
|
|
314
|
-
tableNumber?: string;
|
|
315
|
-
capacity: number;
|
|
316
|
-
shape: 'round' | 'rectangular' | 'square';
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
320
|
-
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
321
|
-
reason?: string;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
325
|
-
type: RoomMapElementType.ZONE;
|
|
326
|
-
zoneName: string;
|
|
327
|
-
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
328
|
-
color: string;
|
|
329
|
-
capacity?: number;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
160
|
+
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
161
|
+
declare const BASE_BUTTON_CLASSES = "btn";
|
|
162
|
+
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
333
163
|
|
|
334
|
-
|
|
164
|
+
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
335
165
|
|
|
336
|
-
|
|
166
|
+
declare const BASE_INPUT_CLASSES: string;
|
|
167
|
+
declare const ERROR_INPUT_CLASSES: string;
|
|
337
168
|
|
|
338
169
|
interface SelectOption {
|
|
339
170
|
value: any;
|
|
@@ -607,6 +438,17 @@ interface ShowImage {
|
|
|
607
438
|
created_at: Date;
|
|
608
439
|
}
|
|
609
440
|
|
|
441
|
+
type ShowType = 'play' | 'musical' | 'concert' | 'dance' | 'opera' | 'comedy' | 'other';
|
|
442
|
+
|
|
443
|
+
declare enum PerformanceStatus {
|
|
444
|
+
SCHEDULED = "scheduled",
|
|
445
|
+
OPEN = "open",
|
|
446
|
+
CLOSED = "closed",
|
|
447
|
+
CANCELLED = "cancelled",
|
|
448
|
+
COMPLETED = "completed",
|
|
449
|
+
POSTPONED = "postponed"
|
|
450
|
+
}
|
|
451
|
+
|
|
610
452
|
interface PriceZone {
|
|
611
453
|
id: number;
|
|
612
454
|
name: string;
|
|
@@ -741,6 +583,18 @@ interface Product extends Auditable {
|
|
|
741
583
|
images?: ProductImage[];
|
|
742
584
|
}
|
|
743
585
|
|
|
586
|
+
declare enum RoomMapElementType {
|
|
587
|
+
SEAT_BLOCK = "seat_block",
|
|
588
|
+
TABLE = "table",
|
|
589
|
+
ZONE = "zone",
|
|
590
|
+
EXIT = "exit",
|
|
591
|
+
STAGE = "stage",
|
|
592
|
+
PRODUCTION_AREA = "production_area",
|
|
593
|
+
UNAVAILABLE_SPACE = "unavailable_space",
|
|
594
|
+
STAIR = "stair",
|
|
595
|
+
HALLWAY = "hallway"
|
|
596
|
+
}
|
|
597
|
+
|
|
744
598
|
interface NumerationConfig {
|
|
745
599
|
start_row_letter: string;
|
|
746
600
|
row_order: 'TOP_TO_BOTTOM' | 'BOTTOM_TO_TOP';
|
|
@@ -796,6 +650,85 @@ interface RoomMap {
|
|
|
796
650
|
updated_at: Date;
|
|
797
651
|
}
|
|
798
652
|
|
|
653
|
+
interface RoomMapPosition {
|
|
654
|
+
x: number;
|
|
655
|
+
y: number;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
interface RoomMapSize {
|
|
659
|
+
width: number;
|
|
660
|
+
height: number;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
interface RoomMapBaseElement {
|
|
664
|
+
id: string;
|
|
665
|
+
type: RoomMapElementType;
|
|
666
|
+
position: RoomMapPosition;
|
|
667
|
+
size: RoomMapSize;
|
|
668
|
+
rotation: number;
|
|
669
|
+
name?: string;
|
|
670
|
+
isLocked: boolean;
|
|
671
|
+
isVisible: boolean;
|
|
672
|
+
zIndex: number;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
676
|
+
type: RoomMapElementType.EXIT;
|
|
677
|
+
exitName?: string;
|
|
678
|
+
exitType: 'emergency' | 'regular';
|
|
679
|
+
width: number;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
683
|
+
type: RoomMapElementType.PRODUCTION_AREA;
|
|
684
|
+
areaName?: string;
|
|
685
|
+
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
689
|
+
type: RoomMapElementType.SEAT_BLOCK;
|
|
690
|
+
seatNumber?: string;
|
|
691
|
+
isAvailable: boolean;
|
|
692
|
+
priceCategory?: string;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
declare enum RoomMapElementOrientation {
|
|
696
|
+
TOP = "top",
|
|
697
|
+
RIGHT = "right",
|
|
698
|
+
BOTTOM = "bottom",
|
|
699
|
+
LEFT = "left",
|
|
700
|
+
CENTER = "center"
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
704
|
+
type: RoomMapElementType.STAGE;
|
|
705
|
+
stageName?: string;
|
|
706
|
+
orientation: RoomMapElementOrientation;
|
|
707
|
+
isMainStage: boolean;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
711
|
+
type: RoomMapElementType.TABLE;
|
|
712
|
+
tableNumber?: string;
|
|
713
|
+
capacity: number;
|
|
714
|
+
shape: 'round' | 'rectangular' | 'square';
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
718
|
+
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
719
|
+
reason?: string;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
723
|
+
type: RoomMapElementType.ZONE;
|
|
724
|
+
zoneName: string;
|
|
725
|
+
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
726
|
+
color: string;
|
|
727
|
+
capacity?: number;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
731
|
+
|
|
799
732
|
interface RoomMapCanvasConfiguration {
|
|
800
733
|
id: string;
|
|
801
734
|
name: string;
|
|
@@ -813,6 +746,23 @@ interface RoomMapCanvasConfiguration {
|
|
|
813
746
|
};
|
|
814
747
|
}
|
|
815
748
|
|
|
749
|
+
declare enum OrderItemType {
|
|
750
|
+
TICKET = "TICKET",
|
|
751
|
+
PRODUCT = "PRODUCT"
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
declare enum OrderStatus {
|
|
755
|
+
ON_HOLD = "on-hold",
|
|
756
|
+
PENDING_PAYMENT = "pending-payment",
|
|
757
|
+
PROCESSING = "processing",
|
|
758
|
+
COMPLETED = "completed",
|
|
759
|
+
FAILED = "failed",
|
|
760
|
+
CANCELLED = "cancelled",
|
|
761
|
+
REFUNDED = "refunded"
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
765
|
+
|
|
816
766
|
interface RoomMapChairPosition {
|
|
817
767
|
position: RoomMapPosition;
|
|
818
768
|
isOccupied: boolean;
|
|
@@ -943,6 +893,13 @@ interface PerformancesResponseInterface {
|
|
|
943
893
|
message: string;
|
|
944
894
|
}
|
|
945
895
|
|
|
896
|
+
declare enum PerformanceTicketStatus {
|
|
897
|
+
AVAILABLE = "available",
|
|
898
|
+
RESERVED = "reserved",
|
|
899
|
+
SOLD = "sold",
|
|
900
|
+
BLOCKED = "blocked"
|
|
901
|
+
}
|
|
902
|
+
|
|
946
903
|
interface OrderItem {
|
|
947
904
|
id: number;
|
|
948
905
|
order: Order;
|
|
@@ -962,6 +919,26 @@ interface OrderItem {
|
|
|
962
919
|
updated_by: number;
|
|
963
920
|
}
|
|
964
921
|
|
|
922
|
+
declare enum CouponApplicability {
|
|
923
|
+
GENERAL = "GENERAL",
|
|
924
|
+
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
925
|
+
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
926
|
+
SHOWS = "SHOWS",
|
|
927
|
+
PERFORMANCES = "PERFORMANCES"
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
declare enum CouponDiscountType {
|
|
931
|
+
PERCENTAGE = "PERCENTAGE",
|
|
932
|
+
FIXED = "FIXED"
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
declare enum CouponStatus {
|
|
936
|
+
ACTIVE = "ACTIVE",
|
|
937
|
+
INACTIVE = "INACTIVE",
|
|
938
|
+
EXPIRED = "EXPIRED",
|
|
939
|
+
CONSUMED = "CONSUMED"
|
|
940
|
+
}
|
|
941
|
+
|
|
965
942
|
interface Coupon extends Auditable {
|
|
966
943
|
id: number;
|
|
967
944
|
code: string;
|
|
@@ -986,6 +963,13 @@ interface Coupon extends Auditable {
|
|
|
986
963
|
customers?: Customer[];
|
|
987
964
|
}
|
|
988
965
|
|
|
966
|
+
declare enum CorporateBondStatus {
|
|
967
|
+
ACTIVE = "ACTIVE",
|
|
968
|
+
INACTIVE = "INACTIVE",
|
|
969
|
+
EXPIRED = "EXPIRED",
|
|
970
|
+
CONSUMED = "CONSUMED"
|
|
971
|
+
}
|
|
972
|
+
|
|
989
973
|
interface CorporateBond {
|
|
990
974
|
id: number;
|
|
991
975
|
name: string;
|
|
@@ -1231,6 +1215,13 @@ interface FindAllPriceZoneParams {
|
|
|
1231
1215
|
limit?: number;
|
|
1232
1216
|
}
|
|
1233
1217
|
|
|
1218
|
+
declare enum GiftBondStatus {
|
|
1219
|
+
ACTIVE = "ACTIVE",
|
|
1220
|
+
INACTIVE = "INACTIVE",
|
|
1221
|
+
EXPIRED = "EXPIRED",
|
|
1222
|
+
CONSUMED = "CONSUMED"
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1234
1225
|
interface GiftBond {
|
|
1235
1226
|
id: number;
|
|
1236
1227
|
uuid: string;
|
|
@@ -1285,6 +1276,19 @@ interface ValidateCouponResponse {
|
|
|
1285
1276
|
};
|
|
1286
1277
|
}
|
|
1287
1278
|
|
|
1279
|
+
declare const DOCUMENT_TYPES_OPTIONS: SelectOption[];
|
|
1280
|
+
|
|
1281
|
+
declare const PAYMENT_METHODS_OPTIONS: SelectOption[];
|
|
1282
|
+
|
|
1283
|
+
declare enum FileType {
|
|
1284
|
+
IMAGE = "image",
|
|
1285
|
+
PDF = "pdf",
|
|
1286
|
+
EXCEL = "excel",
|
|
1287
|
+
WORD = "word",
|
|
1288
|
+
TEXT = "text",
|
|
1289
|
+
DEFAULT = "default"
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1288
1292
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1289
1293
|
|
|
1290
1294
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
@@ -2705,5 +2709,5 @@ declare class ZonePriceListComponent {
|
|
|
2705
2709
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2706
2710
|
}
|
|
2707
2711
|
|
|
2708
|
-
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, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, ErrorFeedbackModalComponent, FORM_ERROR_MESSAGES, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus, InfoFeedbackModalComponent, LanguageSwitcherComponent, LoadingFeedbackModalComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, SuccessFeedbackModalComponent, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, WarningFeedbackModalComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
2712
|
+
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, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, ErrorFeedbackModalComponent, FORM_ERROR_MESSAGES, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus, InfoFeedbackModalComponent, LanguageSwitcherComponent, LoadingFeedbackModalComponent, 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, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, SuccessFeedbackModalComponent, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, WarningFeedbackModalComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
2709
2713
|
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, FeedbackModalType, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, 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, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|