@chevre/factory 4.375.0-alpha.3 → 4.375.0-alpha.5
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/action/authorize/offer/eventService.d.ts +0 -7
- package/lib/action/authorize/offer/moneyTransfer.d.ts +0 -1
- package/lib/action/authorize/offer/product.d.ts +0 -1
- package/lib/action/authorize/paymentMethod/any.d.ts +1 -1
- package/lib/transaction/placeOrder.d.ts +1 -1
- package/package.json +1 -1
|
@@ -63,13 +63,6 @@ export interface IResult {
|
|
|
63
63
|
* currencyを口座タイプとして扱う
|
|
64
64
|
*/
|
|
65
65
|
amount: OrderFactory.ITotalPaymentDue[];
|
|
66
|
-
/**
|
|
67
|
-
* 外部サービスへのリクエスト
|
|
68
|
-
*/
|
|
69
|
-
/**
|
|
70
|
-
* 外部サービスからのレスポンス
|
|
71
|
-
*/
|
|
72
|
-
acceptedOffers?: IResultAcceptedOffer[];
|
|
73
66
|
}
|
|
74
67
|
export type ExcludedFieldsFromTicketPriceComponent = 'accounting' | 'id' | 'name' | 'priceCurrency' | 'valueAddedTaxIncluded';
|
|
75
68
|
export type ITicketPriceComponent = Omit<ICategoryCodeChargePriceComponent, ExcludedFieldsFromTicketPriceComponent> | Omit<IMovieTicketTypeChargePriceComponent, ExcludedFieldsFromTicketPriceComponent> | Omit<ITicketUnitPriceComponent, ExcludedFieldsFromTicketPriceComponent>;
|
|
@@ -18,7 +18,6 @@ export interface IResult {
|
|
|
18
18
|
priceCurrency: PriceCurrency;
|
|
19
19
|
requestBody?: IRequestBody;
|
|
20
20
|
responseBody: IResponseBody;
|
|
21
|
-
acceptedOffers: IResultAcceptedOffer[];
|
|
22
21
|
}
|
|
23
22
|
export import IItemOffered = OrderFactory.IMoneyTransfer;
|
|
24
23
|
export interface IAcceptedOffer extends Omit<IOffer, 'addOn' | 'availability' | 'availableAtOrFrom'> {
|
|
@@ -43,7 +43,6 @@ export type IResultAcceptedOffer = OrderFactory.IAcceptedOffer<OrderFactory.IPer
|
|
|
43
43
|
export interface IResult {
|
|
44
44
|
price: number;
|
|
45
45
|
priceCurrency: PriceCurrency;
|
|
46
|
-
acceptedOffers: IResultAcceptedOffer;
|
|
47
46
|
requestBody: RegisterServiceTransactionFactory.IStartParamsWithoutDetail;
|
|
48
47
|
responseBody: RegisterServiceTransactionFactory.ITransaction;
|
|
49
48
|
}
|
|
@@ -135,7 +135,7 @@ export interface IResultAsInvoice {
|
|
|
135
135
|
}
|
|
136
136
|
export type IResult = IResultAsInvoice | IResultAsInvoice[];
|
|
137
137
|
export interface IPurpose {
|
|
138
|
-
typeOf: TransactionType;
|
|
138
|
+
typeOf: TransactionType.PlaceOrder;
|
|
139
139
|
id: string;
|
|
140
140
|
}
|
|
141
141
|
export declare enum ServiceIdentifier {
|
|
@@ -156,7 +156,7 @@ export interface IConfirmParams {
|
|
|
156
156
|
*/
|
|
157
157
|
result?: IResultParams;
|
|
158
158
|
}
|
|
159
|
-
export type IOrderAsResult = Pick<OrderFactory.IOrder, 'confirmationNumber' | '
|
|
159
|
+
export type IOrderAsResult = Pick<OrderFactory.IOrder, 'confirmationNumber' | 'orderedItem' | 'identifier' | 'orderDate' | 'orderNumber' | 'orderStatus' | 'price' | 'priceCurrency' | 'typeOf' | 'url'>;
|
|
160
160
|
export interface IAuthorizeActionAsResult {
|
|
161
161
|
id: string;
|
|
162
162
|
}
|