@chevre/factory 4.352.0-alpha.3 → 4.352.0-alpha.4
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/order.d.ts +1 -1
- package/package.json +1 -1
package/lib/order.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ export interface IDiscount {
|
|
|
112
112
|
discountCurrency: string;
|
|
113
113
|
}
|
|
114
114
|
export type IWorkPerformed = Pick<EventReservationFactory.IOptimizedWorkPerformed, 'typeOf' | 'id' | 'identifier' | 'name' | 'duration'>;
|
|
115
|
-
export type ISuperEvent =
|
|
115
|
+
export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEvent, 'additionalProperty' | 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'description' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
|
|
116
116
|
workPerformed: IWorkPerformed;
|
|
117
117
|
};
|
|
118
118
|
export type ITripAsReservationFor = BusReservationFactory.IReservationFor;
|