@chevre/factory 8.2.0-alpha.8 → 8.2.0-alpha.9
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.
|
@@ -39,14 +39,11 @@ export interface IObject {
|
|
|
39
39
|
* 注文番号
|
|
40
40
|
*/
|
|
41
41
|
orderNumber?: string;
|
|
42
|
-
/**
|
|
43
|
-
* 注文名称
|
|
44
|
-
*/
|
|
45
|
-
name?: string;
|
|
46
42
|
/**
|
|
47
43
|
* 決済URLでの決済情報
|
|
48
44
|
*/
|
|
49
45
|
paymentMethods?: IPaymentMethodByPaymentUrl;
|
|
46
|
+
name?: never;
|
|
50
47
|
identifier?: never;
|
|
51
48
|
clientUser?: never;
|
|
52
49
|
passport?: never;
|
|
@@ -62,10 +59,7 @@ export interface IStartParamsWithoutDetail {
|
|
|
62
59
|
clientUser?: IClientUserBeforeStart;
|
|
63
60
|
customer?: ICustomerInObject;
|
|
64
61
|
passport?: IPassportBeforeStart;
|
|
65
|
-
|
|
66
|
-
* 注文名称
|
|
67
|
-
*/
|
|
68
|
-
name?: string;
|
|
62
|
+
name?: never;
|
|
69
63
|
};
|
|
70
64
|
}
|
|
71
65
|
export type ISeller = IBaseSeller & Pick<IOrderSeller, 'additionalProperty'>;
|