@chevre/factory 4.306.0 → 4.307.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.
|
@@ -13,13 +13,13 @@ import * as AuthorizeActionFactory from '../../authorize';
|
|
|
13
13
|
import { IPointAward } from '../../transfer/moneyTransfer';
|
|
14
14
|
export declare type IAgent = ActionFactory.IParticipantAsSeller;
|
|
15
15
|
export declare type IRecipient = ActionFactory.IParticipantAsWebApplication | ActionFactory.IParticipantAsPerson;
|
|
16
|
-
export declare type IItemOffered = Pick<IProduct, '
|
|
16
|
+
export declare type IItemOffered = Pick<IProduct, 'typeOf' | 'id' | 'name'> & {
|
|
17
17
|
serviceOutput: IProductServiceOutput & IPermit;
|
|
18
18
|
pointAward?: IPointAward;
|
|
19
19
|
};
|
|
20
20
|
export declare type IAcceptedOfferWithoutDetail = RegisterServiceTransactionFactory.IAcceptedOfferWithoutDetail;
|
|
21
|
-
export declare type ISellerMakesOffer = Pick<ISeller, '
|
|
22
|
-
export interface IAcceptedOffer extends Pick<IOffer, '
|
|
21
|
+
export declare type ISellerMakesOffer = Pick<ISeller, 'id' | 'name' | 'typeOf'>;
|
|
22
|
+
export interface IAcceptedOffer extends Pick<IOffer, 'typeOf' | 'id' | 'identifier' | 'itemOffered' | 'name' | 'priceCurrency' | 'seller'> {
|
|
23
23
|
/**
|
|
24
24
|
* オファーコード
|
|
25
25
|
*/
|
|
@@ -63,7 +63,7 @@ export interface IAcceptedOfferWithoutDetail {
|
|
|
63
63
|
id: string;
|
|
64
64
|
itemOffered: IAcceptedItemOffered;
|
|
65
65
|
}
|
|
66
|
-
export interface IItemOffered extends Pick<IProduct, 'id' | '
|
|
66
|
+
export interface IItemOffered extends Pick<IProduct, 'id' | 'serviceOutput' | 'typeOf'> {
|
|
67
67
|
serviceOutput: IServiceOutput;
|
|
68
68
|
pointAward?: IPointAward;
|
|
69
69
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ICategoryCode } from '../categoryCode';
|
|
2
2
|
import { IPriceSpecification as BaseSpecification } from '../priceSpecification';
|
|
3
3
|
import { PriceSpecificationType } from '../priceSpecificationType';
|
|
4
|
-
export declare type IAppliesToCategoryCode = Pick<ICategoryCode, '
|
|
4
|
+
export declare type IAppliesToCategoryCode = Pick<ICategoryCode, 'typeOf' | 'codeValue' | 'inCodeSet'>;
|
|
5
5
|
/**
|
|
6
6
|
* 区分加算料金
|
|
7
7
|
*/
|