@chevre/factory 4.392.0-alpha.3 → 4.392.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.
|
@@ -157,7 +157,7 @@ export interface IObjectWithoutDetail4COA {
|
|
|
157
157
|
/**
|
|
158
158
|
* 受入COA興行オファー
|
|
159
159
|
*/
|
|
160
|
-
export type IAcceptedOffer4COA = Pick<IAcceptedOfferWithoutDetail4chevre, 'id' | 'itemOffered' | 'additionalProperty'> & Pick<IOffer, 'typeOf' | 'id' | 'identifier' | 'name' | 'priceCurrency' | 'additionalProperty'
|
|
160
|
+
export type IAcceptedOffer4COA = Pick<IAcceptedOfferWithoutDetail4chevre, 'id' | 'itemOffered' | 'additionalProperty'> & Pick<IOffer, 'typeOf' | 'id' | 'identifier' | 'name' | 'priceCurrency' | 'additionalProperty'> & {
|
|
161
161
|
/**
|
|
162
162
|
* 単価オファーid
|
|
163
163
|
*/
|
|
@@ -176,9 +176,16 @@ export type IAcceptedOffer4COA = Pick<IAcceptedOfferWithoutDetail4chevre, 'id' |
|
|
|
176
176
|
seatNumber?: never;
|
|
177
177
|
seatSection?: never;
|
|
178
178
|
};
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
/**
|
|
180
|
+
* 承認前の受入オファー(COA仮予約済)
|
|
181
|
+
*/
|
|
182
|
+
export type IAcceptedOfferBeforeAuthorize4COA = Pick<IAcceptedOfferWithoutDetail4chevre, 'additionalProperty'> & Pick<IOffer, 'name' | 'additionalProperty'> & {
|
|
183
|
+
itemOffered: Pick<IAcceptedTicketOfferItemOffered, 'serviceOutput'>;
|
|
181
184
|
ticketInfo: Omit<ICOATicketInfoWithDetails, 'salePrice' | 'usePoint'>;
|
|
185
|
+
/**
|
|
186
|
+
* 適用surfrock指定
|
|
187
|
+
* interfacesのmemberClients設定に含まれるクライアントでの注文取引であれば、強制的に指定される
|
|
188
|
+
*/
|
|
182
189
|
priceSpecification: IPriceSpecification4COA;
|
|
183
190
|
};
|
|
184
191
|
export { IRecipe, IUpdTmpReserveSeatArgs, IUpdTmpReserveSeatResult };
|
package/lib/service/webAPI.d.ts
CHANGED