@chevre/factory 4.272.0-alpha.0 → 4.272.0-alpha.1
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/invoice.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ import * as OrderFactory from './order';
|
|
|
3
3
|
import { PaymentStatusType } from './paymentStatusType';
|
|
4
4
|
import * as PersonFactory from './person';
|
|
5
5
|
import { IAccounting } from './priceSpecification';
|
|
6
|
+
import { IPriceSpecification as ICategoryCodeChargeSpecification } from './priceSpecification/categoryCodeChargeSpecification';
|
|
7
|
+
import { IPriceSpecification as IMovieTicketTypeChargeSpecification } from './priceSpecification/movieTicketTypeChargeSpecification';
|
|
8
|
+
import { IPriceSpecification as IUnitPriceSpecification } from './priceSpecification/unitPriceSpecification';
|
|
6
9
|
import { IPriceSpecification } from './reservation/event';
|
|
7
10
|
import * as SellerFactory from './seller';
|
|
8
11
|
import { PaymentServiceType } from './service/paymentService';
|
|
@@ -12,15 +15,18 @@ export interface IReferenceOrder extends OrderFactory.IOrder {
|
|
|
12
15
|
acceptedOffers: OrderFactory.IAcceptedOffer<OrderFactory.IItemOffered>[];
|
|
13
16
|
}
|
|
14
17
|
export declare type IReservationPriceAccounting = Pick<IAccounting, 'accountsReceivable'>;
|
|
15
|
-
export declare type
|
|
16
|
-
accounting
|
|
18
|
+
export declare type IPriceComponentSpecification = Pick<ICategoryCodeChargeSpecification, 'typeOf' | 'price'> | Pick<IMovieTicketTypeChargeSpecification, 'typeOf' | 'price'> | Pick<IUnitPriceSpecification, 'typeOf' | 'price' | 'referenceQuantity' | 'appliesToAddOn'> & {
|
|
19
|
+
accounting?: IReservationPriceAccounting;
|
|
20
|
+
};
|
|
21
|
+
export declare type IReservationPriceSpecification = Pick<IPriceSpecification, 'typeOf'> & {
|
|
22
|
+
priceComponent: IPriceComponentSpecification[];
|
|
17
23
|
};
|
|
18
24
|
export interface IReservation {
|
|
19
25
|
/**
|
|
20
26
|
* 予約価格
|
|
21
27
|
*/
|
|
22
28
|
price?: number;
|
|
23
|
-
priceSpecification
|
|
29
|
+
priceSpecification?: IReservationPriceSpecification;
|
|
24
30
|
}
|
|
25
31
|
export interface IMovieTicketAsPaymentServiceOutput {
|
|
26
32
|
/**
|
|
@@ -10,6 +10,7 @@ export declare type IAppliesToMovieTicket = Pick<IMovieTicketTypeChargeSpecAppli
|
|
|
10
10
|
*/
|
|
11
11
|
identifier?: string;
|
|
12
12
|
};
|
|
13
|
+
export declare type IReferenceQuantity = Pick<IQuantitativeValue<UnitCode>, 'typeOf' | 'value' | 'unitCode'>;
|
|
13
14
|
/**
|
|
14
15
|
* 単価仕様
|
|
15
16
|
*/
|
|
@@ -18,7 +19,7 @@ export declare type IPriceSpecification = BaseSpecification<PriceSpecificationTy
|
|
|
18
19
|
/**
|
|
19
20
|
* 基準数量
|
|
20
21
|
*/
|
|
21
|
-
referenceQuantity:
|
|
22
|
+
referenceQuantity: IReferenceQuantity;
|
|
22
23
|
/**
|
|
23
24
|
* 適用MovieTicket
|
|
24
25
|
*/
|