@chevre/factory 4.329.0-alpha.11 → 4.329.0-alpha.13
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.
|
@@ -113,10 +113,15 @@ export interface IObjectWithoutDetail4COA {
|
|
|
113
113
|
export declare type IAcceptedOffer<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IAcceptedOffer4COA : T extends WebAPIFactory.Identifier.Chevre ? IAcceptedOffer4chevre : never;
|
|
114
114
|
export declare type IAcceptedOfferWithoutDetail<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IAcceptedOfferWithoutDetail4COA : T extends WebAPIFactory.Identifier.Chevre ? IAcceptedOfferWithoutDetail4chevre : never;
|
|
115
115
|
export declare type IObjectWithoutDetail<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? IObjectWithoutDetail4COA : T extends WebAPIFactory.Identifier.Chevre ? IObjectWithoutDetail4chevre : never;
|
|
116
|
-
export
|
|
117
|
-
|
|
116
|
+
export declare type ICOAPendingTransaction = Pick<COA.factory.reserve.IDelTmpReserveArgs, 'theaterCode' | 'dateJouei' | 'titleCode' | 'titleBranchNum' | 'timeBegin' | 'tmpReserveNum'> & {
|
|
117
|
+
transactionNumber: string;
|
|
118
|
+
typeOf: 'COAReserveTransaction';
|
|
119
|
+
};
|
|
120
|
+
export interface IChevrePendingTransaction {
|
|
118
121
|
transactionNumber: string;
|
|
122
|
+
typeOf: AssetTransactionType.Reserve;
|
|
119
123
|
}
|
|
124
|
+
export declare type IPendingTransaction<T extends WebAPIFactory.Identifier> = T extends WebAPIFactory.Identifier.COA ? ICOAPendingTransaction : T extends WebAPIFactory.Identifier.Chevre ? IChevrePendingTransaction : never;
|
|
120
125
|
export declare type IEvent = Pick<ScreeningEventFactory.IEvent, 'id' | 'typeOf'> & {
|
|
121
126
|
offers: {
|
|
122
127
|
offeredThrough: ScreeningEventFactory.IOfferedThrough;
|
|
@@ -130,9 +135,9 @@ export declare type IObject<T extends WebAPIFactory.Identifier> = {
|
|
|
130
135
|
event?: IEvent;
|
|
131
136
|
acceptedOffer: IAcceptedOffer<T>[];
|
|
132
137
|
/**
|
|
133
|
-
*
|
|
138
|
+
* 進行中取引
|
|
134
139
|
*/
|
|
135
|
-
pendingTransaction?: IPendingTransaction
|
|
140
|
+
pendingTransaction?: IPendingTransaction<T>;
|
|
136
141
|
} & Omit<IObjectWithoutDetail<T>, 'acceptedOffer' | 'reservationFor'>;
|
|
137
142
|
export interface IPurpose {
|
|
138
143
|
typeOf: TransactionType.PlaceOrder;
|
|
@@ -151,6 +156,6 @@ export interface IAttributes<T extends WebAPIFactory.Identifier> extends Authori
|
|
|
151
156
|
instrument: IInstrument<T>;
|
|
152
157
|
}
|
|
153
158
|
/**
|
|
154
|
-
*
|
|
159
|
+
* 興行オファー承認アクション
|
|
155
160
|
*/
|
|
156
161
|
export declare type IAction<T extends WebAPIFactory.Identifier> = ActionFactory.IAction<IAttributes<T>>;
|
package/lib/unitPriceOffer.d.ts
CHANGED