@chevre/domain 25.2.0-alpha.31 → 25.2.0-alpha.32
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.
|
@@ -20,7 +20,7 @@ export declare function createStartParams(params: factory.assetTransaction.pay.I
|
|
|
20
20
|
*/
|
|
21
21
|
id: string;
|
|
22
22
|
}[];
|
|
23
|
-
instrument: factory.action.trade.pay.
|
|
23
|
+
instrument: factory.action.trade.pay.IPayTransactionInstrument[];
|
|
24
24
|
}, options: {
|
|
25
25
|
checkedAction: {
|
|
26
26
|
id: string;
|
|
@@ -44,7 +44,7 @@ export { IPaymentAgencyTransaction };
|
|
|
44
44
|
* 取引開始
|
|
45
45
|
*/
|
|
46
46
|
export declare function start(params: factory.assetTransaction.pay.IStartParamsWithoutDetail & {
|
|
47
|
-
instrument: factory.action.trade.pay.
|
|
47
|
+
instrument: factory.action.trade.pay.IPayTransactionInstrument[];
|
|
48
48
|
}, options: {
|
|
49
49
|
pendingPaymentAgencyTransaction?: IPaymentAgencyTransaction;
|
|
50
50
|
/**
|
|
@@ -46,7 +46,7 @@ export declare function creatPayTransactionStartParams(params: {
|
|
|
46
46
|
*/
|
|
47
47
|
instrument: factory.action.trade.pay.IAcceptedPaymentMethodOfferAsInstrument[];
|
|
48
48
|
}): factory.assetTransaction.pay.IStartParamsWithoutDetail & {
|
|
49
|
-
instrument: factory.action.trade.pay.
|
|
49
|
+
instrument: factory.action.trade.pay.IPayTransactionInstrument[];
|
|
50
50
|
};
|
|
51
51
|
export declare function createMovieTicket(params: factory.action.trade.pay.IMovieTicket): factory.action.trade.pay.IMovieTicket;
|
|
52
52
|
/**
|
|
@@ -52,8 +52,10 @@ function call(params) {
|
|
|
52
52
|
const useCredentialsRepo = typeof paymentServiceId === 'string' && paymentServiceId !== ''
|
|
53
53
|
&& typeof credentialsExpireInSeconds === 'number' && credentialsExpireInSeconds > 0;
|
|
54
54
|
try {
|
|
55
|
+
const { instrument: _instrument, project: _project, ...authorizeParams } = params.data;
|
|
55
56
|
await (0, any_1.authorize)({
|
|
56
|
-
...
|
|
57
|
+
...authorizeParams,
|
|
58
|
+
project: { id: params.project.id },
|
|
57
59
|
instrument: (Array.isArray(params.data.instrument)) ? params.data.instrument : [],
|
|
58
60
|
sameAs: { id: params.id } // タスクIDを関連付け(2024-04-20~)
|
|
59
61
|
})({
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@aws-sdk/client-cognito-identity-provider": "3.600.0",
|
|
13
13
|
"@aws-sdk/credential-providers": "3.600.0",
|
|
14
|
-
"@chevre/factory": "9.5.0-alpha.
|
|
14
|
+
"@chevre/factory": "9.5.0-alpha.12",
|
|
15
15
|
"@motionpicture/coa-service": "10.0.0",
|
|
16
16
|
"@motionpicture/gmo-service": "6.1.0-alpha.0",
|
|
17
17
|
"@sendgrid/client": "8.1.4",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"postversion": "git push origin --tags",
|
|
93
93
|
"prepublishOnly": "npm run clean && npm run build"
|
|
94
94
|
},
|
|
95
|
-
"version": "25.2.0-alpha.
|
|
95
|
+
"version": "25.2.0-alpha.32"
|
|
96
96
|
}
|