@chevre/factory 6.2.0-alpha.8 → 6.2.0-alpha.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/lib/reservation/event.d.ts +12 -3
- package/package.json +1 -1
|
@@ -65,10 +65,14 @@ export type IMinimizedWorkPerformed = Pick<IWorkPerformed, 'typeOf' | 'id' | 'id
|
|
|
65
65
|
contentRating?: never;
|
|
66
66
|
name?: never;
|
|
67
67
|
};
|
|
68
|
+
export type IMinimizedMovieTheater = Pick<ISuperEvent['location'], 'branchCode' | 'id' | 'typeOf'> & {
|
|
69
|
+
name?: never;
|
|
70
|
+
};
|
|
68
71
|
/**
|
|
69
72
|
* 予約対象施設コンテンツ
|
|
70
73
|
*/
|
|
71
|
-
export type IMinimizedSuperEvent = Pick<ISuperEvent, 'id' | '
|
|
74
|
+
export type IMinimizedSuperEvent = Pick<ISuperEvent, 'id' | 'typeOf'> & {
|
|
75
|
+
location: IMinimizedMovieTheater;
|
|
72
76
|
workPerformed: IMinimizedWorkPerformed;
|
|
73
77
|
} & {
|
|
74
78
|
additionalProperty?: never;
|
|
@@ -76,6 +80,11 @@ export type IMinimizedSuperEvent = Pick<ISuperEvent, 'id' | 'location' | 'typeOf
|
|
|
76
80
|
soundFormat?: never;
|
|
77
81
|
headline?: never;
|
|
78
82
|
};
|
|
83
|
+
export type IMinimizedRoom = Pick<IEventLocation, 'branchCode' | 'typeOf'> & {
|
|
84
|
+
name?: never;
|
|
85
|
+
address?: never;
|
|
86
|
+
maximumAttendeeCapacity?: never;
|
|
87
|
+
};
|
|
79
88
|
/**
|
|
80
89
|
* 最小化された予約対象イベント
|
|
81
90
|
* 2026-04-05~
|
|
@@ -85,10 +94,10 @@ export interface IReservationForMinimized {
|
|
|
85
94
|
startDate: Date;
|
|
86
95
|
typeOf: EventType.ScreeningEvent;
|
|
87
96
|
endDate: Date;
|
|
88
|
-
|
|
89
|
-
location: IEventLocation;
|
|
97
|
+
location: IMinimizedRoom;
|
|
90
98
|
superEvent: IMinimizedSuperEvent;
|
|
91
99
|
name?: never;
|
|
100
|
+
doorTime?: never;
|
|
92
101
|
}
|
|
93
102
|
export type ICategoryChargePriceComponent = Pick<ICategoryCodeChargeSpecification, 'accounting' | 'appliesToCategoryCode' | 'name' | 'price' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
94
103
|
export type IMovieTicketTypeChargePriceComponent = Pick<IMovieTicketTypeChargeSpecification, 'accounting' | 'appliesToMovieTicket' | 'appliesToVideoFormat' | 'name' | 'price' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
|