@chevre/factory 4.329.0-alpha.10 → 4.329.0-alpha.11
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/offer.d.ts +1 -1
- package/lib/order.d.ts +9 -1
- package/lib/priceSpecification.d.ts +3 -4
- package/package.json +1 -1
package/lib/offer.d.ts
CHANGED
package/lib/order.d.ts
CHANGED
|
@@ -412,7 +412,6 @@ export interface IReservationForSearchConditions {
|
|
|
412
412
|
};
|
|
413
413
|
}
|
|
414
414
|
export interface ISellerSearchConditions {
|
|
415
|
-
typeOf?: string;
|
|
416
415
|
/**
|
|
417
416
|
* 販売者IDリスト
|
|
418
417
|
*/
|
|
@@ -477,6 +476,7 @@ export interface IPaymentMethodsSearchConditions {
|
|
|
477
476
|
};
|
|
478
477
|
/**
|
|
479
478
|
* 決済方法区分コード
|
|
479
|
+
* @deprecated Use paymentMethod.identifier
|
|
480
480
|
*/
|
|
481
481
|
typeOfs?: string[];
|
|
482
482
|
/**
|
|
@@ -484,6 +484,14 @@ export interface IPaymentMethodsSearchConditions {
|
|
|
484
484
|
* 決済代行オーダーIDなど
|
|
485
485
|
*/
|
|
486
486
|
paymentMethodIds?: string[];
|
|
487
|
+
paymentMethod?: {
|
|
488
|
+
/**
|
|
489
|
+
* 決済方法区分コード
|
|
490
|
+
*/
|
|
491
|
+
identifier?: {
|
|
492
|
+
$in?: string[];
|
|
493
|
+
};
|
|
494
|
+
};
|
|
487
495
|
}
|
|
488
496
|
export interface IAcceptedOffersSearchConditions {
|
|
489
497
|
itemOffered?: {
|
|
@@ -15,10 +15,6 @@ export interface IAccounting {
|
|
|
15
15
|
* 営業収益
|
|
16
16
|
*/
|
|
17
17
|
operatingRevenue?: IAccountTitle;
|
|
18
|
-
/**
|
|
19
|
-
* 営業外収益
|
|
20
|
-
* 廃止(2022-10-31~)
|
|
21
|
-
*/
|
|
22
18
|
/**
|
|
23
19
|
* 売上金額
|
|
24
20
|
*/
|
|
@@ -34,6 +30,9 @@ export interface IPriceSpecification<T extends PriceSpecificationType> {
|
|
|
34
30
|
id?: string;
|
|
35
31
|
typeOf: T;
|
|
36
32
|
name?: string | IMultilingualString;
|
|
33
|
+
/**
|
|
34
|
+
* 適用数量
|
|
35
|
+
*/
|
|
37
36
|
eligibleQuantity?: IEligibleQuantity;
|
|
38
37
|
eligibleTransactionVolume?: IEligibleTransactionVolume;
|
|
39
38
|
/**
|