@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' | 'eligibleMonetaryAmount'> & {
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
- export type IAcceptedOfferBeforeAuthorize4COA = Pick<IAcceptedOfferWithoutDetail4chevre, 'itemOffered' | 'additionalProperty'> & Pick<IOffer, 'name' | 'additionalProperty'> & {
180
- itemOffered: IAcceptedTicketOfferItemOffered;
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 };
@@ -28,6 +28,10 @@ export interface IAvailableChannel {
28
28
  * 会員オファーを利用可能な注文取引クライアント
29
29
  */
30
30
  memberClients?: string[];
31
+ /**
32
+ * 会員クーポンとして利用可能な決済方法区分
33
+ */
34
+ paymentMethodType4membershipCoupon: string;
31
35
  }
32
36
  /**
33
37
  * 外部サービス設定を含むWebAPI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.392.0-alpha.3",
3
+ "version": "4.392.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",