@chevre/factory 4.381.0-alpha.3 → 4.381.0-alpha.4
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,7 +1,7 @@
|
|
|
1
1
|
import type * as COA from '@motionpicture/coa-service';
|
|
2
2
|
import * as ActionFactory from '../../../action';
|
|
3
3
|
import { ActionType } from '../../../actionType';
|
|
4
|
-
import { IAcceptedTicketOfferItemOffered, IAcceptedTicketOfferWithoutDetail as IAcceptedOfferWithoutDetail4chevre, IObjectWithoutDetail as IObjectWithoutDetail4chevre } from '../../../assetTransaction/reserve';
|
|
4
|
+
import { IAcceptedTicketOfferItemOffered, IAcceptedTicketOfferWithoutDetail as IAcceptedOfferWithoutDetail4chevre, IObjectWithoutDetail as IObjectWithoutDetail4chevre, IPermitIssuedThroughFaceToFace, IPermitIssuedThroughMembershipService } from '../../../assetTransaction/reserve';
|
|
5
5
|
import { AssetTransactionType } from '../../../assetTransactionType';
|
|
6
6
|
import { IEvent } from '../../../event/screeningEvent';
|
|
7
7
|
import { IOffer } from '../../../offer';
|
|
@@ -49,12 +49,24 @@ export interface IAcceptedOfferInResult extends Pick<ITicketOffer, 'acceptedPaym
|
|
|
49
49
|
*/
|
|
50
50
|
priceSpecification?: Pick<IUnitPriceSpecification, 'eligibleQuantity' | 'eligibleTransactionVolume'>;
|
|
51
51
|
}
|
|
52
|
+
export type IAggregateProgramMembershipUsed = (IPermitIssuedThroughFaceToFace | IPermitIssuedThroughMembershipService)[];
|
|
53
|
+
/**
|
|
54
|
+
* 興行オファー承認結果としての集計オファー
|
|
55
|
+
*/
|
|
52
56
|
export interface IResultAsAggregateOffer {
|
|
53
57
|
typeOf?: OfferType.AggregateOffer;
|
|
54
58
|
/**
|
|
55
59
|
* オファーIDごとの集計
|
|
56
60
|
*/
|
|
57
61
|
offers?: IAcceptedOfferInResult[];
|
|
62
|
+
itemOffered?: {
|
|
63
|
+
serviceOutput: {
|
|
64
|
+
/**
|
|
65
|
+
* programMembershipUsed required(2024-08-15~)
|
|
66
|
+
*/
|
|
67
|
+
programMembershipUsed: IAggregateProgramMembershipUsed;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
58
70
|
}
|
|
59
71
|
export interface IResult extends IResultAsAggregateOffer {
|
|
60
72
|
/**
|