tickera-angular-components 0.0.1-dev.91 → 0.0.1-dev.93
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
|
@@ -1103,6 +1103,7 @@ interface GiftBondPurchase extends Auditable {
|
|
|
1103
1103
|
purchased_at: string;
|
|
1104
1104
|
expires_at: string;
|
|
1105
1105
|
redeemed_at: string | null;
|
|
1106
|
+
gift_bond?: GiftBond;
|
|
1106
1107
|
gift_bond_id: number;
|
|
1107
1108
|
buyer_customer_id: number;
|
|
1108
1109
|
buyer: Customer;
|
|
@@ -2027,8 +2028,10 @@ declare class PerformanceBookingDataService {
|
|
|
2027
2028
|
readonly renderData: i0.Signal<ElementRenderData[]>;
|
|
2028
2029
|
setPerformanceBookingData({ data }: PerformanceBookingDataResponse): void;
|
|
2029
2030
|
setRoomMap(roomMap: RoomMap | null): void;
|
|
2031
|
+
setAllRenderData(data: ElementRenderData[]): void;
|
|
2030
2032
|
setPerformance(performance: Performance | null): void;
|
|
2031
2033
|
setShow(show: Show | null): void;
|
|
2034
|
+
setHallFloors(data: HallFloor[]): void;
|
|
2032
2035
|
setSelectedHallFloor(id: number): void;
|
|
2033
2036
|
updateStageConfig(data: {
|
|
2034
2037
|
[x: string]: any;
|