@opengov/ppf-backend-types
Advanced tools
Comparing version 1.7.0 to 1.7.1
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.7.1](https://github.com/OpenGov/pluggable-payments/compare/@opengov/ppf-backend-types@1.7.0...@opengov/ppf-backend-types@1.7.1) (2024-01-17) | ||
### Bug Fixes | ||
* **pacefuze:** added CC auth code in flow response [SW-19018], added generatePaymentAccountToken [SW-19046] ([#181](https://github.com/OpenGov/pluggable-payments/issues/181)) ([d065dae](https://github.com/OpenGov/pluggable-payments/commit/d065dae0c0207b5e32bed265d993174156d8ab1c)) | ||
# [1.7.0](https://github.com/OpenGov/pluggable-payments/compare/@opengov/ppf-backend-types@1.6.2...@opengov/ppf-backend-types@1.7.0) (2024-01-12) | ||
@@ -8,0 +19,0 @@ |
@@ -113,2 +113,3 @@ import type { PaymentProcessorFlow } from "./enums"; | ||
cardType?: Maybe<CardType>; | ||
authorizationCode?: Maybe<Scalars["String"]>; | ||
}; | ||
@@ -325,3 +326,2 @@ export type ECheckDetails = { | ||
txnReferenceId: Scalars["String"]; | ||
txnApprovalStatus: Scalars["String"]; | ||
txnSessionId: Scalars["Int"]; | ||
@@ -744,2 +744,3 @@ txnSessionResultStatus: TerminalPaySessionResultStatus; | ||
cardType?: Resolver<Maybe<ResolversTypes["CardType"]>, ParentType, ContextType>; | ||
authorizationCode?: Resolver<Maybe<ResolversTypes["String"]>, ParentType, ContextType>; | ||
isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>; | ||
@@ -836,3 +837,2 @@ }; | ||
txnReferenceId?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
txnApprovalStatus?: Resolver<ResolversTypes["String"], ParentType, ContextType>; | ||
txnSessionId?: Resolver<ResolversTypes["Int"], ParentType, ContextType>; | ||
@@ -1022,2 +1022,3 @@ txnSessionResultStatus?: Resolver<ResolversTypes["TerminalPaySessionResultStatus"], ParentType, ContextType>; | ||
cardType?: LoaderResolver<Maybe<CardType>, CardDetails, {}, TContext>; | ||
authorizationCode?: LoaderResolver<Maybe<Scalars["String"]>, CardDetails, {}, TContext>; | ||
}; | ||
@@ -1072,3 +1073,2 @@ ECheckDetails?: { | ||
txnReferenceId?: LoaderResolver<Scalars["String"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnApprovalStatus?: LoaderResolver<Scalars["String"], TerminalPaymentFlowResponse, {}, TContext>; | ||
txnSessionId?: LoaderResolver<Scalars["Int"], TerminalPaymentFlowResponse, {}, TContext>; | ||
@@ -1075,0 +1075,0 @@ txnSessionResultStatus?: LoaderResolver<TerminalPaySessionResultStatus, TerminalPaymentFlowResponse, {}, TContext>; |
{ | ||
"name": "@opengov/ppf-backend-types", | ||
"version": "1.7.0", | ||
"version": "1.7.1", | ||
"description": "PPF Backend types", | ||
@@ -26,3 +26,3 @@ "homepage": "https://github.com/OpenGov/pluggable-payments#readme", | ||
}, | ||
"gitHead": "85bbd6fdc3b4fe2036dffa3e670e361283048480" | ||
"gitHead": "b722f7629cecb048c23c34cbf364f83824a67684" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
327243