@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.
Files changed (2) hide show
  1. package/lib/order.d.ts +0 -26
  2. 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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.367.0-alpha.5",
3
+ "version": "4.367.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",