@gomusdev/web-components 1.43.0 → 1.45.0
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/dist-js/components/graveyard/event/lib.svelte.d.ts +4 -0
- package/dist-js/components/order/lib/OrderDetails.svelte.d.ts +145 -7
- package/dist-js/gomus-webcomponents.iife.js +242 -105
- package/dist-js/gomus-webcomponents.js +242 -105
- package/dist-js/lib/helpers/wrapInElement.d.ts +1 -1
- package/dist-js/lib/stores/shop.svelte.d.ts +17 -11
- package/package.json +1 -1
|
@@ -389,16 +389,7 @@ export declare class Shop {
|
|
|
389
389
|
donation_cents: number;
|
|
390
390
|
}[];
|
|
391
391
|
customer: import('@gomus/types').components["schemas"]["customer"];
|
|
392
|
-
items:
|
|
393
|
-
id: number;
|
|
394
|
-
type: string;
|
|
395
|
-
splitable?: boolean;
|
|
396
|
-
price_cents: number;
|
|
397
|
-
vat_pct: number;
|
|
398
|
-
tax_included: boolean;
|
|
399
|
-
canceled: boolean;
|
|
400
|
-
attributes: import('@gomus/types').components["schemas"]["ticket_sale"] | import('@gomus/types').components["schemas"]["coupon_sale"];
|
|
401
|
-
}[];
|
|
392
|
+
items: (import('@gomus/types').components["schemas"]["ticket_order_item"] | import('@gomus/types').components["schemas"]["tour_order_item"] | import('@gomus/types').components["schemas"]["event_order_item"] | import('@gomus/types').components["schemas"]["coupon_order_item"] | import('@gomus/types').components["schemas"]["merchandise_order_item"] | import('@gomus/types').components["schemas"]["accounting_article_order_item"])[];
|
|
402
393
|
};
|
|
403
394
|
annualOrder(token: string): {
|
|
404
395
|
id: number;
|
|
@@ -439,6 +430,7 @@ export declare class Shop {
|
|
|
439
430
|
id: number;
|
|
440
431
|
title: string;
|
|
441
432
|
sub_title: string | null;
|
|
433
|
+
description: string | null;
|
|
442
434
|
created_at: string;
|
|
443
435
|
updated_at: string;
|
|
444
436
|
picture: import('@gomus/types').components["schemas"]["picture"];
|
|
@@ -466,6 +458,9 @@ export declare class Shop {
|
|
|
466
458
|
museum_id: number;
|
|
467
459
|
exhibition_id: number | null;
|
|
468
460
|
foreign_id: string | null;
|
|
461
|
+
min_persons?: number;
|
|
462
|
+
max_persons?: number;
|
|
463
|
+
max_participants?: number;
|
|
469
464
|
title: string;
|
|
470
465
|
sub_title: string | null;
|
|
471
466
|
created_at: string;
|
|
@@ -496,6 +491,7 @@ export declare class Shop {
|
|
|
496
491
|
sellabilities: import('@gomus/types').components["schemas"]["time_frame"][];
|
|
497
492
|
documents: import('@gomus/types').components["schemas"]["document"][];
|
|
498
493
|
content: Record<string, never>;
|
|
494
|
+
entry_fee: 0 | 10 | 20 | 100;
|
|
499
495
|
};
|
|
500
496
|
getTicketCapacities(date: string, ticketIds: number[]): Promise<CapacitiesResponse>;
|
|
501
497
|
getCouponSaleByBarcode(token: string): {
|
|
@@ -551,6 +547,9 @@ export declare class Shop {
|
|
|
551
547
|
museum_id: number;
|
|
552
548
|
exhibition_id: number | null;
|
|
553
549
|
foreign_id: string | null;
|
|
550
|
+
min_persons?: number;
|
|
551
|
+
max_persons?: number;
|
|
552
|
+
max_participants?: number;
|
|
554
553
|
title: string;
|
|
555
554
|
sub_title: string | null;
|
|
556
555
|
created_at: string;
|
|
@@ -570,6 +569,7 @@ export declare class Shop {
|
|
|
570
569
|
languages: import('@gomus/types').components["schemas"]["language"][];
|
|
571
570
|
category: import('@gomus/types').components["schemas"]["category"];
|
|
572
571
|
upcoming_bookings_start_times: string[];
|
|
572
|
+
entry_fee: 0 | 10 | 20 | 100;
|
|
573
573
|
}[];
|
|
574
574
|
get upcomingEvents(): {
|
|
575
575
|
id: number;
|
|
@@ -577,6 +577,9 @@ export declare class Shop {
|
|
|
577
577
|
museum_id: number;
|
|
578
578
|
exhibition_id: number | null;
|
|
579
579
|
foreign_id: string | null;
|
|
580
|
+
min_persons?: number;
|
|
581
|
+
max_persons?: number;
|
|
582
|
+
max_participants?: number;
|
|
580
583
|
title: string;
|
|
581
584
|
sub_title: string | null;
|
|
582
585
|
created_at: string;
|
|
@@ -596,6 +599,7 @@ export declare class Shop {
|
|
|
596
599
|
languages: import('@gomus/types').components["schemas"]["language"][];
|
|
597
600
|
category: import('@gomus/types').components["schemas"]["category"];
|
|
598
601
|
upcoming_bookings_start_times: string[];
|
|
602
|
+
entry_fee: 0 | 10 | 20 | 100;
|
|
599
603
|
}[];
|
|
600
604
|
get tours(): {
|
|
601
605
|
id: number;
|
|
@@ -604,6 +608,7 @@ export declare class Shop {
|
|
|
604
608
|
foreign_id?: number | null;
|
|
605
609
|
min_persons?: number;
|
|
606
610
|
max_persons?: number;
|
|
611
|
+
max_participants?: number;
|
|
607
612
|
title: string;
|
|
608
613
|
sub_title?: string | null;
|
|
609
614
|
bookable: boolean;
|
|
@@ -619,6 +624,7 @@ export declare class Shop {
|
|
|
619
624
|
created_at?: string;
|
|
620
625
|
updated_at?: string;
|
|
621
626
|
duration?: number;
|
|
627
|
+
entry_fee?: 0 | 10 | 20 | 100;
|
|
622
628
|
location: import('@gomus/types').components["schemas"]["location"];
|
|
623
629
|
age_groups: Record<string, never>[];
|
|
624
630
|
audiences: Record<string, never>[];
|
|
@@ -657,7 +663,7 @@ export declare class Shop {
|
|
|
657
663
|
get locales(): {
|
|
658
664
|
id: number;
|
|
659
665
|
locale: string;
|
|
660
|
-
}[];
|
|
666
|
+
}[] | undefined;
|
|
661
667
|
get urls(): {
|
|
662
668
|
account: () => string;
|
|
663
669
|
annualTickets: () => string;
|