@chevre/factory 4.321.1 → 4.323.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.
|
@@ -83,19 +83,29 @@ export declare type IAcceptedOffer4COA = Pick<ReserveTransactionFactory.IAccepte
|
|
|
83
83
|
price: number;
|
|
84
84
|
priceSpecification: OrderFactory.ITicketPriceSpecification;
|
|
85
85
|
};
|
|
86
|
+
export interface IAppliesToSurfrock {
|
|
87
|
+
/**
|
|
88
|
+
* コード
|
|
89
|
+
*/
|
|
90
|
+
identifier?: string;
|
|
91
|
+
serviceOutput?: {
|
|
92
|
+
/**
|
|
93
|
+
* 決済方法区分
|
|
94
|
+
*/
|
|
95
|
+
typeOf?: string;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
export interface IPriceSpecification4COA {
|
|
99
|
+
appliesToSurfrock?: IAppliesToSurfrock;
|
|
100
|
+
}
|
|
86
101
|
export declare type IAcceptedOfferBeforeAuthorize4COA = Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'itemOffered' | 'additionalProperty'> & Pick<OfferFactory.IOffer, 'name' | 'additionalProperty'> & {
|
|
87
102
|
itemOffered: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
88
103
|
ticketInfo: Omit<ICOATicketInfoWithDetails, 'salePrice' | 'usePoint'>;
|
|
89
|
-
priceSpecification:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
typeOf?: string;
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
};
|
|
104
|
+
priceSpecification: IPriceSpecification4COA;
|
|
105
|
+
};
|
|
106
|
+
export declare type IAcceptedOfferWithoutDetail4COA = COAReservationOfferFactory.IOffer & {
|
|
107
|
+
priceSpecification?: IPriceSpecification4COA;
|
|
97
108
|
};
|
|
98
|
-
export declare type IAcceptedOfferWithoutDetail4COA = COAReservationOfferFactory.IOffer;
|
|
99
109
|
export interface IObjectWithoutDetail4COA {
|
|
100
110
|
acceptedOffer: IAcceptedOfferWithoutDetail4COA[];
|
|
101
111
|
event: {
|
|
@@ -3,6 +3,8 @@ import { IExtendId } from '../autoGenerated';
|
|
|
3
3
|
import { ICategoryCode } from '../categoryCode';
|
|
4
4
|
import { CreativeWorkType } from '../creativeWorkType';
|
|
5
5
|
import { EventType } from '../eventType';
|
|
6
|
+
import { IOfferCatalog } from '../offerCatalog';
|
|
7
|
+
import { OfferType } from '../offerType';
|
|
6
8
|
import { OrganizationType } from '../organizationType';
|
|
7
9
|
import { PlaceType } from '../placeType';
|
|
8
10
|
import { ProductType } from '../product';
|
|
@@ -10,7 +12,8 @@ import * as TaskFactory from '../task';
|
|
|
10
12
|
import { TaskName } from '../taskName';
|
|
11
13
|
export declare type AccountTitleType = IAccountTitle['typeOf'];
|
|
12
14
|
export declare type CategoryCodeType = ICategoryCode['typeOf'];
|
|
13
|
-
export declare type
|
|
15
|
+
export declare type OfferCatalogType = IOfferCatalog['typeOf'];
|
|
16
|
+
export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType | OfferCatalogType | OfferType.Offer;
|
|
14
17
|
export interface IData4common {
|
|
15
18
|
id: string[];
|
|
16
19
|
project: {
|