@chevre/factory 8.2.0-alpha.4 → 8.2.0-alpha.5
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 +2 -9
- package/package.json +1 -1
package/lib/chevre/order.d.ts
CHANGED
|
@@ -532,14 +532,7 @@ export interface IAcceptedOffersSearchConditions {
|
|
|
532
532
|
* 予約番号
|
|
533
533
|
*/
|
|
534
534
|
reservationNumbers?: string[];
|
|
535
|
-
reservedTicket?:
|
|
536
|
-
/**
|
|
537
|
-
* 予約チケット識別子
|
|
538
|
-
*/
|
|
539
|
-
identifier?: {
|
|
540
|
-
$eq?: string;
|
|
541
|
-
};
|
|
542
|
-
};
|
|
535
|
+
reservedTicket?: never;
|
|
543
536
|
};
|
|
544
537
|
serialNumber?: {
|
|
545
538
|
$eq?: string;
|
|
@@ -618,7 +611,7 @@ export interface ISearchConditions {
|
|
|
618
611
|
*/
|
|
619
612
|
paymentMethods?: IPaymentMethodsSearchConditions;
|
|
620
613
|
/**
|
|
621
|
-
*
|
|
614
|
+
* 注文オファー条件
|
|
622
615
|
*/
|
|
623
616
|
acceptedOffers?: IAcceptedOffersSearchConditions;
|
|
624
617
|
}
|