@chevre/factory 4.374.0-alpha.3 → 4.374.0-alpha.4
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { passport } from '@waiter/factory';
|
|
2
2
|
import { AccountType } from '../accountType';
|
|
3
3
|
import { IAttributes as IOrderActionAttributes } from '../action/trade/order';
|
|
4
|
-
import {
|
|
4
|
+
import { IPaymentMethodWithoutDetail } from '../assetTransaction/pay';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
|
6
6
|
import { IClientUser } from '../clientUser';
|
|
7
7
|
import { CreativeWorkType } from '../creativeWorkType';
|
|
@@ -25,23 +25,14 @@ export type IAgent = TransactionFactory.IAgent & {
|
|
|
25
25
|
};
|
|
26
26
|
export type ICustomer = OrderFactory.ICustomer;
|
|
27
27
|
export interface IPaymentMethodByPaymentUrl {
|
|
28
|
-
/**
|
|
29
|
-
* 決済方法区分
|
|
30
|
-
*/
|
|
31
|
-
typeOf: string;
|
|
32
28
|
paymentMethodId: string;
|
|
33
|
-
paymentUrl: string;
|
|
34
29
|
issuedThrough: {
|
|
35
30
|
/**
|
|
36
31
|
* 発行決済サービスID
|
|
37
32
|
*/
|
|
38
33
|
id: string;
|
|
39
34
|
};
|
|
40
|
-
|
|
41
|
-
entryTranResult?: IEntryTranResult;
|
|
42
|
-
execTranArgs?: IExecTranArgs;
|
|
43
|
-
execTranResult?: IExecTranResult | IExecTran3dsResult;
|
|
44
|
-
paymentMethod?: IPaymentMethodWithoutDetail;
|
|
35
|
+
paymentMethod: IPaymentMethodWithoutDetail;
|
|
45
36
|
}
|
|
46
37
|
/**
|
|
47
38
|
* 注文特典口座
|
|
@@ -74,11 +65,11 @@ export interface IObject {
|
|
|
74
65
|
/**
|
|
75
66
|
* WAITER許可証トークン
|
|
76
67
|
*/
|
|
77
|
-
passportToken?:
|
|
68
|
+
passportToken?: passport.IEncodedPassport;
|
|
78
69
|
/**
|
|
79
70
|
* WAITER許可証
|
|
80
71
|
*/
|
|
81
|
-
passport?:
|
|
72
|
+
passport?: passport.IPassport;
|
|
82
73
|
}
|
|
83
74
|
export interface IStartParamsWithoutDetail {
|
|
84
75
|
project: Pick<IProject, 'id' | 'typeOf'>;
|