tickera-angular-components 0.0.1-dev.74 → 0.0.1-dev.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/tickera-angular-components.mjs +338 -29
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/i18n/en.json +32 -1
- package/i18n/es.json +32 -1
- package/index.d.ts +126 -3
- package/package.json +1 -1
package/i18n/en.json
CHANGED
|
@@ -86,12 +86,43 @@
|
|
|
86
86
|
"datafono": "Datafono",
|
|
87
87
|
"internal_exchange": "Internal exchange",
|
|
88
88
|
"customer_exchange": "Customer exchange",
|
|
89
|
-
"mercado_pago": "Mercado Pago"
|
|
89
|
+
"mercado_pago": "Mercado Pago",
|
|
90
|
+
"mercadopago": "Mercado Pago",
|
|
91
|
+
"pse": "PSE",
|
|
92
|
+
"credit_card": "Credit card"
|
|
93
|
+
},
|
|
94
|
+
"transactionStatus": {
|
|
95
|
+
"PENDING": "Pending",
|
|
96
|
+
"APPROVED": "Approved",
|
|
97
|
+
"REJECTED": "Rejected",
|
|
98
|
+
"ERROR": "Error"
|
|
90
99
|
},
|
|
91
100
|
"itemType": {
|
|
92
101
|
"PRODUCT": "Product",
|
|
93
102
|
"TICKET": "Ticket",
|
|
94
103
|
"GIFT_BOND": "Gift bond"
|
|
104
|
+
},
|
|
105
|
+
"discountTypes": {
|
|
106
|
+
"gift_bond": "Product",
|
|
107
|
+
"corporate_bond": "Ticket",
|
|
108
|
+
"coupon": "Gift bond"
|
|
109
|
+
},
|
|
110
|
+
"transactionDetails": {
|
|
111
|
+
"title": "Transaction details",
|
|
112
|
+
"labels": {
|
|
113
|
+
"id": "ID",
|
|
114
|
+
"paymentMethod": "Payment method",
|
|
115
|
+
"status": "Status",
|
|
116
|
+
"amount": "Amount",
|
|
117
|
+
"currency": "Currency",
|
|
118
|
+
"gatewayId": "Transaction ID",
|
|
119
|
+
"createdAt": "Created at",
|
|
120
|
+
"updatedAt": "Last updated",
|
|
121
|
+
"gatewayResponse": "Gateway response"
|
|
122
|
+
},
|
|
123
|
+
"actions": {
|
|
124
|
+
"view": "View details"
|
|
125
|
+
}
|
|
95
126
|
}
|
|
96
127
|
}
|
|
97
128
|
}
|
package/i18n/es.json
CHANGED
|
@@ -86,12 +86,43 @@
|
|
|
86
86
|
"datafono": "Datafono",
|
|
87
87
|
"internal_exchange": "Cambio interno",
|
|
88
88
|
"customer_exchange": "Cambio cliente",
|
|
89
|
-
"mercado_pago": "Mercado Pago"
|
|
89
|
+
"mercado_pago": "Mercado Pago",
|
|
90
|
+
"mercadopago": "Mercado Pago",
|
|
91
|
+
"pse": "PSE",
|
|
92
|
+
"credit_card": "Tarjeta de crédito"
|
|
93
|
+
},
|
|
94
|
+
"transactionStatus": {
|
|
95
|
+
"PENDING": "Pendiente",
|
|
96
|
+
"APPROVED": "Aprobada",
|
|
97
|
+
"REJECTED": "Rechazada",
|
|
98
|
+
"ERROR": "Error"
|
|
90
99
|
},
|
|
91
100
|
"itemType": {
|
|
92
101
|
"PRODUCT": "Producto",
|
|
93
102
|
"TICKET": "Entrada",
|
|
94
103
|
"GIFT_BOND": "Bono de regalo"
|
|
104
|
+
},
|
|
105
|
+
"discountTypes": {
|
|
106
|
+
"gift_bond": "Bono de regalo",
|
|
107
|
+
"corporate_bond": "Bono corporativo",
|
|
108
|
+
"coupon": "Cupón de descuento"
|
|
109
|
+
},
|
|
110
|
+
"transactionDetails": {
|
|
111
|
+
"title": "Detalle de transacción",
|
|
112
|
+
"labels": {
|
|
113
|
+
"id": "ID",
|
|
114
|
+
"paymentMethod": "Medio de pago",
|
|
115
|
+
"status": "Estado",
|
|
116
|
+
"amount": "Valor",
|
|
117
|
+
"currency": "Moneda",
|
|
118
|
+
"gatewayId": "ID transacción",
|
|
119
|
+
"createdAt": "Fecha de creación",
|
|
120
|
+
"updatedAt": "Última actualización",
|
|
121
|
+
"gatewayResponse": "Respuesta del gateway"
|
|
122
|
+
},
|
|
123
|
+
"actions": {
|
|
124
|
+
"view": "Ver detalle"
|
|
125
|
+
}
|
|
95
126
|
}
|
|
96
127
|
}
|
|
97
128
|
}
|
package/index.d.ts
CHANGED
|
@@ -989,12 +989,29 @@ interface ValidateCorporateBondResponse {
|
|
|
989
989
|
statusCode: number;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
|
+
interface GiftBondImage {
|
|
993
|
+
id: number;
|
|
994
|
+
path: string;
|
|
995
|
+
full_url: string;
|
|
996
|
+
original_name: string;
|
|
997
|
+
extension: string;
|
|
998
|
+
size: number;
|
|
999
|
+
mime_type: string;
|
|
1000
|
+
width: number;
|
|
1001
|
+
height: number;
|
|
1002
|
+
is_featured: boolean;
|
|
1003
|
+
gift_bond_id: number;
|
|
1004
|
+
gift_bond: GiftBond;
|
|
1005
|
+
created_at: Date;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
992
1008
|
interface GiftBond extends Auditable {
|
|
993
1009
|
id: number;
|
|
994
1010
|
name: string;
|
|
995
1011
|
description?: string;
|
|
996
1012
|
status: GiftBondStatus;
|
|
997
1013
|
value: number;
|
|
1014
|
+
images?: GiftBondImage[];
|
|
998
1015
|
}
|
|
999
1016
|
|
|
1000
1017
|
interface GiftBondResponse {
|
|
@@ -1065,6 +1082,27 @@ interface Transaction extends Auditable {
|
|
|
1065
1082
|
order: Order;
|
|
1066
1083
|
}
|
|
1067
1084
|
|
|
1085
|
+
interface OrderBillingInfo {
|
|
1086
|
+
first_name: string;
|
|
1087
|
+
last_name: string;
|
|
1088
|
+
email: string;
|
|
1089
|
+
mobile: string;
|
|
1090
|
+
document_type: string;
|
|
1091
|
+
document_number: string;
|
|
1092
|
+
address: string;
|
|
1093
|
+
city_id: number;
|
|
1094
|
+
postal_code?: string;
|
|
1095
|
+
address_notes?: string;
|
|
1096
|
+
payment_method: PaymentMethod;
|
|
1097
|
+
terms_accepted: boolean;
|
|
1098
|
+
data_processing_accepted: boolean;
|
|
1099
|
+
comments?: string;
|
|
1100
|
+
products?: Array<{
|
|
1101
|
+
id: number;
|
|
1102
|
+
quantity: number;
|
|
1103
|
+
}>;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1068
1106
|
interface Order extends Auditable {
|
|
1069
1107
|
id: number;
|
|
1070
1108
|
uuid: string;
|
|
@@ -1090,7 +1128,7 @@ interface Order extends Auditable {
|
|
|
1090
1128
|
payment_method: PaymentMethod | null;
|
|
1091
1129
|
terms_accepted: boolean;
|
|
1092
1130
|
data_processing_accepted: boolean;
|
|
1093
|
-
billing_info:
|
|
1131
|
+
billing_info: OrderBillingInfo | null;
|
|
1094
1132
|
corporate_bond_code_snapshot: Record<string, any> | null;
|
|
1095
1133
|
gift_bond_snapshot: Record<string, any> | null;
|
|
1096
1134
|
corporate_bond_code: CorporateBondCode | null;
|
|
@@ -1499,6 +1537,14 @@ declare const ORDER_ITEM_TYPES_COLORS: Record<OrderItemType, {
|
|
|
1499
1537
|
text: string;
|
|
1500
1538
|
bg: string;
|
|
1501
1539
|
}>;
|
|
1540
|
+
declare const ORDER_DISCOUNT_COLORS: Record<string, {
|
|
1541
|
+
text: string;
|
|
1542
|
+
bg: string;
|
|
1543
|
+
}>;
|
|
1544
|
+
declare const TRANSACTION_STATUS_COLORS: Record<TransactionStatus, {
|
|
1545
|
+
text: string;
|
|
1546
|
+
bg: string;
|
|
1547
|
+
}>;
|
|
1502
1548
|
|
|
1503
1549
|
declare const TICKET_MAP_LAST_TICKETS_LIMIT = 10;
|
|
1504
1550
|
declare const TICKET_ELEMENT_TYPES: RoomMapElementType[];
|
|
@@ -1550,6 +1596,17 @@ declare const SHOW_TYPE_COLORS: Record<ShowType, {
|
|
|
1550
1596
|
|
|
1551
1597
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1552
1598
|
|
|
1599
|
+
type OrderDiscountType = 'coupon' | 'corporate_bond' | 'gift_bond';
|
|
1600
|
+
interface OrderDiscountInfo {
|
|
1601
|
+
type: OrderDiscountType | null;
|
|
1602
|
+
code: string | null;
|
|
1603
|
+
name: string | null;
|
|
1604
|
+
value: number;
|
|
1605
|
+
discountType: 'percentage' | 'fixed' | null;
|
|
1606
|
+
icon: string;
|
|
1607
|
+
}
|
|
1608
|
+
declare function getOrderDiscount(order: Order): OrderDiscountInfo;
|
|
1609
|
+
|
|
1553
1610
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
1554
1611
|
|
|
1555
1612
|
declare const transformImageToFile: (image: ShowImage | VenueImage) => UploadedFile;
|
|
@@ -1911,6 +1968,16 @@ declare class FeedbackModalService {
|
|
|
1911
1968
|
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1912
1969
|
}
|
|
1913
1970
|
|
|
1971
|
+
declare class OrderTransactionDetailsModalService {
|
|
1972
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1973
|
+
transaction: WritableSignal<Transaction | null>;
|
|
1974
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1975
|
+
open(transaction: Transaction): void;
|
|
1976
|
+
close(): void;
|
|
1977
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionDetailsModalService, never>;
|
|
1978
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrderTransactionDetailsModalService>;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1914
1981
|
declare class PerformanceBookingDataService {
|
|
1915
1982
|
private _show;
|
|
1916
1983
|
private _performance;
|
|
@@ -3415,6 +3482,62 @@ declare class OrderItemsComponent {
|
|
|
3415
3482
|
static ɵcmp: i0.ɵɵComponentDeclaration<OrderItemsComponent, "order-items", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3416
3483
|
}
|
|
3417
3484
|
|
|
3485
|
+
declare class OrderDiscountAppliedComponent {
|
|
3486
|
+
order: Order;
|
|
3487
|
+
protected get discountInfo(): OrderDiscountInfo;
|
|
3488
|
+
protected get hasDiscount(): boolean;
|
|
3489
|
+
protected get discountPct(): number | null;
|
|
3490
|
+
protected get badgeColors(): {
|
|
3491
|
+
text: string;
|
|
3492
|
+
bg: string;
|
|
3493
|
+
};
|
|
3494
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderDiscountAppliedComponent, never>;
|
|
3495
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderDiscountAppliedComponent, "order-discount-applied", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
interface BillingField {
|
|
3499
|
+
label: string;
|
|
3500
|
+
value: string | number | null;
|
|
3501
|
+
}
|
|
3502
|
+
declare class OrderBillingInfoComponent {
|
|
3503
|
+
order: Order;
|
|
3504
|
+
protected get fields(): BillingField[];
|
|
3505
|
+
protected get hasFields(): boolean;
|
|
3506
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderBillingInfoComponent, never>;
|
|
3507
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderBillingInfoComponent, "order-billing-info", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3508
|
+
}
|
|
3509
|
+
|
|
3510
|
+
declare class OrderTransactionsComponent {
|
|
3511
|
+
private transactionDetailsModalService;
|
|
3512
|
+
order: Order;
|
|
3513
|
+
constructor(transactionDetailsModalService: OrderTransactionDetailsModalService);
|
|
3514
|
+
protected get transactions(): Transaction[];
|
|
3515
|
+
protected get hasTransactions(): boolean;
|
|
3516
|
+
protected get txColors(): Record<string, {
|
|
3517
|
+
text: string;
|
|
3518
|
+
bg: string;
|
|
3519
|
+
}>;
|
|
3520
|
+
protected openTransaction(transaction: Transaction): void;
|
|
3521
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionsComponent, never>;
|
|
3522
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderTransactionsComponent, "order-transactions", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
declare class OrderTransactionDetailsModalComponent {
|
|
3526
|
+
private modalService;
|
|
3527
|
+
isOpen: WritableSignal<boolean> | null;
|
|
3528
|
+
transaction: Transaction | null;
|
|
3529
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
3530
|
+
get selectedTransaction(): WritableSignal<Transaction | null>;
|
|
3531
|
+
protected get txColors(): Record<TransactionStatus, {
|
|
3532
|
+
text: string;
|
|
3533
|
+
bg: string;
|
|
3534
|
+
}>;
|
|
3535
|
+
protected get gatewayResponse(): string;
|
|
3536
|
+
onClose(): void;
|
|
3537
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrderTransactionDetailsModalComponent, never>;
|
|
3538
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderTransactionDetailsModalComponent, "order-transaction-details-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "transaction": { "alias": "transaction"; "required": false; }; }, {}, never, never, true, never>;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3418
3541
|
declare class TicketQrComponent implements OnInit, OnDestroy {
|
|
3419
3542
|
private ticketQrService;
|
|
3420
3543
|
ticketUuid: string;
|
|
@@ -3450,5 +3573,5 @@ declare class TicketQrModalComponent {
|
|
|
3450
3573
|
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrModalComponent, "ticket-qr-modal", never, {}, {}, never, never, true, never>;
|
|
3451
3574
|
}
|
|
3452
3575
|
|
|
3453
|
-
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppBadgeComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, ConfirmationOrderModalComponent, ConfirmationOrderModalService, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CreatorType, CustomerSelectComponent, CustomerService, DEFAULT_STAGE_CONFIG, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondPurchaseStatus, GiftBondStatus, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MinTodayValidator, MustMatchValidator, ORDER_ITEM_TYPES_COLORS, ORDER_STATUS_COLORS, OrderInformationComponent, OrderItemType, OrderItemTypeBadgeComponent, OrderItemsComponent, OrderStatus, OrderStatusBadgeComponent, 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, PaymentMethod, 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, SHOW_TYPE_COLORS, STATE_API_ENDPOINTS, SeatSelectionEmptySummaryComponent, SeatSelectionSummaryComponent, SeatSelectionSummaryItemComponent, SelectedDiscountCardType, ShowCardComponent, ShowCardSkeletonComponent, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowType, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_LAST_TICKETS_LIMIT, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TickeraTranslocoLoader, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketQrComponent, TicketQrModalComponent, TicketQrModalService, TicketQrService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, TransactionStatus, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, drawChairIcon, drawHappyFace, drawRoundedRect, drawWheelchairIcon, findElementAtPosition, findTicketAtPosition, formatCitiesResponseToSelect, generateExitScene, generateHallwayScene, generateProductionAreaScene, generateSeatBlockScene, generateSeatBlockTicketScene, generateStageScene, generateStairScene, generateTableScene, generateTableTicketScene, generateUnavailableSpaceScene, generateZoneScene, getBrowserLanguage, getCustomerFullname, getItemTypeIcon, getStoredLanguage, numberToLetter, parseJsonToFormDataAdvanced, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, tintColor, transformImageToFile };
|
|
3454
|
-
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, BadgeSize, 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, GiftBondPurchase, GiftBondPurchaseResponse, GiftBondPurchasesResponse, 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, QrTokenData, QrTokenResponse, RecentOrder, RecentRoomMap, ReservePerformanceDto, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, SelectedDiscountCard, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, TicketMapSeatPosition, TicketMapTableChairPosition, TicketMapTooltipData, TicketMapZoneQuantityState, TicketMapZoomConfig, Transaction, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|
|
3576
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppBadgeComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, ConfirmationOrderModalComponent, ConfirmationOrderModalService, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CreatorType, CustomerSelectComponent, CustomerService, DEFAULT_STAGE_CONFIG, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondPurchaseStatus, GiftBondStatus, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MinTodayValidator, MustMatchValidator, ORDER_DISCOUNT_COLORS, ORDER_ITEM_TYPES_COLORS, ORDER_STATUS_COLORS, OrderBillingInfoComponent, OrderDiscountAppliedComponent, OrderInformationComponent, OrderItemType, OrderItemTypeBadgeComponent, OrderItemsComponent, OrderStatus, OrderStatusBadgeComponent, OrderTransactionDetailsModalComponent, OrderTransactionDetailsModalService, OrderTransactionsComponent, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PaymentMethod, PerformanceBookingDataService, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketMapComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, SHOW_TYPE_COLORS, STATE_API_ENDPOINTS, SeatSelectionEmptySummaryComponent, SeatSelectionSummaryComponent, SeatSelectionSummaryItemComponent, SelectedDiscountCardType, ShowCardComponent, ShowCardSkeletonComponent, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowType, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_LAST_TICKETS_LIMIT, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TRANSACTION_STATUS_COLORS, TickeraTranslocoLoader, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketQrComponent, TicketQrModalComponent, TicketQrModalService, TicketQrService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, TransactionStatus, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, drawChairIcon, drawHappyFace, drawRoundedRect, drawWheelchairIcon, findElementAtPosition, findTicketAtPosition, formatCitiesResponseToSelect, generateExitScene, generateHallwayScene, generateProductionAreaScene, generateSeatBlockScene, generateSeatBlockTicketScene, generateStageScene, generateStairScene, generateTableScene, generateTableTicketScene, generateUnavailableSpaceScene, generateZoneScene, getBrowserLanguage, getCustomerFullname, getItemTypeIcon, getOrderDiscount, getStoredLanguage, numberToLetter, parseJsonToFormDataAdvanced, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, tintColor, transformImageToFile };
|
|
3577
|
+
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, BadgeSize, CitiesResponse, City, CityResponse, CorporateBond, CorporateBondCode, CorporateBondResponse, CountriesResponse, Country, CountryResponse, Coupon, CouponResponse, Customer, CustomerResponse, CustomersResponse, DailyPerformanceHall, DailyPerformanceItem, DailyPerformancePriceZone, DailyPerformanceShow, DailyPerformanceVenue, DailyPerformancesResponse, DeleteConfirmationOpen, DragDropEvent, DynamicTableHeader, ElementPropertiesTab, ElementRenderData, FeedbackModalElement, FeedbackModalType, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondImage, GiftBondPurchase, GiftBondPurchaseResponse, GiftBondPurchasesResponse, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, HallFloorOption, KonvaShapeConfig, ModalSize, NumerationConfig, Order, OrderBillingInfo, OrderDiscountInfo, OrderDiscountType, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductCategoriesResponse, ProductCategory, ProductCategoryResponse, ProductImage, ProductResponse, ProductTag, ProductTagResponse, ProductTagsResponse, ProductTaxonomy, ProductType, ProductTypeResponse, ProductTypesResponse, ProductsResponseInterface, QrTokenData, QrTokenResponse, RecentOrder, RecentRoomMap, ReservePerformanceDto, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, SelectedDiscountCard, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, TicketMapSeatPosition, TicketMapTableChairPosition, TicketMapTooltipData, TicketMapZoneQuantityState, TicketMapZoomConfig, Transaction, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|