tickera-angular-components 0.0.1-dev.23 → 0.0.1-dev.25
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type, OnInit, ElementRef } from '@angular/core';
|
|
3
3
|
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject } from 'rxjs';
|
|
@@ -203,9 +203,11 @@ declare enum CorporateBondStatus {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
declare enum PerformanceStatus {
|
|
206
|
-
|
|
206
|
+
SCHEDULED = "scheduled",
|
|
207
|
+
OPEN = "open",
|
|
208
|
+
CLOSED = "closed",
|
|
207
209
|
CANCELLED = "cancelled",
|
|
208
|
-
|
|
210
|
+
COMPLETED = "completed",
|
|
209
211
|
POSTPONED = "postponed"
|
|
210
212
|
}
|
|
211
213
|
|
|
@@ -1324,14 +1326,22 @@ declare class ToastService {
|
|
|
1324
1326
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1325
1327
|
}
|
|
1326
1328
|
|
|
1327
|
-
declare class
|
|
1328
|
-
|
|
1329
|
-
isOpen: WritableSignal<boolean>;
|
|
1329
|
+
declare class BaseModalService {
|
|
1330
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1330
1331
|
get modalIsOpen(): WritableSignal<boolean>;
|
|
1331
|
-
open(
|
|
1332
|
+
open(): void;
|
|
1332
1333
|
close(): void;
|
|
1333
|
-
|
|
1334
|
-
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1337
|
+
declare class FeedbackModalService extends BaseModalService {
|
|
1338
|
+
readonly type: WritableSignal<FeedbackModalType>;
|
|
1339
|
+
readonly title: WritableSignal<string>;
|
|
1340
|
+
readonly message: WritableSignal<string>;
|
|
1341
|
+
openFeedback(type: FeedbackModalType, title: string, message: string): void;
|
|
1342
|
+
close(): void;
|
|
1343
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1344
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1335
1345
|
}
|
|
1336
1346
|
|
|
1337
1347
|
declare class DeleteConfirmationService {
|
|
@@ -1607,13 +1617,6 @@ declare class ProductService {
|
|
|
1607
1617
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1608
1618
|
}
|
|
1609
1619
|
|
|
1610
|
-
declare class BaseModalService {
|
|
1611
|
-
readonly isOpen: WritableSignal<boolean>;
|
|
1612
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1613
|
-
open(): void;
|
|
1614
|
-
close(): void;
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
1620
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1618
1621
|
|
|
1619
1622
|
declare class AppButtonComponent {
|
|
@@ -1658,15 +1661,109 @@ declare class AppAlertComponent {
|
|
|
1658
1661
|
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>;
|
|
1659
1662
|
}
|
|
1660
1663
|
|
|
1661
|
-
declare class
|
|
1662
|
-
private
|
|
1663
|
-
|
|
1664
|
+
declare class LoadingFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1665
|
+
private feedbackModalService;
|
|
1666
|
+
autoClose: boolean;
|
|
1667
|
+
autoCloseDuration: number;
|
|
1668
|
+
showHeader: boolean;
|
|
1669
|
+
showCloseButton: boolean;
|
|
1670
|
+
showTitle: boolean;
|
|
1671
|
+
private autoCloseTimeout;
|
|
1672
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1673
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1674
|
+
get title(): i0.WritableSignal<string>;
|
|
1675
|
+
get message(): i0.WritableSignal<string>;
|
|
1676
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1677
|
+
ngOnDestroy(): void;
|
|
1678
|
+
closeModal(): void;
|
|
1679
|
+
private scheduleAutoClose;
|
|
1680
|
+
private clearAutoClose;
|
|
1681
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingFeedbackModalComponent, never>;
|
|
1682
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingFeedbackModalComponent, "loading-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
declare class SuccessFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1686
|
+
private feedbackModalService;
|
|
1687
|
+
autoClose: boolean;
|
|
1688
|
+
autoCloseDuration: number;
|
|
1689
|
+
showHeader: boolean;
|
|
1690
|
+
showCloseButton: boolean;
|
|
1691
|
+
showTitle: boolean;
|
|
1692
|
+
private autoCloseTimeout;
|
|
1693
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1694
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1695
|
+
get title(): i0.WritableSignal<string>;
|
|
1696
|
+
get message(): i0.WritableSignal<string>;
|
|
1697
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1698
|
+
ngOnDestroy(): void;
|
|
1699
|
+
closeModal(): void;
|
|
1700
|
+
private scheduleAutoClose;
|
|
1701
|
+
private clearAutoClose;
|
|
1702
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuccessFeedbackModalComponent, never>;
|
|
1703
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuccessFeedbackModalComponent, "success-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
declare class InfoFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1707
|
+
private feedbackModalService;
|
|
1708
|
+
autoClose: boolean;
|
|
1709
|
+
autoCloseDuration: number;
|
|
1710
|
+
showHeader: boolean;
|
|
1711
|
+
showCloseButton: boolean;
|
|
1712
|
+
showTitle: boolean;
|
|
1713
|
+
private autoCloseTimeout;
|
|
1714
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1715
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1716
|
+
get title(): i0.WritableSignal<string>;
|
|
1717
|
+
get message(): i0.WritableSignal<string>;
|
|
1718
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1719
|
+
ngOnDestroy(): void;
|
|
1720
|
+
closeModal(): void;
|
|
1721
|
+
private scheduleAutoClose;
|
|
1722
|
+
private clearAutoClose;
|
|
1723
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoFeedbackModalComponent, never>;
|
|
1724
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoFeedbackModalComponent, "info-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
declare class WarningFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1728
|
+
private feedbackModalService;
|
|
1729
|
+
autoClose: boolean;
|
|
1730
|
+
autoCloseDuration: number;
|
|
1731
|
+
showHeader: boolean;
|
|
1732
|
+
showCloseButton: boolean;
|
|
1733
|
+
showTitle: boolean;
|
|
1734
|
+
private autoCloseTimeout;
|
|
1735
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1664
1736
|
get isOpen(): i0.WritableSignal<boolean>;
|
|
1665
1737
|
get title(): i0.WritableSignal<string>;
|
|
1738
|
+
get message(): i0.WritableSignal<string>;
|
|
1739
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1740
|
+
ngOnDestroy(): void;
|
|
1666
1741
|
closeModal(): void;
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
static
|
|
1742
|
+
private scheduleAutoClose;
|
|
1743
|
+
private clearAutoClose;
|
|
1744
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WarningFeedbackModalComponent, never>;
|
|
1745
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WarningFeedbackModalComponent, "warning-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
declare class ErrorFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1749
|
+
private feedbackModalService;
|
|
1750
|
+
autoClose: boolean;
|
|
1751
|
+
autoCloseDuration: number;
|
|
1752
|
+
showHeader: boolean;
|
|
1753
|
+
showCloseButton: boolean;
|
|
1754
|
+
showTitle: boolean;
|
|
1755
|
+
private autoCloseTimeout;
|
|
1756
|
+
constructor(feedbackModalService: FeedbackModalService);
|
|
1757
|
+
get isOpen(): i0.WritableSignal<boolean>;
|
|
1758
|
+
get title(): i0.WritableSignal<string>;
|
|
1759
|
+
get message(): i0.WritableSignal<string>;
|
|
1760
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1761
|
+
ngOnDestroy(): void;
|
|
1762
|
+
closeModal(): void;
|
|
1763
|
+
private scheduleAutoClose;
|
|
1764
|
+
private clearAutoClose;
|
|
1765
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorFeedbackModalComponent, never>;
|
|
1766
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorFeedbackModalComponent, "error-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1670
1767
|
}
|
|
1671
1768
|
|
|
1672
1769
|
declare class DeleteConfirmationComponent {
|
|
@@ -1689,13 +1786,16 @@ declare class DeleteConfirmationComponent {
|
|
|
1689
1786
|
declare class AppModalComponent {
|
|
1690
1787
|
title: string;
|
|
1691
1788
|
disableClose: boolean;
|
|
1789
|
+
showHeader: boolean;
|
|
1790
|
+
showCloseButton: boolean;
|
|
1791
|
+
showTitle: boolean;
|
|
1692
1792
|
isOpen: WritableSignal<boolean>;
|
|
1693
1793
|
size: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
1694
1794
|
closeModal: EventEmitter<void>;
|
|
1695
1795
|
onCloseModal(): void;
|
|
1696
1796
|
onKeydownEscape(): void;
|
|
1697
1797
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
1698
|
-
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>;
|
|
1798
|
+
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>;
|
|
1699
1799
|
}
|
|
1700
1800
|
|
|
1701
1801
|
declare class AuditInformationComponent {
|
|
@@ -2605,5 +2705,5 @@ declare class ZonePriceListComponent {
|
|
|
2605
2705
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2606
2706
|
}
|
|
2607
2707
|
|
|
2608
|
-
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, FORM_ERROR_MESSAGES, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus,
|
|
2609
|
-
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, 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 };
|
|
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 };
|
|
2709
|
+
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 };
|