@chevre/factory 9.5.0-alpha.1 → 9.5.0-alpha.2
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.
|
@@ -42,7 +42,7 @@ export interface IAcceptedOfferInResult extends Pick<ITicketOffer, 'acceptedPaym
|
|
|
42
42
|
/**
|
|
43
43
|
* 取引確定時の検証に必要な情報のみ保管する
|
|
44
44
|
*/
|
|
45
|
-
priceSpecification?: Pick<IUnitPriceSpecification, 'eligibleQuantity'
|
|
45
|
+
priceSpecification?: Pick<IUnitPriceSpecification, 'eligibleQuantity'>;
|
|
46
46
|
}
|
|
47
47
|
export type IAggregateProgramMembershipUsed = (IPermitIssuedThroughFaceToFace | IPermitIssuedThroughMembershipService)[];
|
|
48
48
|
/**
|
|
@@ -22,7 +22,7 @@ export interface IAppliesToAddOn {
|
|
|
22
22
|
/**
|
|
23
23
|
* 単価仕様
|
|
24
24
|
*/
|
|
25
|
-
export interface IPriceSpecification extends Pick<BaseSpecification<PriceSpecificationType.UnitPriceSpecification>, 'project' | 'id' | 'typeOf' | 'name' | 'price' | 'priceCurrency' | 'valueAddedTaxIncluded' | 'accounting' | 'eligibleQuantity'
|
|
25
|
+
export interface IPriceSpecification extends Pick<BaseSpecification<PriceSpecificationType.UnitPriceSpecification>, 'project' | 'id' | 'typeOf' | 'name' | 'price' | 'priceCurrency' | 'valueAddedTaxIncluded' | 'accounting' | 'eligibleQuantity'> {
|
|
26
26
|
/**
|
|
27
27
|
* 発生金額
|
|
28
28
|
*/
|
package/lib/chevre/product.d.ts
CHANGED
|
@@ -241,7 +241,7 @@ export type ICategoryCodeChargePriceComponent = Pick<ICategoryCodeChargeSpecific
|
|
|
241
241
|
appliesToCategoryCode: IPriceComponentAppliesToCategoryCode[];
|
|
242
242
|
};
|
|
243
243
|
export type IMovieTicketTypeChargePriceComponent = Pick<IMovieTicketTypeChargeSpecification, 'accounting' | 'appliesToMovieTicket' | 'id' | 'appliesToVideoFormat' | 'name' | 'price' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
244
|
-
export type ITicketUnitPriceComponent = Pick<IUnitPriceSpecification, 'accounting' | 'appliesToAddOn' | 'appliesToMovieTicket' | 'eligibleQuantity' | '
|
|
244
|
+
export type ITicketUnitPriceComponent = Pick<IUnitPriceSpecification, 'accounting' | 'appliesToAddOn' | 'appliesToMovieTicket' | 'eligibleQuantity' | 'name' | 'price' | 'priceCurrency' | 'referenceQuantity' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
245
245
|
export type IPotentialAppliesToSeatingType = Pick<IAppliesToCategoryCode, 'typeOf'> & {
|
|
246
246
|
inCodeSet: Pick<ICategoryCodeSet, 'typeOf'> & {
|
|
247
247
|
identifier: CategorySetIdentifier.SeatingType;
|
|
@@ -21,7 +21,7 @@ export interface IItemOffered {
|
|
|
21
21
|
/**
|
|
22
22
|
* 単価オファーの価格仕様
|
|
23
23
|
*/
|
|
24
|
-
export type IUnitPriceOfferPriceSpecification = Pick<IUnitPriceSpecification, 'accounting' | 'appliesToMovieTicket' | 'eligibleQuantity' | '
|
|
24
|
+
export type IUnitPriceOfferPriceSpecification = Pick<IUnitPriceSpecification, 'accounting' | 'appliesToMovieTicket' | 'eligibleQuantity' | 'name' | 'price' | 'priceCurrency' | 'referenceQuantity' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
25
25
|
export type IAddOnItemOffered = Pick<IAddOnProduct, 'typeOf' | 'id' | 'name'>;
|
|
26
26
|
export interface IAddOn4unitPriceOffer extends Pick<IAddOn, 'typeOf' | 'priceCurrency'> {
|
|
27
27
|
itemOffered: IAddOnItemOffered;
|
|
@@ -105,7 +105,7 @@ export type ICreateParams = Pick<IUnitPriceOffer, 'acceptedPaymentMethod' | 'eli
|
|
|
105
105
|
/**
|
|
106
106
|
* 価格仕様
|
|
107
107
|
*/
|
|
108
|
-
priceSpecification: Pick<IUnitPriceOfferPriceSpecification, 'appliesToMovieTicket' | 'eligibleQuantity' | '
|
|
108
|
+
priceSpecification: Pick<IUnitPriceOfferPriceSpecification, 'appliesToMovieTicket' | 'eligibleQuantity' | 'price' | 'referenceQuantity'> & {
|
|
109
109
|
/**
|
|
110
110
|
* 勘定内容
|
|
111
111
|
*/
|