@chevre/factory 4.367.0-alpha.5 → 4.367.0-alpha.6
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 +0 -26
- package/package.json +1 -1
package/lib/order.d.ts
CHANGED
|
@@ -89,28 +89,6 @@ export interface IReferencedInvoice {
|
|
|
89
89
|
additionalProperty: IPropertyValue<string>[];
|
|
90
90
|
issuedThrough: IOrderPaymentMethodIssuedThrough;
|
|
91
91
|
}
|
|
92
|
-
/**
|
|
93
|
-
* ディスカウント
|
|
94
|
-
*/
|
|
95
|
-
export interface IDiscount {
|
|
96
|
-
/**
|
|
97
|
-
* 割引タイプ
|
|
98
|
-
*/
|
|
99
|
-
typeOf: string;
|
|
100
|
-
name: string;
|
|
101
|
-
/**
|
|
102
|
-
* Any discount applied.
|
|
103
|
-
*/
|
|
104
|
-
discount: number;
|
|
105
|
-
/**
|
|
106
|
-
* Code used to redeem a discount.
|
|
107
|
-
*/
|
|
108
|
-
discountCode: string;
|
|
109
|
-
/**
|
|
110
|
-
* The currency (in 3 - letter ISO 4217 format) of the discount.
|
|
111
|
-
*/
|
|
112
|
-
discountCurrency: string;
|
|
113
|
-
}
|
|
114
92
|
export type IWorkPerformed = Pick<EventReservationFactory.IOptimizedWorkPerformed, 'typeOf' | 'id' | 'identifier' | 'name' | 'duration'>;
|
|
115
93
|
export type ISuperEvent = Pick<EventReservationFactory.IOptimizedSuperEvent, 'id' | 'location' | 'name' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
|
|
116
94
|
workPerformed: IWorkPerformed;
|
|
@@ -304,10 +282,6 @@ export interface IOrder extends ISimpleOrder {
|
|
|
304
282
|
* Date order was returned.
|
|
305
283
|
*/
|
|
306
284
|
dateReturned?: Date;
|
|
307
|
-
/**
|
|
308
|
-
* discount infos
|
|
309
|
-
*/
|
|
310
|
-
discounts: IDiscount[];
|
|
311
285
|
/**
|
|
312
286
|
* The identifier property represents any kind of identifier for any kind of Thing
|
|
313
287
|
*/
|