@chevre/factory 9.5.0-alpha.6 → 9.5.0-alpha.7
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.
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import type { COAFactory } from '@coasystems/factory';
|
|
2
1
|
import { IAction as IBaseAction } from '../../../action';
|
|
3
2
|
import { ActionType } from '../../../actionType';
|
|
4
3
|
import { IAcceptedTicketOfferWithoutDetail, IObjectWithoutDetail, IPermitIssuedThroughFaceToFace, IPermitIssuedThroughMembershipService } from '../../../assetTransaction/reserve';
|
|
5
|
-
import { AssetTransactionType } from '../../../assetTransactionType';
|
|
6
4
|
import { IEvent } from '../../../event/screeningEvent';
|
|
7
5
|
import { OfferType } from '../../../offerType';
|
|
8
6
|
import { IPriceSpecification as IUnitPriceSpecification } from '../../../priceSpecification/unitPriceSpecification';
|
|
@@ -48,32 +46,24 @@ export interface IResult {
|
|
|
48
46
|
}
|
|
49
47
|
export type IAcceptedOfferWithoutDetail = IAcceptedTicketOfferWithoutDetail;
|
|
50
48
|
export { IObjectWithoutDetail };
|
|
51
|
-
export type ICOAPendingTransaction = Pick<COAFactory.reserve.IDelTmpReserveArgs, 'theaterCode' | 'dateJouei' | 'titleCode' | 'titleBranchNum' | 'timeBegin' | 'tmpReserveNum'> & {
|
|
52
|
-
transactionNumber: string;
|
|
53
|
-
typeOf: AssetTransactionType.COAReserveTransaction;
|
|
54
|
-
};
|
|
55
49
|
export type IEventInObject = Pick<IEvent, 'id' | 'typeOf'>;
|
|
56
50
|
/**
|
|
57
51
|
* 興行オファー承認アクション対象
|
|
58
52
|
*/
|
|
59
53
|
export interface IObject {
|
|
60
54
|
typeOf: ObjectType.SeatReservation;
|
|
61
|
-
event?: IEventInObject;
|
|
62
55
|
id?: never;
|
|
56
|
+
event?: never;
|
|
63
57
|
pendingTransaction?: never;
|
|
64
58
|
}
|
|
65
59
|
export interface IObject4COA {
|
|
66
60
|
typeOf: ObjectType.SeatReservation;
|
|
67
|
-
event?: IEventInObject;
|
|
68
61
|
/**
|
|
69
62
|
* recipe有(仮予約時)のCOA興行オファー採用アクションID(2024-06-11~)
|
|
70
63
|
*/
|
|
71
64
|
id: string;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
* discontinue on Chevre(2024-06-22~)
|
|
75
|
-
*/
|
|
76
|
-
pendingTransaction?: ICOAPendingTransaction;
|
|
65
|
+
event?: never;
|
|
66
|
+
pendingTransaction?: never;
|
|
77
67
|
}
|
|
78
68
|
export interface IAttributes extends IBaseAttributes<IObject | IObject4COA, IResult> {
|
|
79
69
|
typeOf: ActionType.AuthorizeAction;
|