@chevre/factory 4.375.0-alpha.19 → 4.375.0-alpha.20
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.
|
@@ -22,7 +22,7 @@ export type IAgent = TransactionFactory.IAgent & {
|
|
|
22
22
|
memberOfToken?: string;
|
|
23
23
|
memberOfPayload?: IMemberOfPayload;
|
|
24
24
|
};
|
|
25
|
-
export type
|
|
25
|
+
export type ICustomerInObject = Pick<OrderFactory.ICustomer, 'id' | 'identifier' | 'typeOf'>;
|
|
26
26
|
export interface IPaymentMethodByPaymentUrl {
|
|
27
27
|
/**
|
|
28
28
|
* 決済採用時に発行済の決済方法ID
|
|
@@ -39,8 +39,8 @@ export interface IAwardAccount {
|
|
|
39
39
|
}
|
|
40
40
|
export interface IObject {
|
|
41
41
|
clientUser?: Omit<IClientUser, 'scope' | 'scopes'>;
|
|
42
|
-
broker?: OrderFactory.IBroker
|
|
43
|
-
customer?:
|
|
42
|
+
broker?: Pick<OrderFactory.IBroker, 'id' | 'typeOf'>;
|
|
43
|
+
customer?: ICustomerInObject;
|
|
44
44
|
identifier?: OrderFactory.IIdentifier;
|
|
45
45
|
/**
|
|
46
46
|
* 確認番号
|
|
@@ -75,7 +75,7 @@ export interface IStartParamsWithoutDetail {
|
|
|
75
75
|
};
|
|
76
76
|
object: {
|
|
77
77
|
clientUser?: Omit<IClientUser, 'scope' | 'scopes'>;
|
|
78
|
-
customer?:
|
|
78
|
+
customer?: ICustomerInObject;
|
|
79
79
|
passport?: TransactionFactory.IPassportBeforeStart;
|
|
80
80
|
/**
|
|
81
81
|
* 注文名称
|