@chevre/factory 9.0.0-alpha.1 → 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
|
}
|
|
@@ -190,11 +193,23 @@ export interface ISearchConditions extends IBaseSearchConditions<TransactionType
|
|
|
190
193
|
$eq?: string;
|
|
191
194
|
};
|
|
192
195
|
};
|
|
196
|
+
/**
|
|
197
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
198
|
+
*/
|
|
193
199
|
result?: {
|
|
200
|
+
/**
|
|
201
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
202
|
+
*/
|
|
194
203
|
order?: {
|
|
204
|
+
/**
|
|
205
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
206
|
+
*/
|
|
195
207
|
confirmationNumber?: {
|
|
196
208
|
$eq?: string;
|
|
197
209
|
};
|
|
210
|
+
/**
|
|
211
|
+
* @deprecated 2026-06-16移行廃止予定なので使用しないこと
|
|
212
|
+
*/
|
|
198
213
|
orderNumbers?: string[];
|
|
199
214
|
};
|
|
200
215
|
};
|