@chevre/domain 25.2.0-alpha.1 → 25.2.0-alpha.3
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/action.d.ts +4 -1
- package/lib/chevre/repo/action.js +3 -2
- package/lib/chevre/repo/assetTransaction.d.ts +1 -1
- package/lib/chevre/repo/assetTransaction.js +1 -1
- package/lib/chevre/service/offer/event/authorize/factory.d.ts +0 -1
- package/lib/chevre/service/offer/event/authorize/factory.js +7 -9
- package/lib/chevre/service/offer/event/authorize.js +1 -1
- package/lib/chevre/service/transaction/placeOrder/confirm/prepareUnitPriceOfferConditions.d.ts +17 -0
- package/lib/chevre/service/transaction/placeOrder/confirm/prepareUnitPriceOfferConditions.js +116 -0
- package/lib/chevre/service/transaction/placeOrder/confirm/validation.d.ts +4 -1
- package/lib/chevre/service/transaction/placeOrder/confirm/validation.js +17 -8
- package/lib/chevre/service/transaction/placeOrder/confirm.d.ts +2 -0
- package/lib/chevre/service/transaction/placeOrder/confirm.js +9 -0
- package/package.json +2 -2
|
@@ -71,7 +71,10 @@ export declare class ActionRepo extends ActionProcessRepo<IAction<StartableActio
|
|
|
71
71
|
*/
|
|
72
72
|
deleteEndDatePassedCertainPeriod(params: {
|
|
73
73
|
$lt: Date;
|
|
74
|
-
}): Promise<
|
|
74
|
+
}): Promise<{
|
|
75
|
+
deleteActionRecipesResult: import("mongodb").DeleteResult;
|
|
76
|
+
deleteActionsResult: import("mongodb").DeleteResult;
|
|
77
|
+
} | undefined>;
|
|
75
78
|
/**
|
|
76
79
|
* 取引からアクションを削除する
|
|
77
80
|
*/
|
|
@@ -454,7 +454,7 @@ class ActionRepo extends actionProcess_1.ActionProcessRepo {
|
|
|
454
454
|
async deleteEndDatePassedCertainPeriod(params) {
|
|
455
455
|
const { $lt } = params;
|
|
456
456
|
if ($lt instanceof Date) {
|
|
457
|
-
await this.actionModel.deleteMany({
|
|
457
|
+
const deleteActionsResult = await this.actionModel.deleteMany({
|
|
458
458
|
// 終了日時を一定期間過ぎたもの
|
|
459
459
|
endDate: { $exists: true, $lt }
|
|
460
460
|
})
|
|
@@ -463,10 +463,11 @@ class ActionRepo extends actionProcess_1.ActionProcessRepo {
|
|
|
463
463
|
const dateCreatedLt = (0, moment_1.default)($lt)
|
|
464
464
|
.add(-1, 'day') // レシピ作成とアクション終了の時間差を考慮
|
|
465
465
|
.toDate();
|
|
466
|
-
await this.actionRecipeModel.deleteMany({
|
|
466
|
+
const deleteActionRecipesResult = await this.actionRecipeModel.deleteMany({
|
|
467
467
|
dateCreated: { $lt: dateCreatedLt }
|
|
468
468
|
})
|
|
469
469
|
.exec();
|
|
470
|
+
return { deleteActionRecipesResult, deleteActionsResult };
|
|
470
471
|
}
|
|
471
472
|
}
|
|
472
473
|
/**
|
|
@@ -904,7 +904,7 @@ class AssetTransactionRepo {
|
|
|
904
904
|
* 終了日時を一定期間過ぎたアクションを削除する
|
|
905
905
|
*/
|
|
906
906
|
async deleteEndDatePassedCertainPeriod(params) {
|
|
907
|
-
|
|
907
|
+
return this.transactionModel.deleteMany({
|
|
908
908
|
// 終了日時を一定期間過ぎたもの
|
|
909
909
|
endDate: {
|
|
910
910
|
$exists: true,
|
|
@@ -28,7 +28,6 @@ declare function acceptedOffers2amount(params: {
|
|
|
28
28
|
acceptedOffers: Pick<IResultAcceptedOffer, 'priceSpecification' | 'id'>[];
|
|
29
29
|
}): number;
|
|
30
30
|
declare function acceptedOffers2authorizeResult(params: {
|
|
31
|
-
acceptedOffers: factory.assetTransaction.reserve.IAcceptedTicketOfferWithoutDetail[];
|
|
32
31
|
acceptedOffers4result: IResultAcceptedOffer[];
|
|
33
32
|
noOfferSpecified: boolean;
|
|
34
33
|
ticketOffers: factory.product.ITicketOffer[];
|
|
@@ -173,9 +173,8 @@ function acceptedOffers2programMembershipUsed(params) {
|
|
|
173
173
|
return programMembershipUsed;
|
|
174
174
|
}
|
|
175
175
|
function acceptedOffers2authorizeResult(params) {
|
|
176
|
-
const {
|
|
176
|
+
const { acceptedOffers4result, noOfferSpecified, ticketOffers } = params;
|
|
177
177
|
const priceCurrency = factory_1.factory.priceCurrency.JPY; // fix(2024-07-03~)
|
|
178
|
-
// redefine as typeOf: AggregateOffer(2024-06-18~)
|
|
179
178
|
let offers;
|
|
180
179
|
let price;
|
|
181
180
|
let programMembershipUsed = [];
|
|
@@ -183,13 +182,15 @@ function acceptedOffers2authorizeResult(params) {
|
|
|
183
182
|
price = acceptedOffers2amount({ acceptedOffers: acceptedOffers4result }); // オファー指定の場合のみ金額計算(2023-11-27~)
|
|
184
183
|
programMembershipUsed = acceptedOffers2programMembershipUsed({ acceptedOffers: acceptedOffers4result });
|
|
185
184
|
// オファーIDごとに集計
|
|
186
|
-
const offerIds = [...new Set(
|
|
185
|
+
const offerIds = [...new Set(acceptedOffers4result.map((o) => String(o.id)))];
|
|
186
|
+
// const offerIds = [...new Set(acceptedOffers.map((o) => o.id))];
|
|
187
187
|
offers = offerIds.map((offerId) => {
|
|
188
188
|
const acceptedOffer = ticketOffers.find(({ id }) => id === offerId);
|
|
189
189
|
if (acceptedOffer === undefined) {
|
|
190
190
|
throw new factory_1.factory.errors.Internal(`acceptedOffer not found [id:${offerId}]`);
|
|
191
191
|
}
|
|
192
|
-
const amountOfThisGood =
|
|
192
|
+
const amountOfThisGood = acceptedOffers4result.filter(({ id }) => id === offerId).length;
|
|
193
|
+
// const amountOfThisGood: number = acceptedOffers.filter(({ id }) => id === offerId).length;
|
|
193
194
|
const { acceptedPaymentMethod, priceSpecification } = acceptedOffer;
|
|
194
195
|
const unitPriceSpec = priceSpecification.priceComponent.find((spec) => spec.typeOf === factory_1.factory.priceSpecificationType.UnitPriceSpecification
|
|
195
196
|
&& (!Array.isArray(spec.appliesToAddOn)) // アドオン単価ではない
|
|
@@ -197,14 +198,14 @@ function acceptedOffers2authorizeResult(params) {
|
|
|
197
198
|
if (unitPriceSpec === undefined) {
|
|
198
199
|
throw new factory_1.factory.errors.Internal(`unitPriceSpec not found [id:${offerId}]`);
|
|
199
200
|
}
|
|
200
|
-
const { eligibleQuantity
|
|
201
|
+
const { eligibleQuantity } = unitPriceSpec;
|
|
201
202
|
return {
|
|
202
203
|
id: offerId,
|
|
203
204
|
includesObject: { amountOfThisGood },
|
|
204
205
|
typeOf: factory_1.factory.offerType.Offer,
|
|
205
206
|
priceSpecification: {
|
|
206
207
|
...(eligibleQuantity !== undefined) ? { eligibleQuantity } : undefined,
|
|
207
|
-
...(eligibleTransactionVolume !== undefined) ? { eligibleTransactionVolume } : undefined
|
|
208
|
+
// ...(eligibleTransactionVolume !== undefined) ? { eligibleTransactionVolume } : undefined // discontinue(2026-07-05~)
|
|
208
209
|
},
|
|
209
210
|
...(acceptedPaymentMethod !== undefined) ? { acceptedPaymentMethod } : undefined
|
|
210
211
|
};
|
|
@@ -217,9 +218,6 @@ function acceptedOffers2authorizeResult(params) {
|
|
|
217
218
|
itemOffered: {
|
|
218
219
|
serviceOutput: { programMembershipUsed } // add programMembershipUsed required(2024-08-15~)
|
|
219
220
|
},
|
|
220
|
-
// requestBody: {}, // discontinue(2024-06-11~)
|
|
221
|
-
// responseBody: {}, // discontinue(2024-06-11~)
|
|
222
|
-
// acceptedOffers: [] // discontinue(2024-06-17~)
|
|
223
221
|
...(typeof price === 'number') ? { price } : undefined,
|
|
224
222
|
...(Array.isArray(offers)) ? { offers } : undefined
|
|
225
223
|
};
|
|
@@ -78,7 +78,7 @@ function authorize(params, options) {
|
|
|
78
78
|
}
|
|
79
79
|
throw error;
|
|
80
80
|
}
|
|
81
|
-
const result = (0, factory_2.acceptedOffers2authorizeResult)({
|
|
81
|
+
const result = (0, factory_2.acceptedOffers2authorizeResult)({ acceptedOffers4result, noOfferSpecified, ticketOffers });
|
|
82
82
|
await repos.authorizeOfferAction.completeWithVoid({ typeOf: action.typeOf, id: action.id, result: result });
|
|
83
83
|
return { id: action.id, result };
|
|
84
84
|
};
|
package/lib/chevre/service/transaction/placeOrder/confirm/prepareUnitPriceOfferConditions.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { OfferRepo } from '../../../../repo/offer/unitPriceInCatalog';
|
|
2
|
+
import { factory } from '../../../../factory';
|
|
3
|
+
export type IAuthorizeEventServiceOffer = factory.action.authorize.offer.eventService.IAction;
|
|
4
|
+
type IOrderAcceptedOffer = Pick<factory.order.IAcceptedOffer, 'itemOffered' | 'offeredThrough' | 'serialNumber' | 'priceSpecification' | 'id'>;
|
|
5
|
+
export declare function createAuthorizeOfferResultsExpected(params: {
|
|
6
|
+
authorizeEventServiceOfferActions: Pick<IAuthorizeEventServiceOffer, 'id' | 'result'>[];
|
|
7
|
+
}): Pick<IAuthorizeEventServiceOffer, 'id' | 'result'>[];
|
|
8
|
+
declare function prepareUnitPriceOfferConditions(params: {
|
|
9
|
+
project: {
|
|
10
|
+
id: string;
|
|
11
|
+
};
|
|
12
|
+
acceptedOffers: IOrderAcceptedOffer[];
|
|
13
|
+
authorizeEventServiceOfferActions: IAuthorizeEventServiceOffer[];
|
|
14
|
+
}): (repos: {
|
|
15
|
+
offer: OfferRepo;
|
|
16
|
+
}) => Promise<Pick<IAuthorizeEventServiceOffer, "id" | "result">[]>;
|
|
17
|
+
export { prepareUnitPriceOfferConditions };
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createAuthorizeOfferResultsExpected = createAuthorizeOfferResultsExpected;
|
|
4
|
+
exports.prepareUnitPriceOfferConditions = prepareUnitPriceOfferConditions;
|
|
5
|
+
const util_1 = require("util");
|
|
6
|
+
const factory_1 = require("../../../../factory");
|
|
7
|
+
function acceptedOffers2authorizeResult(params) {
|
|
8
|
+
const { acceptedOffers4result, unitPriceOffers } = params;
|
|
9
|
+
const programMembershipUsed = acceptedOffers2programMembershipUsed({ acceptedOffers: acceptedOffers4result });
|
|
10
|
+
// オファーIDごとに集計
|
|
11
|
+
const offerIds = [...new Set(acceptedOffers4result.map((o) => String(o.id)))];
|
|
12
|
+
const offers = offerIds.map((offerId) => {
|
|
13
|
+
const acceptedOffer = unitPriceOffers.find(({ id }) => id === offerId);
|
|
14
|
+
if (acceptedOffer === undefined) {
|
|
15
|
+
throw new factory_1.factory.errors.Internal(`acceptedOffer not found [id:${offerId}]`);
|
|
16
|
+
}
|
|
17
|
+
const amountOfThisGood = acceptedOffers4result.filter(({ id }) => id === offerId).length;
|
|
18
|
+
const { acceptedPaymentMethod, priceSpecification } = acceptedOffer;
|
|
19
|
+
const unitPriceSpec = priceSpecification;
|
|
20
|
+
if (unitPriceSpec === undefined) {
|
|
21
|
+
throw new factory_1.factory.errors.Internal(`unitPriceSpec not found [id:${offerId}]`);
|
|
22
|
+
}
|
|
23
|
+
const { eligibleQuantity } = unitPriceSpec;
|
|
24
|
+
return {
|
|
25
|
+
id: offerId,
|
|
26
|
+
includesObject: { amountOfThisGood },
|
|
27
|
+
typeOf: factory_1.factory.offerType.Offer,
|
|
28
|
+
priceSpecification: {
|
|
29
|
+
...(eligibleQuantity !== undefined) ? { eligibleQuantity } : undefined,
|
|
30
|
+
},
|
|
31
|
+
...(acceptedPaymentMethod !== undefined) ? { acceptedPaymentMethod } : undefined
|
|
32
|
+
};
|
|
33
|
+
});
|
|
34
|
+
return {
|
|
35
|
+
amount: [],
|
|
36
|
+
itemOffered: {
|
|
37
|
+
serviceOutput: { programMembershipUsed } // add programMembershipUsed required(2024-08-15~)
|
|
38
|
+
},
|
|
39
|
+
offers
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function acceptedOffers2programMembershipUsed(params) {
|
|
43
|
+
const programMembershipUsed = [];
|
|
44
|
+
const permitIdentifiers = [];
|
|
45
|
+
params.acceptedOffers.forEach(({ itemOffered }) => {
|
|
46
|
+
if (itemOffered.programMembershipUsed?.typeOf === factory_1.factory.programMembership.ProgramMembershipType.ProgramMembership) {
|
|
47
|
+
// メンバーシップコードに対してユニークに集計
|
|
48
|
+
if (!permitIdentifiers.includes(itemOffered.programMembershipUsed.identifier)) {
|
|
49
|
+
permitIdentifiers.push(itemOffered.programMembershipUsed.identifier);
|
|
50
|
+
const issuedThroughTypeOf = itemOffered.programMembershipUsed.issuedThrough.typeOf;
|
|
51
|
+
if (issuedThroughTypeOf === factory_1.factory.service.paymentService.PaymentServiceType.FaceToFace) {
|
|
52
|
+
programMembershipUsed.push({
|
|
53
|
+
typeOf: factory_1.factory.permit.PermitType.Permit,
|
|
54
|
+
identifier: itemOffered.programMembershipUsed.identifier,
|
|
55
|
+
issuedThrough: { typeOf: issuedThroughTypeOf }
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
programMembershipUsed.push({
|
|
60
|
+
typeOf: factory_1.factory.permit.PermitType.Permit,
|
|
61
|
+
identifier: itemOffered.programMembershipUsed.identifier,
|
|
62
|
+
issuedThrough: { typeOf: issuedThroughTypeOf, id: itemOffered.programMembershipUsed.issuedThrough.id }
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
return programMembershipUsed;
|
|
69
|
+
}
|
|
70
|
+
function createAuthorizeOfferResultsExpected(params) {
|
|
71
|
+
return params.authorizeEventServiceOfferActions.map((a) => {
|
|
72
|
+
return {
|
|
73
|
+
id: a.id,
|
|
74
|
+
result: a.result
|
|
75
|
+
};
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
function prepareUnitPriceOfferConditions(params) {
|
|
79
|
+
return async (repos) => {
|
|
80
|
+
const conditions = [];
|
|
81
|
+
const offerIds = [...new Set(params.acceptedOffers.map((o) => String(o.id)))];
|
|
82
|
+
const unitPriceOffers = await repos.offer.search({
|
|
83
|
+
id: { $in: offerIds }
|
|
84
|
+
});
|
|
85
|
+
for (const authorizeEventServiceOfferAction of params.authorizeEventServiceOfferActions) {
|
|
86
|
+
if (authorizeEventServiceOfferAction.result === undefined) {
|
|
87
|
+
throw new Error('authorizeEventServiceOfferAction.result should exist');
|
|
88
|
+
}
|
|
89
|
+
const acceptedOffers4action = params.acceptedOffers.filter(((offer) => {
|
|
90
|
+
return offer.serialNumber === authorizeEventServiceOfferAction.instrument.transactionNumber;
|
|
91
|
+
}));
|
|
92
|
+
conditions.push({
|
|
93
|
+
id: authorizeEventServiceOfferAction.id,
|
|
94
|
+
result: {
|
|
95
|
+
typeOf: authorizeEventServiceOfferAction.result.typeOf,
|
|
96
|
+
priceCurrency: authorizeEventServiceOfferAction.result.priceCurrency,
|
|
97
|
+
price: authorizeEventServiceOfferAction.result.price,
|
|
98
|
+
...acceptedOffers2authorizeResult({
|
|
99
|
+
acceptedOffers4result: acceptedOffers4action,
|
|
100
|
+
unitPriceOffers
|
|
101
|
+
})
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
// 承認アクションと比較する
|
|
106
|
+
for (const authorizeEventServiceOfferAction of params.authorizeEventServiceOfferActions) {
|
|
107
|
+
const conditionExpected = conditions.find(({ id }) => id === authorizeEventServiceOfferAction.id);
|
|
108
|
+
const resultMatched = (0, util_1.isDeepStrictEqual)(conditionExpected?.result, authorizeEventServiceOfferAction.result);
|
|
109
|
+
console.log('resultMatched?', resultMatched, authorizeEventServiceOfferAction.id, authorizeEventServiceOfferAction.instrument.transactionNumber);
|
|
110
|
+
if (!resultMatched) {
|
|
111
|
+
console.log(conditionExpected?.result, authorizeEventServiceOfferAction.result);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return conditions;
|
|
115
|
+
};
|
|
116
|
+
}
|
|
@@ -39,5 +39,8 @@ export declare function validateEventOffers(params: {
|
|
|
39
39
|
price: number;
|
|
40
40
|
};
|
|
41
41
|
paymentMethods: factory.order.IReferencedInvoice[];
|
|
42
|
-
|
|
42
|
+
/**
|
|
43
|
+
* 承認アクションのresultに条件が保管されているはず(2026-07-06時点で)
|
|
44
|
+
*/
|
|
45
|
+
authorizeEventServiceOfferActions: Pick<IAuthorizeEventServiceOffer, 'id' | 'result'>[];
|
|
43
46
|
}): void;
|
|
@@ -329,14 +329,23 @@ function validateEventOffers(params) {
|
|
|
329
329
|
acceptedOffersInResult.forEach((acceptedOfferInResult) => {
|
|
330
330
|
const offerId = acceptedOfferInResult.id;
|
|
331
331
|
const unitPriceSpec = acceptedOfferInResult.priceSpecification;
|
|
332
|
-
//
|
|
333
|
-
|
|
334
|
-
const
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
332
|
+
// 適用金額要件は廃止(2026-07-05~)
|
|
333
|
+
// // 適用金額要件を満たしていなければエラー
|
|
334
|
+
// const eligibleTransactionVolumePrice = unitPriceSpec?.eligibleTransactionVolume?.price;
|
|
335
|
+
// const eligibleTransactionVolumePriceCurrency = unitPriceSpec?.eligibleTransactionVolume?.priceCurrency;
|
|
336
|
+
// if (typeof eligibleTransactionVolumePrice === 'number') {
|
|
337
|
+
// if (params.order.price < eligibleTransactionVolumePrice) {
|
|
338
|
+
// throw new factory.errors.Argument(
|
|
339
|
+
// 'Transaction',
|
|
340
|
+
// format(
|
|
341
|
+
// 'Transaction volume must be more than or equal to %s %s for offer:%s',
|
|
342
|
+
// eligibleTransactionVolumePrice,
|
|
343
|
+
// eligibleTransactionVolumePriceCurrency,
|
|
344
|
+
// offerId
|
|
345
|
+
// )
|
|
346
|
+
// );
|
|
347
|
+
// }
|
|
348
|
+
// }
|
|
340
349
|
// 適用数量検証(全興行オファー承認アクションについて)(2023-11-15~)
|
|
341
350
|
// 適用数量要件を満たしていなければエラー
|
|
342
351
|
const numAcceptedOffersByOfferId = params.authorizeEventServiceOfferActions.reduce((previousNumOffer, { result }) => {
|
|
@@ -5,6 +5,7 @@ import type { AssetTransactionRepo } from '../../../repo/assetTransaction';
|
|
|
5
5
|
import type { AuthorizationRepo } from '../../../repo/authorization';
|
|
6
6
|
import type { ConfirmationNumberRepo } from '../../../repo/confirmationNumber';
|
|
7
7
|
import type { MessageRepo } from '../../../repo/message';
|
|
8
|
+
import type { OfferRepo } from '../../../repo/offer/unitPriceInCatalog';
|
|
8
9
|
import type { OrderInTransactionRepo } from '../../../repo/orderInTransaction';
|
|
9
10
|
import type { ProjectRepo } from '../../../repo/project';
|
|
10
11
|
import type { SettingRepo } from '../../../repo/setting';
|
|
@@ -19,6 +20,7 @@ interface IConfirmOperationRepos {
|
|
|
19
20
|
assetTransaction: AssetTransactionRepo;
|
|
20
21
|
authorization: AuthorizationRepo;
|
|
21
22
|
message: MessageRepo;
|
|
23
|
+
offer: OfferRepo;
|
|
22
24
|
project: ProjectRepo;
|
|
23
25
|
placeOrder: PlaceOrderRepo;
|
|
24
26
|
orderInTransaction: OrderInTransactionRepo;
|
|
@@ -12,6 +12,7 @@ const factory_2 = require("../../order/placeOrder/factory");
|
|
|
12
12
|
const orderedItem_1 = require("../../order/placeOrder/factory/orderedItem");
|
|
13
13
|
const result_1 = require("./confirm/factory/result");
|
|
14
14
|
const potentialActions_1 = require("./confirm/potentialActions");
|
|
15
|
+
const prepareUnitPriceOfferConditions_1 = require("./confirm/prepareUnitPriceOfferConditions");
|
|
15
16
|
const publishCode_1 = require("./confirm/publishCode");
|
|
16
17
|
const validation_1 = require("./confirm/validation");
|
|
17
18
|
const publishConfirmationNumberIfNotExist_1 = require("./publishConfirmationNumberIfNotExist");
|
|
@@ -114,6 +115,14 @@ function confirm(params, options) {
|
|
|
114
115
|
project: { id: transaction.project.id }
|
|
115
116
|
}))
|
|
116
117
|
.filter(({ serialNumber }) => typeof serialNumber === 'string' && serialNumbers.includes(serialNumber));
|
|
118
|
+
// 単価オファーの全適用条件を検証するために、単価オファーを参照(2026-07-06~)
|
|
119
|
+
if (transaction.project.id === 'cinerino') {
|
|
120
|
+
await (0, prepareUnitPriceOfferConditions_1.prepareUnitPriceOfferConditions)({
|
|
121
|
+
project: { id: transaction.project.id, },
|
|
122
|
+
acceptedOffers,
|
|
123
|
+
authorizeEventServiceOfferActions
|
|
124
|
+
})({ offer: repos.offer });
|
|
125
|
+
}
|
|
117
126
|
// authorizePaymentActionsからpayTransactionsを参照(2024-06-20~)
|
|
118
127
|
let payTransactions = [];
|
|
119
128
|
// 決済承認アクションのinstrument依存をobject依存へ変更(2025-12-14~)
|
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.2",
|
|
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",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"postversion": "git push origin --tags",
|
|
92
92
|
"prepublishOnly": "npm run clean && npm run build"
|
|
93
93
|
},
|
|
94
|
-
"version": "25.2.0-alpha.
|
|
94
|
+
"version": "25.2.0-alpha.3"
|
|
95
95
|
}
|