@chevre/factory 4.308.0-alpha.1 → 4.309.0-alpha.0
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 +7 -2
- package/package.json +1 -1
package/lib/invoice.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { PaymentStatusType } from './paymentStatusType';
|
|
|
4
4
|
import * as PersonFactory from './person';
|
|
5
5
|
import { IAccounting } from './priceSpecification';
|
|
6
6
|
import { IPriceSpecification as ICategoryCodeChargeSpecification } from './priceSpecification/categoryCodeChargeSpecification';
|
|
7
|
-
import { IPriceSpecification as IMovieTicketTypeChargeSpecification } from './priceSpecification/movieTicketTypeChargeSpecification';
|
|
7
|
+
import { IAppliesToMovieTicket, IPriceSpecification as IMovieTicketTypeChargeSpecification } from './priceSpecification/movieTicketTypeChargeSpecification';
|
|
8
8
|
import { IAppliesToAddOn as IUnitPriceSpecAppliesToAddOn, IPriceSpecification as IUnitPriceSpecification } from './priceSpecification/unitPriceSpecification';
|
|
9
9
|
import { IPriceSpecification } from './reservation/event';
|
|
10
10
|
import * as SellerFactory from './seller';
|
|
@@ -16,10 +16,15 @@ export interface IReferenceOrder extends OrderFactory.IOrder {
|
|
|
16
16
|
}
|
|
17
17
|
export declare type IReservationPriceAccounting = Pick<IAccounting, 'accountsReceivable'>;
|
|
18
18
|
export declare type IAppliesToAddOn = Pick<IUnitPriceSpecAppliesToAddOn, 'typeOf'>;
|
|
19
|
-
export declare type
|
|
19
|
+
export declare type IMinimizedCategoryCodeChargeSpecification = Pick<ICategoryCodeChargeSpecification, 'typeOf' | 'price'>;
|
|
20
|
+
export declare type IMinimizedMovieTicketTypeChargeSpecification = Pick<IMovieTicketTypeChargeSpecification, 'typeOf' | 'price'> & {
|
|
21
|
+
appliesToMovieTicket: Pick<IAppliesToMovieTicket, 'serviceOutput'>;
|
|
22
|
+
};
|
|
23
|
+
export declare type IMinimizedUnitPriceSpecification = Pick<IUnitPriceSpecification, 'typeOf' | 'price' | 'referenceQuantity'> & {
|
|
20
24
|
accounting?: IReservationPriceAccounting;
|
|
21
25
|
appliesToAddOn?: IAppliesToAddOn[];
|
|
22
26
|
};
|
|
27
|
+
export declare type IPriceComponentSpecification = IMinimizedCategoryCodeChargeSpecification | IMinimizedMovieTicketTypeChargeSpecification | IMinimizedUnitPriceSpecification;
|
|
23
28
|
export declare type IReservationPriceSpecification = Pick<IPriceSpecification, 'typeOf'> & {
|
|
24
29
|
priceComponent: IPriceComponentSpecification[];
|
|
25
30
|
};
|