@chevre/factory 9.0.0-alpha.0 → 9.0.0-alpha.2
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.
package/lib/chevre/order.d.ts
CHANGED
|
@@ -222,7 +222,9 @@ export type ITicketPriceComponent = ICategoryChargePriceComponent | IMovieTicket
|
|
|
222
222
|
* 注文オファーの価格仕様
|
|
223
223
|
*/
|
|
224
224
|
export type ITicketPriceSpecification = Pick<ICompoundPriceSpecification<ITicketPriceComponent>, 'priceComponent' | 'priceCurrency' | 'typeOf' | 'valueAddedTaxIncluded'>;
|
|
225
|
-
export type IOfferOptimized4acceptedOffer = Pick<IOffer, 'typeOf' | 'id' | 'itemOffered' | 'offeredThrough'
|
|
225
|
+
export type IOfferOptimized4acceptedOffer = Pick<IOffer, 'typeOf' | 'id' | 'itemOffered' | 'offeredThrough'> & {
|
|
226
|
+
name?: never;
|
|
227
|
+
};
|
|
226
228
|
export interface ICOAAcceptedOffer extends IOfferOptimized4acceptedOffer {
|
|
227
229
|
/**
|
|
228
230
|
* オファー対象アイテム
|
|
@@ -137,10 +137,12 @@ export interface IResult {
|
|
|
137
137
|
/**
|
|
138
138
|
* 注文
|
|
139
139
|
* optional(2026-06-15~)
|
|
140
|
+
* @deprecated
|
|
140
141
|
*/
|
|
141
142
|
order?: IOrderAsResult;
|
|
142
143
|
/**
|
|
143
144
|
* 取引確定時の同期的な注文コード発行に対応(2024-02-05~)
|
|
145
|
+
* @deprecated
|
|
144
146
|
*/
|
|
145
147
|
code?: string;
|
|
146
148
|
/**
|
|
@@ -149,6 +151,7 @@ export interface IResult {
|
|
|
149
151
|
authorizeActions?: IAuthorizeActionAsResult[];
|
|
150
152
|
/**
|
|
151
153
|
* オファー数(2024-01-17~)
|
|
154
|
+
* @deprecated
|
|
152
155
|
*/
|
|
153
156
|
numAcceptedOffers?: number;
|
|
154
157
|
}
|
|
@@ -183,15 +186,30 @@ export interface ISearchConditions extends IBaseSearchConditions<TransactionType
|
|
|
183
186
|
ids?: string[];
|
|
184
187
|
};
|
|
185
188
|
object?: {
|
|
189
|
+
confirmationNumber?: {
|
|
190
|
+
$eq?: string;
|
|
191
|
+
};
|
|
186
192
|
orderNumber?: {
|
|
187
193
|
$eq?: string;
|
|
188
194
|
};
|
|
189
195
|
};
|
|
196
|
+
/**
|
|
197
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
198
|
+
*/
|
|
190
199
|
result?: {
|
|
200
|
+
/**
|
|
201
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
202
|
+
*/
|
|
191
203
|
order?: {
|
|
204
|
+
/**
|
|
205
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
206
|
+
*/
|
|
192
207
|
confirmationNumber?: {
|
|
193
208
|
$eq?: string;
|
|
194
209
|
};
|
|
210
|
+
/**
|
|
211
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
212
|
+
*/
|
|
195
213
|
orderNumbers?: string[];
|
|
196
214
|
};
|
|
197
215
|
};
|