tf-checkout-react 1.3.48-beta.8 → 1.3.48-beta.9
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/components/seatMapContainer/utils.d.ts +2 -2
- package/dist/components/ticketsContainer/index.d.ts +8 -0
- package/dist/tf-checkout-react.cjs.development.js +4628 -3011
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +4629 -3011
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/dist/tf-checkout-styles.css +1 -1
- package/package.json +1 -1
- package/src/components/billing-info-container/index.tsx +75 -6
- package/src/components/seatMapContainer/TicketsSection.tsx +15 -8
- package/src/components/seatMapContainer/index.tsx +31 -1
- package/src/components/seatMapContainer/utils.ts +16 -19
- package/src/components/ticketsContainer/index.tsx +34 -0
- package/src/types/seatMap.d.ts +1 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const getTierIdBasedOnSeatId: (seatId: string, eventSeats: Array<EventSeat>) => string
|
|
2
|
-
export declare const getButtonLabel: (count: number) => string;
|
|
1
|
+
export declare const getTierIdBasedOnSeatId: (seatId: string, eventSeats: Array<EventSeat>) => string;
|
|
2
|
+
export declare const getButtonLabel: (count: number, tableMapEnabled: boolean) => string;
|
|
3
3
|
export declare const getOwnReservationsBasedOnStatuses: (statuses: any) => string[];
|
|
4
4
|
export declare const getTicketDropdownData: (reservationData: Array<SeatReservationData>, tierReleations: TicketTypeTierRelations) => ITicketsDropdownsData[];
|
|
5
5
|
export declare const getAddToCartRequestData: ({ eventId, reservations, selectedSeats, selectedTickets, }: any) => {
|
|
@@ -16,6 +16,14 @@ interface CartSuccess {
|
|
|
16
16
|
free_ticket: boolean;
|
|
17
17
|
collect_optional_wallet_address?: boolean;
|
|
18
18
|
collect_mandatory_wallet_address?: boolean;
|
|
19
|
+
collect_optional_company?: boolean;
|
|
20
|
+
collect_mandatory_company?: boolean;
|
|
21
|
+
collect_optional_job_title?: boolean;
|
|
22
|
+
collect_mandatory_job_title?: boolean;
|
|
23
|
+
collect_optional_instagram?: boolean;
|
|
24
|
+
collect_mandatory_instagram?: boolean;
|
|
25
|
+
collect_optional_business_category?: boolean;
|
|
26
|
+
collect_mandatory_business_category?: boolean;
|
|
19
27
|
}
|
|
20
28
|
export interface IGetTickets {
|
|
21
29
|
eventId: number;
|