tickera-angular-components 0.0.1-dev.174 → 0.0.1-dev.176
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
|
@@ -98,6 +98,7 @@ declare const PERFORMANCES_API_ROUTES: {
|
|
|
98
98
|
seatEventsTicket: (id: number) => string;
|
|
99
99
|
seatEventsTicketAdmin: (id: number) => string;
|
|
100
100
|
seatEvents: (id: number) => string;
|
|
101
|
+
myQrToken: (ticketUuid: string) => string;
|
|
101
102
|
};
|
|
102
103
|
|
|
103
104
|
declare const PRICE_ZONES_API_ROUTES: {
|
|
@@ -2720,6 +2721,7 @@ declare class TicketQrService {
|
|
|
2720
2721
|
private apiService;
|
|
2721
2722
|
constructor(apiService: ApiService);
|
|
2722
2723
|
fetchQrToken(ticketUuid: string): Observable<QrTokenResponse>;
|
|
2724
|
+
fetchMyQrToken(ticketUuid: string): Observable<QrTokenResponse>;
|
|
2723
2725
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrService, never>;
|
|
2724
2726
|
static ɵprov: i0.ɵɵInjectableDeclaration<TicketQrService>;
|
|
2725
2727
|
}
|
|
@@ -3976,8 +3978,9 @@ declare class TicketMapWidgetComponent {
|
|
|
3976
3978
|
|
|
3977
3979
|
declare class TicketMapWidgetHeaderComponent {
|
|
3978
3980
|
title: string;
|
|
3981
|
+
subtitle: string;
|
|
3979
3982
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWidgetHeaderComponent, never>;
|
|
3980
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetHeaderComponent, "ticket-map-widget-header", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3983
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWidgetHeaderComponent, "ticket-map-widget-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3981
3984
|
}
|
|
3982
3985
|
|
|
3983
3986
|
declare class TicketMapZoomControlsComponent {
|
|
@@ -4062,10 +4065,12 @@ declare class TicketMapProductSelectionItemComponent {
|
|
|
4062
4065
|
}
|
|
4063
4066
|
|
|
4064
4067
|
declare class TIcketMapProductSelectionComponent {
|
|
4068
|
+
title: string;
|
|
4069
|
+
subtitle: string;
|
|
4065
4070
|
private bookingDataService;
|
|
4066
4071
|
readonly products: i0.Signal<tickera_angular_components.Product[]>;
|
|
4067
4072
|
static ɵfac: i0.ɵɵFactoryDeclaration<TIcketMapProductSelectionComponent, never>;
|
|
4068
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TIcketMapProductSelectionComponent, "ticket-map-product-selection", never, {}, {}, never, never, true, never>;
|
|
4073
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TIcketMapProductSelectionComponent, "ticket-map-product-selection", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
4069
4074
|
}
|
|
4070
4075
|
|
|
4071
4076
|
declare class TicketMapTotalsComponent {
|
|
@@ -4207,6 +4212,7 @@ declare class OrderItemTypeBadgeComponent {
|
|
|
4207
4212
|
declare class OrderItemsComponent {
|
|
4208
4213
|
private ticketQrModalService;
|
|
4209
4214
|
order: Order;
|
|
4215
|
+
isCustomer: boolean;
|
|
4210
4216
|
ticketCanOpenQr: (order: Order, ticket: tickera_angular_components.PerformanceTicket) => boolean;
|
|
4211
4217
|
constructor(ticketQrModalService: TicketQrModalService);
|
|
4212
4218
|
protected get orderItems(): Order['order_items'];
|
|
@@ -4227,7 +4233,7 @@ declare class OrderItemsComponent {
|
|
|
4227
4233
|
};
|
|
4228
4234
|
openTicketQr(ticketUuid: string, description: string): void;
|
|
4229
4235
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrderItemsComponent, never>;
|
|
4230
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OrderItemsComponent, "order-items", never, { "order": { "alias": "order"; "required": true; }; }, {}, never, never, true, never>;
|
|
4236
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrderItemsComponent, "order-items", never, { "order": { "alias": "order"; "required": true; }; "isCustomer": { "alias": "isCustomer"; "required": false; }; }, {}, never, never, true, never>;
|
|
4231
4237
|
}
|
|
4232
4238
|
|
|
4233
4239
|
declare class OrderDiscountAppliedComponent {
|
|
@@ -4290,6 +4296,7 @@ declare class TicketQrComponent implements OnInit, OnDestroy {
|
|
|
4290
4296
|
private ticketQrService;
|
|
4291
4297
|
private platformId;
|
|
4292
4298
|
ticketUuid: string;
|
|
4299
|
+
isCustomer: boolean;
|
|
4293
4300
|
qrCanvas: ElementRef<HTMLCanvasElement>;
|
|
4294
4301
|
loading: i0.WritableSignal<boolean>;
|
|
4295
4302
|
error: i0.WritableSignal<boolean>;
|
|
@@ -4312,18 +4319,19 @@ declare class TicketQrComponent implements OnInit, OnDestroy {
|
|
|
4312
4319
|
private startCountdown;
|
|
4313
4320
|
private renderQr;
|
|
4314
4321
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrComponent, never>;
|
|
4315
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrComponent, "performance-ticket-qr", never, { "ticketUuid": { "alias": "ticketUuid"; "required": true; }; }, {}, never, never, true, never>;
|
|
4322
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrComponent, "performance-ticket-qr", never, { "ticketUuid": { "alias": "ticketUuid"; "required": true; }; "isCustomer": { "alias": "isCustomer"; "required": false; }; }, {}, never, never, true, never>;
|
|
4316
4323
|
}
|
|
4317
4324
|
|
|
4318
4325
|
declare class TicketQrModalComponent {
|
|
4319
4326
|
private ticketQrModalService;
|
|
4327
|
+
isCustomer: boolean;
|
|
4320
4328
|
constructor(ticketQrModalService: TicketQrModalService);
|
|
4321
4329
|
get isOpen(): i0.WritableSignal<boolean>;
|
|
4322
4330
|
get ticketUuid(): i0.WritableSignal<string | null>;
|
|
4323
4331
|
get ticketDescription(): i0.WritableSignal<string | null>;
|
|
4324
4332
|
onClose(): void;
|
|
4325
4333
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketQrModalComponent, never>;
|
|
4326
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrModalComponent, "ticket-qr-modal", never, {}, {}, never, never, true, never>;
|
|
4334
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketQrModalComponent, "ticket-qr-modal", never, { "isCustomer": { "alias": "isCustomer"; "required": false; }; }, {}, never, never, true, never>;
|
|
4327
4335
|
}
|
|
4328
4336
|
|
|
4329
4337
|
declare class VipBalanceCardComponent {
|