@chevre/domain 24.0.0-alpha.36 → 24.0.0-alpha.37
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.
|
@@ -130,7 +130,7 @@ export declare class ActionProcessRepo<TAction extends IAction<factory.actionTyp
|
|
|
130
130
|
};
|
|
131
131
|
object?: {
|
|
132
132
|
typeOf?: {
|
|
133
|
-
$eq?: factory.action.authorize.offer.eventService.ObjectType.SeatReservation | factory.action.authorize.paymentMethod.any.ResultType.Payment | factory.offerType.AggregateOffer
|
|
133
|
+
$eq?: factory.action.authorize.offer.eventService.ObjectType.SeatReservation | factory.action.authorize.paymentMethod.any.ResultType.Payment | factory.offerType.AggregateOffer;
|
|
134
134
|
};
|
|
135
135
|
paymentMethodId?: {
|
|
136
136
|
$eq?: string;
|
|
@@ -40,7 +40,7 @@ class AuthorizeProductOfferActionRepo extends actionProcess_1.ActionProcessRepo
|
|
|
40
40
|
...params,
|
|
41
41
|
typeOf: factory.actionType.AuthorizeAction,
|
|
42
42
|
object: {
|
|
43
|
-
typeOf: { $eq: factory.offerType.
|
|
43
|
+
typeOf: { $eq: factory.offerType.AggregateOffer }
|
|
44
44
|
}
|
|
45
45
|
});
|
|
46
46
|
return authorizeActions.filter((a) =>
|
package/package.json
CHANGED