tickera-angular-components 0.0.1-dev.24 → 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,172 +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
|
-
ACTIVE = "active",
|
|
207
|
-
CANCELLED = "cancelled",
|
|
208
|
-
FINISHED = "finished",
|
|
209
|
-
POSTPONED = "postponed"
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
declare enum PerformanceTicketStatus {
|
|
213
|
-
AVAILABLE = "available",
|
|
214
|
-
RESERVED = "reserved",
|
|
215
|
-
SOLD = "sold",
|
|
216
|
-
BLOCKED = "blocked"
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
declare enum RoomMapElementOrientation {
|
|
220
|
-
TOP = "top",
|
|
221
|
-
RIGHT = "right",
|
|
222
|
-
BOTTOM = "bottom",
|
|
223
|
-
LEFT = "left",
|
|
224
|
-
CENTER = "center"
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
declare enum RoomMapElementType {
|
|
228
|
-
SEAT_BLOCK = "seat_block",
|
|
229
|
-
TABLE = "table",
|
|
230
|
-
ZONE = "zone",
|
|
231
|
-
EXIT = "exit",
|
|
232
|
-
STAGE = "stage",
|
|
233
|
-
PRODUCTION_AREA = "production_area",
|
|
234
|
-
UNAVAILABLE_SPACE = "unavailable_space",
|
|
235
|
-
STAIR = "stair",
|
|
236
|
-
HALLWAY = "hallway"
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
declare enum GiftBondStatus {
|
|
240
|
-
ACTIVE = "ACTIVE",
|
|
241
|
-
INACTIVE = "INACTIVE",
|
|
242
|
-
EXPIRED = "EXPIRED",
|
|
243
|
-
CONSUMED = "CONSUMED"
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
declare enum OrderItemType {
|
|
247
|
-
TICKET = "TICKET",
|
|
248
|
-
PRODUCT = "PRODUCT"
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
declare enum OrderStatus {
|
|
252
|
-
ON_HOLD = "on-hold",
|
|
253
|
-
PENDING_PAYMENT = "pending-payment",
|
|
254
|
-
PROCESSING = "processing",
|
|
255
|
-
COMPLETED = "completed",
|
|
256
|
-
FAILED = "failed",
|
|
257
|
-
CANCELLED = "cancelled",
|
|
258
|
-
REFUNDED = "refunded"
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
interface RoomMapPosition {
|
|
262
|
-
x: number;
|
|
263
|
-
y: number;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
interface RoomMapSize {
|
|
267
|
-
width: number;
|
|
268
|
-
height: number;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
interface RoomMapBaseElement {
|
|
272
|
-
id: string;
|
|
273
|
-
type: RoomMapElementType;
|
|
274
|
-
position: RoomMapPosition;
|
|
275
|
-
size: RoomMapSize;
|
|
276
|
-
rotation: number;
|
|
277
|
-
name?: string;
|
|
278
|
-
isLocked: boolean;
|
|
279
|
-
isVisible: boolean;
|
|
280
|
-
zIndex: number;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
284
|
-
type: RoomMapElementType.EXIT;
|
|
285
|
-
exitName?: string;
|
|
286
|
-
exitType: 'emergency' | 'regular';
|
|
287
|
-
width: number;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
291
|
-
type: RoomMapElementType.PRODUCTION_AREA;
|
|
292
|
-
areaName?: string;
|
|
293
|
-
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
297
|
-
type: RoomMapElementType.SEAT_BLOCK;
|
|
298
|
-
seatNumber?: string;
|
|
299
|
-
isAvailable: boolean;
|
|
300
|
-
priceCategory?: string;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
304
|
-
type: RoomMapElementType.STAGE;
|
|
305
|
-
stageName?: string;
|
|
306
|
-
orientation: RoomMapElementOrientation;
|
|
307
|
-
isMainStage: boolean;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
311
|
-
type: RoomMapElementType.TABLE;
|
|
312
|
-
tableNumber?: string;
|
|
313
|
-
capacity: number;
|
|
314
|
-
shape: 'round' | 'rectangular' | 'square';
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
318
|
-
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
319
|
-
reason?: string;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
323
|
-
type: RoomMapElementType.ZONE;
|
|
324
|
-
zoneName: string;
|
|
325
|
-
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
326
|
-
color: string;
|
|
327
|
-
capacity?: number;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
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>;
|
|
331
163
|
|
|
332
|
-
|
|
164
|
+
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
333
165
|
|
|
334
|
-
|
|
166
|
+
declare const BASE_INPUT_CLASSES: string;
|
|
167
|
+
declare const ERROR_INPUT_CLASSES: string;
|
|
335
168
|
|
|
336
169
|
interface SelectOption {
|
|
337
170
|
value: any;
|
|
@@ -605,6 +438,17 @@ interface ShowImage {
|
|
|
605
438
|
created_at: Date;
|
|
606
439
|
}
|
|
607
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
|
+
|
|
608
452
|
interface PriceZone {
|
|
609
453
|
id: number;
|
|
610
454
|
name: string;
|
|
@@ -739,6 +583,18 @@ interface Product extends Auditable {
|
|
|
739
583
|
images?: ProductImage[];
|
|
740
584
|
}
|
|
741
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
|
+
|
|
742
598
|
interface NumerationConfig {
|
|
743
599
|
start_row_letter: string;
|
|
744
600
|
row_order: 'TOP_TO_BOTTOM' | 'BOTTOM_TO_TOP';
|
|
@@ -794,6 +650,85 @@ interface RoomMap {
|
|
|
794
650
|
updated_at: Date;
|
|
795
651
|
}
|
|
796
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
|
+
|
|
797
732
|
interface RoomMapCanvasConfiguration {
|
|
798
733
|
id: string;
|
|
799
734
|
name: string;
|
|
@@ -811,6 +746,23 @@ interface RoomMapCanvasConfiguration {
|
|
|
811
746
|
};
|
|
812
747
|
}
|
|
813
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
|
+
|
|
814
766
|
interface RoomMapChairPosition {
|
|
815
767
|
position: RoomMapPosition;
|
|
816
768
|
isOccupied: boolean;
|
|
@@ -941,6 +893,13 @@ interface PerformancesResponseInterface {
|
|
|
941
893
|
message: string;
|
|
942
894
|
}
|
|
943
895
|
|
|
896
|
+
declare enum PerformanceTicketStatus {
|
|
897
|
+
AVAILABLE = "available",
|
|
898
|
+
RESERVED = "reserved",
|
|
899
|
+
SOLD = "sold",
|
|
900
|
+
BLOCKED = "blocked"
|
|
901
|
+
}
|
|
902
|
+
|
|
944
903
|
interface OrderItem {
|
|
945
904
|
id: number;
|
|
946
905
|
order: Order;
|
|
@@ -960,6 +919,26 @@ interface OrderItem {
|
|
|
960
919
|
updated_by: number;
|
|
961
920
|
}
|
|
962
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
|
+
|
|
963
942
|
interface Coupon extends Auditable {
|
|
964
943
|
id: number;
|
|
965
944
|
code: string;
|
|
@@ -984,6 +963,13 @@ interface Coupon extends Auditable {
|
|
|
984
963
|
customers?: Customer[];
|
|
985
964
|
}
|
|
986
965
|
|
|
966
|
+
declare enum CorporateBondStatus {
|
|
967
|
+
ACTIVE = "ACTIVE",
|
|
968
|
+
INACTIVE = "INACTIVE",
|
|
969
|
+
EXPIRED = "EXPIRED",
|
|
970
|
+
CONSUMED = "CONSUMED"
|
|
971
|
+
}
|
|
972
|
+
|
|
987
973
|
interface CorporateBond {
|
|
988
974
|
id: number;
|
|
989
975
|
name: string;
|
|
@@ -1229,6 +1215,13 @@ interface FindAllPriceZoneParams {
|
|
|
1229
1215
|
limit?: number;
|
|
1230
1216
|
}
|
|
1231
1217
|
|
|
1218
|
+
declare enum GiftBondStatus {
|
|
1219
|
+
ACTIVE = "ACTIVE",
|
|
1220
|
+
INACTIVE = "INACTIVE",
|
|
1221
|
+
EXPIRED = "EXPIRED",
|
|
1222
|
+
CONSUMED = "CONSUMED"
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1232
1225
|
interface GiftBond {
|
|
1233
1226
|
id: number;
|
|
1234
1227
|
uuid: string;
|
|
@@ -1283,6 +1276,19 @@ interface ValidateCouponResponse {
|
|
|
1283
1276
|
};
|
|
1284
1277
|
}
|
|
1285
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
|
+
|
|
1286
1292
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1287
1293
|
|
|
1288
1294
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
@@ -2703,5 +2709,5 @@ declare class ZonePriceListComponent {
|
|
|
2703
2709
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2704
2710
|
}
|
|
2705
2711
|
|
|
2706
|
-
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 };
|
|
2707
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 };
|