tickera-angular-components 0.0.1-dev.20 → 0.0.1-dev.21
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
|
@@ -65,10 +65,10 @@ declare const COUNTRY_API_ENDPOINTS: {
|
|
|
65
65
|
delete: (id: number) => string;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
declare const
|
|
68
|
+
declare const CUSTOMERS_API_ROUTES: {
|
|
69
69
|
findAll: string;
|
|
70
70
|
create: string;
|
|
71
|
-
|
|
71
|
+
findOne: (id: number) => string;
|
|
72
72
|
update: (id: number) => string;
|
|
73
73
|
delete: (id: number) => string;
|
|
74
74
|
};
|
|
@@ -90,26 +90,6 @@ declare const PERFORMANCES_API_ROUTES: {
|
|
|
90
90
|
publicAvailablePerformances: string;
|
|
91
91
|
};
|
|
92
92
|
|
|
93
|
-
declare const SHOWS_API_ROUTES: {
|
|
94
|
-
findAll: string;
|
|
95
|
-
create: string;
|
|
96
|
-
findOneById: (id: number) => string;
|
|
97
|
-
update: (id: number) => string;
|
|
98
|
-
delete: (id: number) => string;
|
|
99
|
-
getImages: (id: number) => string;
|
|
100
|
-
uploadGallery: (id: number) => string;
|
|
101
|
-
deleteOneImage: (showId: number, imageId: number) => string;
|
|
102
|
-
publicAvailablePerformances: string;
|
|
103
|
-
};
|
|
104
|
-
|
|
105
|
-
declare const CUSTOMERS_API_ROUTES: {
|
|
106
|
-
findAll: string;
|
|
107
|
-
create: string;
|
|
108
|
-
findOne: (id: number) => string;
|
|
109
|
-
update: (id: number) => string;
|
|
110
|
-
delete: (id: number) => string;
|
|
111
|
-
};
|
|
112
|
-
|
|
113
93
|
declare const PRICE_ZONES_API_ROUTES: {
|
|
114
94
|
FIND_ALL: string;
|
|
115
95
|
CREATE: string;
|
|
@@ -120,18 +100,7 @@ declare const PRICE_ZONES_API_ROUTES: {
|
|
|
120
100
|
duplicate: (id: number) => string;
|
|
121
101
|
};
|
|
122
102
|
|
|
123
|
-
declare const
|
|
124
|
-
findAll: string;
|
|
125
|
-
create: string;
|
|
126
|
-
findOneById: (id: number) => string;
|
|
127
|
-
update: (id: number) => string;
|
|
128
|
-
delete: (id: number) => string;
|
|
129
|
-
getGallery: (id: number) => string;
|
|
130
|
-
uploadGallery: (id: number) => string;
|
|
131
|
-
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
declare const PRODUCT_TYPES_API_ROUTES: {
|
|
103
|
+
declare const PRODUCT_CATEGORIES_API_ROUTES: {
|
|
135
104
|
FIND_ALL: string;
|
|
136
105
|
CREATE: string;
|
|
137
106
|
findById: (id: number) => string;
|
|
@@ -147,7 +116,7 @@ declare const PRODUCT_TAGS_API_ROUTES: {
|
|
|
147
116
|
delete: (id: number) => string;
|
|
148
117
|
};
|
|
149
118
|
|
|
150
|
-
declare const
|
|
119
|
+
declare const PRODUCT_TYPES_API_ROUTES: {
|
|
151
120
|
FIND_ALL: string;
|
|
152
121
|
CREATE: string;
|
|
153
122
|
findById: (id: number) => string;
|
|
@@ -166,6 +135,37 @@ declare const PRODUCTS_API_ROUTES: {
|
|
|
166
135
|
deleteOneImage: (productId: number, imageId: number) => string;
|
|
167
136
|
};
|
|
168
137
|
|
|
138
|
+
declare const SHOWS_API_ROUTES: {
|
|
139
|
+
findAll: string;
|
|
140
|
+
create: string;
|
|
141
|
+
findOneById: (id: number) => string;
|
|
142
|
+
update: (id: number) => string;
|
|
143
|
+
delete: (id: number) => string;
|
|
144
|
+
getImages: (id: number) => string;
|
|
145
|
+
uploadGallery: (id: number) => string;
|
|
146
|
+
deleteOneImage: (showId: number, imageId: number) => string;
|
|
147
|
+
publicAvailablePerformances: string;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
declare const STATE_API_ENDPOINTS: {
|
|
151
|
+
findAll: string;
|
|
152
|
+
create: string;
|
|
153
|
+
findById: (id: number) => string;
|
|
154
|
+
update: (id: number) => string;
|
|
155
|
+
delete: (id: number) => string;
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
declare const VENUES_API_ROUTES: {
|
|
159
|
+
findAll: string;
|
|
160
|
+
create: string;
|
|
161
|
+
findOneById: (id: number) => string;
|
|
162
|
+
update: (id: number) => string;
|
|
163
|
+
delete: (id: number) => string;
|
|
164
|
+
getGallery: (id: number) => string;
|
|
165
|
+
uploadGallery: (id: number) => string;
|
|
166
|
+
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
167
|
+
};
|
|
168
|
+
|
|
169
169
|
declare enum FileType {
|
|
170
170
|
IMAGE = "image",
|
|
171
171
|
PDF = "pdf",
|
|
@@ -331,6 +331,8 @@ type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZo
|
|
|
331
331
|
|
|
332
332
|
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
333
333
|
|
|
334
|
+
type ShowType = 'play' | 'musical' | 'concert' | 'dance' | 'opera' | 'comedy' | 'other';
|
|
335
|
+
|
|
334
336
|
interface SelectOption {
|
|
335
337
|
value: any;
|
|
336
338
|
label: string;
|
|
@@ -582,7 +584,12 @@ interface CustomersResponse {
|
|
|
582
584
|
message: string;
|
|
583
585
|
}
|
|
584
586
|
|
|
585
|
-
|
|
587
|
+
interface FetchShowsParams {
|
|
588
|
+
page?: number;
|
|
589
|
+
limit?: number;
|
|
590
|
+
search?: string;
|
|
591
|
+
date?: string;
|
|
592
|
+
}
|
|
586
593
|
|
|
587
594
|
interface ShowImage {
|
|
588
595
|
id: number;
|
|
@@ -633,11 +640,46 @@ interface ShowsResponseInterface {
|
|
|
633
640
|
message: string;
|
|
634
641
|
}
|
|
635
642
|
|
|
636
|
-
interface
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
643
|
+
interface ShowCategory extends Auditable {
|
|
644
|
+
id: string;
|
|
645
|
+
name: string;
|
|
646
|
+
slug: string;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
interface ShowCategoriesResponse {
|
|
650
|
+
statusCode: number;
|
|
651
|
+
data: {
|
|
652
|
+
categories: ShowCategory[];
|
|
653
|
+
total: number;
|
|
654
|
+
};
|
|
655
|
+
message: string;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
interface ShowCategoryResponse {
|
|
659
|
+
statusCode: number;
|
|
660
|
+
data: ShowCategory;
|
|
661
|
+
message: string;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
interface ShowGender extends Auditable {
|
|
665
|
+
id: number;
|
|
666
|
+
name: string;
|
|
667
|
+
slug: string;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
interface ShowGenderResponse {
|
|
671
|
+
statusCode: number;
|
|
672
|
+
data: ShowGender;
|
|
673
|
+
message: string;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
interface ShowGendersResponse {
|
|
677
|
+
statusCode: number;
|
|
678
|
+
data: {
|
|
679
|
+
genders: ShowGender[];
|
|
680
|
+
total: number;
|
|
681
|
+
};
|
|
682
|
+
message: string;
|
|
641
683
|
}
|
|
642
684
|
|
|
643
685
|
interface PriceZone {
|
|
@@ -2554,4 +2596,4 @@ declare class ZonePriceListComponent {
|
|
|
2554
2596
|
}
|
|
2555
2597
|
|
|
2556
2598
|
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, 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, LanguageSwitcherComponent, LoadingModalService, LoadingmModalComponent, 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, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
2557
|
-
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, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|
|
2599
|
+
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 };
|