@chevre/domain 24.0.0-alpha.66 → 24.0.0-alpha.67
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/chevre/repo/factory/reservation/minimizeReservationFor.js +1 -1
- package/lib/chevre/repo/paymentMethod/creditCard.d.ts +1 -1
- package/lib/chevre/service/assetTransaction/pay/searchGMOTrade.d.ts +1 -1
- package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard.d.ts +4 -4
- package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard3ds.d.ts +5 -5
- package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCard3dsResult2recipe.d.ts +2 -2
- package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCardResult2recipe.d.ts +4 -4
- package/lib/chevre/service/payment/creditCard/factory.d.ts +8 -8
- package/lib/chevre/service/payment/creditCard/searchGMOTrade.d.ts +1 -1
- package/package.json +3 -3
|
@@ -38,6 +38,6 @@ function minimizeReservationFor(params) {
|
|
|
38
38
|
location: minimizeRoom(location),
|
|
39
39
|
superEvent: minimizeSuperEvent(superEvent)
|
|
40
40
|
};
|
|
41
|
-
console.log('minimizeReservationFor processed.', JSON.stringify(params), '->', JSON.stringify(minimizedReservationFor));
|
|
41
|
+
// console.log('minimizeReservationFor processed.', JSON.stringify(params), '->', JSON.stringify(minimizedReservationFor));
|
|
42
42
|
return { minimizedReservationFor };
|
|
43
43
|
}
|
|
@@ -2,7 +2,7 @@ import * as GMO from '@motionpicture/gmo-service';
|
|
|
2
2
|
import { factory } from '../../factory';
|
|
3
3
|
export type IUncheckedCardRaw = factory.paymentMethod.paymentCard.creditCard.IUncheckedCardRaw;
|
|
4
4
|
export type IUncheckedCardTokenized = factory.paymentMethod.paymentCard.creditCard.IUncheckedCardTokenized;
|
|
5
|
-
export type ISearchCardResult = GMO.factory.card.ISearchCardResult;
|
|
5
|
+
export type ISearchCardResult = GMO.factory.service.card.ISearchCardResult;
|
|
6
6
|
export interface IOptions {
|
|
7
7
|
/**
|
|
8
8
|
* GMOサイトID
|
|
@@ -17,4 +17,4 @@ export declare function searchGMOTrade(params: {
|
|
|
17
17
|
paymentService: PaymentServiceRepo;
|
|
18
18
|
paymentServiceProvider: PaymentServiceProviderRepo;
|
|
19
19
|
assetTransaction: AssetTransactionRepo;
|
|
20
|
-
}, settings: Settings) => Promise<GMO.factory.credit.ISearchTradeResult>;
|
|
20
|
+
}, settings: Settings) => Promise<GMO.factory.service.credit.ISearchTradeResult>;
|
|
@@ -2,10 +2,10 @@ import * as GMO from '@motionpicture/gmo-service';
|
|
|
2
2
|
import { AuthorizeInvoiceActionRepo } from '../../../../repo/action/authorizeInvoice';
|
|
3
3
|
import { factory } from '../../../../factory';
|
|
4
4
|
interface ICreditCardPaymentAgencyTransaction {
|
|
5
|
-
entryTranArgs: GMO.factory.credit.IEntryTranArgs;
|
|
6
|
-
entryTranResult: GMO.factory.credit.IEntryTranResult;
|
|
7
|
-
execTranArgs: GMO.factory.credit.IExecTranArgs;
|
|
8
|
-
execTranResult: GMO.factory.credit.IExecTranResult | GMO.factory.credit.IExecTran3dsResult;
|
|
5
|
+
entryTranArgs: GMO.factory.service.credit.IEntryTranArgs;
|
|
6
|
+
entryTranResult: GMO.factory.service.credit.IEntryTranResult;
|
|
7
|
+
execTranArgs: GMO.factory.service.credit.IExecTranArgs;
|
|
8
|
+
execTranResult: GMO.factory.service.credit.IExecTranResult | GMO.factory.service.credit.IExecTran3dsResult;
|
|
9
9
|
secureTran2Result?: never;
|
|
10
10
|
}
|
|
11
11
|
interface IProcessAuthorizeCreditCardRepos {
|
|
@@ -2,11 +2,11 @@ import type * as GMO from '@motionpicture/gmo-service';
|
|
|
2
2
|
import { AuthorizeInvoiceActionRepo } from '../../../../repo/action/authorizeInvoice';
|
|
3
3
|
import { factory } from '../../../../factory';
|
|
4
4
|
interface ICreditCardPaymentAgencyTransaction3ds {
|
|
5
|
-
entryTranArgs: GMO.factory.credit.IEntryTranArgs;
|
|
6
|
-
entryTranResult: GMO.factory.credit.IEntryTranResult;
|
|
7
|
-
execTranArgs: GMO.factory.credit.IExecTranArgs;
|
|
8
|
-
execTranResult: GMO.factory.credit.IExecTranResult | GMO.factory.credit.IExecTran3dsResult;
|
|
9
|
-
secureTran2Result: GMO.factory.credit.ISecureTran2Result;
|
|
5
|
+
entryTranArgs: GMO.factory.service.credit.IEntryTranArgs;
|
|
6
|
+
entryTranResult: GMO.factory.service.credit.IEntryTranResult;
|
|
7
|
+
execTranArgs: GMO.factory.service.credit.IExecTranArgs;
|
|
8
|
+
execTranResult: GMO.factory.service.credit.IExecTranResult | GMO.factory.service.credit.IExecTran3dsResult;
|
|
9
|
+
secureTran2Result: GMO.factory.service.credit.ISecureTran2Result;
|
|
10
10
|
}
|
|
11
11
|
interface IProcessAuthorizeCreditCard3dsRepos {
|
|
12
12
|
action?: never;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type * as GMO from '@motionpicture/gmo-service';
|
|
2
2
|
import { factory } from '../../../../factory';
|
|
3
3
|
interface IProcessAuthorizeCreditCard3dsResult {
|
|
4
|
-
secureTran2Args?: GMO.factory.credit.ISecureTran2Args;
|
|
5
|
-
secureTran2Result?: GMO.factory.credit.ISecureTran2Result;
|
|
4
|
+
secureTran2Args?: GMO.factory.service.credit.ISecureTran2Args;
|
|
5
|
+
secureTran2Result?: GMO.factory.service.credit.ISecureTran2Result;
|
|
6
6
|
}
|
|
7
7
|
declare function processAuthorizeCreditCard3dsResult2recipe(params: {
|
|
8
8
|
project: {
|
package/lib/chevre/service/payment/creditCard/authorize/processAuthorizeCreditCardResult2recipe.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type * as GMO from '@motionpicture/gmo-service';
|
|
2
2
|
import { factory } from '../../../../factory';
|
|
3
3
|
interface IProcessAuthorizeCreditCardResult {
|
|
4
|
-
entryTranArgs?: GMO.factory.credit.IEntryTranArgs;
|
|
5
|
-
entryTranResult?: GMO.factory.credit.IEntryTranResult;
|
|
6
|
-
execTranArgs?: GMO.factory.credit.IExecTranArgs;
|
|
7
|
-
execTranResult?: GMO.factory.credit.IExecTranResult;
|
|
4
|
+
entryTranArgs?: GMO.factory.service.credit.IEntryTranArgs;
|
|
5
|
+
entryTranResult?: GMO.factory.service.credit.IEntryTranResult;
|
|
6
|
+
execTranArgs?: GMO.factory.service.credit.IExecTranArgs;
|
|
7
|
+
execTranResult?: GMO.factory.service.credit.IExecTranResult;
|
|
8
8
|
}
|
|
9
9
|
declare function processAuthorizeCreditCardResult2recipe(params: {
|
|
10
10
|
project: {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import type * as GMO from '@motionpicture/gmo-service';
|
|
2
2
|
import { factory } from '../../../factory';
|
|
3
3
|
interface IProcessAlterTranResult {
|
|
4
|
-
searchTradeArgs?: GMO.factory.credit.ISearchTradeArgs & GMO.factory.credit.IOptionalSiteArgs;
|
|
5
|
-
searchTradeResult?: GMO.factory.credit.ISearchTradeResult;
|
|
6
|
-
alterTranArgs?: GMO.factory.credit.IAlterTranArgs & GMO.factory.credit.IOptionalSiteArgs;
|
|
7
|
-
alterTranResult?: GMO.factory.credit.IAlterTranResult;
|
|
4
|
+
searchTradeArgs?: GMO.factory.service.credit.ISearchTradeArgs & GMO.factory.service.credit.IOptionalSiteArgs;
|
|
5
|
+
searchTradeResult?: GMO.factory.service.credit.ISearchTradeResult;
|
|
6
|
+
alterTranArgs?: GMO.factory.service.credit.IAlterTranArgs & GMO.factory.service.credit.IOptionalSiteArgs;
|
|
7
|
+
alterTranResult?: GMO.factory.service.credit.IAlterTranResult;
|
|
8
8
|
}
|
|
9
9
|
interface IProcessAlterTranResult4refund {
|
|
10
|
-
searchTradeArgs?: GMO.factory.credit.ISearchTradeArgs & GMO.factory.credit.IOptionalSiteArgs;
|
|
11
|
-
searchTradeResult?: GMO.factory.credit.ISearchTradeResult;
|
|
10
|
+
searchTradeArgs?: GMO.factory.service.credit.ISearchTradeArgs & GMO.factory.service.credit.IOptionalSiteArgs;
|
|
11
|
+
searchTradeResult?: GMO.factory.service.credit.ISearchTradeResult;
|
|
12
12
|
searchTradeResultAsError?: factory.action.trade.refund.ISearchTradeResultAsError;
|
|
13
|
-
alterTranArgs?: GMO.factory.credit.IAlterTranArgs & GMO.factory.credit.IOptionalSiteArgs;
|
|
14
|
-
alterTranResult?: GMO.factory.credit.IAlterTranResult | factory.action.trade.refund.IAlterTranResultAsError;
|
|
13
|
+
alterTranArgs?: GMO.factory.service.credit.IAlterTranArgs & GMO.factory.service.credit.IOptionalSiteArgs;
|
|
14
|
+
alterTranResult?: GMO.factory.service.credit.IAlterTranResult | factory.action.trade.refund.IAlterTranResultAsError;
|
|
15
15
|
}
|
|
16
16
|
declare function processAlterTranResult2payRecipe(params: {
|
|
17
17
|
processAlterTranResults: IProcessAlterTranResult[];
|
|
@@ -10,5 +10,5 @@ declare function searchGMOTrade(params: {
|
|
|
10
10
|
paymentMethodId: string;
|
|
11
11
|
shopId: string;
|
|
12
12
|
shopPass: string;
|
|
13
|
-
}, settings: Settings): Promise<GMO.factory.credit.ISearchTradeResult>;
|
|
13
|
+
}, settings: Settings): Promise<GMO.factory.service.credit.ISearchTradeResult>;
|
|
14
14
|
export { searchGMOTrade };
|
package/package.json
CHANGED
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"@aws-sdk/client-cognito-identity-provider": "3.600.0",
|
|
13
13
|
"@aws-sdk/credential-providers": "3.600.0",
|
|
14
14
|
"@chevre/factory": "6.2.0-alpha.9",
|
|
15
|
-
"@cinerino/sdk": "14.0.0-alpha.
|
|
15
|
+
"@cinerino/sdk": "14.0.0-alpha.6",
|
|
16
16
|
"@motionpicture/coa-service": "9.7.0-alpha.2",
|
|
17
|
-
"@motionpicture/gmo-service": "
|
|
17
|
+
"@motionpicture/gmo-service": "6.0.0-alpha.0",
|
|
18
18
|
"@sendgrid/client": "8.1.4",
|
|
19
19
|
"@surfrock/sdk": "2.0.0-alpha.2",
|
|
20
20
|
"debug": "^3.2.7",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"postversion": "git push origin --tags",
|
|
98
98
|
"prepublishOnly": "npm run clean && npm run build"
|
|
99
99
|
},
|
|
100
|
-
"version": "24.0.0-alpha.
|
|
100
|
+
"version": "24.0.0-alpha.67"
|
|
101
101
|
}
|