tickera-angular-components 0.0.1-dev.2 → 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/assets/fonts/open-sans-latin-300-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-300-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-400-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-400-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-500-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-500-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-600-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-600-normal.woff2 +0 -0
- package/assets/fonts/open-sans-latin-700-italic.woff2 +0 -0
- package/assets/fonts/open-sans-latin-700-normal.woff2 +0 -0
- package/assets/fonts/remixicon.woff2 +0 -0
- package/fesm2022/tickera-angular-components.mjs +576 -326
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/i18n/en.json +45 -0
- package/i18n/es.json +45 -0
- package/index.d.ts +359 -100
- package/package.json +1 -1
- package/tickera.styles.css +1 -0
package/index.d.ts
CHANGED
|
@@ -1,33 +1,31 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, EnvironmentProviders, WritableSignal, EventEmitter, Injector, Type, OnInit, OnDestroy, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
-
import {
|
|
4
|
-
import { HttpClient, HttpInterceptorFn } from '@angular/common/http';
|
|
3
|
+
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
5
4
|
import * as rxjs from 'rxjs';
|
|
6
5
|
import { Observable, Subject } from 'rxjs';
|
|
7
|
-
import {
|
|
6
|
+
import { ValidatorFn, FormGroup, FormBuilder, ControlValueAccessor, NgControl, Validator, AbstractControl, FormControl } from '@angular/forms';
|
|
7
|
+
import { HttpClient, HttpInterceptorFn } from '@angular/common/http';
|
|
8
8
|
import { Toolbar, Editor } from 'ngx-editor';
|
|
9
9
|
import { Router } from '@angular/router';
|
|
10
10
|
|
|
11
11
|
interface TickeraComponentsConfig {
|
|
12
12
|
apiUrl: string;
|
|
13
13
|
accessTokenKey?: string;
|
|
14
|
+
defaultLang?: string;
|
|
15
|
+
availableLangs?: string[];
|
|
14
16
|
}
|
|
15
17
|
declare const TICKERA_COMPONENTS_CONFIG: InjectionToken<TickeraComponentsConfig>;
|
|
16
18
|
declare function provideTickeraComponents(config: TickeraComponentsConfig): EnvironmentProviders;
|
|
17
19
|
|
|
18
|
-
declare
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
declare
|
|
26
|
-
|
|
27
|
-
sm: string;
|
|
28
|
-
md: string;
|
|
29
|
-
lg: string;
|
|
30
|
-
};
|
|
20
|
+
declare class TickeraTranslocoLoader implements TranslocoLoader {
|
|
21
|
+
getTranslation(lang: string): Observable<Record<string, unknown>>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare function getStoredLanguage(): string;
|
|
25
|
+
declare function setStoredLanguage(lang: string): void;
|
|
26
|
+
declare function getBrowserLanguage(): string;
|
|
27
|
+
declare function resolveLanguage(): string;
|
|
28
|
+
|
|
31
29
|
declare const ALERT_ICONS: {
|
|
32
30
|
success: string;
|
|
33
31
|
error: string;
|
|
@@ -35,20 +33,9 @@ declare const ALERT_ICONS: {
|
|
|
35
33
|
info: string;
|
|
36
34
|
};
|
|
37
35
|
|
|
38
|
-
declare const BUTTON_VARIANT_CLASSES:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
terciary: string;
|
|
42
|
-
success: string;
|
|
43
|
-
transparent: string;
|
|
44
|
-
};
|
|
45
|
-
declare const BASE_BUTTON_CLASSES: string;
|
|
46
|
-
declare const BUTTON_SIZES_CLASSES: {
|
|
47
|
-
xs: string;
|
|
48
|
-
sm: string;
|
|
49
|
-
md: string;
|
|
50
|
-
lg: string;
|
|
51
|
-
};
|
|
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>;
|
|
52
39
|
|
|
53
40
|
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
54
41
|
|
|
@@ -78,10 +65,10 @@ declare const COUNTRY_API_ENDPOINTS: {
|
|
|
78
65
|
delete: (id: number) => string;
|
|
79
66
|
};
|
|
80
67
|
|
|
81
|
-
declare const
|
|
68
|
+
declare const CUSTOMERS_API_ROUTES: {
|
|
82
69
|
findAll: string;
|
|
83
70
|
create: string;
|
|
84
|
-
|
|
71
|
+
findOne: (id: number) => string;
|
|
85
72
|
update: (id: number) => string;
|
|
86
73
|
delete: (id: number) => string;
|
|
87
74
|
};
|
|
@@ -103,12 +90,49 @@ declare const PERFORMANCES_API_ROUTES: {
|
|
|
103
90
|
publicAvailablePerformances: string;
|
|
104
91
|
};
|
|
105
92
|
|
|
93
|
+
declare const PRICE_ZONES_API_ROUTES: {
|
|
94
|
+
FIND_ALL: string;
|
|
95
|
+
CREATE: string;
|
|
96
|
+
findOneById: (id: number) => string;
|
|
97
|
+
update: (id: number) => string;
|
|
98
|
+
delete: (id: number) => string;
|
|
99
|
+
updateElements: (id: number) => string;
|
|
100
|
+
duplicate: (id: number) => string;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
declare const PRODUCT_CATEGORIES_API_ROUTES: {
|
|
104
|
+
FIND_ALL: string;
|
|
105
|
+
CREATE: string;
|
|
106
|
+
findById: (id: number) => string;
|
|
107
|
+
update: (id: number) => string;
|
|
108
|
+
delete: (id: number) => string;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
declare const PRODUCT_TAGS_API_ROUTES: {
|
|
112
|
+
FIND_ALL: string;
|
|
113
|
+
CREATE: string;
|
|
114
|
+
findById: (id: number) => string;
|
|
115
|
+
update: (id: number) => string;
|
|
116
|
+
delete: (id: number) => string;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
declare const PRODUCT_TYPES_API_ROUTES: {
|
|
120
|
+
FIND_ALL: string;
|
|
121
|
+
CREATE: string;
|
|
122
|
+
findById: (id: number) => string;
|
|
123
|
+
update: (id: number) => string;
|
|
124
|
+
delete: (id: number) => string;
|
|
125
|
+
};
|
|
126
|
+
|
|
106
127
|
declare const PRODUCTS_API_ROUTES: {
|
|
107
128
|
FIND_ALL: string;
|
|
108
129
|
CREATE: string;
|
|
109
130
|
findOneById: (id: number) => string;
|
|
110
131
|
update: (id: number) => string;
|
|
111
132
|
delete: (id: number) => string;
|
|
133
|
+
fetchImages: (id: number) => string;
|
|
134
|
+
uploadImages: (id: number) => string;
|
|
135
|
+
deleteOneImage: (productId: number, imageId: number) => string;
|
|
112
136
|
};
|
|
113
137
|
|
|
114
138
|
declare const SHOWS_API_ROUTES: {
|
|
@@ -123,22 +147,12 @@ declare const SHOWS_API_ROUTES: {
|
|
|
123
147
|
publicAvailablePerformances: string;
|
|
124
148
|
};
|
|
125
149
|
|
|
126
|
-
declare const
|
|
150
|
+
declare const STATE_API_ENDPOINTS: {
|
|
127
151
|
findAll: string;
|
|
128
152
|
create: string;
|
|
129
|
-
|
|
130
|
-
update: (id: number) => string;
|
|
131
|
-
delete: (id: number) => string;
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
declare const PRICE_ZONES_API_ROUTES: {
|
|
135
|
-
FIND_ALL: string;
|
|
136
|
-
CREATE: string;
|
|
137
|
-
findOneById: (id: number) => string;
|
|
153
|
+
findById: (id: number) => string;
|
|
138
154
|
update: (id: number) => string;
|
|
139
155
|
delete: (id: number) => string;
|
|
140
|
-
updateElements: (id: number) => string;
|
|
141
|
-
duplicate: (id: number) => string;
|
|
142
156
|
};
|
|
143
157
|
|
|
144
158
|
declare const VENUES_API_ROUTES: {
|
|
@@ -174,10 +188,18 @@ declare enum CouponDiscountType {
|
|
|
174
188
|
FIXED = "FIXED"
|
|
175
189
|
}
|
|
176
190
|
|
|
191
|
+
declare enum CouponStatus {
|
|
192
|
+
ACTIVE = "ACTIVE",
|
|
193
|
+
INACTIVE = "INACTIVE",
|
|
194
|
+
EXPIRED = "EXPIRED",
|
|
195
|
+
CONSUMED = "CONSUMED"
|
|
196
|
+
}
|
|
197
|
+
|
|
177
198
|
declare enum CorporateBondStatus {
|
|
178
199
|
ACTIVE = "ACTIVE",
|
|
179
200
|
INACTIVE = "INACTIVE",
|
|
180
|
-
EXPIRED = "EXPIRED"
|
|
201
|
+
EXPIRED = "EXPIRED",
|
|
202
|
+
CONSUMED = "CONSUMED"
|
|
181
203
|
}
|
|
182
204
|
|
|
183
205
|
declare enum PerformanceStatus {
|
|
@@ -214,16 +236,26 @@ declare enum RoomMapElementType {
|
|
|
214
236
|
HALLWAY = "hallway"
|
|
215
237
|
}
|
|
216
238
|
|
|
239
|
+
declare enum GiftBondStatus {
|
|
240
|
+
ACTIVE = "ACTIVE",
|
|
241
|
+
INACTIVE = "INACTIVE",
|
|
242
|
+
EXPIRED = "EXPIRED",
|
|
243
|
+
CONSUMED = "CONSUMED"
|
|
244
|
+
}
|
|
245
|
+
|
|
217
246
|
declare enum OrderItemType {
|
|
218
247
|
TICKET = "TICKET",
|
|
219
248
|
PRODUCT = "PRODUCT"
|
|
220
249
|
}
|
|
221
250
|
|
|
222
251
|
declare enum OrderStatus {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
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"
|
|
227
259
|
}
|
|
228
260
|
|
|
229
261
|
interface RoomMapPosition {
|
|
@@ -299,6 +331,8 @@ type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZo
|
|
|
299
331
|
|
|
300
332
|
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
301
333
|
|
|
334
|
+
type ShowType = 'play' | 'musical' | 'concert' | 'dance' | 'opera' | 'comedy' | 'other';
|
|
335
|
+
|
|
302
336
|
interface SelectOption {
|
|
303
337
|
value: any;
|
|
304
338
|
label: string;
|
|
@@ -550,7 +584,12 @@ interface CustomersResponse {
|
|
|
550
584
|
message: string;
|
|
551
585
|
}
|
|
552
586
|
|
|
553
|
-
|
|
587
|
+
interface FetchShowsParams {
|
|
588
|
+
page?: number;
|
|
589
|
+
limit?: number;
|
|
590
|
+
search?: string;
|
|
591
|
+
date?: string;
|
|
592
|
+
}
|
|
554
593
|
|
|
555
594
|
interface ShowImage {
|
|
556
595
|
id: number;
|
|
@@ -601,11 +640,46 @@ interface ShowsResponseInterface {
|
|
|
601
640
|
message: string;
|
|
602
641
|
}
|
|
603
642
|
|
|
604
|
-
interface
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
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;
|
|
609
683
|
}
|
|
610
684
|
|
|
611
685
|
interface PriceZone {
|
|
@@ -622,6 +696,108 @@ interface PriceZone {
|
|
|
622
696
|
updated_by: number;
|
|
623
697
|
}
|
|
624
698
|
|
|
699
|
+
interface FetchProductCategoriesParams {
|
|
700
|
+
name?: string;
|
|
701
|
+
slug?: string;
|
|
702
|
+
page?: number;
|
|
703
|
+
limit?: number;
|
|
704
|
+
search?: string;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
interface ProductCategory extends Auditable {
|
|
708
|
+
id: string;
|
|
709
|
+
name: string;
|
|
710
|
+
slug: string;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
interface ProductCategoriesResponse {
|
|
714
|
+
statusCode: number;
|
|
715
|
+
data: {
|
|
716
|
+
categories: ProductCategory[];
|
|
717
|
+
total: number;
|
|
718
|
+
};
|
|
719
|
+
message: string;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
interface ProductCategoryResponse {
|
|
723
|
+
statusCode: number;
|
|
724
|
+
data: ProductCategory;
|
|
725
|
+
message: string;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
interface FetchProductTagsParams {
|
|
729
|
+
name?: string;
|
|
730
|
+
slug?: string;
|
|
731
|
+
page?: number;
|
|
732
|
+
limit?: number;
|
|
733
|
+
search?: string;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
interface ProductTag extends Auditable {
|
|
737
|
+
id: string;
|
|
738
|
+
name: string;
|
|
739
|
+
slug: string;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
interface ProductTagResponse {
|
|
743
|
+
statusCode: number;
|
|
744
|
+
data: ProductTag;
|
|
745
|
+
message: string;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
interface ProductTagsResponse {
|
|
749
|
+
statusCode: number;
|
|
750
|
+
data: {
|
|
751
|
+
tags: ProductTag[];
|
|
752
|
+
total: number;
|
|
753
|
+
};
|
|
754
|
+
message: string;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
interface FetchProductTypesParams {
|
|
758
|
+
name?: string;
|
|
759
|
+
slug?: string;
|
|
760
|
+
page?: number;
|
|
761
|
+
limit?: number;
|
|
762
|
+
search?: string;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
interface ProductType extends Auditable {
|
|
766
|
+
id: string;
|
|
767
|
+
name: string;
|
|
768
|
+
slug: string;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
interface ProductTypeResponse {
|
|
772
|
+
statusCode: number;
|
|
773
|
+
data: ProductType;
|
|
774
|
+
message: string;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
interface ProductTypesResponse {
|
|
778
|
+
statusCode: number;
|
|
779
|
+
data: {
|
|
780
|
+
types: ProductType[];
|
|
781
|
+
total: number;
|
|
782
|
+
};
|
|
783
|
+
message: string;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
interface ProductImage {
|
|
787
|
+
id: number;
|
|
788
|
+
path: string;
|
|
789
|
+
full_url: string;
|
|
790
|
+
original_name: string;
|
|
791
|
+
extension: string;
|
|
792
|
+
size: number;
|
|
793
|
+
mime_type: string;
|
|
794
|
+
width: number;
|
|
795
|
+
height: number;
|
|
796
|
+
product_id: number;
|
|
797
|
+
product: Product;
|
|
798
|
+
created_at: Date;
|
|
799
|
+
}
|
|
800
|
+
|
|
625
801
|
interface Product extends Auditable {
|
|
626
802
|
id: number;
|
|
627
803
|
name: string;
|
|
@@ -634,10 +810,10 @@ interface Product extends Auditable {
|
|
|
634
810
|
is_limited_edition: boolean;
|
|
635
811
|
is_active: boolean;
|
|
636
812
|
deleted_at: Date | null;
|
|
637
|
-
categories?:
|
|
638
|
-
tags?:
|
|
639
|
-
types?:
|
|
640
|
-
images?:
|
|
813
|
+
categories?: ProductCategory[];
|
|
814
|
+
tags?: ProductTag[];
|
|
815
|
+
types?: ProductType[];
|
|
816
|
+
images?: ProductImage[];
|
|
641
817
|
}
|
|
642
818
|
|
|
643
819
|
interface NumerationConfig {
|
|
@@ -785,17 +961,16 @@ interface OrderItem {
|
|
|
785
961
|
interface Coupon extends Auditable {
|
|
786
962
|
id: number;
|
|
787
963
|
code: string;
|
|
964
|
+
billing_code: string;
|
|
788
965
|
description?: string;
|
|
789
966
|
discount_type: CouponDiscountType;
|
|
790
|
-
discount_type_string?: string;
|
|
791
967
|
discount_value: number;
|
|
792
|
-
discount_value_string?: string;
|
|
793
968
|
start_date: Date | null;
|
|
794
969
|
end_date: Date | null;
|
|
795
970
|
max_uses: number | null;
|
|
796
|
-
|
|
971
|
+
max_uses_per_customer?: number | null;
|
|
797
972
|
uses_count: number;
|
|
798
|
-
|
|
973
|
+
status: CouponStatus;
|
|
799
974
|
applicability_type: CouponApplicability;
|
|
800
975
|
applicable_customer_emails: string[] | null;
|
|
801
976
|
applicable_membership_types: string[] | null;
|
|
@@ -803,6 +978,8 @@ interface Coupon extends Auditable {
|
|
|
803
978
|
applicable_performance_ids?: number[];
|
|
804
979
|
applicable_price_zone_ids?: number[];
|
|
805
980
|
applies_to_service_fee?: boolean;
|
|
981
|
+
orders?: Order[];
|
|
982
|
+
customers?: Customer[];
|
|
806
983
|
}
|
|
807
984
|
|
|
808
985
|
interface CorporateBond {
|
|
@@ -1003,6 +1180,13 @@ interface ProductResponse {
|
|
|
1003
1180
|
message: string;
|
|
1004
1181
|
}
|
|
1005
1182
|
|
|
1183
|
+
interface ProductTaxonomy {
|
|
1184
|
+
id: string;
|
|
1185
|
+
name: string;
|
|
1186
|
+
slug: string;
|
|
1187
|
+
selected?: boolean;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1006
1190
|
interface ProductsResponseInterface {
|
|
1007
1191
|
statusCode: number;
|
|
1008
1192
|
data: {
|
|
@@ -1043,6 +1227,47 @@ interface FindAllPriceZoneParams {
|
|
|
1043
1227
|
limit?: number;
|
|
1044
1228
|
}
|
|
1045
1229
|
|
|
1230
|
+
interface GiftBond {
|
|
1231
|
+
id: number;
|
|
1232
|
+
uuid: string;
|
|
1233
|
+
name: string;
|
|
1234
|
+
description?: string;
|
|
1235
|
+
status: GiftBondStatus;
|
|
1236
|
+
value: number;
|
|
1237
|
+
customer: Customer;
|
|
1238
|
+
customer_id: number;
|
|
1239
|
+
created_at: Date;
|
|
1240
|
+
updated_at: Date;
|
|
1241
|
+
created_by: number;
|
|
1242
|
+
updated_by: number;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
interface GiftBondResponse {
|
|
1246
|
+
statusCode: number;
|
|
1247
|
+
data: GiftBond;
|
|
1248
|
+
message: string;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
interface GiftBondsResponse {
|
|
1252
|
+
statusCode: number;
|
|
1253
|
+
data: {
|
|
1254
|
+
gift_bonds: GiftBond[];
|
|
1255
|
+
total: number;
|
|
1256
|
+
};
|
|
1257
|
+
message: string;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
interface ValidateGiftBondResponse {
|
|
1261
|
+
data: {
|
|
1262
|
+
valid: boolean;
|
|
1263
|
+
message: string;
|
|
1264
|
+
code: string;
|
|
1265
|
+
bond?: GiftBond;
|
|
1266
|
+
};
|
|
1267
|
+
statusCode: number;
|
|
1268
|
+
message: string;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1046
1271
|
interface CouponResponse {
|
|
1047
1272
|
statusCode: number;
|
|
1048
1273
|
data: Coupon;
|
|
@@ -1235,25 +1460,6 @@ declare class PerformancesListEventsService {
|
|
|
1235
1460
|
static ɵprov: i0.ɵɵInjectableDeclaration<PerformancesListEventsService>;
|
|
1236
1461
|
}
|
|
1237
1462
|
|
|
1238
|
-
declare class ProductService {
|
|
1239
|
-
private apiService;
|
|
1240
|
-
private productsSubject;
|
|
1241
|
-
products$: Observable<Product[]>;
|
|
1242
|
-
constructor(apiService: ApiService);
|
|
1243
|
-
fetchProducts(page: number, search: string): Observable<ProductsResponseInterface>;
|
|
1244
|
-
loadProducts({ page, search }?: {
|
|
1245
|
-
page?: number;
|
|
1246
|
-
search?: string;
|
|
1247
|
-
}): void;
|
|
1248
|
-
getCurrentProducts(): Product[];
|
|
1249
|
-
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1250
|
-
createOne(data: Product): Observable<any>;
|
|
1251
|
-
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1252
|
-
deleteOne(id: number): Observable<any>;
|
|
1253
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1254
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
1463
|
declare class ShowService {
|
|
1258
1464
|
private apiService;
|
|
1259
1465
|
private showsSubject;
|
|
@@ -1334,6 +1540,71 @@ declare class PriceZoneFormModalService {
|
|
|
1334
1540
|
static ɵprov: i0.ɵɵInjectableDeclaration<PriceZoneFormModalService>;
|
|
1335
1541
|
}
|
|
1336
1542
|
|
|
1543
|
+
declare class ProductCategoryService {
|
|
1544
|
+
private apiService;
|
|
1545
|
+
constructor(apiService: ApiService);
|
|
1546
|
+
fetchCategories({ page, search, limit, }: FetchProductCategoriesParams): Observable<ProductCategoriesResponse>;
|
|
1547
|
+
fetchOneById(id: number): Observable<ProductCategoryResponse>;
|
|
1548
|
+
createOne(data: ProductCategory): Observable<any>;
|
|
1549
|
+
updateOne(id: number, data: ProductCategory): Observable<ProductCategoryResponse>;
|
|
1550
|
+
deleteOne(id: number): Observable<any>;
|
|
1551
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCategoryService, never>;
|
|
1552
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductCategoryService>;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
declare class ProductTagService {
|
|
1556
|
+
private apiService;
|
|
1557
|
+
constructor(apiService: ApiService);
|
|
1558
|
+
fetchTags({ page, search, limit }: FetchProductTagsParams): Observable<ProductTagsResponse>;
|
|
1559
|
+
fetchOneById(id: number): Observable<ProductTagResponse>;
|
|
1560
|
+
createOne(data: ProductTag): Observable<any>;
|
|
1561
|
+
updateOne(id: number, data: ProductTag): Observable<ProductTagResponse>;
|
|
1562
|
+
deleteOne(id: number): Observable<any>;
|
|
1563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTagService, never>;
|
|
1564
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTagService>;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
declare class ProductTypeService {
|
|
1568
|
+
private apiService;
|
|
1569
|
+
constructor(apiService: ApiService);
|
|
1570
|
+
fetchTypes({ page, search, limit }: FetchProductTypesParams): Observable<ProductTypesResponse>;
|
|
1571
|
+
fetchOneById(id: number): Observable<ProductTypeResponse>;
|
|
1572
|
+
createOne(data: ProductType): Observable<any>;
|
|
1573
|
+
updateOne(id: number, data: ProductType): Observable<ProductTypeResponse>;
|
|
1574
|
+
deleteOne(id: number): Observable<any>;
|
|
1575
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductTypeService, never>;
|
|
1576
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductTypeService>;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
interface FetchProductsParams {
|
|
1580
|
+
page?: number;
|
|
1581
|
+
limit?: number;
|
|
1582
|
+
search?: string;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
declare class ProductService {
|
|
1586
|
+
private apiService;
|
|
1587
|
+
private productsSubject;
|
|
1588
|
+
products$: Observable<Product[]>;
|
|
1589
|
+
constructor(apiService: ApiService);
|
|
1590
|
+
fetchProducts({ page, search, limit, }: FetchProductsParams): Observable<ProductsResponseInterface>;
|
|
1591
|
+
loadProducts(params: FetchProductsParams): void;
|
|
1592
|
+
getCurrentProducts(): Product[];
|
|
1593
|
+
fetchOneById(id: number): Observable<ProductResponse>;
|
|
1594
|
+
createOne(data: Product): Observable<any>;
|
|
1595
|
+
updateOne(id: number, data: any): Observable<ProductResponse>;
|
|
1596
|
+
deleteOne(id: number): Observable<any>;
|
|
1597
|
+
fetchImages(id: number): Observable<{
|
|
1598
|
+
data: ProductImage[];
|
|
1599
|
+
}>;
|
|
1600
|
+
uploadImages(id: number, files?: FormData): Observable<{
|
|
1601
|
+
data: ProductImage[];
|
|
1602
|
+
}>;
|
|
1603
|
+
deleteOneImage(productId: number, imageId: number): Observable<any>;
|
|
1604
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductService, never>;
|
|
1605
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1337
1608
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1338
1609
|
|
|
1339
1610
|
declare class AppButtonComponent {
|
|
@@ -1341,7 +1612,7 @@ declare class AppButtonComponent {
|
|
|
1341
1612
|
disabled: boolean;
|
|
1342
1613
|
loading: boolean;
|
|
1343
1614
|
type: 'button' | 'submit';
|
|
1344
|
-
variant: 'primary' | 'secondary' | '
|
|
1615
|
+
variant: 'primary' | 'secondary' | 'tertiary' | 'success' | 'transparent';
|
|
1345
1616
|
text: string;
|
|
1346
1617
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1347
1618
|
loadingText: string;
|
|
@@ -1353,7 +1624,6 @@ declare class AppButtonComponent {
|
|
|
1353
1624
|
}
|
|
1354
1625
|
|
|
1355
1626
|
declare class AppLinkButtonComponent {
|
|
1356
|
-
protected readonly BASE_BUTTON_CLASSES: string;
|
|
1357
1627
|
disabled: boolean;
|
|
1358
1628
|
loading: boolean;
|
|
1359
1629
|
target: '_blank' | '_self' | '_parent' | '_top';
|
|
@@ -1363,7 +1633,7 @@ declare class AppLinkButtonComponent {
|
|
|
1363
1633
|
route: string;
|
|
1364
1634
|
queryParams: Record<string, any>;
|
|
1365
1635
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1366
|
-
variant: 'primary' | 'secondary' | '
|
|
1636
|
+
variant: 'primary' | 'secondary' | 'tertiary' | 'success' | 'transparent';
|
|
1367
1637
|
get buttonClasses(): string;
|
|
1368
1638
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppLinkButtonComponent, never>;
|
|
1369
1639
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppLinkButtonComponent, "app-link-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "target": { "alias": "target"; "required": false; }; "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "route": { "alias": "route"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1374,9 +1644,6 @@ declare class AppAlertComponent {
|
|
|
1374
1644
|
text: string;
|
|
1375
1645
|
closeable: boolean;
|
|
1376
1646
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
1377
|
-
get alertColorClasses(): string;
|
|
1378
|
-
get alertSizeClasses(): string;
|
|
1379
|
-
get alertClasses(): string;
|
|
1380
1647
|
get alertIcon(): string;
|
|
1381
1648
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppAlertComponent, never>;
|
|
1382
1649
|
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>;
|
|
@@ -1416,8 +1683,6 @@ declare class AppModalComponent {
|
|
|
1416
1683
|
isOpen: WritableSignal<boolean>;
|
|
1417
1684
|
size: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
1418
1685
|
closeModal: EventEmitter<void>;
|
|
1419
|
-
private readonly SIZE_CLASSES;
|
|
1420
|
-
get sizeClass(): string;
|
|
1421
1686
|
onCloseModal(): void;
|
|
1422
1687
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
1423
1688
|
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>;
|
|
@@ -1527,7 +1792,6 @@ declare class FormSelectComponent implements ControlValueAccessor {
|
|
|
1527
1792
|
get showError(): boolean;
|
|
1528
1793
|
get errorMessage(): string;
|
|
1529
1794
|
get resolvedDefaultOptionLabel(): string;
|
|
1530
|
-
get selectClasses(): string;
|
|
1531
1795
|
get fieldGroupClasses(): string;
|
|
1532
1796
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectComponent, [{ optional: true; self: true; }, null]>;
|
|
1533
1797
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectComponent, "form-select", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "options": { "alias": "options"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "showDefaultOption": { "alias": "showDefaultOption"; "required": false; }; "defaultOptionLabel": { "alias": "defaultOptionLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1560,7 +1824,6 @@ declare class FormTextareaComponent implements ControlValueAccessor {
|
|
|
1560
1824
|
get inputId(): string;
|
|
1561
1825
|
get showError(): boolean;
|
|
1562
1826
|
get errorMessage(): string;
|
|
1563
|
-
get inputClasses(): string;
|
|
1564
1827
|
get fieldGroupClasses(): string;
|
|
1565
1828
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormTextareaComponent, [{ optional: true; self: true; }, null]>;
|
|
1566
1829
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormTextareaComponent, "form-textarea", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1628,7 +1891,6 @@ declare class ColorPickerComponent implements ControlValueAccessor {
|
|
|
1628
1891
|
selectPresetColor(color: string): void;
|
|
1629
1892
|
get inputId(): string;
|
|
1630
1893
|
get showError(): boolean;
|
|
1631
|
-
get inputClasses(): string;
|
|
1632
1894
|
get fieldGroupClasses(): string;
|
|
1633
1895
|
isValidHexColor(color: string): boolean;
|
|
1634
1896
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, [{ optional: true; self: true; }, null]>;
|
|
@@ -1665,7 +1927,6 @@ declare class DateInputComponent implements ControlValueAccessor {
|
|
|
1665
1927
|
get inputId(): string;
|
|
1666
1928
|
get showError(): boolean;
|
|
1667
1929
|
get errorMessage(): string;
|
|
1668
|
-
get inputClasses(): string;
|
|
1669
1930
|
get fieldGroupClasses(): string;
|
|
1670
1931
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, [{ optional: true; self: true; }, null]>;
|
|
1671
1932
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "date-input", never, { "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "includeTime": { "alias": "includeTime"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1692,9 +1953,6 @@ declare class ToggleSwitchComponent implements ControlValueAccessor {
|
|
|
1692
1953
|
setDisabledState(isDisabled: boolean): void;
|
|
1693
1954
|
onToggle(): void;
|
|
1694
1955
|
get inputId(): string;
|
|
1695
|
-
get toggleSizeClasses(): string;
|
|
1696
|
-
get toggleThumbSizeClasses(): string;
|
|
1697
|
-
get toggleThumbTranslateClasses(): string;
|
|
1698
1956
|
get fieldGroupClasses(): string;
|
|
1699
1957
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleSwitchComponent, [{ optional: true; self: true; }]>;
|
|
1700
1958
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleSwitchComponent, "toggle-switch", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, { "toggleClick": "toggleClick"; }, never, never, true, never>;
|
|
@@ -1783,6 +2041,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1783
2041
|
notFoundText: string;
|
|
1784
2042
|
bindLabel: string;
|
|
1785
2043
|
bindValue: string;
|
|
2044
|
+
disabled: boolean;
|
|
1786
2045
|
value: any;
|
|
1787
2046
|
onChange: any;
|
|
1788
2047
|
onTouched: any;
|
|
@@ -1812,7 +2071,7 @@ declare class AsyncSelectComponent implements OnInit, OnDestroy, OnChanges, Cont
|
|
|
1812
2071
|
registerOnTouched(fn: any): void;
|
|
1813
2072
|
setDisabledState(isDisabled: boolean): void;
|
|
1814
2073
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncSelectComponent, never>;
|
|
1815
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AsyncSelectComponent, "async-select", never, { "config": { "alias": "config"; "required": false; }; "items": { "alias": "items"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
2074
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AsyncSelectComponent, "async-select", never, { "config": { "alias": "config"; "required": false; }; "items": { "alias": "items"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "notFoundText": { "alias": "notFoundText"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
1816
2075
|
}
|
|
1817
2076
|
|
|
1818
2077
|
declare class ChangePasswordFormComponent {
|
|
@@ -2336,5 +2595,5 @@ declare class ZonePriceListComponent {
|
|
|
2336
2595
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2337
2596
|
}
|
|
2338
2597
|
|
|
2339
|
-
export { ADMIN_API_ROUTES,
|
|
2340
|
-
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, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, Hall, HallFloor, NumerationConfig, Order, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductResponse, 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, Venue, VenueImage };
|
|
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 };
|
|
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 };
|