@chevre/factory 4.255.0 → 4.256.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.
@@ -100,6 +100,32 @@ export interface IAcceptedAddOn {
100
100
  id?: string;
101
101
  }
102
102
  export declare type IAcceptedPaymentMethod = IMovieTicket;
103
+ export interface ISingleAcceptedAppliesToMovieTicket {
104
+ /**
105
+ * 適用決済カード識別子
106
+ */
107
+ identifier?: string;
108
+ }
109
+ /**
110
+ * 複数承認適用決済カード
111
+ * 複数指定の場合、カード識別子と決済方法区分の組み合わせで指定します
112
+ */
113
+ export declare type IMultipleAcceptedAppliesToMovieTicket = {
114
+ /**
115
+ * 適用決済カード識別子
116
+ */
117
+ identifier?: string;
118
+ serviceOutput?: {
119
+ /**
120
+ * 決済方法区分
121
+ */
122
+ typeOf?: string;
123
+ };
124
+ }[];
125
+ /**
126
+ * 承認適用決済カード
127
+ */
128
+ export declare type IAcceptedAppliesToMovieTicket = ISingleAcceptedAppliesToMovieTicket | IMultipleAcceptedAppliesToMovieTicket;
103
129
  /**
104
130
  * 受け入れられたチケットオファー(詳細なし)
105
131
  */
@@ -120,12 +146,7 @@ export interface IAcceptedTicketOfferWithoutDetail {
120
146
  paymentMethod?: IAcceptedPaymentMethod;
121
147
  additionalProperty?: IPropertyValue<string>[];
122
148
  priceSpecification?: {
123
- appliesToMovieTicket?: {
124
- /**
125
- * 適用MovieTicket購入番号
126
- */
127
- identifier?: string;
128
- };
149
+ appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
129
150
  };
130
151
  }
131
152
  /**
@@ -138,12 +159,7 @@ export interface IAcceptedOffer4object {
138
159
  id: string;
139
160
  itemOffered: IAcceptedTicketOfferItemOffered4object;
140
161
  priceSpecification?: {
141
- appliesToMovieTicket?: {
142
- /**
143
- * 適用MovieTicket購入番号
144
- */
145
- identifier?: string;
146
- };
162
+ appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
147
163
  };
148
164
  }
149
165
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.255.0",
3
+ "version": "4.256.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",